@media (max-width: 576px) {
  .container { 
    overflow-x: clip; 
  }
  
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  #slider {
    overflow-x: hidden !important;
  }
}
.philosophy-section {
    padding: 0 0 100px;
}


/*------------------------------------------------------

    OUTSIDE

------------------------------------------------------*/
.outside {
    position: relative;
}

.outside .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.outside .column-outside-left {
    margin-right: -20%;
}

.outside .column-outside-right {
    margin-left: -20%;
}

.outside .column {
    z-index: 1;
}

.outside .column img.wave {
    width: 70px;
    margin: 18px 0 28px;
}

.outside .column h3 {
    color: #00464A;
    font-size: var(--fz-lg);
    font-weight: 500;
    letter-spacing: 4px;
}

.outside .column h4 {
    font-size: var(--fz-lg);
    font-weight: 600;
    margin-bottom: 10px;
}

.outside .column p {
    font-size: var(--role-body);
    font-weight: 400;
    margin-bottom: 30px;
}

.outside span.number {
    position: absolute;
    top: 2%;
    color: #e6e7e8;
    font-size: 120px;
    font-weight: 500;
}

.outside-left .column {
    padding-left: 10%;
    padding-right: 0;
}

.outside-left span.number {
    right: 2%;
}

.outside-right .column {
    padding-left: 5%;
}

.outside-right span.number {
    left: 2%;
}

/*------------------------------------------------------

    INFO

------------------------------------------------------*/
#info .container {
    background: linear-gradient(180deg, #EEF9F9, #fff);
    border-radius: 60px 60px 0 0;
    padding: 100px 0 50px;
}

#info hgroup {
    text-align: center;
}

#info hgroup p {
    font-size: var(--fz-display);
    font-weight: 500;
}

#info hgroup h4 {
    font-size: var(--role-meta);
    margin: 20px 0 10px;
    font-weight: 700;
}

#info hgroup img {
    width: 70px;
}

#info .data {
    margin: 55px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

#info table.data-table {
    width: 50%;
    border-top: 1px solid #b7b7b7;
}

#info table.data-table tr {
    border-bottom: 1px solid #b7b7b7;
}

#info table.data-table th,
#info table.data-table td {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    padding: 20px 0 20px 45px;
}

#info table.data-table th {
    width: 22%;
    color: #00464A;
}

#info table.data-table td {
    width: 78%;
}

#info table.data-table td a {
    color: #00464A;
    display: inline-block;
}

#info table.data-table td a::after {
    right: -15px;
}


/*------------------------------------------------------

    work PAGE SPECIFIC STYLES

------------------------------------------------------*/
#work-intro {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

#work-intro .container {
    text-align: center;
    position: relative;
    z-index: 1;
}

#work-intro hgroup h3 {
    font-size: var(--fz-lg);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

#work-intro hgroup h3 .highlight-green {
    color: #00A3A6;
    font-weight: 700;
}

#work-intro hgroup img {
    width: 50px;
    margin-bottom: 30px;
}

#work-intro .intro-description {
    max-width: 800px;
    margin: 0 auto;
}

#work-intro .intro-description p {
    font-size: var(--role-body);
    line-height: 1.8;
    margin-bottom: 5px;
    text-align: center;
}

#work-intro .intro-description p:last-child {
    margin-bottom: 0;
}



/*------------------------------------------------------

    RESPO / PC FIRST

------------------------------------------------------*/
@media (max-width: 1200px) {
    #info table.data-table {
        width: 85%;
    }
}

.outside .column-outside-left {
    margin-right: -5%;
}

.outside-left .column {
    padding-left: 7.5%;
}

.outside .column h3 {
    font-size: var(--fz-lg);
    font-weight: 700;
    letter-spacing: 1px;
}

.outside .column img.wave {
    margin: 25px 0 35px;
}

.outside .column p {
    font-size: var(--role-body);
    font-weight: 500;
    line-height: 1.8;
}

/*------------------------------------------------------

    SLIDER

------------------------------------------------------*/
#slider {
    overflow: hidden;
    padding: 100px 10%;
    position: relative;
    width: 100%;
    max-width: 100%;
}

#slider .swiper {
    overflow: visible;
    width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    display: grid;
    place-content: center;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    border: 1px solid #00464A;
    border-radius: 50%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    border-color: #00464A;
    background-color: #fff;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    border-color: #00464A;
}

.swiper-button-prev::before,
.swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    width: 0.5rem;
    height: 0.5rem;
    content: "";
    border: solid #00464A;
    border-width: 1px 1px 0 0;
}

.swiper-button-prev::after {
    transform: rotate(-135deg);
}

.swiper-button-next::after {
    transform: rotate(45deg);
}

.swiper {
    overflow: visible;
    z-index: 0;
}

