<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ------------------------------------------------------

  button

------------------------------------------------------ */
.boxShadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.buttonContact {
    align-items: center;
    background: var(--colorLightGreen);
    border-radius: 100vmax;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    height: 44px;
    justify-content: center;
    padding-top: 1px;
    transition: background 0.3s;
    width: 240px;
}

.buttonContact:hover {
    background: var(--colorGreen);
}

.buttonContact:focus-visible {
    background: var(--colorGreen);
    outline: 2px solid var(--colorBlue);
    outline-offset: 1px;
}

.buttonWhite {
    align-items: center;
    background: #fff;
    border-radius: 100vmax;
    color: var(--colorLightGreen);
    display: flex;
    font-size: 18px;
    font-weight: 500;
    height: 54px;
    justify-content: center;
    width: 240px;
}

.buttonMore {
    align-items: center;
    background: var(--colorLightGreen);
    border-radius: 100vmax;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    height: 64px;
    justify-content: center;
    padding-top: 1px;
    position: relative;
    transition: 0.3s;
    width: 320px;
}

.buttonMore:hover {
    background: var(--colorGreen);
}

.buttonMore:focus-visible {
    background: var(--colorGreen);
    outline: 2px solid var(--colorBlue);
    outline-offset: 1px;
}

.buttonMore::after {
    background: url("../images/button_arrow_white.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 20px;
    margin-top: -10px;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 20px;
}

.buttonForm {
    align-items: center;
    background: #fff;
    border-radius: 100vmax;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #000;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    height: 64px;
    justify-content: center;
    position: relative;
    transition: 0.6s;
    width: 320px;
}

.buttonForm:hover {
    background: var(--colorGray100);
}

.buttonForm::after {
    background: url("../images/button_arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 20px;
    margin-top: -10px;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 20px;
}

.buttonCard {
    align-items: center;
    background: #fff;
    border-radius: 8px;
    column-gap: 16px;
    display: flex;
    padding: 24px;
    position: relative;
    transition: 0.3s;
}

.buttonCard:hover {
    background: var(--colorGray100);
}

.buttonCard::after {
    background: url("../images/button_arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 20px;
    margin-top: -10px;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 20px;
}

.buttonCard__icon img {
    height: 56px;
    width: 56px;
}

.buttonCard__title {
    color: #000;
    font-size: 18px;
}

.buttonCard__lead {
    color: var(--colorGray400);
    font-family: var(--fontInter);
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
}

@media screen and (max-width: 1280px) {
    .buttonForm {
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
        font-size: 15px;
        height: 50px;
        width: 260px;
    }

    .buttonForm::after {
        height: 18px;
        margin-top: -9px;
        right: 18px;
        width: 18px;
    }

    .buttonMore {
        font-size: 15px;
        height: 50px;
        width: 240px;
    }

    .buttonCard__icon img {
        height: 40px;
        width: 40px;
    }

    .buttonCard__title {
        font-size: 16px;
    }

    .buttonCard__lead {
        font-size: 11px;
    }
}

/* ------------------------------------------------------

  Text

------------------------------------------------------ */
.commonText {
    font-size: 16px;
    line-height: 2;
}

@media screen and (max-width: 1280px) {
    .commonText {
        font-size: 14px;
    }
}

/* ------------------------------------------------------

  heading

------------------------------------------------------ */
.heading--center {
    text-align: center;
}

.heading__title {
    color: var(--colorLightGreen);
    font-family: var(--fontInter);
    font-size: 48px;
    font-weight: 500;
}

.heading__title--white {
    color: #fff;
}

.heading__lead {
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
}

.heading__lead--white {
    color: #fff;
}

.headline__title {
    font-size: 24px;
    font-weight: 400;
    padding-left: 16px;
    position: relative;
}

.headline__title::before {
    background: var(--colorLightGreen);
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 0;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    width: 8px;
}

@media screen and (max-width: 1280px) {
    .heading__title {
        font-size: 36px;
    }

    .heading__lead {
        font-size: 13px;
    }

    .headline__title {
        font-size: 18px;
    }
}

/* ------------------------------------------------------

  pageVisual

------------------------------------------------------ */
.pageVisual {
    height: 340px;
    margin-top: var(--header-height);
}

.pageVisual__inner {
    align-items: center;
    display: flex;
    height: 100%;
    margin: 0 auto;
    max-width: 1180px;
    width: 100%;
}

.pageVisualCatch__title {
    color: #fff;
    font-family: var(--fontInter);
    font-size: 100px;
    font-weight: bold;
}

.pageVisualCatch__lead {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-top: 24px;
}

@media screen and (max-width: 1280px) {
    .pageVisual {
        height: 40vh;
        margin-top: var(--header-height-sp);
    }

    .pageVisual__inner {
        padding: 0 20px;
        width: auto;
    }

    .pageVisualCatch__title {
        font-size: 48px;
    }

    .pageVisualCatch__lead {
        font-size: 16px;
        margin-top: 16px;
    }
}
@media screen and (max-width: 767px) {
    .pageVisual {
        height: 30vh;
        margin-top: var(--header-height-sp);
    }
}

/* ------------------------------------------------------

  newsCard

------------------------------------------------------ */
.newsCard a {
    align-items: center;
    border-bottom: 1px solid var(--colorGray200);
    border-radius: 2px;
    column-gap: 8px;
    display: grid;
    grid-template-columns: 70px 100px auto;
    padding: 20px 40px 20px 0;
    position: relative;
    transition: 0.3s;
}

.newsCard a:hover {
    background: var(--colorGray100);
}

.newsCard a::after {
    background: url("../images/button_arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 20px;
    margin-top: -10px;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 20px;
}

.newsCard__cat {
    align-items: center;
    border-radius: 100vmax;
    color: #fff;
    display: flex;
    font-size: 12px;
    height: 24px;
    justify-content: center;
    padding-inline: 8px;
    width: auto;
}

.newsCard__cat.red {
    background: #c83c57;
}

.newsCard__cat.green {
    background: #61ad3d;
}

.newsCard__cat.purple {
    background: var(--colorPurple);
}

.newsCard__cat.dark-blue {
    background: var(--colorDarkBlue);
}

.newsCard__cat.light-blue {
    background: var(--colorLightBlue);
}

.newsCard__day {
    color: var(--colorGray800);
    font-family: var(--fontInter);
    font-size: 12px;
}

.newsCard__title {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: auto;
}

@media screen and (max-width: 1280px) {
    .newsCard a {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 40px 20px 0;
        row-gap: 16px;
    }

    .newsCard__cat {
        font-size: 11px;
        height: 20px;
    }

    .newsCard__day {
        font-size: 11px;
    }

    .newsCard__title {
        font-size: 13px;
        max-width: none;
        width: 100%;
    }
}
/* ------------------------------------------------------

  .page__title

------------------------------------------------------ */
.page__title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.8;
    margin-inline: auto;
    padding-left: 26px;
    position: relative;
    width: fit-content;
}
.page__title::before {
    background: var(--colorLightGreen);
    border-radius: 50%;
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
}
@media screen and (max-width: 1280px) {
    .page__title {
        font-size: 28px;
    }
}

.underLine__title {
    border-bottom: 1px solid #00b393;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.8;
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .underLine__title {
        font-size: 20px;
        padding-bottom: 10px;
    }
}

/* ------------------------------------------------------

  tlanslate

------------------------------------------------------ */
#google_translate_element {
    position: relative;
}

#google_translate_element img {
    display: none;
}

.goog-te-combo,
.VIpgJd-ZVi9od-ORHb *,
.VIpgJd-ZVi9od-SmfZ *,
.VIpgJd-ZVi9od-xl07Ob *,
.VIpgJd-ZVi9od-vH1Gmf *,
.VIpgJd-ZVi9od-l9xktf * {
    font-size: 16px !important;
}

.header__column {
    display: flex;
    gap: 10px;
}

.goog-te-gadget {
    margin-top: 11px;
}
.goog-te-gadget .goog-te-combo {
    padding: 4px;
}
@media screen and (max-width: 1200px) {
    #google_translate_element span,
    #google_translate_element a {
        padding: 0;
    }

    .goog-te-gadget .goog-te-combo {
        padding: 2px;
    }

    .header__column {
        align-items: center;
    }

    .goog-te-gadget {
        margin-top: 0;
    }

    .goog-te-combo,
    .VIpgJd-ZVi9od-ORHb *,
    .VIpgJd-ZVi9od-SmfZ *,
    .VIpgJd-ZVi9od-xl07Ob *,
    .VIpgJd-ZVi9od-vH1Gmf *,
    .VIpgJd-ZVi9od-l9xktf * {
        font-size: 10px !important;
    }
}
</pre></body></html>