@charset "UTF-8";

/* 共通 */

:root {
    --primary-white: #fafafa;
    --primary-black: #333333;
    --primary-lightgreen: #4CAF50;
    --primary-green: #2E7D32;
    --primary-orange: #FFA726;
    --primary-subBlack: #666666;
    --section-padding: 60px 5.3%;
    scroll-padding: 190px;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    min-height: 0;
    min-width: 0;
}

body {
    font-family:
        "Noto Sans JP",
        "Noto Serif JP",
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black, #333333);
    background-color: var(--primary-white, #fafafa);
    line-height: 1.5;
}

.font-size-logo {
    font-size: clamp(3.6rem, 2.966rem + 2.7vw, 5.4rem);
}

.font-size-title {
    font-size: clamp(2.4rem, 1.977rem + 1.8vw, 3.6rem);
}

.font-size-button {
    font-size: clamp(1.6rem, 1.318rem + 1.2vw, 2.4rem);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
}

.anchor {
    display: inline-block;
}

.SpBr {
    display: inline-block;
}

.TABBr {
    display: none;
}

.pcBr {
    display: none;
}

/* 共通 pc */

@media screen and (min-width: 768px) {
    .SpBr {
        display: none;
    }

    .TABBr {
        display: inline-block;
    }
}

@media screen and (min-width: 1024px) {
    .TABBr {
        display: none;
    }

    .pcBr {
        display: inline-block;
    }

    :root {
        --section-padding: 90px 5.3%;
    }
}

/* サービス紹介 */

.section--service {
    padding: var(--section-padding);
}

.service__content {
    position: relative;
    margin-top: 50px;
}

.service__title {
    position: relative;
    display: flex;
    align-items: center;
}

.service__mainTitle {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
    position: relative;
}

.service__titleImg {
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(../images/futaba.png);
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(83%) sepia(17%) saturate(7234%) hue-rotate(338deg) brightness(102%) contrast(104%);
}

.service__subTitle {
    color: var(--primary-orange, #FFA726);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
}

.service__txt {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    display: inline-block;
}

.serviceSlider {
    width: 100%;
    display: flex;
    justify-content: center;
}

.serviceImg__hover {
    object-fit: cover;
    overflow: hidden;
    margin-top: 50px;
    height: 112px;
}

.serviceImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    /* position: relative;
    left: 50%;
    transform: translateX(-50%); */
    object-fit: cover;
}


/* サービス紹介 pc */

@media screen and (min-width:1024px) {

    .service__title {
        justify-content: center;
    }

    .serviceImg__hover {
        height: 224px;
    }

    .service__txt {
        text-align: center;
        margin: 0 auto;
        font-weight: 400;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .service__mainTitle {
        margin-left: 15px;
    }

    .service__subTitle{
        margin-left: 15px;
    }

    .service__titleImg {
        width: 40px;
        height: auto;
    }

}