.cony-values {
    padding: 80px 0px;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    color: #333;
}

.values-photo-top {
    text-align: center;
    margin-bottom: 50px;
}

.values-photo-top img {
    width: 100%;
    max-width: 720px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.values-photo-top img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.values-text-bottom {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.values-header {
    margin-bottom: 30px;
}

.values-label {
    color: #5fbf9a;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.values-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    margin: 8px 0 4px;
}

.values-subtitle {
    color: #5fbf9a;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 24px;
}

.values-desc {
    font-size: 1rem;
    line-height: 2;
    color: #444;
    margin-bottom: 40px;
    text-align: justify;
}

.values-sub h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 16px;
}

.values-sub ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-sub li {
    background: #fff;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-sub li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.values-sub strong {
    color: #5fbf9a;
}

@media screen and (max-width: 768px) {
    .values-photo-top img {
        max-width: 90%;
    }
    .values-text-bottom {
        text-align: center;
    }
    .values-sub li {
        text-align: left;
    }
}

.mind-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mind-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mind-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mind-item h4 {
    color: #5fbf9a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.mind-item p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .mind-item {
        text-align: left;
        padding: 16px 18px;
    }
}

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) 20px;
}

.values-images {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.values-img {
    width: 48%;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.values-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.values-text {
    text-align: left;
}

.values-tag {
    color: #5fbf9a;
    font-weight: 600;
    font-size: 0.95rem;
}

.values-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-top: 6px;
    color: #222;
}

.values-sub {
    color: #5fbf9a;
    font-weight: 500;
    margin-bottom: 16px;
}

.values-desc {
    color: #444;
    font-size: 1rem;
    line-height: 1.9;
}

/* 📱スマホ時：縦並び */

@media (max-width: 768px) {
    .values-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .values-img {
        width: 100%;
    }
    .values-text {
        text-align: left;
    }
}

/* ========== 2枚並び写真 ========== */

.values-photo-pair {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.values-photo-pair .values-img {
    width: 48%;
    max-width: 560px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.values-photo-pair .values-img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

/* 📱スマホ：縦並び */

@media screen and (max-width: 768px) {
    .values-photo-pair {
        flex-direction: column;
        gap: 20px;
    }
    .values-photo-pair .values-img {
        width: 100%;
        max-width: 90%;
    }
}

.image-link {
    display: inline-block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: #fff;
    position: relative;
    max-width: 800px;
    margin: 2em auto;
    text-align: center;
}

.image-link::after {
    content: "くわしくみる";
    position: absolute;
    bottom: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.image-link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.6s ease;
    border-radius: inherit;
}

.image-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.image-link:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.image-link:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.center {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}
