@charset "UTF-8";
/* ==========================================================================
   Renewed Footer (SEO Optimized & Clean)
   ========================================================================== */
.footer-renew a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}
.footer-renew a:hover {
    opacity: 0.7;
}
/* --- Top Section --- */
.footer-renew__top {
    padding: 55px 20px 35px;
    border-top: 1px solid #d8dfe4;
}
.footer-renew__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Info */
.footer-renew__info {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}
.footer-renew__logo img {
    max-width: 240px;
    margin-bottom: 20px;
}
.footer-renew__desc {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
}

/* Navigations */
.footer-renew__navs {
    display: flex;
    flex: 2;
    gap: 40px;
    min-width: 300px;
}
.footer-renew__nav-col {
    flex: 1;
}
.footer-renew__nav-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #007737; /* テーマカラーの緑 */
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 2px solid #007737;
    display: inline-block;
}
.footer-renew__nav-col ul li {
    margin-bottom: 4px;
}
.footer-renew__nav-col ul li a {
    font-size: 1.2rem;
    color: #444;
    display: inline-block;
    padding-left: 15px;
    position: relative;
}
.footer-renew__nav-col ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 2px solid #007737;
    border-right: 2px solid #007737;
}

/* Aside (Banner & Corp Links) */
.footer-renew__aside {
    flex: 1;
    min-width: 280px;
}
.footer-renew__banner {
    display: block;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.footer-renew__banner:hover {
    border-color: #007737;
}
.footer-renew__banner p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}
.footer-renew__banner img {
    max-width: 180px;
}
.footer-renew__corp-links li a {
    font-size: 1.3rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-renew__corp-links li a i img {
    width: 12px;
}

/* --- Bottom Section --- */
.footer-renew__bottom {
    padding: 35px 20px;
}
.footer-renew__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-renew__operation {
    align-items: center;
    display: flex;
    gap: 4px;
}
.footer-renew__operation p {
    font-size: 1rem;
}
.footer-renew__operation img {
    max-width: 230px;
}
.footer-renew__license-flex {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.footer-renew__jpx {
    flex-shrink: 0;
}
.footer-renew__jpx img {
    width: 60px;
}
.footer-renew__license-text .lisence {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}
.footer-renew__parent-company {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #444;
    margin-bottom: 8px;
}
.copyright {
    font-size: 1.1rem;
    color: #888;
}

/* Utilities */
.pc-only { display: block; }
.sp-only { display: none; }

/* --- Responsive (Mobile) --- */
@media screen and (max-width: 768px) {
    .pc-only { display: none !important; }
    .sp-only { display: block !important; }

    .footer-renew__top { padding: 25px 15px; }
    .footer-renew__inner { flex-direction: column; gap: 30px; }
    
    .footer-renew__navs { flex-direction: column; gap: 25px; }
    .footer-renew__nav-title { display: block; }

    .footer-renew__bottom { padding: 25px 20px; }
    .footer-renew__bottom-inner { flex-direction: column; align-items: center; gap: 10px; }
    .footer-renew__license-text .lisence { text-align: center; }
    .footer-renew__parent-company {display: block; text-align: center;}
}