@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    height: calc(var(--fixed-header-height) * 1px);
    background-color: gray;
}

/* ---------------------------------------------
*   l-header-nav
--------------------------------------------- */
.l-header-nav {
    display: none;
}

.l-global-nav {
    display: none;
}

/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    overflow: hidden;
}
.l-contents sup {
    display: inline-block;
    transform: scale(0.8) translate(-0.3rem, 0.2rem);
}
@media screen and (max-width: 767px) {
    .l-contents sup {
        transform: scale(0.8) translate(-4.8px, 3.2px);
    }
}
.l-contents sub {
    display: inline-block;
    transform: scale(0.8) translate(-0.1rem, -0.2rem);
}
@media screen and (max-width: 767px) {
    .l-contents sub {
        transform: scale(0.8) translate(-1.4px, -1.5px);
    }
}

/* ---------------------------------------------
*   l-container
--------------------------------------------- */
.l-container {
    padding-inline: calc(var(--contents-side-padding) * 1px);
    max-width: calc(var(--contents-width) * 1px + var(--contents-side-padding) * 2px);
    width: 100%;
    margin-inline: auto;
}
.l-container .l-container {
    margin-left: 0;
}

@media screen and (max-width: 767px) {
    .l-container {
        padding-inline: calc(var(--contents-side-padding) * 1px);
        max-width: none;
    }
}
.l-container .l-container {
    padding-inline: 0;
}

.l-container--pi {
    padding-inline: calc(var(--contents-side-padding) * 1px);
    max-width: calc(var(--contents-width) * 1px + var(--contents-side-padding) * 2px);
}
@media screen and (max-width: 767px) {
    .l-container--pi {
        max-width: none;
    }
}

/* ---------------------------------------------
*   l-container-small
--------------------------------------------- */
.l-container-small {
    max-width: 644px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .l-container-small {
        max-width: none;
    }
}

/* ---------------------------------------------
*   l-container-large
--------------------------------------------- */
.l-container-large {
    max-width: 1920px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .l-container-large {
        max-width: none;
    }
}
.l-container-large--pi0 {
    padding-inline: 0;
}

/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    background-color: gray;
}

/* ---------------------------------------------
*   c-acc
--------------------------------------------- */
.c-acc {
    padding-block: calc(32 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-3);
}
@media screen and (max-width: 767px) {
    .c-acc {
        padding-block: 32px;
    }
}
.c-acc__head {
    position: relative;
    width: 100%;
    padding-right: calc(38 / var(--root-fz) * 1rem);
    text-align: left;
    touch-action: manipulation;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-acc__head {
        transition: opacity var(--hover-duration);
    }
    .c-acc__head:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .c-acc__head {
        padding-right: 38px;
    }
}
.c-acc__head::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: calc(22 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_arrow2_up_line.svg) 0 0 no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_arrow2_up_line.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
    background-color: var(--color-base-1);
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
    .c-acc__head::before {
        width: 22px;
    }
}
.is-open .c-acc__head::before {
    transform: translateY(-50%);
}

.c-acc__body-inner {
    padding: calc(32 / var(--root-fz) * 1rem) calc(16 / var(--root-fz) * 1rem) calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-acc__body-inner {
        padding: 32px 16px 8px;
    }
}

/*  c-acc-wrap
--------------------------------------------- */
.c-acc-wrap {
    border-top: 1px solid var(--color-gray-3);
}

/* ---------------------------------------------
*   c-bg
--------------------------------------------- */
.c-bg {
    position: relative;
    width: 100%;
    height: 320px;
}
@media screen and (max-width: 767px) {
    .c-bg {
        height: 144px;
    }
}
.c-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background-color: var(--color-gray-3);
}

/* ---------------------------------------------
*   c-bg-gray
--------------------------------------------- */
.c-bg-gray {
    position: relative;
    padding-block: 48px;
    width: 100%;
    background-color: var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .c-bg-gray {
        padding-block: 32px;
    }
}
.c-bg-gray::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background-color: var(--color-gray-4);
}
.c-bg-gray__container {
    position: relative;
}

