@charset "utf-8";

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1;
    width: 100%;
    -webkit-text-size-adjust: 100%; /*スマホのブラウザでのフォントサイズの自動調整を無効化*/
    -webkit-font-smoothing: antialiased; /*フォントのスムージング*/
    -moz-osx-font-smoothing: grayscale; /*フォントのスムージング*/
    display: block; /*IE6のインラインブロック要素の余白のバグを解消*/
}
* {
    box-sizing: border-box; /*要素の幅と高さにborderとpaddingを含める*/
}
ol, ul {
    list-style: none;
}
/*ブロッククオート(転載・引用元)*/
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    height: 110px;
    background: #009245;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-wrap: nowrap;
}

.title__logo {
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.title__logo h1 {
    margin: 0;
    line-height: 1;
}

.title__logo img {
    display: block;
    max-height: 70px;
    width: auto;
}

.hamburger {
    display: none !important;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 50px;
    background: #006837;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    margin-right: 0;
    border-radius: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

header .nav {
    margin-left: auto;
    margin-right: 24px;
}

header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

header nav > ul > li {
    position: static;
}

header nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.nav__item--dropdown {
    position: relative;
}

.nav__item--dropdown > a::after {
    content: "▼";
    font-size: 8px;
    margin-left: 6px;
    vertical-align: middle;
}

.nav__dropdown {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #006837;
    padding: 20px 24px;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown li {
    border-bottom: none;
}

.nav__dropdown a {
    color: #fff;
    padding: 1.5rem 1rem;
    white-space: nowrap;
    transition: background 0.2s ease;
    border-radius: 4px;
}

.nav__dropdown a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav__item--recruit-sp {
    display: none;
}

@media screen and (max-width: 1023px) {
    header {
        padding: 0;
        justify-content: space-between;
    }

    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1001;
        margin: 0 24px 0 auto;
    }

    .nav {
        position: fixed;
        top: 110px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 110px);
        background: #009245;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: 20px;
        z-index: 999;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
        margin: 0 !important;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav a {
        padding: 16px 24px;
    }

    .nav__item--dropdown > a::after {
        float: right;
    }

    .nav__dropdown {
        position: static;
        width: 100%;
        background: #006837;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
        box-shadow: none;
    }

    .nav__item--dropdown.active .nav__dropdown {
        max-height: 500px;
    }

    .nav__dropdown li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav__dropdown a {
        padding: 1rem 1rem 1rem 2rem;
        font-size: 14px;
        width: 100%;
    }

    .nav__item--recruit-sp {
        display: block;
        padding: 1rem 1.5rem;
    }

    .nav__item--recruit-sp a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        background: linear-gradient(to right, #FF8400, #FF3300);
        color: #fff;
        font-weight: 700;
        border-radius: 0 20px 0 20px;
    }

    .header__btn {
        display: none;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

.header__btn {
    margin-left: 70px;
}

.header__btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: linear-gradient(to right, #FF8400, #FF3300);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0 20px 0 20px;
    margin-right: 1rem;
}

.header__btn a::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('../images/akar-icons_link-out.png') no-repeat center center;
    background-size: contain;
    margin-left: 5px;
}

.hero__slider {
    background: #009245;
    margin: 0 0 110px 0;
    padding: 0;
    position: relative;
    --hero-slider-duration: 32s;
}

.hero__slider__media {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 0 50px 0 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.hero__slide--1 {
    animation: heroFade1 var(--hero-slider-duration) infinite;
}

.hero__slide--2 {
    animation: heroFade2 var(--hero-slider-duration) infinite;
}

.hero__slide--3 {
    animation: heroFade3 var(--hero-slider-duration) infinite;
}

.hero__slide--4 {
    animation: heroFade4 var(--hero-slider-duration) infinite;
}

.hero__slide--5 {
    animation: heroFade5 var(--hero-slider-duration) infinite;
}

.hero__slider__media::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #009245;
    transform: scaleX(0);
    transform-origin: left;
    animation: heroTimeline var(--hero-slider-duration) linear infinite;
}

@keyframes heroTimeline {
    0% { transform: scaleX(0); }
    19.999% { transform: scaleX(1); }
    20% { transform: scaleX(0); }
    39.999% { transform: scaleX(1); }
    40% { transform: scaleX(0); }
    59.999% { transform: scaleX(1); }
    60% { transform: scaleX(0); }
    79.999% { transform: scaleX(1); }
    80% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes heroFade1 {
    0% { opacity: 1; }
    18% { opacity: 1; }
    22% { opacity: 0; }
    96% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes heroFade2 {
    0% { opacity: 0; }
    18% { opacity: 0; }
    22% { opacity: 1; }
    38% { opacity: 1; }
    42% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes heroFade3 {
    0% { opacity: 0; }
    38% { opacity: 0; }
    42% { opacity: 1; }
    58% { opacity: 1; }
    62% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes heroFade4 {
    0% { opacity: 0; }
    58% { opacity: 0; }
    62% { opacity: 1; }
    78% { opacity: 1; }
    82% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes heroFade5 {
    0% { opacity: 0; }
    78% { opacity: 0; }
    82% { opacity: 1; }
    96% { opacity: 1; }
    100% { opacity: 0; }
}

.hero__scroll {
    display: none;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    flex-direction: column;
    align-items: center;
}

.hero__scroll__text {
    display: inline-block;
    transform: rotate(90deg);
    transform-origin: center;
}

.hero__scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 120px;
    background: #fff;
    margin-top: 40px;
    transform-origin: top;
    animation: scrollLine 2.5s ease-in infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        opacity: 1;
    }
    80% {
        transform: scaleY(1);
        opacity: 1;
    }
    100% {
        transform: scaleY(1);
        opacity: 0;
    }
}

.hero__catchcopy {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: calc(100% - 48px);
}

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

.hero__catchcopy .hero__catchcopy-pc {
    display: none !important;
}

.hero__catchcopy .hero__catchcopy-sp {
    display: block !important;
}

.hero__saiyou-btn {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 15;
}

.hero__saiyou-btn a {
    display: block;
}

.hero__saiyou-btn img {
    display: block;
    max-width: 350px;
    height: auto;
    transition: transform 0.3s ease;
}

.hero__saiyou-btn a:hover img {
    transform: scale(1.02);
}

.hero__saiyou-btn__close {
    position: absolute;
    top: -5px;
    right: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #009245;
    color: #009245;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 16;
}

.hero__saiyou-btn__close:hover {
    background: #009245;
    color: #fff;
}

.hero__saiyou-btn.hidden {
    display: none !important;
}

.hero__saiyou-reopen-btn {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 15;
    padding: 12px 24px;
    background: #009245;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__saiyou-reopen-btn:hover {
    background: #006837;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 146, 69, 0.3);
}

.hero__saiyou-reopen-btn.show {
    display: block;
}

@media screen and (max-width: 767px) {
    .hero__catchcopy img {
        max-width: 80%;
    }
    
    .hero__saiyou-btn {
        display: none !important;
    }

    .hero__saiyou-reopen-btn {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hero__saiyou-btn {
        display: block;
    }
}

@media screen and (min-width: 1024px) {
    .hero__catchcopy {
        left: 40px;
        max-width: 600px;
    }

    .hero__catchcopy .hero__catchcopy-pc {
        display: block !important;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    .hero__catchcopy .hero__catchcopy-sp {
        display: none !important;
    }

    .hero__slider > .hero__slider {
        max-width: 1600px;
        margin: 0;
        margin-right: auto;
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .hero__slider__media {
        height: 560px;
        flex: 1 1 auto;
    }

    .hero__scroll {
        display: flex;
        position: static;
        transform: none;
        align-self: flex-end;
        margin-bottom: 40px;
    }
}
.container-fluid {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
}
.container-sm {
    width: 98%;
    max-width: 540px;
    margin: 0 auto;
}
.container-md {
    width: 98%;
    max-width: 720px;
    margin: 0 auto;
}
.container-lg {
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
}
.container-xl {
    width: 95%;
    max-width: 1140px;
    margin: 0 auto;
}

/*画像のフルード化*/
img {
    max-width: 100%;
    height: auto;
}
/*マージン（top）*/
.mt-0 {
    margin-top: 0;
}
.mt-10 {
    margin-top: 0.625rem;
}
.mt-20 {
    margin-top: 1.25rem;
}
.mt-30 {
    margin-top: 1.875rem;
}
.mt-40 {
    margin-top: 2.5rem;
}
.mt-50 {
    margin-top: 3.125rem;
}
/*マージン（bottom）*/
.mb-0 {
    margin-bottom: 0;
}
.mb-10 {
    margin-bottom: 0.625rem;
}
.mb-20 {
    margin-bottom: 1.25rem;
}
.mb-30 {
    margin-bottom: 1.875rem;
}
.mb-40 {
    margin-bottom: 2.5rem;
}
.mb-50 {
    margin-bottom: 3.125rem;
}

/* Company Info Wrapper */
.company-info-wrapper {
    display: flex;
    align-items: stretch;
    position: relative;
    max-width: 1100px;
    margin: 110px auto 0;
    overflow: visible;
}

/* Company Philosophy Section */
.company-philosophy {
    position: relative;
    flex: 0 0 45%;
    padding: 1rem 40px;
    text-align: left;
}

.company-philosophy a {
    color: #fff;
    border: 1px solid #fff;
    font-size: 1rem;
    margin: 2rem 0 0;
    padding: 0.7em 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.company-philosophy a::after {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background: #fff;
}

.company-philosophy::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: calc(-100vw + ((100vw - 1100px) / 2));
    right: -30%;
    bottom: auto;
    height: calc(100% - 5rem);
    background: #006837;
    z-index: -1;
    border-radius: 0 40px 40px 0;
}
@media screen and (max-width: 1100px) {
    .company-philosophy::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: calc(-100vw + ((100vw - 1100px) / 2));
    right: -30%;
    bottom: auto;
    height: calc(100%);
    background: #006837;
    z-index: -1;
    border-radius: 0 40px 40px 0;
}
}

@media screen and (max-width: 1100px) {
    .company-philosophy::before {
        left: -20px;
    }
}

.company-philosophy h2 {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.company-philosophy h2.fade-in-left {
    opacity: 1;
    transform: translateX(0);
}

/* Company Links (CEO Message & Company Overview) */
.company-links {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 0 40px;
    margin-left: auto;
    margin-top: 4rem;
}

/* CEO Message Section */
.ceo-message {
    width: 100%;
}

.ceo-message a {
    display: block;
    max-width: 500px;
    text-decoration: none;
    color: #333;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ceo-message a.fade-in-left {
    opacity: 1;
    transform: translateX(0);
}

.ceo-message a:hover {
    opacity: 1 !important;
}

.ceo-message img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    border-radius: 0 40px 0 40px;
}

.ceo-message p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: -0.5rem 0 0;
    text-align: right;
    color: #006837;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}


.pankuzu .container-xl {
    display: flex;
    justify-content: flex-end;
}
.ceo-message p::after {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background: #006837;
    flex-shrink: 0;
}

/* Company Overview Section */
.company-overview {
    width: 100%;
}

.company-overview a {
    display: block;
    max-width: 500px;
    text-decoration: none;
    color: #333;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.company-overview a.fade-in-left {
    opacity: 1;
    transform: translateX(0);
}

.company-overview a:hover {
    opacity: 1 !important;
}

.company-overview img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    border-radius: 0 40px 0 40px;
}

.company-overview p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: -0.5rem 0 0;
    text-align: right;
    color: #006837;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.company-overview p::after {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background: #006837;
    flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 1023px) {
    .company-info-wrapper {
        flex-direction: column;
    }

    .company-philosophy {
        flex: 1;
        text-align: center;
    }

    .company-philosophy::before {
        right: 0;
    }

    .company-links {
        flex-direction: column;
        gap: 40px;
    }
}

/*テキスト*/
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}

/*お知らせ（トップページ）*/
.news-wrapper h2 {
    color:#FF3300;
    display: block;
    margin-bottom: 2rem;
}
.news-wrapper > h2 span {
    color: #006837;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin: 5px 0 10px 0;
}

.news-list dl {
    border-top: 1px solid #ccc;
    padding: 1.5rem 0;
}
.news-list dt {
    font-weight: bold;
    color: #006837;
    width: 150px;
    float: left;
    line-height: 1.5em;
}
.news-list dd {
    margin-left: 170px;
    line-height: 1.5em;
}
.news-list dd a {
    color: #333;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}
.news-list dd a::after {
    content: '';
    position: absolute;
    left: 100%;
    margin-left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 1px;
    background-color: #009245;
    transition: transform 0.2s ease;
}
.news-list dd a:hover {
    text-decoration: none;
}
.news-list dd a:hover::after {
    transform: translateY(-50%) translateX(5px);
}

.news-more {
    margin: 2rem 0;
}

.news-more a {
    display: inline-block;
    padding: 1.3rem 50px 1.3rem 30px;
    background: linear-gradient(135deg, #006837 0%, #009245 100%);
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-weight: bold;
}

.news-more a::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.news-more a:hover::after {
    transform: translateY(-50%) translateX(5px);
}

/*イントロダクション*/
.introduction-container {
    background-image: url(../images/introduction_background_image.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0 100px 0;
}

.introduction-title h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #006837;
}

.introduction-title h2 span {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
}

.introduction-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.introduction-item {
    flex: 0 0 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.introduction-item.fade-in-left {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (max-width: 767px) {
    .introduction-wrapper {
        flex-direction: column;
    }
    
    .introduction-item {
        flex: 1 1 100%;
    }
}

.introduction-item__content h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #006837;
    margin: 1rem 0;
}
.introduction-item__content p {
    line-height: 1.6;
    color: #333;
}
.introduction-item__content img {
    border-radius: 0 40px 0 40px;
}

.introduction-item__btn {
    margin-top: 1.5rem;
}

.introduction-item__btn a {
    display: inline-block;
    padding: 1rem 40px 1rem 25px;
    background: linear-gradient(135deg, #006837 0%, #009245 100%);
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
}

.introduction-item__btn a::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.introduction-item__btn a:hover::after {
    transform: translateY(-50%) translateX(5px);
}

/* Footer */
footer {
    padding: 2rem 0 10rem 0;
    width: 100%;
    position: relative;
}
.network-slider-container {
    position: relative;
    margin-top: 8rem;
    background-image: url(../images/footer-back-ground-images.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 0;
    min-height: 600px;
}
.network-slider-container h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #006837;
}

.network-slider-container h2 span {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
}


.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .footer-nav-wrapper {
        justify-content: flex-end;
        margin-left: 100px;
    }
}

.footer-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

@media screen and (max-width: 1023px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer-nav li {
    display: flex;
    align-items: center;
}

.footer-nav a {
    color: #006837;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-nav__saiyou a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: linear-gradient(to right, #FF8400, #FF3300);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 0 20px 0 20px;
}

.footer-nav__saiyou a::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('../images/akar-icons_link-out.png') no-repeat center center;
    background-size: contain;
    margin-left: 5px;
}



@media screen and (max-width: 1023px) {
    .network-slider-wrapper {
        background-size: cover;
        position: relative;
    }
}

.network-slider-controls {
    position: absolute;
    right: 10rem;
    top: 4rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
    pointer-events: auto;
}

.network-slider-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.network-slider-btn:hover {
    transform: scale(1.1);
}

.network-slider-btn img {
    display: block;
    width: 40px;
    height: 40px;
}

.network-slider {
    overflow: hidden;
    margin-top: 2rem;
    width: 100%;
}

.network-slider__content {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    cursor: grab;
}

.network-slider__content.dragging {
    cursor: grabbing;
}

.network-item {
    flex: 0 0 calc(25% - 1.5rem);
    text-align: center;
    width: calc(25% - 1.5rem);
}

.network-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 40px 0 40px;
    margin-bottom: 1rem;
}

/* Pagetop Button */
.pagetop-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pagetop-btn.show {
    opacity: 1;
    visibility: visible;
}

.pagetop-btn a {
    display: block;
    transition: transform 0.3s ease;
}

.pagetop-btn a:hover {
    transform: scale(1.1);
}

.pagetop-btn img {
    display: block;
    width: 60px;
    height: 60px;
}
.network-item a {
    color: #006837;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: -5px;
}

@media screen and (max-width: 1023px) {
    .network-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .network-slider-controls {
        position: static;
        justify-content: center;
        margin-bottom: 1rem;
    }
}
.footer-wrapper {
    display: flex;
}

@media screen and (max-width: 1023px) {
    .footer-wrapper {
        flex-direction: column;
    }

    .footer-nav-wrapper {
        margin-top: 1rem;
    }
}

.footer-title-box img {
    margin: 0 0 1rem 0;
}

.footer-title-box p {
    line-height: 1.5em;
}

/*===========================*/
/*共通スタイル*/
/*===========================*/

.pankuzu ul {
    list-style: none;
    margin: 0.5em 0;
    padding: 0;
    display: flex;
    gap: 5px;
}
.pankuzu li {
    font-size: 0.85rem;
}
.pankuzu a:first-child {
    color: #009245;
    font-weight: 300;
    justify-content: flex-end;
}

.pankuzu a::after {
    content: ">>";
    margin-left: 5px;
}

/*=============================*/
/*PAGE*/
/*=============================*/

.page p {
    line-height: 1.8em;
}
.page h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #006837;
    margin: 2rem 0 3rem 0;
}
.page .description-container {
    border-left: 1px solid #006837;
    border-right: 1px solid #006837;
    padding: 0 2rem 0 2rem;
}

.page .service-section {
    margin-top: 7rem;
}

.page .service-item {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.page .service-item__image {
    flex: 0 0 48%;
}

.page .service-item__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 40px 0 40px;
}

.page .service-item__body {
    flex: 1 1 auto;
}

.page .service-item__title {
    background-color: #DDF0E7;
    color: #006837;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 2rem;
    padding: 0.5em;
}

.page .service-item__link {
    display: inline-block;
    padding: 1rem 40px 1rem 25px;
    background: linear-gradient(135deg, #006837 0%, #009245 100%);
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.page .service-item__link::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.page .service-item__link:hover::after {
    transform: translateY(-50%) translateX(5px);
}

@media screen and (max-width: 1023px) {
    .page .service-item {
        flex-direction: column;
    }

    .page .service-item__image {
        order: 1;
        flex: 1 1 auto;
    }
    .page .service-item__image img {
        width: 100%;
        height: auto;
    }

    .page .service-item__body {
        order: 2;
    }
}

/*============================*/
/*service詳細ページ*/
/*============================*/

.page .service-detail-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.page .service-detail-wrapper .service-detail__image {
    flex: 0 0 40%;
}
.page .service-detail-wrapper .service-detail__image img {
    margin: 0 0 2rem 0;
    border-radius:  0 40px 0 40px;
}
.page .service-detail-wrapper .service-detail__body {
    flex: 1 1 auto;
}
.page .service-detail-wrapper .service-detail__body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #006837;
    line-height: 1.7em;
    margin: 0 0 1.5rem 0;
}
.page .service-detail-wrapper .service-detail__body h4 {
    background-color: #006837;
    color: #fff;
    padding: 0.5em 1em;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    margin: 4rem 0 1rem 0;
}
.page .service-detail-wrapper .service-detail__body h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #006837;
    line-height: 1.7em;
    margin-bottom: 1rem;
}
.page .service-illust h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #006837;
    background-color: #DDF0E7;
    padding: 0.5em;
}

@media screen and (max-width: 790px) {
    .page .service-detail-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .page .service-detail-wrapper .service-detail__body {
        order: 1;
    }

    .page .service-detail-wrapper .service-detail__image {
        order: 2;
    }

    .page .service-detail-wrapper .service-detail__image,
    .page .service-detail-wrapper .service-detail__body {
        flex: 1 1 auto;
        width: 100%;
    }
}

/**============================*/
/*詳細ページインデックス*/
/*============================*/
.service-index-container {
    background-color: #DDF0E7;
    padding: 0.5rem 2rem 3rem 2rem;
    margin: 4rem 0;
}
.service-index-container>.introduction-title {
    margin-bottom: -20px;
}

.service-index-container ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media screen and (max-width: 767px) {
    .service-index-container ul {
        grid-template-columns: 1fr;
    }
}

.service-index-container ul li {
    background-color: #fff;
    border: 3px solid #006837;
    padding: 1rem;
    color: #006837;
    font-weight: 700;
}

.two-photos {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.two-photos img {
    width: 100%;
    height: auto;
}
.two-photos>div {
    margin: 1rem 0;
}
.two-photos>div p {
    text-align: center;

}
@media (max-width: 767px) {
    .two-photos {
        flex-direction: column;
    }
}

/*============================*/
/*会社概要ページ*/
/*============================*/

.daihyou-wrapper {
    background-color: #DDF0E7;
    padding: 2rem 0;
    margin: 5rem 0;
}
.daihyou-container {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}
.daihyou-container > div h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #006837;
    margin: 0 0 1.5rem 0;
}
.daihyou-container > div img {
    margin: 2rem 0 0 0;
    border-radius: 0 40px 0 40px;
}
@media (max-width: 980px) {
    .daihyou-container {
        flex-direction: column;
    }
    .daihyou-container > div img {
        margin: 0 0 2rem 0;
    }
}

.kigyou-rinen-container {
    display: flex;
    gap: 4rem;
}
.kigyou-rinen-container > div h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #006837;
    margin: 0 0 1.5rem 0;
}
.kigyou-rinen-container > div img {
    border-radius: 0 40px 0 40px;
}
.kigyou-rinen-p {
    margin: 0 0 1rem 0;
    line-height: 1.2em;
    font-size: 1.25rem;
    font-weight: 700;
    color: #006837;
}

.company-gaiyou-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #006837;
    margin: 0 0 1.5rem 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}
.table th {
    color: #006837;
    background-color: #ebebeb;
    font-weight: 700;
}
.table th,
.table td {
    border-top: 1px solid #006837;
    border-bottom: 1px solid #006837;
    padding: 1rem 2rem;
    text-align: left;
    line-height: 1.5em;
}
.link-btn-a {
    background-color: #006837;
    color: #fff;
    display: inline-block;
    margin: 1em 0 0 0;
    padding: 0.3em 1em;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
}
.link-btn-a:hover {
    background-color: #004d24;
    transition: .5s all;
}

/*============================*/
/*ユアテック協力会リンクボタン*/
/*============================*/
.yutec-container {
    background-color: #DDEBFF;
    padding: 2rem;
    margin: 5rem 0;
}

.yutec-container > div {
    width: 100%;
}

.yutec-container h3 {
    color: #172A88;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #172A88;
    letter-spacing: 0.02em;
}

.yutec-container a {
    display: block;
    position: relative;
    background: linear-gradient(135deg, #172A88 0%, #1f3db5 100%);
    color: #fff;
    padding: 1.25rem 1.25rem 1.25rem 4rem;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(23, 42, 136, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.yutec-container a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.25rem;
    width: 32px;
    height: 32px;
    background: url('../images/book-icon.png') no-repeat center center;
    background-size: contain;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

.yutec-container a p {
    color: #fff;
}

.yutec-container a:hover {
    background: linear-gradient(135deg, #0f1f6f 0%, #172A88 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(23, 42, 136, 0.35);
}

.yutec-container a:hover::before {
    transform: translateY(-50%) scale(1.08);
}

@media screen and (min-width: 1024px) {
    .yutec-container {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }

    .yutec-container > div:first-child {
        flex: 1 1 auto;
    }

    .yutec-container > div:last-child {
        flex: 0 0 360px;
    }
}

/*============================*/
/*採用情報セクション*/
/*============================*/
.recruit-container {
    background-color: #FFE4C6;
    padding: 2rem;
    margin: 5rem 0;
}

.recruit-container h3 {
    color: #FF5E00;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #FF5E00;
    letter-spacing: 0.02em;
}

.recruit-container p {
    line-height: 1.8;
}

.recruit-container > div:first-child a {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.9rem 2.4rem 0.9rem 1.4rem;
    background: linear-gradient(135deg, #FF8A00 0%, #FF5E00 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(255, 94, 0, 0.25);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.recruit-container > div:first-child a::after {
    content: "";
    position: absolute;
    right: 1.1rem;
    top: 50%;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.recruit-container > div:first-child a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 94, 0, 0.35);
    filter: brightness(1.05);
}

.recruit-container > div:last-child {
    margin-top: 1.5rem;
}

.recruit-container > div:last-child img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 1024px) {
    .recruit-container {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }

    .recruit-container > div:first-child {
        flex: 0 0 30%;
    }

    .recruit-container > div:last-child {
        flex: 0 0 70%;
        display: flex;
        gap: 1rem;
        margin-top: 0;
    }

    .recruit-container > div:last-child img {
        width: calc(50% - 0.5rem);
    }
}

.offices-item-container {
    margin-top: 5rem;
    display: grid;
    gap: 2rem;
}
.offices-item-container > div img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 40px 0 40px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.offices-item-container > div h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #006837;
    margin: 0 0 0.5rem 0;
}
.offices-item-container > div address {
    font-style: normal;
    line-height: 1.5em;
}

.offices-item-container > div a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.85rem 2.2rem 0.85rem 1.2rem;
    background: linear-gradient(135deg, #006837 0%, #009245 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 999px;
    position: relative;
    box-shadow: 0 8px 18px rgba(0, 104, 55, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.offices-item-container > div a::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.offices-item-container > div a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 104, 55, 0.32);
    filter: brightness(1.06);
}

@media screen and (min-width: 1024px) {
    .offices-item-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }
}

/*============================*/
/*お問い合わせページ*/
/*============================*/
.contact-container {
    margin-top: 5rem;
}
.contact-container h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #006837;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #006837;
    letter-spacing: 0.02em;
}

.contact-tel {
    margin: 0 0 0.6rem;
    padding: 0.65rem 1.1rem 2rem 1.1rem;
    border-radius: 10px;
    color: #006837;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.contact-tel > span {
    font-size: 1.2rem;
}

.contact-container > a {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.9rem 2.4rem 0.9rem 1.4rem;
    background: linear-gradient(135deg, #FF8A00 0%, #FF5E00 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(255, 94, 0, 0.25);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.contact-container > a::after {
    content: "";
    position: absolute;
    right: 1.1rem;
    top: 50%;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    font-size: 0.85rem;
}

.contact-container > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 94, 0, 0.35);
    filter: brightness(1.05);
}

/*シングルページ*/
.post-date {
    text-align: right;
    margin: 1rem 0;
}
.post-text > h2 {
    line-height: 1.5em;
}
.post-text p {
    line-height: 1.8em;
    margin-bottom: 1rem;
}