@charset "UTF-8";

/* spc Section */
.cloud-service-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-intro {
    margin-bottom: 4rem;
    line-height: 1.8;
    text-align: center;
}

.service-intro p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4caf50;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-card:last-child {
    grid-column: 1 / -1;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: auto;
}

.service-icon {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color:#4caf50;
    font-size: 2.2rem;
    font-weight: 700;
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-name {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.05em;
}
.service-name span{
    color: #4caf50;
}

.service-name-en {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
    margin-top: 0.3rem;
}

.service-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Values Section */
.values-section {
    margin-top: 4rem;
    padding: 0;
}

.values-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.value-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.value-title {
    font-size: 1.4rem;
    color: #4caf50;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cloud-service-section {
        padding: 2rem 0.5rem;
    }

    .service-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .service-intro p {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-name {
        font-size: 1.6rem;
    }

    .service-desc {
    	font-size: 1.1rem;
    }

    .values-grid {
        gap: 2rem;
    }

    .value-circle {
        width: 110px;
        height: 110px;
    }

    .value-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cloud-service-section {
        padding: 1rem 0.5rem;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-badge {
    	width: 50px;
    }

    .service-icon svg {
        width: 50px;
        height: 50px;
    }

    .service-name {
        font-size: 1.4rem;
    }

    .service-desc {
        font-size: 1.05rem;
    }

    .values-grid {
        gap: 1.5rem;
    }

    .value-circle {
        width: 90px;
        height: 90px;
    }

    .value-title {
        font-size: 1rem;
    }
}

/* safety Service Section */
.bottle-service-section {
    background: #fff;
    padding: 5rem 0;
    margin-top: 4rem;
}

.bottle-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5f3f;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.bottle-cards-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.bottle-card {
    background: #f5f0e8;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    flex: 1 1 calc(25% - 1.6rem);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.bottle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.12);
}

.bottle-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bottle-card-subtitle {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.bottle-card-icon {
    margin-top: auto;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-card-icon svg {
    width: 100%;
    height: 100%;
}

/* Bottle Service Responsive */
@media (max-width: 1200px) {
    .bottle-card {
        flex: 1 1 calc(50% - 1.4rem);
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .bottle-service-section {
        padding: 3rem 1rem;
    }

    .bottle-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .bottle-cards-wrapper {
        gap: 1.5rem;
    }

    .bottle-card {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 160px;
        padding: 2rem 1.5rem;
    }

    .bottle-card-title {
        font-size: 1.3rem;
    }

    .bottle-card-subtitle {
        font-size: 0.85rem;
    }

    .bottle-card-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .bottle-service-section {
        padding: 2rem 0rem;
    }

    .bottle-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .bottle-cards-wrapper {
        gap: 1rem;
    }

    .bottle-card {
        flex: 1 1 100%;
        min-width: auto;
        padding: 1.5rem 1rem;
    }

    .bottle-card-title {
        font-size: 1.2rem;
    }

    .bottle-card-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .bottle-card-icon {
        width: 100px;
        height: 100px;
    }
}

/* Image Showcase Section */
.image-showcase-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.showcase-container {
    background: #fff;
    padding: 2rem 0;
    border: 1px solid #e0e0e0;
}

.showcase-box {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.showcase-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caution Section */
.caution-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0;
}

.caution-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.caution-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.caution-image-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.caution-image-box img {
    max-width: 100%;
    height: auto;
}

.caution-text-box {
    display: flex;
    align-items: center;
}

.caution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caution-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    letter-spacing: -0.05em;
}

.caution-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-size: 1.5rem;
    line-height: 1.3;
}

/* compare Section */
.compare-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0;
}

.compare-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Comparison Table */
.comparison-table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-table thead th {
    padding: 1.5rem 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid #fff;
}

.comparison-table .header-brown {
    background: #b8956c;
    color: #fff;
}

.comparison-table .header-highlight {
    background: #fff;
    color: #d32f2f;
    border: 3px solid #4caf50;
    position: relative;
}

.comparison-table tbody td {
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    text-align: center;
    border: 1px solid #ddd;
}

.comparison-table .label-cell {
    background: #d4a574;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.comparison-table .highlight-cell {
    background: #fff;
    color: #2e7d32;
    font-weight: 700;
    border-left: 3px solid #4caf50;
    border-right: 3px solid #4caf50;
}

.comparison-table tbody tr:last-child .highlight-cell {
    border-bottom: 3px solid #4caf50;
}

.comparison-table tbody td:not(.label-cell):not(.highlight-cell) {
    background: #f5e6d3;
    color: #333;
}

.table-footer-text {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.table-footer-text .highlight-text {
    color: #d32f2f;
    font-size: 1.3rem;
}

.table-footer-text .highlight-blue {
    color: #1976d2;
    font-size: 1.3rem;
}


/* Product Gallery Section */
.prod-gallery-section {
    margin-top: 3rem;
}

.prod-gallery-row {
    margin-bottom: 2rem;
}

.prod-gallery-item {
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 1rem;
    overflow: hidden;
    background: #fff;
    text-align: center;
}

.prod-gallery-item img {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

/* Showcase Responsive */
@media (max-width: 768px) {
    .showcase-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .caution-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .caution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .caution-list li {
        font-size: 1rem;
    }

    .compare-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .comparison-table thead th {
        padding: 1rem 0.5rem;
        font-size: 1.1rem;
    }

    .comparison-table tbody td {
        padding: 0.8rem 0.5rem;
        font-size: 1rem;
    }

    .table-footer-text {
        font-size: 1.1rem;
    }

    .table-footer-text .highlight-text,
    .table-footer-text .highlight-blue {
        font-size: 1.2rem;
    }

    .showcase-container {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .image-showcase-section {
        padding: 2rem 0.5rem;
    }

    .showcase-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .caution-section {
        padding: 2rem 0rem;
    }

    .caution-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .compare-section {
        padding: 2rem 0.5rem;
    }

    .compare-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table thead th {
        padding: 0.8rem 0.4rem;
        font-size: 1rem;
    }

    .comparison-table tbody td {
        padding: 0.7rem 0.4rem;
        font-size: 0.95rem;
    }

    .table-footer-text {
        width:100%;
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .table-footer-text .highlight-text,
    .table-footer-text .highlight-blue {
        font-size: 1.1rem;
    }

    .caution-content {
        gap: 1.5rem;
    }

    .caution-image-box {
        padding: 0rem;
        min-height: 100px;
    }

    .caution-list li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .showcase-container {
        padding: 0rem;
    }
}

/* Certificates Section */
.certificates-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.certificates-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.certificate-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
}

.certificate-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
}

.certificate-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.multi-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(76, 175, 80, 0.9);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.certificate-name {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Certificate Modal */
.cert-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.cert-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.cert-modal-close:hover {
    color: #bbb;
}

.cert-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.cert-modal-prev,
.cert-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border:none;
    color: #333;
    font-size: 30px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.cert-modal-prev:hover,
.cert-modal-next:hover {
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.cert-modal-prev {
    left: 0px;
}

.cert-modal-next {
    right: 0px;
}

.cert-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.8rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Certificates Responsive */
@media (max-width: 1024px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 2rem 1rem;
    }

    .certificates-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .certificate-name {
        font-size: 1rem;
    }

    .cert-modal-prev,
    .cert-modal-next {
        font-size: 24px;
        padding: 0.8rem 1rem;
    }

    .cert-modal-close {
        font-size: 35px;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .certificates-section {
        padding: 1.5rem 0.5rem;
    }

    .certificates-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .certificate-thumb {
        max-width: 400px;
        margin: 0 auto;
    }

    .cert-modal-prev {
        left: 10px;
    }

    .cert-modal-next {
        right: 10px;
    }

    .cert-modal-counter {
        font-size: 1rem;
        bottom: 15px;
    }
}