/* ---------------------------------------------
*   c-block-interview
--------------------------------------------- */
.c-block-interview__head {
    position: relative;
    padding-left: calc(56 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-interview__head {
        padding-left: 40px;
    }
}
@media screen and (min-width: 768px) {
    .l-container-small .c-block-interview__head {
        padding-left: calc(40 / var(--root-fz) * 1rem);
    }
}

.c-block-interview__head::before {
    content: "";
    position: absolute;
    top: calc(13 / var(--root-fz) * 1rem);
    left: 0;
    display: block;
    width: calc(48 / var(--root-fz) * 1rem);
    height: 1px;
    background-color: var(--color-base-1);
}
@media screen and (max-width: 767px) {
    .c-block-interview__head::before {
        top: 13px;
        width: 32px;
    }
}
@media screen and (min-width: 768px) {
    .l-container-small .c-block-interview__head::before {
        width: calc(32 / var(--root-fz) * 1rem);
    }
}

.c-block-interview__body {
    margin-top: calc(46 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-interview__body {
        margin-top: 30px;
    }
}
.c-block-interview__item + .c-block-interview__item {
    margin-top: calc(46 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-interview__item + .c-block-interview__item {
        margin-top: 30px;
    }
}
.c-block-interview__name {
    color: var(--color-red-1);
}
.c-block-interview__name--blue {
    color: var(--color-blue-2);
}
.c-block-interview__name--purple {
    color: var(--color-purple-1);
}
.c-block-interview__name--green {
    color: var(--color-green-1);
}
.c-block-interview__name--yellow {
    color: var(--color-yellow-1);
}

/* ---------------------------------------------
*   c-block-quote
--------------------------------------------- */
.c-block-quote {
    padding: calc(16 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem);
    border: 1px solid var(--color-base-1);
}
@media screen and (max-width: 767px) {
    .c-block-quote {
        padding: 16px 20px;
    }
}
.c-block-quote > * + * {
    margin-top: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-quote > * + * {
        margin-top: 8px;
    }
}

/* ---------------------------------------------
*   c-block-1
--------------------------------------------- */
.c-block-1 {
    padding: calc(32 / var(--root-fz) * 1rem);
    background-color: var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .c-block-1 {
        padding: 32px 24px;
    }
}
.c-block-1 > * + * {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-1 > * + * {
        margin-top: 16px;
    }
}
.c-block-1 .l-container-small > * + * {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-1 .l-container-small > * + * {
        margin-top: 16px;
    }
}
.c-block-1 .c-btn-1 {
    background-color: var(--color-gray-5);
}
.c-block-1--wh {
    background-color: var(--color-white-1);
}
.c-block-1--wh .c-btn-1 {
    background-color: var(--color-white-1);
}

/* ---------------------------------------------
*   c-block-spacer
--------------------------------------------- */
.c-block-spacer--8 {
    height: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-spacer--8 {
        height: 8px;
    }
}
.c-block-spacer--16 {
    height: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-spacer--16 {
        height: 16px;
    }
}
.c-block-spacer--24 {
    height: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-spacer--24 {
        height: 24px;
    }
}
.c-block-spacer--32 {
    height: calc(32 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-spacer--32 {
        height: 32px;
    }
}
.c-block-spacer--48 {
    height: calc(48 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-spacer--48 {
        height: 48px;
    }
}
.c-block-spacer--64 {
    height: calc(64 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-spacer--64 {
        height: 64px;
    }
}
.c-block-spacer--80 {
    height: calc(80 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-spacer--80 {
        height: 80px;
    }
}
.c-block-spacer--120 {
    height: calc(120 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-block-spacer--120 {
        height: 120px;
    }
}

/* ---------------------------------------------
*   c-block-2
--------------------------------------------- */
.c-block-2 {
    padding: 24px 28px;
    background-color: var(--color-gray-4);
}

/* ---------------------------------------------
*   c-box-1
--------------------------------------------- */
.c-box-1 {
    padding: calc(16 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem);
    border: calc(1 / var(--root-fz) * 1rem) solid var(--color-base-1);
}
@media screen and (max-width: 767px) {
    .c-box-1 {
        padding: 16px 20px;
        border-width: 1px;
    }
}
.c-box-1--bg-wh {
    background-color: var(--color-white-1);
    border-color: var(--color-white-1);
}
.c-box-1--strong {
    border-width: calc(2 / var(--root-fz) * 1rem);
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .c-box-1--strong {
        border-width: 2px;
    }
}

/* ---------------------------------------------
*   c-box-2
--------------------------------------------- */
.c-box-2 {
    padding: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    background-color: var(--color-gray-4);
}
.c-box-2:has(.c-serif-4) {
    padding-block: 16px;
}
@media screen and (max-width: 767px) {
    .c-box-2:has(.c-serif-4) {
        padding-block: 15px;
    }
}
.c-box-2__ico {
    display: block;
    width: 80px;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-box-2__ico {
        width: 48px;
    }
}
.c-box-2__ico img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-box-2__txt {
    display: flex;
    align-items: center;
    gap: 16px;
}
.c-box-2__txt .c-serif-4 {
    flex-shrink: 0;
}

/* ---------------------------------------------
*   c-box-3
--------------------------------------------- */
.c-box-3 {
    display: flex;
    justify-content: flex-start;
    gap: calc(20 / var(--contents-width) * 100%);
}
@media screen and (max-width: 767px) {
    .c-box-3 {
        display: block;
    }
}
.c-box-3__ico {
    display: block;
    flex-shrink: 0;
    width: calc(229 / var(--contents-width) * 100%);
}
@media screen and (max-width: 767px) {
    .c-box-3__ico {
        width: 229px;
        margin-inline: auto;
    }
}
.c-box-3__ico img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
@media screen and (max-width: 767px) {
    .c-box-3__inner {
        margin-top: 16px;
    }
}

/* ---------------------------------------------
*   .c-box-movie
--------------------------------------------- */
.c-box-movie__movie {
    aspect-ratio: 16/9;
}
.c-box-movie__movie iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------------------------------------------
*   c-btn-1
--------------------------------------------- */
.c-btn-1 {
    padding: calc(16 / var(--root-fz) * 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(8 / var(--root-fz) * 1rem);
    border: calc(1 / var(--root-fz) * 1rem) solid var(--color-gray-3);
    width: -moz-fit-content;
    width: fit-content;
    min-width: 264px;
    background-color: transparent;
}
@media screen and (max-width: 767px) {
    .c-btn-1 {
        padding: 16px;
        gap: 8px;
        border-width: 1px;
        min-width: 264px;
    }
}
.c-btn-1__ico {
    display: block;
    width: calc(16 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    flex-shrink: 0;
    margin-top: calc(3 / var(--root-fz) * 1rem);
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_arrow_right_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_arrow_right_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
    background-color: var(--color-base-1);
}
@media screen and (max-width: 767px) {
    .c-btn-1__ico {
        width: 16px;
        margin-top: 3px;
    }
}
.c-btn-1--outlink .c-btn-1__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-btn-1--pdf .c-btn-1__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-btn-1--download .c-btn-1__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_download_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_download_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-1 {
        transition: background-color 0.3s;
    }
    .c-btn-1:hover {
        background-color: var(--color-gray-4);
    }
}
.c-btn-1--wh {
    background-color: var(--color-gray-5);
}
.c-btn-1--297 {
    min-width: 297px;
}

/* ---------------------------------------------
*   c-btn-2
--------------------------------------------- */
.c-btn-2 {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none !important;
}
@media screen and (max-width: 767px) {
    .c-btn-2 {
        gap: 8px;
    }
}
.c-btn-2:visited {
    color: var(--color-gray-1);
}
.c-btn-2:visited .c-btn-2__ico {
    background-color: var(--color-gray-1);
}
.c-btn-2:not([href]) {
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-2:hover {
        text-decoration: underline !important;
        text-underline-offset: 0.2em;
    }
}
.c-btn-2__txt {
    display: inline !important;
}
.c-btn-2__ico {
    position: relative;
    top: 4px;
    display: inline-block;
    width: calc(24 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    flex-shrink: 0;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_arrow_right_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_arrow_right_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
    background-color: var(--color-base-1);
}
@media screen and (max-width: 767px) {
    .c-btn-2__ico {
        width: 24px;
    }
}
.c-btn-2--small .c-btn-2__ico {
    width: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-btn-2--small .c-btn-2__ico {
        top: 2px;
        width: 16px;
    }
}
.c-btn-2--small.is-current {
    font-weight: bold;
}
.c-btn-2--outlink .c-btn-2__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-btn-2--outlink.c-btn-2--small .c-btn-2__ico {
    margin-top: calc(2 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-btn-2--outlink.c-btn-2--small .c-btn-2__ico {
        margin-top: 2px;
    }
}
.c-btn-2--pdf .c-btn-2__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-btn-2--download .c-btn-2__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_download_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_download_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-btn-2--ttb .c-btn-2__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_arrow_down_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_arrow_down_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-btn-2--point .c-btn-2__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_point_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_point_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-btn-2--rtl .c-btn-2__ico {
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_arrow_left_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_arrow_left_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-btn-2.is-current {
    pointer-events: none;
}
.c-btn-2.is-current .c-btn-2__ico {
    display: none;
}

/* ---------------------------------------------
*   c-card-1
--------------------------------------------- */
.c-card-1__pic {
    display: block;
    width: 100%;
    aspect-ratio: 1952/1098;
}
.c-card-1__pic img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
@media screen and (max-width: 767px) {
    .c-card-1__pic {
        aspect-ratio: 1280/1280;
    }
}
.c-card-1__pic--73 {
    aspect-ratio: 1952/836;
}
@media screen and (max-width: 767px) {
    .c-card-1__pic--73 {
        aspect-ratio: 1/1;
    }
}
.c-card-1__pic--43 {
    aspect-ratio: 640/480;
}
@media screen and (max-width: 767px) {
    .c-card-1__pic--sp169 {
        aspect-ratio: 16/9;
    }
}
.c-card-1__pic--auto {
    aspect-ratio: auto;
}
.c-card-1__pic--169 {
    aspect-ratio: 16/9;
}
.c-card-1__inner {
    margin-top: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-card-1__inner {
        margin-top: 8px;
    }
}
.c-card-1__inner > * + * {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-card-1__inner > * + * {
        margin-top: 16px;
    }
}
.c-card-1__inner .l-container-small > * + * {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-card-1__inner .l-container-small > * + * {
        margin-top: 16px;
    }
}
.c-card-1__link + .c-card-1__inner {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-card-1__link + .c-card-1__inner {
        margin-top: 16px;
    }
}
.c-card-1__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .c-card-1__link {
        transition: opacity var(--hover-duration);
    }
    .c-card-1__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

/* ---------------------------------------------
*   .c-card-2
--------------------------------------------- */
.c-card-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    gap: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-card-2 {
        gap: 16px;
    }
}
.c-card-2__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .c-card-2__link {
        transition: opacity var(--hover-duration);
    }
    .c-card-2__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-card-2__pic {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
    .c-card-2__pic {
        aspect-ratio: 1/1;
    }
}
.c-card-2__pic img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-card-2__pic--73 {
    aspect-ratio: 1952/836;
}
@media screen and (max-width: 767px) {
    .c-card-2__pic--73 {
        aspect-ratio: 1/1;
    }
}
.c-card-2__pic--43 {
    aspect-ratio: 640/480;
}
@media screen and (max-width: 767px) {
    .c-card-2__pic--sp169 {
        aspect-ratio: 16/9;
    }
}
.c-card-2__pic--auto {
    aspect-ratio: auto;
}
.c-card-2__pic--169 {
    aspect-ratio: 16/9;
}
.c-card-2__inner > * + * {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-card-2__inner > * + * {
        margin-top: 16px;
    }
}
.c-card-2--reverse .c-card-2__pic {
    order: 2;
}
.c-card-2--reverse .c-card-2__inner {
    order: 1;
}
.c-card-2--small {
    grid-template-columns: calc(146 / 478 * 100%) 1fr;
}
@media screen and (max-width: 767px) {
    .c-card-2--small {
        grid-template-columns: calc(80 / 368 * 100%) 1fr;
        gap: 20px;
    }
}
@media screen and (min-width: 768px) {
    .c-card-2--small.c-card-2--reverse {
        grid-template-columns: 1fr calc(146 / 478 * 100%);
    }
}
@media screen and (max-width: 767px) {
    .c-card-2--small.c-card-2--reverse {
        grid-template-columns: 1fr calc(80 / 368 * 100%);
    }
}

/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-column-1
--------------------------------------------- */
.c-column-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-column-1 {
        grid-template-columns: repeat(1, 1fr);
        gap: 48px;
    }
    .c-column-1:has(.c-card-2) {
        gap: 24px;
    }
}
.c-column-1__item--subgrid {
    display: contents;
}
.c-column-1__item > * + * {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-column-1__item > * + * {
        margin-top: 16px;
    }
}
.c-column-1__subgrid {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-column-1__subgrid {
        grid-template-rows: auto;
        gap: 16px;
    }
}
.c-column-1__link {
    display: block;
    aspect-ratio: 478/120;
}
@media (hover: hover) and (pointer: fine) {
    .c-column-1__link {
        transition: opacity var(--hover-duration);
    }
    .c-column-1__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-column-1__link img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
@media screen and (min-width: 768px) {
    .c-column-1--3col {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .c-column-1--3col {
        gap: 32px;
    }
}
@media screen and (min-width: 768px) {
    .c-column-1--4col {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .c-column-1--4col {
        gap: 32px;
    }
}
@media screen and (min-width: 768px) {
    .c-column-1--57 {
        grid-template-columns: calc(395 / var(--contents-width) * 100%) 1fr;
    }
}
@media screen and (max-width: 767px) {
    .c-column-1--57 {
        gap: 16px;
    }
}
@media screen and (min-width: 768px) {
    .c-column-1--reverse .c-column-1__item:nth-child(1) {
        order: 2;
    }
    .c-column-1--reverse .c-column-1__item:nth-child(2) {
        order: 1;
    }
    .c-column-1--reverse.c-column-1--57 {
        grid-template-columns: 1fr calc(395 / var(--contents-width) * 100%);
    }
    .c-column-1--reverse.c-column-1--half {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 768px) {
    .c-column-1--39 {
        grid-template-columns: calc(229 / var(--contents-width) * 100%) 1fr;
    }
}
@media screen and (max-width: 767px) {
    .c-column-1--39 {
        gap: 16px;
    }
}
@media screen and (min-width: 768px) {
    .c-column-1--39.c-column-1--reverse {
        grid-template-columns: 1fr calc(229 / var(--contents-width) * 100%);
    }
}
@media screen and (max-width: 767px) {
    .c-column-1--spg16 {
        gap: 16px !important;
    }
}
@media screen and (max-width: 767px) {
    .c-column-1--spg20 {
        gap: 20px !important;
    }
}
@media screen and (max-width: 767px) {
    .c-column-1--spg32 {
        gap: 32px !important;
    }
}
@media screen and (max-width: 767px) {
    .c-column-1--spg48 {
        gap: 48px !important;
    }
}
.c-column-1--center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}
.c-column-1--center .c-column-1__item {
    width: calc((100% - 32px) / 3);
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-column-1--center .c-column-1__item {
        width: calc(296 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-column-side
--------------------------------------------- */
.c-column-side {
    display: grid;
    grid-template-columns: 146px 1fr;
    gap: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-column-side {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
}
.c-column-side__link {
    padding: calc(16 / var(--root-fz) * 1rem);
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: var(--color-gray-4);
    text-decoration: none !important;
}
@media (hover: hover) and (pointer: fine) {
    .c-column-side__link {
        transition: opacity var(--hover-duration);
    }
    .c-column-side__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-column-side__link:hover {
        text-decoration: underline !important;
        text-underline-offset: 0.2em;
    }
}
@media screen and (max-width: 767px) {
    .c-column-side__link {
        padding: 8px 16px;
        width: 100%;
    }
}
.c-column-side__link.is-current {
    pointer-events: none;
    background-color: var(--color-gray-1);
    color: var(--color-white-1);
}
/* ---------------------------------------------
*   c-column-std
--------------------------------------------- */
.c-column-std {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-column-std {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}
.c-column-std > * {
    display: contents;
}
@media screen and (min-width: 768px) {
    .c-column-std > * {
        margin-inline: 0 !important;
    }
}
@media screen and (min-width: 768px) {
    .c-column-std > * .c-btn-1 {
        width: 100%;
        min-width: auto;
    }
}
@media screen and (max-width: 767px) {
    .c-column-std > * .c-btn-1 {
        margin-inline: auto !important;
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-img-1
--------------------------------------------- */
.c-img-1 {
    display: block;
    width: 100%;
}
.c-img-1 img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-img-1--225 {
    width: 225px;
}
.c-img-1--644 {
    width: 644px;
}
@media screen and (max-width: 767px) {
    .c-img-1--644 {
        max-width: 368px;
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-kv-a-2
--------------------------------------------- */
.c-kv-a-2 {
    position: relative;
    aspect-ratio: 1280/480;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .c-kv-a-2 {
        aspect-ratio: 400/427;
    }
}
.c-kv-a-2__bg {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.c-kv-a-2__bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-kv-a-2__ttls {
    position: relative;
    padding: calc(var(--contents-side-padding) * 1px);
}
.c-kv-a-2__sub {
    display: block;
}
.c-kv-a-2__main {
    display: block;
    margin-top: calc(10 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-kv-a-2__main {
        margin-top: 8px;
    }
}

/* ---------------------------------------------
*   c-kv-a-3
--------------------------------------------- */
.c-kv-a-3 {
    position: relative;
    aspect-ratio: 1280/320;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .c-kv-a-3 {
        aspect-ratio: 400/341;
    }
}
.c-kv-a-3__bg {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.c-kv-a-3__bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-kv-a-3__main {
    position: relative;
    padding: calc(var(--contents-side-padding) * 1px);
    display: block;
}

/* ---------------------------------------------
*   c-kv-a-4
--------------------------------------------- */
.c-kv-a-4 {
    padding-top: calc(80 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-kv-a-4 {
        padding: 48px calc(var(--contents-side-padding) * 1px) 0;
    }
}
.c-kv-a-4__txt {
    margin-top: calc(48 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-kv-a-4__txt {
        margin-top: 30px;
    }
}

/* ---------------------------------------------
*   c-link-1
--------------------------------------------- */
.c-link-1 {
    text-decoration: underline;
}
.c-link-1:visited {
    color: var(--color-gray-1);
}
.c-link-1--no-underline {
    text-decoration: none;
    text-decoration: none !important;
}
@media (hover: hover) and (pointer: fine) {
    .c-link-1--no-underline:hover {
        text-decoration: underline !important;
        text-underline-offset: 0.2em;
    }
}
.c-link-1.txt-al-center, .c-link-1.txt-al-right {
    display: block;
}
.c-link-1--block {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
}
.c-link-1[target=_blank]::after {
    content: "";
    position: relative;
    top: 2px;
    display: inline-block;
    width: 16px;
    aspect-ratio: 1/1;
    -webkit-mask: url(/hvac-cc/corp/assets/common/images/holdings-icn-newtab.svg) 0 0 no-repeat;
            mask: url(/hvac-cc/corp/assets/common/images/holdings-icn-newtab.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
    margin-left: 8px;
    background-color: #4d4d4d;
}

/* ---------------------------------------------
*   c-links-1
--------------------------------------------- */
.c-links-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
.c-links-1-wrap--pcsp .c-links-1 {
    width: 100%;
    justify-content: flex-start;
}

@media screen and (max-width: 767px) {
    .c-links-1 {
        width: 100%;
        justify-content: flex-start;
    }
}
.c-links-1__item {
    color: var(--color-gray-1);
    flex-shrink: 0;
    border-bottom: 1px solid var(--color-gray-1);
}
.c-links-1__item.is-current {
    position: relative;
    color: var(--color-base-1);
    pointer-events: none;
}
.c-links-1__item.is-current::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(4 / var(--root-fz) * 1rem);
    background-color: var(--color-gray-1);
}
@media screen and (max-width: 767px) {
    .c-links-1__item.is-current::before {
        height: 4px;
    }
}
.c-links-1__link {
    padding: calc(8 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
    display: block;
    white-space: nowrap;
    text-align: center;
}
@media (hover: hover) and (pointer: fine) {
    .c-links-1__link {
        transition: opacity var(--hover-duration);
    }
    .c-links-1__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .c-links-1__link {
        padding: 8px 24px;
    }
}

/*  c-links-1-wrap
--------------------------------------------- */
.c-links-1-wrap--pcsp {
    display: block;
    overflow-x: scroll;
    padding-block: 0 calc(10 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-links-1-wrap {
        display: block;
        overflow-x: scroll;
        padding-block: 0 10px;
    }
}
.c-links-1-wrap__container--pcsp {
    width: calc(var(--contents-width) * 1px);
}
@media screen and (max-width: 767px) {
    .c-links-1-wrap__container {
        width: calc(var(--contents-width) * 1px);
    }
}

/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1__item {
    padding-left: calc(9 / var(--root-fz) * 1rem);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(10 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-1__item {
        padding-left: 9px;
        gap: 10px;
    }
}
.c-list-1__dot {
    display: block;
    width: calc(5 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    background-color: var(--color-base-1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: calc(10 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-1__dot {
        width: 5px;
        margin-top: 10px;
    }
}

/* ---------------------------------------------
*   c-list-2
--------------------------------------------- */
.c-list-2 {
    padding-left: calc(21 / var(--root-fz) * 1rem);
    list-style-type: decimal;
}
@media screen and (max-width: 767px) {
    .c-list-2 {
        padding-left: 21px;
    }
}
.c-list-2__item {
    display: list-item;
    text-align: -webkit-match-parent;
}

/* ---------------------------------------------
*   c-list-3
--------------------------------------------- */
.c-list-3__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(10 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-3__item {
        gap: 10px;
    }
}
.c-list-3__item + .c-list-3__item {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-3__item + .c-list-3__item {
        margin-top: 16px;
    }
}

/* ---------------------------------------------
*   c-list-4
--------------------------------------------- */
.c-list-4__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-4__item {
        gap: 8px;
    }
}
.c-list-4__item + .c-list-4__item {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-4__item + .c-list-4__item {
        margin-top: 16px;
    }
}
.c-list-4__sym {
    width: calc(32 / var(--root-fz) * 1rem);
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-list-4__sym {
        width: 32px;
    }
}

/* ---------------------------------------------
*   c-list-ico
--------------------------------------------- */
.c-list-ico__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-ico__item {
        gap: 8px;
    }
}
.c-list-ico__item + .c-list-ico__item {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-ico__item + .c-list-ico__item {
        margin-top: 16px;
    }
}
.c-list-ico__ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(16 / var(--root-fz) * 1rem);
    flex-shrink: 0;
    margin-top: calc(7 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-ico__ico {
        width: 16px;
        margin-top: 7px;
    }
    .safari .c-list-ico__ico {
        margin-top: 6px;
    }
}
.c-list-ico__ico img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

/* ---------------------------------------------
*   c-list-link
--------------------------------------------- */
.c-list-link__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-link__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
}
.c-list-link__item {
    padding-block: calc(32 / var(--root-fz) * 1rem);
    border-top: 1px solid var(--color-gray-3);
}
@media screen and (max-width: 767px) {
    .c-list-link__item {
        padding-block: 32px;
    }
}
.c-list-link__desc {
    margin-top: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-link__desc {
        margin-top: 24px;
    }
}
.c-list-link__desc .c-link-1 {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
}
.c-list-link__desc > * + * {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-link__desc > * + * {
        margin-top: 16px;
    }
}

/* ---------------------------------------------
*   c-list-news
--------------------------------------------- */
.c-list-news {
    border-top: 1px solid var(--color-gray-3);
}
.c-list-news__item {
    border-bottom: 1px solid var(--color-gray-3);
}
.c-list-news__link {
    padding: calc(24 / var(--root-fz) * 1rem) calc(16 / var(--root-fz) * 1rem);
    display: block;
}
@media screen and (max-width: 767px) {
    .c-list-news__link {
        padding: 24px 16px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-news__link:hover .c-list-news__txt {
        text-decoration: underline !important;
        text-underline-offset: 0.2em;
    }
}
.c-list-news__link:not([href]) {
    pointer-events: none;
}
.c-list-news__top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-news__top {
        gap: 8px;
    }
}
.c-list-news__date {
    margin-right: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-news__date {
        margin-right: 8px;
    }
}
.c-list-news__tag {
    padding: calc(2 / var(--root-fz) * 1rem) calc(14 / var(--root-fz) * 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white-1);
    border-radius: 999px;
}
@media screen and (max-width: 767px) {
    .c-list-news__tag {
        padding: 2px 14px;
    }
}
.c-list-news__txt {
    margin-top: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-news__txt {
        margin-top: 8px;
    }
}
.c-list-news__txt p {
    display: inline;
}
.c-list-news__txt span {
    display: inline-block;
}
.c-list-news__txt span img {
    margin-top: -3px;
    vertical-align: middle;
}
.c-list-news--2 .c-list-news__article {
    padding: calc(24 / var(--root-fz) * 1rem) calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-news--2 .c-list-news__article {
        padding: 24px 16px;
    }
}
.c-list-news--2 .c-btn-2 {
    margin-top: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-news--2 .c-btn-2 {
        margin-top: 8px;
    }
}

/* ---------------------------------------------
*   c-dl-1
--------------------------------------------- */
.c-dl-1 {
    border-top: 1px solid var(--color-gray-3);
}
.c-dl-1__item {
    padding-block: calc(24 / var(--root-fz) * 1rem);
    display: grid;
    grid-template-columns: 209px 1fr;
    align-items: flex-start;
    gap: calc(20 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-3);
}
@media screen and (max-width: 767px) {
    .c-dl-1__item {
        padding-block: 24px;
        grid-template-columns: 104px 1fr;
        gap: 16px;
    }
}
.c-dl-1__term {
    padding-inline: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-dl-1__term {
        padding-inline: 8px;
    }
}
.c-dl-1__desc:has(.c-dl-1__desc-img) {
    display: grid;
    grid-template-columns: 1fr 146px;
    align-items: flex-start;
    gap: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-dl-1__desc:has(.c-dl-1__desc-img) {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}
.c-dl-1__desc-img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-dl-1__desc-img {
        width: calc(146 / var(--design-width) * 100vw);
    }
}
.c-dl-1__desc-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-dl-1__desc-sub:has(.c-btn-2) {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-dl-1__desc-sub:has(.c-btn-2) {
        margin-top: 16px;
    }
}

/* ---------------------------------------------
*   c-dl-2
--------------------------------------------- */
.c-dl-2__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.c-dl-2__term {
    width: 7.5em;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-dl-2__term {
        width: 5em;
    }
}
.c-dl-2__term--wide {
    width: 13.5em;
}
@media screen and (max-width: 767px) {
    .c-dl-2__term--wide {
        width: 8em;
    }
}

/* ---------------------------------------------
*   c-nav-1
--------------------------------------------- */
.c-nav-1__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(20 / var(--root-fz) * 1rem) calc(32 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-nav-1__list {
        gap: 20px 32px;
    }
}

/* ---------------------------------------------
*   c-nav-footer
--------------------------------------------- */
.c-nav-footer {
    border-top: 1px solid var(--color-gray-3);
    padding-block: calc(32 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-nav-footer {
        padding-block: 32px;
    }
}
.c-nav-footer__desc {
    margin-top: calc(32 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-nav-footer__desc {
        margin-top: 32px;
    }
}
.c-nav-footer__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-nav-footer__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}
.c-nav-footer__item .c-btn-2 {
    width: -moz-fit-content;
    width: fit-content;
}

/* ---------------------------------------------
*   c-section
--------------------------------------------- */
/* ---------------------------------------------
*   c-slider-mv
--------------------------------------------- */
.c-slider-mv .splide__track {
    aspect-ratio: 1280/480;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-slider-mv .splide__track {
        aspect-ratio: 400/427;
    }
}
.c-slider-mv--middle .splide__track {
    aspect-ratio: 976/549;
}
@media screen and (max-width: 767px) {
    .c-slider-mv--middle .splide__track {
        aspect-ratio: 1/1;
    }
}
.c-slider-mv--small .splide__track {
    aspect-ratio: 644/362;
}
@media screen and (max-width: 767px) {
    .c-slider-mv--small .splide__track {
        aspect-ratio: 368/206;
    }
}
.c-slider-mv--link .splide__track {
    aspect-ratio: auto;
}
.c-slider-mv__control {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(10 / var(--root-fz) * 1rem);
    margin-top: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-slider-mv__control {
        gap: 10px;
        margin-top: 24px;
    }
}
.c-slider-mv__control-inner {
    position: relative;
    padding-inline: calc(40 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-slider-mv__control-inner {
        padding-inline: 40px;
    }
}
.c-slider-mv .splide__arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
}
.c-slider-mv .splide__arrow {
    position: absolute;
    top: 50%;
    display: block;
    width: calc(24 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_arrow2_left_line.svg) 0 0 no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_arrow2_left_line.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
    background-color: var(--color-gray-1);
    transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
    .c-slider-mv .splide__arrow {
        transition: opacity var(--hover-duration);
    }
    .c-slider-mv .splide__arrow:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-slider-mv .splide__arrow--prev {
    left: 0;
}
.c-slider-mv .splide__arrow--next {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}
.c-slider-mv__play {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(20 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-slider-mv__play {
        transition: opacity var(--hover-duration);
    }
    .c-slider-mv__play:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .c-slider-mv__play {
        width: 20px;
    }
}
.c-slider-mv .splide__pagination {
    gap: calc(16 / var(--root-fz) * 1rem);
    flex-wrap: wrap;
    justify-content: flex-start;
}
@media screen and (max-width: 767px) {
    .c-slider-mv .splide__pagination {
        gap: 16px;
    }
}
.c-slider-mv .splide__pagination li {
    font-size: 0;
}
.c-slider-mv .splide__pagination__page {
    position: relative;
    width: calc(12 / var(--root-fz) * 1rem);
    height: auto !important;
    aspect-ratio: 1/1;
    border-radius: 50%;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid var(--color-gray-1);
    background-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
    .c-slider-mv .splide__pagination__page {
        transition: background-color 0.3s;
    }
    .c-slider-mv .splide__pagination__page:hover {
        background-color: var(--color-gray-1);
    }
}
.c-slider-mv .splide__pagination__page.is-active {
    background-color: var(--color-gray-1);
}
.c-slider-mv__img {
    width: 100%;
    height: 100%;
}
.c-slider-mv__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-slider-mv__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(20 / var(--root-fz) * 1rem);
    align-items: flex-start;
}
@media screen and (max-width: 767px) {
    .c-slider-mv__links {
        gap: 16px;
    }
    .c-slider-mv__links:has(.c-slider-mv__detail) {
        grid-template-columns: repeat(1, 1fr);
        gap: 48px;
    }
}
.c-slider-mv__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .c-slider-mv__link {
        transition: opacity var(--hover-duration);
    }
    .c-slider-mv__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-slider-mv__link:not([href]) {
    pointer-events: none;
}
.c-slider-mv__top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(8 / var(--root-fz) * 1rem);
    margin-block: 16px;
}
@media screen and (max-width: 767px) {
    .c-slider-mv__top {
        gap: 8px;
    }
}
.c-slider-mv__date {
    margin-right: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-slider-mv__date {
        margin-right: 8px;
    }
}
.c-slider-mv__tag {
    padding: calc(2 / var(--root-fz) * 1rem) calc(14 / var(--root-fz) * 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white-1);
    border-radius: 999px;
}
@media screen and (max-width: 767px) {
    .c-slider-mv__tag {
        padding: 2px 14px;
    }
}

/* ---------------------------------------------
*   c-table-1
--------------------------------------------- */
.c-table-1 {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-block: 0 10px;
}
.c-table-1 table {
    border-top: 1px solid var(--color-gray-3);
    border-bottom: 1px solid var(--color-gray-3);
    width: 100%;
    min-width: 976px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-table-1 table {
        font-size: 16px;
    }
}
.c-table-1 table thead {
    background-color: var(--color-gray-4);
}
.c-table-1 table thead th {
    border-color: var(--color-gray-3) !important;
    padding: calc(8 / var(--root-fz) * 1rem) !important;
    font-weight: bold;
    border-bottom: 1px solid var(--color-gray-3) !important;
    border-right: 1px solid var(--color-gray-3) !important;
}
@media screen and (max-width: 767px) {
    .c-table-1 table thead th {
        padding: 8px !important;
    }
}
.c-table-1 table thead th:first-of-type {
    border-left: 1px solid var(--color-gray-3) !important;
}
.c-table-1 table tbody tr {
    border-bottom: 1px solid var(--color-gray-3) !important;
}
.c-table-1 table tbody tr:last-of-type {
    border-bottom: none !important;
}
.c-table-1 table tbody tr td {
    border-color: var(--color-gray-3) !important;
    padding: calc(16 / var(--root-fz) * 1rem) calc(8 / var(--root-fz) * 1rem) !important;
    border-right: 1px solid var(--color-gray-3) !important;
}
@media screen and (max-width: 767px) {
    .c-table-1 table tbody tr td {
        padding: 16px 8px !important;
    }
}
.c-table-1 table tbody tr td:first-of-type {
    border-left: 1px solid var(--color-gray-3) !important;
}
@media (hover: hover) and (pointer: fine) {
    .c-table-1 table tbody tr {
        transition: background-color 0.3s;
    }
    .c-table-1 table tbody tr:hover {
        background-color: var(--color-white-1) !important;
    }
}
.c-table-1 table tr td {
    background-color: inherit !important;
    border-color: var(--color-gray-3) !important;
}
.c-table-1 table tr th {
    background-color: inherit !important;
    border-color: var(--color-gray-3) !important;
}
.c-table-1 table.has-fixed-layout {
    table-layout: inherit !important;
}

/* ---------------------------------------------
*   c-table-2
--------------------------------------------- */
.c-table-2 {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-block: 0 10px;
}
.c-table-2 table {
    border-top: 1px solid var(--color-gray-3);
    border-bottom: 1px solid var(--color-gray-3);
    width: 100%;
    min-width: 976px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.5;
    table-layout: inherit !important;
}
@media screen and (max-width: 767px) {
    .c-table-2 table {
        font-size: 16px;
    }
}
.c-table-2 table th, .c-table-2 table td {
    padding: calc(16 / var(--root-fz) * 1rem) !important;
    width: calc(256 / var(--root-fz) * 1rem);
    vertical-align: top;
    border-color: var(--color-gray-3) !important;
    background-color: inherit !important;
}
@media screen and (max-width: 767px) {
    .c-table-2 table th, .c-table-2 table td {
        padding: 16px !important;
        width: 256px;
    }
}
.c-table-2 table thead {
    background-color: var(--color-gray-4);
}
.c-table-2 table thead th {
    font-weight: bold;
    border-bottom: 1px solid var(--color-gray-3);
    border-right: 1px solid var(--color-gray-3);
    text-align: left !important;
}
.c-table-2 table thead th:first-of-type {
    border-left: 1px solid var(--color-gray-3);
}
.c-table-2 table tbody tr {
    border-bottom: 1px solid var(--color-gray-3);
}
.c-table-2 table tbody tr:last-of-type {
    border-bottom: none;
}
.c-table-2 table tbody tr td {
    border-right: 1px solid var(--color-gray-3);
}
.c-table-2 table tbody tr th {
    font-weight: bold;
    border-left: 1px solid var(--color-gray-3);
    background-color: var(--color-gray-4) !important;
    width: 208px;
}

/* ---------------------------------------------
*   c-table-3
--------------------------------------------- */
.c-table-3 table {
    border-top: 1px solid var(--color-gray-3);
    border-bottom: 1px solid var(--color-gray-3);
    width: 100%;
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.5;
    table-layout: inherit !important;
}
@media screen and (max-width: 767px) {
    .c-table-3 table {
        font-size: 16px;
    }
}
.c-table-3 table th, .c-table-3 table td {
    padding: calc(16 / var(--root-fz) * 1rem) calc(8 / var(--root-fz) * 1rem);
    width: 25%;
    vertical-align: top;
    border-color: var(--color-gray-3) !important;
    background-color: inherit !important;
}
@media screen and (max-width: 767px) {
    .c-table-3 table th, .c-table-3 table td {
        padding: 16px 8px;
    }
}
.c-table-3 table thead {
    background-color: var(--color-gray-4);
}
.c-table-3 table thead th {
    font-weight: bold;
    border-bottom: 1px solid var(--color-gray-3);
    border-right: 1px solid var(--color-gray-3);
}
.c-table-3 table thead th:first-of-type {
    border-left: 1px solid var(--color-gray-3);
}
.c-table-3 table tbody tr {
    border-bottom: 1px solid var(--color-gray-3);
}
.c-table-3 table tbody tr:last-of-type {
    border-bottom: none;
}
.c-table-3 table tbody tr td {
    border-right: 1px solid var(--color-gray-3);
}
.c-table-3 table tbody tr td:first-of-type {
    border-left: 1px solid var(--color-gray-3);
}
.c-table-3--dark thead {
    background-color: var(--color-gray-1) !important;
}
.c-table-3--dark thead th {
    color: var(--color-white-1);
}
.c-table-3--dark tbody tr {
    background-color: var(--color-white-1);
}

/* ---------------------------------------------
*   c-table-4
--------------------------------------------- */
.c-table-4 table {
    border-top: 1px solid var(--color-gray-3);
    border-bottom: 1px solid var(--color-gray-3);
    width: 100%;
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.5;
    table-layout: inherit !important;
}
@media screen and (max-width: 767px) {
    .c-table-4 table {
        font-size: 16px;
    }
}
.c-table-4 table th, .c-table-4 table td {
    padding: calc(16 / var(--root-fz) * 1rem) calc(8 / var(--root-fz) * 1rem);
    width: 25%;
    text-align: left;
    vertical-align: top;
    border-color: var(--color-gray-3) !important;
    background-color: inherit !important;
}
@media screen and (max-width: 767px) {
    .c-table-4 table th, .c-table-4 table td {
        padding: 16px;
    }
}
.c-table-4 table th {
    background-color: var(--color-gray-4) !important;
    font-weight: bold;
}
.c-table-4 table thead th, .c-table-4 table thead td {
    border-bottom: 1px solid var(--color-gray-3);
    border-right: 1px solid var(--color-gray-3);
}
.c-table-4 table thead th:first-of-type, .c-table-4 table thead td:first-of-type {
    border-left: 1px solid var(--color-gray-3);
}
.c-table-4 table tbody tr {
    border-bottom: 1px solid var(--color-gray-3);
}
.c-table-4 table tbody tr td {
    border-right: 1px solid var(--color-gray-3);
    border-left: 1px solid var(--color-gray-3);
}
.c-table-4 table tbody tr th {
    border-left: 1px solid var(--color-gray-3);
}
.c-table-4--dark th {
    background-color: var(--color-gray-1) !important;
    color: var(--color-white-1);
}
.c-table-4--dark td {
    background-color: var(--color-white-1) !important;
}

/* ---------------------------------------------
*   c-table-5
--------------------------------------------- */
.c-table-5 table {
    border-top: 1px solid var(--color-gray-3);
    border-bottom: 1px solid var(--color-gray-3);
    width: 100%;
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.5;
    table-layout: inherit !important;
}
@media screen and (max-width: 767px) {
    .c-table-5 table {
        font-size: 16px;
    }
}
.c-table-5 table th, .c-table-5 table td {
    padding: calc(16 / var(--root-fz) * 1rem) calc(8 / var(--root-fz) * 1rem);
    width: 25%;
    text-align: left;
    vertical-align: top;
    border-color: var(--color-gray-3) !important;
    background-color: inherit !important;
}
@media screen and (max-width: 767px) {
    .c-table-5 table th, .c-table-5 table td {
        padding: 16px;
    }
}
.c-table-5 table th {
    background-color: var(--color-gray-1) !important;
    color: var(--color-white-1);
    font-weight: bold;
}
.c-table-5 table thead th, .c-table-5 table thead td {
    border-bottom: 1px solid var(--color-gray-3);
    border-right: 1px solid var(--color-gray-3);
}
.c-table-5 table thead th:first-of-type, .c-table-5 table thead td:first-of-type {
    border-left: 1px solid var(--color-gray-3);
}
.c-table-5 table tbody tr {
    border-bottom: 1px solid var(--color-gray-3);
}
.c-table-5 table tbody tr td {
    border-right: 1px solid var(--color-gray-3);
    border-left: 1px solid var(--color-gray-3);
}
.c-table-5 table tbody tr th {
    border-left: 1px solid var(--color-gray-3);
}
.c-table-5 table tr {
    background-color: var(--color-white-1) !important;
}

/*  .c-table-1 {
--------------------------------------------- */
.c-table-1 a, .c-table-2 a, .c-table-3 a, .c-table-4 a {
    position: relative;
    display: inline;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.c-table-1 a:visited, .c-table-2 a:visited, .c-table-3 a:visited, .c-table-4 a:visited {
    color: var(--color-gray-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-table-1 a:hover, .c-table-2 a:hover, .c-table-3 a:hover, .c-table-4 a:hover {
        text-decoration: none;
    }
}
.c-table-1 a::after, .c-table-2 a::after, .c-table-3 a::after, .c-table-4 a::after {
    content: "";
    position: relative;
    top: 0.1rem;
    display: none;
    width: calc(16 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    flex-shrink: 0;
    background-color: var(--color-base-1);
    margin-inline: calc(2 / var(--root-fz) * 1rem) calc(4 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-table-1 a::after, .c-table-2 a::after, .c-table-3 a::after, .c-table-4 a::after {
        width: 16px;
        margin-inline: 2px 4px;
    }
}
.c-table-1 a[target=_blank]::after, .c-table-2 a[target=_blank]::after, .c-table-3 a[target=_blank]::after, .c-table-4 a[target=_blank]::after {
    display: inline-block;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-table-1 a[href$=".pdf"]::after, .c-table-2 a[href$=".pdf"]::after, .c-table-3 a[href$=".pdf"]::after, .c-table-4 a[href$=".pdf"]::after {
    display: inline-block;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}

/* ---------------------------------------------
*   c-ttl-1
--------------------------------------------- */
/*  c-ttl-1-1
--------------------------------------------- */
.c-ttl-1-1 {
    font-size: calc(44 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-ttl-1-1 {
        font-size: 28px;
    }
}

/*  c-ttl-1-2
--------------------------------------------- */
.c-ttl-1-2 {
    font-size: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-ttl-1-2 {
        font-size: 20px;
    }
}

/* ---------------------------------------------
*   c-ttl-2//H2
--------------------------------------------- */
.c-ttl-2 {
    font-size: calc(32 / var(--root-fz) * 1rem);
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-ttl-2 {
        font-size: 24px;
    }
}

/* ---------------------------------------------
*   c-ttl-3//H3
--------------------------------------------- */
.c-ttl-3 {
    font-size: calc(22 / var(--root-fz) * 1rem);
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-ttl-3 {
        font-size: 20px;
    }
}
.c-ttl-3 strong {
    font-weight: bold;
}

/* ---------------------------------------------
*   c-txt-1//Main
--------------------------------------------- */
.c-txt-1 {
    display: block;
    font-size: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-txt-1 {
        font-size: 16px;
    }
}
.c-txt-1 a {
    position: relative;
    display: inline;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.c-txt-1 a:visited {
    color: var(--color-gray-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-txt-1 a:hover {
        text-decoration: none;
    }
}
.c-txt-1 a::after {
    content: "";
    position: relative;
    top: 0.1rem;
    display: none;
    width: calc(16 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    flex-shrink: 0;
    background-color: var(--color-base-1);
    margin-inline: calc(2 / var(--root-fz) * 1rem) calc(4 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-txt-1 a::after {
        width: 16px;
        margin-inline: 2px 4px;
    }
}
.c-txt-1 a[target=_blank]::after {
    display: inline-block;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-txt-1 a[href$=".pdf"]::after {
    display: inline-block;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-txt-1 strong {
    font-weight: bold;
}

/* ---------------------------------------------
*   c-txt-2//Caption_L
--------------------------------------------- */
.c-txt-2 {
    display: block;
    font-size: calc(14 / var(--root-fz) * 1rem);
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-txt-2 {
        font-size: 14px;
    }
}
.c-txt-2 strong {
    font-weight: bold;
}

/* ---------------------------------------------
*   c-txt-3//Caption_M
--------------------------------------------- */
.c-txt-3 {
    display: block;
    font-size: calc(12 / var(--root-fz) * 1rem);
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-txt-3 {
        font-size: 12px;
    }
}
.c-txt-3 strong {
    font-weight: bold;
}

/* ---------------------------------------------
*   c-txt-4//Caption_S
--------------------------------------------- */
.c-txt-4 {
    display: block;
    font-size: calc(11 / var(--root-fz) * 1rem);
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-txt-4 {
        font-size: 11px;
    }
}
.c-txt-4 strong {
    font-weight: bold;
}
.c-txt-4--tag {
    padding: calc(2 / var(--root-fz) * 1rem) calc(14 / var(--root-fz) * 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white-1);
    border-radius: 999px;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .c-txt-4--tag {
        padding: 2px 14px;
    }
}

/* ---------------------------------------------
*   c-serif-1//装飾用文字XL
--------------------------------------------- */
.c-serif-1 {
    word-break: break-all;
    display: block;
    font-size: calc(72 / var(--root-fz) * 1rem);
    font-weight: 200;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
    .c-serif-1 {
        font-size: 50px;
    }
}
.c-serif-1 strong {
    font-weight: bold;
}

/* ---------------------------------------------
*   c-serif-2//装飾用文字L
--------------------------------------------- */
.c-serif-2 {
    word-break: break-all;
    display: block;
    font-size: calc(58 / var(--root-fz) * 1rem);
    font-weight: 200;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
    .c-serif-2 {
        font-size: 40px;
    }
}
.c-serif-2 strong {
    font-weight: bold;
}

/* ---------------------------------------------
*   c-serif-3//装飾用文字M
--------------------------------------------- */
.c-serif-3 {
    word-break: break-all;
    display: block;
    font-size: calc(40 / var(--root-fz) * 1rem);
    font-weight: 200;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
    .c-serif-3 {
        font-size: 32px;
    }
}
.c-serif-3 strong {
    font-weight: bold;
}

/* ---------------------------------------------
*   c-serif-4//装飾用文字S
--------------------------------------------- */
.c-serif-4 {
    word-break: break-all;
    display: block;
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: 200;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
    .c-serif-4 {
        font-size: 24px;
    }
}
.c-serif-4 strong {
    font-weight: bold;
}

/* c-wysiwyg
--------------------------------------------- */
.c-wysiwyg > :last-child {
    margin-bottom: 0 !important;
}
.c-wysiwyg sup {
    display: inline-block;
    transform: scale(0.8) translate(0, 0.2rem);
}
@media screen and (max-width: 767px) {
    .c-wysiwyg sup {
        transform: scale(0.8) translate(0, 3.2px);
    }
}
.c-wysiwyg sub {
    vertical-align: sub;
    font-size: smaller;
}
.c-wysiwyg i,
.c-wysiwyg strong {
    font-weight: bold;
}
.c-wysiwyg em {
    font-style: italic;
}
.c-wysiwyg a {
    position: relative;
    display: inline;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.c-wysiwyg a:visited {
    color: var(--color-gray-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-wysiwyg a:hover {
        text-decoration: none;
    }
}
.c-wysiwyg a::after {
    content: "";
    position: relative;
    top: 0.1rem;
    display: none;
    width: calc(16 / var(--root-fz) * 1rem);
    aspect-ratio: 1/1;
    flex-shrink: 0;
    background-color: var(--color-base-1);
    margin-inline: calc(2 / var(--root-fz) * 1rem) calc(4 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-wysiwyg a::after {
        width: 16px;
        margin-inline: 2px 4px;
    }
}
.c-wysiwyg a[target=_blank]::after {
    display: inline-block;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_link_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-wysiwyg a[href$=".pdf"]::after {
    display: inline-block;
    -webkit-mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
            mask: url(/hvac-cc/corp/assets/img/common/icon_pdf_line.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
.c-wysiwyg code {
    background-color: #eee;
    padding: 0.1em 0.4em;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    word-break: break-all;
}

.has-highlight-color {
    color: #0041C0;
    background-color: transparent !important;
}

/* ---------------------------------------------
*   p-top-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: var(--color-white-1) !important;
}

/* ---------------------------------------------
*   font-color
--------------------------------------------- */
.fc-base-1 {
    color: var(--color-base-1);
}

.fc-black-1 {
    color: var(--color-black-1);
}

.fc-black-2 {
    color: var(--color-black-1);
}

.fc-gray-1 {
    color: var(--color-gray-1);
}

.fc-gray-2 {
    color: var(--color-gray-1);
}

.fc-gray-3 {
    color: var(--color-gray-1);
}

.fc-gray-4 {
    color: var(--color-gray-1);
}

.fc-gray-5 {
    color: var(--color-gray-1);
}

.fc-white-1 {
    color: var(--color-white-1);
}

.fc-red-1 {
    color: var(--color-red-1);
}

.fc-blue-1 {
    color: var(--color-blue-1);
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-thin {
    font-weight: 200 !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-regular {
    font-weight: 400 !important;
}

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

.fw-medium {
    font-weight: 600 !important;
}

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

.fw-black {
    font-weight: 900 !important;
}

/* ---------------------------------------------
*   line-height
--------------------------------------------- */
.lh-12 {
    line-height: 1.2 !important;
}

.lh-15 {
    line-height: 1.5 !important;
}

.lh-16 {
    line-height: 1.6 !important;
}

.lh-17 {
    line-height: 1.7 !important;
}

.lh-175 {
    line-height: 1.75 !important;
}

.lh-18 {
    line-height: 1.8 !important;
}

.lh-20 {
    line-height: 2 !important;
}

.lh-23 {
    line-height: 2.3 !important;
}

@media screen and (max-width: 767px) {
    .lh-15-sp {
        line-height: 1.5 !important;
    }
}

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

@media screen and (min-width: 768px) {
    .txt-al-center-pc {
        text-align: center !important;
    }
}

@media screen and (max-width: 767px) {
    .txt-al-center-sp {
        text-align: center !important;
    }
}

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

@media screen and (min-width: 768px) {
    .txt-al-right-pc {
        text-align: right !important;
    }
}

@media screen and (max-width: 767px) {
    .txt-al-right-sp {
        text-align: right !important;
    }
}

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

@media screen and (min-width: 768px) {
    .txt-al-left-pc {
        text-align: left !important;
    }
}

@media screen and (max-width: 767px) {
    .txt-al-left-sp {
        text-align: left !important;
    }
}

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

/* ---------------------------------------------
*   margin-inline
--------------------------------------------- */
.margin-inline-auto {
    margin-inline: auto;
}

.margin-inline-right {
    margin-inline: auto 0;
}

@media screen and (max-width: 767px) {
    .margin-inline-auto-sp {
        margin-inline: auto;
    }
}

@media screen and (max-width: 767px) {
    .margin-inline-right-sp {
        margin-inline: auto 0;
    }
}

/* ---------------------------------------------
*   text-shadow
--------------------------------------------- */
.text-shadow-1 {
    filter: drop-shadow(0px 0px calc(8 / var(--root-fz) * 1rem) rgba(var(--color-black-1-rgb), 0.8));
}
@media screen and (max-width: 767px) {
    .text-shadow-1 {
        filter: drop-shadow(0px 0px 8px rgba(var(--color-black-1-rgb), 0.8));
    }
}

/* ---------------------------------------------
*   visibility
--------------------------------------------- */
.visually-hidden {
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

/* ---------------------------------------------
*   display-block
--------------------------------------------- */
.display-block {
    display: block;
}

/* ---------------------------------------------
*   js-acc-target
--------------------------------------------- */
.js-acc-target {
    --acc-body-height: 0px;
    height: 0;
    overflow: hidden;
}

.js-acc-scope.is-close .js-acc-target {
    animation: closeAccAnim 0.5s forwards;
}

.js-acc-scope.is-open .js-acc-target {
    animation: openAccAnim 0.5s forwards;
}

@keyframes openAccAnim {
    0% {
        height: 0px;
        visibility: hidden;
    }
    99% {
        height: var(--acc-body-height);
        visibility: visible;
    }
    100% {
        height: auto;
    }
}
@keyframes closeAccAnim {
    0% {
        height: var(--acc-body-height);
    }
    99% {
        visibility: visible;
    }
    100% {
        height: 0px;
        visibility: hidden;
    }
}
/* ---------------------------------------------
*   js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
    pointer-events: none;
}

@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: 5px !important;
    }
    .mgt-sp--10 {
        margin-top: 10px !important;
    }
    .mgt-sp--15 {
        margin-top: 15px !important;
    }
    .mgt-sp--20 {
        margin-top: 20px !important;
    }
    .mgt-sp--25 {
        margin-top: 25px !important;
    }
    .mgt-sp--30 {
        margin-top: 30px !important;
    }
    .mgt-sp--35 {
        margin-top: 35px !important;
    }
    .mgt-sp--40 {
        margin-top: 40px !important;
    }
    .mgt-sp--45 {
        margin-top: 45px !important;
    }
    .mgt-sp--50 {
        margin-top: 50px !important;
    }
    .mgt-sp--55 {
        margin-top: 55px !important;
    }
    .mgt-sp--60 {
        margin-top: 60px !important;
    }
    .mgt-sp--65 {
        margin-top: 65px !important;
    }
    .mgt-sp--70 {
        margin-top: 70px !important;
    }
    .mgt-sp--75 {
        margin-top: 75px !important;
    }
    .mgt-sp--80 {
        margin-top: 80px !important;
    }
    .mgt-sp--85 {
        margin-top: 85px !important;
    }
    .mgt-sp--90 {
        margin-top: 90px !important;
    }
    .mgt-sp--95 {
        margin-top: 95px !important;
    }
    .mgt-sp--100 {
        margin-top: 100px !important;
    }
    .mgt-sp--105 {
        margin-top: 105px !important;
    }
    .mgt-sp--110 {
        margin-top: 110px !important;
    }
    .mgt-sp--115 {
        margin-top: 115px !important;
    }
    .mgt-sp--120 {
        margin-top: 120px !important;
    }
    .mgt-sp--125 {
        margin-top: 125px !important;
    }
    .mgt-sp--130 {
        margin-top: 130px !important;
    }
    .mgt-sp--135 {
        margin-top: 135px !important;
    }
    .mgt-sp--140 {
        margin-top: 140px !important;
    }
    .mgt-sp--145 {
        margin-top: 145px !important;
    }
    .mgt-sp--150 {
        margin-top: 150px !important;
    }
    .mgt-sp--155 {
        margin-top: 155px !important;
    }
    .mgt-sp--160 {
        margin-top: 160px !important;
    }
    .mgt-sp--165 {
        margin-top: 165px !important;
    }
    .mgt-sp--170 {
        margin-top: 170px !important;
    }
    .mgt-sp--175 {
        margin-top: 175px !important;
    }
    .mgt-sp--180 {
        margin-top: 180px !important;
    }
    .mgt-sp--185 {
        margin-top: 185px !important;
    }
    .mgt-sp--190 {
        margin-top: 190px !important;
    }
    .mgt-sp--195 {
        margin-top: 195px !important;
    }
    .mgt-sp--200 {
        margin-top: 200px !important;
    }
    .mgt-sp--205 {
        margin-top: 205px !important;
    }
    .mgt-sp--210 {
        margin-top: 210px !important;
    }
    .mgt-sp--215 {
        margin-top: 215px !important;
    }
    .mgt-sp--220 {
        margin-top: 220px !important;
    }
    .mgt-sp--225 {
        margin-top: 225px !important;
    }
    .mgt-sp--230 {
        margin-top: 230px !important;
    }
    .mgt-sp--235 {
        margin-top: 235px !important;
    }
    .mgt-sp--240 {
        margin-top: 240px !important;
    }
    .mgt-sp--245 {
        margin-top: 245px !important;
    }
    .mgt-sp--250 {
        margin-top: 250px !important;
    }
}
.mgt-pc--8 {
    margin-top: 8px !important;
}

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

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

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

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

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

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

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

@media screen and (max-width: 767px) {
    .mgt-sp--4 {
        margin-top: 4px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgt-sp--8 {
        margin-top: 8px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgt-sp--16 {
        margin-top: 16px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgt-sp--24 {
        margin-top: 24px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgt-sp--32 {
        margin-top: 32px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgt-sp--36 {
        margin-top: 36px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgt-sp--48 {
        margin-top: 48px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgt-sp--64 {
        margin-top: 64px !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: 5px !important;
    }
    .mgb-sp--10 {
        margin-bottom: 10px !important;
    }
    .mgb-sp--15 {
        margin-bottom: 15px !important;
    }
    .mgb-sp--20 {
        margin-bottom: 20px !important;
    }
    .mgb-sp--25 {
        margin-bottom: 25px !important;
    }
    .mgb-sp--30 {
        margin-bottom: 30px !important;
    }
    .mgb-sp--35 {
        margin-bottom: 35px !important;
    }
    .mgb-sp--40 {
        margin-bottom: 40px !important;
    }
    .mgb-sp--45 {
        margin-bottom: 45px !important;
    }
    .mgb-sp--50 {
        margin-bottom: 50px !important;
    }
    .mgb-sp--55 {
        margin-bottom: 55px !important;
    }
    .mgb-sp--60 {
        margin-bottom: 60px !important;
    }
    .mgb-sp--65 {
        margin-bottom: 65px !important;
    }
    .mgb-sp--70 {
        margin-bottom: 70px !important;
    }
    .mgb-sp--75 {
        margin-bottom: 75px !important;
    }
    .mgb-sp--80 {
        margin-bottom: 80px !important;
    }
    .mgb-sp--85 {
        margin-bottom: 85px !important;
    }
    .mgb-sp--90 {
        margin-bottom: 90px !important;
    }
    .mgb-sp--95 {
        margin-bottom: 95px !important;
    }
    .mgb-sp--100 {
        margin-bottom: 100px !important;
    }
    .mgb-sp--105 {
        margin-bottom: 105px !important;
    }
    .mgb-sp--110 {
        margin-bottom: 110px !important;
    }
    .mgb-sp--115 {
        margin-bottom: 115px !important;
    }
    .mgb-sp--120 {
        margin-bottom: 120px !important;
    }
    .mgb-sp--125 {
        margin-bottom: 125px !important;
    }
    .mgb-sp--130 {
        margin-bottom: 130px !important;
    }
    .mgb-sp--135 {
        margin-bottom: 135px !important;
    }
    .mgb-sp--140 {
        margin-bottom: 140px !important;
    }
    .mgb-sp--145 {
        margin-bottom: 145px !important;
    }
    .mgb-sp--150 {
        margin-bottom: 150px !important;
    }
    .mgb-sp--155 {
        margin-bottom: 155px !important;
    }
    .mgb-sp--160 {
        margin-bottom: 160px !important;
    }
    .mgb-sp--165 {
        margin-bottom: 165px !important;
    }
    .mgb-sp--170 {
        margin-bottom: 170px !important;
    }
    .mgb-sp--175 {
        margin-bottom: 175px !important;
    }
    .mgb-sp--180 {
        margin-bottom: 180px !important;
    }
    .mgb-sp--185 {
        margin-bottom: 185px !important;
    }
    .mgb-sp--190 {
        margin-bottom: 190px !important;
    }
    .mgb-sp--195 {
        margin-bottom: 195px !important;
    }
    .mgb-sp--200 {
        margin-bottom: 200px !important;
    }
    .mgb-sp--205 {
        margin-bottom: 205px !important;
    }
    .mgb-sp--210 {
        margin-bottom: 210px !important;
    }
    .mgb-sp--215 {
        margin-bottom: 215px !important;
    }
    .mgb-sp--220 {
        margin-bottom: 220px !important;
    }
    .mgb-sp--225 {
        margin-bottom: 225px !important;
    }
    .mgb-sp--230 {
        margin-bottom: 230px !important;
    }
    .mgb-sp--235 {
        margin-bottom: 235px !important;
    }
    .mgb-sp--240 {
        margin-bottom: 240px !important;
    }
    .mgb-sp--245 {
        margin-bottom: 245px !important;
    }
    .mgb-sp--250 {
        margin-bottom: 250px !important;
    }
}
.mgb-pc--16 {
    margin-bottom: 16px !important;
}

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

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

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

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

@media screen and (max-width: 767px) {
    .mgb-sp--16 {
        margin-bottom: 16px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgb-sp--24 {
        margin-bottom: 24px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgb-sp--32 {
        margin-bottom: 32px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgb-sp--48 {
        margin-bottom: 48px !important;
    }
}

@media screen and (max-width: 767px) {
    .mgb-sp--64 {
        margin-bottom: 64px !important;
    }
}