@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: #3C3C3C;
}
@media screen and (max-width: 767px) {
    .l-header {
        height: 40px;
    }
}
.l-header__container {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    max-width: 1680px;
    width: 100%;
    padding-inline: 30px;
    margin: 0 auto;
}
.l-header__link-txt {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 15px;
    font-weight: 500;
    font-size: 0.875rem;
    color: #fff;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-header__link-txt {
        transition: opacity 300ms;
    }
    .l-header__link-txt:hover {
        opacity: 0.8;
    }
}
.l-header__link-txt::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 11px;
    background-image: url(/wp-content/themes/rainbow-f/assets/img/common/icon_header01.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    transform: translateY(-50%);
}
.l-header__link-txt--2 {
    padding-left: 18px;
}
.l-header__link-txt--2::before {
    width: 13px;
    height: 10px;
    background-image: url(/wp-content/themes/rainbow-f/assets/img/common/icon_header02.svg);
}

/* ---------------------------------------------
*   l-header-nav
--------------------------------------------- */
.l-header-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #fff;
}
@media screen and (min-width: 768px) {
    .l-header-nav::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 5px;
        background-color: #F2F2F2;
    }
}
@media screen and (max-width: 767px) {
    .l-header-nav {
        height: 40px;
    }
}
.l-header-nav__container {
    max-width: 1680px;
    margin: 0 auto;
}
.l-header-nav__head {
    width: calc(44.6428571429% - 30px);
    padding-left: 30px;
}
@media screen and (max-width: 767px) {
    .l-header-nav__head {
        width: auto;
        padding-left: 9px;
    }
}
.l-header-nav__body {
    width: 57.1428571429%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .l-header-nav__body {
        width: auto;
    }
}
.l-header-nav__logo {
    display: block;
    width: 57.2463768116%;
    min-width: 260px;
}
@media screen and (max-width: 767px) {
    .l-header-nav__logo {
        min-width: initial;
        width: 250px;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-header-nav__logo {
        transition: opacity 300ms;
    }
    .l-header-nav__logo:hover {
        opacity: 0.8;
    }
}
.l-header-nav__list {
    display: flex;
    width: 100%;
    height: 100%;
}
.l-header-nav__item {
    width: 25%;
    border-left: 1px solid #F0F0F0;
    text-align: center;
    cursor: pointer;
}
.l-header-nav__item:nth-of-type(1) .l-header-nav__icon {
    width: 20px;
}
.l-header-nav__item:nth-of-type(2) .l-header-nav__icon {
    width: 17px;
}
.l-header-nav__item:nth-of-type(3) .l-header-nav__icon {
    width: 24px;
}
.l-header-nav__item:nth-of-type(4) .l-header-nav__icon {
    width: 20px;
}
.l-header-nav__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 22px;
    text-align: center;
}
.l-header-nav__link::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 75%;
    height: 5px;
    background-color: #F8E500;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.is-current .l-header-nav__link::after {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .l-header-nav__link:hover::after {
        opacity: 1;
    }
}
.l-header-nav__icon {
    margin: 0 auto 7px;
}
.l-header-nav__txt {
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.4705882353;
    color: #3C3C3C;
}
@media screen and (max-width: 1100px) {
    .l-header-nav__txt {
        font-size: 1rem;
    }
}

/* ---------------------------------------------
*   l-header-nav-lv2
--------------------------------------------- */
.l-header-nav-lv2 {
    position: absolute;
    top: 99px;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    background-color: #F4F4F4;
    transform: translateX(-50%);
    transition: opacity 0.5s, visibility 0.5s;
    pointer-events: none;
    cursor: auto;
}
@media screen and (min-width: 768px) {
    .l-header-nav-lv2.is-menu-opened {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}
.l-header-nav-lv2__container {
    max-width: 1072px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ---------------------------------------------
*
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .l-header-menu-button {
        display: none;
        position: relative;
        top: 11px;
        right: 10px;
        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;
    }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
    .l-header-menu-button {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .l-header-menu-button__lines {
        position: relative;
        display: block;
        width: 27px;
        height: 18px;
    }
    .l-header-menu-button__line {
        position: absolute;
        left: 0;
        display: block;
        width: 100%;
        height: 0;
        padding-top: 3px;
        background-color: #3C3C3C;
        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);
    }
    .l-header-menu-button__line--center {
        top: 50%;
        margin-top: -1px;
    }
    .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);
    }
}
/* ---------------------------------------------
*   l-header-nav-menu
--------------------------------------------- */
.l-header-nav-menu {
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: calc(100dvh - 39px);
    padding-block: 8vw;
    padding-left: 5.3333333333vw;
    background-color: #F8E500;
    overflow-y: auto;
    overscroll-behavior-y: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    scrollbar-width: none;
    transition: opacity 0.3s, visibility 0.3s;
}
.l-header-nav-menu::-webkit-scrollbar {
    display: none;
}
@media screen and (max-width: 767px) {
    .is-menu-opened .l-header-nav-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}
/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .l-contents {
        overflow: hidden;
    }
}

/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
.l-breadcrumb {
    background-color: #FAFAFA;
}
@media screen and (max-width: 767px) {
    .l-breadcrumb {
        overflow-x: scroll;
    }
}
.l-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 4px 20px 6px;
}
@media screen and (max-width: 767px) {
    .l-breadcrumb__list {
        gap: 5.3333333333vw;
        padding: 1.0666666667vw 5.3333333333vw 1.6vw;
    }
}
.l-breadcrumb span {
    position: relative;
}
.l-breadcrumb span:not(:last-of-type)::before {
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_nav.svg) 0 0 no-repeat;
    background-size: contain;
    width: 5px;
    height: 6px;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .l-breadcrumb span:not(:last-of-type)::before {
        right: -3.4666666667vw;
        width: 1.3333333333vw;
        height: 1.6vw;
    }
}
.l-breadcrumb span a {
    color: #44afe8;
}
@media (hover: hover) and (pointer: fine) {
    .l-breadcrumb span a:hover {
        text-decoration: underline;
    }
}
.l-breadcrumb span {
    font-weight: 400;
    font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
    .l-breadcrumb span {
        flex-shrink: 0;
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   l-columns
--------------------------------------------- */
.l-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .l-columns {
        display: block;
        max-width: initial;
        width: 84vw;
        padding-inline: 0;
    }
}
.l-columns--archive {
    position: relative;
    padding-top: 100px;
}
@media screen and (max-width: 767px) {
    .l-columns--archive {
        padding-top: 8vw;
    }
}
.l-columns__main {
    width: 73.6111111111%;
}
@media screen and (max-width: 767px) {
    .l-columns__main {
        width: 100%;
    }
}
.l-columns--pb120 {
    padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
    .l-columns--pb120 {
        padding-bottom: 16vw;
    }
}
.l-columns__aside {
    position: sticky;
    top: 120px;
    right: 0;
    width: 20.8333333333%;
    padding-bottom: 60px;
    overflow-y: auto;
}
@media screen and (max-width: 767px) {
    .l-columns__aside {
        position: static;
        width: 100%;
        padding-block: 16vw;
    }
}
.l-columns__aside--pt {
    padding-block: 20px 60px;
}
@media screen and (max-width: 767px) {
    .l-columns__aside--pt {
        padding-block: 16vw;
    }
}

/* ---------------------------------------------
*   l-sidebar
--------------------------------------------- */
@media screen and (min-width: 768px) {
    .l-sidebar__container {
        height: calc(100vh - 180px);
        max-height: 640px;
        overflow-y: scroll;
        scrollbar-width: none;
    }
    .l-sidebar__container::-webkit-scrollbar {
        display: none;
    }
}
.l-sidebar__body {
    padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .l-sidebar__body {
        padding-bottom: 0;
    }
}
.l-sidebar__ttl {
    display: block;
    padding-bottom: 9px;
    border-bottom: 3px solid #333333;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .l-sidebar__ttl {
        padding-bottom: 2.4vw;
        border-bottom: 0.8vw solid #333333;
        font-size: 6.1333333333vw;
    }
}
.l-sidebar__icon {
    flex-shrink: 0;
}
.l-sidebar__nav-item:nth-of-type(n+2) {
    border-top: 1px solid #F0F0F0;
}
@media screen and (max-width: 767px) {
    .l-sidebar__nav-item:nth-of-type(n+2) {
        border-top: 0.2666666667vw solid #F0F0F0;
    }
}
.l-sidebar__nav-item:last-of-type .l-sidebar__link {
    padding-bottom: 0;
}
.l-sidebar__link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-block: 20px;
}
@media screen and (max-width: 767px) {
    .l-sidebar__link {
        gap: 4vw;
        padding-block: 5.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-sidebar__link {
        transition: opacity 300ms;
    }
    .l-sidebar__link:hover {
        opacity: 0.8;
    }
}
.l-sidebar__nav-item {
    font-weight: 500;
    font-size: 1.125rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .l-sidebar__nav-item {
        font-size: 4.8vw;
    }
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    padding-top: 80px;
    border-top: 3px solid #3C3C3C;
    margin-top: -1px;
}
@media screen and (max-width: 767px) {
    .l-footer {
        padding-top: 16vw;
        border-top: 0.8vw solid #3C3C3C;
    }
}
.l-footer__container {
    display: flex;
    gap: 6.2037037037%;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .l-footer__container {
        display: block;
        max-width: initial;
        padding-inline: 8vw;
        text-align: center;
    }
}
.l-footer__left {
    width: 158px;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .l-footer__left {
        width: 100%;
    }
}
.l-footer__logo {
    display: block;
    width: 130px;
}
@media screen and (max-width: 767px) {
    .l-footer__logo {
        width: 34.6666666667vw;
        margin: 0 auto;
    }
}
.l-footer__logo img {
    width: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-footer__logo {
        transition: opacity 300ms;
    }
    .l-footer__logo:hover {
        opacity: 0.8;
    }
}
.l-footer__quote {
    width: 100%;
    margin-top: 63px;
    padding: 14px;
    background-color: #F4F4F4;
    border: 1px solid #E8E8E8;
}
.l-footer__quote-txt {
    display: block;
    font-weight: 400;
    font-size: 0.625rem;
    line-height: 1.7;
    color: #393939;
}
.l-footer__right {
    width: calc(100% - 158px);
}
.l-footer__sitemap-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.3391812865%;
}
@media screen and (max-width: 1050px) {
    .l-footer__sitemap-inner {
        justify-content: unset;
    }
}
.l-footer__another-link {
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid #E8E8E8;
}
.l-footer__another-link-inner {
    display: flex;
    gap: 13.4502923977%;
}
.l-footer__copyright {
    max-width: 1080px;
    padding-block: 20px;
    margin: 60px auto 0;
    border-top: 1px solid #333333;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .l-footer__copyright {
        max-width: initial;
        width: 84vw;
        padding-block: 5.3333333333vw 7.2vw;
        margin: 14.9333333333vw auto 0;
        border-top: 0.2666666667vw solid #F0F0F0;
    }
}
.l-footer__copyright-txt {
    font-weight: 400;
    font-size: 0.75rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .l-footer__copyright-txt {
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   l-footer-nav
--------------------------------------------- */
.l-footer-nav {
    margin-top: 39px;
}
@media screen and (max-width: 767px) {
    .l-footer-nav {
        margin-top: 12.8vw;
    }
}
.l-footer-nav__item:nth-of-type(n+2) {
    margin-top: 15px;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__item:nth-of-type(n+2) {
        margin-top: 5.6vw;
    }
}
.l-footer-nav__link {
    display: block;
    font-weight: 400;
    font-size: 0.8125rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__link {
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        font-size: 3.4666666667vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav__link:hover {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   footer-pagetop
--------------------------------------------- */
.js-pagetop-threshold {
    position: absolute;
    top: 0;
    height: 300px;
}

.footer-pagetop {
    position: fixed;
    bottom: 18px;
    right: 40px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
@media screen and (max-width: 767px) {
    .footer-pagetop {
        bottom: 4.8vw;
        right: 5.3333333333vw;
    }
}
.footer-pagetop.is-show {
    opacity: 1;
    visibility: visible;
}

.footer-pagetop {
    width: 50px;
}
@media screen and (max-width: 767px) {
    .footer-pagetop {
        width: 13.3333333333vw;
    }
}
.footer-pagetop__link {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #333333;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .footer-pagetop__link {
        width: 13.3333333333vw;
        height: 13.3333333333vw;
        border: 0.2666666667vw solid #333333;
    }
}
.footer-pagetop__link::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    display: block;
    width: 13px;
    height: 13px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_pagetop.svg) 0 0 no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    transition: transform 0.4s;
}
@media screen and (max-width: 767px) {
    .footer-pagetop__link::before {
        top: 4.8vw;
        left: 4.8vw;
        width: 3.4666666667vw;
        height: 3.4666666667vw;
    }
}
.footer-pagetop__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_pagetopbg.svg) 0 0 no-repeat;
    background-size: contain;
    z-index: -1;
    display: inline-block;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}
.footer-pagetop__link:hover::before {
    transform: translateY(-5px) rotate(-90deg);
}
.footer-pagetop__link:hover::after {
    transform: scaleX(1.4) scaleY(1.4);
    opacity: 0;
}

/* ---------------------------------------------
*   c-block-safety
--------------------------------------------- */
.c-block-safety {
    padding: 10px;
    border: 3px solid #c8161d;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-block-safety {
        padding: 2.6666666667vw;
        border: 0.8vw solid #c8161d;
    }
}
.c-block-safety__txt {
    font-weight: 700;
    font-size: 1.375rem;
    color: #c8161d;
}
@media screen and (max-width: 767px) {
    .c-block-safety__txt {
        font-size: 4.2666666667vw;
    }
}

/* ---------------------------------------------
*   c-box-keyword
--------------------------------------------- */
.c-box-keyword {
    background-color: #F4F4F4;
    padding-block: 120px;
}
@media screen and (max-width: 767px) {
    .c-box-keyword {
        padding-block: 16vw;
    }
}
.c-box-keyword__container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-box-keyword__container {
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
    }
}

/* ---------------------------------------------
*   c-box-usage
--------------------------------------------- */
.c-box-usage--mt {
    margin-top: 45px;
}
@media screen and (max-width: 767px) {
    .c-box-usage--mt {
        margin-top: 8vw;
    }
}
.c-box-usage__ttl {
    display: inline-block;
    padding: 4px 10px 6px;
    background-color: #767676;
    font-weight: 400;
    font-size: 1.5625rem;
    line-height: 1.2;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-box-usage__ttl {
        padding: 1.6vw 2.6666666667vw 1.6vw;
        font-size: 4.8vw;
        margin-bottom: 0.8vw;
    }
}
.c-box-usage__ttl--mb {
    margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
    .c-box-usage__ttl--mb {
        margin-bottom: 1.3333333333vw;
    }
}
.c-box-usage__img-txt {
    display: inline-block;
    margin-top: 3px;
    font-feature-settings: "palt" 1;
    font-weight: 400;
    font-size: 1.375rem;
    letter-spacing: 0.01em;
    color: #1a1311;
}
@media screen and (max-width: 767px) {
    .c-box-usage__img-txt {
        font-size: 0.875rem;
        margin-top: 0.8vw;
    }
}
.c-box-usage__img-txt--color {
    display: inline;
    color: #DC000C;
}

/* ---------------------------------------------
*   c-box-map
--------------------------------------------- */
.c-box-map {
    width: 100%;
}
.c-box-map__map {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-box-map__map {
        height: 66.6666666667vw;
    }
}
.c-box-map__map iframe {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-box-map__map iframe {
        height: 100%;
    }
}
.c-box-map__body {
    padding: 20px;
}
@media screen and (max-width: 767px) {
    .c-box-map__body {
        padding: 5.3333333333vw;
    }
}
.c-box-map__adress {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-box-map__adress {
        font-size: 3.7333333333vw;
    }
}
.c-box-map__adress-detail {
    margin-top: 20px;
    padding-left: 30px;
}
@media screen and (max-width: 767px) {
    .c-box-map__adress-detail {
        margin-top: 5.3333333333vw;
        padding-left: 0;
    }
}
.c-box-map__adress-detail-txt {
    position: relative;
    padding-left: 15px;
    display: block;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-box-map__adress-detail-txt {
        font-size: 3.7333333333vw;
    }
}
.c-box-map__adress-detail-txt::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-box-map__adress-detail-txt::before {
        top: 2.1333333333vw;
        width: 1.3333333333vw;
        height: 1.3333333333vw;
    }
}

