
@charset "utf-8";
.page-ttl h1{
    margin: 0;
}
h1 + p{
    margin-bottom: 10px;
}
h2 + p {
    margin-bottom: 50px;
}
.gridline{
    margin-bottom: 50px;
}
.gridline .half:nth-child(2) p {
    margin: 10px 0 0 10px;
}
.header-bg{
    background-image: url(../micro_molding/images/top.webp);
    background-position: right top 50px;
    background-size: 40%;
}
@media screen and (max-width: 768px) {
    .header-bg{
        background-size: 65%;
    }
    .page-ttl h1{
        margin: 50px 0 20px;
    }
    .fusen li{
        padding: 10px 10px 10px 15px;
    }
}
@media screen and (max-width: 599px){
    .header-bg {
        background-position: right top 50px;
        background-size: contain;
        text-shadow: 1px 1px 3px #333;
    }
}



/* BOX01 */
.box01 li{
    display: flex;
    justify-content: center;
}
.box01 li:nth-child(even){
    flex-flow: row-reverse;
}
.box01 li:nth-child(even) figure{
    text-align: right;
}
.box01 li div.half{
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 0 50px;
}
@media screen and (max-width: 768px){
    .box01{
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 599px){
    .box01 li,
    .box01 li:nth-child(even){
        flex-flow: column-reverse;
    }
    .box01 li div.half{
        padding: 50px 0;
    }
}
/* BOX02 */
.box02 li{
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}
.box02 li figure {
    max-width: 150px;
}
.box02 li dl{
    width: 80%;
    margin: 0;
}
.box02 li dt{
    font-weight: bold;
    font-size: 20px;
}
.box02 li dd{
    margin: 0;
}
@media screen and (max-width: 599px){
    .box02 li{
        gap: 30px;
        flex-flow: column;
    }
    .box02 li figure {
        margin: 0 auto;
        max-width: 100%;
    }
    .box02 li figure img{
        width: 100%;
    }
    .box02 li dl {
        width: 100%;
    }
}

/* BOX03 */
.box03 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}
.box03 ul::after {
    content: '';
    display: block;
    width: 32%;
    height: 0;
}

.box03 ul li{
    width: calc(100%/3 - 50px);
}
.box03 ul li dt{
    font-weight: bold;
}
.box03 ul li dd{
    margin-left: 0;
}
@media screen and (max-width: 599px){
    .box03 ul{
        gap: 30px 10px;
    }
    .box03 ul li {
        width: calc(100% / 2 - 10px);
    }
}