@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

/*  ----------------------------------------------------------

トップ

----------------------------------------------------------  */
.top-kv {
    position: relative;
}

.top-kv span {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    left: 3.2%;
    bottom: 0;
    color: var(--main-color);
}

.top-kv span::after {
    content: '';
    background: var(--main-color);
    width: 1px;
    height: 8rem;
    display: inline-block;
    margin-top: 2rem;
}

#main {
    position: relative;
    width: 90%;
    height: 64rem;
    overflow: hidden;
    margin-left: auto;
}

.top-about {
    display: flex;
}

.top-about > * {
    width: 50%;
}

.top-about-bg {
    background: url(../img/about-img1.jpg) no-repeat center;
    background-size: cover;
}

.top-about-txt {
    background: var(--main-color);
    padding: 8rem 6rem;
    color: #fff;
}

.top-about h2,
.top-about h2 span {
    color: #fff;
}

.top-about p {
    margin-bottom: 3rem;
}

.top-service {
    background: var(--bg-color);
}

.top-service-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top-service-wrap > div {
    width: 46%;
    margin-bottom: 6%;
    position: relative;
}

.top-service-wrap > div::before {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 7.2rem;
    line-height: 1;
    position: absolute;
    left: 2rem;
    top: -2.4rem;
    color: var(--sub-color);
    display: block;
}

.top-service-wrap > div:nth-of-type(1)::before {
    content: '01';
}

.top-service-wrap > div:nth-of-type(2)::before {
    content: '02';
}

.top-service-wrap > div:nth-of-type(3)::before {
    content: '03';
}

.top-service-wrap > div:nth-of-type(4)::before {
    content: '04';
}

.top-service-wrap > div > div {
    background: #fff;
    padding: 3rem;
    width: 90%;
    margin: -3rem auto 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}

.top-service-wrap > div > div::before {
    content: '';
    background: var(--main-color);
    width: 16.18%;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.top-service h3 {
    color: var(--main-color);
}

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

.top-works-wrap > * {
    width: 46%;
}

.top-works h3 {
    color: var(--main-color);
}

.top-works p {
    margin-bottom: 3rem;
}

.top-recruit {
    padding: 1.5rem;
    color: #fff;
    position: relative;
    background: #000;
}

.top-recruit::before {
    content: '';
    background: url(../img/top-recruit-bg.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7;
}

.top-recruit-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10rem 0;
    border: solid 2px #fff;
}

.top-recruit h2 span {
    color: #fff;
}

.top-recruit p {
    margin-bottom: 6rem;
}

.top-contact {
    padding: 6rem;
    background: var(--bg-color);
}

.top-contact-txt {
    background: #fff;
    padding: 6rem 4rem;
    width: 70%;
    margin: -8rem auto 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}

.top-contact h3 {
    color: var(--main-color);
    text-align: center;
}

.top-contact p {
    margin-bottom: 3rem;
    text-align: center;
}

.top-company {
    display: flex;
}

.top-company > * {
    width: 50%;
}

.top-company-map iframe {
    width: 100%;
    height: 100%;
}

.top-company-txt {
    background: var(--main-color);
    padding: 10rem 6rem;
    color: #fff;
}

.top-company-txt a {
    color: #fff;
}

.top-company h2 {
    line-height: 1;
    font-size: 3.2rem;
    margin-bottom: 4rem;
}

.top-company address {
    font-style: normal;
    margin-bottom: 1rem;
}

.top-company dl {
    display: flex;
    flex-wrap: wrap;
}

.top-company dl dt {
    width: 15%;
}

.top-company dl dd {
    width: 85%;
}

@media screen and (max-width: 767px) {
    .top-kv {
        /* height: 200px; */
        height: 65vw;
    }

    .top-kv span {
        display: none;
    }

    #main {
        width: 100%;
        /* height: 200px; */
        height: 65vw;
    }

    .top-about {
        display: block;
    }

    .top-about > * {
        width: 100%;
    }

    .top-about-bg {
        height: 40rem;
    }

    .top-about-txt {
        padding: 6rem 3rem;
    }

    .top-service-wrap {
        display: block;
    }

    .top-service-wrap > div {
        width: 100%;
        margin-bottom: 10%;
    }

    .top-works-wrap {
        display: block;
    }

    .top-works-wrap > * {
        width: 100%;
    }

    .top-works-wrap > *:first-of-type {
        margin-bottom: 3rem;
    }

    .top-recruit-wrap {
        text-align: left;
        padding: 6rem 3rem;
    }

    .top-recruit h2 span {
        color: #fff;
    }

    .top-recruit p {
        margin-bottom: 3rem;
    }

    .top-contact {
        padding: 1.5rem 1.5rem 3rem 1.5rem;
    }

    .top-contact-txt {
        padding: 6rem 3rem;
        width: 85%;
        margin: -4rem auto 0 auto;
    }

    .top-company {
        display: block;
    }

    .top-company > * {
        width: 100%;
    }

    .top-company-map iframe {
        width: 100%;
        height: 40rem;
    }

    .top-company-txt {
        background: var(--main-color);
        padding: 6rem 3rem;
        color: #fff;
    }
}