/*---------------------------------------------
/*  c-btn
--------------------------------------------- */
.c-btn {
    position: relative;
    width: 360px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-btn {
        width: 84vw;
    }
}
.c-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    width: 10px;
    height: 16px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_btn_arrow.svg) 0 0 no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .c-btn::after {
        right: 2.6666666667vw;
        width: 2.6666666667vw;
        height: 4.8vw;
    }
}
.c-btn__link {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 14px 13px;
    background: #333333;
    transition: color 0.3s, background 0s;
    z-index: 2;
    font-weight: 700;
    font-size: 1.375rem;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-btn__link {
        padding: 4.2666666667vw 3.4666666667vw 4.2666666667vw;
        font-size: 4.8vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn__link:hover {
        background: #F8E500;
        transition: color 0.3s, background 0s 0.3s;
        color: #333333;
    }
}
.c-btn__link--s {
    font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
    .c-btn__link--s {
        font-size: 4.8vw;
    }
}
.c-btn__link--ss {
    font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
    .c-btn__link--ss {
        font-size: 3.7333333333vw;
    }
}
.c-btn__link::before, .c-btn__link::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.c-btn__link::before {
    background-color: #F8E500;
    transition: transform 0.3s;
    transform: scaleX(0);
    transform-origin: right;
}
.c-btn__link::after {
    border: 2px solid #333333;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .c-btn__link::after {
        border: 0.5333333333vw solid #333333;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn__link:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }
}
.c-btn--white .c-btn__link {
    padding-right: 6px;
    font-size: 1.1875rem;
    color: #333333;
    background: #fff;
}
@media screen and (max-width: 767px) {
    .c-btn--white .c-btn__link {
        padding-right: 4vw;
        font-size: 4.5333333333vw;
    }
}
.c-btn--detail {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-btn--detail {
        width: 84vw;
    }
}
.c-btn--detail::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 23px;
    height: 20px;
    background: url(/wp-content/themes/rainbow-f/assets/img/product/detail/icon_cart.svg) 0 0 no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .c-btn--detail::after {
        right: 4.2666666667vw;
        width: 4.8vw;
        height: 4.5333333333vw;
    }
}
.c-btn--detail .c-btn__link {
    font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
    .c-btn--detail .c-btn__link {
        font-size: 4.8vw;
    }
}
.c-btn--l {
    width: 440px;
}
@media screen and (max-width: 767px) {
    .c-btn--l {
        width: 84vw;
    }
}
.c-btn--l .c-btn__link {
    padding: 23px 13px;
}
@media screen and (max-width: 767px) {
    .c-btn--l .c-btn__link {
        padding: 4.2666666667vw 3.4666666667vw 4.2666666667vw;
    }
}
.c-btn__txt {
    position: relative;
    z-index: 2;
}
.c-btn--w100 {
    width: 100%;
}
.c-btn--movie .c-btn__link {
    font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
    .c-btn--movie .c-btn__link {
        font-size: 3.7333333333vw;
    }
}
.c-btn--movie::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 18px;
    height: 21px;
    background: url(/wp-content/themes/rainbow-f/assets/img/usage/icon_movie.svg) 0 0 no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .c-btn--movie::after {
        right: 4.8vw;
        width: 4.8vw;
        height: 5.6vw;
    }
}

/* ---------------------------------------------
*   c-btn02
--------------------------------------------- */
.c-btn02 {
    position: relative;
    display: block;
    width: 360px;
    height: 60px;
    text-align: center;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-btn02 {
        width: 84vw;
        height: 16vw;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-btn02 {
        transition: opacity 300ms;
    }
    .c-btn02:hover {
        opacity: 0.8;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn02:hover .c-btn02__txt {
        letter-spacing: 0.58em;
        margin-right: -0.28em;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-btn02:hover .c-btn02__txt {
        letter-spacing: 0.58em;
        margin-right: -0.58em;
    }
}
.c-btn02::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 20px;
    height: 20px;
    -webkit-mask-image: url(/wp-content/themes/rainbow-f/assets/img/top/icon_head02.svg);
            mask-image: url(/wp-content/themes/rainbow-f/assets/img/top/icon_head02.svg);
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    transform: translateY(-50%);
    background-color: #F8E500;
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .c-btn02::after {
        right: 3.7333333333vw;
        width: 5.3333333333vw;
        height: 5.3333333333vw;
    }
}
.c-btn02__txt {
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: 0.28em;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-btn02__txt {
        font-size: 4.8vw;
        letter-spacing: 0;
    }
}

/* ---------------------------------------------
*   c-card-usage
--------------------------------------------- */
.c-card-usage {
    position: relative;
    display: block;
    margin-top: 60px;
    width: 100%;
    padding: 30px;
    background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
    .c-card-usage {
        margin-top: 8vw;
        padding: 5.3333333333vw;
    }
}
.c-card-usage--2 {
    padding: 0;
}
.c-card-usage img {
    width: 100%;
    height: 100%;
}
.c-card-usage::before {
    content: "";
    position: absolute;
    right: 27px;
    bottom: 27px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow.svg) 0 0 no-repeat;
    background-size: contain;
    width: 15px;
    height: 16px;
    z-index: 2;
    transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
    .c-card-usage::before {
        right: 3.2vw;
        bottom: 3.2vw;
        width: 2.9333333333vw;
        height: 3.2vw;
    }
}
.c-card-usage::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F8E500;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-card-usage::after {
        right: 1.0666666667vw;
        bottom: 1.0666666667vw;
        width: 7.2vw;
        height: 7.2vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-card-usage:hover::before {
        transform: translateX(2px);
    }
}
.c-card-usage__container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6.2037037037%;
}
@media screen and (max-width: 767px) {
    .c-card-usage__container {
        display: block;
    }
}
.c-card-usage__container--2 {
    gap: 10.003704%;
}
.c-card-usage__container--3 {
    gap: 9.403704%;
}
.c-card-usage__balloon {
    position: relative;
    z-index: 1;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: -12px;
    padding: 4px 3px 4px 11px;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #fff;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-card-usage__balloon {
        margin-top: 0;
        padding: 0.8vw 0.8vw 0.8vw 2.6666666667vw;
        font-size: 3.7333333333vw;
    }
}
.c-card-usage__balloon::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -14px;
    left: 18px;
    background: url(/wp-content/themes/rainbow-f/assets/img/usage/icon_balloon.png) 0 0 no-repeat;
    background-size: contain;
    width: 18px;
    height: 14px;
}
@media screen and (max-width: 767px) {
    .c-card-usage__balloon::before {
        bottom: -3.7333333333vw;
        left: 4.8vw;
        width: 4.8vw;
        height: 3.7333333333vw;
    }
}
.c-card-usage__ttl {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    font-size: 2.625rem;
    line-height: 1.22381;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-card-usage__ttl {
        font-size: 6.4vw;
        margin-top: 5.3333333333vw;
    }
}
.c-card-usage__ttl--s {
    margin-bottom: 5px;
    font-size: 1.5rem;
    line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
    .c-card-usage__ttl--s {
        margin-bottom: 1.3333333333vw;
        font-size: 4.2666666667vw;
    }
}
.c-card-usage__ttl--color {
    display: inline;
    color: #c8161d;
}
.c-card-usage__body {
    width: 50%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-card-usage__body {
        width: 100%;
        margin-top: 5.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-card-category
--------------------------------------------- */
.c-card-category {
    position: relative;
    width: 100%;
    padding: 4.6296296296% 5.5555555556% 5.5555555556% 5.5555555556%;
    background-color: #F4F4F4;
    margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
    .c-card-category {
        padding: 8vw 5.3333333333vw;
        margin-bottom: 8vw;
    }
}
.c-card-category__txt {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .c-card-category__txt {
        margin-bottom: 5.3333333333vw;
    }
}
.c-card-category::before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: -20px;
    left: 50%;
    background: url(/wp-content/themes/rainbow-f/assets/img/faq/icon_triangle.svg) 0 0 no-repeat;
    background-size: contain;
    width: 42px;
    height: 20px;
    translate: -50% 0;
}
@media screen and (max-width: 767px) {
    .c-card-category::before {
        bottom: -20px;
        width: 42px;
        height: 20px;
    }
}

/* ---------------------------------------------
*   c-card-usage02
--------------------------------------------- */
.c-card-usage02 {
    flex-shrink: 0;
    border: 3px solid #c8161d;
}
@media screen and (max-width: 767px) {
    .c-card-usage02 {
        width: 85%;
        margin-inline: auto;
        border: 0.2666666667vw solid #c8161d;
        margin-top: 8vw;
    }
}
@media screen and (max-width: 767px) {
    .c-card-usage02--2 {
        margin-top: 5.3333333333vw;
    }
    .c-card-usage02--2 .c-card-usage02__head {
        padding: 2.1333333333vw;
    }
}
.c-card-usage02--2 .c-card-usage02__body {
    padding: 14px 24px;
}
@media screen and (max-width: 767px) {
    .c-card-usage02--2 .c-card-usage02__body {
        text-align: center;
        padding: 3.2vw;
    }
}
.c-card-usage02__head {
    background-color: #c8161d;
    text-align: center;
    padding: 2vw 0 3vw 0;
}
@media screen and (max-width: 767px) {
    .c-card-usage02__head {
        padding: 2vw 3.2vw 3.2vw 3.2vw;
    }
}
.c-card-usage02__ttl {
    font-weight: 600;
    font-size: 1.5625rem;
    letter-spacing: 0.2em;
    color: #ffec00;
}
@media screen and (max-width: 767px) {
    .c-card-usage02__ttl {
        font-weight: 700;
        font-size: 6.6666666667vw;
        text-align: center;
        color: #fff;
    }
}
@media screen and (max-width: 767px) {
    .c-card-usage02__ttl--bg {
        display: inline-block;
        margin-right: 1.3333333333vw;
        padding-inline: 2.333333vw 1.3333333333vw;
        background-color: #fff;
        border-radius: 2.6666666667vw;
        color: #c8161d;
    }
    .windows .c-card-usage02__ttl--bg {
        padding-bottom: 0.8vw;
    }
    .safari .c-card-usage02__ttl--bg {
        padding-bottom: 0.8vw;
    }
    .android .c-card-usage02__ttl--bg {
        padding-bottom: 0.8vw;
    }
}
.c-card-usage02__body {
    padding: 13px 20px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-card-usage02__body {
        padding: 5.3333333333vw;
        text-align: left;
    }
}
.c-card-usage02__txt {
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.03em;
    line-height: 1.35;
    color: #dc000c;
}
@media screen and (max-width: 767px) {
    .c-card-usage02__txt {
        font-size: 22px;
    }
}

/* ---------------------------------------------
*   c-card-usage03
--------------------------------------------- */
.c-card-usage03 {
    margin-top: 100px;
    background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
    .c-card-usage03 {
        margin-top: 13.3333333333vw;
    }
}
.c-card-usage03__container {
    padding: 54px 50px 60px 50px;
}
@media screen and (max-width: 767px) {
    .c-card-usage03__container {
        padding: 5.3333333333vw;
    }
}
.c-card-usage03__ttl {
    position: relative;
    display: block;
    padding-left: 58px;
    font-weight: 700;
    font-size: 2rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-card-usage03__ttl {
        padding-left: 7.666667vw;
        font-size: 5.3333333333vw;
    }
}
.c-card-usage03__ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background: url(/wp-content/themes/rainbow-f/assets/img/usage/icon_attention.svg) 0 0 no-repeat;
    background-size: contain;
    width: 48px;
    height: 43px;
    translate: 0 -50%;
}
@media screen and (max-width: 767px) {
    .c-card-usage03__ttl::before {
        display: block;
        top: 0.866667vw;
        translate: 0 0;
        width: 6.333333vw;
        height: 5.8vw;
    }
}
@media screen and (max-width: 767px) {
    .iphone .c-card-usage03__ttl::before {
        top: 1.5vw;
    }
}

@media screen and (max-width: 767px) {
    .android .c-card-usage03__ttl::before {
        top: 1.5vw;
    }
}

.c-card-usage03__lead {
    display: block;
    margin-block: 30px;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.4375;
    color: #c8161d;
}
@media screen and (max-width: 767px) {
    .c-card-usage03__lead {
        margin-block: 5.3333333333vw;
        font-size: 4.8vw;
    }
}

/* ---------------------------------------------
*   c-cassette-top
--------------------------------------------- */
.c-cassette-top {
    background-color: #F8E500;
}
.c-cassette-top__container {
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    padding: 104px 20px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top__container {
        display: block;
        max-width: initial;
        padding: 21.3333333333vw 8vw;
    }
    .edge .c-cassette-top__container {
        padding: 21.3333333333vw 5.8666666667vw;
    }
}
.c-cassette-top__head {
    width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
    .c-cassette-top__head {
        width: 100%;
    }
}
.c-cassette-top__body {
    width: 50%;
}
@media screen and (max-width: 767px) {
    .c-cassette-top__body {
        width: 100%;
    }
}
.c-cassette-top__btn {
    margin-top: 65px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top__btn {
        margin-top: 17.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-cassette-top02
--------------------------------------------- */
.c-cassette-top02 {
    background-color: #fff;
}
.c-cassette-top02__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 82px 20px 55px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top02__container {
        display: block;
        max-width: initial;
        padding: 21.3333333333vw 8vw 0;
    }
    .edge .c-cassette-top02__container {
        padding: 21.3333333333vw 5.8666666667vw 0;
    }
}
.c-cassette-top02__body {
    margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
    .c-cassette-top02__body {
        margin: 8vw auto 0;
    }
}

/* ---------------------------------------------
*   c-cassette-top03
--------------------------------------------- */
.c-cassette-top03 {
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .c-cassette-top03 {
        margin-top: -1px;
    }
}
.c-cassette-top03__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 55px 20px 121px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top03__container {
        display: block;
        max-width: initial;
        padding: 21.3333333333vw 8vw;
    }
}
.c-cassette-top03__body {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top03__body {
        margin-top: 8.8vw;
    }
}

/* ---------------------------------------------
*   c-cassette-top04
--------------------------------------------- */
.c-cassette-top04 {
    background-color: #F4F4F4;
}
.c-cassette-top04__container {
    display: flex;
    align-items: center;
    min-height: 560px;
    gap: 3.5714285714%;
}
@media screen and (max-width: 767px) {
    .c-cassette-top04__container {
        display: block;
        padding-right: 0;
        min-height: auto;
    }
}
.c-cassette-top04__body {
    width: 46.4285714286%;
    padding-right: 1.1904761905%;
}
@media screen and (max-width: 767px) {
    .c-cassette-top04__body {
        width: auto;
        padding: 16vw 8vw 21.3333333333vw;
    }
}
.c-cassette-top04__head {
    width: 50%;
    min-height: 560px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top04__head {
        width: 100%;
        min-height: auto;
    }
}
.c-cassette-top04__head img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (max-width: 767px) {
    .c-cassette-top04__head img {
        min-height: auto;
    }
}
.c-cassette-top04__body {
    margin-top: -15px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top04__body {
        margin-top: 0;
    }
}
.c-cassette-top04__btn {
    width: 100%;
    max-width: 360px;
    margin-top: 75px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top04__btn {
        max-width: initial;
        width: 84vw;
        margin-top: 6.1333333333vw;
    }
}

/* ---------------------------------------------
*   c-cassette-top05
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .c-cassette-top05 {
        background-color: #fff;
        margin-top: -1px;
    }
}
.c-cassette-top05__container {
    display: flex;
    background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
    .c-cassette-top05__container {
        display: block;
        background-color: unset;
        padding: 21.3333333333vw 8vw;
    }
}
.c-cassette-top05__head {
    width: 34.8214285714%;
    height: 100%;
    padding-top: 100px;
    padding-right: 9.3452380952%;
    text-align: right;
}
@media screen and (max-width: 767px) {
    .c-cassette-top05__head {
        width: 100%;
        padding-top: 0;
        padding-right: 0;
        text-align: left;
    }
}
.c-cassette-top05__link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 23px;
    margin-inline: auto 0;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.1;
    color: #44afe8;
    border-bottom: 1px solid #44afe8;
}
@media screen and (max-width: 767px) {
    .c-cassette-top05__link {
        margin-top: 13.3333333333vw;
        margin-inline: auto;
        font-size: 5.3333333333vw;
        border-bottom: 0.2666666667vw solid #44afe8;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-cassette-top05__link:hover {
        border-color: transparent;
    }
}
.c-cassette-top05__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_list.svg) 0 0 no-repeat;
    background-size: contain;
    width: 21px;
    height: 21px;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-cassette-top05__link::before {
        left: -8vw;
        width: 5.6vw;
        height: 5.6vw;
    }
}
.c-cassette-top05__body {
    width: 65.1785714286%;
    height: 100%;
    padding: 100px 20px 100px 6.9047619048%;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .c-cassette-top05__body {
        background-color: unset;
        width: 100%;
        height: 100%;
        margin-top: 7.2vw;
        padding: 0;
    }
}

/* ---------------------------------------------
*   c-cassette-top06
--------------------------------------------- */
.c-cassette-top06 {
    background-color: #F8E500;
}
.c-cassette-top06__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 120px 20px 100px;
}
@media screen and (max-width: 767px) {
    .c-cassette-top06__container {
        max-width: initial;
        padding: 21.3333333333vw 8vw;
    }
}
.c-cassette-top06__head {
    text-align: center;
}
.c-cassette-top06__body {
    position: relative;
    width: 370px;
    margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
    .c-cassette-top06__body {
        width: 84vw;
        margin-top: 8vw;
    }
}
.c-cassette-top06__body::before {
    content: "";
    position: absolute;
    right: 17px;
    bottom: 21px;
    -webkit-mask-image: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow.svg);
            mask-image: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow.svg);
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    width: 16px;
    height: 16px;
    background-color: #fff;
    transition: transform 0.3s;
    z-index: 2;
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    .c-cassette-top06__body::before {
        right: 4.5333333333vw;
        bottom: 5.6vw;
        width: 4.2666666667vw;
        height: 4.2666666667vw;
    }
}
.c-cassette-top06__body::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333333;
    z-index: 1;
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    .c-cassette-top06__body::after {
        bottom: 0.8vw;
        width: 13.3333333333vw;
        height: 13.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-cassette-top06__body:hover::before {
        transform: translateX(2px);
    }
}
.c-cassette-top06__link {
    display: block;
    width: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-cassette-top06__link {
        transition: opacity 300ms;
    }
    .c-cassette-top06__link:hover {
        opacity: 0.8;
    }
}
.c-cassette-top06__img img {
    width: 100%;
}
.c-cassette-top06__txt {
    display: block;
    padding-right: 65px;
    margin-top: 10px;
    font-weight: 400;
    font-size: 1.25rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-cassette-top06__txt {
        padding-right: 14.6666666667vw;
        margin-top: 3.2vw;
        font-size: 4.8vw;
        line-height: 1.7;
    }
}

