@charset "UTF-8";


/* --------------------
 Accessibility
-------------------- */
.skip {
    border-bottom-right-radius: 10px;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    display: block;
    height: 1px;
    left: 0;
    line-height: 1.2;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    text-decoration: underline;
    top: 0;
    width: 1px;
    z-index: 102;
}

.skip:focus {
    background-color: rgb(200, 0, 0);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #fff;
    display: block;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    overflow: visible;
    padding: 10px 15px;
    text-decoration: none;
    top: 5px;
    visibility: visible;
    width: auto;
    z-index: 1001;
}

/* --------------------
 Commons
-------------------- */
.com-button {
    align-items: center;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    background-color: #fff;
    border: 1px solid #29a039;
    border-radius: 30px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    color: #29a039;
    display: flex;
    flex-flow: row nowrap;
    
    font-weight: 700;
    height: 60px;
    justify-content: center;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 345px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    transition: background-color var(--com-transition), color var(--com-transition);
    width: 100%;
}

.com-button__img {
    display: block;
    position: relative;
}

.com-button__img > img {
    transition: opacity var(--com-transition);
}

.com-button__img__hover {
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity var(--com-transition);
}

.com-button:focus {
    background-color: #29a039;
    color: #fff;
}

.com-button:focus .com-button__img > img {
    opacity: 0;
}

.com-button:focus .com-button__img__hover {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .com-button:hover {
        background-color: #29a039;
        color: #fff;
    }

    .com-button:hover .com-button__img > img {
        opacity: 0;
    }

    .com-button:hover .com-button__img__hover {
        opacity: 1;
    }
}

.com-button--inverse {
    background-color: #29a039;
    color: #fff;
}

.com-button--inverse:focus {
    background-color: #fff;
    color: #29a039;
}

@media (hover: hover) and (pointer: fine) {
    .com-button--inverse:hover {
        background-color: #fff;
        color: #29a039;
    }
}

.com-cat {
    color: #fff;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    line-height: 1.2;
    min-width: 95px;
    padding: 4px 5px;
    text-align: center;
}

.com-cat--case {
    background-color: #ff9800;
}

.com-cat--news {
    background-color: #29a039;
}

.com-cat--important {
    background-color: #ff3333;
}

.com-title {
    margin: 0 0 30px;
}

@media (min-width: 768px) {
    .com-title {
        margin: 0 0 80px;
    }
}

.com-title__ja {
    color: #29a039;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    line-height: 1.4;
    margin: 0 0 0.35em;
    text-align: center;
}

@media (min-width: 768px) {
    .com-title__ja {
        font-size: 4.5rem;
    }
}

.com-title__en {
    text-align: center;
}

@media (max-width: 767px) {
    .com-title__en img {
        height: 12px;
        width: auto;
    }
}

