@charset "utf-8";

/* ==============================
   下層ページ共通スタイル
   ============================== */

p {
    line-height: 1.8em;
}

.ul-circle {
    list-style-type: disc;
    margin: 1rem 0 1rem 1.5rem;
}

.subpage-main {
    margin-left: 250px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.subpage-inner {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}

.subpage-hero {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 80px 0 50px;
}

.subpage-hero-en {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.2;
    color: #006837;
    margin-bottom: 10px;
}

.subpage-hero-ja {
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 700;
    color: #333333;
}

.breadcrumb {
    margin-top: 25px;
    font-size: 14px;
    color: #333333;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.breadcrumb a {
    color: #006837;
}

.subpage-section {
    padding: 70px 0;
}

.subpage-section+.subpage-section {
    border-top: 1px solid #e9ecef;
}

.subpage-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 25px;
}

.subpage-lead {
    font-size: clamp(16px, 2.2vw, 20px);
    color: #333333;
    line-height: 1.8;
    margin-bottom: 24px;
}

.subpage-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.9;
}

.subpage-text+.subpage-text {
    margin-top: 1em;
}

.subpage-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.subpage-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 24px;
}

.subpage-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #006837;
    line-height: 1.5;
    margin-bottom: 12px;
}

.subpage-table-wrap {
    overflow-x: auto;
}

.subpage-table {
    width: 100%;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.subpage-table th,
.subpage-table td {
    padding: 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    line-height: 1.8;
}

.subpage-table th {
    width: 220px;
    font-weight: 700;
    color: #006837;
    background: #ffffff;
}

.subpage-cta {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    border: 2px solid #006837;
    color: #006837;
    font-weight: 700;
    transition: all 0.2s ease;
}

.subpage-cta:hover {
    background-color: #006837;
    color: #ffffff;
}

/* 汎用リンクボタン */
.subpage-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    min-height: 52px;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    background-color: #006837;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 104, 55, 0.22);
}

.subpage-link-btn:hover {
    background-color: #00522c;
    color: #ffffff;
    transform: translateY(-1px);
}

.subpage-link-btn:focus-visible {
    outline: 3px solid #9ad8b6;
    outline-offset: 3px;
}

/* PDF用：PDFバッジ付き */
.subpage-link-btn--pdf::before {
    content: "PDF";
    display: inline-block;
    font-size: 0.68em;
    font-weight: 900;
    letter-spacing: 0.04em;
    background-color: #ffffff;
    color: #006837;
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1.5;
}

.subpage-link-btn--pdf:hover::before {
    background-color: rgba(255, 255, 255, 0.85);
}

.business-day-link-wrap {
    margin-top: 0.5rem;
}

.business-day-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background-color: #006837;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 104, 55, 0.22);
}

.business-day-link-btn:hover {
    background-color: #00522c;
    color: #ffffff;
    transform: translateY(-1px);
}

.business-day-link-btn:focus-visible {
    outline: 3px solid #9ad8b6;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .subpage-main {
        margin-left: 0;
    }

    .subpage-hero {
        padding: 56px 0 36px;
    }

    .subpage-section {
        padding: 56px 0;
    }

    .subpage-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .subpage-inner {
        width: calc(100% - 30px);
    }

    .breadcrumb {
        margin-top: 18px;
        font-size: 12px;
    }

    .subpage-section {
        padding: 44px 0;
    }

    .subpage-title {
        margin-bottom: 18px;
    }

    .subpage-text {
        font-size: 15px;
    }

    .subpage-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .subpage-card {
        padding: 18px;
    }

    .subpage-table th,
    .subpage-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .subpage-table th {
        border-bottom: 0;
        background: transparent;
        padding-top: 14px;
    }

    .subpage-table td {
        padding-bottom: 14px;
    }

    .business-day-link-btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
}

/*ページタイトルセクション*/
.title-section {
    background-image: url(../images/subpage/company-top-imges.png);
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    color: #ffffff;
}

.title-section-sdgs {
    background-image: url(../images/subpage/sdgs_top-images.png);
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    color: #ffffff;
}

.title-section-business {
    background-image: url(../images/subpage/business_information_top-image.png);
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    color: #ffffff;
}

