@charset "UTF-8";

/************************************
** 武元重機とはページCSS
************************************/
hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 30px 0;
}
.message-section{
    display: grid;
    grid-template-columns: 1fr 480px;
    grid-column-gap: 48px;
    padding: 30px 0;
}
.message-txt p{
    margin-bottom:10px;
}
.about-section{
    padding: 45px 0;
}
.about-title-block{
    display: grid;
    grid-template-columns: 170px 1fr;
    grid-auto-columns: 10px;
}
.about-title{
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(to right, #06407B 2%, #0E78E3 55%, #55C7F5 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    line-height: 1.4;
}
.number{
    display: block;
    width: 170px;
    height: 100px;
    background-size: contain;
    background-repeat:no-repeat;
}
.about1{
    background-image: url(../img/page-about/number1.png);
}
.about2{
    background-image: url(../img/page-about/number2.png);
}
.about3{
    background-image: url(../img/page-about/number3.png);
}
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-column-gap: 43px;
    text-align: justify;
}
.text-content{
    order:1;
}
.img-content{
    order:2;
}
.text-content p{
    margin-bottom:1.5em;
}
.about-section.reverse .content-wrapper {
    grid-template-columns: 450px 1fr;
}
.about-section.reverse .content-wrapper .text-content{
    order:2;
}
.about-section.reverse .content-wrapper .img-content{
    order:1;
}
.section-btns{
    margin-top:24px;
    text-align: right;
}
.infomation-section{
    background-color: #E5F2FA;
    padding:80px 0;
}
.infomation-section-innner{
    background-color: #ffffff;
    border-radius: 10px;
    padding:56px;
    display: block;
    width: 1050px;
    margin: auto;
}
.center-title{
    text-align: center;
    font-weight: bold;
    color:#333333;
    font-size:24px;
    margin-bottom: 30px;
}
.center-title .en{
    display: table;
    margin: auto;
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #06407B 2%, #0E78E3 55%, #55C7F5 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    line-height: 1.4;
}
table:not(.has-border-color) :where(th),
table:not(.has-border-color) :where(td){
    padding:15px;
    border-top:0;
    border-bottom:1px solid #dddddd;
    background-color:#ffffff;
}
table tr:last-child td,
table tr:last-child th{
    border-bottom:0;
}


/*スマホ版表示切り替えは1050px以下*/
@media screen and (max-width: 1050px) {
    .message-section{
        grid-template-columns: 1fr;
        padding-top: 0;
    }
    .message-img{
        order:1;
        margin-bottom:15px;
    }
    .message-txt{
        order:2;
    }
    .number{
        width: 86px;
        height: 50px;
    }
    .about-title-block{
        grid-template-columns: 86px 1fr;
    }
    .about-title{
        font-size:18px;
    }
    .infomation-section-innner{
        width: auto;
        margin:0 15px;
    }
    .content-wrapper,
    .about-section.reverse .content-wrapper {
        grid-template-columns: 1fr;
    }
    .img-content,
    .about-section.reverse .content-wrapper .img-content{
        order:1;
        margin-bottom:15px;
    }
    .text-content,
    .about-section.reverse .content-wrapper .text-content{
        order:2;
    }
    hr{
        margin:10px 0;
    }
    .image-content img {
        max-width: 100%;
        height: auto;
    }
    .infomation-section{
        padding: 50px 0;
    }
    .center-title{
        font-size:18px;
    }
    .center-title .en{
        font-size:40px;
    }
    .infomation-section-innner{
        padding:15px;
    }
    table:not(.has-border-color) :where(th){
        display: block;
        border-bottom:0;
        padding: 0;
    }
    table:not(.has-border-color) :where(td){
        display: block;
        padding: 7px 0;
        margin-bottom: 10px;
    }

}