@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--message {
    padding: var(--section-padding);
}

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

.message__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;
}

.message__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%);
}

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

.message__content {
    margin-top: 50px;
}

.messageImg img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    clip-path: inset(0 100% 0 0);
    display: inline-block;
    transition: 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}

.messageImg img.is-animated {
    clip-path: inset(0);
}

.message__detail h3 {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 50px;
}

.message__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;
    margin-top: 30px;
}

/* 会社メッセージ　pc */

@media screen and (min-width:1024px) {
    .message__content {
        display: flex;
        gap: 5%;
        margin-top: 75px;
    }

    .message__detail h3{
        margin-top: 0px;
    }

    .messageImg {
        width: 47.5%;
    }

    .messageImg img {
        height: 100%;
    }

    .message__detail {
        width: 47.5%;
    }

    .message__txt {
        margin-top: 30px;
    }

    .message__mainTitle {
        margin-left: 15px;
    }

    .message__subTitle{
        margin-left: 15px;
    }

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

/* 会社情報 */

.section--information {
    padding: var(--section-padding);
    background-color: rgba(76, 175, 80, 0.1);
}

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

.information__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;
}

.information__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%);
}

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

.information__content {
    margin-top: 50px;
}

.informationImg img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    clip-path: inset(0 0 0 100%);
    display: inline-block;
    transition: 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}

.informationImg img.is-animated {
    clip-path: inset(0);
}

.information__table {
    margin-top: 50px;
}

.table__content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.table__content:first-of-type {
    margin-top: 0px;
}

.table__name {
    color: var(--primary-white, #fafafa);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    background-color: var(--primary-orange, #FFA726);
    width: 100%;
    padding: 10px;
    font-size: 1.6rem;
}


.table__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;
    margin-top: 10px;
}

/* 会社情報 pc */

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

    .information__mainTitle {
        margin-left: 15px;
    }

    .information__subTitle{
        margin-left: 15px;
    }

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

    .information__content {
        margin-top: 75px;
        display: flex;
        gap: 5%;
    }

    .informationImg {
        width: 47.5%;
    }

    .informationImg img {
        height: 100%;
    }

    .information__table {
        margin-top: 0px;
        width: 47.5%;
    }

    .table__name {
        padding: 10px;
    }
}