/*  ----------------------------------------------------------

会社概要

----------------------------------------------------------  */
.sig {
    display: block;
    margin-top: 2rem;
    text-align: right;
}

/*  ----------------------------------------------------------

お知らせ

----------------------------------------------------------  */
.CMS-NEWS-TITLE {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 2.4rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: bold;
}

.CMS-NEWS-TITLE:after {
    border-bottom: solid 3px var(--main-color);
    bottom: -3px;
    content: ' ';
    display: block;
    position: absolute;
    width: 25%;
}

.CMS-NEWS-CONTENT img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
}

.top-news .CMS-NEWS-INDEX {
    margin-bottom: 2rem;
}

.CMS-NEWS-ITEM {
    border-bottom: 1px solid #ddd;
}

.CMS-NEWS-ITEM:last-of-type {
    border-bottom: none;
}

.CMS-NEWS-ITEM a {
    transition: all 0.3s;
    display: block;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.CMS-NEWS-ITEM a:hover {
    opacity: 0.6;
}

.CMS-NEWS-TIME {
    color: var(--main-color);
    font-size: 1.4rem;
    padding-left: 1rem;
    width: 16rem;
    display: block;
}

.CMS-NEWS-LINK {
    display: block;
    line-height: 1.6;
    width: calc(100% - 16rem);
}

.CMS-NEWS-MORE-READ {
    background: var(--main-color);
    border: none;
    border-radius: 0.2rem;
    text-align: center;
    padding: 2rem 0;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    margin: 4rem auto 0 auto;
    width: 24rem;
    display: block;
    transition: all 0.3s;
    display: none;
}

.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}

.top-news .CMS-NEWS-MORE-READ {
    display: none;
}

@media screen and (max-width: 767px) {
    .CMS-NEWS-CONTENT img {
        width: 100%;
    }

    .CMS-NEWS-ITEM a {
        display: block;
    }

    .CMS-NEWS-TIME {
        margin-bottom: 1rem;
    }

    .CMS-NEWS-LINK {
        display: block;
        padding: 0 1rem;
        width: auto;
    }
}

/*  ----------------------------------------------------------

お問い合わせ

----------------------------------------------------------  */
.contact-tel {
    background: var(--bg-color);
    padding: 3rem;
    margin-bottom: 8rem;
    text-align: center;
    position: relative;
}

.contact-tel::before {
    content: '';
    width: 4rem;
    height: 4rem;
    display: block;
    border-top: 1px solid var(--main-color);
    border-left: 1px solid var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
}

.contact-tel::after {
    content: '';
    width: 4rem;
    height: 4rem;
    display: block;
    border-bottom: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    position: absolute;
    right: 0;
    bottom: 0;
}

.contact-tel p:first-of-type {
    margin-bottom: 1.5rem;
}

.contact-tel-num {
    font-family: 'Oswald', sans-serif;
    font-size: 4.8rem;
    line-height: 1;
}

.contact-tel-num i {
    font-size: 3.6rem;
    vertical-align: 0.1rem;
    margin-right: 0.5rem;
}

.contact-tel-num span {
    font-size: 1.4rem;
    display: block;
    margin-top: 1.2rem;
}

.contact-tel a {
    color: var(--main-color);
}

.privacy {
    width: auto;
    margin: 0 auto 5rem;
    border: 2px solid #000000;
    padding: 20px;
    font-size: 1.2rem;
    height: 500px;
    overflow: auto;
}
}

.privacy span {
    font-weight: bold;
}

p.privacy_notes {
    padding: 30px 0 30px;
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
    .privacy {
        width: 95%;
        font-size: 1.5rem;
    }
}

.CMS-FORM-GROUP label:first-child {
    font-size: 1.6rem;
    font-weight: bold;
}

form > div {
    margin-bottom: 3rem;
}

form div label {
    display: block;
    margin-bottom: 1rem;
}

form select {
    padding: 2rem;
    background: #fff;
    border: #ccc solid 1px;
    border-radius: 2px;
}

form input,
form textarea {
    width: 100%;
    padding: 2rem;
    background: #fff;
    border: #ccc solid 1px;
    border-radius: 2px;
    font-size: 1.4em;
}

form textarea {
    height: 16rem;
}

form input[type='submit'] {
    border: none;
    width: 24rem;
    color: #fff;
    background: var(--main-color);
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    padding: 2rem 0;
    margin: 0 auto;
    border-radius: 2px;
    display: block;
    transition: all .3s;
}

form input[type='submit']:hover {
    opacity: 0.4;
    cursor: pointer;
}

form input[type='radio'] {
    width: 2rem;
    vertical-align: -0.18rem;
    margin-right: 1rem;
}

.CMS-FORM-RADIO label {
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .contact-tel p:first-of-type {
        text-align: left;
    }

    .contact-tel-num {
        font-size: 4.8rem;
    }

    .contact-tel-num i {
        font-size: 3.6rem;
        vertical-align: 0.1rem;
        margin-right: 1rem;
    }

    .contact-tel-num span {
        font-size: 1.8rem;
        margin-top: 1.8rem;
    }
}

.thanx p {
    margin-bottom: 3rem;
}