/* ---------------------------------------------
*   c-cassette-01
--------------------------------------------- */
.c-cassette-01 {
    padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
    .c-cassette-01 {
        padding-bottom: 16vw;
    }
}
.c-cassette-01--weed:nth-of-type(n+2) {
    position: relative;
    padding-top: 120px;
}
@media screen and (max-width: 767px) {
    .c-cassette-01--weed:nth-of-type(n+2) {
        padding-top: 16vw;
    }
}
.c-cassette-01--weed:nth-of-type(n+2)::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: url(/wp-content/themes/rainbow-f/assets/img/type/img_line.svg) 0 0 no-repeat;
    background-size: 100% auto;
}
.c-cassette-01--weed:last-of-type {
    padding-bottom: 0;
}
.c-cassette-01__ttl {
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .c-cassette-01__ttl {
        margin-bottom: 4vw;
    }
}

/* ---------------------------------------------
*   c-cassette-02
--------------------------------------------- */
.c-cassette-02--gray {
    background-color: #F4F4F4;
}
.c-cassette-02--pt120 {
    padding-top: 100px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02--pt120 {
        padding-top: 16vw;
    }
}
.c-cassette-02__container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__container {
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
    }
}
.c-cassette-02--inline0 .c-cassette-02__container {
    padding-inline: 0;
}
.c-cassette-02__head {
    margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__head {
        margin-bottom: 8vw;
    }
}
.c-cassette-02__head--30 {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__head--30 {
        margin-bottom: 8vw;
    }
}
.c-cassette-02__inner {
    display: flex;
    -moz-column-gap: 45px;
         column-gap: 45px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__inner {
        display: block;
    }
}
.c-cassette-02__inner-img {
    flex-shrink: 0;
    margin-right: 24px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__inner-img {
        max-width: 375px;
        margin-inline: auto;
        margin-top: 5.3333333333vw;
    }
}
.c-cassette-02__video {
    max-width: 795px;
    height: 503px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__video {
        width: 100%;
        height: 58.6666666667vw;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-cassette-02__video {
        transition: opacity 300ms;
    }
    .c-cassette-02__video:hover {
        opacity: 0.8;
    }
}
.c-cassette-02__video iframe {
    width: 100%;
    height: 100%;
}
.c-cassette-02__txt {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__txt {
        margin-top: 4vw;
    }
}
.c-cassette-02__img {
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__img {
        margin-top: 8vw;
    }
}
.c-cassette-02__toc {
    margin-top: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-cassette-02__toc {
        margin-top: 13.3333333333vw;
        font-size: 4.8vw;
    }
}

/* ---------------------------------------------
*   c-cassette-03
--------------------------------------------- */
.c-cassette-03 {
    padding-block: 50px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03 {
        padding-top: 8vw;
    }
}
.c-cassette-03:first-of-type {
    padding-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03:first-of-type {
        padding-top: 8vw;
    }
}
.c-cassette-03:last-of-type {
    padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03:last-of-type {
        padding-bottom: 16vw;
    }
}
@media screen and (max-width: 767px) {
    .c-cassette-03--pt0:first-of-type {
        padding-top: 0;
    }
}
.c-cassette-03--pb0 {
    padding-bottom: 0 !important;
}
.c-cassette-03--pb160:last-of-type {
    padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03--pb160:last-of-type {
        padding-bottom: 16vw;
    }
}
.c-cassette-03--pb130:last-of-type {
    padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03--pb130:last-of-type {
        padding-bottom: 26.6666666667vw;
    }
}
.c-cassette-03--usage:first-of-type {
    padding-top: 80px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03--usage:first-of-type {
        padding-top: 13.3333333333vw;
    }
}
.c-cassette-03--usage:last-of-type {
    padding-bottom: 0;
}
.c-cassette-03__head {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__head {
        margin-bottom: 5.3333333333vw;
    }
}
.c-cassette-03__head--mb {
    margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__head--mb {
        margin-bottom: 8vw;
    }
}
.c-cassette-03__flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__flex {
        display: block;
    }
}
.c-cassette-03__flex-2 {
    display: flex;
    align-items: center;
    -moz-column-gap: 2.037037037%;
         column-gap: 2.037037037%;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__flex-2 {
        display: block;
    }
}
.c-cassette-03__piriod {
    flex-shrink: 0;
    width: 31.2962962963%;
    padding: 10px 0px 12px 20px;
    border-radius: 19px;
    background-color: #E71E19;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__piriod {
        width: 100%;
        margin-top: 5.3333333333vw;
        padding: 2.6666666667vw;
        border-radius: 5.3333333333vw;
        text-align: center;
    }
}
.c-cassette-03__piriod-txt {
    display: block;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.25;
    color: #f2ff44;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__piriod-txt {
        font-size: 4.2666666667vw;
    }
}
.c-cassette-03__piriod-anno {
    display: block;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.6666666667;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__piriod-anno {
        font-size: 3.7333333333vw;
    }
}
.c-cassette-03__mouse {
    flex-shrink: 0;
    width: 31.4814814815%;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__mouse {
        width: 100%;
        margin-top: 5.3333333333vw;
    }
}
.c-cassette-03__mouse img {
    width: 100%;
    height: auto;
}
.c-cassette-03__growth {
    width: 58.7962962963%;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__growth {
        width: 100%;
    }
}
.c-cassette-03__growth02 {
    position: relative;
    width: 40.7407407407%;
    height: 120px;
}
@media screen and (max-width: 1120px) {
    .c-cassette-03__growth02 {
        height: 10.715vw;
    }
}
@media screen and (max-width: 767px) {
    .c-cassette-03__growth02 {
        width: 100%;
        height: 100%;
        margin-top: 5.3333333333vw;
    }
}
.c-cassette-03__growth02 img {
    width: 100%;
    height: 100%;
}
.c-cassette-03__img-anchor {
    position: absolute;
    width: 25%;
    height: 25%;
    left: 0;
    transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__img-anchor {
        width: 25%;
        height: 5.7vw;
    }
}
.c-cassette-03__img-anchor--1 {
    top: 24.272727%;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__img-anchor--1 {
        top: 6.372727vw;
    }
}
.c-cassette-03__img-anchor--2 {
    top: 48.545455%;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__img-anchor--2 {
        top: 11.945455vw;
    }
}
.c-cassette-03__img-anchor--3 {
    top: 74.818182%;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__img-anchor--3 {
        top: 18.618182vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-cassette-03__img-anchor:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }
}
.c-cassette-03__anno {
    position: relative;
    display: block;
    margin-top: 60px;
    padding-left: 10px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 500;
    font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__anno {
        font-size: 3.7333333333vw;
        margin-top: 8vw;
        padding-left: 1.3333333333vw;
    }
}
.c-cassette-03__anno::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 20px;
    background-color: #F8E500;
    translate: 0 -50%;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__anno::before {
        width: 0.5333333333vw;
        height: 4vw;
    }
}
.c-cassette-03__house {
    margin-block: 40px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__house {
        margin-block: 10.6666666667vw;
    }
}
.c-cassette-03__video {
    width: 100%;
    height: 447px;
    margin: 63px auto 0;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__video {
        width: 84vw;
        height: 47.2vw;
        margin: 5.3333333333vw auto 0;
    }
}
.c-cassette-03__video iframe {
    width: 100%;
    height: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-cassette-03__video {
        transition: opacity 300ms;
    }
    .c-cassette-03__video:hover {
        opacity: 0.8;
    }
}
.c-cassette-03__link:nth-of-type(n+2) {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__link:nth-of-type(n+2) {
        margin-top: 4vw;
    }
}
.c-cassette-03__btn {
    width: 360px;
    margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__btn {
        width: 84vw;
        margin: 8vw auto 0;
    }
}
.c-cassette-03__btn--l {
    width: 510px;
}
@media screen and (max-width: 767px) {
    .c-cassette-03__btn--l {
        width: 84vw;
        margin: 8vw auto 0;
    }
}

/* ---------------------------------------------
*   c-cassette-04
--------------------------------------------- */
.c-cassette-04 {
    padding-block: 40px 55px;
}
@media screen and (max-width: 767px) {
    .c-cassette-04 {
        padding-top: 8vw;
    }
}
.c-cassette-04--2 {
    padding-block: 0;
}
.c-cassette-04--2 .c-cassette-04__head {
    width: 53.7037037037%;
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-04--2 .c-cassette-04__head {
        width: 100%;
        margin-bottom: 4vw;
    }
}
.c-cassette-04--2 .c-cassette-04__body {
    width: 43.7962962963%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-cassette-04--2 .c-cassette-04__body {
        width: 100%;
    }
}
.c-cassette-04__container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
    border-top: 1px solid #DEDEDE;
}
@media screen and (max-width: 767px) {
    .c-cassette-04__container {
        display: block;
        padding-top: 6.6666666667vw;
        border-top: 0.2666666667vw solid #DEDEDE;
    }
}
.c-cassette-04__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-cassette-04__container::before {
        width: 18.6666666667vw;
        height: 1.3333333333vw;
    }
}
.c-cassette-04__head {
    width: 52.7777777778%;
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .c-cassette-04__head {
        width: 100%;
        margin-bottom: 4vw;
    }
}
.c-cassette-04__body {
    width: 41.6666666667%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-cassette-04__body {
        width: 100%;
    }
}
.c-cassette-04__txt {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .c-cassette-04__txt {
        margin-top: 2.6666666667vw;
    }
}
.c-cassette-04__img {
    width: 100%;
}
.c-cassette-04__img img {
    width: 100%;
    height: 100%;
}
.c-cassette-04__category {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 9px;
    padding-bottom: 1px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    background-color: #333333;
    padding-inline: 10px;
}
@media screen and (max-width: 767px) {
    .c-cassette-04__category {
        margin-bottom: 1.8666666667vw;
        font-size: 5.3333333333vw;
        padding-inline: 2.1333333333vw;
        padding-bottom: 0;
    }
}
.windows .c-cassette-04__category {
    padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
    .windows .c-cassette-04__category {
        padding-bottom: 0.5333333333vw;
    }
}

@media screen and (max-width: 767px) {
    .iphone .c-cassette-04__category {
        padding-bottom: 0.8vw;
    }
}

