@charset "UTF-8";

:root {
    --main: #026636;
    --sub: #2BA23A;
    --bg: #F0F7F0;
    --text: #1b1b1b;
    --muted: #666;
    --container: 1120px;
    --radius: 10px;
    --line: #e6e6e6;
    --gap: 40px;
    --shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

html {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 100%;
    font-weight: 600;
}

body {
    width: 100%;
    background-color: var(--bg);
    font-feature-settings: "palt";


}

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

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

li {
    list-style-type: none;
}




/* ここからheaderーーーーーーーーーーーーーーーーーーーーーー */

.logo {
    width: 150px;
    margin-top: .5rem;
    margin-left: 3rem;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    width: 95%;
    padding: 1rem 1rem;
}

.site-header ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
}

.top-nav a {
    background: var(--bg);
    color: var(--main);
    text-decoration: none;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 999px;
    transition: .5s;
}

.top-nav a:hover {
    color: var(--bg);
    background: var(--sub);
    padding: 8px 25px;
}

.site-header {
    background-color: rgb(2, 102, 54, .8);
    text-align: center;
    position: fixed;
    z-index: 999;
    width: 100%;
    display: block;
    top: 0;
    backdrop-filter: blur(5px);
}

/* 基本デザイン（PC用） */
.logo {
    width: 150px;
    margin-top: .5rem;
    margin-left: 3rem;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding: 1rem 1rem;
}

.top-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.top-nav a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

/* ハンバーガーメニュー（非表示：PC） */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background:var(--bg);
    border-radius: 2px;
}


/* ========= モバイル対応 ========= */
@media (max-width: 768px) {
    .top-nav {
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background: #fff;
        border-left: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        display: none;
        flex-direction: column;
    }

    .top-nav ul {
        flex-direction: column;
        padding: 1rem;
    }

    .top-nav li {
        margin-bottom: 1rem;
    }

    /* ハンバーガーを表示 */
    .menu-toggle {
        display: flex;
    }

    /* メニューが開いたとき */
    .top-nav.active {
        display: flex;
    }

    .logo {
    width: 90px;
    margin-top: .5rem;
    margin-left: .5rem;
}
}

/* ここまでheaderーーーーーーーーーーーーーーーーーーーーーー */


/* ここからTOPタグラインーーーーーーーーーーーーーーーーーーーーーー */

.tagline {
    position: relative;
    height: 100vh;
    background-color: #026636;
}




.tagline-image {
    width: 60%;
    position: absolute;
    left: -3rem;
    translate: -20%;
    bottom: 0px;
    z-index: 9999;
    opacity: 0.9;
}

.tagline-image img {
    display: block;
}

.tagline-text {
    position: absolute;
    top: 35%;
    right: 4%;
    text-align: left;
}

.tagline-text h1 {
    font-size: clamp(3.5rem, 2.1667rem + 2.7778vw, 5.5rem);
    font-weight: 800;
    color: var(--bg);
    margin-bottom: -10px;
    line-height: 1.2;
    opacity: 0;
    transform: skewX(-14deg) translateY(10px);
    animation: fadeInSkew 3s ease forwards;
}

@keyframes fadeInSkew {
    to {
        opacity: 1;
        transform: skewX(-14deg) translateY(0);
    }
}



.tagline-text p {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    color: var(--bg);
}

.tagline-text a {
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--bg);
    color: #026636;
    text-decoration: none;
    font-weight: 800;
    transition: .5s;
}


.btn:hover {
    background: var(--sub);
    color: var(--bg);
    padding: 16px 28px;
}


.btn.ghost {
    background: transparent;
    border: 2px solid var(--main);
    color: var(--main);
}

.btn.ghost:hover {
    background: var(--main);
    color: var(--bg);
}




/* ここまでTOPタグラインーーーーーーーーーーーーーーーーーーーーーー */


/* ここからbodyーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */


.body-copy {
    max-width: 1260px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    background-color: var(--bg);
    margin: auto;


}

.body-copy p {
    color: var(--main);
    width: 55%;
    padding: 200px 0;
    font-size: 1.4rem;
    line-height: 3;
}


.body-copy.show {
    opacity: 1;
    transform: translateY(0);
}

.outsourcing {
    width: 40%;
    object-fit: contain;
    padding-top: 50px;
    padding-right: 40px;
}


.service {
    width: 100%;
    margin: auto;
    margin-bottom: 100px;
    background-color: var(--bg);
    padding-bottom: 100px;
}

.container {
    max-width: 1260px;
    width: 90%;
    margin: auto;

}

.service-head {
    text-align: left;
}