.title-section-ecologycenterayashi {
    background-image: url(../images/subpage/ecology_center_ayashi_.png);
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    color: #fff;
}

.title-section-environment {
    background: url(../images/subpage/datu-tanso-top-image.png);
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    color: #fff;
}

.title-h2 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    display: block;
    background-color: rgba(0, 104, 55, 0.588);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 18px 22px;
}

.title-section h2 {
    font-size: clamp(20px, 2.5vw, 40px);
    line-height: 1.2;
    font-weight: 700;
}

.title-section p {
    margin-top: 10px;
    font-family: "Libre Baskerville", serif;
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.3;
}

.pankuzu-list {
    padding: 0.5rem 3.75rem 0;
}

.pankuzu-list ul,
.pankuzu-list .breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.7rem !important;
    color: #333333;
    line-height: 1.5;
}

.pankuzu-list li {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem !important;
}

.pankuzu-list .breadcrumbs {
    margin: 0;
}

.pankuzu-list .breadcrumbs>* {
    display: inline-flex;
    align-items: center;
}

.pankuzu-list li+li::before {
    content: ">";
    color: #006837;
    margin-right: 8px;
}

.pankuzu-list a {
    color: #006837;
}

.pankuzu-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sidebar {
        position: relative;
        padding-bottom: 0px;
    }

    .nav-menu {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
    }

    .fukuro-order-btn {
        margin-top: 8px;
        margin-bottom: 0;
    }

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

    .title-section,
    .title-section-sdgs,
    .title-section-business,
    .title-section-ecologycenterayashi,
    .title-section-environment {
        margin-top: 20px;
    }
}

@media (max-width: 1024px) {
    .title-section {
        height: 420px;
        padding: 0;
    }

    .pankuzu-list {
        padding: 14px 32px 0;
    }
}

@media (max-width: 767px) {
    .title-section {
        height: 280px;
        padding: 0;
    }

    .title-h2 {
        padding: 12px 14px;
    }

    .pankuzu-list {
        padding: 12px 16px 0;
    }

    .pankuzu-list ul,
    .pankuzu-list .breadcrumbs {
        font-size: 12px;
        gap: 6px;
    }

    .pankuzu-list li+li::before {
        margin-right: 6px;
    }
}

.section-title-block {
    padding: 40px 60px 0;
}

.section-title-main {
    color: #006837;
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
    white-space: nowrap;
}

.section-title-line {
    display: flex;
    width: 100px;
    height: 3px;
    margin-top: 16px;
}

.section-title-line .line-green {
    width: 50px;
    height: 3px;
    background-color: #006837;
}

.section-title-line .line-yellow {
    width: 50px;
    height: 3px;
    background-color: #f7ff00;
}

@media (max-width: 1024px) {
    .section-title-block {
        padding: 28px 32px 0;
    }
}

@media (max-width: 767px) {
    .section-title-block {
        padding: 22px 16px 0;
    }

    .section-title-main {
        font-size: 22px;
        white-space: normal;
    }

    .section-title-line {
        margin-top: 12px;
    }
}

.card-section-wrap {
    width: 100%;
    max-width: 1100px;
    padding: 30px 60px 0;
}

@media (max-width: 1100px) {
    .card-section-wrap {
        width: 95%;
        padding: 1rem 0 1rem 1rem;
        margin-top: 3rem;
    }
}

.card-tile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.card-tile>div {
    background: #ffffff;
    border: 1px solid #006837;
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 8px;
    align-items: start;
}



.card-tile>div img {
    display: block;
    margin-left: auto;
    align-self: start;
    max-width: 140px;
}

.card-tile>div h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #006837;
    margin: 0 0 4px 0;
}

.card-list {
    margin-top: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #333333;
}

.card-tile>div a {
    grid-column: 1 / 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 36px;
    padding: 0 18px;
    border: 1px solid #006837;
    border-radius: 9999px;
    color: #006837;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s ease;
}

.card-tile>div>div ul {
    margin-top: 0.5rem;
}

.card-tile>div>div ul li {
    font-size: 0.85rem;
}

.card-tile>div a:hover {
    background-color: #006837;
    color: #ffffff;
}

