@charset "utf-8";
/*--------------------------------------------
TOP PAGE
---------------------------------------------*/
/*見出し*/
.title{
    z-index: 1;
}
.title h3{
    font-size: clamp(2rem, 4vw, 4rem) !important;
}
/*背景文字*/
.bg_title{
    position: absolute;
    z-index: -1;
}
.bg_title p{
    font-size: clamp(20px, 10.416vw, 200px);
    font-weight: bold;
    line-height: 1;
    font-style: italic;
    letter-spacing: 5px;
}
#business .bg_title{
    top: clamp(40px, 3.385vw, 65px);
    left: clamp(-40px, -2.604vw, -50px);
}
#product .bg_title{
    top: clamp(35px, 2.865vw, 55px);
    right: clamp(-35px, -2.604vw, -50px);
}
#strengths .bg_title{
    top: clamp(50px, 4.427vw, 85px);
    left: clamp(-20px, -1.302vw, -25px);
}
#business .bg_title p{
    color: #f3f8fe;
}
#product .bg_title p{
    color: #e9f0f7;
}
#strengths .bg_title p{
    color: #0e2339;
}

/*== メインビジュアル ==*/
#mainvisual{
    background: url(../images/top/mainvisual_bg.png) right bottom/cover no-repeat;
}
#mainvisual .mainvisual_block{
    padding-top: clamp(120px, 10vw, 192px);
    padding-bottom: clamp(35px, 2.917vw, 56px);
}
#mainvisual .mainvisual_block .mainvisual_list li a{
    background: #0053A5;
    background: linear-gradient(90deg, rgb(0, 83, 165) 0%, rgb(23, 58, 122) 100%);
    border-radius: 10px;
    box-shadow: 0px 7px 20px -14px #000;
}
#mainvisual .mainvisual_block .mainvisual_list li a::after {
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media screen and (max-width:575px){
    #mainvisual {
        background-position: center top;
    }
    #mainvisual .mainvisual_block{
        padding-top: 4rem;
    }
    #mainvisual .mainvisual_block .mainvisual_list li img{
        width: 30%;
    }
    #mainvisual .mainvisual_block .mainvisual_list li a::after{
        right: 1.5rem;
        font-size: 1rem;
    }
}

/*== お知らせ ==*/
#info .info_list .info_tax{
    background-color: #0053a5;
    border-radius: 2rem;
    color: #fff;
    min-width: 180px;
    text-align: center;
}
#info .info_list li{
    border-top: 1px solid #afc0d2;
}
#info .info_list li a::after {
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    color: #0053a5;
    font-weight: 600;
    font-size: .8rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#info .info_list{
    border-bottom: 1px solid #afc0d2;
}
#info .info_list li:nth-child(even) p.title{
    color: #0053a5;
}
@media screen and (max-width:991px){
    #info .info_list .info_tax{
        border-radius: 1rem;
        min-width:unset;
    }
}

/*== 事業内容 ==*/
#business{
    background: url(../images/top/business_bg.png) right bottom/cover no-repeat;
    background-position: center calc(100% + 225px);
}
#business .business_list li a{
    height: 385px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 10px 20px -8px #ccc;
}
#business .business_list li a .business_btn i{
    display: inline-block;
    background-color: #0053a5;
    color: #fff;
    padding: .4rem .7rem;
    border-radius: 10px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#business .business_list li a:hover .business_btn i{
    background-color: #fff;
    color: #0053a5;
}
#business .business_list li a .business_btn{
    position: absolute;
    bottom: 0;
    right: 0;
}
@media screen and (max-width:991px){
    #business .business_list li a{
        height: unset;
    }
    #business .business_list li a .business_block01{
        width: 35%;
    }
    #business .business_list li a .business_block02{
        width: 65%;
    }
    #business .business_list li a .business_block01 img,
    #business .business_list li a .business_block02 img{
        height: 100%;
        object-fit: cover;
    }
}

/*== 製品情報 ==*/
#product{
    z-index: 1;
}
#product .product_list a{
    background-color: #fff;
    border: 1px solid #0053a5;
    border-radius: .3rem;
    box-shadow: 7px 4px 8px -5px #ccc;
    padding: clamp(1.2rem, 1.2vw, 1.9rem) clamp(1.5rem, 1.5vw, 2.3rem);
}
#product .product_list a::after {
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    color: #0053a5;
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: right .8s ease; 
}
#product .product_list a:hover::after {
    right: .6rem;
}
@media screen and (max-width:991px){
    #product .product_list li{
        width: 50%;
    }
    #product .product_list li:nth-child(even){
        padding-left: .5rem;
    }
    #product .product_list li:nth-child(odd){
        padding-right: .5rem;
    }
    #product .product_list a{
        padding: 1rem;
    }
    #product .product_list a::after{
        font-size: .875rem;
        right:.5rem;
    }
}

/*== SMTジャパンの強み ==*/
#strengths{
    background: url(../images/top/strengths_bg.png) right bottom/cover no-repeat;
    z-index: 1;
}
@media screen and (max-width:575px){
    #strengths .strengths_list .strengths_number{
        width: 10%;
    }
}