@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%;
    }
}

/* firstview */

.article__header {
    position: relative;
}

.firstviewImg {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    transition: all 10s;
    /* position: relative; */
    object-position: center;
}

ul.slider>li:not(:first-child) {
    display: none;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.animation {
    animation: zoom 10s;
}

.firstviewImg__hover {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    min-height: 0;
    min-width: 0;
}

.slick-slide {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    min-height: 0;
    min-width: 0;
}

.firstview__txt {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 15px;
    font-family: 'Arial';
    font-weight: 700;
    color: var(--primary-white, #fafafa);
    text-shadow: 2px 2px rgba(51, 51, 51, 0.5);
    line-height: 1.3;
}

.p-header__titleTxt {
    display: none;
}

.bg {
    position: absolute;
    bottom: 35%;
}

.bg-wrap {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.bg-wrap::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: var(--primary-green, #2E7D32);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
}

.bg .bg-wrap .inn {
    color: var(--primary-white, #fafafa);
    display: inline-block;
    font-weight: 800;
    font-family: "Noto sans JP";
    padding: 5px 15px;
    position: relative;
    z-index: 1;
}

@keyframes bg {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(-5%);
    }

    30% {
        transform: scaleX(1) translateX(0);
    }

    100% {
        transform: scaleX(1) translateX(0);
    }

    30%,
    100% {
        opacity: 1;
    }
}

/* トップページ */

@media screen and (min-width:1024px) {
    .bg-wrap {
        margin-top: 15px;
    }
}

/* 会社挨拶 */

.section--message {
    padding: var(--section-padding);
    position: relative;
}

.section--message::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-black, #333333);
    z-index: -1;
    opacity: 0.5;
}

.section--message::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: auto;
    background-image: url(../images/messageBackground.png);
}

.message__title {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    z-index: 1;
}

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

.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) {
    .messageImg__hover {
        height: 224px;
    }

    .message__title {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 110px;
    }

    .message__title::before {
        position: absolute;
        content: "";
        width: 100px;
        height: 3px;
        background-color: var(--primary-orange, #FFA726);
        margin: 0px 4px 4px;
        top: 10px;
        left: 0;
    }

    .message__title::after {
        position: absolute;
        content: "";
        width: 100px;
        height: 3px;
        background-color: var(--primary-orange, #FFA726);
        margin: 0px 4px 4px;
        top: 10px;
        right: 0;
    }

    .message__title::before {
        transform: rotate(45deg);
    }

    .message__title::after {
        transform: rotate(-45deg);
    }

    .message__mainTitle {
        text-align: center;
    }

    .message__subTitle {
        text-align: center;
    }

    .message__txt {
        margin-top: 50px;
    }
}

/* 仕事の流れ */

.section--flow {
    padding: var(--section-padding);
    position: relative;
}

.section--flow:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-black, #333333);
    z-index: -1;
    opacity: 0.5;
}

.section--flow::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25vh;
    z-index: -1;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.1);
}

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

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

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

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

.flowImg {
    position: relative;
}

.flowImg img {
    width: 66.6%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    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;
}

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

.flowImg:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 26.6%;
    height: auto;
    transform: translate(-15%, 40%);
    aspect-ratio: 1/1;
    background-color: var(--primary-orange, #FFA726);
}

.flow__detail {
    margin-top: 50px;
}

.flow__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) {

    .section--flow {
        padding: 0;
        position: relative;
    }

    .flowImg {
        left: 0;
        transform: none;
        position: relative;
        width: 50%;
    }

    .flowImg:after {
        z-index: 2;
        transform: none;
    }

    .flowImg img {
        width: 100%;
    }

    .flowImg:after {
        display: none;
    }

    .flow__detail {
        padding: 50px;
        z-index: 2;
        margin-top: 0;
        position: absolute;
        left: 36.7%;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--primary-white, #fafafa);
        border: 1px solid rgba(51, 51, 51, 0.5);
    }

    .flow__mainTitle {
        margin-left: 15px;
    }

    .flow__subTitle{
        margin-left: 15px;
    }

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

    .flow__txt {
        color: var(--primary-black, #333333);
    }
}

/* サービス紹介 */

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

.section--service:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-black, #333333);
    z-index: -1;
    opacity: 0.5;
}