@media (max-width: 1100px) {
    .card-tile {
        grid-template-columns: 1fr;
    }

    .card-tile>div a {
        min-height: 34px;
        font-size: 0.85rem;
    }
}

/*代表メッセージセクション*/
.message-section {
    padding: 40px 60px 0;
    max-width: 1100px;
}

.message-section {
    display: flex;
    gap: 40px;
}

.message-section-boxA {
    width: 80%;
}

.message-section-boxB {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 899px) {
    .message-section {
        display: block;
        padding: 3rem 1rem 1rem 1rem;
    }

    .message-section-boxA {
        width: 100%;
    }
}

/*代表メッセージ再生エネ取り組み*/
.message-section-saiene {
    margin: 40px 60px 0;
    padding: 2rem;
    max-width: 1000px;
    background-color: #ffffff;
    border: 2px solid #006837;
    border-radius: 5px;
}

.message-section-saiene h4 {
    font-size: 1.25rem;
    color: #006837;
    font-weight: 700;
    border-left: 5px solid #006837;
    padding-left: 12px;
    margin-bottom: 2rem;
}

@media (max-width: 1000px) {
    .message-section-saiene {
        margin: 2rem 1rem 3rem 1rem;
    }
}

/*メッセージ蓄電池イメージ*/
.message-section-img {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 30px;
}

.boxA {
    width: 60%;
}

.boxB {
    width: 40%;
}

@media (max-width: 899px) {
    .message-section-img {
        flex-direction: column;
    }

    .boxA {
        width: 100%;
    }

    .boxB {
        width: 100%;
    }
}

.message-section-img-r {
    display: flex;
    gap: 30px;
}

@media (max-width: 899px) {
    .message-section-img-r {
        flex-direction: column;
    }
}

.rinen-number-list {
    list-style: decimal;
    padding-left: 1.5em;
    margin-top: 1rem;
}

.rinen-number-list li+li {
    margin-top: 0.8em;
}

.rinen-purpose-box {
    border-top: 1px solid #006837;
    border-bottom: 1px solid #006837;
    border-left: 0;
    border-right: 0;
    padding: 1rem 0;
}

/*下層ページ共通*/
.page-wrapper-default {
    max-width: 1000px;
    padding: 40px 60px 0;
}

.page-wrapper-default h4 {
    font-size: 1.25rem;
    color: #006837;
    font-weight: 700;
    border-left: 6px solid #006837;
    padding-left: 10px;
    padding: 0.6rem 0 0.6rem 0.6rem;
    margin-bottom: 2rem;
}

.page-wrapper-default h5 {
    color: #ffffff;
    background-color: #006837;
    padding: 0.5em 1em;
    border-radius: 10px;
    line-height: 1.5em;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-wrapper-default h6 {
    color: #006837;
    font-weight: 900;
    border-bottom: 1px solid #006837;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 980px) {
    .page-wrapper-default {
        padding: 3rem 1rem 2rem 1rem;
    }
}

/*会社沿革テーブル*/
.history-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #006837;
    border-bottom: 1px solid #006837;
}

