@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 88px;
    background-color: #F6F9F9;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
    z-index: 999;
}
@media screen and (max-width: 767px) {
    .l-header {
        height: 64px;
    }
}
.l-header__container {
    justify-content: space-between;
    align-items: center;
    width: 1140px;
    padding-inline: 20px;
    display: flex;
    margin-inline: auto;
    -moz-column-gap: 38px;
         column-gap: 38px;
}
@media screen and (max-width: 767px) {
    .l-header__container {
        -moz-column-gap: 0;
             column-gap: 0;
        width: 100%;
    }
}
.l-header__logo {
    width: 165px;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .l-header__logo {
        display: flex;
        align-items: center;
        width: 108px;
        height: 100%;
    }
}
.l-header__logo-link {
    display: block;
    width: 100%;
}
@media (hover: hover) and (pointer: fine) {
    .l-header__logo-link {
        transition: opacity 300ms;
    }
    .l-header__logo-link:hover {
        opacity: 0.4;
    }
}
.l-header__logo-link img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
@media screen and (max-width: 767px) {
    .l-header__logo-link {
        display: flex;
    }
}

/* ---------------------------------------------
*   l-header-menu
--------------------------------------------- */
.l-header-menu {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    overscroll-behavior-y: none;
    opacity: 0;
    visibility: hidden;
    scrollbar-width: none;
    width: 100%;
}
.l-header-menu::-webkit-scrollbar {
    display: none;
}
.l-header-menu.is-animating {
    transition: opacity 0.3s, visibility 0.3s;
}
.is-menu-opened .l-header-menu {
    visibility: visible;
    opacity: 1;
}

.l-header-menu__container {
    overflow-y: auto;
    height: calc(100% + 1px);
    box-sizing: border-box;
    padding: 53px 20px 25px;
    color: #DAF2F5;
    background-color: #008CA3;
}

/* ---------------------------------------------
*   l-header-nav
--------------------------------------------- */
.l-header-nav {
    display: none;
}
.l-header-nav__list {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
}
.l-header-nav__item {
    display: flex;
    align-items: center;
}
.l-header-nav__link {
    font-size: 0.8125rem;
    font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-nav__link {
        transition: opacity 300ms;
    }
    .l-header-nav__link:hover {
        opacity: 0.4;
    }
}
.l-header-nav__txt {
    display: block;
    margin-top: 9px;
}

/* ---------------------------------------------
*   l-header-sp-nav
--------------------------------------------- */
.l-header-sp-nav {
    display: block;
}
.l-header-sp-nav__ttl {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.l-header-sp-nav__list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-top: 3.7333333333vw;
    border-bottom: 1px solid #5AB0BE;
}
.l-header-sp-nav__item {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 30px 0;
    width: 50%;
    height: 114px;
    border-top: 1px solid #5AB0BE;
}
.l-header-sp-nav__item:nth-of-type(2n) {
    border-left: 1px solid #5AB0BE;
}
.l-header-sp-nav__link {
    display: block;
    width: 100%;
    color: #DAF2F5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transform: translateZ(0);
}
@media (hover: hover) and (pointer: fine) {
    .l-header-sp-nav__link {
        transition: opacity 300ms;
    }
    .l-header-sp-nav__link:hover {
        opacity: 0.4;
    }
}
.l-header-sp-nav__txt {
    display: block;
    margin-top: 8px;
}

/* ---------------------------------------------
*   l-header-menu-button
--------------------------------------------- */
.l-header-menu-button {
    position: relative;
    border: 0;
    border-radius: 0;
    background: none;
    margin: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    touch-action: manipulation;
    cursor: pointer;
    display: block;
}
.l-header-menu-button__lines {
    position: relative;
    display: block;
    width: 36px;
    height: 24px;
}
@media screen and (max-width: 767px) {
    .l-header-menu-button__lines {
        width: 21px;
        height: 14px;
    }
}
.l-header-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 1px;
    background-color: #435043;
    transition: 0.3s;
}
.l-header-menu-button__line--top {
    top: 0;
}
.is-menu-opened .l-header-menu-button__line--top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #DAF2F5;
}

.l-header-menu-button__line--center {
    top: 50%;
    transform: translateY(-50%);
}
.is-menu-opened .l-header-menu-button__line--center {
    background-color: rgba(0, 0, 0, 0);
}

.l-header-menu-button__line--bottom {
    bottom: 0;
}
.is-menu-opened .l-header-menu-button__line--bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: #DAF2F5;
}

/* ---------------------------------------------
*   l-header-btn-wrap
--------------------------------------------- */
.l-header-btn-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}
@media screen and (max-width: 767px) {
    .l-header-btn-wrap {
        gap: 9px;
    }
}
.l-header-btn-wrap > * {
    flex-shrink: 0;
}
.l-header-btn-wrap__txt {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .l-header-btn-wrap__txt {
        font-size: 10px;
    }
}

