﻿@charset "UTF-8";

/* --------------------
      image_area
-------------------- */

.image_area {   
    margin: 218px auto 75px; 
    padding: 0 20px; 
}

.image_container {
    max-width: 1700px;
    height: 334px;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;   
    background-image: url(../img/work/mainimg_work.jpg);
    position: relative;
}

.image_container .image_box {
    width: 100%;
    height: 334px;
    border-radius: 30px;   
    mix-blend-mode: multiply;
    background-color: #8FFFAF;
    opacity: 0.2;
}

.page_title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.page_title img {
    width: 47px;
    margin-right: 20px;
}
.page_title h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #01214B;
}
.page_title h2 .sub_en {
    font-size: 1.4rem;
    color: #B3DDF2;
    display: block;
}


@media screen and (max-width: 1180px) {
    .image_area {
        margin-top: 80px;
    }
    .image_container {
        height: 240px;
    }
    .image_container .image_box {
        height: 240px;
    }
}
@media screen and (max-width: 760px) {
    .image_area {
        margin-bottom: 50px;
    }
    .image_container {
        height: 180px;
    }
    .image_container .image_box {
        height: 180px;
    }

    .page_title h2  {
        font-size: 2.4rem;
    }
    
    .page_title h2 .sub_en {
        font-size: 1.4rem;
    }
    .page_title img {
        width: 36px;
    }
}
/* --------------------
      linkbtn_area
-------------------- */

#linkbtn_area {
    margin-bottom: 150px;
}

#linkbtn_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3%;
}
#linkbtn_area ul li {
    max-width: 325px;
    width: 30%;
}

.btn.worklink {
    width: 325px;
    padding: 0 20px;
    margin-bottom: 30px;
    color: #01214B;
    background-color: #fff;
    border: 2px solid #01214B;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: all 0.5s;
}

.btn.worklink::after {
    border-top: 3px solid #01214B;
    border-right: 3px solid #01214B;
}
.btn.worklink img {
    max-width: 43px;
    height: 37px;
    margin-right: 10px;
}

.btn.worklink:hover {
    border: 3px solid #01214B;
    transform: scale(1.02);
    box-shadow: none;
}

@media screen and (max-width: 1060px) {
    #linkbtn_area {
        margin-bottom: 120px;
    }
    #linkbtn_area ul li {
        width: 45%;
    }
    .btn.worklink {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 760px) {
    #linkbtn_area {
        margin-bottom: 80px;
    }
    #linkbtn_area ul li {
        width: 100%;
    }
    .btn.worklink {
        margin-bottom: 10px;
    }
}

/* --------------------
      work_area
-------------------- */

.work_container {
    width: 100%;
    background-color: #E6FFD1;
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 110px;
}
.work_container h4 {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.work_container ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.work_container ul li {
    max-width: 550px;
    width: 45%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}
.work_container ul li span.number{
    font-size: 6.4rem;
    font-family: 'EB Garamond', serif;
    color: #C1C1C1;
    margin-right: 10px;
}
.work_container ul li img {
    width: 80%;
    margin-top: 20px;
}
.work_container ul li::after {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    position: absolute;
    bottom: 15px;
    right: 5%;
    z-index: 10;
}
.work_container ul li.before::after {
    content: 'before';
}
.work_container ul li.after::after {
    content: 'after';
}
.work_container ul li a {
    display: block;
    margin: 0 auto;
}

#work_etc .work_container ul li.work_etc_img img {
    margin-left: calc(6.4rem + 10px);
}
#work_etc .work_container ul li.work_etc_txt h4 {
    margin-top: 20px;
}

.service_contact {
    text-align: center;
    margin-bottom: 80px;
}

.service_contact img {
    display: block;
    margin: 0 auto;
}
.service_contact img.drop_mark {
    width: 47px;
    margin-bottom: 65px;
}
.service_contact img.allfree {
    width: 452px;
    margin-bottom: 40px;
}
.service_contact img.contact {
    width: 475px;
}
.service_contact p.strong {
    font-size: 3rem;
    font-weight: bold;
    color: #FF0000;
    margin-bottom: 40px;
}

@media screen and (max-width: 1180px) {
    .work_container {
        padding: 30px;
        margin-bottom: 80px;
    }
    
    .work_container ul li span.number{
        font-size: 5rem;
    }
    #work_etc .work_container ul li.work_etc_img img {
        margin-left: calc(5rem + 10px);
    }
}
@media screen and (max-width: 760px) {
    .work_container h4 {
        margin-bottom: 10px;
    }
    .work_container ul {
        flex-direction: column;   
    }
    .work_container ul li {
        max-width: 700px;
        width: 100%;
        margin-bottom: 20px;
    }
    .work_container ul li span.number{
        font-size: 6.4rem;
    }
    #work_etc .work_container ul li.work_etc_img img {
        margin: 0 auto;
        ;
    }
    #work_etc .work_container ul li.work_etc_txt h4 {
        text-align: center;
        margin: 0 auto;
    }
    
    .service_contact {
        margin-bottom: 30px;
    }
    .service_contact img.allfree {
        max-width: 452px;
        width: 80%;
        margin-bottom: 40px;
    }
    .service_contact img.contact {
        width: 475px;
        width: 80%;
    }
    .service_contact p.strong {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 520px) {
    .work_container ul li span.number{
        font-size: 5rem;
    }
    
    .service_contact p.strong {
        font-size: 2rem;
    }
}

/* --------------------
    reform_flow_area
-------------------- */

#reform_flow_area {
    width: 100%;
    background-color: #FCFADA;
    padding-top: 120px;
    padding-bottom: 200px;
}

.flowchart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.flowchart li {
    max-width: 292px;
    margin-bottom: 50px;
}

#reform_flow_area .flowchart li .chart_text {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.flowchart li span.number {
    font-size: 6.4rem;
    font-family: 'EB Garamond', serif;
    color: #E19FFF;
    margin-right: 10px;
}
#reform_flow_area .flowchart li span.number {
    align-self: flex-start;

}
.flowchart li p {
    font-size: 1.7rem;
    font-weight: bold;
}
#reform_flow_area .flowchart li p {
    margin-top: 20px;
}

@media screen and (max-width: 1180px) {
    .flowchart li span.number {
        font-size: 5rem;
    }
    #reform_flow_area .flowchart li p {
        margin-top: 15px;
    }
}
@media screen and (max-width: 760px) {
    #reform_flow_area {
         padding-top: 60px;
        padding-bottom: 80px;
    }
}