.pdficon a:link,
.pdficon a:visited,
a.pdficon:link,
a.pdficon:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pdficon a:link::after,
.pdficon a:visited::after,
a.pdficon:link::after,
a.pdficon:visited::after {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background-image: url("../images/common/pdf-icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.history-table th,
.history-table td {
    border: 0;
    padding: 12px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid #006837;
    border-bottom: 1px solid #006837;
}

.history-table th {
    font-weight: 600;
    color: #006837;
    background: #DBE6E1;
}

@media (max-width: 767px) {

    .history-table th,
    .history-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
}

/*右に画像配置*/
.right-image {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.right-image .text {
    width: 60%;
}

.right-image .image {
    width: 40%;
}

@media (max-width: 899px) {
    .right-image {
        flex-direction: column;
    }

    .right-image .text {
        width: 100%;
    }

    .right-image .image {
        width: 100%;
    }
}

/*画像３列配置*/
.three-image {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.three-image>div {
    width: calc((100% - 60px) / 3);
}

@media (max-width:1100px) {
    .three-image {
        display: block;
    }

    .three-image>div {
        width: 100%;
        margin: 1rem 0;
    }
}

/*画像２列配置*/
.two-image {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.two-image>div {
    width: calc((100% - 30px) / 2);
}

@media (max-width:1100px) {
    .two-image {
        display: block;
    }

    .two-image>div {
        width: 100%;
        margin: 1rem 0;
    }
}

/*ページ目次ボタン*/
.page-index-btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
}

.page-index-btn>li {
    list-style: none;
}

.page-index-btn>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #006837;
    background-color: #ffffff;
    color: #006837;
    padding: 16px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.page-index-btn>li>a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/weui_arrow-filled.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.page-index-btn>li>a:hover {
    background-color: #006837;
    color: #ffffff;
}

.page-index-btn>li>a:hover::after {
    filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
    .page-index-btn {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/*SDGs取り組みページ一覧*/

.sdgs-torikumi {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sdgs-torikumi>div {
    width: calc((100% - 40px) / 3);
    margin-bottom: 2rem;
}

.sdgs-torikumi>div img {
    width: 100%;
    height: auto;
    display: block;
}

.sdgs-torikumi>div h5 {
    color: #006837;
    background-color: transparent;
    font-weight: 700;
    margin-top: 10px;
    padding-left: 0;
}

.sdgs-torikumi>div p {
    margin-top: 8px;
}

@media (max-width: 899px) {
    .sdgs-torikumi {
        gap: 16px;
    }

    .sdgs-torikumi>div {
        width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 767px) {
    .sdgs-torikumi>div {
        width: 100%;
        margin: 2rem 0 3rem 0;
    }
}

/*事業ごみ袋のお申込み*/
.tel {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.tel>div {
    flex: 1;
    border: 1px solid #006837;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 24px;
    text-align: center;
}

@media (max-width: 1100px) {
    .tel {
        display: block;
    }

    .tel>div {
        margin: 1rem 0;
    }
}

.tel-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: #006837;
    text-decoration: none;
    line-height: 1;
}

.tel-btn a::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("../images/common/tel_phone-icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.tel-btn p {
    font-size: 0.8rem;
    color: #666666;
    margin-top: 0;
}

.fax-btn p:first-of-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: #006837;
    line-height: 1;
    margin-bottom: 0;
}

.fax-btn p:first-of-type::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("../images/common/fax-icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.fax-btn p:last-of-type {
    font-size: 0.8rem;
    color: #666666;
    margin-top: 0;
}

.fax-order-sheet-dl {
    display: inline-block;
    background-color: #D89400;
    padding: 0.5em 1em;
    margin: 1rem 0;
    border-radius: 20px;
    line-height: 1.5em;
}

.fax-order-sheet-dl a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.fax-order-sheet-dl a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/icon-park-outline_excel.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 16px;
    border: 1px solid #006837;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.8;
}

.table th {
    background-color: #DBE6E1;
    color: #006837;
    font-weight: 700;
    width: 220px;
}

.table-sanpai th,
.table-sanpai td {
    text-align: center;
}

@media (max-width: 767px) {

    .table th,
    .table td {
        display: block;
        width: 100%;
        padding: 10px;
    }

    .table th {
        width: 100%;
        border-bottom: 0;
    }
}

/* 手続きの流れ (Flow List) */
.flow-list {
    margin: 2rem auto 0;
}

.flow-list dt {
    font-size: 1.2rem;
    font-weight: 700;
    color: #006837;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    border: 1px solid #006837;
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.5rem;
    border-radius: 10px 10px 0 0;
}

.flow-list dt .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #006837;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
}

.flow-list dd {
    background-color: #ffffff;
    border: 1px solid #006837;
    border-top: none;
    padding: 0 1.5rem 1.5rem;
    border-radius: 0 0 10px 10px;
    margin-bottom: 40px;
    position: relative;
    font-size: 1rem;
    color: #333333;
    /* dtテキストの位置に揃える計算（1.5rem+32px+16px） */
    padding-left: calc(1.5rem + 48px);
}

.flow-list dd:empty {
    padding-top: 0;
}

/* 矢印アイコンをddの下へ配置 */
.flow-list dd::after {
    content: "";
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background-image: url("../images/common/ri_arrow-up-line.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.flow-list dd:last-of-type {
    margin-bottom: 1rem;
}

.flow-list dd:last-of-type::after {
    display: none;
}

/*脱炭素経営の取り組みページ*/
.env-con-index-btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.env-con-index-btn>div {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 8px;
}

/* 透明な緑色のオーバーレイ */
.env-con-index-btn>div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 104, 55, 0.7);
    /* 宮城衛生環境公社の緑色（透明度70%） */
    z-index: 1;
    transition: background-color 0.3s ease;
}

.env-con-index-btn>div:hover::before {
    background-color: rgba(0, 104, 55, 0.85);
    /* ホバー時に少し暗くする */
}

.env-con-index-btn a {
    position: relative;
    z-index: 2;
    display: block;
    padding: 30px 24px;
    color: #fff;
    text-decoration: none;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}

.env-con-index-btn a:hover {
    text-decoration: none;
}

.env-con-index-btn h5 {
    color: #fff;
    background-color: transparent;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.env-con-index-btn p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 767px) {
    .env-con-index-btn {
        grid-template-columns: 1fr;
    }
}

/* 個別背景画像の設定 */
.env-bk-01-img {
    background-image: url("../images/subpage/envron-bk-img-01.png");
}

.env-bk-02-img {
    background-image: url("../images/subpage/solarpanel_ecosen.png");
}

.env-bk-03-img {
    background-image: url("../images/subpage/environmen_ev_car.png");
}

.env-bk-04-img {
    background-image: url("../images/subpage/datu-tanso-top-image.png");
}

.env-bk-05-img {
    background-image: url("../images/subpage/business_information_top-image.png");
}

/*10コママンガ*/
.two-row {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.two-row>div {
    flex: 1;
}

.manga-modal-trigger {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem auto 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0f7a42 0%, #119d55 100%);
    border: 1px solid #0f7a42;
    border-radius: 9999px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(7, 89, 46, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.manga-modal-trigger::after {
    content: "\203A";
    font-size: 1.1rem;
    line-height: 1;
}

.manga-modal-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(7, 89, 46, 0.32);
    background: linear-gradient(135deg, #0b6535 0%, #0f7a42 100%);
}

.manga-modal-trigger:focus-visible {
    outline: 3px solid #f8d66b;
    outline-offset: 3px;
}

.manga-modal-trigger:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(7, 89, 46, 0.28);
}

@media (max-width: 1100px) {
    .two-row {
        display: block;
    }
}

/* マンガ モーダルウィンドウ */
.manga-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manga-modal.show {
    display: block;
    /* align-items: centerだと上部が切れることがあるためblockに変更 */
    opacity: 1;
}

.manga-modal-content {
    position: relative;
    max-width: 90%;
    width: 600px;
    /* PC用基準サイズ: さらに大きく表示するため幅を広げる */
    margin: 60px auto;
    /* 上下に余裕を持たせる（閉じるボタン用） */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.manga-modal-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border: 2px solid #fff;
    border-radius: 4px;
    display: block;
}

.manga-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}

.manga-modal-close:hover,
.manga-modal-close:focus {
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
}

/*----------------------------*/
/* 家庭ごみ収集業務の1日 スライダー */
/*----------------------------*/
.itiniti-slider-wrapper {
    margin-top: 3rem;
    position: relative;
}

.itiniti-swiper {
    width: 100%;
    border: 1px solid #006837;
    border-radius: 10px;
    background: #fff;
    padding: 1rem;
}

.itiniti-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
}

.itiniti-swiper .slide-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.itiniti-swiper .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.itiniti-swiper .slide-comment {
    padding: 24px 24px 80px 24px;
    /* 下部にボタン用の余白 */
    border-top: 1px solid #006837;
}

.itiniti-swiper .slide-comment p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 1rem;
}

/* ナビゲーションボタン */
.itiniti-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 35px;
    margin-bottom: 1rem;
    left: 0;
    right: 0;
    z-index: 10;
}

.itiniti-prev,
.itiniti-next {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin: 0 !important;
    cursor: pointer;
    background-color: transparent !important;
    border: none !important;
}

.itiniti-prev {
    background-image: url('../images/common/prev.png') !important;
}

.itiniti-next {
    background-image: url('../images/common/next.png') !important;
}

.itiniti-prev::after,
.itiniti-next::after {
    display: none !important;
}

/* ページャー */
.itiniti-pagination {
    position: absolute !important;
    bottom: 15px !important;
    z-index: 10;
}

.itiniti-pagination .swiper-pagination-bullet {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    opacity: 1 !important;
    margin: 0 4px !important;
    font-size: 1.1rem;
    color: #999;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.3s;
    font-family: inherit;
    font-weight: 500;
}

.itiniti-pagination .swiper-pagination-bullet-active {
    color: #006837 !important;
    border-bottom: 2px solid #006837;
}

@media (max-width: 767px) {
    .itiniti-pagination .swiper-pagination-bullet {
        font-size: 0.95rem;
        margin: 0 3px !important;
    }
}

@media (max-width: 767px) {
    .itiniti-swiper .slide-comment {
        padding: 16px;
    }

    .itiniti-swiper .slide-comment p {
        font-size: 0.95rem;
    }

    .itiniti-nav-wrapper {
        gap: 40px;
    }

    .itiniti-prev,
    .itiniti-next {
        width: 45px !important;
        height: 45px !important;
    }
}

/*---------------------------*/
/*環境関連の取り組み*/
/*---------------------------*/
.env-con-index-torikumi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.env-con-index-torikumi>div {
    border: 1px solid #006837;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.env-con-index-torikumi>div h5 {
    background-color: transparent;
    color: #006837;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    padding: 0;
    line-height: 1.5em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.env-con-index-torikumi>div h5.pdf-icon::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/pdf-icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.env-con-index-torikumi>div p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.env-con-index-torikumi>div a {
    margin-top: auto;
    align-self: flex-start;
}

/*---------------------------*/
/*保有車両一覧*/
/*---------------------------*/
.cars-section-wrap {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.cars-section-wrap>div {
    margin: 1rem 0 0rem 0;
}

.cars-section-wrap>div p {
    text-align: center;
    line-height: 1.5em;
}

@media (max-width: 900px) {
    .cars-section-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*-----------------------------*/
/*プライバシーポリシー*/
/*-----------------------------*/
.privacy-policy dt {
    font-weight: 700;
    color: #006837;
    margin-top: 1rem;
}

.privacy-policy dd {
    line-height: 1.5em;
    margin-left: 1rem;
    margin-top: 0.5em;
}

/*-----------------------------*/
/*社員の声*/
/*-----------------------------*/

.voice-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.voice-row h5 {
    color: #006837;
    padding: 0;
    font-weight: 700;
    background-color: transparent;
}

@media (min-width: 769px) {
    .voice-row > div:first-child {
        flex: 0 0 30%;
        width: 30%;
    }

    .voice-row > div:last-child {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .voice-row {
        flex-direction: column;
    }
}
.voice-schedule-container h5 {
    color: #006837;
    background-color: transparent;
    padding: 0;
    margin: 2rem 0 0.5rem 0;
}
.voice-schedule-container dt {
    font-weight: 700;
    color: #006837;
    float: left;
}
.voice-schedule-container dd {
    margin-left: 4rem;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.contact-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.5em 1em;
    background-color: #006837;
    color: #ffffff;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
}
.contact-link-btn:hover {
    background-color: #004d25;
    transition: .5s all;
}
/*-----------------------------*/
/*ごみ袋一覧*/
/*-----------------------------*/

.fukuro-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 1.5rem;
}

.fukuro-items > div {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.fukuro-items > div img {
    width: 100%;
    height: auto;
    display: block;
}

.fukuro-items > div p {
    margin-top: 0.5em;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .fukuro-items {
        gap: 10px;
    }

    .fukuro-items > div {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
    }
}

/*-----------------------------*/
/*ごみ袋申込みボタン*/
/*-----------------------------*/

.page-fukuro-order-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 2rem;
}

.page-fukuro-order-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 2em;
    background-color: #006837;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.page-fukuro-order-btn a:hover {
    background-color: #004d25;
}

@media (max-width: 768px) {
    .page-fukuro-order-btn {
        flex-direction: column;
    }

    .page-fukuro-order-btn a {
        width: 100%;
        text-align: center;
    }
}
