@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 599px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*body*/

body {
    color: #000000;
    font-family: "Inter", "Noto Sans JP", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
}

.inner {
    width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #000;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.8;
}

input:hover,
a:hover img {
    outline: 0;
    opacity: 0.8;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    background-color: #222E44;
    padding: 30px 50px 30px 30px;
    position: fixed;
    width: 100%;
    z-index: 40;
    box-sizing: border-box;
}

.header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .layout .menu {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.header .layout .menu li:last-of-type {
    margin-right: 0;
}

.header .layout .menu a {
    color: #fff;
    font-size: 1.6rem;
}

.menu_btn {
    position: fixed;
    top: 40px;
    right: 50px;
    cursor: pointer;
    width: 40px;
    height: 27px;
    z-index: 50;
    display: none;
}

.menu_btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background: #fff;
}

.menu_btn span:nth-of-type(1) {
    top: 0;
    width: 100%;
}

.menu_btn span:nth-of-type(2) {
    top: 12px;
    width: 100%;
}

.menu_btn span:nth-of-type(3) {
    top: 24px;
    width: 100%;
}

.menu_btn.active span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(6px) rotate(-135deg);
}

.menu_btn.active span:nth-of-type(2) {
    opacity: 0;
}

.menu_btn.active span:nth-of-type(3) {
    top: 11px;
    left: 0;
    transform: translateY(-6px) rotate(135deg);
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    background-image: url(../images/mv_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top 90px;
}

.mv .inner {
    padding: 180px 0 130px;
    position: relative;
}

.mv .inner .box {
    display: flex;
    justify-content: flex-end;
}

.mv .inner .title {
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 80px;
}

.mv .inner .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mv .inner .layout li {
    -webkit-filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
}

/* ----------------------------------------------------------
section
---------------------------------------------------------- */
.section {
    padding: 100px 0;
}

.section .section_title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 500;
    margin-bottom: 50px;
}

.section .btn {
    text-align: center;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    margin-top: 70px;
}

/* ----------------------------------------------------------
features
---------------------------------------------------------- */

.features {
    background-color: #fff;
}

.features .section_title {
    color: #02542D;
}


.features .layout {
    display: flex;
    justify-content: space-between;
    border: 2px solid #02542D;
    padding: 25px 45px;
    margin-bottom: 70px;
    position: relative;
}

.features .layout .icon {
    position: absolute;
    top: 15px;
    left: 20px;
    -webkit-filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}

.features .contents {
    width: 590px;
}

.features .contents .heading {
    color: #02542D;
    font-size: 3.2rem;
    font-weight: 500;
    border-bottom: 2px solid #02542D;
    padding-bottom: 10px;
    margin-bottom: 20px;
    padding-left: 80px;
}

.features .contents .text {
    padding-left: 80px;
}

/* ----------------------------------------------------------
work
---------------------------------------------------------- */

.work {
    background-color: #02542D;
}

.work .section_title {
    color: #fff;
}

.work .box {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
}