/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    padding-top: 88px;
}
@media screen and (max-width: 1100px) {
    .l-contents {
        margin-inline: auto;
    }
}
@media screen and (max-width: 767px) {
    .l-contents {
        padding-top: 64px;
    }
}
.l-contents__inner {
    max-width: 1140px;
    margin: 0 auto 224px;
    padding-inline: 20px;
}
@media screen and (max-width: 1100px) {
    .l-contents__inner {
        max-width: 282.6666666667vw;
        margin-bottom: 21.3333333333vw;
        padding-inline: 5.3333333333vw;
    }
}
@media screen and (min-width: 1101px) {
    .l-contents__inner.is-top {
        min-height: calc(100vh - 128px);
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1101px) and (orientation: landscape) and (max-height: 768px) {
    .l-contents__inner.is-top {
        max-width: 812px;
        margin-inline: auto;
    }
}
@media screen and (min-width: 1101px) and (orientation: landscape) and (min-height: 768px) and (max-height: 856px) {
    .l-contents__inner.is-top {
        max-width: 110.9813084112vh;
    }
}

/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
.l-breadcrumb__list {
    display: flex;
    align-items: center;
    margin-top: 53px;
}
@media screen and (max-width: 1100px) {
    .l-breadcrumb__list {
        margin-top: 5.6vw;
    }
}
@media screen and (max-width: 767px) {
    .l-breadcrumb__item {
        display: flex;
        align-items: center;
    }
}
.l-breadcrumb__img {
    margin-inline: 15px;
}
@media screen and (max-width: 767px) {
    .l-breadcrumb__img {
        margin-inline: 1.0666666667vw;
        width: 1.3333333333vw;
        height: 1.3333333333vw;
    }
}
.l-breadcrumb__img img {
    display: block;
    width: 100%;
}
.l-breadcrumb__txt {
    font-weight: 500;
    line-height: 1.5625;
}
@media screen and (max-width: 767px) {
    .l-breadcrumb__txt {
        font-size: 0.625rem;
        line-height: 1.7857142857;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-breadcrumb__txt[href] {
        transition: opacity 300ms;
    }
    .l-breadcrumb__txt[href]:hover {
        opacity: 0.4;
    }
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
/* ---------------------------------------------
*   c-block-1
--------------------------------------------- */
.c-block-1 {
    padding-bottom: 100px;
}
@media screen and (max-width: 1280px) {
    .c-block-1 {
        margin: 0 auto;
    }
}
@media screen and (max-width: 1100px) {
    .c-block-1 {
        width: 100%;
        padding-bottom: 0;
    }
}
.c-block-1__item:nth-of-type(n + 2) {
    margin-top: 70px;
}
@media screen and (max-width: 1100px) {
    .c-block-1__item:nth-of-type(n + 2) {
        margin-top: 14.1333333333vw;
    }
}

/* ---------------------------------------------
*   c-block-pager
--------------------------------------------- */
.c-block-pager__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: 44px auto 0;
}
@media screen and (max-width: 1100px) {
    .c-block-pager__inner {
        margin: 9.3333333333vw auto 0;
    }
}
.c-block-pager__link-outer {
    display: flex;
    align-items: center;
}
.c-block-pager__link {
    position: relative;
    color: #48A5B5;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
    .c-block-pager__link {
        font-size: 1rem;
        letter-spacing: 0.384vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-block-pager__link {
        transition: opacity 300ms;
    }
    .c-block-pager__link:hover {
        opacity: 0.4;
    }
}
.c-block-pager__link::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 11px;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 1100px) {
    .c-block-pager__link::before {
        width: 2.6666666667vw;
        height: 2.9333333333vw;
    }
}
.c-block-pager__link--prev {
    padding-left: 25px;
}
@media screen and (max-width: 1100px) {
    .c-block-pager__link--prev {
        padding-left: 4.8vw;
    }
}
.c-block-pager__link--prev::before {
    left: 0;
    background: url(/themes/green-tec/img/usefulinfo/icon_prev.svg) 0 0 no-repeat;
    background-size: 100% auto;
}
.c-block-pager__link--next {
    padding-right: 25px;
}
@media screen and (max-width: 1100px) {
    .c-block-pager__link--next {
        padding-right: 4.8vw;
    }
}
.c-block-pager__link--next::before {
    right: 0;
    background: url(/themes/green-tec/img/usefulinfo/icon_next.svg) 0 0 no-repeat;
    background-size: 100% auto;
}
.c-block-pager__txt-outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 32px;
         column-gap: 32px;
    max-width: 800px;
    margin: 0 53px;
}
@media screen and (max-width: 1100px) {
    .c-block-pager__txt-outer {
        -moz-column-gap: 0;
             column-gap: 0;
        margin: 0 9.6vw;
    }
    .c-block-pager__txt-outer span + span {
        margin-left: 5.3333333333vw;
    }
}
.c-block-pager__txt {
    color: #889888;
    font-size: 1rem;
    letter-spacing: -0.1em;
}
@media screen and (max-width: 1100px) {
    .c-block-pager__txt + .c-block-pager__txt {
        margin-left: 5.3333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-block-pager__txt {
        font-size: 1rem;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-block-pager__txt {
        transition: opacity 300ms;
    }
    .c-block-pager__txt:hover {
        opacity: 0.4;
    }
}
.c-block-pager__txt.is-current {
    position: relative;
    opacity: 1;
}
@media screen and (max-width: 1100px) {
    .c-block-pager__txt.is-current {
        margin: 0 1.8666666667vw 0 6.6666666667vw;
    }
}
.c-block-pager__txt.is-current::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #889888;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1100px) {
    .c-block-pager__txt.is-current::after {
        width: 8vw;
        height: 8vw;
    }
}
.c-block-pager__mark {
    display: flex;
    width: 13px;
}
@media screen and (max-width: 1100px) {
    .c-block-pager__mark {
        margin-inline: 3.7333333333vw;
        width: 2.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-block-2
--------------------------------------------- */
.c-block-2 {
    margin-top: 60px;
}
@media screen and (max-width: 1100px) {
    .c-block-2 {
        margin-top: 10.6666666667vw;
    }
}
.c-block-2__head {
    text-align: center;
}
@media screen and (max-width: 1100px) {
    .c-block-2__img {
        margin: 0 auto;
        width: 14.6666666667vw;
    }
}
.c-block-2__txt {
    display: block;
    margin-top: 21px;
    color: #48A5B5;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
    .c-block-2__txt {
        display: block;
        margin-top: 3.2vw;
    }
}
@media screen and (max-width: 767px) {
    .c-block-2__txt {
        font-size: 1.125rem;
    }
}
.c-block-2__body {
    margin-top: 42px;
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.6666666667;
}
@media screen and (max-width: 1100px) {
    .c-block-2__body {
        margin-top: 6.9333333333vw;
        width: 78.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-block-2__body {
        font-size: 0.875rem;
        line-height: 1.7142857143;
        letter-spacing: -0.03em;
    }
}
.c-block-2--404 {
    margin-inline: auto;
    max-width: 710px;
}
@media screen and (max-width: 1100px) {
    .c-block-2--404 .c-block-2__img {
        width: 10.1333333333vw;
    }
}
.c-block-2--com {
    margin-inline: auto;
    max-width: 602px;
}
@media screen and (max-width: 1100px) {
    .c-block-2--com {
        margin-top: 8vw;
    }
    .c-block-2--com .c-block-2__img {
        width: 12.2666666667vw;
    }
}

/* ---------------------------------------------
*   c-block-3
--------------------------------------------- */
.c-block-3 {
    position: relative;
    margin-top: 48px;
    width: 550px;
    flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
    .c-block-3 {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .c-block-3 {
        margin-top: 5.3333333333vw;
    }
}
@media screen and (max-width: 1100px) {
    .c-block-3::before {
        position: absolute;
        display: inline-block;
        content: "";
        background: url(/themes/green-tec/img/offices/map.svg) 0 0 no-repeat;
        background-size: 100% auto;
        width: 100%;
        aspect-ratio: 602/583;
        top: 85px;
        left: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-block-3::before {
        position: fixed;
        width: 89.0666666667vw;
        top: 69.6vw;
        left: 5.6vw;
    }
}

/*  c-block-3-wrap
--------------------------------------------- */
.c-block-3-wrap {
    display: flex;
}
@media screen and (min-width: 1101px) {
    .c-block-3-wrap {
        margin-block: 0 80vh;
    }
}
@media screen and (max-width: 1100px) {
    .c-block-3-wrap {
        display: block;
    }
}

/* ---------------------------------------------
*   c-block-map
--------------------------------------------- */
.c-block-map {
    top: 110px;
    position: sticky;
    display: block;
    width: 601px;
    height: -moz-fit-content;
    height: fit-content;
    flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
    .c-block-map {
        display: none;
    }
}

/* ---------------------------------------------
*   c-block-detail
--------------------------------------------- */
.c-block-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 92px;
}
@media screen and (max-width: 1100px) {
    .c-block-detail {
        flex-direction: column;
        gap: 5.3333333333vw;
        margin-top: 13.6vw;
    }
    .c-block-detail--solutions {
        gap: 4.8vw;
    }
}
.c-block-detail--full .c-block-detail__item {
    width: 1100px;
    padding: 45px 60px 42px;
}
@media screen and (max-width: 1100px) {
    .c-block-detail--full .c-block-detail__item {
        width: 100%;
        padding: 6.1333333333vw 5.0666666667vw;
    }
}
.c-block-detail--full .c-block-detail__ttl {
    margin-bottom: 21px;
}
@media screen and (max-width: 1100px) {
    .c-block-detail--full .c-block-detail__ttl {
        margin-bottom: 3.7333333333vw;
    }
}
.c-block-detail__item {
    width: calc(50% - 15px);
    background-color: #F6F9F9;
    border-radius: 10px;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
    padding: 21px 30px;
    display: grid;
    grid-template-rows: auto 1fr;
    row-gap: 22px;
}
@media screen and (max-width: 1100px) {
    .c-block-detail__item {
        width: 100%;
        padding: 6.1333333333vw 5.0666666667vw;
        row-gap: 3.2vw;
        border-radius: 2.6666666667vw;
    }
}
.c-block-detail__ttl {
    font-size: 1.375rem;
    color: #008CA3;
    margin-bottom: 22px;
    letter-spacing: 0.1em;
    text-align: center;
}
@media screen and (max-width: 1100px) {
    .c-block-detail__ttl {
        margin-bottom: 3.7333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-block-detail__ttl {
        font-size: 1rem;
    }
}
.c-block-detail__img {
    width: 100%;
    aspect-ratio: 980/400;
}
@media screen and (max-width: 1100px) {
    .c-block-detail__img {
        aspect-ratio: 594/270;
    }
}
.c-block-detail__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
.c-block-detail__desc {
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
    .c-block-detail__desc {
        font-size: 0.875rem;
        line-height: 1.8571428571;
        letter-spacing: -0.03em;
    }
}
.c-block-detail__desc b,
.c-block-detail__desc strong {
    font-weight: bold;
}
.c-block-detail__desc a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-block-detail__desc a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-block-detail__desc a {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-block-qualification
--------------------------------------------- */
.c-block-qualification__list {
    width: 851px;
    margin: 21px auto 0;
    background-color: #F8F7F7;
    border: 1px solid #D1D1D1;
}
@media screen and (max-width: 1100px) {
    .c-block-qualification__list {
        width: 100%;
        margin-top: 3.4666666667vw;
    }
}
.c-block-qualification__item {
    padding: 12px 30px;
    border-bottom: 1px solid #D1D1D1;
}
@media screen and (max-width: 1100px) {
    .c-block-qualification__item {
        padding: 3.2vw 5.0666666667vw;
    }
}
.c-block-qualification__item:last-child {
    border-bottom: none;
}
.c-block-qualification__txt {
    font-size: 0.875rem;
    line-height: 1.3571428571;
}
@media screen and (max-width: 767px) {
    .c-block-qualification__txt {
        font-size: 0.875rem;
    }
}
.c-block-qualification__txt b,
.c-block-qualification__txt strong {
    font-weight: bold;
}
.c-block-qualification__txt a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-block-qualification__txt a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-block-qualification__txt a {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
.c-block:nth-child(n+2) {
    margin-top: 60px;
}
@media screen and (max-width: 1100px) {
    .c-block:nth-child(n+2) {
        margin-top: 40px;
    }
}
.c-block__inner {
    background-color: #F6F9F9;
    border-radius: 10px;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
    padding: 60px;
}
@media screen and (max-width: 1100px) {
    .c-block__inner {
        border-radius: 2.6666666667vw;
        padding: 10.6666666667vw 5.3333333333vw 9.8666666667vw;
    }
}
.c-block__box-outer {
    margin-top: 20px;
}
@media screen and (max-width: 1100px) {
    .c-block__box-outer {
        margin-top: 5.3333333333vw;
    }
}
.c-block__img img {
    display: block;
    width: 100%;
}
.c-block__img iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 640/360;
}
.c-block__txt {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.7857142857;
}
@media screen and (max-width: 767px) {
    .c-block__txt {
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.7857142857;
        letter-spacing: -0.03em;
    }
}
.c-block__head {
    display: flex;
    align-items: center;
}
.c-block__head-label {
    padding: 3px 20px;
    background-color: #48A5B5;
    border-radius: 5px;
}
@media screen and (max-width: 1100px) {
    .c-block__head-label {
        padding: 0.2666666667vw 2.6666666667vw;
        border-radius: 1.3333333333vw;
    }
    .windows.edge .c-block__head-label {
        padding: 1.3333333333vw 2.6666666667vw 0.2666666667vw;
    }
}
.c-block__head-label-txt {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
    .c-block__head-label-txt {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .c-block__head-label-txt {
        font-size: 0.75rem;
        letter-spacing: normal;
    }
}
.c-block__head-ttl {
    margin-left: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .c-block__head-ttl {
        font-size: 1rem;
        letter-spacing: -0.03em;
    }
}
@media screen and (max-width: 1100px) {
    .c-block--type00 .c-block__inner {
        padding: 7.4666666667vw 5.3333333333vw 5.8666666667vw;
    }
}
.c-block--type00 .c-block__box-outer {
    display: flex;
    margin: 32px 0 21px;
    -moz-column-gap: 30px;
         column-gap: 30px;
}
@media screen and (max-width: 1100px) {
    .c-block--type00 .c-block__box-outer {
        flex-direction: column;
        margin: 4.5333333333vw 0 3.7333333333vw;
        row-gap: 5.6vw;
    }
}
.c-block--type00 .c-block__img {
    width: 379px;
}
@media screen and (max-width: 1100px) {
    .c-block--type00 .c-block__img {
        width: 78.6666666667vw;
    }
}
.c-block--type00 .c-block__img img {
    border-radius: 10px;
}
@media screen and (max-width: 1100px) {
    .c-block--type00 .c-block__img img {
        border-radius: 2.6666666667vw;
    }
}
.c-block--type00 .c-block__box-right {
    width: 571px;
}
@media screen and (max-width: 1100px) {
    .c-block--type00 .c-block__box-right {
        width: 100%;
    }
}
.c-block--type01 .c-block__box-outer {
    display: flex;
    margin-top: 20px;
    -moz-column-gap: 30px;
         column-gap: 30px;
}
@media screen and (max-width: 1100px) {
    .c-block--type01 .c-block__box-outer {
        flex-direction: column;
        row-gap: 3.4666666667vw;
        margin-top: 3.4666666667vw;
    }
}
.c-block--type01 .c-block__box-left {
    position: relative;
    width: 100%;
    max-width: 475px;
    height: 207px;
}
@media screen and (max-width: 1100px) {
    .c-block--type01 .c-block__box-left {
        max-width: none;
        height: 38.9333333333vw;
    }
}
.c-block--type01 .c-block__box-left iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1100px) {
    .c-block--type01 .c-block__box-left {
        width: 100%;
    }
}
.c-block--type01 .c-block__box-right {
    width: calc(100% - 475px - 30px);
}
@media screen and (max-width: 1100px) {
    .c-block--type01 .c-block__box-right {
        width: 100%;
    }
}
.c-block--type02 .c-block__box-left {
    width: 153px;
}
@media screen and (max-width: 1100px) {
    .c-block--type02 .c-block__box-left {
        display: flex;
        align-items: center;
        -moz-column-gap: 3.4666666667vw;
             column-gap: 3.4666666667vw;
        width: 100%;
    }
}
.c-block--type02 .c-block__box-left .c-block__box-ttl {
    display: none;
}
@media screen and (max-width: 1100px) {
    .c-block--type02 .c-block__box-left .c-block__box-ttl {
        display: block;
    }
}
.c-block--type02 .c-block__img {
    display: block;
    width: 100%;
    aspect-ratio: 153/153;
}
.c-block--type02 .c-block__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    border-radius: 100%;
}
@media screen and (max-width: 1100px) {
    .c-block--type02 .c-block__img {
        width: 28vw;
        flex-shrink: 0;
    }
}
.c-block--type02 .c-block__box-right {
    width: 100%;
    max-width: calc(100% - 153px - 30px);
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
@media screen and (max-width: 1100px) {
    .c-block--type02 .c-block__box-right {
        width: 100%;
        max-width: none;
        row-gap: 5.3333333333vw;
    }
}
.c-block--type02 .c-block__box-right .c-block__box-ttl {
    display: block;
}
@media screen and (max-width: 1100px) {
    .c-block--type02 .c-block__box-right .c-block__box-ttl {
        display: none;
    }
}
.c-block--type02 .c-block__box-outer {
    display: flex;
    margin-top: 18px;
    -moz-column-gap: 30px;
         column-gap: 30px;
}
@media screen and (max-width: 1100px) {
    .c-block--type02 .c-block__box-outer {
        flex-direction: column;
        row-gap: 3.4666666667vw;
        margin-top: 3.4666666667vw;
    }
}
.c-block--type02 .c-block__box-ttl {
    font-size: 1rem;
    font-weight: bold;
}
@media screen and (max-width: 1100px) {
    .c-block--type02 .c-block__box-ttl {
        font-size: 1rem;
    }
}
.c-block--type03 .c-block__box {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
@media screen and (max-width: 1100px) {
    .c-block--type03 .c-block__box {
        row-gap: 3.7333333333vw;
    }
}
.c-block--type03 .c-block__box:nth-of-type(n+2) {
    margin-top: 20px;
}
@media screen and (max-width: 1100px) {
    .c-block--type03 .c-block__box:nth-of-type(n+2) {
        margin-top: 3.7333333333vw;
    }
}
.c-block--type04 .c-block__inner {
    display: grid;
    grid-template: auto/repeat(2, 1fr);
    gap: 30px;
}
@media screen and (max-width: 1100px) {
    .c-block--type04 .c-block__inner {
        gap: 5.3333333333vw;
        grid-template: auto/repeat(1, 1fr);
        margin-top: 3.4666666667vw;
    }
}
.c-block--type04 .c-block__box-outer {
    flex-direction: column;
}
@media screen and (max-width: 1100px) {
    .c-block--type04 .c-block__box-outer {
        -moz-column-gap: 3.4666666667vw;
             column-gap: 3.4666666667vw;
        margin-top: 3.4666666667vw;
    }
}
.c-block--type04 .c-block__box {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
}
.c-block--type04 .c-block__box:nth-of-type(n+2) {
    margin-top: 20px;
}
@media screen and (max-width: 1100px) {
    .c-block--type04 .c-block__box {
        row-gap: 2.9333333333vw;
    }
    .c-block--type04 .c-block__box:nth-of-type(n+2) {
        margin-top: 5.3333333333vw;
    }
}
.c-block--type05 .c-block__box-outer {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
}
@media screen and (max-width: 1100px) {
    .c-block--type05 .c-block__box-outer {
        flex-direction: column;
        margin-top: 3.4666666667vw;
    }
}
.c-block--type05 .c-block__box-left {
    flex-shrink: 0;
    width: 475px;
}
@media screen and (max-width: 1100px) {
    .c-block--type05 .c-block__box-left {
        width: 100%;
    }
}
@media screen and (max-width: 1100px) {
    .c-block--type05 .c-block__box-right {
        margin-top: 3.2vw;
    }
}
.c-block--type06 .c-block__box-outer {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
}
@media screen and (max-width: 1100px) {
    .c-block--type06 .c-block__box-outer {
        flex-direction: column;
        margin-top: 3.4666666667vw;
    }
}
.c-block--type06 .c-block__box-right {
    flex-shrink: 0;
    width: 475px;
}
@media screen and (max-width: 1100px) {
    .c-block--type06 .c-block__box-right {
        width: 100%;
        margin-top: 3.2vw;
    }
}
.c-block--type07 .c-block__box-outer {
    display: grid;
    grid-template: auto/repeat(2, 1fr);
    gap: 30px;
}
@media screen and (max-width: 1100px) {
    .c-block--type07 .c-block__box-outer {
        gap: 5.3333333333vw;
        grid-template: auto/repeat(1, 1fr);
        margin-top: 3.4666666667vw;
    }
}
.c-block--type07 .c-block__box {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    width: 475px;
}
@media screen and (max-width: 1100px) {
    .c-block--type07 .c-block__box {
        row-gap: 3.4666666667vw;
        width: 100%;
    }
}
.c-block--type08 .c-block__box-outer {
    display: grid;
    grid-template: auto/repeat(4, 1fr);
    gap: 30px;
}
@media screen and (max-width: 1100px) {
    .c-block--type08 .c-block__box-outer {
        grid-template: auto/repeat(2, 1fr);
        gap: 3.4666666667vw;
        margin-top: 3.7333333333vw;
    }
}
.c-block--type08 .c-block__box {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    width: 222.5px;
}
@media screen and (max-width: 1100px) {
    .c-block--type08 .c-block__box {
        row-gap: 3.2vw;
        width: 37.6vw;
    }
}

/* ---------------------------------------------
*   c-block-movies
--------------------------------------------- */
.c-block-movies {
    margin-top: 61px;
}
@media screen and (max-width: 1100px) {
    .c-block-movies {
        margin-top: 8vw;
    }
}
.c-block-movies__img {
    position: relative;
    width: 100%;
    aspect-ratio: 346/196;
}
.c-block-movies__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
.c-block-movies__img::after {
    content: "";
    position: absolute;
    top: 52%;
    left: 50%;
    width: 75px;
    height: 75px;
    background: url(/themes/green-tec/img/movies/icon-play.svg) 0 0 no-repeat;
    background-size: 100% auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
@media screen and (max-width: 1100px) {
    .c-block-movies__img::after {
        width: 20vw;
        height: 20vw;
    }
}
.c-block-movies__inner {
    display: grid;
    gap: 35px 30px;
    grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1100px) {
    .c-block-movies__inner {
        gap: 6.9333333333vw 0;
        grid-template-columns: 1fr;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-block-movies__link {
        transition: opacity 300ms;
    }
    .c-block-movies__link:hover {
        opacity: 0.4;
    }
}
@media screen and (max-width: 1100px) {
    .c-block-movies__item img {
        display: block;
        width: 100%;
    }
}
.c-block-movies__txt {
    margin-top: 9px;
    font-size: 0.875rem;
    font-weight: 700;
}
@media screen and (max-width: 1100px) {
    .c-block-movies__txt {
        margin-top: 1.0666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-block-movies__txt {
        font-size: 0.875rem;
    }
}

/* ---------------------------------------------
*   c-block-popup
--------------------------------------------- */
.c-block-popup {
    text-align: center;
    width: 640px;
    margin-inline: auto;
    position: relative;
}
@media screen and (max-width: 767px) {
    .c-block-popup {
        width: 90%;
    }
    .c-block-popup iframe {
        width: 100%;
    }
}
.c-block-popup .mfp-close {
    transform: translateX(100%);
}
.c-block-popup .mfp-close:active {
    top: 0;
}
@media screen and (max-width: 767px) {
    .c-block-popup .mfp-close {
        transform: translate(80%, 90%);
    }
}

/* ---------------------------------------------
*   c-block-4
--------------------------------------------- */
.c-block-4__item:nth-of-type(n + 2) {
    margin-top: 90px;
}
@media screen and (max-width: 1100px) {
    .c-block-4__item:nth-of-type(n + 2) {
        margin-top: 12.2666666667vw;
    }
}
.c-block-4__head {
    text-align: center;
    color: #008CA3;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-block-4__head {
        font-size: 1.125rem;
        line-height: 1.3888888889;
        letter-spacing: 0.1em;
    }
}
.c-block-4__br {
    display: none;
}
@media screen and (max-width: 1100px) {
    .c-block-4__br {
        display: block;
    }
}
.c-block-4__body {
    display: flex;
    -moz-column-gap: 39px;
         column-gap: 39px;
    margin-top: 20px;
}
@media screen and (max-width: 1100px) {
    .c-block-4__body {
        flex-direction: column;
        row-gap: 6.1333333333vw;
        margin-top: 6.1333333333vw;
    }
}
.c-block-4__img {
    flex-shrink: 0;
}
.c-block-4__img img {
    max-width: 530px;
    border-radius: 10px;
}
@media screen and (max-width: 1100px) {
    .c-block-4__img img {
        display: block;
        width: 100%;
        max-width: none;
        border-radius: 1.3333333333vw;
    }
}
.c-block-4__txt {
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
.c-block-4__txt b,
.c-block-4__txt strong {
    font-weight: bold;
}
.c-block-4__txt a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-block-4__txt a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-block-4__txt a {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-block-5
--------------------------------------------- */
.c-block-5__item {
    padding-block: 31px 21px;
    background-color: #F8F7F7;
    border-radius: 10px;
}
@media screen and (max-width: 1100px) {
    .c-block-5__item {
        padding-block: 4vw 1.6vw;
    }
}
.c-block-5__item:nth-of-type(n + 2) {
    margin-top: 40px;
}
@media screen and (max-width: 1100px) {
    .c-block-5__item:nth-of-type(n + 2) {
        margin-top: 12.8vw;
    }
}
.c-block-5__head {
    text-align: center;
    color: #008CA3;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-block-5__head {
        font-size: 1.125rem;
        line-height: 1.3888888889;
        letter-spacing: 0.1em;
    }
}
.c-block-5__br {
    display: none;
}
@media screen and (max-width: 1100px) {
    .c-block-5__br {
        display: block;
    }
}
.c-block-5__body {
    margin: 30px auto 0;
    padding-inline: 40px;
    max-width: 996px;
}
@media screen and (max-width: 1100px) {
    .c-block-5__body {
        margin-top: 3.2vw;
        padding-inline: 5.0666666667vw;
    }
}

/* ---------------------------------------------
*   c-block-flow
--------------------------------------------- */
.c-block-flow {
    max-width: 500px;
    margin-inline: auto;
    width: 100%;
    margin-top: 53px;
}
@media screen and (max-width: 767px) {
    .c-block-flow {
        max-width: none;
        margin-top: 9.0666666667vw;
    }
}
.c-block-flow__note {
    display: block;
    font-size: 1rem;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-block-flow__note {
        font-size: 3.4666666667vw;
        text-align: left;
    }
}
.c-block-flow__btn {
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #48A5B5;
    border-radius: 10px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
    color: #fff;
    margin-top: 54px;
}
@media (hover: hover) and (pointer: fine) {
    .c-block-flow__btn {
        transition: opacity 300ms;
    }
    .c-block-flow__btn:hover {
        opacity: 0.4;
    }
}
@media screen and (max-width: 767px) {
    .c-block-flow__btn {
        padding: 6.1333333333vw;
        margin-top: 9.6vw;
        border-radius: 1.3333333333vw;
    }
}
.c-block-flow__btn-txt {
    position: relative;
    padding-left: 44px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-block-flow__btn-txt {
        padding-left: 11.7333333333vw;
        font-size: 3.2vw;
        letter-spacing: 0.05em;
    }
}
.c-block-flow__btn-txt::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 24px;
    aspect-ratio: 1/1;
    background: url(../img/flow/icon_email.svg) 0 0 no-repeat;
    background-size: cover;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-block-flow__btn-txt::before {
        width: 6.4vw;
        transform: translateY(-50%);
    }
}
.c-block-flow__pdf {
    margin-top: 68px;
}
@media screen and (max-width: 767px) {
    .c-block-flow__pdf {
        margin-top: 9.0666666667vw;
    }
}
.c-block-flow__pdf-item {
    margin-top: 24px;
}
@media screen and (max-width: 767px) {
    .c-block-flow__pdf-item {
        margin-top: 4.5333333333vw;
    }
}
.c-block-flow__link {
    position: relative;
    padding-right: 32px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    color: #48A5B5;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .c-block-flow__link:hover {
        text-decoration: none;
    }
}
@media screen and (max-width: 767px) {
    .c-block-flow__link {
        padding-right: 4.8vw;
        font-size: 3.4666666667vw;
    }
}
.c-block-flow__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 30px;
    aspect-ratio: 30/34;
    background: url(../img/flow/icon_pdf.svg) 0 0 no-repeat;
    background-size: cover;
    transform: translateY(-68%);
}
@media screen and (max-width: 767px) {
    .c-block-flow__link::after {
        width: 5.0666666667vw;
        transform: translateY(-71%);
    }
}

/* ---------------------------------------------
*   c-box-1
--------------------------------------------- */
.c-box-1 {
    padding-top: 1px;
    margin-top: 40px;
}
@media screen and (max-width: 1100px) {
    .c-box-1 {
        margin-top: 5.3333333333vw;
    }
}
.c-box-1__inner {
    display: flex;
    align-items: center;
    padding: 16px 40px 16px 50px;
    border-radius: 10px;
    background: #F6F9F9;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1100px) {
    .c-box-1__inner {
        flex-direction: column;
        width: 100%;
        padding: 2.4vw 4vw 3.2vw;
        border-radius: 1.3333333333vw;
        box-shadow: 0.2666666667vw 0.5333333333vw 1.6vw 0px rgba(0, 0, 0, 0.08);
    }
}
.c-box-1__ttl {
    text-align: center;
    margin-right: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #008CA3;
    flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
    .c-box-1__ttl {
        margin: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-box-1__ttl {
        font-size: 0.875rem;
        font-weight: 400;
        letter-spacing: 0.05em;
    }
}

/* ---------------------------------------------
*   c-box-2
--------------------------------------------- */
.c-box-2 {
    border-radius: 10px;
    background-color: #EAEAEA;
}
@media screen and (max-width: 1100px) {
    .c-box-2 {
        border-radius: 2.6666666667vw;
    }
}
.c-box-2__inner {
    display: flex;
    align-items: center;
    padding: 20px 30px;
}
@media screen and (max-width: 1100px) {
    .c-box-2__inner {
        display: block;
        padding: 3.4666666667vw 5.3333333333vw 5.3333333333vw;
    }
}
.c-box-2__ttl {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.09em;
}
@media screen and (max-width: 1100px) {
    .c-box-2__ttl {
        display: flex;
        justify-content: center;
    }
}
@media screen and (max-width: 767px) {
    .c-box-2__ttl {
        font-size: 1rem;
    }
}

/* ---------------------------------------------
*   c-box-3
--------------------------------------------- */
.c-box-3 {
    width: 100%;
}
.c-box-3__img {
    display: block;
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1100px) {
    .c-box-3__img {
        display: block;
    }
}
.c-box-3__img img {
    border-radius: 10px;
}
@media screen and (max-width: 1100px) {
    .c-box-3__img img {
        display: block;
        width: 100%;
        border-radius: 1.3333333333vw;
    }
}
.c-box-3__txt {
    margin-top: 23px;
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 1100px) {
    .c-box-3__txt {
        margin-top: 5.3333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-box-3__txt {
        font-size: 0.875rem;
        letter-spacing: -0.03em;
    }
}

/* ---------------------------------------------
*   c-box-4
--------------------------------------------- */
@media screen and (max-width: 1100px) {
    .c-box-4 {
        margin-top: -1.0666666667vw;
    }
}
.c-box-4__item {
    display: flex;
}
@media screen and (max-width: 767px) {
    .c-box-4__item {
        font-size: 0.8125rem;
        font-weight: 400;
        line-height: 2.3076923077;
    }
}
.c-box-4__ttl {
    display: block;
    flex-shrink: 0;
    width: 178px;
    padding-right: 20px;
}
@media screen and (max-width: 1100px) {
    .c-box-4__ttl {
        width: 30.1333333333vw;
    }
}
.c-box-4__txt {
    display: block;
    width: 100%;
}
@media screen and (max-width: 1100px) {
    .c-box-4__txt--small {
        display: block;
        margin: -0.8vw 0 0 -2.1333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-box-4__txt--small {
        margin-top: -2.1333333333vw;
        font-size: 0.6875rem;
        line-height: 1.3636363636;
    }
}

/* ---------------------------------------------
*   c-box-5
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .c-box-5 {
        margin-top: 1.3333333333vw;
    }
    .c-box-5 .c-box-4__item + .c-box-4__item {
        margin-top: 1.6vw;
    }
}

/* ---------------------------------------------
*   c-box-6
--------------------------------------------- */
@media screen and (max-width: 1100px) {
    .c-box-6__img img {
        display: block;
        width: 100%;
    }
}
.c-box-6__txt {
    margin-top: 25px;
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 1100px) {
    .c-box-6__txt {
        margin-top: 5.6vw;
    }
}
@media screen and (max-width: 767px) {
    .c-box-6__txt {
        font-size: 0.875rem;
        letter-spacing: -0.03em;
    }
}

/* ---------------------------------------------
*   c-btn-01
--------------------------------------------- */
.c-btn-01__link {
    border-radius: 10px;
    width: 100%;
    height: 72px;
    background: #48A5B5;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
}
.c-btn-01__link--back {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1100px) {
    .c-btn-01__link {
        height: 13.8666666667vw;
        border-radius: 2.6666666667vw;
        box-shadow: 0.5333333333vw 1.0666666667vw 3.2vw 0px rgba(0, 0, 0, 0.08);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-01__link {
        transition: opacity 300ms;
    }
    .c-btn-01__link:hover {
        opacity: 0.4;
    }
}
.c-btn-01__txt {
    color: #FFF;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.c-btn-01__txt--back {
    color: #48A5B5;
}
@media screen and (max-width: 767px) {
    .c-btn-01__txt {
        font-size: 1rem;
    }
}

/* ---------------------------------------------
*   c-btn-02
--------------------------------------------- */
.c-btn-02 {
    display: block;
    margin-top: 51px;
}
@media screen and (max-width: 1100px) {
    .c-btn-02 {
        margin-top: 9.3333333333vw;
    }
    .c-btn-02--404 {
        margin-top: 8vw;
    }
}
.c-btn-02 .c-btn-01__link {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---------------------------------------------
*   c-btn-03
--------------------------------------------- */
.c-btn-03 {
    border-radius: 10px;
    display: block;
    aspect-ratio: 1702/388;
    width: 100%;
    position: relative;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-btn-03 {
        transition: opacity 300ms;
    }
    .c-btn-03:hover {
        opacity: 0.4;
    }
}
@media screen and (max-width: 767px) {
    .c-btn-03 {
        aspect-ratio: 670/240;
    }
}
.c-btn-03 img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
@media screen and (max-width: 767px) {
    .c-btn-03 {
        border-radius: 2.6666666667vw;
    }
}
.c-btn-03::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 123, 137, 0.6);
    border-radius: 10px;
}
@media screen and (max-width: 767px) {
    .c-btn-03::after {
        border-radius: 2.6666666667vw;
    }
}
.c-btn-03__txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 1rem;
    font-weight: bold;
}
@media screen and (max-width: 1100px) {
    .c-btn-03__txt {
        width: 100%;
        padding-inline: 5.3333333333vw;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .c-btn-03__txt {
        font-size: 0.875rem;
    }
}

/* ---------------------------------------------
*   c-card-1
--------------------------------------------- */
.c-card-1__body {
    margin-top: 20px;
    padding: 0 10px;
}
.c-card-1__ttl {
    color: #008CA3;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.c-card-1__txt {
    margin-top: 10px;
    font-size: 0.875rem;
    line-height: 1.8571428571;
}

/* ---------------------------------------------
*   c-card-service
--------------------------------------------- */
.c-card-service {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
@media screen and (max-width: 1100px) {
    .c-card-service {
        flex-direction: column;
        gap: 5.3333333333vw;
    }
}
.c-card-service__item {
    width: calc(50% - 20px);
    background-color: #F6F9F9;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
    .c-card-service__item {
        transition: opacity 300ms;
    }
    .c-card-service__item:hover {
        opacity: 0.4;
    }
}
@media screen and (max-width: 1100px) {
    .c-card-service__item {
        width: 100%;
        border-radius: 2.6666666667vw;
    }
}
.c-card-service__head {
    position: relative;
    aspect-ratio: 1050/337;
    width: 100%;
}
@media screen and (max-width: 1100px) {
    .c-card-service__head {
        aspect-ratio: 670/260;
    }
}
.c-card-service__head img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
.c-card-service__head::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 123, 137, 0.2);
    border-radius: 10px;
}
@media screen and (max-width: 1100px) {
    .c-card-service__head::after {
        border-radius: 2.6666666667vw;
    }
}
.c-card-service__body {
    padding: 23px 30px 24px;
}
@media screen and (max-width: 1100px) {
    .c-card-service__body {
        padding: 3.4666666667vw 5.3333333333vw;
    }
}
.c-card-service__ttl {
    font-size: 1.25rem;
    font-weight: bold;
    color: #008CA3;
}
@media screen and (max-width: 767px) {
    .c-card-service__ttl {
        font-size: 1rem;
    }
}
.c-card-service__desc {
    font-size: 1rem;
    line-height: 1.625;
    margin-top: 13px;
}
@media screen and (max-width: 1100px) {
    .c-card-service__desc {
        margin-top: 1.8666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-card-service__desc {
        font-size: 0.8125rem;
        line-height: 1.6923076923;
    }
}
.c-card-service__txt {
    color: #008CA3;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 19px;
}
@media screen and (max-width: 1100px) {
    .c-card-service__txt {
        margin-top: 2.1333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-card-service__txt {
        font-size: 0.875rem;
    }
}

/* ---------------------------------------------
*   c-card-2
--------------------------------------------- */
.c-card-2 {
    display: block;
    width: 100%;
}
@media (hover: hover) and (pointer: fine) {
    .c-card-2 {
        transition: opacity 300ms;
    }
    .c-card-2:hover {
        opacity: 0.4;
    }
}
.c-card-2__inner {
    display: flex;
}
@media screen and (max-width: 1100px) {
    .c-card-2__inner {
        flex-direction: column;
        border-radius: 2.6666666667vw;
    }
}
.c-card-2__img {
    flex-shrink: 0;
    width: 620px;
    position: relative;
    aspect-ratio: 620/170;
}
@media screen and (max-width: 1100px) {
    .c-card-2__img {
        aspect-ratio: 335/100;
    }
}
.c-card-2__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1100px) {
    .c-card-2__img img {
        border-radius: 2.6666666667vw 2.6666666667vw 0 0;
    }
}
.c-card-2__img::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 123, 137, 0.15);
    border-radius: 10px 0 0 10px;
    z-index: 1;
}
@media screen and (max-width: 1100px) {
    .c-card-2__img::after {
        border-radius: 2.6666666667vw 2.6666666667vw 0 0;
    }
}
@media screen and (max-width: 1100px) {
    .c-card-2__img {
        width: 100%;
    }
    .c-card-2__img img {
        display: block;
        width: 100%;
    }
}
.c-card-2__body {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-inline: 90px 70px;
    width: 100%;
    background-color: #48A5B5;
    border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 1100px) {
    .c-card-2__body {
        justify-content: start;
        padding: 0 5.3333333333vw;
        height: 19.4666666667vw;
        border-radius: 0 0 2.6666666667vw 2.6666666667vw;
    }
}
.c-card-2__txt {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    z-index: 10;
}
@media screen and (max-width: 767px) {
    .c-card-2__txt {
        font-size: 0.9375rem;
        line-height: 1.4666666667;
        letter-spacing: -0.02em;
    }
}
@media screen and (max-width: 1100px) {
    .c-card-2__br {
        display: none;
    }
}

/* ---------------------------------------------
*   c-card-3
--------------------------------------------- */
.c-card-3 {
    padding: 33px 31px 31px;
    background-color: #F6F9F9;
    border-radius: 10px;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1100px) {
    .c-card-3 {
        padding: 6.1333333333vw 5.3333333333vw 5.8666666667vw;
        border-radius: 2.6666666667vw;
    }
}
.c-card-3__ttl {
    display: block;
    color: #48A5B5;
    font-size: 1.25rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .c-card-3__ttl {
        font-size: 1rem;
        letter-spacing: -0.03em;
    }
}
.c-card-3__img {
    display: block;
    margin-top: 11px;
}
@media screen and (max-width: 1100px) {
    .c-card-3__img {
        margin-top: 4vw;
    }
    .c-card-3__img img {
        display: block;
        width: 100%;
    }
}
.c-card-3__txt {
    margin-top: 13px;
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 1100px) {
    .c-card-3__txt {
        margin-top: 3.7333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-card-3__txt {
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.7857142857;
        letter-spacing: -0.03em;
    }
}

/* ---------------------------------------------
*   c-cassette-model
--------------------------------------------- */
.c-cassette-model {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-top: 92px;
}
@media screen and (max-width: 1100px) {
    .c-cassette-model {
        flex-direction: column;
        row-gap: 7.7333333333vw;
        margin-top: 13.6vw;
    }
}
.c-cassette-model__item {
    width: 535px;
    background-color: #F6F9F9;
    border-radius: 10px;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
    padding: 21px 30px 30px;
    display: grid;
    grid-template-rows: auto 1fr;
    row-gap: 22px;
}
@media screen and (max-width: 1100px) {
    .c-cassette-model__item {
        width: 100%;
        padding: 6.1333333333vw 5.3333333333vw 8.2666666667vw;
        row-gap: 0;
        border-radius: 2.6666666667vw;
    }
}
.c-cassette-model__ttl {
    font-size: 1.375rem;
    color: #008CA3;
    margin-bottom: 22px;
    letter-spacing: 0.1em;
    text-align: center;
}
@media screen and (max-width: 1100px) {
    .c-cassette-model__ttl {
        margin-bottom: 3.7333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-cassette-model__ttl {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
}
.c-cassette-model__img {
    aspect-ratio: 950/456;
    width: 100%;
}
@media screen and (max-width: 1100px) {
    .c-cassette-model__img {
        aspect-ratio: 584/270;
    }
}
.c-cassette-model__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
@media screen and (max-width: 1100px) {
    .c-cassette-model__body {
        margin-top: 3.4666666667vw;
    }
}
.c-cassette-model__desc {
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
    .c-cassette-model__desc {
        font-size: 0.875rem;
        line-height: 1.8571428571;
        letter-spacing: -0.03em;
    }
}
.c-cassette-model__desc b,
.c-cassette-model__desc strong {
    font-weight: bold;
}
.c-cassette-model__desc a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-cassette-model__desc a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-cassette-model__desc a {
        text-decoration: underline;
    }
}
@media screen and (max-width: 1100px) {
    .c-cassette-model__foot {
        margin-top: 2.9333333333vw;
    }
}

/* ---------------------------------------------
*   c-cassette-1
--------------------------------------------- */
.c-cassette-1__foot {
    margin-top: 61px;
}
@media screen and (max-width: 1100px) {
    .c-cassette-1__foot {
        margin-top: 13.6vw;
    }
}

/* ---------------------------------------------
*   c-cassette-2
--------------------------------------------- */
.c-cassette-2__body {
    margin-top: 65px;
}
@media screen and (max-width: 1100px) {
    .c-cassette-2__body {
        margin-top: 6.4vw;
    }
}
.c-cassette-2__foot {
    margin-top: 254px;
}
@media screen and (max-width: 1100px) {
    .c-cassette-2__foot {
        margin-top: 68vw;
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form-select
--------------------------------------------- */
.c-form-select {
    flex-shrink: 0;
    position: relative;
    margin-left: 28px;
    width: 343px;
    height: 50px;
}
@media screen and (max-width: 1100px) {
    .c-form-select {
        margin-top: 1.0666666667vw;
        margin-left: 0;
        width: 100%;
        height: 10.6666666667vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-form-select {
        transition: opacity 300ms;
    }
    .c-form-select:hover {
        opacity: 0.4;
    }
}
.c-form-select::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 9px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: 51%;
    right: 30px;
    transform: translateY(-51%);
    pointer-events: none;
}
@media screen and (max-width: 1100px) {
    .c-form-select::after {
        width: 4vw;
        height: 2.1333333333vw;
        right: 3.2vw;
    }
}
.c-form-select__select {
    padding: 0 30px;
    width: 100%;
    height: 100%;
    background-color: rgba(67, 80, 67, 0.5);
    border-radius: 10px;
    color: #fff;
    font-size: 0.875rem;
    position: relative;
    outline: 0;
}
@media screen and (max-width: 1100px) {
    .c-form-select__select {
        padding: 0 2.6666666667vw 0 5.3333333333vw;
        border-radius: 1.3333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-form-select__select {
        font-size: 0.875rem;
    }
}

/* ---------------------------------------------
*   c-form-search
--------------------------------------------- */
.c-form-search {
    margin-left: 30px;
    width: 100%;
}
@media screen and (max-width: 1100px) {
    .c-form-search {
        margin-top: 2.6666666667vw;
        margin-left: 0;
        width: 100%;
    }
}
.c-form-search__box {
    display: flex;
    justify-content: space-between;
    position: relative;
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding-inline: 30px;
    height: 50px;
    border-radius: 10px;
    background-color: #fff;
}
@media screen and (max-width: 1100px) {
    .c-form-search__box {
        padding: 0 3.2vw 0 5.3333333333vw;
        -moz-column-gap: 2.6666666667vw;
             column-gap: 2.6666666667vw;
        width: 100%;
        height: 10.6666666667vw;
        border-radius: 1.3333333333vw;
    }
}
.c-form-search__input {
    width: 100%;
    height: 100%;
    outline: 0;
    font-size: 0.875rem;
    color: #435043;
}
@media screen and (max-width: 767px) {
    .c-form-search__input {
        font-size: 0.875rem;
    }
}
.c-form-search__input::-moz-placeholder {
    color: #435043;
}
.c-form-search__input::placeholder {
    color: #435043;
}
.c-form-search__input::-moz-placeholder {
    opacity: 1;
}
.c-form-search__submit-btn img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 1100px) {
    .c-form-search__submit-btn {
        width: 5.8666666667vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-form-search__submit-btn {
        transition: opacity 300ms;
    }
    .c-form-search__submit-btn:hover {
        opacity: 0.4;
    }
}

/* ---------------------------------------------
*   c-form-contact
--------------------------------------------- */
.c-form-contact {
    margin: 60px 0 120px;
    padding: 51px 0 60px 0;
    border-radius: 10px;
    background-color: #F6F9F9;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1100px) {
    .c-form-contact {
        margin: 8vw 0 16vw;
        padding: 6.9333333333vw 0 10.9333333333vw;
        border-radius: 2.6666666667vw;
        box-shadow: 0.5333333333vw 1.0666666667vw 3.2vw 0px rgba(0, 0, 0, 0.08);
    }
}
@media screen and (max-width: 1100px) {
    .c-form-contact--confirm .c-form-contact__box {
        margin-top: 0;
    }
}
.c-form-contact--confirm .c-form-contact__box:nth-of-type(n + 2) {
    margin-top: 64px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact--confirm .c-form-contact__box:nth-of-type(n + 2) {
        margin-top: 9.8666666667vw;
    }
}
.c-form-contact--confirm .c-form-contact__item {
    align-items: flex-end;
    margin-top: 37px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact--confirm .c-form-contact__item {
        margin-top: 0;
    }
}
.c-form-contact--confirm .c-form-contact__item:nth-of-type(n + 2) {
    margin-top: 51px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact--confirm .c-form-contact__item:nth-of-type(n + 2) {
        margin-top: 5.3333333333vw;
    }
}
.c-form-contact--confirm .c-form-contact__item .c-form-contact__head {
    margin-top: 0;
    width: 225px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact--confirm .c-form-contact__item .c-form-contact__head {
        width: 100%;
    }
}
@media screen and (max-width: 1100px) {
    .c-form-contact--confirm .c-form-contact__item .c-form-contact__cat-outer {
        padding: 0.5333333333vw 2.4vw;
    }
}
@media screen and (max-width: 1100px) {
    .c-form-contact--confirm .c-form-contact__item .c-form-contact__body {
        display: flex;
        align-items: flex-end;
        margin-top: 1.3333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-form-contact--confirm .c-form-contact__item .c-form-contact__body {
        font-size: 1rem;
    }
}
.c-form-contact__inner {
    padding: 0 80px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__inner {
        padding: 0 5.3333333333vw;
    }
}
.c-form-contact__box:nth-of-type(n + 2) {
    margin-top: 52px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__box:nth-of-type(n + 2) {
        margin-top: 11.7333333333vw;
    }
}
.c-form-contact__item {
    position: relative;
    padding-bottom: 2px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__item {
        display: block;
        margin-top: 2.9333333333vw;
        padding-bottom: 0;
    }
}
.c-form-contact__item:nth-of-type(n + 2) {
    margin-top: 30px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__item:nth-of-type(n + 2) {
        margin-top: 4.8vw;
    }
}
.c-form-contact__head {
    display: flex;
    align-items: center;
    margin-top: 11px;
    padding-right: 10px;
    width: 200px;
    flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__head {
        padding-right: 0;
        width: 100%;
    }
}
.c-form-contact__cat-outer {
    padding: 6px 9px;
    border-radius: 5px;
    background-color: #C0C0C0;
    flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__cat-outer {
        padding: 0.5333333333vw 2.4vw 0.2666666667vw;
        border-radius: 0.5333333333vw;
    }
}
.c-form-contact__cat-outer--required {
    background-color: #B1464D;
}
.c-form-contact__cat {
    display: block;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__cat {
        letter-spacing: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-form-contact__cat {
        font-size: 0.625rem;
    }
}
.c-form-contact__ttl {
    margin-left: 10px;
    font-size: 1.125rem;
    font-weight: 700;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__ttl {
        margin-left: 1.6vw;
    }
}
@media screen and (max-width: 767px) {
    .c-form-contact__ttl {
        font-size: 1rem;
    }
}
.c-form-contact__error {
    position: absolute;
    bottom: 0;
    left: 211px;
    margin-left: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #B1464D;
    transform: translateY(100%);
}
@media screen and (max-width: 1100px) {
    .c-form-contact__error {
        position: relative;
        bottom: auto;
        left: auto;
        margin-left: 2.6666666667vw;
        transform: translateY(0);
    }
}
@media screen and (max-width: 767px) {
    .c-form-contact__error {
        font-size: 0.625rem;
    }
}
.c-form-contact__body {
    max-width: 100%;
    width: 78.6666666667vw;
    font-size: 1.125rem;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__body {
        margin-top: 1.3333333333vw;
    }
}
.c-form-contact__body-inner {
    display: flex;
    align-items: center;
}
.c-form-contact__input-outer {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__input-outer {
        -moz-column-gap: 1.3333333333vw;
             column-gap: 1.3333333333vw;
    }
}
.c-form-contact__input-outer + .c-form-contact__input-outer {
    margin-left: 10px;
}
.c-form-contact__input {
    padding: 0 20px;
    width: 100%;
    height: 50px;
    outline: 0;
    border-radius: 10px;
    background-color: #fff;
    color: #435043;
    font-size: 0.875rem;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__input {
        padding: 0 2.6666666667vw;
        height: 10.6666666667vw;
        border-radius: 2.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-form-contact__input {
        font-size: 0.875rem;
    }
}
.c-form-contact__input::-moz-placeholder {
    color: #969696;
    font-size: 0.875rem;
}
.c-form-contact__input::placeholder {
    color: #969696;
    font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
    .c-form-contact__input::-moz-placeholder {
        font-size: 0.875rem;
    }
    .c-form-contact__input::placeholder {
        font-size: 0.875rem;
    }
}
.c-form-contact__input::-moz-placeholder {
    opacity: 1;
}
.c-form-contact__input--small {
    width: 75px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__input--small {
        width: 12.2666666667vw;
    }
}
@media screen and (max-width: 1100px) {
    .c-form-contact__input--large {
        width: 17.3333333333vw;
    }
}
.c-form-contact__select-outer {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__select-outer {
        -moz-column-gap: 1.3333333333vw;
             column-gap: 1.3333333333vw;
    }
}
.c-form-contact__select-outer + .c-form-contact__select-outer {
    margin-left: 10px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__select-outer + .c-form-contact__select-outer {
        margin-left: 1.3333333333vw;
    }
}
.c-form-contact__select {
    text-align: center;
    padding: 0 20px 0 10px;
    width: 75px;
    height: 50px;
    outline: 0;
    box-sizing: border-box;
    border-radius: 10px;
    color: #435043;
    font-size: 0.875rem;
    background: #fff url("/img/contact/icon_1.svg") right 10px center/10px auto no-repeat;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__select {
        padding: 0 4.2666666667vw 0 2.1333333333vw;
        width: 12.2666666667vw;
        height: 10.6666666667vw;
        border-radius: 2.6666666667vw;
        background: #fff url("/img/contact/icon_1.svg") right 2.1333333333vw center/2.1333333333vw auto no-repeat;
    }
}
@media screen and (max-width: 767px) {
    .c-form-contact__select {
        font-size: 0.875rem;
    }
}
.c-form-contact__select::-moz-placeholder {
    color: #969696;
    font-size: 0.875rem;
}
.c-form-contact__select::placeholder {
    color: #969696;
    font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
    .c-form-contact__select::-moz-placeholder {
        font-size: 0.875rem;
    }
    .c-form-contact__select::placeholder {
        font-size: 0.875rem;
    }
}
.c-form-contact__select::-moz-placeholder {
    opacity: 1;
}
.c-form-contact__txt {
    font-size: 1.125rem;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .c-form-contact__txt {
        font-size: 0.875rem;
    }
}
.c-form-contact__txt--space {
    margin: 0 20px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__txt--space {
        margin: 0 1.3333333333vw;
    }
}
.c-form-contact__textarea {
    padding: 15px 20px;
    height: 150px;
}
@media screen and (max-width: 1100px) {
    .c-form-contact__textarea {
        padding: 2.6666666667vw;
        height: 25.3333333333vw;
    }
}
.c-form-contact__check-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em 1em;
}
.c-form-contact__check-list-item + .c-form-contact__check-list-item {
    position: relative;
}
.c-form-contact__check-list-item + .c-form-contact__check-list-item::before {
    content: "・";
    position: absolute;
    top: 50%;
    left: -1em;
    display: block;
    transform: translateY(-50%);
}

/* ---------------------------------------------
*   c-form-checkbox-wrap
--------------------------------------------- */
.c-form-checkbox-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 13px;
}
@media screen and (max-width: 767px) {
    .c-form-checkbox-wrap {
        gap: 4vw;
        margin-top: 0;
    }
}

/*  .c-form-checkbox
--------------------------------------------- */
.c-form-checkbox {
    position: relative;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-form-checkbox {
        transition: opacity 300ms;
    }
    .c-form-checkbox:hover {
        opacity: 0.4;
    }
}
.c-form-checkbox__input {
    position: absolute;
    inset: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline-offset: 8px;
    border-radius: 4px;
}
.c-form-checkbox__input:checked + .c-form-checkbox__txt::before {
    background-color: #48A5B5;
    border-color: #48A5B5;
}
.c-form-checkbox__txt {
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 27px;
    font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
    .c-form-checkbox__txt {
        padding-left: 4.8vw;
        font-size: 1rem;
    }
}
.c-form-checkbox__txt::before, .c-form-checkbox__txt::after {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
    transform: translateY(-50%);
}
.c-form-checkbox__txt::before {
    left: 0;
    width: 21px;
    aspect-ratio: 1/1;
    border: 1px solid #D3D3D3;
    background-color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 767px) {
    .c-form-checkbox__txt::before {
        width: 4vw;
        border-radius: 0.5333333333vw;
    }
}
.c-form-checkbox__txt::after {
    left: 5px;
    width: 11px;
    aspect-ratio: 11/8;
    background: url(../img/contact/icon_check.svg) 0 0 no-repeat;
    background-size: 100% auto;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-form-checkbox__txt::after {
        left: 0.8vw;
        width: 2.1333333333vw;
    }
}

/*  c-form-note
--------------------------------------------- */
.c-form-note {
    display: block;
    color: #797979;
    font-size: 1.0625rem;
    margin-top: 11px;
}
@media screen and (max-width: 767px) {
    .c-form-note {
        font-size: 1rem;
        margin-top: 0.8vw;
    }
}

/*  c-file-upload
--------------------------------------------- */
.c-file-upload {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
@media screen and (max-width: 767px) {
    .c-file-upload {
        gap: 2.6666666667vw;
    }
}

/*  c-file-name
--------------------------------------------- */
.c-file-name {
    font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
    .c-file-name {
        font-size: 0.875rem;
    }
}

/*  c-file-label
--------------------------------------------- */
.c-file-label {
    display: inline-block;
    border-radius: 5px;
    background-color: #919191;
    padding: 16px 20px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-file-label {
        transition: opacity 300ms;
    }
    .c-file-label:hover {
        opacity: 0.4;
    }
}
@media screen and (max-width: 767px) {
    .c-file-label {
        padding: 3.4666666667vw;
        font-size: 0.875rem;
    }
}

/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv-1
--------------------------------------------- */
.c-kv-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 219px;
    background: url(/themes/green-tec/img/service/engineeringsolutions/top_img.jpg) center center no-repeat;
    background-size: cover;
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.05);
    position: relative;
}
.c-kv-1--support {
    background: url(/themes/green-tec/img/service/qualitysupport/top_img.jpg) center center no-repeat;
    background-size: cover;
}
.c-kv-1--contract {
    background: url(/themes/green-tec/img/service/contract/top_img.jpg) center center no-repeat;
    background-size: cover;
}
.c-kv-1--il {
    background: url(/themes/green-tec/img/service/intranetlogistics/top_img.jpg) center center no-repeat;
    background-size: cover;
}
.c-kv-1--detail {
    background: url(/themes/green-tec/img/offices/id/img_kv.jpg) center center no-repeat;
    background-size: cover;
}
@media screen and (max-width: 1100px) {
    .c-kv-1 {
        height: 75px;
        background: url(/themes/green-tec/img/service/engineeringsolutions/sp/top_img.jpg) center center no-repeat;
        background-size: cover;
        box-shadow: 1.3333333333vw 1.3333333333vw 4vw 0px rgba(0, 0, 0, 0.05);
    }
    .c-kv-1--support {
        background: url(/themes/green-tec/img/service/qualitysupport/sp/top_img.jpg) center center no-repeat;
        background-size: cover;
    }
    .c-kv-1--contract {
        background: url(/themes/green-tec/img/service/contract/sp/top_img.jpg) center center no-repeat;
        background-size: cover;
    }
    .c-kv-1--il {
        background: url(/themes/green-tec/img/service/intranetlogistics/sp/top_img.jpg) center center no-repeat;
        background-size: cover;
    }
    .c-kv-1--detail {
        background: url(/themes/green-tec/img/offices/id/sp/img_kv.jpg) center center no-repeat;
        background-size: cover;
    }
}
@media screen and (max-width: 767px) {
    .c-kv-1 {
        height: 20vw;
    }
}
.c-kv-1::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 74, 81, 0.7);
}
.c-kv-1__txt {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-kv-1__txt {
        font-size: 1.125rem;
    }
}

/* ---------------------------------------------
*   c-kv-2
--------------------------------------------- */
.c-kv-2 {
    margin: 61px auto 0;
    padding-inline: 20px;
    max-width: 1240px;
}
@media screen and (max-width: 1100px) {
    .c-kv-2 {
        margin-top: 8.2666666667vw;
        width: 100%;
    }
}
.c-kv-2__img img {
    display: block;
    width: 100%;
}
.c-kv-2__txt {
    margin-top: 22px;
    padding-inline: 50px;
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 1100px) {
    .c-kv-2__txt {
        margin-top: 5.8666666667vw;
        padding-inline: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-kv-2__txt {
        font-size: 0.875rem;
        letter-spacing: -0.03em;
    }
}
.c-kv-2__txt b,
.c-kv-2__txt strong {
    font-weight: bold;
}
.c-kv-2__txt a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-kv-2__txt a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-kv-2__txt a {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-link-01
--------------------------------------------- */
.c-link-01 {
    display: flex;
    width: 100%;
    border-radius: 10px;
    background-color: #48A5B5;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1100px) {
    .c-link-01 {
        border-radius: 1.3333333333vw;
    }
}
.c-link-01__link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    width: 100%;
    height: 72px;
}
@media screen and (max-width: 1100px) {
    .c-link-01__link {
        height: 17.0666666667vw;
        -moz-column-gap: 5.3333333333vw;
             column-gap: 5.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-link-01__link {
        transition: opacity 300ms;
    }
    .c-link-01__link:hover {
        opacity: 0.4;
    }
}
.c-link-01__ico img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 1100px) {
    .c-link-01__ico {
        width: 6.4vw;
    }
}
.c-link-01__txt {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}
@media screen and (max-width: 1100px) {
    .c-link-01__txt {
        display: flex;
        align-items: center;
    }
}
@media screen and (max-width: 767px) {
    .c-link-01__txt {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }
}

/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1 {
    width: 100%;
    margin-block: auto;
}
.c-list-1__item {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
}
@media screen and (max-width: 1100px) {
    .c-list-1__item {
        align-items: center;
        width: 100%;
        -moz-column-gap: 3.4666666667vw;
             column-gap: 3.4666666667vw;
        margin-top: 2.1333333333vw;
    }
}
.c-list-1__item:nth-of-type(n + 2) {
    margin-top: 5px;
    padding-top: 7px;
    border-top: 1px solid #DEECDE;
}
@media screen and (max-width: 1100px) {
    .c-list-1__item:nth-of-type(n + 2) {
        margin-top: 2.4vw;
        padding-top: 2.6666666667vw;
    }
}
.c-list-1__date {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #008CA3;
}
@media screen and (max-width: 767px) {
    .c-list-1__date {
        font-size: 0.625rem;
        letter-spacing: 0.05em;
    }
}
.c-list-1__txt {
    font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
    .c-list-1__txt {
        font-size: 0.625rem;
        line-height: 1.4;
    }
}
.c-list-1__txt-link,
.c-list-1 a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-list-1__txt-link:hover,
    .c-list-1 a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-list-1__txt-link,
    .c-list-1 a {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-list-2
--------------------------------------------- */
.c-list-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media screen and (max-width: 1100px) {
    .c-list-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.6666666667vw 4vw;
    }
}
.c-list-2__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    row-gap: 8px;
    height: 136px;
    border-radius: 10px;
    background: #F6F9F9;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
}
@media (hover: hover) and (pointer: fine) {
    .c-list-2__link {
        transition: opacity 300ms;
    }
    .c-list-2__link:hover {
        opacity: 0.4;
    }
}
@media screen and (min-width: 1101px) and (orientation: landscape) and (max-height: 768px) {
    .c-list-2__link {
        height: 98px;
        margin-inline: auto;
    }
}
@media screen and (min-width: 1101px) and (orientation: landscape) and (min-height: 768px) and (max-height: 856px) {
    .c-list-2__link {
        height: 13.4345794393vh;
    }
}
@media screen and (max-width: 1100px) {
    .c-list-2__link {
        row-gap: 1.3333333333vw;
        height: 18.9333333333vw;
        box-shadow: 0.2666666667vw 0.5333333333vw 1.6vw 0px rgba(0, 0, 0, 0.08);
    }
}
@media screen and (min-width: 1101px) and (orientation: landscape) and (max-height: 856px) {
    .c-list-2__img {
        transform: scale(0.8333333333);
    }
}
.c-list-2__img--1 {
    width: 45px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--1 {
        width: 5.8666666667vw;
    }
}
.c-list-2__img--2 {
    width: 56px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--2 {
        width: 6.9333333333vw;
    }
}
.c-list-2__img--3 {
    width: 34px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--3 {
        width: 4.2666666667vw;
    }
}
.c-list-2__img--4 {
    width: 55px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--4 {
        width: 6.4vw;
    }
}
.c-list-2__img--5 {
    width: 50px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--5 {
        width: 6.4vw;
    }
}
.c-list-2__img--6 {
    width: 50px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--6 {
        width: 6.4vw;
    }
}
.c-list-2__img--7 {
    width: 50px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--7 {
        width: 6.4vw;
    }
}
.c-list-2__img--8 {
    width: 50px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--8 {
        width: 6.4vw;
    }
}
.c-list-2__img--9 {
    width: 30px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--9 {
        width: 3.7333333333vw;
    }
}
.c-list-2__img--10 {
    width: 49px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--10 {
        width: 6.4vw;
    }
}
.c-list-2__img--11 {
    width: 46px;
}
@media screen and (max-width: 1100px) {
    .c-list-2__img--11 {
        width: 5.8666666667vw;
    }
}
.c-list-2__img img {
    display: block;
    width: 100%;
}
.c-list-2__txt {
    margin-bottom: 24px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #008CA3;
}
@media screen and (min-width: 1101px) and (orientation: landscape) and (max-height: 856px) {
    .c-list-2__txt {
        margin-bottom: 5%;
    }
}
@media screen and (max-width: 1100px) {
    .c-list-2__txt {
        margin-bottom: 2.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-2__txt {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }
}

/* ---------------------------------------------
*   c-list-3
--------------------------------------------- */
.c-list-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 21px;
    gap: 30px 25px;
}
@media screen and (max-width: 1100px) {
    .c-list-3 {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3.7333333333vw;
        gap: 5.6vw 2.9333333333vw;
    }
}
.c-list-3__item {
    border-radius: 10px;
    overflow: hidden;
    background-color: #F6F9F9;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1100px) {
    .c-list-3__item {
        width: 43.2vw;
        border-radius: 2.6666666667vw;
        box-shadow: 0.5333333333vw 1.0666666667vw 3.2vw 0px rgba(0, 0, 0, 0.08);
    }
}
.c-list-3__img {
    width: 100%;
    height: 150px;
}
.c-list-3__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 1100px) {
    .c-list-3__img {
        height: 25.6vw;
    }
    .c-list-3__img img {
        display: block;
        border-radius: 2.6666666667vw 2.6666666667vw 0 0;
    }
}
.c-list-3__body {
    padding: 13px 20px 24px;
}
@media screen and (max-width: 1100px) {
    .c-list-3__body {
        padding: 2.1333333333vw 2.6666666667vw 3.4666666667vw;
    }
}
.c-list-3__name {
    color: #008CA3;
    font-size: 1rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .c-list-3__name {
        font-size: 0.875rem;
    }
}
.c-list-3__ttl {
    margin-top: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}
@media screen and (max-width: 1100px) {
    .c-list-3__ttl {
        margin-top: 0.5333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-3__ttl {
        font-size: 0.8125rem;
        font-weight: 400;
        line-height: 1.8461538462;
        letter-spacing: -0.03em;
        font-feature-settings: "palt";
    }
}
.c-list-3__txt {
    margin-top: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6428571429;
}
@media screen and (max-width: 1100px) {
    .c-list-3__txt {
        margin-top: 0.5333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-3__txt {
        font-size: 0.8125rem;
        font-weight: 400;
        line-height: 1.6923076923;
        letter-spacing: -0.03em;
    }
}

/* ---------------------------------------------
*   c-list-4
--------------------------------------------- */
.c-list-4 {
    margin-top: 60px;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 30px;
    column-gap: 30px;
    -moz-row-gap: 35px;
    row-gap: 35px;
}
@media screen and (max-width: 1100px) {
    .c-list-4 {
        grid-template-columns: repeat(2, 1fr);
        -moz-row-gap: 30px;
        row-gap: 30px;
    }
}
@media screen and (max-width: 767px) {
    .c-list-4 {
        grid-template-columns: repeat(1, 1fr);
        -moz-row-gap: 6.6666666667vw;
        row-gap: 6.6666666667vw;
        margin-top: 7.7333333333vw;
    }
}
.c-list-4__img {
    display: block;
    aspect-ratio: 346/196;
}
.c-list-4__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
.c-list-4__head {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    margin-top: 16px;
}
@media screen and (max-width: 767px) {
    .c-list-4__head {
        margin-top: 4vw;
        -moz-column-gap: 1.8666666667vw;
             column-gap: 1.8666666667vw;
    }
}
.c-list-4__cat-outer {
    padding: 6px 10px;
    border-radius: 5px;
    width: calc(10em + 20px);
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .c-list-4__cat-outer {
        padding: 1.0666666667vw 2.6666666667vw;
        width: calc(10em + 5.3333333333vw);
        border-radius: 1.3333333333vw;
        font-size: 0.625rem;
    }
}
.c-list-4__cat-outer--colored-01 {
    background: #B1464D;
}
.c-list-4__cat-outer--colored-02 {
    background: #CEB42D;
}
.c-list-4__cat-outer--colored-03 {
    background: #3274B1;
}
.c-list-4__cat-outer--colored-04 {
    background: #408C3F;
}
.c-list-4__cat-outer--colored-05 {
    background: #774E9F;
}
.c-list-4__cat {
    display: block;
    color: #fff;
}
.c-list-4__date {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-list-4__date {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }
}
.c-list-4__txt {
    margin-top: 8px;
    font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
    .c-list-4__txt {
        margin-top: 1.3333333333vw;
        font-size: 0.8125rem;
    }
}
.c-list-4__txt-link {
    color: #48A5B5;
    font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-4__txt-link:hover {
        text-decoration: underline;
    }
}
.c-list-4__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-4__link {
        transition: opacity 300ms;
    }
    .c-list-4__link:hover {
        opacity: 0.4;
    }
}
.c-list-4__link .c-list-4__cat-outer {
    width: -moz-fit-content;
    width: fit-content;
}

/* ---------------------------------------------
*   c-list-5
--------------------------------------------- */
.c-list-5 {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 12px;
         column-gap: 12px;
}
@media screen and (max-width: 1100px) {
    .c-list-5 {
        flex-wrap: wrap;
        justify-content: space-between;
        -moz-column-gap: 0;
             column-gap: 0;
    }
}
.c-list-5__item {
    width: 260px;
}
@media screen and (max-width: 1100px) {
    .c-list-5__item {
        display: block;
        width: calc(50% - 1.3333333333vw);
    }
    .c-list-5__item:nth-of-type(n + 3) {
        margin-top: 5.3333333333vw;
    }
}
.c-list-5__img {
    width: 100%;
    aspect-ratio: 260/180;
}
.c-list-5__img img {
    display: block;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    border-radius: 10px;
}
@media screen and (max-width: 1100px) {
    .c-list-5__img img {
        border-radius: 1.3333333333vw;
    }
}
.c-list-5__txt {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4375;
}
@media screen and (max-width: 1100px) {
    .c-list-5__txt {
        margin-top: 2.1333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-5__txt {
        font-size: 0.875rem;
        line-height: 1.5714285714;
    }
}

/* ---------------------------------------------
*   c-list-6
--------------------------------------------- */
.c-list-6__item {
    display: flex;
    padding-bottom: 32px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #DEECDE;
}
@media screen and (max-width: 1100px) {
    .c-list-6__item {
        padding-bottom: 6.4vw;
    }
}
.c-list-6__item + .c-list-6__item {
    padding-top: 33px;
}
@media screen and (max-width: 1100px) {
    .c-list-6__item + .c-list-6__item {
        padding-top: 6.4vw;
    }
}
.c-list-6__item::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: "";
    width: 240px;
    height: 1px;
    background-color: #008CA3;
}
@media screen and (max-width: 1100px) {
    .c-list-6__item::after {
        width: 18.6666666667vw;
    }
}
.c-list-6__head {
    flex-shrink: 0;
    padding-left: 41px;
    width: 240px;
    color: #008CA3;
    font-weight: 500;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
    .c-list-6__head {
        padding-left: 0;
        width: 18.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-6__head {
        font-size: 0.8125rem;
        letter-spacing: normal;
    }
}
.c-list-6__body {
    padding-left: 80px;
    width: 100%;
    font-weight: 500;
    line-height: 1.5625;
}
@media screen and (max-width: 1100px) {
    .c-list-6__body {
        padding-left: 2.9333333333vw;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .c-list-6__body {
        font-size: 0.8125rem;
        line-height: 1.5384615385;
    }
}
.c-list-6__body b,
.c-list-6__body strong {
    font-weight: bold;
}
.c-list-6__body a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-list-6__body a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-list-6__body a {
        text-decoration: underline;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-6__link {
        transition: opacity 300ms;
    }
    .c-list-6__link:hover {
        opacity: 0.4;
    }
}

/* ---------------------------------------------
*   c-list-7
--------------------------------------------- */
@media screen and (min-width: 1101px) {
    .c-list-7 {
        padding-bottom: 600px;
    }
}
.c-list-7__box:nth-of-type(n + 2) {
    margin-top: 29px;
}
@media screen and (max-width: 767px) {
    .c-list-7__box:nth-of-type(n + 2) {
        margin-top: 7.7333333333vw;
    }
}
.c-list-7__ttl {
    display: block;
    padding: 10px 30px;
    color: #48A5B5;
    background: rgba(237, 246, 248, 0.7);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
}
@media screen and (max-width: 1100px) {
    .c-list-7__ttl {
        padding: 2.1333333333vw 5.3333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-7__ttl {
        font-size: 1rem;
    }
}
.c-list-7__ttl::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    background-color: #48A5B5;
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.05);
    top: 0;
    left: 0;
}
@media screen and (max-width: 1100px) {
    .c-list-7__ttl::before {
        width: 1.3333333333vw;
    }
}
.c-list-7__inner {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 0 30px;
    row-gap: 18px;
}
@media screen and (max-width: 1100px) {
    .c-list-7__inner {
        flex-direction: column;
        padding: 0 5.3333333333vw;
        margin-top: 1.8666666667vw;
        row-gap: 1.3333333333vw;
    }
}
.c-list-7__item {
    padding-right: 15px;
    width: 50%;
}
@media screen and (max-width: 1100px) {
    .c-list-7__item {
        padding-right: 0;
        width: 100%;
    }
}
.c-list-7__link {
    position: relative;
    padding-left: 22px;
    display: block;
}
@media screen and (max-width: 767px) {
    .c-list-7__link {
        padding-left: 4vw;
        font-size: 0.875rem;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-7__link {
        transition: opacity 300ms;
    }
    .c-list-7__link:hover {
        opacity: 0.4;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-7__link::before {
        transition: background-color 300ms;
    }
    .c-list-7__link:hover::before {
        background-color: #B65258;
    }
}
.c-list-7__link::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 15px;
    -webkit-mask: url(/themes/green-tec/img/offices/icon_1.svg) 0 center no-repeat;
            mask: url(/themes/green-tec/img/offices/icon_1.svg) 0 center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
    background-color: #48A5B5;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-list-7__link::before {
        width: 2.6666666667vw;
        height: 3.4666666667vw;
    }
}

/* ---------------------------------------------
*   c-list-8
--------------------------------------------- */
.c-list-8 {
    background-color: #F8F7F7;
    border-top: 1px solid #D1D1D1;
    border-right: 1px solid #D1D1D1;
}
.c-list-8__list {
    display: flex;
    border-bottom: 1px solid #D1D1D1;
    border-left: 1px solid #D1D1D1;
}
.c-list-8__list-term {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 90px;
    background-color: #EFEFEF;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 2.1428571429;
}
@media screen and (max-width: 1100px) {
    .c-list-8__list-term {
        width: 17.6vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-8__list-term {
        font-size: 0.875rem;
    }
}
.c-list-8__list-desc {
    padding: 14px 20px;
    line-height: 1.4285714286;
    font-size: 0.875rem;
}
@media screen and (max-width: 1100px) {
    .c-list-8__list-desc {
        padding: 2.1333333333vw 2.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-8__list-desc {
        font-size: 0.875rem;
        line-height: 1.5714285714;
        letter-spacing: -0.03em;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-8__list-link {
        transition: opacity 300ms;
    }
    .c-list-8__list-link:hover {
        opacity: 0.4;
    }
}

/* ---------------------------------------------
*   c-list-9
--------------------------------------------- */
.c-list-9 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 850px;
    background-color: #F8F7F7;
    border-top: 1px solid #D1D1D1;
    border-right: 1px solid #D1D1D1;
}
@media screen and (max-width: 1100px) {
    .c-list-9 {
        display: block;
    }
}
.c-list-9__item {
    padding: 15px 30px;
    width: 50%;
    font-size: 0.875rem;
    line-height: 1.3571428571;
    border-bottom: 1px solid #D1D1D1;
    border-left: 1px solid #D1D1D1;
}
@media screen and (max-width: 1100px) {
    .c-list-9__item {
        padding: 4vw 5.0666666667vw;
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-list-feature
--------------------------------------------- */
.c-list-feature {
    width: 851px;
    margin: 22px auto 0;
}
@media screen and (max-width: 1100px) {
    .c-list-feature {
        width: 100%;
        margin-top: 3.7333333333vw;
    }
}
.c-list-feature__item {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-bottom: 30px;
}
@media screen and (max-width: 1100px) {
    .c-list-feature__item {
        flex-direction: column;
        row-gap: 3.4666666667vw;
        margin-bottom: 8.2666666667vw;
    }
}
.c-list-feature__item:last-child {
    margin-bottom: 0;
}
.c-list-feature__icon {
    width: 140px;
    height: 140px;
}
.c-list-feature__icon img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    border-radius: 100%;
}
@media screen and (max-width: 1100px) {
    .c-list-feature__icon {
        width: 26.6666666667vw;
        height: 26.6666666667vw;
    }
}
.c-list-feature__desc {
    width: 681px;
}
@media screen and (max-width: 1100px) {
    .c-list-feature__desc {
        width: 90.4vw;
    }
}
.c-list-feature__sub-ttl {
    font-size: 1rem;
    color: #008CA3;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
@media screen and (max-width: 1100px) {
    .c-list-feature__sub-ttl {
        margin-bottom: 1.6vw;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .c-list-feature__sub-ttl {
        font-size: 1rem;
    }
}
.c-list-feature__txt {
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
    .c-list-feature__txt {
        font-size: 0.875rem;
    }
}
.c-list-feature__txt b,
.c-list-feature__txt strong {
    font-weight: bold;
}
.c-list-feature__txt a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-list-feature__txt a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-list-feature__txt a {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-list-element
--------------------------------------------- */
.c-list-element {
    margin: 28px auto 0;
}
@media screen and (max-width: 1100px) {
    .c-list-element {
        margin-top: 5.3333333333vw;
    }
}
.c-list-element__item {
    background-color: #F8F7F7;
    width: 851px;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #D1D1D1;
    border-right: 1px solid #D1D1D1;
    margin-inline: auto;
}
@media screen and (max-width: 1100px) {
    .c-list-element__item {
        width: 100%;
    }
}
.c-list-element__ttl, .c-list-element__txt {
    border-bottom: 1px solid #D1D1D1;
}
.c-list-element__ttl {
    text-align: center;
    padding: 10px 5px;
    width: 109px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 2.1428571429;
    background-color: #EFEFEF;
    border-left: 1px solid #D1D1D1;
}
@media screen and (max-width: 1100px) {
    .c-list-element__ttl {
        display: flex;
        align-items: center;
        width: 20.2666666667vw;
        padding: 3.4666666667vw 0vw 3.4666666667vw 2.4vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-element__ttl {
        font-size: 0.875rem;
    }
}
.c-list-element__txt {
    width: calc(100% - 109px);
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.3571428571;
    padding: 10px 23px;
}
@media screen and (max-width: 1100px) {
    .c-list-element__txt {
        width: calc(100% - 20.2666666667vw);
        padding: 2.4vw 2.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-element__txt {
        font-size: 0.875rem;
    }
}
.c-list-element__txt b,
.c-list-element__txt strong {
    font-weight: bold;
}
.c-list-element__txt a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-list-element__txt a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-list-element__txt a {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-list-empha
--------------------------------------------- */
.c-list-empha__item {
    width: 100%;
    padding: 12px 20px;
    background-color: rgba(72, 165, 181, 0.1);
    border-radius: 10px;
    margin: 0 auto 10px;
}
@media screen and (max-width: 1100px) {
    .c-list-empha__item {
        padding: 1.8666666667vw 3.7333333333vw;
        border-radius: 2.6666666667vw;
        margin-bottom: 1.6vw;
    }
}
.c-list-empha__item:last-child {
    margin-bottom: 0;
}
.c-list-empha__txt {
    display: inline-block;
    color: #008CA3;
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
    .c-list-empha__txt {
        font-size: 0.875rem;
        line-height: 1.6428571429;
    }
}

/* ---------------------------------------------
*   c-list
--------------------------------------------- */
.c-list__item:last-child {
    margin-top: 20px;
}
@media screen and (max-width: 1100px) {
    .c-list__item:last-child {
        margin-top: 4.8vw;
    }
}
.c-list__head {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
    align-items: center;
}
@media screen and (max-width: 1100px) {
    .c-list__head {
        -moz-column-gap: 2.1333333333vw;
             column-gap: 2.1333333333vw;
    }
}
.c-list__ttl {
    font-size: 1rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .c-list__ttl {
        font-size: 0.9375rem;
    }
}
.c-list__icn--01 {
    width: 25px;
}
@media screen and (max-width: 1100px) {
    .c-list__icn--01 {
        width: 6.6666666667vw;
    }
}
.c-list__icn--02 {
    width: 17px;
}
@media screen and (max-width: 1100px) {
    .c-list__icn--02 {
        width: 4.5333333333vw;
    }
}
.c-list__icn img {
    display: block;
}
@media screen and (max-width: 1100px) {
    .c-list__icn img {
        width: 100%;
    }
}
.c-list__txt {
    font-size: 0.875rem;
    line-height: 2.1428571429;
    margin-top: 9px;
}
@media screen and (max-width: 1100px) {
    .c-list__txt {
        margin-top: 1.3333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list__txt {
        font-size: 0.875rem;
        line-height: 1.2142857143;
    }
}

/* ---------------------------------------------
*   c-list-10
--------------------------------------------- */
.c-list-10__item + .c-list-10__item {
    margin-top: 40px;
}
@media screen and (max-width: 1100px) {
    .c-list-10__item + .c-list-10__item {
        margin-top: 5.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-11
--------------------------------------------- */
.c-list-11__item {
    display: flex;
    -moz-column-gap: 48px;
         column-gap: 48px;
    padding-block: 12px;
    border-top: 1px solid #DEECDE;
}
@media screen and (max-width: 1100px) {
    .c-list-11__item {
        flex-direction: column;
        row-gap: 0;
        padding: 1.8666666667vw 0;
    }
}
.c-list-11__head {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
    .c-list-11__head {
        width: 100%;
    }
}
.c-list-11__icn {
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-list-11__icn {
        width: 10.9333333333vw;
    }
    .c-list-11__icn img {
        display: block;
        width: 100%;
    }
}
.c-list-11__ttl {
    margin-left: 11px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2.85;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-list-11__ttl {
        font-size: 1rem;
        line-height: 3.5625;
    }
}
.c-list-11__body {
    margin-top: 8px;
}
@media screen and (max-width: 767px) {
    .c-list-11__body {
        margin-top: 0;
    }
}
.c-list-11__select-outer {
    display: inline-block;
    padding: 3px 11px;
    background-color: #008CA3;
    border-radius: 5px;
}
@media screen and (max-width: 1100px) {
    .c-list-11__select-outer {
        padding: 1.3333333333vw 2.9333333333vw;
    }
}
.c-list-11__select {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 1100px) {
    .c-list-11__select {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .c-list-11__select {
        font-size: 0.875rem;
    }
}
.c-list-11__txt {
    display: block;
    margin-top: 9px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
}
.c-list-11__txt--strong {
    font-weight: 700;
}
@media screen and (max-width: 1100px) {
    .c-list-11__txt {
        width: 101%;
    }
}
@media screen and (max-width: 767px) {
    .c-list-11__txt {
        font-size: 0.875rem;
    }
}
.c-list-11__txt b,
.c-list-11__txt strong {
    font-weight: bold;
}
.c-list-11__txt a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-list-11__txt a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-list-11__txt a {
        text-decoration: underline;
    }
}
.c-list-11__br {
    display: none;
}
@media screen and (max-width: 1100px) {
    .c-list-11__br {
        display: block;
    }
}

/* ---------------------------------------------
*   c-list-12
--------------------------------------------- */
.c-list-12 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.c-list-12:nth-child(n+2) {
    margin-top: 60px;
}
@media screen and (max-width: 1100px) {
    .c-list-12:nth-child(n+2) {
        margin-top: 40px;
    }
}
@media screen and (max-width: 1100px) {
    .c-list-12 {
        flex-direction: column;
        row-gap: 40px;
    }
}
.c-list-12__item {
    width: calc(50% - 15px);
}
.c-list-12__item .c-card-3 {
    height: 100%;
}
@media screen and (max-width: 1100px) {
    .c-list-12__item {
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-list-flow
--------------------------------------------- */
.c-list-flow {
    max-width: 1100px;
    margin-inline: auto;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-list-flow {
        margin-top: 16vw;
    }
}
.c-list-flow__item {
    position: relative;
    min-height: 158px;
    display: flex;
    align-items: stretch;
    margin-left: 50px;
    border-radius: 10px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
    .c-list-flow__item {
        display: block;
        margin-left: 0;
        border-radius: 2.6666666667vw;
        box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    }
}
.c-list-flow__item + .c-list-flow__item {
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .c-list-flow__item + .c-list-flow__item {
        margin-top: 13.6vw;
    }
}
.c-list-flow__item + .c-list-flow__item::before {
    content: "";
    position: absolute;
    top: -37px;
    left: 47.6%;
    display: block;
    width: 24px;
    aspect-ratio: 24/15;
    background: url(../img/flow/icon_polygon.svg) 0 0 no-repeat;
    background-size: contain;
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .c-list-flow__item + .c-list-flow__item::before {
        top: -8vw;
        left: 50%;
        width: 6.6666666667vw;
    }
}
.c-list-flow__num {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: -50px;
    width: 100px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #00778A;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-list-flow__num {
        top: -8vw;
        left: 0;
        width: 16vw;
        transform: none;
    }
}
.c-list-flow__num-step {
    font-size: 1rem;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .c-list-flow__num-step {
        font-size: 2.9333333333vw;
    }
}
.c-list-flow__num-txt {
    font-size: 1.875rem;
    line-height: 1;
    margin-top: 3px;
}
@media screen and (max-width: 767px) {
    .c-list-flow__num-txt {
        font-size: 5.6vw;
        margin-top: 0;
    }
}
.c-list-flow__img {
    border-radius: 10px 0 0 10px;
    background-color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 38.0952380952%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-list-flow__img {
        padding: 3.4666666667vw 10.6666666667vw 3.4666666667vw 17.3333333333vw;
        border-radius: 2.6666666667vw 2.6666666667vw 0 0;
        width: 100%;
    }
}
.c-list-flow__img img {
    position: relative;
    width: 62.25%;
    margin-right: 12.5%;
    aspect-ratio: 249/143;
}
@media screen and (max-width: 767px) {
    .c-list-flow__img img {
        width: 100%;
        margin-right: 0;
    }
}
.c-list-flow__content {
    padding: 23px 50px;
    border-radius: 0 10px 10px 0;
    width: 61.9047619048%;
    flex-shrink: 0;
    background-color: #F6F9F9;
}
@media screen and (max-width: 767px) {
    .c-list-flow__content {
        padding: 5.8666666667vw 5.3333333333vw;
        width: 100%;
        border-radius: 0 0 2.6666666667vw 2.6666666667vw;
    }
}
.c-list-flow__term {
    color: #008CA3;
    font-size: 1.25rem;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .c-list-flow__term {
        font-size: 4.2666666667vw;
    }
}
.c-list-flow__desc {
    margin-top: 11px;
}
@media screen and (max-width: 767px) {
    .c-list-flow__desc {
        margin-top: 2.1333333333vw;
    }
}
.c-list-flow__txt {
    display: block;
    font-size: 1rem;
}
@media screen and (max-width: 767px) {
    .c-list-flow__txt {
        font-size: 3.4666666667vw;
        line-height: 1.6;
    }
}
.c-list-flow__txt + .c-list-flow__txt {
    margin-top: 2px;
}
@media screen and (max-width: 767px) {
    .c-list-flow__txt + .c-list-flow__txt {
        margin-top: 0.5333333333vw;
    }
}

/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
    margin: 29px 0 224px;
}
.is-top .c-section-1 {
    margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
    .c-section-1 {
        margin: 6.1333333333vw 0 21.3333333333vw;
    }
}
.c-section-1__link {
    margin: 40px auto 0;
    width: 500px;
}
@media screen and (max-width: 1100px) {
    .c-section-1__link {
        margin-top: 5.3333333333vw;
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-section-2
--------------------------------------------- */
.c-section-2__inner {
    margin: 60px auto 100px;
    max-width: 1100px;
}
@media screen and (max-width: 1100px) {
    .c-section-2__inner {
        margin: 8vw 0 16vw;
        width: 100%;
    }
}
.c-section-2__inner--company {
    margin-top: 53px;
}
@media screen and (max-width: 1100px) {
    .c-section-2__inner--company {
        margin-top: 6.6666666667vw;
    }
}
.c-section-2__inner--service {
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    .c-section-2__inner--service {
        margin-top: 5.6vw;
    }
}
.c-section-2__inner--member {
    margin-top: 51px;
}
@media screen and (max-width: 767px) {
    .c-section-2__inner--member {
        margin-top: 6.1333333333vw;
    }
}
.c-section-2__inner--offices {
    margin-top: 48px;
}
@media screen and (max-width: 767px) {
    .c-section-2__inner--offices {
        margin-top: 4.8vw;
    }
}
.c-section-2__inner--hreducation {
    margin-top: 82px;
}
@media screen and (max-width: 1100px) {
    .c-section-2__inner--hreducation {
        margin-top: 12vw;
    }
}
.c-section-2__link {
    margin: 60px auto 0;
    width: 500px;
}
@media screen and (max-width: 1100px) {
    .c-section-2__link {
        margin: 8vw auto 0;
        width: 78.6666666667vw;
    }
}
.c-section-2__link--training {
    margin-top: 100px;
}
@media screen and (max-width: 1100px) {
    .c-section-2__link--training {
        margin-top: 16.2666666667vw;
        width: 100%;
    }
}
.c-section-2__link--w500 {
    margin: 84px auto 0;
}
@media screen and (max-width: 1100px) {
    .c-section-2__link--w500 {
        margin: 10.6666666667vw auto 0;
    }
}
.c-section-2__link--w500 + .c-section-2__link--w500 {
    margin-top: 20px;
}
@media screen and (max-width: 1100px) {
    .c-section-2__link--w500 + .c-section-2__link--w500 {
        margin-top: 4vw;
    }
}
@media screen and (max-width: 1100px) {
    .c-section-2__link--confirm {
        margin-top: 9.0666666667vw;
    }
}
@media screen and (max-width: 1100px) {
    .c-section-2__link--hreducation {
        width: 100%;
    }
}
.c-section-2__ttl {
    text-align: center;
}

/* ---------------------------------------------
*   c-section-3
--------------------------------------------- */
.c-section-3 {
    margin-top: 81px;
}
@media screen and (max-width: 1100px) {
    .c-section-3 {
        margin-top: 10.9333333333vw;
    }
}
.c-section-3__ttl {
    text-align: center;
    margin-bottom: 21px;
    color: #008CA3;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
    .c-section-3__ttl {
        margin-bottom: 5.8666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-section-3__ttl {
        font-size: 1.125rem;
        line-height: 1.6666666667;
    }
}
.c-section-3__body {
    margin-top: 30px;
}
@media screen and (max-width: 1100px) {
    .c-section-3__body {
        margin-top: 12vw;
    }
}
.c-section-3__foot {
    margin-top: 84px;
}
@media screen and (max-width: 1100px) {
    .c-section-3__foot {
        margin-top: 12vw;
    }
}

/* ---------------------------------------------
*   c-section-4
--------------------------------------------- */
.c-section-4__inner {
    max-width: 800px;
    margin: 0 auto;
}
@media screen and (max-width: 1100px) {
    .c-section-4__inner {
        width: 80vw;
    }
}
.c-section-4__link {
    margin: 0 auto;
    width: 500px;
}
@media screen and (max-width: 1100px) {
    .c-section-4__link {
        width: 100%;
        max-width: 78.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-service
--------------------------------------------- */
.c-section-service {
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 1100px) {
    .c-section-service {
        width: 100%;
        padding: 0;
    }
}
.c-section-service__inner {
    margin-top: 60px;
    margin-bottom: 100px;
}
@media screen and (max-width: 1100px) {
    .c-section-service__inner {
        margin-top: 8vw;
        margin-bottom: 37.0666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-area
--------------------------------------------- */
.c-section-area__inner {
    width: 100%;
    margin-inline: auto;
}
@media screen and (max-width: 1100px) {
    .c-section-area__inner {
        width: 89.3333333333vw;
        margin-inline: auto;
    }
}
.c-section-area__foot {
    width: 1000px;
    margin: 91px auto 0 auto;
}
@media screen and (max-width: 1100px) {
    .c-section-area__foot {
        width: 89.3333333333vw;
        margin-top: 16vw;
    }
    .c-section-area__foot--solutions {
        margin-top: 13.8666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-model
--------------------------------------------- */
@media screen and (max-width: 1100px) {
    .c-section-model {
        width: 100%;
    }
}
.c-section-model__inner {
    width: 100%;
    margin-inline: auto;
}
.c-section-model__foot {
    width: 100%;
    margin: 90px auto 0;
}
@media screen and (max-width: 1100px) {
    .c-section-model__foot {
        width: 100%;
        margin-top: 14.1333333333vw;
    }
}
.c-section-model__link {
    width: 500px;
    margin: 100px auto 0;
}
@media screen and (max-width: 1100px) {
    .c-section-model__link {
        width: 78.6666666667vw;
        margin-top: 15.2vw;
    }
    .c-section-model__link--support {
        margin-top: 13.3333333333vw;
    }
    .c-section-model__link--contract {
        margin-top: 14.1333333333vw;
    }
}

/* ---------------------------------------------
*   c-section__link-02
--------------------------------------------- */
.c-section__link-02 {
    width: 851px;
    margin: 0 auto;
    margin-top: 30px;
}
@media screen and (max-width: 1100px) {
    .c-section__link-02 {
        width: 89.3333333333vw;
        margin-top: 8vw;
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
.c-tile {
    margin-bottom: 100px;
}
@media screen and (max-width: 1100px) {
    .c-tile {
        margin-bottom: 16vw;
    }
}
.c-tile__inner {
    width: 100%;
}
@media screen and (max-width: 1100px) {
    .c-tile__inner {
        width: 100%;
    }
}
.c-tile__list {
    display: flex;
    justify-content: center;
    gap: 10px;
}
@media screen and (max-width: 1100px) {
    .c-tile__list {
        gap: 0.8vw;
    }
}
.c-tile__link {
    position: relative;
    display: block;
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.05);
}
.c-tile__link::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(67, 80, 67, 0.6);
}
@media (hover: hover) and (pointer: fine) {
    .c-tile__link {
        transition: opacity 300ms;
    }
    .c-tile__link:hover {
        opacity: 0.4;
    }
}
.c-tile__txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-inline: 20px;
    z-index: 3;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 1100px) {
    .c-tile__txt {
        padding-inline: 1.3333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-tile__txt {
        font-size: 0.6875rem;
        letter-spacing: -0.03em;
    }
}

/* ---------------------------------------------
*   c-ttl-01
--------------------------------------------- */
.c-ttl-01 {
    text-align: center;
    margin-bottom: 19px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #008CA3;
}
@media screen and (max-width: 1100px) {
    .c-ttl-01 {
        margin-bottom: 2.1333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-01 {
        font-size: 1.125rem;
    }
}
.c-ttl-01--contact {
    margin-bottom: 25px;
    color: #48A5B5;
}
@media screen and (max-width: 1100px) {
    .c-ttl-01--contact {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-01--contact {
        font-size: 1rem;
    }
}
.c-ttl-01--confirm {
    margin-bottom: 35px;
    color: #48A5B5;
}
.c-ttl-01--confirm:nth-of-type(n + 2) {
    margin-top: 64px;
}
@media screen and (max-width: 1100px) {
    .c-ttl-01--confirm {
        margin-bottom: 2.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-01--confirm {
        font-size: 1rem;
    }
}
.c-ttl-01--service {
    margin-bottom: 23px;
}
@media screen and (max-width: 1100px) {
    .c-ttl-01--service {
        margin-bottom: 3.4666666667vw;
    }
}

/* ---------------------------------------------
*   c-ttl-02
--------------------------------------------- */
.c-ttl-02 {
    text-align: center;
    padding: 30px 0;
    background: #00778A;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
    .c-ttl-02 {
        padding: 3.4666666667vw 2.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-02 {
        font-size: 1.125rem;
    }
}

/* ---------------------------------------------
*   c-ttl-03
--------------------------------------------- */
.c-ttl-03 {
    position: relative;
}
.c-ttl-03::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #48A5B5;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.c-ttl-03__ttl {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    background-color: #fff;
    color: #48A5B5;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 10;
}
@media screen and (max-width: 1100px) {
    .c-ttl-03__ttl {
        padding-right: 2.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-03__ttl {
        font-size: 1.125rem;
    }
}
.c-ttl-03__ttl--id {
    padding-right: 1.6vw;
    background-color: #F6F9F9;
    font-size: 1.25rem;
    letter-spacing: normal;
}
@media screen and (max-width: 767px) {
    .c-ttl-03__ttl--id {
        font-size: 1rem;
        letter-spacing: -0.03em;
    }
}
@media screen and (max-width: 1100px) {
    .c-ttl-03__ttl--2column {
        padding-right: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-03__ttl--2column {
        letter-spacing: normal;
        line-height: 1.3125;
    }
}

/* ---------------------------------------------
*   c-ttl-04
--------------------------------------------- */
.c-ttl-04 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
    .c-ttl-04 {
        font-size: 1.125rem;
        letter-spacing: normal;
    }
}
.c-ttl-04__strong {
    color: #B1464D;
}
.c-ttl-04__strong--large {
    color: #B1464D;
    font-size: 2rem;
    letter-spacing: normal;
}
@media screen and (max-width: 767px) {
    .c-ttl-04__strong--large {
        font-size: 1.5625rem;
        letter-spacing: -0.02em;
    }
}

/* ---------------------------------------------
*   c-ttl-05
--------------------------------------------- */
.c-ttl-05 {
    padding-bottom: 20px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #008CA3;
    color: #008CA3;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.c-ttl-05--contract {
    margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
    .c-ttl-05 {
        margin-bottom: 5.3333333333vw;
        padding-bottom: 2.9333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-05 {
        font-size: 1.125rem;
        line-height: 1.6666666667;
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
.c-txt {
    margin-top: 22px;
    font-size: 0.875rem;
    line-height: 1.8571428571;
}
@media screen and (max-width: 1100px) {
    .c-txt {
        margin-top: 6.1333333333vw;
    }
}
@media screen and (max-width: 767px) {
    .c-txt {
        font-size: 0.875rem;
        letter-spacing: -0.03em;
        line-height: 1.8571428571;
    }
}
.c-txt b,
.c-txt strong {
    font-weight: bold;
}
.c-txt a {
    color: #008CA3;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .c-txt a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .c-txt a {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   p-top-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: #fff !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

/*  js-object-fit
--------------------------------------------- */
.js-object-fit {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
}

/*  js-hover-map-trigger
--------------------------------------------- */
@media screen and (min-width: 1101px) {
    .js-hover-map-trigger,
    .js-hover-map-trigger-2 {
        pointer-events: all;
        cursor: pointer;
        transition: fill ease 0.2s;
    }
    .js-hover-map-trigger.is-current,
    .js-hover-map-trigger-2.is-current {
        fill: #B65258;
    }
    .js-hover-map-trigger:hover,
    .js-hover-map-trigger-2:hover {
        fill: #B65258;
    }
    .js-hover-map-trigger-2 {
        pointer-events: none;
    }
    .js-hover-map-target.is-current::before {
        background-color: #B65258;
    }
}
@media print and (min-width: 768px), screen and (min-width: 768px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 767px), screen and (max-width: 767px) {
    .sp-hide {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 767px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 1.3333333333vw !important;
    }
    .mgt-sp--10 {
        margin-top: 2.6666666667vw !important;
    }
    .mgt-sp--15 {
        margin-top: 4vw !important;
    }
    .mgt-sp--20 {
        margin-top: 5.3333333333vw !important;
    }
    .mgt-sp--25 {
        margin-top: 6.6666666667vw !important;
    }
    .mgt-sp--30 {
        margin-top: 8vw !important;
    }
    .mgt-sp--35 {
        margin-top: 9.3333333333vw !important;
    }
    .mgt-sp--40 {
        margin-top: 10.6666666667vw !important;
    }
    .mgt-sp--45 {
        margin-top: 12vw !important;
    }
    .mgt-sp--50 {
        margin-top: 13.3333333333vw !important;
    }
    .mgt-sp--55 {
        margin-top: 14.6666666667vw !important;
    }
    .mgt-sp--60 {
        margin-top: 16vw !important;
    }
    .mgt-sp--65 {
        margin-top: 17.3333333333vw !important;
    }
    .mgt-sp--70 {
        margin-top: 18.6666666667vw !important;
    }
    .mgt-sp--75 {
        margin-top: 20vw !important;
    }
    .mgt-sp--80 {
        margin-top: 21.3333333333vw !important;
    }
    .mgt-sp--85 {
        margin-top: 22.6666666667vw !important;
    }
    .mgt-sp--90 {
        margin-top: 24vw !important;
    }
    .mgt-sp--95 {
        margin-top: 25.3333333333vw !important;
    }
    .mgt-sp--100 {
        margin-top: 26.6666666667vw !important;
    }
    .mgt-sp--105 {
        margin-top: 28vw !important;
    }
    .mgt-sp--110 {
        margin-top: 29.3333333333vw !important;
    }
    .mgt-sp--115 {
        margin-top: 30.6666666667vw !important;
    }
    .mgt-sp--120 {
        margin-top: 32vw !important;
    }
    .mgt-sp--125 {
        margin-top: 33.3333333333vw !important;
    }
    .mgt-sp--130 {
        margin-top: 34.6666666667vw !important;
    }
    .mgt-sp--135 {
        margin-top: 36vw !important;
    }
    .mgt-sp--140 {
        margin-top: 37.3333333333vw !important;
    }
    .mgt-sp--145 {
        margin-top: 38.6666666667vw !important;
    }
    .mgt-sp--150 {
        margin-top: 40vw !important;
    }
    .mgt-sp--155 {
        margin-top: 41.3333333333vw !important;
    }
    .mgt-sp--160 {
        margin-top: 42.6666666667vw !important;
    }
    .mgt-sp--165 {
        margin-top: 44vw !important;
    }
    .mgt-sp--170 {
        margin-top: 45.3333333333vw !important;
    }
    .mgt-sp--175 {
        margin-top: 46.6666666667vw !important;
    }
    .mgt-sp--180 {
        margin-top: 48vw !important;
    }
    .mgt-sp--185 {
        margin-top: 49.3333333333vw !important;
    }
    .mgt-sp--190 {
        margin-top: 50.6666666667vw !important;
    }
    .mgt-sp--195 {
        margin-top: 52vw !important;
    }
    .mgt-sp--200 {
        margin-top: 53.3333333333vw !important;
    }
    .mgt-sp--205 {
        margin-top: 54.6666666667vw !important;
    }
    .mgt-sp--210 {
        margin-top: 56vw !important;
    }
    .mgt-sp--215 {
        margin-top: 57.3333333333vw !important;
    }
    .mgt-sp--220 {
        margin-top: 58.6666666667vw !important;
    }
    .mgt-sp--225 {
        margin-top: 60vw !important;
    }
    .mgt-sp--230 {
        margin-top: 61.3333333333vw !important;
    }
    .mgt-sp--235 {
        margin-top: 62.6666666667vw !important;
    }
    .mgt-sp--240 {
        margin-top: 64vw !important;
    }
    .mgt-sp--245 {
        margin-top: 65.3333333333vw !important;
    }
    .mgt-sp--250 {
        margin-top: 66.6666666667vw !important;
    }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 767px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 1.3333333333vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 2.6666666667vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 4vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 5.3333333333vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 6.6666666667vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 8vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 9.3333333333vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 10.6666666667vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 12vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 13.3333333333vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 14.6666666667vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 16vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 17.3333333333vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 18.6666666667vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 20vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 21.3333333333vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 22.6666666667vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 24vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 25.3333333333vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 26.6666666667vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 28vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 29.3333333333vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 30.6666666667vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 32vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 33.3333333333vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 34.6666666667vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 36vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 37.3333333333vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 38.6666666667vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 40vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 41.3333333333vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 42.6666666667vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 44vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 45.3333333333vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 46.6666666667vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 48vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 49.3333333333vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 50.6666666667vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 52vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 53.3333333333vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 54.6666666667vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 56vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 57.3333333333vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 58.6666666667vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 60vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 61.3333333333vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 62.6666666667vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 64vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 65.3333333333vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 66.6666666667vw !important;
    }
}