.section--service:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 30vh;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.1);
    z-index: -1;
}

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

.serviceImg {
    position: relative;
}

.serviceImg img {
    width: 66.6%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    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;
}

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

.serviceImg:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 26.6%;
    bottom: 0px;
    width: 26.6%;
    height: auto;
    transform: translate(-15%, 40%);
    aspect-ratio: 1/1;
    background-color: var(--primary-orange, #FFA726);
}

.service__detail{
    margin-top: 50px;
}

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

/* サービス紹介　pc */

@media screen and (min-width:1024px) {
    .section--service {
        padding: 0;
        position: relative;
    }

    .serviceImg {
        left: 50%;
        transform: none;
        position: relative;
        width: 50%;
    }

    .serviceImg:after {
        display: none;
    }

    .serviceImg img {
        width: 100%;
    }

    .service__detail {
        padding: 50px;
        z-index: 2;
        margin-top: 0;
        position: absolute;
        right: 36.7%;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--primary-white);
        border: 1px solid rgba(51, 51, 51, 0.5);
    }

    .service__mainTitle {
        margin-left: 15px;
    }

    .service__subTitle{
        margin-left: 15px;
    }

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

/* ブログ */

.section--blog {
    padding: var(--section-padding);
    position: relative;
}

.section--blog:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-black, #333333);
    z-index: -1;
    opacity: 0.5;
}

.section--blog:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: rgba(76, 175, 80, 0.1);
}

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

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

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

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

.blog__content {
    position: relative;
}

.blog__item {
    background-color: var(--primary-white, #fafafa);
    width: 100%;
    max-width: 400px;
    margin: 50px auto 0;
    position: relative;
    padding: 20px;
    transition: all 0.4s;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.blog__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.blog__item:hover {
    transform: scale(1.05);
}

.blogImg__hover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
}

.blog__subName {
    display: flex;
    margin-top: 30px;
    align-items: center;
    position: relative;
}

.post-categories {
    display: flex;
    align-items: center;
    z-index: 10;
}

.post-categories li a {
    color: var(--primary-white, #fafafa);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    padding: 10px;
    background-color: var(--primary-orange, #FFA726);
    position: relative;
}

.blog__date {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 10px;
}

.blog__name {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 10px;
}

.blog__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) {
    .blog__content {
        margin-top: 75px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 5%;
    }

    .blog__item {
        max-width: 1440px;
        width: 30%;
        margin: 0;
    }

    .blog__mainTitle {
        margin-left: 15px;
    }

    .blog__subTitle{
        margin-left: 15px;
    }

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

/* アクセス */

.section--access {
    padding: var(--section-padding);
    position: relative;
}

.section--access:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.1);
    z-index: -1;
}

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

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

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

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

.access__map {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.access__content {
    margin-top: 50px;
}

.access__item {
    position: relative;
    margin-top: 20px;
}

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

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

.access__detail {
    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: 20px;
}

/* アクセス TAB */

@media screen and (min-width:768px) {
    .access__item {
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    }

    .access__name{
        width: 40%;
    }

    .access__detail {
        margin-top: 0px;
        padding-left: 15px;
    }

    .access__content {
        width: 100%;
        margin-top: 50px;
    }
}

/* アクセス pc */

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

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

    .access__map {
        position: static;
        left: 0;
        transform: none;
        margin-top: 0px;
        max-width: none;
        width: 40%;
        height: auto;
    }

    .access__content {
        width: 55%;
        margin-top: 0px;
    }

    .access__name {
        max-width: 480px;
        width: 40%;
    }

    .access__mainTitle {
        margin-left: 15px;
    }

    .access__subTitle{
        margin-left: 15px;
    }

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