.com-contact {
    background-image: url(../images/pages/front/front-contact-bg-xxs.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

@media (min-width: 480px) {
    .com-contact {
        background-image: url(../images/pages/front/front-contact-bg-xs.webp);
    }
}

@media (min-width: 768px) {
    .com-contact {
        background-image: url(../images/pages/front/front-contact-bg-sm.webp);
        padding: 90px 0;
    }
}

@media (min-width: 992px) {
    .com-contact {
        background-image: url(../images/pages/front/front-contact-bg-md.webp);
    }
}

@media (min-width: 1240px) {
    .com-contact {
        background-image: url(../images/pages/front/front-contact-bg-lg.webp);
    }
}

.com-contact-container {
    margin: 0 auto;
    max-width: 640px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .com-contact-container {
        padding: 0 30px;
    }
}

.com-contact__item-wrapper {
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .com-contact__item-wrapper {
        gap: 50px;
    }
}

.com-contact__item {
    width: calc(50% - 8px);
}

@media (min-width: 768px) {
    .com-contact__item {
        width: calc(50% - 25px);
    }
}

.com-contact__item__title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.2;
    margin: 0 0 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .com-contact__item__title {
        font-size: 1.8rem;
    }
}

.com-contact__item__action__button {
    align-items: center;
    border-radius: 35px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.8rem;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    transition: background-color var(--com-transition), color var(--com-transition);
    width: 100%;
}

@media (min-width: 768px) {
    .com-contact__item__action__button {
        font-size: 2rem;
        height: 70px;
    }
}

.com-contact__item__action__button__img {
    display: block;
    position: relative;
}

.com-contact__item__action__button__img img {
    height: 18px;
    width: auto;
}

@media (min-width: 768px) {
    .com-contact__item__action__button__img img {
        height: 20px;
    }
}

.com-contact__item__action__button__img > img {
    transition: opacity var(--com-transition);
}

.com-contact__item__action__button__img__hover {
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity var(--com-transition);
}

.com-contact__item__action__button:focus .com-contact__item__action__button__img > img {
    opacity: 0;
}

.com-contact__item__action__button:focus .com-contact__item__action__button__img__hover {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .com-contact__item__action__button:hover .com-contact__item__action__button__img > img {
        opacity: 0;
    }

    .com-contact__item__action__button:hover .com-contact__item__action__button__img__hover {
        opacity: 1;
    }
}

.com-contact__item__action__button--doc {
    background-color: #ff9800;
    color: #fff;
}

.com-contact__item__action__button--doc:focus {
    background-color: #fff;
    color: #ff9800;
}

@media (hover: hover) and (pointer: fine) {
    .com-contact__item__action__button--doc:hover {
        background-color: #fff;
        color: #ff9800;
    }
}

.com-contact__item__action__button--demo {
    background-color: #fff;
    color: #29a039;
}

.com-contact__item__action__button--demo:focus {
    background-color: #29a039;
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .com-contact__item__action__button--demo:hover {
        background-color: #29a039;
        color: #fff;
    }
}

.com-contact--fixed {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 98;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.com-contact--fixed.scrolled {
    visibility: visible;
    opacity: 1;
}

.com-contact--fixed.is-closed {
    display: none;
}

@media (min-width: 768px) {
    .com-contact--fixed {
        display: none;
    }
}

.com-contact--fixed .com-contact-container {
    padding: 0 25px;
}

.com-contact--fixed .com-contact__item__action__button {
    height: 48px;
    font-size: 1.6rem;
}

.com-contact--fixed .com-contact__item-wrapper {
    gap: 10px;
    justify-content: center;
}

.com-contact__button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0 0 auto auto;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.com-contact__button span {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.com-contact__button span:before, .com-contact__button span:after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #fff;
    inset: 0;
    margin: auto;
}

.com-contact__button span:before {
    transform: rotate(45deg);
}

.com-contact__button span:after {
    transform: rotate(-45deg);
}

.com-banner {
    padding: 30px 0;
}

.com-banner-container {
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .com-banner-container {
        padding: 0 30px;
    }
}

.com-banner__item-wrapper {
    align-items: center;
    display: flex;
    flex-flow: column wrap;
    gap: 30px;
}

@media (min-width: 768px) {
    .com-banner__item-wrapper {
        flex-direction: row;
        justify-content: center;
    }
}

.com-banner__item {
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .com-banner__item {
        width: calc(33.33333% - 20px);
    }
}

.com-banner__item a {
    transition: opacity var(--com-transition);
}

.com-banner__item a:focus {
    opacity: 0.65;
}

@media (hover: hover) and (pointer: fine) {
    .com-banner__item a:hover {
        opacity: 0.65;
    }
}

.com-page-head {
    background-image: url(../images/commons/com-page-head-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    padding: 65px 20px 0;
    padding: var(--header-height) 20px 0;
}

@media (min-width: 768px) {
    .com-page-head {
        height: 300px;
    }
}

.com-page-head-container {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    max-width: 1060px;
    padding: 0 10px 10px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .com-page-head-container {
        padding: 0 30px 40px;
    }
}

.com-page-head-container:after {
    background-image: url(../images/commons/com-page-head-bg-fig.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 60px;
    position: absolute;
    right: -10px;
    width: 80px;
}

@media (min-width: 768px) {
    .com-page-head-container:after {
        height: 132px;
        right: 0;
        width: 166px;
    }
}

@media (min-width: 992px) {
    .com-page-head-container:after {
        height: 165px;
        width: 207px;
    }
}

.com-page-head__title__ja {
    color: #29a039;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0 auto;
    padding: 0 20px 0 calc(20px + 0.2em);
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .com-page-head__title__ja {
        font-size: 4.5rem;
        letter-spacing: 0.3em;
        margin: 0 auto 0.35em;
        padding: 0 20px 0 calc(20px + 0.3em);
    }
}

.com-page-head__title__ja:before, .com-page-head__title__ja:after {
    background-color: #29a039;
    content: "";
    display: block;
    height: 2px;
    left: auto;
    margin: auto 0;
    position: absolute;
    right: auto;
    top: 0.7em;
    width: 15px;
}

@media (min-width: 768px) {
    .com-page-head__title__ja:before, .com-page-head__title__ja:after {
        height: 4px;
    }
}

.com-page-head__title__ja:before {
    left: 0;
}

.com-page-head__title__ja:after {
    right: 0;
}

.com-page-head__title__en {
    text-align: center;
}

@media (max-width: 767px) {
    .com-page-head__title__en img {
        height: 12px;
        width: auto;
    }
}

.com-pager__list {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 10px 15px;
    justify-content: center;
}

.com-pager__list__prev, .com-pager__list__next {
    position: relative;
    width: 36px;
}

.com-pager__list__prev a, .com-pager__list__next a {
    align-items: center;
    background-color: #29a039;
    border: 1px solid #29a039;
    border-radius: 18px;
    display: flex;
    flex-flow: row nowrap;
    font-size: 1rem;
    height: 36px;
    justify-content: center;
    line-height: 1.2;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color var(--com-transition);
    width: 36px;
}

.com-pager__list__prev a:before, .com-pager__list__next a:before {
    border-radius: 24px;
    content: "";
    display: block;
    height: 48px;
    left: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    z-index: 1;
}

.com-pager__list__prev a span, .com-pager__list__next a span {
    visibility: hidden;
}

.com-pager__list__prev a:focus, .com-pager__list__next a:focus {
    background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .com-pager__list__prev a:hover, .com-pager__list__next a:hover {
        background-color: #fff;
    }
}

.com-pager__list__prev:before, .com-pager__list__prev:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 10px;
    left: 0;
    margin: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity var(--com-transition);
    width: 6px;
    z-index: 1;
}

.com-pager__list__prev:before {
    background-image: url(../images/commons/com-pager-angle-white-prev.svg);
}

.com-pager__list__prev:after {
    background-image: url(../images/commons/com-pager-angle-green-prev.svg);
    opacity: 0;
}

.com-pager__list__prev:focus:before {
    opacity: 0;
}

.com-pager__list__prev:focus:after {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .com-pager__list__prev:hover:before {
        opacity: 0;
    }

    .com-pager__list__prev:hover:after {
        opacity: 1;
    }
}

.com-pager__list__next:before, .com-pager__list__next:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 10px;
    left: 0;
    margin: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity var(--com-transition);
    width: 6px;
    z-index: 1;
}

.com-pager__list__next:before {
    background-image: url(../images/commons/com-pager-angle-white-next.svg);
}

.com-pager__list__next:after {
    background-image: url(../images/commons/com-pager-angle-green-next.svg);
    opacity: 0;
}

.com-pager__list__next:focus:before {
    opacity: 0;
}

.com-pager__list__next:focus:after {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .com-pager__list__next:hover:before {
        opacity: 0;
    }

    .com-pager__list__next:hover:after {
        opacity: 1;
    }
}

.com-pager__list__item a, .com-pager__list__item span {
    align-items: center;
    background-color: rgba(0, 168, 80, 0.3);
    border: 1px solid rgba(0, 168, 80, 0);
    border-radius: 18px;
    color: #fff;
    display: flex;
    flex-flow: row nowrap;
    height: 36px;
    justify-content: center;
    line-height: 1.2;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 36px;
}

.com-pager__list__item a:before, .com-pager__list__item span:before {
    border-radius: 24px;
    content: "";
    display: block;
    height: 48px;
    left: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    z-index: 1;
}

.com-pager__list__item a {
    transition: background-color var(--com-transition), color var(--com-transition), border-color var(--com-transition);
}

.com-pager__list__item a:focus {
    background-color: #fff;
    border-color: #29a039;
    color: #29a039;
}

@media (hover: hover) and (pointer: fine) {
    .com-pager__list__item a:hover {
        background-color: #fff;
        border-color: #29a039;
        color: #29a039;
    }
}

.com-pager__list__item.current a, .com-pager__list__item.current span {
    background-color: #fff;
    border-color: #29a039;
    color: #29a039;
    pointer-events: none;
}

/* --------------------
 Header
-------------------- */
.mbnav {
    background-color: #f4f4f1;
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 65px;
    top: var(--header-height);
    z-index: 99;
}

@media (min-width: 992px) {
    .mbnav {
        display: none !important;
    }
}

.mbnav-container {
    height: 100%;
}

.mbnav.is-active .mbnav-container {
    overflow-y: auto;
}

.mbnav__menu__item {
    border-bottom: 1px solid #fff;
}

.mbnav__menu__item a, .mbnav__menu__item button {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #595757;
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0;
    padding: 15px 20px;
    position: relative;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.mbnav__menu__item button:before, .mbnav__menu__item button:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 18px;
    margin: auto 0;
    position: absolute;
    right: 20px;
    top: 0;
    transition: transform var(--com-transition), opacity var(--com-transition);
    width: 18px;
}

.mbnav__menu__item button:before {
    background-image: url(../images/commons/com-mbnav-icon-plus.svg);
}

.mbnav__menu__item button:after {
    background-image: url(../images/commons/com-mbnav-icon-minus.svg);
    opacity: 0;
}

.mbnav__menu__item button.is-active:before {
    opacity: 1;
    transform: rotate(180deg);
}

.mbnav__menu__item button.is-active:after {
    opacity: 1;
    transform: rotate(180deg);
}

.mbnav__menu__item__sub {
    border-top: 1px solid #fff;
    display: none;
}

.mbnav__menu__item__sub__item {
    border-bottom: 1px solid #fff;
    position: relative;
}

.mbnav__menu__item__sub__item:before {
    background-color: #595757;
    border-radius: 50%;
    content: "";
    display: block;
    height: 3px;
    left: 30px;
    position: absolute;
    top: 23px;
    width: 3px;
}

.mbnav__menu__item__sub__item:last-child {
    border-bottom: none;
}

.mbnav__menu__item__sub__item a {
    padding-left: 40px;
}

.mbnav__contact {
    padding: 30px 0;
}

.mbnav__contact a {
    align-items: center;
    background-color: #29a039;
    border: 1px solid #29a039;
    border-radius: 25px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.6rem;
    font-weight: 700;
    height: 50px;
    justify-content: center;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 330px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    transition: background-color var(--com-transition), color var(--com-transition);
    width: 100%;
}

.mbnav__banner {
    display: block;
    margin: 0 auto 30px;
    text-align: center;
}

/* --------------------
 Footer
-------------------- */
.footer {
    background-color: #f4f4f1;
    padding: 80px 0 90px;
}

@media (min-width: 768px) {
    .footer {
        padding: 60px 0 45px;
    }
}

.footer-container {
    margin: 0 auto;
    max-width: 1060px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-container {
        padding: 0 30px;
    }
}

.footer__menu {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    gap: 30px 20px;
    justify-content: flex-start;
    margin: 0 auto 50px;
    max-width: 400px;
    width: 100%;
}

@media (min-width: 768px) {
    .footer__menu {
        gap: 45px;
        margin: 0 auto 50px;
        max-width: 460px;
    }
}

@media (min-width: 992px) {
    .footer__menu {
        margin: 0 0 50px;
        max-width: none;
    }
}

.footer__menu__item {
    padding: 0 0 0 10px;
    position: relative;
    width: calc(50% - 10px);
}

@media (min-width: 768px) {
    .footer__menu__item {
        width: auto;
    }
}

.footer__menu__item:before {
    background-color: #595757;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 5px;
}

.footer__menu__item a {
    color: #595757;
    
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    position: relative;
    text-decoration: none;
    transition: color var(--com-transition);
}

.footer__menu__item a:after {
    background-color: #29a039;
    bottom: -1px;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin: 0;
    max-width: 100%;
    position: absolute;
    right: 0;
    transition: width var(--com-transition);
    width: 0;
    z-index: 0;
}

.footer__menu__item a:focus {
    color: #29a039;
}

.footer__menu__item a:focus:after {
    width: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .footer__menu__item a:hover {
        color: #29a039;
    }

    .footer__menu__item a:hover:after {
        width: 100%;
    }
}

.footer__menu__item span {
    color: #595757;
    
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.footer__menu__item__sub {
    padding: 5px 0 0;
}

.footer__menu__item__sub__item {
    margin: 0 0 5px;
    padding: 0 0 0 5px;
    position: relative;
}

.footer__menu__item__sub__item:before {
    background-color: #595757;
    border-radius: 50%;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 2px;
}

.footer__menu__item__sub__item:last-child {
    margin-bottom: 0;
}

.footer__menu__item__sub__item a {
    font-weight: 400;
}

.footer__logo {
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 992px) {
    .footer__logo {
        text-align: right;
    }
}

.footer__logo a {
    transition: opacity var(--com-transition);
}

.footer__logo a:focus {
    opacity: 0.65;
}

@media (hover: hover) and (pointer: fine) {
    .footer__logo a:hover {
        opacity: 0.65;
    }
}

.footer__logo a img {
    width: 200px;
}

@media (min-width: 768px) {
    .footer__logo a img {
        width: 260px;
    }
}

.footer__copyright {
    color: #595757;
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin: 0;
    padding: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__copyright {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .footer__copyright {
        text-align: right;
    }
}