@charset "UTF-8";
/*-------------
service
-------------*/
.contents:not(.green-temp,.blue-temp){
    --temp-color:#000000;
    --temp-point-color:#FDA807;
}
.contents.green-temp{
    --temp-color:#4C6B2B;
    --temp-point-color:#4C6B2B;
}
.contents.blue-temp{
    --temp-color:#000080;
    --temp-point-color:#FDA807;
}
.service{
    padding: 50px 20px 30px;
    background: #F8F9F5;
}
.service .page-header-title {
    font-size: 28px;
    font-size:2.8rem;
    font-weight: bold;
    color: var(--main-green);
    text-align: center;
    line-height: 1.4em;
    position: relative;
}
.service .page-header-title:before{
    content:"";
    background:var(--main-green);
    width: 60px;
    height:3px;
    position:absolute;
    left:calc(50% - 30px);
    bottom:-10px;
}
.page-header-text{
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
}
.service-wrapper {
    text-align: center;
    padding: 20px 0 40px;
}
.service-title {
    font-size: 28px;
    padding-top: 26px;
    color: #000080;
}
@media screen and (min-width: 1024px) {
    .service .page-header-title {
        font-size: 34px;
        font-size:3.4rem;
    }
    .service .page-header-title:before{
        content:"";
        background:var(--main-green);
        width: 80px;
        height:4px;
        position:absolute;
        left:calc(50% - 40px);
        bottom:-10px;
    }
    .service-wrapper {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .service-title {
        padding: 24px 0 53px;
    }
}
@media (max-width: 768px) {
    .service .page-header-title {
        font-size: 22px;
        font-size: 2.2rem;
    }
}
.service-wrapper{
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 1024px) {
    .service-wrapper{
        width: 95%;
        max-width: 1140px;
    }
}
.notMsg{
    text-align: center;
    font-weight: bold;
}
.service-list{
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
}
.service-list-item {
    width: calc((100% - 30px) / 2);
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
}
.service-list-item-title{
    font-size: 21px;
    font-size: 2.1rem;
    margin-bottom: 20px;
    text-align: left;
}
.service-list-item-title a{
    transition: all var(--ease);
}
.service-list-item-text{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: calc(1em + 12px);
    text-align: left;
}
.service-list-item-industry{
    display: flex;
    gap: 10px;
    flex-flow: row wrap;
    margin-top: 15px;
}
.service-list-item-industry li a{
    color: var(--main-green);
    padding: 2px 5px;
    box-sizing: border-box;
    border: solid 1px var(--main-green);
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.service-list-item-link{
    margin-top: 20px;
    text-align: left;
}
.service-list-item-link a{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
    transition: all var(--ease);
}
.service-list-item-link a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--accent-orange);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
@media (max-width: 768px) {
    .service-list-item {
        width: 100%;
        flex-flow: column;
        padding: 15px;
    }
}
@media screen and (min-width: 1024px) {
    .service-list{
        display: flex;
        flex-flow: column;
        gap: 40px;
    }
    .service-list-item {
        width: 100%;
        padding: 40px;
    }
    .service-list-item-inner{
        display: flex;
        gap: 40px;
        align-items: center;
    }
    .service-list-item-img{
        flex: 0 1 auto;
        min-width: 500px;
        height: auto;
    }
    .service-list-item-box{
        flex: 0 1 100%;
        display: flex;
        align-items: flex-start;
        flex-flow: column;
    }
    .service-list-item-title{
        font-size: 24px;
        font-size: 2.4rem;
        margin-bottom: 25px;
    }
    .service-list-item-title a{
        transition: all var(--ease);
    }
    @media (any-hover: hover){
        .service-list-item-title a:hover{
            color: var(--accent-orange);
            transition: all var(--ease);
        }
    }
    .service-list-item-text{
        font-size: 16px;
        font-size: 1.6rem;
        line-height: calc(1em + 15px);
        text-align: left;
    }
    .service-list-item-industry{
        display: flex;
        gap: 20px;
        flex-flow: row wrap;
        margin-top: 20px;
    }
    .service-list-item-industry li a{
        color: var(--main-green);
        padding: 5px;
        box-sizing: border-box;
        border: solid 1px var(--main-green);
        font-size: 15px;
        font-size: 1.5rem;
        font-weight: bold;
        transition: all var(--ease);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    .service-list-item-link{
        margin-top: 25px;
    }
    .service-list-item-link a{
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: bold;
        position: relative;
        padding-left: 20px;
        transition: all var(--ease);
    }
    .service-list-item-link a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 12px solid var(--accent-orange);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    @media (any-hover: hover){
        .service-list-item-industry li a:hover{
            color: var(--accent-orange);
            border: solid 1px var(--accent-orange);
            transition: all var(--ease);
        }
        .service-list-item-link a:hover{
            color: var(--accent-orange);
            transition: all var(--ease);
        }
    }
}
/*-----------------
service-dtl
------------------*/
.service-dtl-wrapper{
    padding-top: 50px;
    padding-bottom: 100px;
}
.service-header-area{
    background: #F8F9F5;
}
.service-header-area__text {
    padding: 35px 21px;
    line-height: 1.75;
    height: auto;
    min-width: 50%;
}
.service-header-area__text-title1 {
    font-size: 23px;
    color: #4C6B2B;
    padding-left: 3px;
    line-height: 1.4em;
}
.service-header-area__text-title2 {
    color: #000080;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.5em;
    padding-bottom: 18px;
    margin-top: 8px;
}
.service-header-area__text-catch p{
    font-size: 15px;
    font-size: 1.5rem;
}
.service-header-area__text-catch p:not(:last-of-type){
    margin-bottom: 10px;
}
.service-header-area__text-text{
    margin-left: 25px;
}
.service-header-area__text-img{
    width: 250px;
    margin-top: 24px;
} 
.service-header-area__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* max-height: 450px; */
}
@media screen and (min-width: 1024px) {
    .service-header-area {
        display: flex;
    }
    .service-header-area__text-title1 {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.4em;
        padding: 0;
    }
    .service-header-area__text-title2 {
        font-size: 34px;
        font-size: 3.4rem;
        line-height: 1.4em;
        padding-bottom: 22px;
    }
    .service-header-area__text-catch p{
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: bold;
    }
    .service-header-area__img img {
        object-fit: cover;
        height: 100%;
        max-height: inherit;
    }
}
/*---------------
service-dtl-desc
-----------------*/
.service-dtl-desc{
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .service-dtl-desc{
        width: 90vw;
        max-width: 1140px;
        margin-left: auto;
        margin-right: auto;
    }
}
/*----------------
related-sec
-------------------*/
.related-sec{
    width: 90vw;
    padding: 50px 0;
    box-sizing: border-box;
    margin: 0 auto;
}
.related-sec-title{
    margin-bottom: 30px;
    text-align: center;
}
.related-sec-title-main{
    font-size: 2.8rem;
    line-height: 1.6em;
    color: var(--temp-color);
}
.related-sec-title-text{
    margin-top: 10px;
}
/*---------------
case-list
-----------------*/
.case-list{
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    justify-content: center;
    gap: 20px;
}
/* 1件のとき中央 */
.case-list-item:only-child{
    grid-column: 2;
}
/* 2件のとき中央 */
.case-list:has(.case-list-item:nth-child(2):last-child){
    grid-template-columns: repeat(2, calc((100% - 40px) / 3));
}
.case-list-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .case-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .case-list{
        grid-template-columns: 1fr;
    }
}
.case-list-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}
.case-list-item a{
    padding: 15px;
    display: block;
}
.case-list-item:hover{
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}
.case-list-item__text {
    font-size: 16px;
    font-size: 1.6rem;
    color: #484848;
    text-align: left;
}
.case-list-item__img{
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.case-list-item__img img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
@media screen and (min-width: 1024px) {
    .case-list{
        width: 95%;
        max-width: 1140px;
        margin: 0 auto;
    }
}
.case-list-item__date {
    font-size: 12px;
    color: #555;
    text-align: center;
}
.case-list-item__title{
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0 0 10px;
    color: #222;
    line-height: 1.5;
    text-align: left;
}
.case-list-item__text{
    font-size: 16px;
    font-size: 1.6rem;
}
@media (max-width: 768px) {
    .case-list-item__title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}
/*--------------------
tech-blog-list
---------------------*/
.tech-blog-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}
.tech-blog-list-item {
    width: calc((100% - 60px) / 3);
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(130, 127, 127, 0.8);
    transition: 0.3s ease-in-out;
}
.tech-blog-list-item a{
    padding: 15px 30px;
    display: block;
}
.tech-blog-list-item:hover{
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}
.tech-blog-list-item__text {
    font-size: 16px;
    font-size: 1.6rem;
    color: #484848;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
}
@media screen and (min-width: 1024px) {
    .tech-blog-list{
        width: 95%;
        max-width: 1140px;
        margin: 30px auto;
    }
}
@media screen and (max-width: 767px) {
    .tech-blog-list{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }
    .tech-blog-list-item {
        width: 100%;
        background-color: #f9f9f9;
        padding: 15px 30px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(130, 127, 127, 0.8);
        transition: transform 0.3s ease-in-out;
    }
}
.tech-blog-list-item__date {
    font-size: 12px;
    color: #555;
    text-align: center;
}
.tech-blog-list-item__title{
    font-size: 19px;
    font-size: 1.9rem;
    margin-top: 30px;
    margin: 30px 0 10px 0;
    color: #4C6B2B;
    text-align: center;
    padding-bottom: 10px;
}
/*-----------------------
service-link-sec
------------------------*/
.service-link-sec{
    width: 100%;
    background: #F8FAF5;
    box-sizing: border-box;
    margin-top: 90px;
}
.service-link-sec-wrapper{
    width: 90vw;
    max-width: 1140px;
    margin: 0 auto;
}
.service-link-sec-btn{
    width: 100%;
    max-width: 360px;
    height: 60px;
    margin: 0 auto;
    transition: var(--ease);
    margin-top: 15px;
}
.service-link-sec-btn a {
    color: #fff;
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.service-link-sec-btn a:after {
    content: "";
    background: url(../images/icon_allow_orenge.svg) no-repeat;
    background-size: cover;
    width: 6px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
}
.service-link-sec-btn.btn-download a{
    color: var(--accent-orange);
    background: none;
    border: solid 1px var(--accent-orange);
    box-sizing: border-box;
}
@media (any-hover: hover){
    .service-link-sec-btn:hover{
        opacity: 0.7;
        transition: var(--ease);
    }
}
@media screen and (max-width: 768px) {
    .service-link-sec{
        margin-top: 50px;
    }
    .service-link-sec-btn{
        width: 100%;
        height: 50px;
    }
    .service-link-sec-btn a {
        font-size: 14px;
        font-size: 1.4rem;
        border-radius: 25px;
    }
}
/*----------------------
service-related-list
---------------------*/
.service-related-list{
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    gap: 20px;
    margin-top: 30px;
    /* アイテムが少ない時中央 */
    place-content: center;
}
/* 1件だけの時 */
.service-related-list-item:only-child{
    grid-column: 2;
}
/* 2件の時だけ2列グリッドにする */
.service-related-list:has(.service-related-list-item:nth-child(2):last-child){
    grid-template-columns: repeat(2, calc((100% - 40px) / 3));
}
.service-related-list-item {
    transition: 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
.service-related-list-item a{
    padding: 20px;
    box-sizing: border-box;
    background-color: #F8FAF5;
    border-radius: 5px;
    display: block;
    width: 100%;
    height: 100%;
}
.service-related-list-item-title{
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
    line-height: calc(1em + 8px);
}
.service-related-list-item-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--accent-orange);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.service-related-list-item-text{
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: calc(1em + 12px);
}
@media screen and (min-width: 1024px) {
    .service-related-list {
        width: 95%;
        max-width: 1140px;
        margin: 30px auto;
    }
}
@media screen and (max-width: 767px) {
    .service-related-list{
        grid-template-columns: 1fr!important;
    }
    .service-related-list-item {
        transition: transform 0.3s ease-in-out;
    }
    .service-related-list-item-title{
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: bold;
        position: relative;
        padding-left: 15px;
        line-height: calc(1em + 8px);
    }
    .service-related-list-item-title::before {
        top: 4px;
    }
}
/*--------------------
service-menu
----------------------*/
.service-menu-list-link:not(:first-child){
    margin-top: 10px;
}
.service-menu-list-link a{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
}
.service-menu-list-link a:before{
    content: "";
    background: url(../images/icon_service_mail.svg) no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 11px);
    left: 0;
}
.service-menu-list-link._download a:before{
    background: url(../images/icon_service_book.svg) no-repeat;
    background-size: cover;
}
.service-menu-list-main-title{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
    .service-menu .sp-menu {
        display: none;
    }
    .service-menu{
        min-width: 200px;
        max-width: 250px;
        position: fixed;
        top: 30%;
        transform: translateY(-50%);
        right: 0;
        z-index: 10;
        background: #fff;
        border: solid 1px #000;
        border-right: none;
        padding: 20px 20px 20px 15px;
        box-sizing: border-box;
        border-radius: 10px 0 0 10px;
    }
    .service-menu-list-main{
        margin-top: 15px;
    }
    .menu-list-service__item:not(:last-child){
        margin-bottom: 3px;
    }
    .menu-list-service__item a{
        padding-left: 10px;
        font-size: 14px;
        font-size: 1.4rem;
        position: relative;
        display: block;
    }
    .menu-list-service__item a:before{
        content: "";
        background: #000;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        position: absolute;
        top: 11px;
        left: 0;
    }
}
@media screen and (max-width: 1023px) {
    .service-menu .sp-menu {
        cursor: pointer;
        background-color: var(--main-green);
        color: #fff;
        padding: 15px;
        text-align: center;
        font-weight: 600;
        letter-spacing: 0.05em;
        position: relative;
    }
    .service-menu .sp-menu:after{
        content: "";
        background: url(../images/icon_allow.svg) no-repeat;
        background-size: cover;
        width: 6px;
        height: 10px;
        transform: rotate(90deg);
        position: absolute;
        top: calc(50% - 5px);
        right: 20px;
        transition: all var(--ease);
    }
    .service-menu .sp-menu._active:after{
        transform: rotate(-90deg);
        transition: all var(--ease);
    }
    .service-menu-list-link:not(:first-child) {
        margin-top: 0;
    }
    .service-menu-list-link:not(:first-child) a{
        border-top: none;
    }
    .service-menu-list-link a{
        width: 100%;
        display: block;
        border-top:1px solid #707070;
        border-bottom:1px solid #707070;
        padding: 12px 0 12px 40px;
        box-sizing: border-box;
    }
    .service-menu-list-link a:before{
        content: "";
        left: 15px;
    }
    .service-menu-list-main{
        padding-top: 20px;
        background: #F8FAF5;
    }
    .service-menu-list-main-title{
        color: var(--main-green);
        text-align: center;
        font-size: 18px;
        font-size: 1.8rem;
        border-bottom: solid 2px var(--main-green);
        margin-bottom: 0;
    }
    .menu-list-service__item a {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 15px 15px 15px 40px;
        cursor: pointer;
        position: relative;
        display: block;
        border-bottom: solid 1px #e6e6e6;
    }
    .menu-list-service__item a:before {
        position: absolute;
        top: calc(50% - 4px);
        left: 21px;
        transform: rotate(135deg);
        width: 6px;
        height: 6px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        content: "";
        z-index: 1;
        transition: all ease .3s;
    }
    .menu-list-service__item a:after {
        position: absolute;
        top: calc(50% - 9px);
        left: 15px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--main-green);
        content: "";
    }
}