@media screen and (max-width: 767px) {
    .android .c-cassette-04__category {
        padding-bottom: 0.8vw;
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv-2 {
    background-color: #333333;
}
.c-kv-2__conitaner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .c-kv-2__conitaner {
        padding: 9.3333333333vw 5.3333333333vw;
    }
}
.c-kv-2__ttl {
    font-weight: 700;
    font-size: 2.625rem;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-kv-2__ttl {
        font-size: 7.4666666667vw;
    }
}

/* ---------------------------------------------
*   c-kv-3
--------------------------------------------- */
.c-kv-3--mt {
    margin-top: 38px;
}
@media screen and (max-width: 767px) {
    .c-kv-3--mt {
        margin-top: 5.3333333333vw;
    }
}
.c-kv-3__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .c-kv-3__container {
        padding: 9.3333333333vw 5.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
.c-link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto 20px;
    font-weight: 400;
    text-decoration: underline;
    font-size: 1.25rem;
    color: #44afe8;
}
@media screen and (max-width: 767px) {
    .c-link {
        font-size: 3.4666666667vw;
        margin-inline: auto 3.4666666667vw;
    }
}
.c-link--left {
    margin-inline: 20px auto;
}
@media screen and (max-width: 767px) {
    .c-link--left {
        margin-inline: 3.4666666667vw auto;
    }
}
.c-link--left::before {
    right: auto;
    left: -20px;
    rotate: 180deg;
}
@media screen and (max-width: 767px) {
    .c-link--left::before {
        right: auto;
        left: -3.7333333333vw;
    }
}
.c-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 11px;
    height: 16px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow_yellow.svg) 0 0 no-repeat;
    background-size: contain;
    translate: 0 -50%;
}
@media screen and (max-width: 767px) {
    .c-link::before {
        right: -3.7333333333vw;
        width: 2.1333333333vw;
        height: 2.6666666667vw;
    }
}
.c-link--pdf::before {
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_pdf.svg) 0 0 no-repeat;
    background-size: contain;
    right: -22px;
    width: 15px;
    height: 15px;
}
@media screen and (max-width: 767px) {
    .c-link--pdf::before {
        right: -5.8666666667vw;
        width: 4vw;
        height: 4vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-link:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------
*   c-link-2
--------------------------------------------- */
.c-link-2 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    text-decoration: underline;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-link-2 {
        font-size: 4.8vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-link-2:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------
*   c-list-purpose
--------------------------------------------- */
.c-list-purpose {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 3.8759689922%;
}
.c-list-purpose__link {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .c-list-purpose__link {
        gap: 5.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-list-purpose__link {
        transition: opacity 300ms;
    }
    .c-list-purpose__link:hover {
        opacity: 0.8;
    }
}
.c-list-purpose__img {
    width: 85px;
}
@media screen and (max-width: 767px) {
    .c-list-purpose__img {
        width: 22.6666666667vw;
    }
}
.c-list-purpose__img img {
    width: 100%;
    height: 100%;
}
.c-list-purpose__txt {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 21px;
    font-weight: 500;
    font-size: 1.125rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-list-purpose__txt {
        padding-right: 5.6vw;
        font-size: 4.8vw;
    }
}
.c-list-purpose__txt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow_yellow.svg) 0 0 no-repeat;
    background-size: contain;
    width: 14px;
    height: 18px;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-list-purpose__txt::after {
        width: 2.9333333333vw;
        height: 4.2666666667vw;
    }
}
.c-list-purpose--2 {
    gap: 30px 2.9069767442%;
}
@media screen and (max-width: 767px) {
    .c-list-purpose--2 {
        gap: 8vw 2.9069767442%;
    }
}
.c-list-purpose--3 {
    gap: 50px 5.706977%;
}
@media screen and (max-width: 767px) {
    .c-list-purpose--3 {
        flex-wrap: nowrap;
        gap: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-list-purpose--3 .c-list-purpose__item {
        flex-shrink: 0;
        padding-right: 5.3333333333vw;
    }
    .c-list-purpose--3 .c-list-purpose__item:last-of-type {
        padding-right: 9.3333333333vw;
    }
}
.c-list-purpose--3 .c-list-purpose__txt::after {
    transform: translateY(-40%) rotate(90deg);
    right: -5px;
}
@media screen and (max-width: 767px) {
    .c-list-purpose--3 .c-list-purpose__txt::after {
        right: -1.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-nav
--------------------------------------------- */
.c-list-nav {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
    .c-list-nav:nth-of-type(n+2) {
        margin-top: 8vw;
    }
}
.c-list-nav--2 {
    display: flex;
    flex-wrap: wrap;
}
.c-list-nav--left {
    width: 45.6140350877%;
}
@media screen and (max-width: 767px) {
    .c-list-nav--left {
        width: 100%;
        margin-top: 8vw;
        gap: 8vw 5.8666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-nav--left .c-list-nav__item {
        width: 44vw;
    }
}
.c-list-nav--right {
    width: 43.7426900585%;
}
.c-list-nav--right .c-list-nav__item {
    width: 49.877005%;
}
@media screen and (max-width: 1050px) {
    .c-list-nav--right {
        width: 51.74269%;
    }
    .c-list-nav--right .c-list-nav__item {
        width: 45.877005%;
    }
}
.c-list-nav__inner {
    display: flex;
    gap: 7.3170731707%;
}
@media screen and (max-width: 767px) {
    .c-list-nav__inner {
        margin-top: 2.6666666667vw;
    }
}
.c-list-nav__link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 25px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .c-list-nav__link {
        padding-top: 5.3333333333vw;
        font-size: 4.8vw;
    }
}
.c-list-nav__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-list-nav__link::before {
        background-color: #fff;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-nav__link:hover {
        text-decoration: underline;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-nav__link--nohover:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------
*   c-list-nav-lv2
--------------------------------------------- */
.c-list-nav-lv2 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv2 {
        justify-content: unset;
        -moz-column-gap: 6.9333333333vw;
             column-gap: 6.9333333333vw;
    }
    .c-list-nav-lv2 + .c-list-nav-lv2 {
        width: auto;
    }
}
.c-list-nav-lv2--bottom {
    justify-content: unset;
    gap: 12px 114px;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv2--bottom {
        position: relative;
        display: block;
        width: 100%;
        padding-top: 8vw;
        margin-top: 8vw;
    }
    .c-list-nav-lv2--bottom::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 89.3333333333vw;
        height: 1px;
        background-color: #fff;
    }
}
.c-list-nav-lv2--bottom .c-list-nav-lv2__item {
    width: 350px;
}
.c-list-nav-lv2--bottom .c-list-nav-lv2__item:nth-of-type(n+2) {
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv2--bottom .c-list-nav-lv2__item:nth-of-type(n+2) {
        margin-top: 4vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv2--bottom .c-list-nav-lv2__item {
        width: 100%;
    }
}
.c-list-nav-lv2__item {
    width: 180px;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv2__item {
        flex-shrink: 0;
        width: 42.6666666667vw;
    }
}
.c-list-nav-lv2__item:nth-of-type(n+2) {
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv2__item:nth-of-type(n+2) {
        margin-top: 3.2vw;
    }
}
.c-list-nav-lv2__link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 9px;
    font-weight: 400;
    font-size: 0.875rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv2__link {
        margin-left: 2.4vw;
        font-size: 3.7333333333vw;
    }
}
.c-list-nav-lv2__link::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -9px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_nav.svg) 0 0 no-repeat;
    background-size: contain;
    width: 10px;
    height: 8px;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv2__link::before {
        top: 1.8666666667vw;
        left: -2.4vw;
        width: 2.6666666667vw;
        height: 2.1333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-nav-lv2__link:hover {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-list-nav-lv3
--------------------------------------------- */
.c-list-nav-lv3__item {
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv3__item {
        margin-top: 3.2vw;
    }
}
.c-list-nav-lv3__link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 22px;
    font-weight: 400;
    font-size: 0.875rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv3__link {
        padding-left: 5.8666666667vw;
        font-size: 3.7333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-nav-lv3__link:hover {
        text-decoration: underline;
    }
}
.c-list-nav-lv3__link::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 8px;
    width: 10px;
    height: 20px;
    border-bottom: 1px solid #707070;
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .c-list-nav-lv3__link::before {
        border-left: unset;
        border-bottom: 0.2666666667vw solid #707070;
        top: -1.8666666667vw;
        left: 2.1333333333vw;
        width: 2.6666666667vw;
        height: 5.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-top
--------------------------------------------- */
.c-list-top {
    display: flex;
    gap: 0 3.7037037037%;
}
@media screen and (max-width: 767px) {
    .c-list-top {
        display: block;
    }
}
.c-list-top__item {
    position: relative;
    width: 22.2222222222%;
    height: 220px;
}
@media screen and (max-width: 767px) {
    .c-list-top__item {
        width: 100%;
        height: auto;
    }
    .c-list-top__item:nth-of-type(n+2) {
        margin-top: 10.6666666667vw;
    }
}
.c-list-top__item::before {
    content: "";
    position: absolute;
    right: 26px;
    bottom: -9px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow.svg) 0 0 no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    z-index: 2;
    transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-top__item::before {
        right: 6.1333333333vw;
        bottom: -2.4vw;
        width: 4.8vw;
        height: 4.8vw;
    }
}
.c-list-top__item::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F8E500;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-list-top__item::after {
        right: 3.4666666667vw;
        bottom: -5.3333333333vw;
        width: 10.6666666667vw;
        height: 10.6666666667vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-top__item:hover::before {
        transform: translateX(2px);
    }
}
.c-list-top__item:nth-of-type(2) .c-list-top__link {
    padding-block: 57px 43px;
}
@media screen and (max-width: 767px) {
    .c-list-top__item:nth-of-type(2) .c-list-top__link {
        padding-block: 6.9333333333vw 4.5333333333vw;
    }
}
.c-list-top__item:nth-of-type(3) .c-list-top__link {
    padding-block: 54px 43px;
    padding-inline: 10px;
}
@media screen and (max-width: 767px) {
    .c-list-top__item:nth-of-type(3) .c-list-top__link {
        padding-block: 5.3333333333vw 4.8vw;
    }
}
.c-list-top__item:nth-of-type(4) .c-list-top__link {
    padding-block: 59px 43px;
    padding-inline: 10px;
}
@media screen and (max-width: 767px) {
    .c-list-top__item:nth-of-type(4) .c-list-top__link {
        padding-block: 7.2vw 4.2666666667vw;
    }
}
.c-list-top__link {
    display: block;
    width: 100%;
    height: 100%;
    padding-block: 44px 43px;
    background-color: #fff;
    text-align: center;
    gap: 0;
}
@media screen and (max-width: 767px) {
    .c-list-top__link {
        padding-block: 3.2vw 4.5333333333vw;
        padding-inline: 0;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-list-top__link {
        transition: opacity 300ms;
    }
    .c-list-top__link:hover {
        opacity: 0.8;
    }
}
.c-list-top__icon {
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.c-list-top__icon--1 {
    width: 65px;
}
@media screen and (max-width: 767px) {
    .c-list-top__icon--1 {
        width: 17.3333333333vw;
    }
}
.c-list-top__icon--2 {
    width: 38px;
}
@media screen and (max-width: 767px) {
    .c-list-top__icon--2 {
        width: 10.1333333333vw;
    }
}
.c-list-top__icon--3 {
    width: 42px;
}
@media screen and (max-width: 767px) {
    .c-list-top__icon--3 {
        width: 11.2vw;
    }
}
.c-list-top__icon--4 {
    width: 32px;
}
@media screen and (max-width: 767px) {
    .c-list-top__icon--4 {
        width: 8.5333333333vw;
    }
}
.c-list-top__icon img {
    width: 100%;
    height: 100%;
}
.c-list-top__txt {
    display: block;
    margin-top: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-list-top__txt {
        margin-top: 3.2vw;
        font-size: 5.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-top02
--------------------------------------------- */
.c-list-top02 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 21px 3.7037037037%;
}
@media screen and (max-width: 767px) {
    .c-list-top02 {
        margin-block: 6.9333333333vw 16vw;
        gap: 4.2666666667vw 4.8vw;
    }
}
.c-list-top02__item {
    width: 30.7407407407%;
}
@media screen and (max-width: 767px) {
    .c-list-top02__item {
        width: 39.4666666667vw;
    }
}
.c-list-top02__link {
    display: block;
    width: 100%;
    height: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-list-top02__link {
        transition: opacity 300ms;
    }
    .c-list-top02__link:hover {
        opacity: 0.8;
    }
}
.c-list-top02__link img {
    width: 100%;
}

/* ---------------------------------------------
*   c-list-search
--------------------------------------------- */
.c-list-search {
    display: flex;
    flex-wrap: wrap;
    gap: 45px 0;
}
@media screen and (max-width: 1120px) {
    .c-list-search {
        justify-content: center;
    }
}
@media screen and (max-width: 767px) {
    .c-list-search {
        justify-content: unset;
        gap: 8.5333333333vw 4vw;
    }
}
.c-list-search__item {
    width: 270px;
    text-align: center;
}
@media screen and (max-width: 1120px) {
    .c-list-search__item {
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .c-list-search__item {
        width: 40vw;
        margin: 0;
        text-align: left;
    }
}
.c-list-search__img {
    position: relative;
}
.c-list-search__img img {
    width: 200px;
}
@media screen and (max-width: 767px) {
    .c-list-search__img img {
        width: 100%;
    }
}
.c-list-search__img::before {
    content: "";
    position: absolute;
    right: 60px;
    bottom: 16px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow.svg) 0 0 no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    z-index: 2;
    transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-search__img::before {
        right: 3.4666666667vw;
        bottom: 4vw;
        width: 3.4666666667vw;
        height: 3.4666666667vw;
    }
}
.c-list-search__img::after {
    content: "";
    position: absolute;
    right: 45px;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F8E500;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-list-search__img::after {
        right: 1.8666666667vw;
        bottom: 2.1333333333vw;
        width: 7.2vw;
        height: 7.2vw;
    }
}
.c-list-search__link {
    display: block;
    width: 100%;
    height: 100%;
}
.c-list-search__link .c-list-search__img img {
    transform: scale(1);
    transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-search__link:hover .c-list-search__img img {
        transform: scale(1.05);
    }
    .c-list-search__link:hover .c-list-search__img::before {
        transform: translateX(2px);
    }
}
.c-list-search__icon {
    width: 74.0740740741%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .c-list-search__icon {
        width: 100%;
    }
}
.c-list-search__txt {
    display: block;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2142857143;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .c-list-search__txt {
        margin-top: 2.6666666667vw;
        font-size: 5.3333333333vw;
        line-height: 1.4;
        font-weight: 500;
    }
}

/* ---------------------------------------------
*   c-list-notice
--------------------------------------------- */
.c-list-notice {
    display: flex;
    gap: 15px;
}
@media screen and (max-width: 767px) {
    .c-list-notice {
        gap: 3.7333333333vw;
    }
}
.c-list-notice__txt--color {
    color: #E2D109;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-list-notice__txt {
        transition: opacity 300ms;
    }
    .c-list-notice__txt:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   c-list-recommended
--------------------------------------------- */
.c-list-recommended {
    display: flex;
    justify-content: center;
    gap: 32px;
}
@media screen and (max-width: 767px) {
    .c-list-recommended {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 16vw;
        padding-inline: 25.0666666667vw;
        overflow-x: scroll;
        scrollbar-width: none;
    }
}
.c-list-recommended::-webkit-scrollbar {
    display: none;
}
.c-list-recommended__item {
    width: 246px;
}
@media screen and (max-width: 767px) {
    .c-list-recommended__item {
        width: 50.1333333333vw;
        flex-shrink: 0;
    }
}
.c-list-recommended__item img {
    width: 100%;
}
.c-list-recommended__link {
    display: block;
    width: 100%;
    height: 100%;
}
.c-list-recommended__link .c-list-recommended__img {
    overflow: hidden;
}
.c-list-recommended__link .c-list-recommended__img img {
    transition: transform 0.3s;
    transform: scale(1);
}
@media (hover: hover) and (pointer: fine) {
    .c-list-recommended__link:hover .c-list-recommended__img img {
        transform: scale(1.05);
    }
}
.c-list-recommended__txt {
    position: relative;
    display: block;
    margin-top: 12px;
    padding-left: 15px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-list-recommended__txt {
        margin-top: 3.7333333333vw;
        padding-left: 4vw;
        font-size: 5.3333333333vw;
        font-weight: 500;
    }
}
.c-list-recommended__txt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-list-recommended__txt::before {
        width: 1.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-new-top
--------------------------------------------- */
.c-list-new-top__item {
    display: flex;
    align-items: center;
    gap: 23px;
}
@media screen and (max-width: 767px) {
    .c-list-new-top__item {
        display: block;
    }
}
.c-list-new-top__item:nth-of-type(n+2) {
    margin-top: 16px;
}
@media screen and (max-width: 767px) {
    .c-list-new-top__item:nth-of-type(n+2) {
        margin-top: 7.2vw;
    }
}
.c-list-new-top__day {
    flex-shrink: 0;
    font-weight: 400;
    font-size: 1.25rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-list-new-top__day {
        display: block;
        margin-bottom: 1.6vw;
        font-size: 5.3333333333vw;
    }
}
.c-list-new-top__link {
    display: inline-block;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #44afe8;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .c-list-new-top__link {
        display: inline;
        font-size: 4.8vw;
        line-height: 1.7777777778;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-new-top__link:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------
*   c-list-bnr
--------------------------------------------- */
.c-list-bnr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px 20px 42px;
    gap: 39px 3.4821428571%;
}
@media screen and (max-width: 767px) {
    .c-list-bnr {
        display: block;
        width: 64.2666666667vw;
        max-width: initial;
        padding: 21.3333333333vw 0;
    }
}
.c-list-bnr__item {
    max-width: 240px;
}
@media screen and (max-width: 767px) {
    .c-list-bnr__item {
        max-width: initial;
    }
    .c-list-bnr__item:nth-of-type(n+2) {
        margin-top: 8vw;
    }
}
.c-list-bnr__link {
    display: block;
    width: 100%;
    height: 100%;
}
.c-list-bnr__link img {
    width: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-list-bnr__link {
        transition: opacity 300ms;
    }
    .c-list-bnr__link:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   c-list-item
--------------------------------------------- */
.c-list-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 60px;
    width: 100%;
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .c-list-item {
        margin-top: 8vw;
        justify-content: space-between;
        gap: 5.3333333333vw 0;
    }
}
.c-list-item--2 {
    justify-content: unset;
    gap: 60px 5.5555555556%;
}
@media screen and (max-width: 767px) {
    .c-list-item--2 {
        gap: 5.3333333333vw 0;
        justify-content: space-between;
    }
}
.c-list-item--2 .c-list-item__item {
    width: 29.6296296296%;
}
@media screen and (max-width: 767px) {
    .c-list-item--2 .c-list-item__item {
        width: 42.6666666667vw;
    }
}
.c-list-item--2 .c-list-item__img::before {
    content: "";
    position: absolute;
    right: 8.4375%;
    bottom: 10.344538%;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow.svg) 0 0 no-repeat;
    background-size: contain;
    width: 4.6875%;
    height: 6.7226890756%;
    z-index: 2;
    transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-item--2 .c-list-item__img::before {
        right: 3.4666666667vw;
        bottom: 3.2vw;
        width: 2.9333333333vw;
        height: 3.2vw;
    }
}
.c-list-item--2 .c-list-item__img::after {
    content: "";
    position: absolute;
    right: 3.125%;
    bottom: 3.125%;
    width: 15.625%;
    height: 21.0084033613%;
    border-radius: 50%;
    background-color: #F8E500;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-list-item--2 .c-list-item__img::after {
        right: 1.3333333333vw;
        bottom: 1.3333333333vw;
        width: 7.2vw;
        height: 7.2vw;
    }
}
@media screen and (min-width: 768px) {
    .c-list-item--2 .c-list-item__img img {
        width: 75%;
    }
}
@media screen and (max-width: 767px) {
    .c-list-item--2 .c-list-item__img img {
        width: 24.5333333333vw;
        height: 24.5333333333vw;
    }
}
.c-list-item--2 .c-list-item__name {
    margin-block: 20px 10px;
}
@media screen and (max-width: 767px) {
    .c-list-item--2 .c-list-item__name {
        margin-block: 2.6666666667vw 2.6666666667vw;
    }
}
@media screen and (min-width: 768px) {
    .c-list-item--3 .c-list-item__img img {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .c-list-item--3 .c-list-item__img img {
        width: 100%;
        height: auto;
    }
}
.c-list-item--3 .c-list-item__name {
    margin-block: 20px 10px;
}
@media screen and (max-width: 767px) {
    .c-list-item--3 .c-list-item__name {
        margin-block: 2.6666666667vw 2.6666666667vw;
    }
}
.c-list-item__item {
    width: 46.5408805031%;
}
@media screen and (max-width: 767px) {
    .c-list-item__item {
        width: 39.2vw;
    }
}
.c-list-item__link {
    display: block;
    width: 100%;
    height: 100%;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-item__link:hover .c-list-item__img img {
        transform: scale(1.05);
    }
    .c-list-item__link:hover .c-list-item__img::before {
        transform: translateX(2px);
    }
}
.c-list-item__img {
    position: relative;
    overflow: hidden;
    border: 1px solid #F4F4F4;
    background-color: #fff;
    text-align: center;
}
.c-list-item__img::before {
    content: "";
    position: absolute;
    right: 7.2972972973%;
    bottom: 10.044538%;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow.svg) 0 0 no-repeat;
    background-size: contain;
    width: 4.0540540541%;
    height: 6.7226890756%;
    z-index: 2;
    transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-item__img::before {
        right: 3.4666666667vw;
        bottom: 3.2vw;
        width: 2.9333333333vw;
        height: 3.2vw;
    }
}
.c-list-item__img::after {
    content: "";
    position: absolute;
    right: 2.7027027027%;
    bottom: 2.7027027027%;
    width: 13.5135135135%;
    height: 21.0084033613%;
    border-radius: 50%;
    background-color: #F8E500;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-list-item__img::after {
        right: 1.3333333333vw;
        bottom: 1.3333333333vw;
        width: 7.2vw;
        height: 7.2vw;
    }
}
.c-list-item__img img {
    transform: scale(1);
    transition: all 0.3s;
}
@media screen and (min-width: 768px) {
    .c-list-item__img img {
        width: 64.8648648649%;
    }
}
@media screen and (max-width: 767px) {
    .c-list-item__img img {
        width: 24.5333333333vw;
        height: 24.5333333333vw;
    }
}
.c-list-item__name {
    display: block;
    margin-block: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-list-item__name {
        margin-block: 2.6666666667vw;
        font-size: 4.2666666667vw;
    }
}
.c-list-item__name--new {
    position: relative;
    padding-left: 31px;
}
@media screen and (max-width: 767px) {
    .c-list-item__name--new {
        padding-left: 8.2666666667vw;
    }
}
.c-list-item__name--new::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    background: url("/wp-content/themes/rainbow-f/assets/img/common/icon_new.png") 0 0 no-repeat;
    background-size: contain;
    width: 26px;
    height: 12px;
}
@media screen and (max-width: 767px) {
    .c-list-item__name--new::before {
        top: 1.5vw;
        width: 6.9333333333vw;
        height: 3.2vw;
    }
}
.c-list-item__txt {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-list-item__txt {
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-item-02
--------------------------------------------- */
.c-list-item-02 {
    display: flex;
    flex-wrap: wrap;
    gap: 70px 5.5555555556%;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
    .c-list-item-02 {
        gap: 5.3333333333vw 0;
        justify-content: space-between;
        margin-top: 16vw;
        margin-bottom: 21.3333333333vw;
    }
}
.c-list-item-02__item {
    width: 29.6296296296%;
}
@media screen and (max-width: 767px) {
    .c-list-item-02__item {
        width: 42.6666666667vw;
    }
}
.c-list-item-02__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.c-list-item-02__link::before {
    content: "";
    position: absolute;
    right: 27px;
    bottom: 10px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow.svg) 0 0 no-repeat;
    background-size: contain;
    width: 15px;
    height: 16px;
    z-index: 2;
    transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-item-02__link::before {
        right: 3.2vw;
        bottom: 0.5333333333vw;
        width: 2.9333333333vw;
        height: 3.2vw;
    }
}
.c-list-item-02__link::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: -7px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F8E500;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-list-item-02__link::after {
        right: 1.0666666667vw;
        bottom: -1.3333333333vw;
        width: 7.2vw;
        height: 7.2vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-item-02__link:hover::before {
        transform: translateX(2px);
    }
    .c-list-item-02__link:hover .c-list-item-02__img img {
        transform: scale(1.05);
    }
}
.c-list-item-02__img {
    overflow: hidden;
}
.c-list-item-02__img img {
    transform: scale(1);
    transition: all 0.3s;
}
.c-list-item-02__txt {
    display: block;
    margin-top: 20px;
    padding-right: 65px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
    .c-list-item-02__txt {
        padding-right: 9.3333333333vw;
        margin-top: 2.6666666667vw;
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   c-list-link
--------------------------------------------- */
.c-list-link {
    padding-left: 5px;
}
@media screen and (max-width: 767px) {
    .c-list-link {
        padding-left: 1.3333333333vw;
    }
}
.c-list-link__item {
    position: relative;
    padding-left: 20px;
}
@media screen and (max-width: 767px) {
    .c-list-link__item {
        padding-left: 5.3333333333vw;
    }
}
.c-list-link__item:nth-of-type(n+2) {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .c-list-link__item:nth-of-type(n+2) {
        margin-top: 2.6666666667vw;
    }
}
.c-list-link__item::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b4b29d;
}
@media screen and (max-width: 767px) {
    .c-list-link__item::before {
        top: 2.6666666667vw;
        width: 2.6666666667vw;
        height: 2.6666666667vw;
    }
}
.c-list-link__link {
    font-weight: 400;
    font-size: 1.25rem;
    text-align: left;
    color: #44afe8;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .c-list-link__link {
        font-size: 5.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-link__link:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------
*   c-list-detail
--------------------------------------------- */
.c-list-detail {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .c-list-detail {
        margin-top: 2.6666666667vw;
    }
}
.c-list-detail__item {
    display: flex;
    gap: 25px;
}
@media screen and (max-width: 767px) {
    .c-list-detail__item {
        display: block;
    }
}
.c-list-detail__item:nth-of-type(n+2) {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-list-detail__item:nth-of-type(n+2) {
        margin-top: 8vw;
    }
}
.c-list-detail__term {
    display: block;
    flex-shrink: 0;
    width: 103px;
    font-weight: 700;
    font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
    .c-list-detail__term {
        width: auto;
        font-size: 4.2666666667vw;
    }
}
.c-list-detail__description {
    display: block;
    font-weight: 400;
    font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
    .c-list-detail__description {
        margin-top: 2.6666666667vw;
        font-size: 3.7333333333vw;
    }
}
.c-list-detail__indent {
    display: flex;
}
.c-list-detail__indent--left {
    flex-shrink: 0;
}

/* ---------------------------------------------
*   c-list-location
--------------------------------------------- */
.c-list-location {
    display: flex;
    gap: 1.2037037037%;
    margin-block: 30px;
}
@media screen and (max-width: 767px) {
    .c-list-location {
        flex-wrap: wrap;
        gap: 4vw;
    }
}
.c-list-location__item {
    width: 24.0740740741%;
}
@media screen and (max-width: 767px) {
    .c-list-location__item {
        width: 42.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-list-weeding
--------------------------------------------- */
.c-list-weeding {
    display: flex;
    gap: 6.9444444444%;
}
@media screen and (max-width: 767px) {
    .c-list-weeding {
        display: block;
        margin-top: 8vw;
    }
}
.c-list-weeding__item {
    position: relative;
    width: 28.7037037037%;
}
@media screen and (max-width: 767px) {
    .c-list-weeding__item {
        width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .c-list-weeding__item:not(:last-of-type) .c-list-weeding__img {
        position: relative;
    }
    .c-list-weeding__item:not(:last-of-type) .c-list-weeding__img::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -15.4838709677%;
        background: url(/wp-content/themes/rainbow-f/assets/img/herbicide/icon_01.svg) 0 0 no-repeat;
        background-size: contain;
        width: 18px;
        height: 23px;
        translate: 0 -50%;
    }
}
@media screen and (max-width: 767px) {
    .c-list-weeding__item:nth-of-type(n+2) {
        margin-top: 18.6666666667vw;
    }
    .c-list-weeding__item:not(:last-of-type)::after {
        content: "";
        position: absolute;
        bottom: -12vw;
        left: 50%;
        background: url(/wp-content/themes/rainbow-f/assets/img/herbicide/icon_01.svg) 0 0 no-repeat;
        background-size: contain;
        width: 4.8vw;
        height: 6.1333333333vw;
        transform: translateX(-50%) rotate(90deg);
    }
}
.c-list-weeding__img {
    margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
    .c-list-weeding__img {
        margin-bottom: 2.6666666667vw;
    }
}
.c-list-weeding__img img {
    width: 100%;
    height: 100%;
}
.c-list-weeding__txt {
    display: block;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
}
.c-list-weeding__txt--indent {
    text-indent: -1em;
    padding-left: 1em;
}
.c-list-weeding__txt--red {
    color: #c8161d;
}

/* ---------------------------------------------
*   c-list-usage
--------------------------------------------- */
.c-list-usage {
    margin-top: 29px;
}
@media screen and (max-width: 767px) {
    .c-list-usage {
        margin-top: 2.6666666667vw;
    }
}
.c-list-usage__item {
    position: relative;
    padding-left: 20px;
}
@media screen and (max-width: 767px) {
    .c-list-usage__item {
        padding-left: 4vw;
    }
}
.c-list-usage__item:nth-of-type(n+2) {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .c-list-usage__item:nth-of-type(n+2) {
        margin-top: 2.6666666667vw;
    }
}
.c-list-usage__item::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b4b29d;
}
@media screen and (max-width: 767px) {
    .c-list-usage__item::before {
        top: 1.8666666667vw;
        width: 2.6666666667vw;
        height: 2.6666666667vw;
    }
}
.c-list-usage__txt {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-list-usage__txt {
        font-size: 4.2666666667vw;
    }
}
.c-list-usage__txt--anno {
    font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
    .c-list-usage__txt--anno {
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-product-detail02
--------------------------------------------- */
.c-list-product-detail02 {
    display: flex;
    flex-wrap: wrap;
    gap: 3.1446540881%;
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .c-list-product-detail02 {
        gap: 5.6vw;
        margin-top: 8vw;
    }
}
.c-list-product-detail02__item {
    width: 22.641509434%;
}
@media screen and (max-width: 767px) {
    .c-list-product-detail02__item {
        width: 39.2vw;
    }
}
.c-list-product-detail02__img img {
    width: 100%;
}
.c-list-product-detail02__txt {
    display: block;
    margin-top: 15px;
    font-weight: 500;
    font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
    .c-list-product-detail02__txt {
        margin-top: 2.6666666667vw;
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-faq
--------------------------------------------- */
.c-list-faq {
    margin: 63px auto 0;
}
@media screen and (max-width: 767px) {
    .c-list-faq {
        margin: 8vw auto 0;
    }
}
.c-list-faq__item:nth-of-type(n+2) {
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .c-list-faq__item:nth-of-type(n+2) {
        margin-top: 8vw;
    }
}
.c-list-faq__head {
    position: relative;
    display: flex;
    padding-right: 70px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DEDEDE;
}
@media screen and (max-width: 767px) {
    .c-list-faq__head {
        padding-right: 10.6666666667vw;
        padding-bottom: 5.3333333333vw;
        border-bottom: 0.2666666667vw solid #DEDEDE;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-list-faq__head {
        transition: opacity 300ms;
    }
    .c-list-faq__head:hover {
        opacity: 0.8;
    }
}
.c-list-faq__question {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    width: 60px;
    font-weight: 700;
    font-size: 2rem;
    color: #E2D109;
}
@media screen and (max-width: 767px) {
    .c-list-faq__question {
        width: 10.6666666667vw;
        font-size: 6.6666666667vw;
    }
}
.c-list-faq__trigger {
    display: block;
    width: 100%;
    padding-left: 20px;
    border-left: 1px solid #DEDEDE;
    font-family: "Noto Sans JP";
    font-weight: 400;
    font-size: 1.25rem;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .c-list-faq__trigger {
        padding-left: 5.3333333333vw;
        border-left: 0.2666666667vw solid #DEDEDE;
        font-size: 3.7333333333vw;
    }
}
.c-list-faq__txt {
    color: #333333;
}
.c-list-faq__icn {
    position: absolute;
    top: 0;
    right: 12px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-list-faq__icn {
        top: 1.3333333333vw;
        right: 0;
        width: 8vw;
        height: 8vw;
    }
}
.c-list-faq__icn::before, .c-list-faq__icn::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    translate: 0 -50%;
    width: 15px;
    height: 2px;
    background-color: #fff;
    transition: background-color 0.3s, rotate 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-faq__icn::before, .c-list-faq__icn::after {
        right: 2.6666666667vw;
        width: 2.6666666667vw;
        height: 0.5333333333vw;
    }
}
.c-list-faq__icn::before {
    rotate: 90deg;
}
.is-acc-open .c-list-faq__icn::before {
    rotate: 0deg;
}

.c-list-faq__body {
    display: none;
    padding-top: 20px;
}
@media screen and (max-width: 767px) {
    .c-list-faq__body {
        padding-top: 5.3333333333vw;
    }
}
.c-list-faq__inner {
    display: flex;
}
.c-list-faq__answer-icn {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    width: 60px;
    margin-top: -6px;
    font-weight: 700;
    font-size: 2rem;
    color: #9D9D9D;
}
@media screen and (max-width: 767px) {
    .c-list-faq__answer-icn {
        width: 10.6666666667vw;
        padding-top: 1.3333333333vw;
        margin-top: 0;
        font-size: 6.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-list-product-detail03
--------------------------------------------- */
.c-list-product-detail03 {
    display: flex;
    gap: 3.1446540881%;
}
@media screen and (max-width: 767px) {
    .c-list-product-detail03 {
        flex-wrap: wrap;
        gap: 5.6vw;
    }
}
.c-list-product-detail03__item {
    width: 22.641509434%;
}
@media screen and (max-width: 767px) {
    .c-list-product-detail03__item {
        width: 39.2vw;
    }
}
.c-list-product-detail03__link {
    display: block;
    transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-product-detail03__link:hover {
        opacity: 0.8;
    }
    .c-list-product-detail03__link:hover .c-list-product-detail03__img img {
        transform: scale(1.05);
    }
}
.c-list-product-detail03__img {
    overflow: hidden;
}
.c-list-product-detail03__img img {
    transform: scale(1);
    transition: transform 0.3s;
}
.c-list-product-detail03__txt {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-list-product-detail03__txt {
        margin-top: 2.6666666667vw;
        font-size: 4vw;
    }
}

/* ---------------------------------------------
*   c-list-contact
--------------------------------------------- */
.c-list-contact {
    display: flex;
    -moz-column-gap: 5.255556%;
         column-gap: 5.255556%;
}
@media screen and (max-width: 767px) {
    .c-list-contact {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .c-list-contact__item:nth-of-type(n+2) {
        margin-top: 8vw;
    }
}
.c-list-contact__link {
    display: flex;
    align-items: end;
    -moz-column-gap: 15px;
         column-gap: 15px;
}
@media screen and (max-width: 767px) {
    .c-list-contact__link {
        display: block;
        width: 72vw;
        margin: 0 auto;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-contact__link:hover .c-list-contact__icn::before {
        transform: translate(-20%, -50%);
    }
    .c-list-contact__link:hover .c-list-contact__txt {
        opacity: 0.8;
    }
    .c-list-contact__link:hover .c-list-contact__img {
        opacity: 0.8;
    }
}
.c-list-contact__img {
    transition: 0.3s;
}
.c-list-contact__img--1 {
    width: 185px;
}
@media screen and (max-width: 767px) {
    .c-list-contact__img--1 {
        width: 70%;
        margin: 0 auto;
    }
}
.c-list-contact__img--2 {
    width: 370px;
}
@media screen and (max-width: 830px) {
    .c-list-contact__img--2 {
        width: 310px;
    }
}
@media screen and (max-width: 767px) {
    .c-list-contact__img--2 {
        width: 100%;
    }
}
.c-list-contact__img img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .c-list-contact__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 4vw;
    }
}
.c-list-contact__txt {
    display: block;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    transition: 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-contact__txt {
        margin-bottom: 2.6666666667vw;
        font-size: 4.2666666667vw;
    }
}
.c-list-contact__icn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-list-contact__icn {
        width: 8vw;
        height: 8vw;
    }
}
.c-list-contact__icn::before {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow_white.svg) 0 0 no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-contact__icn::before {
        width: 3.2vw;
        height: 3.2vw;
    }
}

/* ---------------------------------------------
*   c-list01
--------------------------------------------- */
.c-list01__item {
    display: flex;
    gap: 27px;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-list01__item {
        font-size: 3.7333333333vw;
        gap: 2.6666666667vw;
    }
}
@media screen and (max-width: 767px) {
    .c-list01__item:nth-of-type(n+2) {
        margin-top: 2.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-list-sitemap
--------------------------------------------- */
.c-list-sitemap--company {
    position: relative;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #DEDEDE;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap--company {
        margin-top: 8vw;
        padding-top: 6.6666666667vw;
    }
}
.c-list-sitemap--company .c-list-sitemap__link {
    padding-top: 0;
}
.c-list-sitemap--company .c-list-sitemap__link::before {
    content: none;
}
.c-list-sitemap--company::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap--company::before {
        width: 18.6666666667vw;
        height: 1.3333333333vw;
    }
}
.c-list-sitemap--company-2 {
    max-width: 1120px;
    margin: 100px auto 0;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap--company-2 {
        max-width: initial;
        margin-top: 16vw;
        width: 89.3333333333vw;
        padding-inline: 0;
    }
}
.c-list-sitemap:nth-of-type(n+2) {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap:nth-of-type(n+2) {
        margin-top: 8vw;
    }
}
.c-list-sitemap__link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 25px;
    font-weight: 700;
    font-size: 1.75rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap__link {
        padding-top: 5.3333333333vw;
        font-size: 6.9333333333vw;
    }
}
.c-list-sitemap__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 5px;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap__link::before {
        width: 40vw;
        height: 1.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-sitemap__link:hover {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-list-sitemap-lv2
--------------------------------------------- */
.c-list-sitemap-lv2 {
    margin-top: 20px;
}
.c-list-sitemap-lv2__item {
    width: 250px;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap-lv2__item {
        flex-shrink: 0;
        width: 100%;
    }
}
.c-list-sitemap-lv2__item:nth-of-type(n+2) {
    margin-top: 15px;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap-lv2__item:nth-of-type(n+2) {
        margin-top: 4vw;
    }
}
.c-list-sitemap-lv2__link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 9px;
    font-weight: 400;
    font-size: 1.25rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap-lv2__link {
        margin-left: 4vw;
        font-size: 5.0666666667vw;
    }
}
.c-list-sitemap-lv2__link::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -13px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_nav.svg) 0 0 no-repeat;
    background-size: contain;
    width: 13px;
    height: 11px;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap-lv2__link::before {
        top: 2.6666666667vw;
        left: -3.4666666667vw;
        width: 3.4666666667vw;
        height: 2.9333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-sitemap-lv2__link:hover {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-list-sitemap-lv3
--------------------------------------------- */
.c-list-sitemap-lv3__item {
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap-lv3__item {
        margin-top: 3.2vw;
    }
}
.c-list-sitemap-lv3__link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 22px;
    font-weight: 400;
    font-size: 1.25rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap-lv3__link {
        padding-left: 5.8666666667vw;
        font-size: 5.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-sitemap-lv3__link:hover {
        text-decoration: underline;
    }
}
.c-list-sitemap-lv3__link::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 2px;
    width: 14px;
    height: 20px;
    border-bottom: 1px solid #707070;
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .c-list-sitemap-lv3__link::before {
        border-left: unset;
        border-bottom: 0.2666666667vw solid #707070;
        top: -1.0666666667vw;
        left: 0.5333333333vw;
        width: 3.7333333333vw;
        height: 5.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-list-sample
--------------------------------------------- */
.c-list-sample {
    display: flex;
    flex-wrap: wrap;
    gap: 0 25px;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .c-list-sample {
        gap: 0 6.6666666667vw;
        margin-top: 2.6666666667vw;
    }
}
.c-list-sample__link {
    font-weight: 400;
    text-decoration: underline;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #44afe8;
}
@media screen and (max-width: 767px) {
    .c-list-sample__link {
        font-size: 4.2666666667vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-sample__link:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------
*   c-list-type
--------------------------------------------- */
.c-list-type {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 70px;
    gap: 50px 5.5555555556%;
}
@media screen and (max-width: 767px) {
    .c-list-type {
        justify-content: space-between;
        -moz-column-gap: 0;
             column-gap: 0;
        row-gap: 5.3333333333vw;
        margin-top: 8vw;
        margin-bottom: 8vw;
    }
}
.c-list-type--mb0 {
    margin-bottom: 0;
}
.c-list-type__item {
    width: 20.8333333333%;
}
@media screen and (max-width: 767px) {
    .c-list-type__item {
        width: 42.1333333333vw;
    }
}
.c-list-type__img {
    width: 100%;
}
.c-list-type__img img {
    width: 100%;
}
.c-list-type__name {
    display: block;
    margin-top: 5px;
    font-weight: 500;
    font-size: 20px;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-list-type__name {
        margin-top: 1.3333333333vw;
        font-size: 4.2666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-top01
--------------------------------------------- */
.c-section-top01 {
    padding-top: 100px;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-section-top01 {
        padding-top: 14.9333333333vw;
    }
}
.c-section-top01__body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 41px 20px 120px;
}
@media screen and (max-width: 767px) {
    .c-section-top01__body {
        max-width: initial;
        width: 84vw;
        padding: 8vw 0 26.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-top02
--------------------------------------------- */
.c-section-top02 {
    padding-top: 100px;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-section-top02 {
        padding-top: 22.4vw;
    }
}
.c-section-top02__body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 38px 20px 120px;
}
@media screen and (max-width: 767px) {
    .c-section-top02__body {
        padding: 8vw 0 21.3333333333vw;
        overflow-x: scroll;
    }
}

/* ---------------------------------------------
*   c-section-top03
--------------------------------------------- */
.c-section-top03 {
    padding-top: 100px;
    background-color: #3C3C3C;
}
@media screen and (max-width: 767px) {
    .c-section-top03 {
        padding-top: 21.8666666667vw;
    }
}
.c-section-top03--novideo {
    padding-top: 0;
}
.c-section-top03__body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 41px 20px 120px;
}
@media screen and (max-width: 767px) {
    .c-section-top03__body {
        padding: 8.5333333333vw 2.1333333333vw 21.6vw;
    }
}
.c-section-top03__video {
    max-width: 756px;
    height: 425px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .c-section-top03__video {
        width: 84vw;
        height: 47.2vw;
    }
}
.c-section-top03__video iframe {
    width: 100%;
    height: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-section-top03__video {
        transition: opacity 300ms;
    }
    .c-section-top03__video:hover {
        opacity: 0.8;
    }
}
.c-section-top03__btn {
    width: 360px;
    margin: 55px auto 0;
}
@media screen and (max-width: 767px) {
    .c-section-top03__btn {
        width: 84vw;
        margin: 8vw auto 0;
    }
}
.c-section-top03__bnr {
    background-color: #fff;
}

/* ---------------------------------------------
*   c-section-purpose
--------------------------------------------- */
.c-section-purpose {
    background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
    .c-section-purpose {
        overflow-x: scroll;
        scrollbar-width: none;
    }
    .c-section-purpose::-webkit-scrollbar {
        display: none;
    }
}
.c-section-purpose__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 20px;
}
@media screen and (max-width: 767px) {
    .c-section-purpose__container {
        width: 84vw;
        padding: 4vw 0;
    }
}

/* ---------------------------------------------
*   c-section-01
--------------------------------------------- */
.c-section-01 {
    padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
    .c-section-01 {
        padding-bottom: 16vw;
    }
}
.c-section-01:nth-of-type(n+2) {
    padding-block: 120px;
}
@media screen and (max-width: 767px) {
    .c-section-01:nth-of-type(n+2) {
        padding-block: 16vw;
    }
}
.c-section-01:nth-of-type(even) {
    position: relative;
}
.c-section-01:nth-of-type(even)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 67.9%;
    transform: translateX(-50%);
    background-color: #F4F4F4;
    width: 100vw;
    height: 100%;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .c-section-01:nth-of-type(even)::before {
        left: 50%;
    }
}
.windows .c-section-01:nth-of-type(even)::before {
    width: calc(100vw - 16px);
}
@media screen and (max-width: 767px) {
    .windows .c-section-01:nth-of-type(even)::before {
        width: 100vw;
    }
}

.c-section-01--pb240 {
    padding-block: 120px 240px !important;
}
.c-section-01__ttl {
    margin-block: 0 30px;
}
@media screen and (max-width: 767px) {
    .c-section-01__ttl {
        margin-block: 0 4vw;
    }
}
.c-section-01__link {
    position: absolute;
    bottom: 120px;
    left: 0;
}
@media screen and (max-width: 767px) {
    .c-section-01__link {
        margin-top: 16vw;
    }
}

/* ---------------------------------------------
*   c-section-02
--------------------------------------------- */
.c-section-02 {
    padding-top: 100px;
    padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
    .c-section-02 {
        padding-top: 16vw;
        padding-bottom: 16vw;
    }
}
.c-section-02--pb0 {
    padding-bottom: 0;
}
.c-section-02--pt0 {
    padding-top: 0;
}
.c-section-02--gray {
    background-color: #F4F4F4;
}
.c-section-02__container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-02__container {
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
    }
}
.c-section-02__head {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-02__head {
        margin-bottom: 5.3333333333vw;
    }
}
.c-section-02__inner {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-02__inner {
        display: block;
    }
}
@media screen and (min-width: 768px) {
    .c-section-02__inner--1 .c-section-02__img {
        width: 210px;
    }
}
@media screen and (min-width: 768px) {
    .c-section-02__inner--2 {
        -moz-column-gap: 33px;
             column-gap: 33px;
    }
    .c-section-02__inner--2 .c-section-02__img {
        width: 257px;
    }
}
@media screen and (min-width: 768px) {
    .c-section-02__inner--3 {
        -moz-column-gap: 33px;
             column-gap: 33px;
    }
    .c-section-02__inner--3 .c-section-02__img {
        width: 190px;
    }
}
@media screen and (min-width: 768px) {
    .c-section-02__inner--4 {
        -moz-column-gap: 55px;
             column-gap: 55px;
    }
    .c-section-02__inner--4 .c-section-02__img {
        width: 170px;
    }
}
.c-section-02__img {
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-section-02__img {
        max-width: 375px;
        margin-inline: auto;
        margin-top: 5.3333333333vw;
    }
}
.c-section-02__img img {
    width: 100%;
}
.c-section-02__link {
    margin-top: 110px;
}
@media screen and (max-width: 767px) {
    .c-section-02__link {
        margin-top: 16vw;
    }
}
.c-section-02__signature {
    display: block;
    margin-top: 120px;
    text-align: right;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-section-02__signature {
        margin-top: 16vw;
        font-size: 4.8vw;
    }
}

/* ---------------------------------------------
*   c-section-03
--------------------------------------------- */
.c-section-03 {
    padding-top: 90px;
}
@media screen and (max-width: 767px) {
    .c-section-03 {
        padding-top: 16vw;
    }
}
.c-section-03--pb {
    padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
    .c-section-03--pb {
        padding-bottom: 16vw;
    }
}
.c-section-03__head {
    max-width: 1120px;
    padding-inline: 20px;
    margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
    .c-section-03__head {
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
        margin-bottom: 10.6666666667vw;
    }
}
.c-section-03__txt {
    margin-top: 30px;
}
.c-section-03__sitemap {
    display: flex;
    justify-content: center;
    -moz-column-gap: 20.3703703704%;
         column-gap: 20.3703703704%;
    max-width: 1120px;
    padding-inline: 20px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .c-section-03__sitemap {
        display: block;
        max-width: 89.3333333333vw;
        padding-inline: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-section-03__sitemap-right {
        margin-top: 8vw;
    }
}

/* ---------------------------------------------
*   c-section-recommended
--------------------------------------------- */
.c-section-recommended--gray {
    background-color: #F4F4F4;
}
.c-section-recommended__container {
    padding-block: 20px 57px;
    -webkit-clip-path: polygon(0% 0%, 48.4% 0%, 50% 6%, 51.6% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 48.4% 0%, 50% 6%, 51.6% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-section-recommended__container {
        -webkit-clip-path: polygon(0% 0%, 47% 0%, 50% 5%, 53% 0%, 100% 0%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0%, 47% 0%, 50% 5%, 53% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
.c-section-recommended__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-recommended__inner {
        max-width: initial;
        padding-inline: 5.3333333333vw;
    }
}
.c-section-recommended__ttl {
    position: relative;
    display: block;
    padding-left: 10px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 500;
    font-size: 1.125rem;
    color: #fff;
}
.c-section-recommended__ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 20px;
    background-color: #F8E500;
    translate: 0 -50%;
}
.c-section-recommended__img {
    display: block;
    width: 58.3333333333%;
    margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
    .c-section-recommended__img {
        width: 100%;
        margin: 8vw auto 0;
    }
}
.c-section-recommended__img img {
    width: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-section-recommended__img {
        transition: opacity 300ms;
    }
    .c-section-recommended__img:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   c-section-location
--------------------------------------------- */
.c-section-location {
    padding-block: 100px;
}
@media screen and (max-width: 767px) {
    .c-section-location {
        padding-block: 16vw;
    }
}
.c-section-location__container {
    display: flex;
    -moz-column-gap: 5.5555555556%;
         column-gap: 5.5555555556%;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-location__container {
        display: block;
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
    }
}
.c-section-location__ttl {
    display: block;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 1.4523809524;
}
@media screen and (max-width: 767px) {
    .c-section-location__ttl {
        margin-bottom: 5.3333333333vw;
        font-size: 6.6666666667vw;
    }
}
.c-section-location__body {
    flex-shrink: 0;
    width: 47.2222222222%;
}
@media screen and (max-width: 767px) {
    .c-section-location__body {
        margin-top: 8vw;
        width: 100%;
    }
}
.c-section-location__img {
    width: 100%;
}
.c-section-location__img img {
    width: 100%;
}

/* ---------------------------------------------
*   c-section-detail
--------------------------------------------- */
.c-section-detail {
    padding-block: 100px 2px;
}
@media screen and (max-width: 767px) {
    .c-section-detail {
        padding-block: 10.6666666667vw 0;
    }
}
.c-section-detail__container {
    display: grid;
    grid-template-columns: 47.2222222222% 2fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 5.5555555556%;
         column-gap: 5.5555555556%;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-detail__container {
        display: block;
        max-width: initial;
        width: 84vw;
        padding-inline: 0;
    }
}
.c-section-detail__ttl {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: start;
    margin-top: 13px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 2.625rem;
}
@media screen and (max-width: 767px) {
    .c-section-detail__ttl {
        margin-top: 0;
        margin-bottom: 8vw;
        font-size: 8vw;
    }
}
.c-section-detail__head {
    grid-column: 1/2; /* 左全体に配置 */
    grid-row: 1/3; /* 2行にまたがる */
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-section-detail__head {
        width: 100%;
        margin-bottom: 5.3333333333vw;
    }
}
.c-section-detail__body {
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: start;
}
.c-section-detail__lead {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    background: linear-gradient(transparent 50%, #F8E500 50%);
}
@media screen and (max-width: 767px) {
    .c-section-detail__lead {
        font-size: 5.3333333333vw;
    }
}
.c-section-detail__btn {
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .c-section-detail__btn {
        margin-top: 8vw;
    }
}
.c-section-detail__link {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-section-detail__link {
        margin-top: 8vw;
    }
}

/* ---------------------------------------------
*   c-section-contact
--------------------------------------------- */
.c-section-contact {
    padding-block: 120px;
}
@media screen and (max-width: 767px) {
    .c-section-contact {
        padding-block: 16vw;
    }
}
.c-section-contact--bg {
    background-color: #F4F4F4;
}
.c-section-contact__container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__container {
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
    }
}
.c-section-contact__head {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__head {
        margin-bottom: 5.3333333333vw;
    }
}
.c-section-contact__btn {
    width: 440px;
    margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
    .c-section-contact__btn {
        width: 84vw;
    }
}
.c-section-contact__flex {
    display: flex;
    -moz-column-gap: 60px;
         column-gap: 60px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__flex {
        flex-direction: column;
        margin-bottom: 10px;
    }
    .c-section-contact__flex:nth-of-type(n+2) {
        margin-top: 10px;
    }
    .c-section-contact__flex--1 {
        flex-direction: row;
        -moz-column-gap: 2.6666666667vw;
             column-gap: 2.6666666667vw;
    }
}
.c-section-contact__txt-area {
    margin-top: 30px;
}

/* ---------------------------------------------
*   c-section-cta
--------------------------------------------- */
.c-section-cta {
    padding-block: 80px;
    background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
    .c-section-cta {
        padding-block: 16vw;
    }
}
.c-section-cta__container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-cta__container {
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
    }
}
.c-section-cta__inner {
    display: flex;
    -moz-column-gap: 5.5555555556%;
         column-gap: 5.5555555556%;
}
@media screen and (max-width: 767px) {
    .c-section-cta__inner {
        display: block;
    }
}
.c-section-cta__item {
    width: 47.2222222222%;
}
@media screen and (max-width: 767px) {
    .c-section-cta__item {
        width: 100%;
    }
    .c-section-cta__item:nth-of-type(n+2) {
        margin-top: 5.3333333333vw;
    }
}
.c-section-cta__here {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-section-cta__here {
        font-size: 5.3333333333vw;
    }
}
.c-section-cta__contact {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-cta__contact {
        gap: 2.6666666667vw;
        margin-top: 4.2666666667vw;
    }
}
.c-section-cta__contact-img {
    flex-shrink: 0;
    width: 50px;
}
@media screen and (max-width: 767px) {
    .c-section-cta__contact-img {
        width: 21.3333333333vw;
    }
}
.c-section-cta__contact-num {
    font-weight: 700;
    font-size: 2rem;
}
@media screen and (max-width: 767px) {
    .c-section-cta__contact-num {
        font-size: 8.5333333333vw;
    }
}
.c-section-cta__anno {
    display: block;
    margin-top: 5px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 2.1428571429;
}
@media screen and (max-width: 767px) {
    .c-section-cta__anno {
        margin-top: 0;
        font-size: 3.2vw;
    }
}
.c-section-cta__txt {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-section-cta__txt {
        margin-top: 8vw;
    }
}

/* ---------------------------------------------
*   c-section-usage
--------------------------------------------- */
.c-section-usage {
    padding-block: 60px;
}
@media screen and (max-width: 767px) {
    .c-section-usage {
        padding-block: 8vw 16vw;
    }
}
.c-section-usage--pt0 {
    padding-top: 0;
}
.c-section-usage__contaienr {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-usage__contaienr {
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
    }
}
.c-section-usage__head {
    margin-bottom: 30px;
}
.c-section-usage__inner {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
}
@media screen and (max-width: 767px) {
    .c-section-usage__inner {
        display: block;
    }
}
.c-section-usage__inner--2 {
    -moz-column-gap: 0;
         column-gap: 0;
}
.c-section-usage__inner--2 .c-section-usage__right {
    width: 47.1296296296%;
}
@media screen and (max-width: 767px) {
    .c-section-usage__inner--2 .c-section-usage__right {
        width: 100%;
    }
}
.c-section-usage__inner--3 {
    -moz-column-gap: 40px;
         column-gap: 40px;
}
.c-section-usage__inner--3 .c-section-usage__right {
    width: 43.5185185185%;
}
@media screen and (max-width: 767px) {
    .c-section-usage__inner--3 .c-section-usage__right {
        width: 100%;
    }
}
.c-section-usage__flex {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 4.6296296296%;
         column-gap: 4.6296296296%;
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .c-section-usage__flex {
        display: block;
        margin-top: 5.3333333333vw;
    }
}
.c-section-usage__right {
    flex-shrink: 0;
    margin-top: -10px;
    width: 44.1666666667%;
}
@media screen and (max-width: 767px) {
    .c-section-usage__right {
        margin-top: 5.3333333333vw;
        width: 100%;
    }
}
.c-section-usage__right--mt0 {
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .c-section-usage__right--mt0 {
        margin-top: 5.3333333333vw;
    }
}
.c-section-usage__right img {
    width: 100%;
}
.c-section-usage__sample {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-section-usage__sample {
        margin-top: 5.3333333333vw;
    }
}
.c-section-usage__txt {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-section-usage__txt {
        margin-top: 5.3333333333vw;
    }
}
.c-section-usage__img {
    margin-top: 40px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .c-section-usage__img {
        margin-top: 5.3333333333vw;
    }
}
.c-section-usage__img--mt30 {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-section-usage__img--mt30 {
        margin-top: 5.3333333333vw;
    }
}
.c-section-usage__toc {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-section-usage__toc {
        margin-bottom: 2.6666666667vw;
        font-size: 6.4vw;
    }
}
.c-section-usage__anno {
    display: block;
    margin-top: 10px;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #c8161d;
}
@media screen and (max-width: 767px) {
    .c-section-usage__anno {
        font-size: 4.8vw;
    }
}
.c-section-usage__atention {
    display: block;
    margin-top: 50px;
    padding: 6px;
    border: 7px solid #F4F4F4;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.25;
    text-align: center;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-section-usage__atention {
        margin-top: 8vw;
        padding: 1.6vw;
        border: 1.8666666667vw solid #F4F4F4;
        font-size: 4.2666666667vw;
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/*  .c-slider
--------------------------------------------- */
.c-slider .splide__slide {
    transform: translate3d(0, 0, 0);
    width: 100%;
    height: 29.7619047619vw;
}
@media screen and (max-width: 767px) {
    .c-slider .splide__slide {
        width: 100%;
        height: auto;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-slider .splide__slide {
        transition: opacity 300ms;
    }
    .c-slider .splide__slide:hover {
        opacity: 0.8;
    }
}
.c-slider__img {
    display: block;
    width: 100%;
    height: 100%;
}
.c-slider__img img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}

/* ---------------------------------------------
*   c-slide-detail
--------------------------------------------- */
.c-slide-detail__head img {
    width: 100%;
    height: 100%;
}
.c-slide-detail__body {
    overflow-X: scroll;
    scrollbar-width: none;
}
.c-slide-detail__body::-webkit-scrollbar {
    display: none;
}
.c-slide-detail .splide,
.c-slide-detail .splide__track {
    width: 100%;
    height: 100%;
}
.c-slide-detail .splide__slide {
    width: 100%;
    height: 100%;
    border: 1px solid #F0F0F0;
}
@media screen and (max-width: 767px) {
    .c-slide-detail .splide__slide {
        border: 0.2666666667vw solid #F0F0F0;
    }
}
.c-slide-detail .splide__slide button {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.c-slide-detail .splide__slide button img {
    transform: scale(1);
    transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-slide-detail .splide__slide button:hover img {
        transform: scale(1.025);
    }
}

/* ---------------------------------------------
*   c-slide-detail-list
--------------------------------------------- */
.c-slide-detail-list {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .c-slide-detail-list {
        gap: 2.6666666667vw;
        margin-top: 2.6666666667vw;
    }
}
.c-slide-detail-list__item {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #F0F0F0;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .c-slide-detail-list__item {
        width: 13.3333333333vw;
        height: 13.3333333333vw;
        border: 0.2666666667vw solid #F0F0F0;
    }
}
.c-slide-detail-list__item img {
    width: 100%;
    height: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-slide-detail-list__item {
        transition: opacity 300ms;
    }
    .c-slide-detail-list__item:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
.c-table {
    width: 95%;
    margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
    .c-table {
        margin: 10.6666666667vw auto 0;
    }
}
.c-table td, .c-table th {
    border-collapse: collapse;
    border: 1px solid #333333;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-table td, .c-table th {
        font-size: 3.2vw;
    }
}
.c-table td, .c-table th {
    padding: 10px;
}
@media screen and (max-width: 767px) {
    .c-table td, .c-table th {
        padding: 5px;
    }
}
.c-table th {
    width: 20%;
}
@media screen and (max-width: 767px) {
    .c-table th {
        width: 30%;
    }
}
.c-table td {
    width: 80%;
}
@media screen and (max-width: 767px) {
    .c-table td {
        width: 70%;
    }
}
.c-table a {
    text-decoration: underline;
    font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
    .c-table a:hover {
        text-decoration: none;
    }
}
.c-table button {
    font-size: 1.25rem;
    line-height: 1.5;
    text-decoration: underline;
    font-weight: 700;
    color: #333333 !important;
}
@media screen and (max-width: 767px) {
    .c-table button {
        font-size: 3.2vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-table button:hover {
        text-decoration: none;
    }
}
.c-table--2 th {
    width: 20%;
}
@media screen and (max-width: 767px) {
    .c-table--2 th {
        width: 25%;
    }
}
.c-table--2 td {
    width: 80%;
}
@media screen and (max-width: 767px) {
    .c-table--2 td {
        width: 75%;
    }
}
.c-table__anno {
    display: block;
    width: 95%;
    margin: 10px auto 0;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-table__anno {
        margin: 2.6666666667vw auto 0;
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl-top
--------------------------------------------- */
.c-ttl-top {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-weight: 700;
    font-size: 2.625rem;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-ttl-top {
        width: 84vw;
        font-size: 8vw;
        line-height: 1.3333333333;
        text-align: left;
    }
}
.c-ttl-top::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background-position: 0 0;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-ttl-top::before {
        top: 0;
        transform: translateY(0);
    }
}
.c-ttl-top--1 {
    padding-left: 48px;
}
@media screen and (max-width: 767px) {
    .c-ttl-top--1 {
        padding-left: 11.4666666667vw;
    }
}
.c-ttl-top--1::before {
    width: 36px;
    height: 36px;
    background-image: url("/wp-content/themes/rainbow-f/assets/img/top/icon_grass.svg");
}
@media screen and (max-width: 767px) {
    .c-ttl-top--1::before {
        left: -1.0666666667vw;
        width: 9.6vw;
        height: 9.6vw;
    }
}
.c-ttl-top--2 {
    padding-left: 48px;
}
@media screen and (max-width: 767px) {
    .c-ttl-top--2 {
        padding-left: 12.8vw;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.c-ttl-top--2::before {
    width: 37px;
    height: 36px;
    background-image: url("/wp-content/themes/rainbow-f/assets/img/top/icon_star.svg");
}
@media screen and (max-width: 767px) {
    .c-ttl-top--2::before {
        width: 9.8666666667vw;
        height: 9.6vw;
    }
}
.c-ttl-top--3 {
    padding-left: 49px;
}
@media screen and (max-width: 767px) {
    .c-ttl-top--3 {
        padding-left: 13.0666666667vw;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.c-ttl-top--3::before {
    width: 32px;
    height: 36px;
    background-image: url("/wp-content/themes/rainbow-f/assets/img/top/icon_movie.svg");
}
@media screen and (max-width: 767px) {
    .c-ttl-top--3::before {
        width: 9.8666666667vw;
        height: 10.9333333333vw;
    }
}

/* ---------------------------------------------
*   c-ttl-top02
--------------------------------------------- */
.c-ttl-top02 {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 40px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 2rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-ttl-top02 {
        padding-top: 10.1333333333vw;
        margin-top: 0;
        font-size: 7.4666666667vw;
    }
}
.c-ttl-top02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-ttl-top02::before {
        width: 18.6666666667vw;
        height: 1.3333333333vw;
    }
}
.c-ttl-top02--white::before {
    background-color: #fff;
}
.c-ttl-top02--icon {
    padding-left: 35px;
}
@media screen and (max-width: 767px) {
    .c-ttl-top02--icon {
        padding-left: 7.2vw;
        line-height: 1.3;
    }
}
.c-ttl-top02--icon::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    background: url("/wp-content/themes/rainbow-f/assets/img/top/icon_head02.svg") 0 0 no-repeat;
    background-size: contain;
    width: 27px;
    height: 27px;
}
@media screen and (max-width: 767px) {
    .c-ttl-top02--icon::after {
        top: 12.5333333333vw;
        bottom: auto;
        width: 5.466667vw;
        height: 5.466667vw;
    }
}

/* ---------------------------------------------
*   c-ttl-top03
--------------------------------------------- */
.c-ttl-top03 {
    font-weight: 700;
    font-size: 2rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-ttl-top03 {
        font-size: 8vw;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-top03--s {
        font-size: 7.4666666667vw;
    }
}

/* ---------------------------------------------
*   c-ttl-01
--------------------------------------------- */
.c-ttl-01 {
    display: block;
    padding: 4px 0 5px 25px;
    border-left: 5px solid #F8E500;
    font-weight: 700;
    font-size: 2rem;
    text-align: left;
    color: #fff;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-ttl-01 {
        font-size: 6.6666666667vw;
        padding: 1.1vw 0 1.833333vw 4.666667vw;
        line-height: 1.3;
    }
}
.windows .c-ttl-01 {
    padding: 4px 0 6px 25px;
}
@media screen and (max-width: 767px) {
    .windows .c-ttl-01 {
        padding: 1.0666666667vw 0 1.3333333333vw 2.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-ttl-02
--------------------------------------------- */
.c-ttl-02 {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 35px;
    gap: 10px;
}
@media screen and (max-width: 767px) {
    .c-ttl-02 {
        padding-left: 9.3333333333vw;
        display: block;
    }
}
.c-ttl-02__txt {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-ttl-02__txt {
        font-size: 6.6666666667vw;
    }
}
.c-ttl-02__category {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 5px;
}
.c-ttl-02__category-txt {
    padding-inline: 4px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.875rem;
    background-color: #62BF8D;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-ttl-02__category-txt {
        padding-inline: 1.0666666667vw;
        border-radius: 1.3333333333vw;
        font-size: 3.7333333333vw;
    }
}
.c-ttl-02__category-txt--2 {
    background-color: #6C9BE6;
}
.c-ttl-02::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/rainbow-f/assets/img/common/icon_circle_arrow.svg") 0 0 no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    top: 3px;
    left: 0;
}
@media screen and (max-width: 767px) {
    .c-ttl-02::before {
        width: 8vw;
        height: 8vw;
        top: 0.8vw;
    }
}

/* ---------------------------------------------
*   c-ttl-03
--------------------------------------------- */
.c-ttl-03 {
    position: relative;
    padding-top: 35px;
    border-top: 1px solid #DEDEDE;
    font-weight: 700;
    font-size: 2rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-ttl-03 {
        padding-top: 6.6666666667vw;
        font-size: 6.4vw;
    }
}
.c-ttl-03::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-ttl-03::before {
        width: 18.6666666667vw;
        height: 1.3333333333vw;
    }
}
.c-ttl-03--yellow {
    color: #F8E500;
    border: none;
}
.c-ttl-03--gray {
    color: #7F95A8;
    border: none;
}
.c-ttl-03--red {
    color: #c8161d;
    border: none;
}
.c-ttl-03--s {
    display: inline;
    padding-top: 0;
    padding-left: 20px;
    border: none;
    font-weight: 400;
    font-size: 1.125rem;
    color: #393939;
}
@media screen and (max-width: 767px) {
    .c-ttl-03--s {
        display: block;
        font-size: 4.2666666667vw;
        padding-left: 0;
    }
}
.c-ttl-03--s::before {
    content: none;
}

/* ---------------------------------------------
*   c-ttl-04
--------------------------------------------- */
.c-ttl-04 {
    position: relative;
    padding-left: 30px;
    font-weight: 700;
    font-size: 2.625rem;
}
@media screen and (max-width: 767px) {
    .c-ttl-04 {
        font-size: 7.4666666667vw;
        padding-left: 5.3333333333vw;
    }
}
.c-ttl-04::before, .c-ttl-04::after {
    content: "";
    position: absolute;
    left: 0;
    width: 10px;
}
@media screen and (max-width: 767px) {
    .c-ttl-04::before, .c-ttl-04::after {
        width: 1.8666666667vw;
    }
}
.c-ttl-04:before {
    top: 0;
    height: 70px;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-ttl-04:before {
        height: 10.6666666667vw;
    }
}
.c-ttl-04::after {
    bottom: -7px;
    height: 36px;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-ttl-04::after {
        bottom: -1.8666666667vw;
        height: 6.4vw;
    }
}
.c-ttl-04--2:before {
    top: 0;
    height: 70px;
    background-color: #333333;
}
@media screen and (max-width: 767px) {
    .c-ttl-04--2:before {
        height: 12vw;
    }
}
.c-ttl-04--2::after {
    bottom: -12%;
    height: 58%;
    background-color: #F8E500;
}
@media screen and (max-width: 767px) {
    .c-ttl-04--2::after {
        bottom: -0.5333333333vw;
        height: 12vw;
    }
}

/* ---------------------------------------------
*   c-ttl-05
--------------------------------------------- */
.c-ttl-05 {
    position: relative;
    font-weight: 700;
    font-size: 2rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-ttl-05 {
        font-size: 6.4vw;
    }
}

/* ---------------------------------------------
*   c-txt-top
--------------------------------------------- */
.c-txt-top {
    display: block;
    margin-top: 28px;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-txt-top {
        margin-top: 6.9333333333vw;
        font-size: 4.8vw;
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
.c-txt {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-txt {
        font-size: 4.8vw;
    }
}
.c-txt--red {
    color: #c8161d;
}
.c-txt--bold {
    font-weight: 700;
}
.c-txt--tar {
    text-align: right;
}
.c-txt a {
    display: inline;
    color: #44afe8;
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .c-txt a:hover {
        text-decoration: none;
    }
}
.c-txt__tel {
    color: #333333 !important;
    text-decoration: none !important;
}

/* ---------------------------------------------
*   c-txt-lead
--------------------------------------------- */
.c-txt-lead {
    max-width: 1120px;
    margin: 100px auto 30px;
    padding-inline: 20px;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-txt-lead {
        max-width: initial;
        padding-inline: 5.3333333333vw;
        margin: 13.3333333333vw auto 0px;
        font-size: 4.2666666667vw;
    }
}

/* ---------------------------------------------
*   c-txt-attention-wrap
--------------------------------------------- */
.c-txt-attention-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 20px;
    margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
    .c-txt-attention-wrap {
        max-width: initial;
        width: 89.3333333333vw;
        padding-inline: 0;
        margin-bottom: 13.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-txt-attention
--------------------------------------------- */
.c-txt-attention {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px;
    margin-bottom: 20px;
    border: 3px solid #c8161d;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #c8161d;
}
@media screen and (max-width: 767px) {
    .c-txt-attention {
        padding: 1.3333333333vw;
        margin-top: 5.3333333333vw;
        margin-bottom: 5.3333333333vw;
        border: 0.8vw solid #c8161d;
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-txt-anno
--------------------------------------------- */
.c-txt-anno {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-txt-anno {
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-search
--------------------------------------------- */
.c-search__container {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .c-search__container {
        display: block;
    }
}
.c-search__keyword-area {
    width: 64.8148148148%;
}
@media screen and (max-width: 767px) {
    .c-search__keyword-area {
        width: 100%;
    }
}
.c-search__txt {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-search__txt {
        font-size: 4.8vw;
        margin-bottom: 2.4vw;
    }
}
.c-search__select-area {
    width: 28.7037037037%;
}
@media screen and (max-width: 767px) {
    .c-search__select-area {
        width: 100%;
        margin-top: 10.6666666667vw;
    }
}
.c-search__keyword-txt {
    width: 100%;
    height: 45px;
    padding: 10px;
    border: 1px solid #e6e6e6;
    font-weight: 400;
    font-size: 1.125rem;
    color: #333333;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .c-search__keyword-txt {
        height: 12vw;
        padding: 2.6666666667vw;
        border: 0.2666666667vw solid #e6e6e6;
        font-size: 4.8vw;
    }
}
.c-search__notice {
    display: flex;
    margin-top: 5px;
    font-weight: 400;
    font-size: 1.125rem;
    color: #333333;
}
@media screen and (max-width: 767px) {
    .c-search__notice {
        margin-top: 2.9333333333vw;
        font-size: 4.2666666667vw;
    }
}
.c-search__select {
    position: relative;
}
.c-search__select::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 47px;
    width: 1px;
    height: 36px;
    background-color: #e6e6e6;
    transform: translateY(-50%);
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    .c-search__select::before {
        right: 12.5333333333vw;
        width: 0.2666666667vw;
        height: 9.6vw;
    }
}
.c-search__select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    background: url(/wp-content/themes/rainbow-f/assets/img/common/icon_arrow_under.svg) 0 0 no-repeat;
    background-size: contain;
    width: 18px;
    height: 11px;
    transform: translateY(-50%);
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    .c-search__select::after {
        right: 4.5333333333vw;
        width: 3.7333333333vw;
        height: 2.1333333333vw;
    }
}
.c-search__select-item {
    width: 100%;
    height: 45px;
    padding: 8px 47px 11px 10px;
    border: 1px solid #e6e6e6;
    font-weight: 400;
    font-size: 1.125rem;
    background-color: #fff;
    color: #333333 !important;
}
@media screen and (max-width: 767px) {
    .c-search__select-item {
        height: 12vw;
        padding: 2.6666666667vw 12.5333333333vw 2.9333333333vw 2.6666666667vw;
        font-size: 4.2666666667vw;
    }
}
.c-search__btn {
    width: 360px;
    margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
    .c-search__btn {
        width: 84vw;
        margin: 13.3333333333vw auto 0;
    }
}

/*  c-modal
--------------------------------------------- */
.c-modal {
    display: none;
}
.c-modal.is-open {
    display: block;
}
.c-modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
}
.c-modal__container {
    position: relative;
    width: 100%;
    max-height: 100vh;
}
.c-modal__container--slider {
    max-width: 1000px;
    min-width: 510px;
    width: 40%;
    aspect-ratio: 1/1;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .c-modal__container--slider {
        max-width: initial;
        min-width: initial;
        width: 100%;
    }
}
.c-modal__close-btn {
    position: absolute;
    top: 0;
    right: -1.5rem;
    cursor: pointer;
}
.c-modal__close-btn::before {
    content: "✕";
    color: #fff;
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal[aria-hidden=false] .c-modal__overlay {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=false] .c-modal__container {
    animation: mmslideIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal__overlay, .c-modal__container {
    will-change: transform;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(15%);
    }
}
/*  c-modal-slider
--------------------------------------------- */
.c-modal-slider__wrapper {
    position: relative;
}
.c-modal-slider .splide,
.c-modal-slider .splide__track {
    width: 90%;
    height: 90%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .c-modal-slider .splide,
    .c-modal-slider .splide__track {
        width: 100%;
        height: 100%;
    }
}
.c-modal-slider .splide__slide {
    transform: translate3d(0, 0, 0);
    display: grid;
    place-items: center;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .c-modal-slider .splide__slide {
        height: 102.4vw;
    }
}
.c-modal-slider .splide__slide img {
    width: 100%;
    height: 100%;
}
.c-modal-slider .splide__arrow {
    --arrow-pos-x: 20px;
    position: absolute;
    top: 50%;
    z-index: 1;
    translate: 0 -50%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    background-color: #fff;
    box-sizing: border-box;
    touch-action: manipulation;
    cursor: pointer;
    overflow: hidden;
}
.c-modal-slider .splide__arrow:focus-visible {
    outline: 3px solid #b4e900;
    outline-offset: 3px;
}
.c-modal-slider .splide__arrow--prev {
    left: 0;
    transform: translateX(120%);
    background-color: rgb(0, 0, 0);
    rotate: 180deg;
}
@media screen and (max-width: 767px) {
    .c-modal-slider .splide__arrow--prev {
        transform: translateX(0);
    }
}
.c-modal-slider .splide__arrow--next {
    right: 0;
    transform: translateX(120%);
    background-color: rgb(0, 0, 0);
}
@media screen and (max-width: 767px) {
    .c-modal-slider .splide__arrow--next {
        transform: translateX(0);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-modal-slider .splide__arrow {
        transition: opacity 0.3s;
    }
    .c-modal-slider .splide__arrow:hover {
        opacity: 0.8;
    }
}
.c-modal-slider .splide__arrow::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: -4px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    box-sizing: border-box;
    transform: rotate(45deg);
}
.c-modal-slider .splide__pagination {
    position: absolute;
    inset: auto 0 -30px 0;
    gap: 10px;
}
@media screen and (max-width: 767px) {
    .c-modal-slider .splide__pagination {
        inset: auto 0 -8vw 0;
        gap: 10px;
    }
}
.c-modal-slider .splide__pagination li {
    font-size: 0;
}
.c-modal-slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    background-color: gray;
    border-radius: 50%;
    touch-action: manipulation;
    cursor: pointer;
}
.c-modal-slider .splide__pagination__page.is-active {
    background-color: lightgray;
}
.c-modal-slider .splide__pagination__page:focus-visible {
    outline: 3px solid #b4e900;
    outline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
    .c-modal-slider .splide__pagination__page {
        transition: opacity 0.3s;
    }
    .c-modal-slider .splide__pagination__page:hover {
        opacity: 0.8;
    }
}

/*--------------------------------------------- */
/*  c-modal-map
--------------------------------------------- */
.c-modal-map {
    display: none;
}
.c-modal-map.is-open {
    display: block;
}
.c-modal-map__overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
}
.c-modal-map__inner {
    display: grid;
    place-items: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.c-modal-map__container {
    position: relative;
    width: 700px;
    max-height: 100vh;
    box-sizing: border-box;
    padding: 10px;
    background-color: #fff;
    overflow-y: auto;
}
@media screen and (max-width: 767px) {
    .c-modal-map__container {
        width: 89.3333333333vw;
        padding: 2.6666666667vw;
    }
}
.c-modal-map__close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}
.c-modal-map__close-btn::before {
    content: "✕";
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal-map[aria-hidden=false] .c-modal-map__overlay {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-map[aria-hidden=false] .c-modal-map__container {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-map[aria-hidden=true] .c-modal-map__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-map[aria-hidden=true] .c-modal-map__container {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-map__overlay, .c-modal-map__container {
    will-change: transform;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/*  c-modal
--------------------------------------------- */
.c-modal-movie {
    display: none;
}
.c-modal-movie.is-open {
    display: block;
}
.c-modal-movie__inner {
    max-width: 960px;
    width: 66.6666666667%;
}
@media screen and (max-width: 767px) {
    .c-modal-movie__inner {
        max-width: initial;
        width: 89.3333333333vw;
    }
}
.c-modal-movie__overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
}
.c-modal-movie__container {
    position: relative;
    width: 100%;
    max-height: 100vh;
}
.c-modal-movie__close-btn {
    position: absolute;
    top: -1.5rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .c-modal-movie__close-btn {
        top: -6.6666666667vw;
        right: 4.2666666667vw;
        width: 9.3333333333vw;
        height: 9.3333333333vw;
    }
}
.c-modal-movie__close-btn::before {
    content: "✕";
    color: #fff;
    position: absolute;
    z-index: 2;
    top: 5px;
    right: -70px;
    display: block;
    font-size: 50px;
    overflow: hidden;
    border: none;
}
@media screen and (max-width: 767px) {
    .c-modal-movie__close-btn::before {
        top: -4.333333vw;
        right: -4.666667vw;
        font-size: 8vw;
    }
}
.c-modal-movie__movie {
    aspect-ratio: 16/9;
}
.c-modal-movie__movie iframe {
    width: 100%;
    height: 100%;
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal-movie[aria-hidden=false] .c-modal-movie__overlay {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-movie[aria-hidden=false] .c-modal-movie__container {
    animation: mmslideIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-movie[aria-hidden=true] .c-modal-movie__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-movie[aria-hidden=true] .c-modal-movie__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-movie__overlay, .c-modal-movie__container {
    will-change: transform;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(15%);
    }
}
/*  c-modal-product
--------------------------------------------- */
.c-modal-product {
    display: none;
}
.c-modal-product.is-open {
    display: block;
}
.c-modal-product__overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
}
.c-modal-product__inner {
    display: grid;
    place-items: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.c-modal-product__link-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
@media screen and (max-width: 767px) {
    .c-modal-product__link-area {
        gap: 8vw;
    }
}
.c-modal-product__link {
    width: 225px;
}
@media screen and (max-width: 767px) {
    .c-modal-product__link {
        width: 40vw;
    }
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal-product[aria-hidden=false] .c-modal-product__overlay {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-product[aria-hidden=false] .c-modal-product__container {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-product[aria-hidden=true] .c-modal-product__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-product[aria-hidden=true] .c-modal-product__container {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-product__overlay, .c-modal-product__container {
    will-change: transform;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/* ---------------------------------------------
*   c-wysiwyg (Wordpress案件以外は削除すること)
--------------------------------------------- */
.c-wysiwyg {
    overflow: hidden;
}
.c-wysiwyg::after {
    content: "";
    display: block;
    clear: both;
}

/* c-wysiwyg default
--------------------------------------------- */
.c-wysiwyg {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg {
        margin-top: 8vw;
    }
}
.c-wysiwyg--mt {
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg {
        padding-right: 0;
        padding-left: 0;
    }
}
.c-wysiwyg > :last-child {
    margin-bottom: 0 !important;
}
.c-wysiwyg sup {
    vertical-align: super;
    font-size: smaller;
}
.c-wysiwyg sub {
    vertical-align: sub;
    font-size: smaller;
}
.c-wysiwyg h1, .c-wysiwyg h2, .c-wysiwyg h3 {
    margin-top: 3rem;
}
.c-wysiwyg h4, .c-wysiwyg h5, .c-wysiwyg h6 {
    margin-top: 2rem;
}
.c-wysiwyg h1, .c-wysiwyg h2, .c-wysiwyg h3, .c-wysiwyg h4, .c-wysiwyg h5, .c-wysiwyg h6 {
    font-weight: 700;
}
.c-wysiwyg h2, .c-wysiwyg h3 {
    margin-top: 20px;
    font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h2, .c-wysiwyg h3 {
        margin-top: 4vw;
        font-size: 5.3333333333vw;
    }
}
.c-wysiwyg i,
.c-wysiwyg strong {
    font-weight: bold;
}
.c-wysiwyg p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg p {
        font-size: 4.2666666667vw;
    }
}
.c-wysiwyg em {
    font-style: italic;
}
.c-wysiwyg a {
    color: #44afe8;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg a {
        margin-top: 5.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-wysiwyg a:hover {
        text-decoration: none;
    }
}
.c-wysiwyg ul {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg ul {
        margin-top: 5.3333333333vw;
    }
}
.c-wysiwyg li {
    position: relative;
    padding-left: 14px;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg li {
        font-size: 4.2666666667vw;
        padding-left: 4vw;
    }
}
.c-wysiwyg li:nth-of-type(n+2) {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg li:nth-of-type(n+2) {
        margin-top: 2.6666666667vw;
    }
}
.c-wysiwyg li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b4b29d;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg li::before {
        top: 1.8666666667vw;
        width: 2.6666666667vw;
        height: 2.6666666667vw;
    }
}
.c-wysiwyg li span {
    font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg li span {
        font-size: 3.7333333333vw;
    }
}
.c-wysiwyg ol {
    list-style-type: decimal;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg blockquote {
    padding: 1em;
    background-color: #eaeaea;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg pre {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg del {
    text-decoration: line-through;
}
.c-wysiwyg hr {
    display: block;
    border: none;
    border-top: #9a9a9a 1px solid;
    border-bottom: #eee 1px solid;
}
.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;
}
.c-wysiwyg .aligncenter {
    display: block;
    max-width: 100%;
    margin: 1rem auto;
}
.c-wysiwyg .alignright {
    float: right;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-left: 1rem;
}
.c-wysiwyg .alignleft {
    float: left;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-right: 1rem;
}
.c-wysiwyg img[class*=wp-image-],
.c-wysiwyg img[class*=attachment-] {
    height: auto;
    max-width: 100%;
}
.c-wysiwyg .wp-caption {
    max-width: 100%;
    text-align: left;
}
.c-wysiwyg .wp-caption img {
    width: 100%;
}
.c-wysiwyg .wp-caption-text {
    display: block;
    padding: 0.5em 1rem 0;
    text-align: left;
    color: #8a8a8a;
    font-size: 0.875em;
    margin: 0;
}
.c-wysiwyg table {
    margin-top: 1em;
    margin-bottom: 1em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.c-wysiwyg table th,
.c-wysiwyg table td {
    padding: 0.5em;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    word-break: break-all;
}
.c-wysiwyg table th {
    background-color: #eee;
}

/* ---------------------------------------------
*   .c-wysiwyg-faq
--------------------------------------------- */
.c-wysiwyg-faq {
    padding-top: 15px;
    padding-left: 20px;
    border-left: 1px solid #DEDEDE;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-faq {
        padding-top: 4vw;
        padding-left: 5.3333333333vw;
        border-left: 0.2666666667vw solid #DEDEDE;
    }
}
.c-wysiwyg-faq > :last-child {
    margin-bottom: 0 !important;
}
.c-wysiwyg-faq sup {
    vertical-align: super;
    font-size: smaller;
}
.c-wysiwyg-faq sub {
    vertical-align: sub;
    font-size: smaller;
}
.c-wysiwyg-faq h1, .c-wysiwyg-faq h2, .c-wysiwyg-faq h3 {
    margin-top: 3rem;
}
.c-wysiwyg-faq h4, .c-wysiwyg-faq h5, .c-wysiwyg-faq h6 {
    margin-top: 2rem;
}
.c-wysiwyg-faq h1, .c-wysiwyg-faq h2, .c-wysiwyg-faq h3, .c-wysiwyg-faq h4, .c-wysiwyg-faq h5, .c-wysiwyg-faq h6 {
    font-weight: 700;
}
.c-wysiwyg-faq i,
.c-wysiwyg-faq strong {
    font-weight: bold;
}
.c-wysiwyg-faq p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-faq p {
        font-size: 3.7333333333vw;
    }
}
.c-wysiwyg-faq em {
    font-style: italic;
}
.c-wysiwyg-faq a {
    color: #44afe8;
    text-decoration: underline;
}
.c-wysiwyg-faq ul {
    list-style-type: disc;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg-faq ol {
    list-style-type: decimal;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg-faq li {
    display: list-item;
    text-align: -webkit-match-parent;
}
.c-wysiwyg-faq blockquote {
    padding: 1em;
    background-color: #eaeaea;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg-faq pre {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg-faq del {
    text-decoration: line-through;
}
.c-wysiwyg-faq hr {
    display: block;
    border: none;
    border-top: #9a9a9a 1px solid;
    border-bottom: #eee 1px solid;
}
.c-wysiwyg-faq code {
    background-color: #eee;
    padding: 0.1em 0.4em;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    word-break: break-all;
}
.c-wysiwyg-faq .aligncenter {
    display: block;
    max-width: 100%;
    margin: 1rem auto;
}
.c-wysiwyg-faq .alignright {
    float: right;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-left: 1rem;
}
.c-wysiwyg-faq .alignleft {
    float: left;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-right: 1rem;
}
.c-wysiwyg-faq img[class*=wp-image-],
.c-wysiwyg-faq img[class*=attachment-] {
    height: auto;
    max-width: 100%;
}
.c-wysiwyg-faq .wp-caption {
    max-width: 100%;
    text-align: left;
}
.c-wysiwyg-faq .wp-caption img {
    width: 100%;
}
.c-wysiwyg-faq .wp-caption-text {
    display: block;
    padding: 0.5em 1rem 0;
    text-align: left;
    color: #8a8a8a;
    font-size: 0.875em;
    margin: 0;
}
.c-wysiwyg-faq table {
    margin-top: 1em;
    margin-bottom: 1em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.c-wysiwyg-faq table th,
.c-wysiwyg-faq table td {
    padding: 0.5em;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    word-break: break-all;
}
.c-wysiwyg-faq table th {
    background-color: #eee;
}
.c-wysiwyg-faq iframe {
    max-width: 543px;
    height: 305px;
    margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-faq iframe {
        width: 100%;
        height: 47.2vw;
        margin: 5.3333333333vw auto 0;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-wysiwyg-faq iframe {
        transition: opacity 300ms;
    }
    .c-wysiwyg-faq iframe:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   wp-pagenavi
--------------------------------------------- */
.wp-pagenavi {
    clear: both;
    text-align: center;
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi {
        margin-top: 16vw;
    }
}

.wp-pagenavi a, .wp-pagenavi span {
    color: #fff;
    background-color: #333333;
    padding: 8px 15px;
    margin: 0 2px;
    white-space: nowrap;
    border-radius: 3px;
    transition: color 0.2s, background-color 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi a, .wp-pagenavi span {
        padding: 1.0666666667vw 2.6666666667vw;
        margin: 0 0.5333333333vw;
        border-radius: 0.8vw;
        font-size: 4.2666666667vw;
    }
}

@media (hover: hover) and (pointer: fine) {
    .wp-pagenavi a:hover {
        color: #333333;
        background-color: #F8E500;
    }
}
.wp-pagenavi span.current {
    color: #333333;
    background-color: #F8E500;
    font-weight: bold;
}

/*--------------------------------------------- */
/*  .c-checkbox
--------------------------------------------- */
.c-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 1.0416666667%;
}
@media screen and (max-width: 767px) {
    .c-checkbox {
        row-gap: 2.6666666667vw;
        justify-content: space-between;
    }
}
.c-checkbox__item {
    position: relative;
    cursor: pointer;
    width: 19.1666666667%;
}
@media screen and (max-width: 767px) {
    .c-checkbox__item {
        width: 37.3333333333vw;
    }
}
.c-checkbox__item--l {
    width: 39.375%;
}
@media screen and (max-width: 767px) {
    .c-checkbox__item--l {
        width: 100%;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-checkbox__item {
        transition: opacity 300ms;
    }
    .c-checkbox__item:hover {
        opacity: 0.8;
    }
}
.c-checkbox__item::before {
    content: "";
    position: absolute;
    z-index: 2;
    background: url(/wp-content/themes/rainbow-f/assets/img/faq/icon_tag.svg) 0 0 no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 10px;
    translate: 0 -50%;
}
@media screen and (max-width: 767px) {
    .c-checkbox__item::before {
        width: 3.2vw;
        height: 3.2vw;
        left: 2.6666666667vw;
    }
}
.c-checkbox__input {
    position: absolute;
    inset: 0;
    display: block;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 3px;
}
@media screen and (max-width: 767px) {
    .c-checkbox__input {
        border-radius: 0.8vw;
    }
}
.c-checkbox__input:checked + .c-checkbox__txt {
    background-color: #F8E500;
}
.c-checkbox__txt {
    position: relative;
    z-index: 1;
    display: block;
    padding-block: 4px 5px;
    border: 1px solid #B9B9B9;
    background-color: #fff;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    border-radius: 3px;
    color: #333;
}
@media screen and (max-width: 767px) {
    .c-checkbox__txt {
        padding-block: 1.0666666667vw 1.3333333333vw;
        border: 0.2666666667vw solid #B9B9B9;
        font-size: 4.2666666667vw;
        border-radius: 0.8vw;
    }
}

/* ---------------------------------------------
*   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-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;
    }
}
@media screen and (max-width: 1060px) {
    .tb-hide {
        display: none;
    }
}
/* ---------------------------------------------
*   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;
    }
}