.swiper-controller {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    margin-top: 3.2rem;
}

.swiper-pagination {
    display: flex;
    gap: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 20%;
    height: 1px;
    cursor: pointer;
    vertical-align: top;
    background-color: #ddd;
}

.swiper-pagination-bullet-active {
    width: 20%;
    background-color: #00464A;
}

.swiper-button-prev,
.swiper-button-next {
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.swiper-slide {
    width: max-content;
}

@media (max-width: 992px) {
    .swiper-slide {
        width: auto;
    }
}

.slide {
    overflow: hidden;
}

.slide-media {
    width: 100%;
    overflow: hidden;
}

.slide-media img {
    width: 100%;
    height: auto;
    display: block;
}


/*------------------------------------------------------

    RESPO

------------------------------------------------------*/
@media (max-width: 1200px) {
    .outside .column p {
        font-size: 1.2vw;
    }

    #machine-lists hgroup h3,
    .outside .column h3 {
        font-size: 2.3vw;
    }

    .outside .column img.wave {
        width: 50px;
    }
}

@media (max-width: 992px) {
    #machine-lists .container {
        width: 90%;
    }

    #machine-lists table th,
    #machine-lists table td {
        padding: 20px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    #machine-lists .table-wrap {
        margin-right: calc(50% - 50vw);
        overflow-x: scroll;
    }

    #machine-lists .table-wrap table {
        width: 100%;
        border-collapse: collapse;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .outside .container {
        flex-direction: column;
    }

    .outside-left .column {
        padding: 10% 0 8%;
        width: 100%;
        text-align: center;
    }

    .outside .column h3 {
        font-size: 6vw;
        letter-spacing: 5px;
    }

    .outside .column p {
        font-size: 3.5vw;
    }

    .outside .column img.wave {
        margin: 25px 0;
    }

    #slider {
        padding: 0 25% 60px;
    }

    .swiper-controller {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 35px;
        gap: 20px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    #machine-lists .container {
        width: 85%;
    }

    #machine-lists {
        background-color: #e0e2e4;
        padding: 65px 0 65px;
    }

    #machine-lists hgroup h3 {
        font-size: 6vw;
    }

    #machine-lists .table-wrap {
        margin-right: calc(50% - 50vw);
        overflow-x: scroll;
    }

    #machine-lists .table-wrap table {
        width: 100%;
        border-collapse: collapse;
        white-space: nowrap;
    }

    #machine-lists table th,
    #machine-lists table td {
        font-size: 3.5vw;
        padding: 15px 20px;
    }

    #machine-lists table tbody tr td a {
        padding: 0 0 0 20px;
        background-size: 16px;
    }

    #machine-lists .remark {
        display: flex;
        justify-content: space-between;
    }

    #machine-lists .remark p,
    #machine-lists .remark p.text-right {
        font-size: 3.5vw;
    }

    #machine-lists .remark p.d-sp,
    #machine-lists .remark p.text-right.d-sp {
        color: #1e5684;
    }
}

/*------------------------------------------------------

    WORK PAGE STYLES

------------------------------------------------------*/



/* About Section */
#about {
    padding: 80px 0;
}

#about .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

#about .column-outside-left {
    width: 45%;
}

#about .column {
    width: 55%;
    position: relative;
}

#about .column h3.jp {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #232327;
}

#about .column img.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
    opacity: 0.3;
}

#about .column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}


/* Work Results Section */
#work-results {
    padding: 80px 0;
    background-color: #fff;
}

#work-results hgroup {
    text-align: center;
    margin-bottom: 60px;
}

#work-results hgroup h3.jp {
    font-size: 2.5rem;
    color: #232327;
    margin-bottom: 20px;
}

#work-results hgroup img {
    width: 200px;
    margin: 0 auto;
}

.result-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #00464A;
    margin-bottom: 10px;
}

.stat-number small {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
}

.result-categories {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.result-categories h4.jp {
    font-size: 1.5rem;
    color: #232327;
    margin-bottom: 30px;
    text-align: center;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.6;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li strong {
    color: #00464A;
    font-weight: bold;
}

/* Work Examples Section */
#work-examples {
    padding: 80px 0;
    background-color: #f8f9fa;
}

#work-examples hgroup {
    text-align: center;
    margin-bottom: 60px;
}

#work-examples hgroup h3.jp {
    font-size: 2.5rem;
    color: #232327;
    margin-bottom: 20px;
}

#work-examples hgroup img {
    width: 200px;
    margin: 0 auto;
}

