@charset "utf-8";

/*===== CSS 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;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1.6;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    /*スマホのブラウザでのフォントサイズの自動調整を無効化*/
    -webkit-font-smoothing: antialiased;
    /*フォントのスムージング*/
    -moz-osx-font-smoothing: grayscale;
    /*フォントのスムージング*/
    display: block;
    /*IE6のインラインブロック要素の余白のバグを解消*/
}

/* 初回ロード時の体感待機を伝えるオーバーレイ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.js .page-loader {
    opacity: 1;
    visibility: visible;
}

.page-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.page-loader-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #d8e7df;
    border-top-color: #006837;
    animation: page-loader-spin 0.9s linear infinite;
}

.page-loader-text {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: #1f3f30;
    font-weight: 600;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.page-is-loading {
    overflow: hidden;
}

body.page-is-ready {
    overflow: visible;
}

@keyframes page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader-spinner {
        animation-duration: 1.8s;
    }

    .page-loader {
        transition-duration: 0.2s;
    }
}

* {
    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;
}

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

sub {
    font-size: 80%;
    vertical-align: sub;
}

/*======= 共有リンクボタン =========*/
.link-btn-b a {
    color: #004d28;
    border: 1px solid #004d28;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 700;
}

.link-btn-b a::after {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #004d28;
    transition: transform 0.7s ease;
}

.link-btn-b a:hover {
    background-color: #004d28;
    color: #fff;
}

.link-btn-b a:hover::after {
    background-color: #fff;
    transform: translateX(8px);
}

/*===== Container Classes =====*/
.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;
}

/*===== Utility Classes =====*/
/* Margin 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;
}

/* Margin 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;
}

/* Text Align */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/*===== Layout Components =====*/

/* メニューオーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #006837;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* 左カラム */
.sidebar {
    width: 250px;
    max-width: 250px;
    padding: 20px;
    position: fixed;
    height: 100vh;
    z-index: 200;
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: height 0.3s ease;
}

.site-title {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.car-image {
    width: 108px;
    height: auto;
}

/* ハンバーガーメニュー */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 217px;
    align-items: center;
    margin-bottom: 20px;
}

