@charset "UTF-8";

/* 共通 */

:root {
    --primary-white: #fff;
    --primary-black: #333;
    --primary-green: #68A346;
    --primary-orange: #F4A876;
    --primary-yellow: #FAF966;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

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

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

a {
    /* text-decoration: none;
    color: var(--primary-white); */
    display: inline-block;
}

.SpBr {
    display: inline-block;
}

.TABBr {
    display: inline-block;
}

.pcBr {
    display: none;
}

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

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

    .pcBr {
        display: inline-block;
    }
}

/* ヘッダー */

.article__header {
    padding: 100px 0 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background-image: url(../images/mainImg.jpg);
    background-size: cover;
    background-position: top;
    filter: brightness(1.1);
}

.header__home {
    color: var(--primary-green);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 1);
}

.header__home:hover {
    transition: all 0.2s;
}

.header__arrow {
    width: 7px;
    height: 7px;
    align-self: center;
    filter: brightness(0) saturate(100%) invert(17%) sepia(4%) saturate(26%) hue-rotate(47deg) brightness(98%) contrast(91%);
}

.header__content {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 1);
}

/* header pc */
@media screen and (min-width:1024px) {

    .article__header {
        padding: 220px 0 60px;
    }

    .header__home {
        font-size: 2.7rem;
    }

    .header__arrow {
        width: 10px;
        height: 10px;
    }

    .header__content {
        font-size: 2.4rem;
    }
}

/* 事業内容 */

.section--about {
    padding: 70px 5.3% 0;
}

.about__title {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.about__title::after {
    content: 'About';
    color: rgba(250, 249, 102, 0.8);
    text-align: center;
    font-family: Lato;
    font-size: 7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    z-index: -1;
    top: -35px;
    bottom: 0;
    right: 0;
    left: 0;
}

.about__item {
    margin-top: 70px;
}

.aboutImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    /* left: 50%;
    transform: translateX(-50%);
    border-radius: 50%; */
    transition: all 10s;
}

.aboutImg:hover {
    transform: scale(1.2);
}

.aboutImg__hover {
    width: 53.3%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    overflow: hidden;
}

.about__name {
    color: var(--primary-green, #68A346);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 50px;
}

.about__txt {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    /* 200% */
    margin-top: 30px;
}

/* 事業内容 pc */

@media screen and (min-width:1024px) {
    .section--about {
        padding: 150px 3.5% 0;
    }

    .about__content {
        gap: 8%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        margin-top: 0px;
    }

    .aboutImg__hover {
        width: 100%;
        position: static;
        transform: none;
    }

    .about__item {
        margin-top: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8%;
        margin-top: 100px;
    }

    .about__title {
        font-size: 3rem;
    }

    .about__title::after {
        top: -25px;
    }

    .about__detail {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 70px;
    }

    .about__name {
        text-align: center;
        font-size: 3rem;
        margin-top: 0px;
    }

    .about__txt {
        text-align: center;
        margin-top: 50px;
    }
}

/* 当社の強み */

.section--strength {
    padding: 70px 5.3% 0;
}

.strength__title {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px 0;
}

.strength__title span {
    color: var(--primary-orange);
    font-size: 4rem;
}

.strength__title::after {
    content: 'Strength';
    color: rgba(250, 249, 102, 0.8);
    text-align: center;
    font-family: Lato;
    font-size: 7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    z-index: -1;
    top: 60px;
    bottom: 0;
    right: 0;
    left: 0;
}

.strength__title span {
    color: var(--primary-orange);
    font-size: 6rem;
}

.strength__item{
    margin-top: 70px;
}

.strengthImg01,
.strengthImg02,
.strengthImg03 {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    /* left: 50%;
    transform: translateX(-50%);
    border-radius: 50%; */
    transition: all 10s;
    border-radius: 50%;
}

.strengthImg01__hover,
.strengthImg02__hover,
.strengthImg03__hover {
    width: 53.3%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.strengthImg01__hover::after {
    content: '1';
    color: var(--primary-white);
    text-align: center;
    background-color: var(--primary-orange);
    width: 80px;
    height: 80px;
    padding: 15px;
    font-size: 4rem;
    border-radius: 50%;
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    z-index: 10;
    bottom: -5%;
    right: 0%;
}

.strengthImg02__hover::after {
    content: '2';
    color: var(--primary-white);
    text-align: center;
    background-color: var(--primary-orange);
    width: 80px;
    height: 80px;
    padding: 15px;
    font-size: 4rem;
    border-radius: 50%;
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    z-index: 10;
    bottom: -5%;
    right: 0%;
}

.strengthImg03__hover::after {
    content: '3';
    color: var(--primary-white);
    text-align: center;
    background-color: var(--primary-orange);
    width: 80px;
    height: 80px;
    padding: 15px;
    font-size: 4rem;
    border-radius: 50%;
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    z-index: 10;
    bottom: -5%;
    right: 0%;
}

.strength__name {
    color: var(--primary-green, #68A346);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 50px;
}

.strength__txt {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    /* 200% */
    margin-top: 30px;
}

/* 当社の強み pc */

@media screen and (min-width:1024px) {
    .section--strength {
        padding: 150px 3.5% 0;
    }

    .strength__content {
        display: flex;
        flex-direction: column;
        gap: 8%;
        justify-content: center;
        align-content: center;
        margin-top: 0px;
    }

    .strengthImg01__hover,
    .strengthImg02__hover,
    .strengthImg03__hover {
        width: 40%;
        aspect-ratio: 1/1;
        position: relative;
        left: 0%;
        transform: none;
    }

    .strengthImg01__hover::after {
        position: absolute;
        width: 110px;
        height: 110px;
        padding: 15px;
        font-size: 6rem;
        right: 10%;
        top: 80%;
    }

    .strengthImg02__hover::after {
        position: absolute;
        width: 110px;
        height: 110px;
        padding: 15px;
        font-size: 6rem;   
        right: 10%;
        top: 80%;
    }

    .strengthImg03__hover::after {
        position: absolute;
        width: 110px;
        height: 110px;
        padding: 15px;
        font-size: 6rem;
        right: 10%;
        top: 80%;
    }

    .strength__item {
        margin-top: 100px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8%;
    }

    .strength__title {
        font-size: 3rem;
        padding: 0;
    }

    .strength__title::after {
        top: -25px;
    }

    .strength__detail {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .strength__explain {
        width: 60%;
    }

    .strength__name {
        text-align: left;
        font-size: 3rem;
        margin-top: 0px;
    }

    .strength__txt {
        text-align: left;
        margin-top: 50px;
    }
}