@charset "UTF-8";

.org-footer * {
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 400;
   color: #fff;
}
.org-footer {
    background-color: #70B646;
    padding: 60px 0 20px;
}
.org-footer .footer__name {
    font-size: 16px;
    font-weight: bold;
    margin: 17px 0 9px;
}
.org-footer__info-list {
display: flex;
}
.org-footer .footer__info-right {
    width: 365px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__list {
    display: flex;
    gap: 64px;
}

.footer__list-navitem-ttl {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #fff;
    padding-bottom: 16px;
    margin-bottom: 15px;
    }
.footer__logo:hover,
.footer__list-navitem-anchor:hover {
    opacity: 1;
}
.footer__list-navitem-contents {
    display: flex;
    gap: 50px;
    }
.footer__list-navitem-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
.footer__list-navitem-anchor {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    display: inline-block;
    color: #FFF;
}
.footer__list-navitem-anchor::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}
.footer__list-navitem-anchor:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.org-footer .footer__inner {
    width: var(--screen-size);
    margin: auto;
    display: flex;
    gap: 40px 140px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer__copy {
    font-size: 14px;
    text-align: center;
    color: #fff;
}
/* ========================================
   Floating Buttons
   ======================================== */
.floating-buttons {
    position: fixed;
    right: 0px;
    top: 160px;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    gap: 4px;
    z-index: 5;
}
.floating-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 56px;
    height: 142px;
    text-decoration: none;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 106%;
    background: #37BF3C;
}
.floating-button:hover {
    opacity: 1;
    background: #fff;
    color: #37BF3C;
    border: 1px solid #37BF3C;
}
.floating-button:hover .floating-button__text {
    color: #37BF3C;
}
.floating-contact:hover{
    opacity: 1;
    background: #fff;
    color: #2DA9EB;
    border: 1px solid #2DA9EB;
}
.floating-contact:hover .floating-button__text {
    color: #2DA9EB;
}
.floating-naiken:hover {
    opacity: 1;
    background: #fff;
    color: #F1AB40;
    border: 1px solid #F1AB40;
}
.floating-naiken:hover .floating-button__text {
    color: #F1AB40;
}
.floating-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.floating-button__icon img {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}
.floating-button__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    writing-mode: vertical-rl;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: "Noto Sans JP";
}
.floating-contact {
background: #2DA9EB;
}
.floating-naiken {
    background: #F1AB40;
}
.floating-naiken .floating-button__text,
.floating-contact .floating-button__text {
    letter-spacing: 0.1em;
}
.searchlink {
    background: #eee;
    padding: 60px 0;
}
.searchlink__ttl {
    color: #383838;
    font-size: 15px;
    font-weight: 500;
        font-family: "Noto Sans JP", sans-serif;
    }
    .searchlink__items a {
        color: #383838;
        font-size: 15px;
        font-weight: 400;
        font-family: "Noto Sans JP", sans-serif;
    }
    .searchlink__inner > * + * {
    margin: 22px 0 0;
}