.hamburger-lines {
    width: 100%;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hamburger span {
    display: block;
    height: 1px;
    width: 100%;
    background-color: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.menu-text {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
}

/* アクティブ状態のクロスアニメーション */
.hamburger.active .hamburger-lines {
    height: 40px;
}

.hamburger.active span:nth-child(1) {
    background-color: #F7FF00;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    background-color: #F7FF00;
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* テキスト変更のアニメーション */
.menu-text {
    position: relative;
}

.menu-text::before {
    content: 'MENU';
    transition: opacity 0.3s ease;
}

.menu-text::after {
    content: 'CLOSE';
    color: #F7FF00;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger.active .menu-text::before {
    opacity: 0;
}

.hamburger.active .menu-text::after {
    opacity: 1;
}

.menu-logo-wrap {
    display: none;
    width: 100%;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px;
}

.menu-logo-wrap img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.nav-menu.active .menu-logo-wrap {
    display: flex;
}

.menu-home-btn {
    background-color: #fff;
    color: #006837 !important;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.75rem !important;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.menu-home-btn:hover {
    opacity: 0.8;
}

.nav-menu {
    display: none;
    width: 100%;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    margin-bottom: 1rem;
    text-align: center;
}

.nav-menu a {
    /* text-decoration: none; と color: inherit; は既にリセットで設定済み */
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 10px;
}

.nav-menu a:hover {
    color: #007bff;
}

/* ナビゲーション内お問合せエリア */
.nav-contact-container {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.nav-contact-title p {
    color: #004d28;
    background-color: #F7FF00;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4;
    padding: 0.5em 1em;
}

.nav-contact-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 40px;
}

.nav-contact-tel {
    background-color: #fff;
}

.nav-contact-tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #004d28 !important;
    text-decoration: none;
    padding: 0;
    margin-bottom: 4px;
    line-height: 1;
}

.nav-contact-tel a img,
.nav-contact-fax .fax-number img {
    height: 1.25em;
    width: auto;
    margin-right: 8px;
}

.nav-contact-tel p {
    font-size: 12px;
    opacity: 0.8;
    text-align: center;
}

.nav-contact-fax {
    background-color: #fff;
}

.nav-contact-fax .fax-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #004d28 !important;
    margin-bottom: 4px;
    line-height: 1.2;
}

.nav-contact-fax .fax-note {
    font-size: 12px;
    opacity: 0.8;
    text-align: center;
}

@media (min-width: 769px) {
    .nav-contact-container {
        grid-column: 1 / -1;
        margin-top: 32px;
    }

    .nav-contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .nav-contact-tel,
    .nav-contact-fax {
        padding: 1rem;
    }
}

@media (min-width: 769px) {
    .nav-menu.active {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        align-items: start;
    }

    .nav-menu {
        position: absolute;
        top: 0;
        left: calc(100% + 20px);
        width: min(1000px, calc(100vw - 360px));
        background-color: #006837;
        padding: 24px 28px;
        border-radius: 8px;
        z-index: 220;
    }

    .nav-menu .menu-logo-wrap {
        grid-column: 1 / -1;
        margin: 0 0 10px;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        min-width: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0;
        text-align: left;
    }

    .nav-menu a {
        color: #ffffff;
        padding: 3px 10px;
        white-space: normal;
        text-align: left;
        line-height: 1.4;
    }

    .nav-menu ul>li:first-child a {
        font-weight: 700;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 4px;
    }

    .nav-menu a:hover {
        color: #ffffff;
        opacity: 0.85;
    }
}

@media (max-width: 768px) {

    .nav-contact-tel,
    .nav-contact-fax {
        width: 100%;
        padding: 1rem 0rem;
    }
}

/* 事業ゴミ袋注文ボタン */
.fukuro-order-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #006837;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}
.fukuro-order-btn h2 {
    background-color: #F7FF00;
    color: #006837;
    font-weight: 700;
    margin-bottom: 5px;
    border-radius: 5px;
}
.fukuro-order-btn p {
    color: #F7FF00;
    font-size: 0.875rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.fukuro-order-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #006837;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
}

.fukuro-order-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F7FF00 0%, #00ff88 50%, #F7FF00 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.fukuro-order-btn a::after {
    content: '';
    width: 10px;
    height: 1px;
    background-color: #006837;
    transition: transform 0.3s ease;
}

.fukuro-order-btn a:hover {
    color: #006837;
    border-color: #F7FF00;
}

.fukuro-order-btn a:hover::before {
    left: 0;
}

.fukuro-order-btn a:hover::after {
    transform: translateX(5px);
}

.sidebar.menu-open .site-title,
.sidebar.menu-open .fukuro-order-btn {
    display: none;
}

/* メインコンテンツ */
.main-content {
    flex: 1;
    margin-left: 250px;
    background-color: #f8f9fa;
}

/* ヒーロー画像スライドショー */
.hero-section-wrap {
    position: relative;
    margin-bottom: 50px;
}

.hero-section {
    height: 750px;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    overflow: hidden;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform-origin: center center;
    will-change: transform;
}

.hero-message {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(calc(-50% - 1em));
    width: calc(100% - 80px);
    max-width: 920px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 50pt;
    line-height: 1.4;
    text-align: left;
    color: #ffffff;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
}

.hero-message[data-slide="1,2"] {
    transform: translateY(calc(-50% + 0.5em));
}

.hero-message-second {
    position: absolute;
    top: 20%;
    left: 40px;
    transform: translateY(-20%);
    width: calc(100% - 80px);
    max-width: 920px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 50pt;
    line-height: 1.4;
    text-align: left;
    color: #ffffff;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.hero-message-line {
    display: block;
    margin-bottom: 1.7rem;
}

.hero-message-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
    text-shadow: none;
}

.hero-message[data-slide="3"] .hero-message-line {
    display: inline-flex;
    align-items: center;
}

