@charset "UTF-8";

section:not(.sec-mv-under){margin-top:80px;}
.u-ttl-line{margin-bottom:40px;}

@media (max-width: 768px) {
   section:not(.sec-mv-under){margin-top:10vw;}
   .u-ttl-line{
       margin-bottom:5vw;
       line-height: 1.3
    }
}

/* --------- アンカーリンク --------- */
.link-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.link-list a{
    display: inline-block;
    width:calc((100% - 10px*3)/4);
    background: #e82727;
    padding:10px 0;
    text-align: center;
    color:#fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: relative;
}
.link-list a.btn-arrow::after{
    transform: rotate(90deg);
}
@media (min-width: 768px) {
    .link-list a:hover{
        background: #f26d58;
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .link-list a{
        width:calc((100% - 3vw)/2);
        padding:3vw 0;
        margin-top:3vw;
    }
    .link-list a.btn-arrow::after{
        right: 2vw;
    }
}

/* --------- overview --------- */
#overview .cont-in > p{
    margin-bottom: 60px;
}

#overview .cont-in .read-txt {
    margin-bottom: 40px;
	font-size: 24px;
}

@media (max-width: 768px) {
    #overview .cont-in > p{
        margin-bottom:8vw;
    }
	#overview .cont-in .read-txt {
		margin-bottom: 5vw;
		font-size: 4vw;
	}
}

/* --------- 業務内容 --------- */
#business{margin-bottom: 80px;}
.business-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.business-list li{
    width:calc((100% - 30px*2)/3);
	margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(205,169,173,0.8);
}
.business-image{
    width:100%;
}
.business-ttl{
    background: #e82727;
    color:#fff;
    text-align: center;
    padding:5px 0;
}

@media (max-width: 768px) {
    #business{margin-bottom: 10vw;}
    .business-list li{
        width:100%;
		margin-bottom: 0;
    }
    .business-list li+li{margin-top:5vw;}
    .business-image{
        width:100%;
    }
    .business-ttl{
        padding:3vw 0;
    }
}

/* --------- 主なお取り引き先 --------- */
.customer-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.customer-list li{
    width:calc((100% - 20px)/2);
    border-top:1px solid #d6dadc;
    border-right:1px solid #d6dadc;
    border-bottom:1px solid #d6dadc;
    border-left:4px solid #e82727;
    padding:10px 20px;
}
.customer-list li{margin-top:10px;}
.customer-list li:nth-of-type(1),
.customer-list li:nth-of-type(2){margin-top:0;}

@media (max-width: 768px) {
    .customer-list li{
        width:100%;
        padding:3vw 3vw;
    }
    .customer-list li{margin-top:3vw;}
    .customer-list li:nth-of-type(1){margin-top:0;}
    .customer-list li:nth-of-type(2){margin-top:3vw;
    }
}


