@import url('https: //cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

/* フッター */
.foot_ceparater {
    padding: 10px 20px;
    background: var(--main-gradation-color);
}

.foot_ceparater a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    padding: 5px 10px;
    /* border: 1px solid #fff; */
    max-width: 70px;
    margin: auto;
    color: #fff;
    transition: .4s;
}
.foot_ceparater a:hover {
    transition: .4s;
    color: var(--main-color);
}
.foot_ceparater a:hover .svg path {
    fill: var(--main-color) !important;
}
.foot_ceparater a:hover .svg {
    background-color: #fff !important;
    border-radius: 50%;
    transition: .4s;
}

.foot_ceparater a .pagetop {
    display: none;
    font-size: 12px;
}
.foot_ceparater a .svg {
    max-width: 40px;
    height: 40px;
}
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 15px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon fill="%23458237" opacity="0.05" points="0,0 200,50 200,200 0,150"/></svg>') no-repeat;
    background-size: cover;
}

.footer__ {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.pageTop {
    text-align: center;
    margin-bottom: 40px;
}

.pageTop a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--main-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(69, 130, 55, 0.1);
    backdrop-filter: blur(10px);
}

.pageTop a:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 130, 55, 0.3);
}

.footerMenu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin-bottom: 30px;
}

.footerMenu li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    padding: 6px 0;
    position: relative;
}

.footerMenu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

.footerMenu li a:hover {
    color: white;
}

.footerMenu li a:hover::after {
    width: 100%;
}

.footer__hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7f8c8d, transparent);
    margin: 30px 0 15px;
}