.hero-message[data-slide="3"] .hero-message-line::after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 1px;
    background-color: #fff;
    margin-left: 1.5rem;
}

.hero-message[data-slide="3"] .hero-message-line:first-child::after {
    display: none;
}

.hero-content {
    position: relative;
    color: white;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-content.show {
    opacity: 1;
}

.hero-subtitle {
    position: absolute;
    top: calc(50% - 250px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    text-align: center;
    letter-spacing: 0.3em;
    text-align-last: center;
    white-space: normal;
    width: 90vw;
    max-width: 90%;
    line-height: 1.2;
}

.hero-subtitle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-subtitle-break {
    display: none;
}

.hero-subtitle span::after {
    content: '';
    display: inline-block;
    width: 70px;
    height: 1px;
    background-color: #fff;
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.hero-title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title img {
    max-width: 560px;
    width: 100%;
    height: auto;
    display: block;
}

/* ヒーロー進行状況バー */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background-color: #006837;
}

.hero-repeat-button {
    position: absolute;
    right: 20px;
    bottom: -40px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-repeat-button img {
    display: block;
    width: 30px;
    height: 30px;
    flex: 0 0 1rem;
}

.hero-repeat-button-label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #333333;
    white-space: nowrap;
}

.hero-repeat-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.hero-repeat-button.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-repeat-button.is-active {
    opacity: 1;
}

/* コンテンツコンテナ */
.content-container {
    max-width: 1140px;
    margin: 0;
    padding: 0 40px;
}

/* コンテンツセクション */
.content-section {
    padding: 60px 0;
}

/* 重点な取り組みセクション */
.priority-initiatives {
    margin-top: 100px;
    padding: 80px 0;
}

.priority-container {
    max-width: 1140px;
    margin: 0;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.priority-title-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.carousel-nav {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-shrink: 0;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-btn:hover {
    opacity: 0.8;
}

.carousel-btn img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.priority-carousel {
    overflow: hidden;
    border-radius: 12px;
    touch-action: pan-y;
}

.priority-content {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.priority-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.priority-title-en {
    font-size: 2rem;
    font-weight: 400;
    color: #006837;
    order: 1;
    font-family: 'Libre Baskerville', 'Sorts Mill Goudy', 'Garamond', 'Georgia', serif;
    letter-spacing: 0.05em;
}

.priority-title-ja {
    font-size: 14pt;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.2em;
    order: 2;
}

.priority-content {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.priority-item {
    background: #FEFFEC;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.priority-item img {
    margin-bottom: 20px;
}

.priority-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #006837;
    margin-bottom: 15px;
    line-height: 1.3em;
}

.priority-item p {
    line-height: 1.5em;
    font-size: 0.95rem;
    width: 100%;
    text-align: left;
    flex: 1;
}

.priority-item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #006837;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #006837;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.priority-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff88 0%, #006837 50%, #00ff88 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.priority-item a::after {
    content: '';
    width: 10px;
    height: 1px;
    background-color: white;
    transition: transform 0.3s ease;
}

.priority-item a:hover::before {
    left: 0;
}

@media (max-width: 1100px) {
    .priority-item {
        min-width: calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

.priority-item a:hover::after {
    transform: translateX(5px);
}

/* お知らせセクション */
.information-container {
    max-width: 1140px;
    margin: 0;
    padding: 0 40px;
}

.information-header {
    text-align: center;
    margin-bottom: 1rem;
}

.information-title-en {
    font-size: 2rem;
    font-weight: 400;
    color: #006837;
    font-family: 'Libre Baskerville', 'Sorts Mill Goudy', 'Garamond', 'Georgia', serif;
}

.information-title-ja {
    font-weight: bold;
    color: #333;
}

.information-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.info-date {
    font-size: 0.8rem;
    color: #006837;
    font-weight: bold;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.info-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
}

.info-link {
    border: 1px solid #006837;
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: fit-content;
    margin-top: auto;
    color: #006837;
    background-color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 104, 55, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.info-link::after {
    content: ">";
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.info-link:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 104, 55, 0.2);
    background-color: #006837;
}

.info-link:hover::after {
    transform: translateX(3px);
}

.info-link:focus-visible {
    outline: 3px solid #f8d66b;
    outline-offset: 3px;
}

.info-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 104, 55, 0.24);
}

.information-more-btn {
    margin: 2rem 0 3rem 0;
    text-align: center;
}

.information-more-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background-color: #006837;
    color: #fff;
    border: 2px solid #006837;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    padding: 0.7rem 4rem;
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(0, 104, 55, 0.12);
}

.information-more-btn a::after {
    content: ">";
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.information-more-btn a:hover {
    background-color: #00572d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 104, 55, 0.2);
}

.information-more-btn a:hover::after {
    transform: translateX(3px);
}

.information-more-btn a:focus-visible {
    outline: 3px solid #f8d66b;
    outline-offset: 3px;
}

.information-more-btn a:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 104, 55, 0.16);
}

@media (max-width: 1200px) {
    .information-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 834px) {
    .priority-content {
        margin-top: 20px;
    }

    .priority-item {
        min-width: 100%;
        width: 100%;
    }
}

/*===== Responsive Design =====*/
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .site-title {
        position: static;
        margin-bottom: 0;
    }

    .hamburger {
        width: 30px;
        margin-bottom: 0;
    }

    .hamburger-lines {
        width: 30px;
        height: 24px;
    }

    .hamburger.active .hamburger-lines {
        height: 30px;
    }

    .menu-text {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: #f8f9fa;
        padding: 20px;
        border-top: 1px solid #e9ecef;
    }

    .nav-menu li {
        text-align: left;
    }

    .fukuro-order-btn {
        position: static;
        margin-top: 20px;
        padding: 15px;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .fukuro-order-btn p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .fukuro-order-btn a {
        padding: 10px 20px;
        font-size: 12px;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-section {
        height: 500px;
    }

    .hero-slide-image {
        object-position: center;
    }

    .hero-message {
        top: 40px;
        left: 20px;
        width: calc(100% - 40px);
        font-size: clamp(18px, 4.8vw, 30px);
    }

    .hero-title img {
        max-width: 400px;
    }

    .hero-section-wrap {
        margin-bottom: 45px;
    }

    .hero-repeat-button {
        right: 20px;
        bottom: -25px;
    }

    .hero-subtitle {
        font-family: 'M PLUS 1', sans-serif;
        font-weight: 200;
        letter-spacing: 0.3em;
        font-size: 20pt;
        top: calc(50% - 120px);
        text-align: justify;
        text-align-last: justify;
        white-space: normal;
        width: 350px;
        max-width: 85%;
        line-height: 1.3;
    }

    .hero-subtitle-break {
        display: block;
    }

    .content-container {
        max-width: none;
        margin: 0;
        padding: 0 20px;
    }

    .content-section {
        padding: 40px 0;
    }

    .priority-initiatives {
        padding: 60px 0;
    }

    .priority-container {
        max-width: none;
        margin: 0;
        padding: 0 20px;
    }

    .priority-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .priority-title-section {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .priority-title {
        align-items: center;
    }

    .carousel-nav {
        justify-content: center;
    }

    .priority-title-ja {
        font-size: 12pt;
        order: 2;
    }

    .priority-title-en {
        order: 1;
    }

    /* タブレットでも3列表示を維持 */

    .priority-item {
        min-width: calc(100% - 30px);
        width: calc(100% - 30px);
        padding: 25px;
    }

    .priority-item h4 {
        font-size: 1.3rem;
        margin: 0.5rem 0;
    }

    .priority-item img {
        margin-bottom: 15px;
    }

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

@media (min-width: 481px) and (max-width: 768px) {
    .nav-menu {
        width: 80%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        position: relative;
    }

    .sidebar {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
        height: auto;
        padding: 12px 15px;
        border-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        z-index: 260;
        background: transparent;
    }

    .site-title {
        position: static;
        order: 1;
        width: 100%;
        margin: 0;
        padding: 6px 56px 0;
        text-align: center;
        align-items: center;
    }

    .hamburger {
        position: absolute;
        top: 12px;
        right: 15px;
        z-index: 260;
        order: 3;
        align-self: auto;
        margin: 0;
    }

    .fukuro-order-btn {
        order: 2;
        position: static;
        width: 100%;
        margin: 0;
        padding: 15px;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .nav-menu {
        order: 4;
        width: 100%;
        background-color: #006837;
        border-top: 0;
        padding: 16px;
        border-radius: 8px;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        margin: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        color: #ffffff;
        padding: 4px 6px;
        line-height: 1.4;
    }

    .nav-menu ul>li:first-child a {
        font-weight: 700;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        padding-bottom: 8px;
        margin-bottom: 4px;
    }

    .hero-section {
        height: 400px;
        margin-top: 0;
    }

    .hero-slide-image {
        object-position: center;
    }

    .hero-message {
        top: 80px;
        left: 15px;
        width: calc(100% - 30px);
        font-size: clamp(16px, 5.2vw, 24px);
        letter-spacing: 0.08em;
    }

    .hero-message-line {
        margin-bottom: 1rem;
    }

    .hero-title img {
        max-width: 300px;
    }

    .hero-section-wrap {
        margin-bottom: 40px;
    }

    .hero-repeat-button {
        right: 15px;
        bottom: -25px;
    }

    .hero-subtitle {
        font-size: 16pt;
        top: calc(50% - 100px);
        text-align: justify;
        text-align-last: justify;
        white-space: normal;
        width: 300px;
        max-width: 80%;
        line-height: 1.4;
    }

    .content-container {
        max-width: none;
        margin: 0;
        padding: 0 15px;
    }

    .content-section {
        padding: 30px 0;
    }

    .priority-initiatives {
        padding: 40px 0;
    }

    .priority-container {
        max-width: none;
        margin: 0;
        padding: 0 15px;
    }

    .priority-title {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .priority-title-en {
        order: 1;
        white-space: nowrap;
        line-height: 1.2;
    }

    .priority-title-ja {
        order: 2;
    }

    .priority-item {
        min-width: calc(100% - 30px);
        width: calc(100% - 30px);
    }

    .priority-item {
        padding: 20px;
    }

    .priority-item h4 {
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .priority-item p {
        font-size: 0.9rem;
    }

    .information-container {
        padding: 0 15px;
    }

    .information-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .information-grid .info-item:nth-child(n+2) {
        display: none;
    }

    .information-grid .info-item:nth-child(n+4) {
        display: none;
    }

    .hamburger {
        width: 25px;
    }

    .hamburger-lines {
        width: 25px;
        height: 20px;
    }

    .hamburger.active .hamburger-lines {
        height: 25px;
    }
}

/* ===================================
   会社概要・サービスタイルセクション
   =================================== */
.company-tiles-section {
    width: 100%;
    max-width: 1140px;
    margin: 5rem 0;
}

.tiles-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
}

.tile-item {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: block;
}

.tile-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tile-item.large {
    grid-column: span 1;
}

.tile-item:hover img {
    transform: scale(1.1);
}

.tile-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

.company-tiles-section .tiles-container>.tile-item:nth-child(-n+2) .tile-label {
    background-color: #ffffffe4;
    color: #006837;
    font-size: 1.3rem;
    opacity: 1;
    padding: 0.3em 1.5em;
    border-bottom: 3px solid #006837;
}
@media (min-width: 769px) {
    .sp-only {
        display: none;
    }
}

.tile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    z-index: 2;
}

.tile-info.top-align {
    bottom: auto;
    top: 0;
}

.tile-title {
    font-size: 16px;
    font-weight: bold;
    color: #006837;
    margin: 0 0 8px 0;
    text-align: center;
}

.tile-description {
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

/* top001とtop002をPC時420pxに */
@media (min-width: 769px) {
    .tiles-container {
        grid-template-columns: 440px repeat(3, 1fr);
        grid-template-rows: auto auto;
    }

    .tile-item.large:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .tile-item.large:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    /* 1行目: 会社概要、代表挨拶、SDGs */
    .tile-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .tile-item:nth-child(4) {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .tile-item:nth-child(5) {
        grid-column: 4 / 5;
        grid-row: 1 / 2;
    }

    /* 2行目: 地域とのつながり、社員の声、採用情報 */
    .tile-item:nth-child(6) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .tile-item:nth-child(7) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .tile-item:nth-child(8) {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
    }
}

/* タブレット・スマホ対応 */
@media (max-width: 1150px) {
    .tiles-container {
        grid-template-columns: 1fr 1fr;
    }

    .tile-item {
        /* Reset grid positioning from PC view */
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* Group A: Higher priority items as requested */
    .tile-item:nth-child(1) {
        order: 1;
    }

    /* 事業内容 */
    .tile-item:nth-child(3) {
        order: 2;
    }

    /* 会社概要 */
    .tile-item:nth-child(2) {
        order: 3;
    }

    /* 脱炭素・環境への取り組み */
    .tile-item:nth-child(6) {
        order: 4;
    }

    /* 地域とのつながりと社会活動 */

    /* Group B: Wrap under Group A */
    .tile-item:nth-child(4) {
        order: 5;
    }

    /* 代表挨拶 (メッセージ) */
    .tile-item:nth-child(5) {
        order: 6;
    }

    /* SDGsへの取り組み */
    .tile-item:nth-child(7) {
        order: 7;
    }

    /* 社員の声 */
    .tile-item:nth-child(8) {
        order: 8;
    }

    /* 採用情報 */
}

@media (max-width: 768px) {
    .tiles-container {
        grid-template-columns: 1fr 1fr;
    }

    .tile-item.large {
        grid-column: span 2;
    }
}

/* ===================================
   フッターマップ・フッター
   =================================== */

.footer-map {
    width: 100%;
    height: 400px;
    margin: 100px 0 0 0;
    padding: 90px 0 0 0;
    position: relative;
    overflow: hidden;
}

.car-animation-container {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 10000;
    pointer-events: none;
}

.animated-car {
    position: absolute;
    top: 0;
    width: 108px;
    height: auto;
    transform-origin: center;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.2s ease-out;
}


/* Left to Right (Header Car) */
.car-dir-ltr {
    left: -150px;
    animation: moveCar linear forwards;
}

/* Right to Left (Footer Popn Car) */
.car-dir-rtl {
    right: -150px;
    width: 162px;
    /* 1.5x the base size */
    animation: moveCarReverse linear forwards;
}

/* Easing variations for speed strength */
.animated-car {
    animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95) !important;
}

@keyframes moveCar {
    0% {
        left: -150px;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 50px);
        opacity: 0;
    }
}

@keyframes moveCarReverse {
    0% {
        right: -150px;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        right: calc(100% + 50px);
        opacity: 0;
    }
}

.footer {
    background-color: #004d28;
}

.footer-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px;
    color: white;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

@media (min-width: 769px) {
    .footer-container {
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .footer-logo-section {
        flex: 0 0 320px;
    }

    .footer-links-section {
        flex: 1;
        justify-content: flex-end;
    }
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.footer-links-section>ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-section>ul li:first-child a {
    display: block;
    font-weight: 700;
    padding-bottom: 8px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-links-section a {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-links-section a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-links-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Page Top Button */
.page-top-btn {
    position: fixed;
    right: 30px;
    bottom: -100px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
    pointer-events: none;
}

.page-top-btn.is-show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.page-top-btn a {
    display: inline-block;
}

.page-top-btn img {
    width: 60px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .page-top-btn {
        right: 15px;
    }

    .page-top-btn.is-show {
        bottom: 15px;
    }

    .page-top-btn img {
        width: 50px;
    }
}

/*----------------------------*/
/*関連団体ロゴ一覧*/
/*----------------------------*/
.related-organizations {
    background-color: #fff;
    padding: 1rem;
}

.related-organizations-container {
    width: 95%;
    max-width: 1000px;
}

.related-organizations-container img {
    margin: 5px;
}