.example-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.example-item {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.example-image {
    width: 40%;
}

.example-content {
    width: 60%;
    padding: 40px;
}

.example-category {
    display: inline-block;
    background-color: #00464A;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.example-content h4.jp {
    font-size: 1.5rem;
    color: #232327;
    margin-bottom: 15px;
}

.example-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.example-data {
    list-style: none;
    padding: 0;
}

.example-data li {
    padding: 5px 0;
    font-size: 1rem;
    color: #555;
}

.example-data li strong {
    color: #00464A;
    font-weight: bold;
}

/* Voice Section */
#voice {
    padding: 80px 0;
    background-color: #fff;
}

#voice hgroup {
    text-align: center;
    margin-bottom: 60px;
}

#voice hgroup h3.jp {
    font-size: 2.5rem;
    color: #232327;
    margin-bottom: 20px;
}

#voice hgroup img {
    width: 200px;
    margin: 0 auto;
}

.voice-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.voice-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #00464A;
}

.voice-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.voice-author {
    font-size: 1rem;
    color: #00464A;
    text-align: right;
    font-weight: bold;
}

/* Responsive Design for Work Page */
@media (max-width: 768px) {

    #about .container {
        flex-direction: column;
    }

    #about .column-outside-left,
    #about .column {
        width: 100%;
    }

    #about .column h3.jp {
        font-size: 1.8rem;
    }

    .result-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .example-item {
        flex-direction: column;
    }

    .example-image,
    .example-content {
        width: 100%;
    }

    .example-content {
        padding: 30px;
    }

    #work-results hgroup h3.jp,
    #work-examples hgroup h3.jp,
    #voice hgroup h3.jp {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {

    #about,
    #slider,
    #work-results,
    #work-examples,
    #voice {
        padding: 60px 0;
    }

    .result-categories {
        padding: 30px 20px;
    }

    .example-content {
        padding: 20px;
    }

    .voice-item {
        padding: 20px;
    }

    #work-results hgroup h3.jp,
    #work-examples hgroup h3.jp,
    #voice hgroup h3.jp {
        font-size: 1.8rem;
    }
}

#construction-results {
    padding: 80px 0;
    background-color: #ebf6f6;
}

#construction-results h3.jp {
    display: inline-block;
    padding-left: 12px;
    border-left: 3px solid #00464A;
    font-size: 32px;
}

.table-wrap {
    overflow-x: auto;
    margin: 40px 0;
    -webkit-overflow-scrolling: touch;
}

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

table th,
table td {
    font-weight: 400;
    padding: 15px 20px;
    font-size: 13px;
    border-right: 1px solid #c5c5c5;
    line-height: 1.4;
}

table th:last-child,
table td:last-child {
    border: none;
}

table thead {
    background: linear-gradient(90deg, #00464A, #00A3A6);
}

table thead th {
    color: #fff;
}

table thead th:nth-child(1) {
    width: 12%;
}

table thead th:nth-child(2) {
    width: 10%;
}

table thead th:nth-child(3) {
    width: 30%;
}

table thead th:nth-child(4) {
    width: 18%;
}

table thead th:nth-child(5) {
    width: 15%;
}

table thead th:nth-child(6) {
    width: 15%;
}


table tbody tr {
    background-color: #fff;
}

table tbody tr:nth-child(2n) {
    background-color: #EEF9F9;
}

table tbody tr th,
table tbody tr td {
    font-size: 16px;
    vertical-align: middle;
    line-height: 1.3;
}

table tbody tr td:nth-child(6) {
    line-height: 1.4;
}

/* 電力削減率のスタイル（赤字・大きめ） */
table tbody tr td.reduction-rate {
    color: #dc3545;
}

/* 導入効果のセル - iOSでの自動拡大を防ぐ */
table tbody tr td.effect-description {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.verification-description {
    margin-top: 40px;
    padding: 30px;
}

.verification-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #232327;
    text-align: center;
}

@media (max-width: 576px) {
    #construction-results {
        padding: 60px 0;
    }

    #construction-results .container {
        overflow-x: visible;
    }

    #construction-results h3.jp {
        font-size: 6vw;
    }

    .table-wrap {
        margin: 30px -10% 30px;
        padding: 0 10%;
    }

    table th,
    table td {
        padding: 12px 15px;
        font-size: 14px!important;
        white-space: nowrap;
    }

    /* モバイル時の電力削減率スタイル */
    table tbody tr td.reduction-rate {
        font-size: 16px;
        color: #dc3545;
        font-weight: 600;
    }

    /* モバイル時の導入効果 - iOSでの自動拡大を防ぐ */
    table tbody tr td.effect-description {
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }

    .remark {
        text-align: center;
        margin-top: 15px;
    }

    .remark p {
        font-size: 3vw;
        color: #00464A;
    }

    .verification-description {
        margin-top: 30px;
        padding: 20px;
    }

    .verification-description p {
        font-size: 16px;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 576px) {
    #slider {
        padding: 0 15% 60px !important;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }
}