.work .box .layout {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.work .box .layout .contents {
    width: calc(100% - 315px);
}

.work .box .layout .contents .title {
    color: #02542D;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.work .box .work_image {
    display: flex;
}

.work .box .work_image dt {
    font-weight: 500;
}

.work .box .work_image dd {
    color: #02542D;
    font-weight: 500;
}

.work .box .time_table {
    display: flex;
}

/* ----------------------------------------------------------
about
---------------------------------------------------------- */

.about .section_title {
    color: #02542D;
}

.about .layout {
    display: flex;
    justify-content: space-between;
}

.about .layout .text {
    width: calc(100% - 520px);
}

.about .layout .text a {
    text-decoration: none;
}

.about .layout .text a:hover {
    text-decoration: underline;
}

.about .separator {
    display: block;
    width: 60px;
    height: 4px;
    background-color: #02542D;
    margin: 50px auto 0;
}

/* ----------------------------------------------------------
case
---------------------------------------------------------- */

.case .section_title {
    color: #02542D;
}

.case .layout {
    display: flex;
    justify-content: space-between;
    border: 2px solid #02542D;
    padding: 30px;
    margin-bottom: 30px;
}

.case .layout .contents {
    width: calc(100% - 165px);
}

.case .layout .contents .title {
    color: #02542D;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}



/* ----------------------------------------------------------
flow
---------------------------------------------------------- */

.flow {
    background-color: #02542D;
}

.flow .section_title {
    color: #fff;
}

.flow .box {
    background-color: #fff;
    padding: 50px;
}

.flow .box .layout {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.flow .box .layout .contents {
    display: flex;
}

.flow .box .layout .contents .text {
    font-size: 2.4rem;
    width: 400px;
    padding-left: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;
    border-left: 3px solid #CDCDCD;
    position: relative;
}

.flow .box .layout .contents .text .notes {
    font-size: 2rem;
    font-weight: 700;
}

.flow .box .layout .contents .text:before {
    content: '';
    display: block;
    position: absolute;
    left: -11px;
    top: 8px;
    width: 19px;
    height: 19px;
    background-color: #FFCC00;
    border-radius: 50%;
}

.flow .box .layout .contents_box .contents:last-of-type .text {
    padding-bottom: 0;
}

.flow .box .layout .contents .title {
    color: #02542D;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: right;
    width: 150px;
    padding-right: 50px;
}

/* ----------------------------------------------------------
step
---------------------------------------------------------- */

.step .section_title {
    color: #02542D;
}

.step .layout {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.step .layout .contents {
    width: 740px;
    margin-left: 50px;
}

.step .layout .contents .title {
    color: #02542D;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.step .layout .contents .text {
    border: 2px solid #02542D;
    padding: 20px 30px;
    border-radius: 10px;
}

.step .layout .contents .text .notes {
    font-size: 2rem;
}

.step .layout .img {
    padding-top: 5px;
}


/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    color: #fff;
    background-color: #1B2236;
    padding: 60px 75px 30px;
}

.footer .layout {
    display: flex;
    justify-content: space-between;
}

.footer .layout .box,
.footer .layout .logo {
    width: 25%;
}

.footer .layout .box .title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer .layout .box .text {
    font-size: 1.2rem;
}

.footer .layout .logo {
    margin-top: 120px;
    text-align: right;
}

.footer .layout .logo img {
    width: 180px;
}

.footer .copyright {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 50px;
}

@media only screen and (max-width: 1024px) {

    /*body*/

    body {
        font-size: 2rem;
    }

    .inner {
        width: 95%;
    }

    /* ----------------------------------------------------------
    header
    ---------------------------------------------------------- */


    .header .layout .menu {
        position: fixed;
        z-index: 50;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transition: all 0.5s;
        display: none;
    }

    .header .layout .menu.panelactive {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 20% 0;
        box-sizing: border-box;
    }

    .header .layout .menu li {
        margin-right: 0;
        text-align: center;
    }

    .menu_btn {
        display: block;
    }

    .menu_bg {
        position: fixed;
        z-index: 30;
        top: 0;
        left: 0;
        opacity: 0;
        width: 100vw;
        height: 0;
        background: #222E44;
        transition: all 0.5s;
    }

    .menu_bg.bgactive {
        height: 100vh;
        opacity: 1;
        overflow: hidden;
        cursor: pointer;
    }


    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv {
        background-position: left -150px top 90px;
    }

    .mv .inner {
        padding: 180px 0 10%;
    }

    .mv .inner .title {
        font-size: 5rem;
    }

    .mv .inner .title span {
        padding: 1px 5px;
        background-color: rgba(255, 255, 255, 0.7);
    }

    .mv .inner .layout li {
        width: 23%;
    }

    /* ----------------------------------------------------------
    section
    ---------------------------------------------------------- */
    .section {
        padding: 10% 0;
    }

    .section .section_title {
        font-size: 3.8rem;
        margin-bottom: 50px;
    }

    .section .btn {
        margin-top: 10%;
    }

    /* ----------------------------------------------------------
    features
    ---------------------------------------------------------- */

    .features .layout {
        display: block;
        margin-bottom: 30px;
    }

    .features .contents {
        width: 100%;
    }

    .features .contents .heading {
        font-size: 3.2rem;
    }

    .features .layout .img {
        text-align: center;
        margin-top: 30px;
    }

    /* ----------------------------------------------------------
    work
    ---------------------------------------------------------- */

    .work .box {
        padding: 30px;
        margin-bottom: 30px;
    }

    .work .box .layout {
        margin-bottom: 50px;
    }

    .work .box .layout .contents {
        width: calc(100% - 300px);
    }

    .work .box .layout .contents .title {
        font-size: 2.8rem;
    }

    .work .box .layout .img {
        width: 270px;
    }

    /* ----------------------------------------------------------
    about
    ---------------------------------------------------------- */

    .about .layout {
        display: block;
    }

    .about .layout .text {
        width: 100%;
    }

    .about .layout .img {
        text-align: center;
        margin-top: 30px;
    }

    /* ----------------------------------------------------------
    case
    ---------------------------------------------------------- */

    .case .layout {
        padding: 30px;
    }

    .case .layout .contents .title {
        font-size: 2.8rem;
    }



    /* ----------------------------------------------------------
    flow
    ---------------------------------------------------------- */

    .flow .box {
        padding: 30px;
    }

    .flow .box .layout {
        display: block;
    }

    .flow .box .layout .contents .text {
        width: calc(100% - 150px);
        padding-bottom: 30px;
    }

    .flow .box .layout .contents .text:before {
        left: -12px;
        top: 7px;
        width: 20px;
        height: 20px;
    }

    .flow .box .layout .contents .title {
        width: 150px;
    }

    .flow .box .layout .img {
        text-align: center;
        margin-top: 30px;
    }

    /* ----------------------------------------------------------
    step
    ---------------------------------------------------------- */

    .step .layout {
        justify-content: space-between;
    }

    .step .layout .img {
        width: 130px;
    }

    .step .layout .contents {
        width: calc(100% - 150px);
        margin-left: 0;
    }

    .step .layout .contents .title {
        font-size: 2.8rem;
    }


    /* ----------------------------------------------------------
    footer
    ---------------------------------------------------------- */

    .footer {
        color: #fff;
        background-color: #1B2236;
        padding: 60px 20px 30px;
    }

    .footer .layout {
        flex-wrap: wrap;
    }

    .footer .layout .box {
        width: 33.333%;
    }

    .footer .layout .logo {
        width: 100%;
    }

    .footer .layout .box .title {
        font-size: 2rem;
    }

    .footer .layout .box .text {
        color: #fff !important;
        font-size: 1.4rem;
    }

    .footer .layout .box .text a {
        color: #fff !important;
    }

    .footer .layout .logo {
        margin-top: 12%;
    }

    .footer .copyright {
        font-size: 1.2rem;
        margin-top: 50px;
    }

}

@media only screen and (max-width: 599px) {

    /*body*/

    body {
        font-size: 1.8rem;
    }

    .header {
        padding: 10px 20px;
    }

    .header .logo {
        width: 40vw;
    }

    .menu_btn {
        top: 2.7vw;
        right: 10px;
    }

    .menu_btn.active span:nth-of-type(1) {
        top: 7px;
    }

    .menu_btn.active span:nth-of-type(3) {
        top: 18px;
    }



    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv {
        background-position: left 5% top 10vw;
    }

    .mv .inner {
        padding: 20% 0 10%;
    }

    .mv .inner .box {
        display: block;
    }

    .mv .inner .title {
        font-size: 8.5vw;
        border-radius: 4px;
        margin-bottom: 30px;
        padding: 10px;
        display: block;
    }

    .mv .inner .layout li {
        width: 24%;
    }

    /* ----------------------------------------------------------
    section
    ---------------------------------------------------------- */

    .section .section_title {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }

    .section .btn img {
        width: 50vw;
    }

    /* ----------------------------------------------------------
    features
    ---------------------------------------------------------- */

    .features .layout {
        display: block;
        padding: 20px;
        margin-bottom: 30px;
    }

    .features .layout .icon {
        position: absolute;
        top: 5px;
        left: 10px;
    }

    .features .layout .icon img {
        width: 80px;
    }

    .features .contents {
        width: 100%;
    }

    .features .contents .heading {
        font-size: 2.4rem;
        padding-left: 80px;
    }

    .features .contents .text {
        padding-left: 0;
    }

    .features .layout .img {
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
    work
    ---------------------------------------------------------- */

    .work .box {
        padding: 20px;
    }

    .work .box .layout {
        display: block;
        margin-bottom: 30px;
    }

    .work .box .layout .contents {
        width: 100%;
    }

    .work .box .layout .contents .title {
        font-size: 2.4rem;
    }

    .work .box .layout .img {
        width: 100%;
        margin-top: 20px;
    }

    .work .box .work_image {
        display: block;
        margin-bottom: 10px;
    }

    .work .box .time_table {
        display: block;
    }

    /* ----------------------------------------------------------
    about
    ---------------------------------------------------------- */

    .about .layout .img {
        margin-top: 20px;
    }

    .about .separator {
        width: 60px;
        height: 4px;
        margin: 10% auto 0;
    }

    /* ----------------------------------------------------------
    case
    ---------------------------------------------------------- */

    .case .layout {
        display: block;
        padding: 20px;
    }

    .case .layout .img {
        text-align: center;
    }

    .case .layout .contents {
        width: 100%;
        margin-top: 20px;
    }

    .case .layout .contents .title {
        text-align: center;
        font-size: 2.4rem;
    }


    /* ----------------------------------------------------------
    flow
    ---------------------------------------------------------- */

    .flow .box {
        padding: 20px;
    }

    .flow .box .layout {
        margin-bottom: 10%;
    }

    .flow .box .layout .contents .text {
        font-size: 1.8rem;
        width: calc(100% - 120px);
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .flow .box .layout .contents .text .notes {
        font-size: 1.6rem;
    }

    .flow .box .layout .contents .text:before {
        left: -9.5px;
        top: 5px;
        width: 16px;
        height: 16px;
    }

    .flow .box .layout .contents .title {
        font-size: 1.8rem;
        width: 120px;
        padding-right: 20px;
    }

    .flow .box .layout .img {
        text-align: center;
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
    step
    ---------------------------------------------------------- */

    .step .layout {
        justify-content: space-between;
    }

    .step .layout .img {
        width: 80px;
        padding-top: 5px;
    }

    .step .layout .contents {
        width: calc(100% - 100px);
        margin-left: 0;
    }

    .step .layout .contents .title {
        font-size: 2.1rem;
    }

    .step .layout .contents .text {
        padding: 10px 15px;
    }

    .step .layout .contents .text .notes {
        font-size: 1.6rem;
    }


    /* ----------------------------------------------------------
    footer
    ---------------------------------------------------------- */

    .footer {
        padding: 50px 20px 20px;
    }

    .footer .layout {
        display: block;
    }

    .footer .layout .box {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer .layout .logo {
        width: 100%;
    }

    .footer .layout .box .title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 5px;
    }

    .footer .layout .box .text {
        text-align: center;
    }

    .footer .layout .logo {
        margin-top: 12%;
        text-align: center;
    }

    .footer .layout .logo img {
        width: 50%;
    }

    .footer .copyright {
        font-size: 1.2rem;
        margin-top: 50px;
    }

}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/