.section-title {
    padding-top: 80px;
    font-size: 50px;
    margin-bottom: 10px;
    color: var(--main);
    transform: skewX(-14deg);
}

.container p {
    color: var(--main);
    width: 100%;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 2.5;
    display: inline-block;
    margin: 40px 0 40px;
}

.service-text {
    display: flex;
    justify-content: space-between;
}

.service-text p {
    color: var(--bg);
}

.service-text img {
    width: 30%;
    object-fit: contain;
    padding-left: 60px;
}



.text-block {
    width: 60%;
    text-align: right;
    background-color: var(--main);
    padding: 10px 50px 40px 50px;
    border-radius: 10px;
    margin: 50px 0px 50px 0;
}

.text-block p.left-text {
    text-align: left;
}



.text-block .btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--main);
    text-decoration: none;
    font-weight: 800;
    transition: .5s;
}


.text-block .btn:hover {
    background: var(--sub);
    color: var(--bg);

}


.text-block .btn.ghost {
    background: transparent;
    border: 2px solid var(--main);
    color: var(--main);
}

.text-block .btn.ghost:hover {
    background: var(--main);
    color: var(--bg);
}



/* ここまでbodyーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */


/* ここからnewsーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.news {
    max-width: 1260px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}



.text-block-news {
    color: var(--main);
    width: 50%;
    text-align: left;
    background-color: var(--bg);
    padding: 30px 80px 30px 20px;
    margin: 60px 0px;
    border-radius: 10px;
    line-height: 2.5;
}

.section-news {
    width: 90%;
    max-width: 1260px;
    margin: auto;
    background-color: var(--main);
    border-radius: 10px;
}


.section-title-news {
    font-size: 60px;
    color: var(--bg);
    transform: skewX(-14deg);
}

.news-head {
    padding: 60px 50px 50px;
}




.section-desc {
    color: var(--bg);
    font-size: 30px;
}




.text-block-news li+li {
    border-top: 2px solid var(--main);
}


/* ここまでnewsーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここから企業概要ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

* {
    box-sizing: border-box;
}



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

.inner {
    width: min(1120px, 92vw);
    margin-inline: auto;
}


.page-hero {
    padding: 150px 0 50px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fafbff 0, #fff 100%);
}

.page-title {
    font-size: clamp(26px, 4vw, 36px);
    margin: 0 0 6px;
    color: var(--main);
    transform: skewX(-14deg);
    letter-spacing: .02em;
}

.page-lead {
    margin: 0;
    color: var(--ink-weak);
}

.section {
    padding: 28px 0;
}

.section-title-company {
    font-size: clamp(20px, 3vw, 24px);
    margin: 0 0 16px;
    position: relative;
    padding-left: 12px;
    color: var(--main);
    transform: skewX(-14deg);
}

.section-title-company::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 4px;
    color: var(--main);
    transform: skewX(-14deg);
}

.definition {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.definition .row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
}

.definition .row:first-child {
    border-top: none;
}

.definition dt,
.definition dd {
    margin: 0;
    padding: 16px 18px;
}

.definition dt {
    background: #fafafa;
    color: #333;
    font-weight: 600;
}

.definition dd {
    background: #fff;
}

@media (max-width:720px) {
    .definition .row {
        grid-template-columns: 1fr;
    }

    .definition dt {
        border-bottom: 1px solid var(--line);
    }
}

.offices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.office {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.office-name {
    margin: 0;
    font-size: 1.1rem;
}

.office-addr,
.office-contact {
    margin: .1rem 0;
    color: var(--ink-weak);
}

.btn-outline {
    align-self: flex-start;
    display: inline-block;
    padding: .5em .9em;
    border: 1px solid var(--brand);
    border-radius: 10px;
    text-decoration: none;
    color: var(--brand);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--brand);
    color: #fff;
}

@media (max-width:900px) {
    .offices {
        grid-template-columns: 1fr;
    }
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width:900px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.bullets {
    margin: .5rem 0 0;
    padding-left: 1.2em;
}

.bullets li {
    margin: .25em 0;
}

.note {
    color: var(--ink-weak);
}














/* ここからfooterーーーーーーーーーーーーーーーーーーーーーーーーーー */


.site-footer {
    background: var(--main);
    color: var(--bg);
    padding: 40px 0;
    margin-top: 200px;
}

.footer-bottom {
    text-align: center;
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 16px;

}

.footer-nav a {
    color: var(--bg);
    text-decoration: none;
    transition: .5s;
}

.footer-nav a:hover {
    color: var(--sub);
}

/* ここまでfooterーーーーーーーーーーーーーーーーーーーーーーーーーー */






/* ここからサービスーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.section-title-service {
    padding-top: 80px;
    font-size: 50px;
    margin-bottom: 10px;
    color: var(--main);
    transform: skewX(-14deg);
}

.service-main {
    margin: 100px auto 200px;
    width: 90%;
    max-width: 1260px;

}

.section-descs {
    color: var(--main);
    font-size: 30px;

}

.containers {
    margin: auto;

}

.grid {
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}


.card {
    background: var(--main);
    color: var(--bg);
    font-weight: 800;
    border-radius: 10px;
    margin-top: 50px;
    padding: 20px;
    line-height: 2;
}

.card h3 {
    font-size: 30px;
    font-weight: 600;
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-text2 {
    color: var(--bg);
    width: 100%;
    padding-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
}

.card-text {
    color: var(--bg);
    width: 100%;
    padding-top: 5px;
    font-size: 1.1rem;
    font-weight: 400;
    display: inline-block;
}

.service-blok {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-blok img {
    width: 70%;
    padding-top: 20px;
    margin: auto auto 50px;

}

.card2 {
    background: var(--main);
    border-radius: 10px;
    padding: 30px;
    height: 400px;
    line-height: 2;
}



/* ここから問い合わせーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.contact-hero {
    color: var(--main);
    text-align: center;
    padding: 100px 20px 80px;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 問い合わせカード */
.contact-section {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--gap);
    padding: 60px 0px;
    background-color: var(--bgr);
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--main);
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--main);
}

/* ボタン */
.contact-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: var(--main);
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--sub);
}


@media (max-width: 768px) {


    .section-title-service {
    padding-top: 30px;
    font-size: 40px;
    margin-bottom: 5px;
    color: var(--main);
    transform: skewX(-14deg);
}

.section-descs {
    font-size: 20px;
}

.section-head{
    margin-left: 30px;
}


    .card-text2 {
    color: var(--bg);
    width: 100%;
    padding-top: 0px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
}

.card2{
    height: 150px;
}

    .card {
        color: var(--main);
        background: var(--bg);
    }

    .card h3{
        font-size: 30px;
        font-weight: 700;
    }

    .card-text {
        color: var(--main);
        font-size: 13px;
        font-weight: 600;
    }

    .cards-3 {
        grid-template-columns: repeat(1, 1fr);
    }

.service-text{
     display: block;
}

.service-text img{
    width: 60%;
    margin: 0 auto;
    padding-left: 0px;
}

.text-block{
    width: 90%;
    margin: 50px auto 0;
    font-size: 10px;
}

.container p{
    font-size: 10px;
}

.body-copy{
    display: block;
    width: 90%;
    margin: 0 auto;
}

.body-copy p{
    width: 90%;
    font-size: 10px;
    font-weight: 700;
    margin: 10px auto 10px;
    padding-top: 10px;
    padding-bottom: 30px;
}

.outsourcing {
    width: 90%;
    object-fit: contain;
    margin: 0 auto;
    padding-top: 0px;
    /* padding-right: 40px; */
}

.section-title{
    font-size: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.tagline-text p {
    font-size: 15px;
    font-weight: 500;
    margin-top: 30px;
    color: var(--bg);
}

.tagline-text {
    position: absolute;
    top: 20%;
    left: 5%;
    text-align: left;
}

.tagline-text h1 {
    font-size: clamp(1rem, 2.1667rem + 2.7778vw, 2rem);
    font-weight: 800;
    color: var(--bg);
    margin-bottom: -10px;
    line-height: 1.2;
    opacity: 0;
    transform: skewX(-14deg) translateY(10px);
    animation: fadeInSkew 3s ease forwards;
}

.tagline-image {
    width: 100%;
    position: absolute;
    left: 15%;
    translate: -20%;
    bottom: 0px;
    z-index: 9999;
    opacity: 0.9;
}

.tagline {
    position: relative;
    height: 70vh;
    background-color: #026636;
}


.text-block {
    background-color: var(--main);
    padding: 10px 30px 40px 30px;
    border-radius: 10px;
    margin: 50px auto 0;
}

.text-block-news {
    color: var(--main);
    width: 65%;
    font-size: 9px;
    font-weight: 800;
    text-align: left;
    background-color: var(--bg);
    padding: 5px;
    margin: 50px 0px;
    border-radius: 10px;
    line-height: 2.5;
}

.section-news {
    width: 90%;
    margin: 0 auto;
    background-color: var(--main);
    border-radius: 10px;
}


.section-title-news {
    font-size: 20px;
    color: var(--bg);
    transform: skewX(-14deg);
}

.section-desc{
    font-size: 12px;
}

.news-head {
    padding: 60px 0px 50px;
}





}