@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    padding-block: 19px 50px;
    letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
    .l-contents {
        padding-top: 0;
    }
}
.l-contents#top {
    padding-top: 0;
}
.l-contents--pbn {
    padding-bottom: 0;
}
.l-contents--p0 {
    padding-top: 0;
    overflow: hidden;
}

/* ---------------------------------------------
*   l-container
--------------------------------------------- */
.l-container {
    padding-inline: calc(var(--contents-side-padding) * 1px);
    max-width: calc(var(--contents-width) * 1px + var(--contents-side-padding) * 2px);
    margin-inline: auto;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .l-container {
        max-width: none;
    }
}
@media screen and (max-width: 767px) {
    .l-container--sp0 {
        padding-inline: 0;
    }
}

/* ---------------------------------------------
*   l-container-small
--------------------------------------------- */
.l-container-small {
    max-width: calc(var(--contents-width-small) * 1px);
    margin-inline: auto;
}

/* ---------------------------------------------
*   l-container-narrow
--------------------------------------------- */
.l-container-narrow {
    max-width: 866px;
    margin-inline: auto;
}

/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
.l-breadcrumb {
    padding-block: 10px;
}
.l-breadcrumb ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
@media screen and (max-width: 767px) {
    .l-breadcrumb ul {
        gap: 12px;
    }
}
.l-breadcrumb li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .l-breadcrumb li {
        gap: 7px;
        font-size: calc(22 / 2 * 1px);
    }
}
.l-breadcrumb li:not(:last-of-type)::after {
    content: "";
    position: relative;
    top: 1px;
    width: 7px;
    aspect-ratio: 7/13;
    background: url(../img/common/icon/ico_arrow-ltr_thin.png) 0 0 no-repeat;
    background-size: 100% auto;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .l-breadcrumb li:not(:last-of-type)::after {
        width: 6px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-breadcrumb a:hover {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
/* ---------------------------------------------
*   c-acc
--------------------------------------------- */
.c-acc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6111111111;
}
@media screen and (max-width: 767px) {
    .c-acc {
        font-size: calc(24 / 2 * 1px);
        line-height: 1.6666666667;
    }
}
.c-acc__trigger {
    position: relative;
    padding: 10px 70px 16px 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    color: var(--color-white-1);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6111111111;
    border-radius: 12px;
    background-color: #da6997;
    transition: border-radius 0.3s;
    text-align: left;
}
@media (hover: hover) and (pointer: fine) {
    .c-acc__trigger {
        transition: opacity var(--hover-duration);
    }
    .c-acc__trigger:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .c-acc__trigger {
        padding: 6px 34px 9px 10px;
        gap: 14px;
        border-radius: 6px;
    }
}
.c-acc__trigger::before, .c-acc__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 31px;
    display: block;
    width: 23px;
    height: 5px;
    background-color: var(--color-white-1);
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-acc__trigger::before, .c-acc__trigger::after {
        top: 20px;
        right: 11px;
        width: calc(30 / 2 * 1px);
        height: calc(7 / 2 * 1px);
        transform: none;
    }
}
.c-acc__trigger::after {
    transform: translateY(-50%) rotate(90deg);
    transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
    .c-acc__trigger::after {
        transform: rotate(90deg);
    }
}
@media screen and (max-width: 767px) {
    .c-acc__trigger {
        font-size: calc(24 / 2 * 1px);
        line-height: 1.6666666667;
    }
}
.is-open .c-acc__trigger {
    border-radius: 12px 12px 0 0;
}
@media screen and (max-width: 767px) {
    .is-open .c-acc__trigger {
        border-radius: 6px 6px 0px 0px;
    }
}
.is-open .c-acc__trigger::after {
    opacity: 0;
}

.c-acc__trigger-txt {
    margin-top: 7px;
}
@media screen and (max-width: 767px) {
    .c-acc__trigger-txt {
        margin-top: 5px;
    }
}
.c-acc__q {
    color: var(--color-white-1);
    font-size: 38px;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .c-acc__q {
        font-size: calc(50 / 2 * 1px);
    }
}
.c-acc__body-inner {
    padding: 9px 33px 11px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    background-color: #fef2ee;
    color: var(--color-base-1);
    border-radius: 0 0 12px 12px;
}
@media screen and (max-width: 767px) {
    .c-acc__body-inner {
        padding: 5px 11px 9px 11px;
        gap: 14px;
        border-radius: 0 0 6px 6px;
    }
}
@media screen and (max-width: 767px) {
    .c-acc__body-inner p {
        margin-top: 1px;
    }
}
.c-acc__a {
    padding-top: 7px;
    color: #da6997;
    font-size: 38px;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .c-acc__a {
        padding-top: 6px;
        font-size: calc(50 / 2 * 1px);
    }
}
.c-acc + .c-acc {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .c-acc + .c-acc {
        margin-top: 11px;
    }
}

/* ---------------------------------------------
*   c-block-solve
--------------------------------------------- */
.c-block-solve {
    padding: 17px 40px 34px;
    background-color: var(--color-pink-7);
    border-radius: 21px;
    border: 2px solid var(--color-pink-5);
    filter: drop-shadow(9px 6px 6px rgba(var(--color-gray-3-rgb), 0.2));
    margin-top: 17px;
    transform: translateZ(0);
}
@media screen and (max-width: 767px) {
    .c-block-solve {
        padding: 7px 18px 10px;
        border-radius: calc(21 / 2 * 1px);
        margin-top: 10px;
        filter: drop-shadow(3px 4px 3px rgba(var(--color-gray-3-rgb), 0.2));
    }
}
.c-block-solve__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 14px;
}
@media screen and (max-width: 1024px) {
    .c-block-solve__list {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .c-block-solve__list {
        gap: 11px;
        margin-top: 6px;
    }
}
.c-block-solve__item {
    display: contents;
}
.c-block-solve__link {
    padding: 28px 22px 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    border-radius: 20px;
    border: 1px solid var(--color-gray-2);
    background-color: var(--color-white-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-block-solve__link {
        transition: opacity var(--hover-duration);
    }
    .c-block-solve__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .c-block-solve__link {
        padding: 19px 17px 17px;
        grid-template-columns: calc(280 / var(--design-width) * 100vw) 1fr;
        border-radius: calc(21 / 2 * 1px);
        gap: 1rem;
    }
}
.c-block-solve__ttl {
    font-size: 22px;
    line-height: 1.3181818182;
}
@media screen and (max-width: 767px) {
    .c-block-solve__ttl {
        font-size: calc(30 / 2 * 1px);
    }
}
.c-block-solve__txt {
    display: block;
    font-size: 15px;
    margin-top: 9px;
}
@media screen and (max-width: 767px) {
    .c-block-solve__txt {
        font-size: calc(21 / 2 * 1px);
        margin-top: 6px;
    }
}
.c-block-solve__fig {
    display: block;
    max-height: 132px;
}
.c-block-solve__fig img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

/* ---------------------------------------------
*   c-block-voice
--------------------------------------------- */
.c-block-voice {
    padding-top: 65px;
}
@media screen and (max-width: 767px) {
    .c-block-voice {
        padding-top: 41px;
    }
}
.c-block-voice__ttl {
    position: relative;
    left: -28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
@media screen and (max-width: 767px) {
    .c-block-voice__ttl {
        gap: 4px;
    }
}
.c-block-voice__ttl-ico {
    position: relative;
    top: -10px;
    display: block;
    width: 70px;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-block-voice__ttl-ico {
        top: -7px;
        width: calc(90 / 2 * 1px);
    }
}
.c-block-voice__ttl-txt {
    color: var(--color-pink-8);
    font-size: 34px;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .c-block-voice__ttl-txt {
        font-size: calc(46 / 2 * 1px);
    }
}
.c-block-voice__content {
    padding: 16px 32px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    border-radius: 21px;
    background-color: var(--color-yellow-1);
    border: 2px solid var(--color-pink-5);
    margin-top: 4px;
    filter: drop-shadow(9px 6px 6px rgba(var(--color-gray-3-rgb), 0.2));
    transform: translateZ(0);
}
@media screen and (max-width: 767px) {
    .c-block-voice__content {
        padding: 13px 23px 15px;
        display: block;
        border-radius: calc(21 / 2 * 1px);
        margin-top: 13px;
        filter: drop-shadow(3px 4px 3px rgba(var(--color-gray-3-rgb), 0.2));
    }
}
.c-block-voice__content + .c-block-voice__content {
    margin-top: 10px;
}
.c-block-voice__ico {
    width: 110px;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-block-voice__ico {
        width: calc(144 / 2 * 1px);
        float: left;
        shape-outside: polygon(0 0, calc(200 / 2 * 1px) 0, calc(200 / 2 * 1px) calc(200 / 2 * 1px), 0 calc(200 / 2 * 1px));
        margin-top: 2px;
        margin-right: 10px;
    }
}
.c-block-voice__ico img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-block-voice__txts {
    padding-top: 4px;
}
@media screen and (max-width: 767px) {
    .c-block-voice__txts {
        padding-top: 0;
    }
}
.c-block-voice__term {
    font-size: 24px;
}
@media screen and (max-width: 767px) {
    .c-block-voice__term {
        font-size: calc(31 / 2 * 1px);
    }
}
.c-block-voice__detail {
    margin-top: 2px;
}
@media screen and (max-width: 767px) {
    .c-block-voice__detail {
        margin-top: -1px;
    }
}

/* ---------------------------------------------
*   c-block-advantage
--------------------------------------------- */
.c-block-advantage {
    padding-block: 0 70px;
}
@media screen and (max-width: 767px) {
    .c-block-advantage {
        padding-block: 28px 31px;
        background-color: rgba(var(--color-blue-3-rgb), 0.1);
    }
}
.c-block-advantage__logo {
    display: block;
    width: calc(356 / 2 * 1px);
    margin-inline: auto;
    margin-top: 47px;
}
@media (hover: hover) and (pointer: fine) {
    .c-block-advantage__logo {
        transition: opacity var(--hover-duration);
    }
    .c-block-advantage__logo:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .c-block-advantage__logo {
        margin-top: 25px;
        width: calc(267 / 2 * 1px);
    }
}
.c-block-advantage__logo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-block-advantage__list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    .c-block-advantage__list {
        flex-wrap: wrap;
        gap: 22px 1rem;
    }
}
@media screen and (min-width: 768px) {
    .c-block-advantage__list::before {
        content: "";
        position: absolute;
        top: 60px;
        left: 50%;
        width: 78%;
        height: 4px;
        background-color: var(--color-blue-3);
        transform: translateX(-50%);
    }
}
.c-block-advantage__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 189px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-block-advantage__item {
        max-width: 109px;
    }
}
.c-block-advantage__link {
    position: relative;
    display: block;
    max-width: 125px;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    filter: drop-shadow(6px 6px 5px rgba(var(--color-gray-3-rgb), 0.2));
    margin-inline: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: border-width;
}
@media screen and (max-width: 767px) {
    .c-block-advantage__link {
        max-width: calc(183 / 2 * 1px);
    }
}
.c-block-advantage__link img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-block-advantage__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0px solid var(--color-pink-2);
    box-sizing: border-box;
}
@media (hover: hover) and (pointer: fine) {
    .c-block-advantage__link::after {
        transition: border-width 0.3s;
    }
    .c-block-advantage__link:hover::after {
        border-width: 5px;
    }
}
.c-block-advantage__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: var(--color-blue-3);
    font-size: min(20 / var(--contents-width) * 100vw, 20px);
    text-align: center;
    margin-top: 17px;
}
@media screen and (max-width: 767px) {
    .c-block-advantage__txt {
        font-size: calc(28 / 2 * 1px);
        letter-spacing: -0.05em;
        margin-top: 10px;
    }
}

/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn-1
--------------------------------------------- */
.c-btn-1 {
    position: relative;
    padding: 5px 87px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    font-weight: 500;
    border-radius: 999px;
    background-color: var(--color-pink-1);
    flex-shrink: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-1 {
        transition: background-color var(--hover-duration), color var(--hover-duration);
    }
    .c-btn-1:hover {
        background-color: var(--color-pink-2);
        color: var(--color-white-1);
    }
}
@media screen and (max-width: 767px) {
    .c-btn-1 {
        padding: 3px 37px;
        font-size: calc(30 / 2 * 1px);
    }
}
.c-btn-1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    display: block;
    width: 11px;
    aspect-ratio: 11/18;
    background: url(../img/common/icon/ico_arrow_ltr_base.png) center center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-btn-1::after {
        top: 51%;
        right: 14px;
        width: 6px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-1::after {
        transition: background 0.3s, right 0.3s;
    }
    .c-btn-1:hover::after {
        background: url(../img/common/icon/ico_arrow_ltr_wn-2.png) center center no-repeat;
        background-size: 100% auto;
        right: 12px;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-btn-1:hover::after {
        right: 9px;
    }
}
@media screen and (min-width: 768px) {
    .c-btn-1--65 {
        padding-inline: 65px;
    }
}
.c-btn-1--back::after {
    right: auto;
    left: 22px;
}
@media screen and (max-width: 767px) {
    .c-btn-1--back::after {
        right: auto;
        left: 14px;
    }
}

/* ---------------------------------------------
*   c-card-1
--------------------------------------------- */
.c-card-1 {
    display: contents;
}
.c-card-1__link {
    display: grid;
    height: 100%;
    border-radius: 25px;
    background-color: var(--color-white-1);
    border: 1px solid var(--color-gray-2);
    filter: drop-shadow(9px 6px 6px rgba(var(--color-gray-3-rgb), 0.2));
    box-sizing: border-box;
    letter-spacing: 0;
    padding: 18px calc(15 / 285 * 100%) 15px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
@media screen and (max-width: 767px) {
    .c-card-1__link {
        padding: 9px;
        border-radius: calc(24 / 2 * 1px);
    }
}
.c-card-1__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 0px solid var(--color-pink-2);
    box-sizing: border-box;
    will-change: border-width;
}
@media screen and (max-width: 767px) {
    .c-card-1__link::after {
        border-radius: calc(22 / 2 * 1px);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-card-1__link::after {
        transition: border-width 0.3s;
    }
    .c-card-1__link:hover::after {
        border-width: 5px;
    }
}
.c-card-1__ttl {
    font-size: 20px;
}
@media screen and (max-width: 767px) {
    .c-card-1__ttl {
        font-size: calc(24 / 2 * 1px);
    }
}
.c-card-1__fig {
    margin-top: 9px;
}
@media screen and (max-width: 767px) {
    .c-card-1__fig {
        margin-top: 6px;
    }
}
.c-card-1__fig img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-card-1__lead {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 19px;
    margin-top: 15px;
}
@media screen and (max-width: 767px) {
    .c-card-1__lead {
        font-size: calc(22 / 2 * 1px);
        margin-top: 8px;
    }
}
.c-card-1__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: 38px;
}
@media screen and (max-width: 767px) {
    .c-card-1__bottom {
        margin-top: 7px;
    }
}
.c-card-1__bottom-txt {
    display: block;
    color: var(--color-pink-2);
    font-size: 14px;
    line-height: 1;
    margin-top: -4px;
}
@media screen and (max-width: 767px) {
    .c-card-1__bottom-txt {
        font-size: calc(18 / 2 * 1px);
    }
}
.c-card-1__bottom-arr {
    display: block;
    width: 33px;
    aspect-ratio: 33/15;
    background: url(../img/common/icon/ico_arrow-long.png) 0 0 no-repeat;
    background-size: contain;
}
@media screen and (max-width: 767px) {
    .c-card-1__bottom-arr {
        width: calc(39 / 2 * 1px);
    }
}

/* ---------------------------------------------
*   c-card-product
--------------------------------------------- */
.c-card-product {
    position: relative;
    padding: 10px 14px 11px;
    display: block;
    height: 100%;
    border-radius: 26px;
    background-color: var(--color-white-1);
    border: 1px solid var(--color-gray-2);
    filter: drop-shadow(9px 6px 6px rgba(var(--color-gray-3-rgb), 0.2));
    box-sizing: border-box;
    letter-spacing: 0;
    will-change: border-width;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
@media screen and (min-width: 768px) {
    .c-card-product {
        min-height: 157px;
    }
}
@media screen and (max-width: 767px) {
    .c-card-product {
        padding: 5px 7px 7px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: calc(13 / 2 * 1px);
        filter: drop-shadow(2px 2px 3px rgba(var(--color-gray-3-rgb), 0.3));
    }
}
.c-card-product::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 0px solid var(--color-pink-2);
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .c-card-product::after {
        border-radius: 5px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-card-product::after {
        transition: border-width 0.3s;
    }
    .c-card-product:hover::after {
        border-width: 5px;
    }
}
.c-card-product[data-cat-id=series-lora-series] .c-card-product__cat {
    background-color: var(--color-green-1);
}
.c-card-product[data-cat-id=series-lora-series] .c-card-product__illust {
    width: calc(278 / 2 * 1px);
    aspect-ratio: 278/182;
    right: -12px;
    bottom: -17px;
}
@media screen and (max-width: 767px) {
    .c-card-product[data-cat-id=series-lora-series] .c-card-product__illust {
        right: -6px;
        bottom: -10px;
        width: calc(155 / 295 * 100%);
    }
}
.c-card-product[data-cat-id=series-lora-series]::after {
    border-color: var(--color-green-1);
}
.c-card-product[data-cat-id=series-standard-series] .c-card-product__cat {
    background-color: var(--color-pink-6);
}
.c-card-product[data-cat-id=series-standard-series] .c-card-product__illust {
    width: calc(309 / 2 * 1px);
    aspect-ratio: 309/188;
    right: -20px;
    bottom: -22px;
}
@media screen and (max-width: 767px) {
    .c-card-product[data-cat-id=series-standard-series] .c-card-product__illust {
        width: calc(168 / 295 * 100%);
        right: -11px;
        bottom: -9px;
    }
}
.c-card-product[data-cat-id=series-standard-series]::after {
    border-color: var(--color-pink-6);
}
.c-card-product[data-cat-id=series-nurse-series] .c-card-product__cat {
    background-color: var(--color-purple-1);
}
.c-card-product[data-cat-id=series-nurse-series] .c-card-product__illust {
    width: calc(268 / 2 * 1px);
    aspect-ratio: 268/184;
    right: -8px;
    bottom: -28px;
}
@media screen and (max-width: 767px) {
    .c-card-product[data-cat-id=series-nurse-series] .c-card-product__illust {
        right: -5px;
        bottom: -16px;
        width: calc(147 / 295 * 100%);
    }
}
.c-card-product[data-cat-id=series-nurse-series]::after {
    border-color: var(--color-purple-1);
}
.c-card-product[data-cat-id=series-nurse-lora] .c-card-product__cat {
    background-color: var(--color-blue-2);
}
.c-card-product[data-cat-id=series-nurse-lora] .c-card-product__illust {
    width: calc(248 / 2 * 1px);
    aspect-ratio: 248/172;
    right: -5px;
    bottom: -19px;
}
@media screen and (max-width: 767px) {
    .c-card-product[data-cat-id=series-nurse-lora] .c-card-product__illust {
        right: -5px;
        bottom: -10px;
        width: calc(140 / 295 * 100%);
    }
}
.c-card-product[data-cat-id=series-nurse-lora]::after {
    border-color: var(--color-blue-2);
}
.c-card-product[data-cat-id=series-nurse-concent] .c-card-product__cat {
    background-color: var(--color-red-2);
}
.c-card-product[data-cat-id=series-nurse-concent] .c-card-product__illust {
    width: calc(254 / 2 * 1px);
    aspect-ratio: 254/172;
    right: -10px;
    bottom: -20px;
}
@media screen and (max-width: 767px) {
    .c-card-product[data-cat-id=series-nurse-concent] .c-card-product__illust {
        right: -4px;
        bottom: -10px;
        width: calc(138 / 295 * 100%);
    }
}
.c-card-product[data-cat-id=series-nurse-concent]::after {
    border-color: var(--color-red-2);
}
.c-card-product__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.c-card-product__txt {
    padding: 0px 8px 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 7px;
    background-color: var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .c-card-product__txt {
        padding: 0px 5px 1px;
        font-size: calc(19 / 2 * 1px);
        border-radius: calc(4 / 2 * 1px);
    }
}
.c-card-product__label {
    position: absolute;
    right: 7px;
    padding: 2px 7px;
    color: var(--color-white-1);
    font-size: 14px;
    line-height: 1.25;
    border-radius: 12px;
    background-color: var(--color-orange-1);
}
@media screen and (max-width: 767px) {
    .c-card-product__label {
        top: 3px;
        right: 4px;
        padding: 2px 3px;
        font-size: calc(15 / 2 * 1px);
        line-height: 1.15;
        border-radius: calc(6 / 2 * 1px);
    }
}
@media screen and (min-width: 768px) {
    .firefox .c-card-product__label {
        padding-bottom: 4px;
    }
}

.c-card-product__fig {
    position: relative;
    width: 97%;
    margin: 25px auto 0;
}
@media screen and (max-width: 767px) {
    .c-card-product__fig {
        margin-top: 12px;
    }
}
.c-card-product__fig img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-card-product__illust {
    position: absolute;
}
.c-card-product__cat {
    position: relative;
    padding: 0 11px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-inline: auto;
    border-radius: 999px;
    font-size: 20px;
    margin-top: 14px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-card-product__cat {
        padding: 2px 5px;
        font-size: calc(22 / 2 * 1px);
        box-sizing: border-box;
        width: 97%;
        margin-top: 7px;
    }
}
.c-card-product__sub-txt {
    display: block;
    color: var(--color-base-1);
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-card-product__sub-txt {
        font-size: calc(22 / 2 * 1px);
        margin-top: 1px;
    }
}

/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-column-1
--------------------------------------------- */
.c-column-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px calc(20 / var(--contents-width) * 100%);
}
@media screen and (max-width: 1024px) {
    .c-column-1 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .c-column-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 13px;
    }
}
.c-column-1__item {
    display: contents;
}

/* ---------------------------------------------
*   c-column-center
--------------------------------------------- */
.c-column-center {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 23px calc(40 / var(--contents-width-small) * 100%);
}
@media screen and (max-width: 1024px) {
    .c-column-center {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .c-column-center {
        gap: 14px calc(19 / 2 * 1px);
    }
}
.c-column-center__item {
    width: calc((100% - 80 / var(--contents-width-small) * 100%) / 3);
    flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
    .c-column-center__item {
        width: calc((100% - 40 / var(--contents-width-small) * 100%) / 2);
    }
}
@media screen and (max-width: 767px) {
    .c-column-center__item {
        width: calc((100% - 9.5px) / 2);
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form-flow
--------------------------------------------- */
.c-form-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
@media screen and (max-width: 767px) {
    .c-form-flow {
        gap: 8px;
    }
}
.c-form-flow::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    display: block;
    width: 80%;
    height: 6px;
    background-color: #fedcec;
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .c-form-flow::before {
        top: 23px;
        height: 3px;
    }
}
.c-form-flow__item {
    position: relative;
    padding: 15px;
    background-color: var(--color-gray-6);
}
@media screen and (max-width: 767px) {
    .c-form-flow__item {
        padding: 7px 7px 5px;
    }
}
.c-form-flow__item span {
    position: absolute;
    top: 50%;
    left: 19px;
    padding-block: 2px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    color: var(--color-white-1);
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    background-color: var(--color-pink-10);
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-form-flow__item span {
        position: static;
        padding-block: 1px 2.5px;
        width: calc(35 / 2 * 1px);
        font-size: calc(26 / 2 * 1px);
        margin-inline: auto;
        transform: none;
    }
}
@media screen and (min-width: 768px) {
    .safari .c-form-flow__item span {
        padding-block: 2px 6px;
    }
}

.firefox .c-form-flow__item span {
    padding-block: 2px 6px;
}
@media screen and (max-width: 767px) {
    .firefox .c-form-flow__item span {
        padding-block: 1px 3.5px;
    }
}

.windows.chrome .c-form-flow__item span {
    padding-block: 2px 6px;
}
@media screen and (max-width: 767px) {
    .windows.chrome .c-form-flow__item span {
        padding-block: 1px 3.5px;
    }
}

.windows.firefox .c-form-flow__item span {
    padding-block: 2px 7px;
}
@media screen and (max-width: 767px) {
    .windows.firefox .c-form-flow__item span {
        padding-block: 1px 2px;
    }
}

.edge .c-form-flow__item span {
    padding-block: 2px 6px;
}
@media screen and (max-width: 767px) {
    .edge .c-form-flow__item span {
        padding-block: 1px 3.5px;
    }
}

.c-form-flow__item p {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-form-flow__item p {
        font-size: calc(24 / 2 * 1px);
        margin-top: 2px;
    }
}
.c-form-flow__item.-current {
    background-color: var(--color-pink-11);
}
.c-form-flow__item.-current span {
    background-color: var(--color-white-1);
    color: var(--color-pink-10);
}

/* ---------------------------------------------
*   h-adr
--------------------------------------------- */
.h-adr {
    margin-top: 47px;
}
@media screen and (max-width: 767px) {
    .h-adr {
        margin-top: 24px;
    }
}
.h-adr .c-form-item {
    position: relative;
    padding-block: 22px;
    display: grid;
    grid-template-columns: calc(334 / var(--contents-width) * 100%) 1fr;
    align-items: flex-start;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    .h-adr .c-form-item {
        padding-block: 18px;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}
.h-adr .c-form-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: url(../img/common/img_border.png) left center repeat-x;
    background-size: 11px 100%;
}
@media screen and (max-width: 767px) {
    .h-adr .c-form-item::after {
        height: 1px;
        background-size: 6px 100%;
    }
}
.is-confirm .h-adr .c-form-item {
    align-items: center;
}

/*  c-form-header
--------------------------------------------- */
.c-form-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding-left: calc(100 / 334 * 100%);
    padding-top: 6px;
    padding-right: 1rem;
}
@media screen and (max-width: 1024px) {
    .c-form-header {
        padding-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-form-header {
        padding-top: 0;
        padding-right: 0;
        gap: 5px;
    }
}
.c-form-header__require {
    position: relative;
    top: 1px;
    padding: 5px 8px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    background-color: var(--color-pink-11);
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-form-header__require {
        padding: 3px 6px 4px;
        font-size: 11px;
    }
}
.c-form-header__label {
    color: var(--color-blank-1);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4444444444;
}
@media screen and (max-width: 767px) {
    .c-form-header__label {
        font-size: calc(26 / 2 * 1px);
    }
}

/*  c-form-body
--------------------------------------------- */
.c-form-body {
    padding-right: calc(100 / 850 * 100%);
}
@media screen and (max-width: 1024px) {
    .c-form-body {
        padding-right: 0;
    }
}

/*  c-input
--------------------------------------------- */
.c-input {
    color: var(--color-base-1);
    font-size: 18px;
    font-weight: 500;
    box-sizing: border-box;
}
.c-input::-moz-placeholder {
    color: var(--color-gray-7);
}
.c-input::placeholder {
    color: var(--color-gray-7);
}
.c-input.-error {
    background-color: #FFEBEB;
}
.c-input.-select.-error {
    background-color: transparent;
}
@media screen and (max-width: 767px) {
    .c-input {
        font-size: calc(26 / 2 * 1px);
    }
}
.c-input.-text, .c-input.-email, .c-input.-tel, .c-input.-textarea, .c-input.-postal {
    padding: 8px 10px;
    width: 100%;
    height: 43px;
    border: 2px solid var(--color-gray-7);
}
@media screen and (max-width: 767px) {
    .c-input.-text, .c-input.-email, .c-input.-tel, .c-input.-textarea, .c-input.-postal {
        height: calc(62 / 2 * 1px);
    }
}
.c-input.-textarea {
    height: 250px;
}
@media screen and (max-width: 767px) {
    .c-input.-textarea {
        height: calc(360 / 2 * 1px);
    }
}
@media screen and (min-width: 768px) {
    .c-input#name1, .c-input#name2 {
        max-width: 220px;
    }
}
@media screen and (min-width: 768px) {
    .c-input#company, .c-input#belongs {
        max-width: 602px;
    }
}
.c-input.-radio {
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
    .c-input.-radio {
        margin-top: 0;
    }
}
.c-input.-radio label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 11px;
}
@media (hover: hover) and (pointer: fine) {
    .c-input.-radio label {
        transition: opacity var(--hover-duration);
    }
    .c-input.-radio label:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .c-input.-radio label {
        margin-left: 9px;
    }
}
.c-input.-radio label:first-of-type {
    margin-left: 0;
}
.c-input.-radio label input {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}
.c-input.-radio label span {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
@media screen and (max-width: 767px) {
    .c-input.-radio label span {
        padding-left: 16px;
    }
}
.c-input.-radio label span::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 3px;
    box-sizing: border-box;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-gray-7);
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
    .c-input.-radio label span::before {
        top: 5px;
        left: 0;
        width: 12px;
        height: 12px;
    }
}
.c-input.-radio label span::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 6px;
    box-sizing: border-box;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-gray-7);
    opacity: 0;
}
@media screen and (max-width: 767px) {
    .c-input.-radio label span::after {
        top: 7px;
        left: 2px;
        width: 8px;
        height: 8px;
    }
}
.c-input.-radio input:checked + span::after {
    opacity: 1;
}

.p-region-id {
    color: var(--color-base-1);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    box-sizing: border-box;
    max-width: 220px;
    padding: 8px 10px;
    width: 100%;
    height: 43px;
    border: 2px solid var(--color-gray-7);
}
@media screen and (max-width: 767px) {
    .p-region-id {
        padding-block: 1px;
        max-width: calc(316 / 2 * 1px);
        height: calc(62 / 2 * 1px);
        font-size: calc(26 / 2 * 1px);
    }
}
.p-region-id:invalid {
    color: var(--color-gray-7);
}
.-error .p-region-id {
    background-color: #FFEBEB;
}

/*  c-input-wrap
--------------------------------------------- */
.c-input-wrap {
    width: 100%;
}
.c-input-wrap.-is-small {
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .c-input-wrap.-is-small {
        width: calc((100% - 13px) / 2);
    }
}

/*  c-form-body
--------------------------------------------- */
.c-form-body:has(.c-input-wrap) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 767px) {
    .c-form-body:has(.c-input-wrap) {
        gap: 13px;
    }
}

/*  c-form-scrollarea
--------------------------------------------- */
.c-form-scrollarea {
    padding-block: 6px 14px;
    width: 100%;
    border: 2px solid var(--color-gray-7);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7777777778;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .c-form-scrollarea {
        font-size: calc(26 / 2 * 1px);
        line-height: 1.7692307692;
    }
}
.c-form-scrollarea p {
    overflow-y: scroll;
    height: 230px;
    padding-inline: 19px;
}
@media screen and (max-width: 767px) {
    .c-form-scrollarea p {
        padding-inline: 14px;
        height: 160px;
    }
}

/*  c-form-submit
--------------------------------------------- */
.c-form-submit {
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .c-form-submit {
        margin-top: 26px;
    }
}
.c-form-submit button {
    position: relative;
    padding: 5px 54px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-base-1);
    font-size: 23px;
    font-weight: 500;
    border-radius: 999px;
    background-color: var(--color-pink-1);
    flex-shrink: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
@media (hover: hover) and (pointer: fine) {
    .c-form-submit button {
        transition: background-color var(--hover-duration), color var(--hover-duration);
    }
    .c-form-submit button:hover {
        background-color: var(--color-pink-2);
        color: var(--color-white-1);
    }
}
@media screen and (max-width: 767px) {
    .c-form-submit button {
        padding: 3px 37px;
        font-size: calc(30 / 2 * 1px);
    }
}
.c-form-submit button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    display: block;
    width: 11px;
    aspect-ratio: 11/18;
    background: url(../img/common/icon/ico_arrow_ltr_base.png) center center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .c-form-submit button::after {
        top: 51%;
        right: 14px;
        width: 6px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-form-submit button::after {
        transition: background 0.3s, right 0.3s;
    }
    .c-form-submit button:hover::after {
        background: url(../img/common/icon/ico_arrow_ltr_wn-2.png) center center no-repeat;
        background-size: 100% auto;
        right: 12px;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-form-submit button:hover::after {
        right: 9px;
    }
}

/*  c-input-error
--------------------------------------------- */
.c-input-error {
    color: var(--color-red-1);
    font-weight: bold;
}

/* ---------------------------------------------
*   c-img-1
--------------------------------------------- */
.c-img-1 img {
    display: block;
    margin-inline: auto;
}

/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
/* ---------------------------------------------
*   c-links-about
--------------------------------------------- */
.c-links-about {
    padding-block: 35px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(38 / var(--contents-width-small) * 100%);
}
@media screen and (max-width: 767px) {
    .c-links-about {
        padding-block: 8px 0px;
        grid-template-columns: repeat(1, 1fr);
        gap: 9px;
    }
}
.c-links-about__link {
    border-radius: 21px;
    background-color: var(--color-white-1);
    border: 1px solid var(--color-gray-2);
    filter: drop-shadow(9px 10px 6px rgba(var(--color-gray-3-rgb), 0.2));
    box-sizing: border-box;
    letter-spacing: 0;
    padding: 29px calc(40 / 481 * 100%) 22px;
    will-change: border-width;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    display: block;
}
@media screen and (max-width: 767px) {
    .c-links-about__link {
        padding: 20px 22px 21px;
        border-radius: calc(24 / 2 * 1px);
        margin-block: 10px 0px;
        filter: drop-shadow(4px 4px 4px rgba(var(--color-gray-3-rgb), 0.2));
    }
}
.c-links-about__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 0px solid var(--color-pink-2);
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .c-links-about__link::after {
        border-radius: calc(22 / 2 * 1px);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-links-about__link::after {
        transition: border-width 0.3s;
    }
    .c-links-about__link:hover::after {
        border-width: 5px;
    }
}
.c-links-about__fig img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-links-about__term {
    padding: 0px 3px 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white-1);
    font-size: 22px;
    font-weight: bold;
    border-radius: 999px;
    background-color: var(--color-pink-8);
    margin-block: 14px 2px;
}
@media screen and (max-width: 767px) {
    .c-links-about__term {
        font-size: calc(30 / 2 * 1px);
        margin-block: 10px 0px;
    }
}
.c-links-about__en {
    display: block;
    color: var(--color-pink-2);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-links-about__en {
        display: none;
    }
}

/* ---------------------------------------------
*   c-link-underline
--------------------------------------------- */
.c-link-underline {
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .c-link-underline:hover {
        text-decoration: none;
    }
}
.c-link-underline.js-tel-disabled {
    text-decoration: none;
}

/* ---------------------------------------------
*   c-list-news
--------------------------------------------- */
.c-list-news {
    position: relative;
}
.c-list-news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: url(../img/common/img_border.png) left center repeat-x;
    background-size: 11px 100%;
}
@media screen and (max-width: 767px) {
    .c-list-news::before {
        height: 1px;
        background-size: 6px 100%;
    }
}
.c-list-news__item {
    position: relative;
}
.c-list-news__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: url(../img/common/img_border.png) left center repeat-x;
    background-size: 11px 100%;
}
@media screen and (max-width: 767px) {
    .c-list-news__item::after {
        height: 1px;
        background-size: 6px 100%;
    }
}
.c-list-news__link {
    padding: 18px 23px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-news__link .c-list-news__ttl {
        transition: color var(--hover-duration);
    }
    .c-list-news__link .c-list-news__ttl span {
        transition: background-image var(--hover-duration);
    }
    .c-list-news__link:hover .c-list-news__ttl {
        color: var(--color-red-1);
    }
    .c-list-news__link:hover .c-list-news__ttl span {
        background-image: linear-gradient(rgba(var(--color-red-1-rgb), 0.4), rgba(var(--color-red-1-rgb), 0.4));
    }
}
@media screen and (max-width: 767px) {
    .c-list-news__link {
        padding: 16px 11px 12px;
        display: block;
    }
}
.c-list-news__top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-list-news__top {
        gap: 11px;
    }
}
.c-list-news__time {
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-list-news__ttl {
        margin-top: 4px;
    }
}
.c-list-news__ttl span {
    display: inline;
    background-image: linear-gradient(rgba(var(--color-base-1-rgb), 0.4), rgba(var(--color-base-1-rgb), 0.4));
    background-position: 0 86%;
    background-size: 100% 1px;
    background-repeat: no-repeat;
}

/* ---------------------------------------------
*   c-list-solve
--------------------------------------------- */
.c-list-solve {
    margin-top: 57px;
}
@media screen and (max-width: 767px) {
    .c-list-solve {
        margin-top: 35px;
    }
}
.c-list-solve__item {
    margin-top: 33px;
}
@media screen and (max-width: 767px) {
    .c-list-solve__item {
        margin-top: 17px;
    }
}
.c-list-solve__item--question .c-list-solve__term::before {
    background: url(../img/solve/ico_question.png) 0 0 no-repeat;
    background-size: contain;
}
.c-list-solve__item--reason .c-list-solve__term::before {
    background: url(../img/solve/ico_reason.png) 0 0 no-repeat;
    background-size: contain;
}
.c-list-solve__item--effect .c-list-solve__term::before {
    background: url(../img/solve/ico_effect.png) 0 0 no-repeat;
    background-size: contain;
}
.c-list-solve__term {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    font-size: 26px;
}
@media screen and (max-width: 767px) {
    .c-list-solve__term {
        font-size: calc(36 / 2 * 1px);
        gap: 4px;
    }
}
.c-list-solve__term::before {
    content: "";
    display: block;
    width: 69px;
    aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
    .c-list-solve__term::before {
        width: calc(94 / 2 * 1px);
    }
}
.c-list-solve__term span {
    position: relative;
}
@media screen and (max-width: 767px) {
    .c-list-solve__term span {
        margin-top: -5px;
    }
}
.c-list-solve__term span::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--color-pink-8);
    border-radius: 999px;
}
@media screen and (max-width: 767px) {
    .c-list-solve__term span::after {
        bottom: -3px;
        height: calc(6 / 2 * 1px);
    }
}
.c-list-solve__desc {
    padding: 15px 63px;
    border: 2px solid var(--color-pink-5);
    border-radius: 21px;
    box-shadow: 5px 8px 7px rgba(var(--color-gray-3-rgb), 0.2);
    margin-top: 16px;
}
@media screen and (max-width: 767px) {
    .c-list-solve__desc {
        padding: 15px;
        margin-top: 5px;
    }
}

/* ---------------------------------------------
*   c-dl-1
--------------------------------------------- */
.c-dl-1__item {
    position: relative;
    margin-top: 23px;
}
@media screen and (max-width: 767px) {
    .c-dl-1__item {
        margin-top: 17px;
    }
}
.c-dl-1__term {
    padding-block: 0 12px;
    border-bottom: 2px solid var(--color-pink-4);
}
@media screen and (max-width: 767px) {
    .c-dl-1__term {
        padding-block: 0 3px;
        border-width: 1px;
    }
}
@media screen and (max-width: 767px) {
    .c-dl-1__term--spl {
        padding-block: 0 5px;
    }
}
.c-dl-1__desc {
    margin-top: 8px;
}

/* ---------------------------------------------
*   c-dl-2
--------------------------------------------- */
.c-dl-2__item {
    position: relative;
    padding-block: 22px;
    display: grid;
    grid-template-columns: calc(335 / var(--contents-width) * 100%) 1fr;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    .c-dl-2__item {
        grid-template-columns: 9em 1fr;
    }
}
@media screen and (max-width: 767px) {
    .c-dl-2__item {
        padding: 15px 4px;
        grid-template-columns: repeat(1, 1fr);
        gap: 0.8rem;
    }
}
@media screen and (min-width: 768px) {
    .c-dl-2__item:last-of-type {
        padding-bottom: 40px;
    }
}
.c-dl-2__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: url(../img/common/img_border.png) left center repeat-x;
    background-size: 11px 100%;
}
@media screen and (max-width: 767px) {
    .c-dl-2__item::after {
        height: 1px;
        background-size: 6px 100%;
    }
}
.c-dl-2__term {
    padding-left: calc(110 / 335 * 100%);
}
@media screen and (max-width: 1024px) {
    .c-dl-2__term {
        padding-left: calc(var(--contents-side-padding) * 1px);
    }
}
@media screen and (max-width: 767px) {
    .c-dl-2__term {
        padding-left: 0;
    }
}

/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1 {
    padding-right: calc(36 / 849 * 100%);
}
@media screen and (max-width: 767px) {
    .c-list-1 {
        padding-right: 0;
    }
}
.c-list-1__item {
    display: grid;
    grid-template-columns: 1fr calc(272 / 813 * 100%);
    gap: 0;
}
@media screen and (max-width: 767px) {
    .c-list-1__item {
        grid-template-columns: repeat(1, 1fr);
    }
}
.c-list-1__item + .c-list-1__item {
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .c-list-1__item + .c-list-1__item {
        margin-top: 23px;
    }
}
@media screen and (max-width: 1024px) {
    .c-list-1__item--map {
        grid-template-columns: repeat(1, 1fr);
    }
}
.c-list-1__left {
    position: relative;
}
.c-list-1__logo {
    display: block;
    width: calc(240 / 272 * 100%);
    margin-left: auto;
    margin-top: 9px;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-1__logo {
        transition: opacity var(--hover-duration);
    }
    .c-list-1__logo:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .c-list-1__logo {
        width: calc(360 / 2 * 1px);
        margin-inline: auto;
    }
}
.c-list-1__logo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-list-1__map {
    width: calc(321 / 542 * 100%);
}
@media screen and (max-width: 767px) {
    .c-list-1__map {
        position: relative;
        left: 1.8%;
        width: 96%;
        margin-top: -35px;
    }
}

/* ---------------------------------------------
*   c-dl-company
--------------------------------------------- */
.c-dl-company {
    padding: calc(34 / 272 * 100%) calc(30 / 272 * 100%);
    background-color: var(--color-gray-5);
}
@media screen and (max-width: 1024px) {
    .c-dl-company {
        padding: 17px 22px 22px;
    }
}
.c-dl-company__item + .c-dl-company__item {
    margin-top: 10px;
}
.c-dl-company__desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: min(3 / var(--contents-width) * 100vw, 3px);
    margin-top: 1px;
}
@media screen and (max-width: 767px) {
    .c-dl-company__desc {
        margin-top: 3px;
    }
}
.c-dl-company__tag {
    padding: 2px 4px;
    color: var(--color-blue-6);
    font-size: 12px;
    line-height: 1;
    border: 1px solid var(--color-blue-6);
}
@media screen and (max-width: 767px) {
    .c-dl-company__tag {
        padding: 2px 6px;
        font-size: calc(18 / 2 * 1px);
    }
}
.c-dl-company--vw {
    padding: 0;
    background-color: transparent;
}
@media screen and (min-width: 768px) {
    .c-dl-company--vw {
        position: absolute;
        top: 30%;
        right: 4.3%;
    }
}
@media screen and (max-width: 767px) {
    .c-dl-company--vw {
        padding-left: 0.8%;
        margin-block: 8px 27px;
    }
}
@media screen and (min-width: 768px) {
    .c-dl-company--vw .c-dl-company__item + .c-dl-company__item {
        margin-top: min(10 / var(--contents-width) * 100vw, 10px);
    }
}
@media screen and (min-width: 768px) {
    .c-dl-company--vw .c-dl-company__tag {
        padding: min(2 / var(--contents-width) * 100vw, 2px) min(4 / var(--contents-width) * 100vw, 4px);
        font-size: min(12 / var(--contents-width) * 100vw, 12px);
    }
}

/* ---------------------------------------------
*   c-dl-advantage
--------------------------------------------- */
.c-dl-advantage {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 33px;
    margin-top: 36px;
}
@media screen and (max-width: 1024px) {
    .c-dl-advantage {
        gap: 16px;
    }
}
@media screen and (max-width: 767px) {
    .c-dl-advantage {
        padding-right: 5px;
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
        margin-top: 13px;
    }
}
.c-dl-advantage__item {
    position: relative;
    display: grid;
}
@media screen and (min-width: 768px) {
    .c-dl-advantage__item {
        padding-top: 23px;
        grid-template-rows: subgrid;
        grid-row: span 3;
        gap: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-dl-advantage__item {
        grid-template-columns: 1fr calc(259 / 2 * 1px);
        grid-template-rows: auto 1fr;
        gap: 1rem;
        align-items: start;
    }
}
.c-dl-advantage__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 18px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-pink-2);
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .c-dl-advantage__item::before {
        top: 44px;
        left: 0px;
        width: calc(28 / 2 * 1px);
        transform: none;
    }
}
.c-dl-advantage__item::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    display: block;
    width: calc(100% + 33px);
    height: 2px;
    background-color: var(--color-pink-2);
}
@media screen and (max-width: 1024px) {
    .c-dl-advantage__item::after {
        width: calc(100% + 16px);
    }
}
@media screen and (max-width: 767px) {
    .c-dl-advantage__item::after {
        top: 50px;
        left: 6.5px;
        width: calc(3 / 2 * 1px);
        height: calc(100% + 14px);
    }
}
@media screen and (min-width: 768px) {
    .c-dl-advantage__item:nth-of-type(6)::after {
        display: none;
    }
    .c-dl-advantage__item:nth-of-type(n+7) {
        margin-top: 29px;
    }
}
.c-dl-advantage__item:nth-of-type(11)::after {
    display: none;
}
.c-dl-advantage__year {
    display: block;
    color: var(--color-pink-2);
    font-size: min(26 / var(--contents-width) * 100vw, 26px);
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-dl-advantage__year {
        padding-top: 34px;
        padding-left: 23px;
        grid-area: 1/1/2/2;
        font-size: calc(39 / 2 * 1px);
        letter-spacing: 0.04em;
        text-align: left;
    }
}
.c-dl-advantage__year-unit {
    font-size: min(16 / var(--contents-width) * 100vw, 16px);
    margin-left: min(5 / var(--contents-width) * 100vw, 5px);
}
@media screen and (max-width: 767px) {
    .c-dl-advantage__year-unit {
        font-size: calc(24 / 2 * 1px);
        margin-left: 3px;
    }
}
.c-dl-advantage__ttl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: min(20 / var(--contents-width) * 100vw, 20px);
    text-align: center;
    line-height: 1.15;
    margin-top: 7px;
}
@media screen and (max-width: 767px) {
    .c-dl-advantage__ttl {
        padding-left: 24px;
        display: block;
        grid-area: 2/1/3/2;
        font-size: calc(30 / 2 * 1px);
        text-align: left;
        margin-top: -4px;
    }
}
.c-dl-advantage__link {
    position: relative;
    display: block;
    border-radius: min(25 / var(--contents-width) * 100vw, 25px);
    filter: drop-shadow(6px 6px 5px rgba(var(--color-gray-3-rgb), 0.2));
    margin-top: 13px;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
@media screen and (max-width: 767px) {
    .c-dl-advantage__link {
        grid-area: 1/2/3/3;
        border-radius: 21px;
        margin-top: 0;
    }
}
.c-dl-advantage__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: min(27 / var(--contents-width) * 100vw, 27px);
    border: 0px solid var(--color-pink-2);
    box-sizing: border-box;
    will-change: border-width;
}
@media screen and (max-width: 767px) {
    .c-dl-advantage__link::after {
        border-radius: 21px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-dl-advantage__link::after {
        transition: border-width 0.3s;
    }
    .c-dl-advantage__link:hover::after {
        border-width: 5px;
    }
}

/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
    padding-block: 40px 0;
}
@media screen and (max-width: 767px) {
    .c-section-1 {
        padding-block: 25px 0;
    }
}

/* ---------------------------------------------
*   c-section-solve
--------------------------------------------- */
.c-section-solve {
    padding-top: 4px;
}
.c-section-solve__head {
    padding-inline: calc(62 / var(--contents-width-small) * 100%) calc(65 / var(--contents-width-small) * 100%);
    display: grid;
    grid-template-columns: 1fr calc(333 / var(--contents-width-small) * 100%);
    align-items: center;
    gap: calc(30 / var(--contents-width-small) * 100%);
}
@media screen and (max-width: 1024px) {
    .c-section-solve__head {
        padding-inline: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-section-solve__head {
        grid-template-columns: 1fr calc(348 / var(--design-width) * 100vw);
        align-items: flex-start;
        gap: 9px;
    }
    .c-section-solve__head .c-ttl-4 {
        padding-top: 4px;
    }
}
.c-section-solve__eyecatch {
    width: 100%;
    border-radius: 15px;
    filter: drop-shadow(9px 6px 6px rgba(var(--color-gray-3-rgb), 0.2));
}
@media screen and (max-width: 767px) {
    .c-section-solve__eyecatch {
        border-radius: calc(15 / 2 * 1px);
        filter: drop-shadow(4px 4px 4px rgba(var(--color-gray-3-rgb), 0.2));
    }
}
.c-section-solve__eyecatch img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.c-section-solve__body {
    margin-top: 18px;
}
@media screen and (max-width: 767px) {
    .c-section-solve__body {
        margin-top: 19px;
    }
}
.c-section-solve__detail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
@media screen and (max-width: 767px) {
    .c-section-solve__detail {
        align-items: flex-start;
        gap: 9px;
    }
}
.c-section-solve__tag {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    background-color: var(--color-pink-8);
    border-radius: 8px;
    color: var(--color-white-1);
    font-size: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-solve__tag {
        padding: 2px 6px 3px;
        font-size: calc(24 / 2 * 1px);
        border-radius: calc(8 / 2 * 1px);
    }
}
@media screen and (max-width: 767px) {
    .c-section-solve__detail-txt {
        padding-top: 2px;
    }
}

/* ---------------------------------------------
*   c-section-movie
--------------------------------------------- */
.c-section-movie {
    position: relative;
    padding-block: 40px 58px;
    background-color: rgba(var(--color-white-2-rgb), 0.84);
}
@media screen and (max-width: 767px) {
    .c-section-movie {
        padding-block: 4px 21px;
    }
}
.c-section-movie::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/common/bg_welcome.png) top left no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
}
.c-section-movie .l-container {
    position: relative;
    z-index: 1;
}
.c-section-movie__movie {
    max-width: 807px;
    aspect-ratio: 16/9;
    margin: 24px auto;
    border-radius: 23px;
    border: 4px solid var(--color-pink-9);
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-section-movie__movie {
        border-radius: calc(12 / 2 * 1px);
        border-width: calc(2 / 2 * 1px);
        margin-block: 15px;
    }
}
.c-section-movie__movie iframe {
    display: block;
    width: 100%;
    height: 101%;
    border: none;
}
.c-section-movie--wh {
    padding-block: 40px 0;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .c-section-movie--wh {
        padding-block: 6px 0;
    }
}
.c-section-movie--wh::after {
    display: none;
}
.c-section-movie--wh .c-section-movie__movie {
    margin: 24px auto 20px;
}
@media screen and (max-width: 767px) {
    .c-section-movie--wh .c-section-movie__movie {
        margin: 17px auto 13px;
    }
}

/* ---------------------------------------------
*   c-section-advantage
--------------------------------------------- */
.c-section-advantage {
    padding-block: 28px 62px;
    background-color: var(--color-white-2);
}
@media screen and (max-width: 767px) {
    .c-section-advantage {
        padding-block: 12px 39px;
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-pager
--------------------------------------------- */
.c-pager .wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-black-1);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--color-brown-1);
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .c-pager .wp-pagenavi {
        font-size: calc(26 / 2 * 1px);
    }
}
.c-pager .wp-pagenavi > * {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 33px;
    aspect-ratio: 1/1;
    border-right: 1px solid var(--color-brown-1);
}
@media screen and (max-width: 767px) {
    .c-pager .wp-pagenavi > * {
        gap: 5px;
        width: calc(60 / 2 * 1px);
    }
}
.c-pager .wp-pagenavi:last-of-type {
    border-right: none;
}
.c-pager .wp-pagenavi .first, .c-pager .wp-pagenavi .pages, .c-pager .wp-pagenavi .last {
    display: none;
}
.c-pager .wp-pagenavi .current {
    pointer-events: none;
}
.c-pager .wp-pagenavi .current, .c-pager .wp-pagenavi .nextpostslink, .c-pager .wp-pagenavi .previouspostslink {
    background-color: var(--color-brown-2);
}
.c-pager .wp-pagenavi .nextpostslink, .c-pager .wp-pagenavi .previouspostslink {
    position: relative;
    color: var(--color-blue-1);
    width: 91px;
    aspect-ratio: 91/33;
}
@media screen and (max-width: 767px) {
    .c-pager .wp-pagenavi .nextpostslink, .c-pager .wp-pagenavi .previouspostslink {
        width: calc(165 / 2 * 1px);
        aspect-ratio: 165/60;
    }
}
.c-pager .wp-pagenavi .nextpostslink::before, .c-pager .wp-pagenavi .previouspostslink::before {
    content: "";
    display: block;
    width: 8px;
    aspect-ratio: 27/44;
    background: url(../img/common/icon/ico_arrow_ltr_brown.png) 0 0 no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 767px) {
    .c-pager .wp-pagenavi .nextpostslink::before, .c-pager .wp-pagenavi .previouspostslink::before {
        position: relative;
        top: 0.8px;
        width: 5px;
        aspect-ratio: 44/76;
        background: url(../img/common/icon/ico_arrow_ltr_brown_thin.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}
.c-pager .wp-pagenavi .previouspostslink::before {
    transform: rotate(180deg);
}
.c-pager .wp-pagenavi .nextpostslink {
    flex-direction: row-reverse;
}
@media (hover: hover) and (pointer: fine) {
    .c-pager .wp-pagenavi a {
        transition: opacity var(--hover-duration);
    }
    .c-pager .wp-pagenavi a:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

/* ---------------------------------------------
*   c-tabs
--------------------------------------------- */
.c-tabs__tab-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 19px;
}
@media screen and (max-width: 767px) {
    .c-tabs__tab-list {
        gap: 10px;
    }
}
.c-tabs__tab {
    padding: 7px 26px 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    color: var(--color-pink-5);
    font-size: 22px;
    border: 1px solid var(--color-pink-5);
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-tabs__tab {
        transition: background-color var(--hover-duration), color var(--hover-duration);
    }
    .c-tabs__tab:hover {
        background-color: var(--color-pink-5);
        color: var(--color-white-1);
    }
}
@media screen and (max-width: 767px) {
    .c-tabs__tab {
        padding: 4px 14px 5px;
        font-size: calc(26 / 2 * 1px);
    }
    .firefox .c-tabs__tab {
        padding-bottom: 6px;
    }
}
.c-tabs__tab.is-current {
    background-color: var(--color-pink-5);
    color: var(--color-white-1);
    pointer-events: none;
}
.c-tabs__body {
    margin-top: 42px;
}

/* ---------------------------------------------
*   c-tabs-solve
--------------------------------------------- */
.c-tabs-solve {
    padding-block: 26px 28px;
    background-color: var(--color-white-2);
}
@media screen and (max-width: 767px) {
    .c-tabs-solve {
        padding-block: 20px;
    }
}
.c-tabs-solve__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px calc(20 / var(--contents-width-small) * 100%);
}
@media screen and (max-width: 1024px) {
    .c-tabs-solve__list {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .c-tabs-solve__list {
        gap: 23px 13px;
    }
}
@media screen and (max-width: 767px) {
    .c-tabs-solve--wh {
        background-color: var(--color-white-1);
        padding-block: 11px 19px;
    }
}
@media screen and (max-width: 767px) {
    .c-tabs-solve--wh .c-tabs-solve__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 7px;
    }
}
@media screen and (max-width: 767px) {
    .c-tabs-solve--wh .c-tabs-solve__item {
        display: contents;
    }
}
@media screen and (max-width: 767px) {
    .c-tabs-solve--wh .c-card-solve {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .c-tabs-solve--pink .c-tabs-solve__list {
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 767px) {
    .c-tabs-solve--pink .c-tabs-solve__item {
        width: calc((100% - 26px) / 3);
        flex-shrink: 0;
    }
    .c-tabs-solve--pink .c-tabs-solve__item .c-card-solve {
        padding: 10px 5px 8px;
    }
}
.c-tabs-solve--large {
    position: relative;
    padding-block: 31px 44px;
    background-color: rgba(var(--color-white-2-rgb), 0.84);
}
@media screen and (max-width: 767px) {
    .c-tabs-solve--large {
        padding-block: 19px 20px;
    }
}
.c-tabs-solve--large::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/common/bg_welcome.png) top left no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
}
.c-tabs-solve--large .l-container {
    position: relative;
    z-index: 1;
}

/*  c-card-solve
--------------------------------------------- */
.c-card-solve {
    position: relative;
    padding: 10px 10px 7px;
    display: block;
    height: 100%;
    border-radius: 21px;
    background-color: var(--color-white-1);
    border: 1px solid var(--color-gray-2);
    filter: drop-shadow(9px 6px 6px rgba(var(--color-gray-3-rgb), 0.2));
    box-sizing: border-box;
    letter-spacing: 0;
    will-change: border-width;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
@media screen and (min-width: 768px) {
    .c-card-solve {
        min-height: 157px;
    }
}
@media screen and (max-width: 767px) {
    .c-card-solve {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: calc(13 / 2 * 1px);
        filter: drop-shadow(2px 2px 3px rgba(var(--color-gray-3-rgb), 0.3));
    }
}
.c-card-solve::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 0px solid var(--color-pink-2);
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .c-card-solve::after {
        border-radius: 5px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-card-solve::after {
        transition: border-width 0.3s;
    }
    .c-card-solve:hover::after {
        border-width: 5px;
    }
}
.is-current .c-card-solve {
    pointer-events: none;
}
.is-current .c-card-solve::after {
    border-width: 5px;
}

.c-card-solve[data-cat-id=series-lora-series] .c-card-solve__cat {
    background-color: var(--color-green-1);
}
.c-card-solve[data-cat-id=series-lora-series]::after {
    border-color: var(--color-green-1);
}
.c-card-solve[data-cat-id=series-standard-series] .c-card-solve__cat {
    background-color: var(--color-pink-6);
}
.c-card-solve[data-cat-id=series-standard-series]::after {
    border-color: var(--color-pink-6);
}
.c-card-solve[data-cat-id=series-nurse-series] .c-card-solve__cat {
    background-color: var(--color-purple-1);
}
.c-card-solve[data-cat-id=series-nurse-series]::after {
    border-color: var(--color-purple-1);
}
.c-card-solve[data-cat-id=series-nurse-lora] .c-card-solve__cat {
    background-color: var(--color-blue-2);
}
.c-card-solve[data-cat-id=series-nurse-lora]::after {
    border-color: var(--color-blue-2);
}
.c-card-solve[data-cat-id=series-nurse-concent] .c-card-solve__cat {
    background-color: var(--color-red-2);
}
.c-card-solve[data-cat-id=series-nurse-concent]::after {
    border-color: var(--color-red-2);
}
.c-card-solve[data-cat-id=sensor-fumufumu] .c-card-solve__fig {
    width: calc(139 / 162 * 100%);
    margin-inline: auto;
    margin-block: 18px 22px;
}
@media screen and (max-width: 767px) {
    .c-card-solve[data-cat-id=sensor-fumufumu] .c-card-solve__fig {
        width: calc(153 / 162 * 100%);
        margin-block: 9px 13px;
    }
}
.c-card-solve[data-cat-id=sensor-tyouonpa] .c-card-solve__fig {
    width: calc(140 / 162 * 100%);
    margin-inline: auto;
    margin-block: 10px 5px;
}
@media screen and (max-width: 767px) {
    .c-card-solve[data-cat-id=sensor-tyouonpa] .c-card-solve__fig {
        position: relative;
        left: 4.6%;
        width: calc(149 / 162 * 100%);
        margin-block: 3px;
    }
}
.c-card-solve[data-cat-id=sensor-okiagari] .c-card-solve__fig {
    width: calc(128 / 162 * 100%);
    margin-inline: auto;
    margin-block: 18px 24px;
}
@media screen and (max-width: 767px) {
    .c-card-solve[data-cat-id=sensor-okiagari] .c-card-solve__fig {
        position: relative;
        left: 3.8%;
        width: calc(147 / 162 * 100%);
        margin-block: 7px 13px;
    }
}
.c-card-solve[data-cat-id=sensor-call] .c-card-solve__fig {
    width: calc(60 / 162 * 100%);
    margin-inline: auto;
    margin-block: 10px 13px;
}
@media screen and (max-width: 767px) {
    .c-card-solve[data-cat-id=sensor-call] .c-card-solve__fig {
        width: calc(64 / 162 * 100%);
        margin-block: 4px;
    }
}
.c-card-solve[data-cat-id=sensor-haikai] .c-card-solve__fig {
    width: calc(80 / 162 * 100%);
    margin-inline: auto;
    margin-block: -2px -1px;
}
@media screen and (max-width: 767px) {
    .c-card-solve[data-cat-id=sensor-haikai] .c-card-solve__fig {
        position: relative;
        left: 3.9%;
        width: calc(80 / 162 * 100%);
        margin-block: -4px 0;
    }
}
.c-card-solve__fig {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-card-solve__fig {
        border-radius: calc(10 / 2 * 1px) calc(10 / 2 * 1px) 0 0;
    }
}
.c-card-solve__fig img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-card-solve__fig--series {
    aspect-ratio: 159/123;
}
@media screen and (max-width: 767px) {
    .c-card-solve__fig--series {
        aspect-ratio: 294/228;
    }
}
.c-card-solve__txt {
    display: block;
    color: var(--color-base-1);
    font-size: 10px;
    margin-top: 6px;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .c-card-solve__txt {
        font-size: calc(18 / 2 * 1px);
        margin-top: 7px;
    }
}
.c-card-solve__cat {
    padding: 0 3px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    font-size: 11px;
    margin-top: 2px;
}
@media screen and (max-width: 767px) {
    .c-card-solve__cat {
        padding: 1px 3px 2px;
        font-size: calc(22 / 2 * 1px);
        margin-top: 1px;
    }
}
@media screen and (min-width: 768px) {
    .ipad .c-card-solve__cat {
        padding-top: 2px;
    }
}

.c-card-solve__sub-txt {
    display: block;
    color: var(--color-base-1);
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-card-solve__sub-txt {
        font-size: calc(22 / 2 * 1px);
    }
}
.c-card-solve__caption {
    display: block;
    color: var(--color-base-1);
    font-size: 16px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-card-solve__caption {
        font-size: calc(20 / 2 * 1px);
        white-space: nowrap;
    }
}
.c-card-solve--large {
    padding: 15px 10px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 25px;
}
@media screen and (max-width: 767px) {
    .c-card-solve--large {
        border-radius: calc(13 / 2 * 1px);
    }
}
.c-card-solve--large .c-card-solve__caption {
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .c-card-solve--large .c-card-solve__caption {
        font-size: calc(20 / 2 * 1px);
    }
}
@media screen and (min-width: 768px) {
    .c-card-solve--large[data-cat-id=sensor-okiagari] .c-card-solve__fig {
        position: relative;
        left: 3%;
        width: calc(134 / 162 * 100%);
    }
}

/* ---------------------------------------------
*   c-tag-1
--------------------------------------------- */
.c-tag-1 {
    padding: 2px 18px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-pink-5);
    color: var(--color-white-1);
    font-size: 18px;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-tag-1 {
        padding: 1px 10px;
        font-size: calc(20 / 2 * 1px);
    }
}
.firefox .c-tag-1 {
    padding-bottom: 6px;
}
@media screen and (max-width: 767px) {
    .firefox .c-tag-1 {
        padding-bottom: 2px;
    }
}

@media screen and (max-width: 767px) {
    .edge .c-tag-1 {
        padding-block: 2px 3px;
    }
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl-1
--------------------------------------------- */
.c-ttl-1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    transform: translateX(-48px);
}
@media screen and (max-width: 767px) {
    .c-ttl-1 {
        gap: 3px;
        transform: translateX(-23px);
    }
}
.c-ttl-1::before {
    content: "";
    position: relative;
    top: -5px;
    display: block;
    background: url(../img/news/ico_ttl.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 85px;
    aspect-ratio: 340/249;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-ttl-1::before {
        top: -2px;
        width: 43px;
    }
}
.c-ttl-1__jp {
    display: block;
    font-size: 37px;
}
@media screen and (max-width: 767px) {
    .c-ttl-1__jp {
        font-size: calc(40 / 2 * 1px);
    }
}
.c-ttl-1__en {
    position: relative;
    left: 6px;
    display: block;
    font-size: 15px;
}
@media screen and (max-width: 767px) {
    .c-ttl-1__en {
        left: 1px;
        font-size: calc(24 / 2 * 1px);
        margin-top: -6px;
    }
}
.c-ttl-1--def {
    transform: none;
}
.c-ttl-1--def::before {
    display: none;
}
.c-ttl-1--def .c-ttl-1__en {
    position: static;
    margin-top: -4px;
}
@media screen and (min-width: 768px) {
    .c-ttl-1--def .c-ttl-1__en {
        font-size: 18px;
    }
}
.c-ttl-1--product {
    transform: none;
}
@media screen and (max-width: 767px) {
    .c-ttl-1--product {
        gap: 7px;
        transform: translateX(-18px);
    }
}
.c-ttl-1--product::before {
    top: -1px;
    width: 64px;
    aspect-ratio: 64/65;
    background: url(../img/common/icon/ico_search.png) 0 0 no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 767px) {
    .c-ttl-1--product::before {
        width: calc(76 / 2 * 1px);
    }
}
.c-ttl-1--product .c-ttl-1__en {
    letter-spacing: 0;
}
@media screen and (min-width: 768px) {
    .c-ttl-1--product .c-ttl-1__en {
        font-size: 18px;
        margin-top: -7px;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-1--product .c-ttl-1__en {
        margin-top: -2px;
    }
}

/* ---------------------------------------------
*   c-ttl-2
--------------------------------------------- */
.c-ttl-2 {
    position: relative;
    font-size: 28px;
    padding-left: 14px;
}
@media screen and (max-width: 767px) {
    .c-ttl-2 {
        padding-left: 9px;
        font-size: calc(30 / 2 * 1px);
    }
}
.c-ttl-2::before {
    content: "";
    position: absolute;
    top: 51%;
    left: -2px;
    display: block;
    width: 7px;
    height: 88%;
    background-color: var(--color-pink-4);
    transform: translateY(-50%);
    border-radius: 3px;
}
@media screen and (max-width: 767px) {
    .c-ttl-2::before {
        left: 0;
        height: 83%;
        border-radius: calc(3 / 2 * 1px);
        width: calc(7 / 2 * 1px);
    }
}
.c-ttl-2 span {
    margin-left: 0.3em;
}
@media screen and (max-width: 767px) {
    .c-ttl-2 span {
        margin-left: 0.1em;
    }
}

/* ---------------------------------------------
*   c-ttl-3
--------------------------------------------- */
.c-ttl-3 {
    padding: 5px 18px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 26px;
    margin-inline: auto;
    border-radius: 999px;
    background-color: var(--color-pink-2);
    color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .c-ttl-3 {
        padding: 2px 14px 5px;
        font-size: calc(36 / 2 * 1px);
    }
}
@media screen and (min-width: 768px) {
    .firefox .c-ttl-3 {
        padding-bottom: 7px;
    }
}

@media screen and (min-width: 768px) {
    .ipad .c-ttl-3 {
        padding-bottom: 7px;
    }
}

@media screen and (min-width: 768px) {
    .windows.chrome .c-ttl-3 {
        padding-bottom: 7px;
    }
}

.c-ttl-3[data-cat-id=lora-series] {
    background-color: var(--color-green-1);
}
.c-ttl-3[data-cat-id=standard-series] {
    background-color: var(--color-pink-6);
}
.c-ttl-3[data-cat-id=nurse-series] {
    background-color: var(--color-purple-1);
}
.c-ttl-3[data-cat-id=nurse-lora] {
    background-color: var(--color-blue-2);
}
.c-ttl-3[data-cat-id=nurse-concent] {
    background-color: var(--color-red-2);
}

/* ---------------------------------------------
*   c-ttl-4
--------------------------------------------- */
.c-ttl-4 {
    font-size: 40px;
    line-height: 1.225;
}
@media screen and (max-width: 767px) {
    .c-ttl-4 {
        font-size: calc(40 / 2 * 1px);
    }
}
.c-section-solve__head .c-ttl-4 {
    font-size: 35px;
    line-height: 1.5714285714;
}
@media screen and (max-width: 767px) {
    .c-section-solve__head .c-ttl-4 {
        font-size: calc(35 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-txt-1
--------------------------------------------- */
.c-txt-1 {
    font-size: 20px;
}
@media screen and (max-width: 767px) {
    .c-txt-1 {
        font-size: calc(22 / 2 * 1px);
        line-height: 1.4615384615;
    }
}
@media screen and (max-width: 767px) {
    .c-txt-1--sp28 {
        font-size: calc(28 / 2 * 1px);
    }
}
@media screen and (max-width: 767px) {
    .c-txt-1--sp26 {
        font-size: calc(26 / 2 * 1px);
    }
}
@media screen and (max-width: 767px) {
    .c-txt-1--sp24 {
        font-size: calc(24 / 2 * 1px);
    }
}
@media screen and (min-width: 768px) {
    .c-txt-1--1000 {
        max-width: 1000px;
        margin-inline: auto;
    }
}

/* ---------------------------------------------
*   c-txt-2
--------------------------------------------- */
.c-txt-2 {
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .c-txt-2 {
        font-size: calc(26 / 2 * 1px);
    }
}
.c-txt-2--indent {
    padding-left: 1em;
    text-indent: -1.04em;
}
@media screen and (max-width: 767px) {
    .c-txt-2--indent {
        text-indent: -1em;
    }
}
@media screen and (max-width: 767px) {
    .c-txt-2--sp28 {
        font-size: calc(28 / 2 * 1px);
    }
}
@media screen and (max-width: 767px) {
    .c-txt-2--sp24 {
        font-size: calc(24 / 2 * 1px);
    }
}
@media screen and (min-width: 768px) {
    .c-txt-2--vw {
        font-size: min(18 / var(--contents-width) * 100vw, 18px);
    }
}

/* ---------------------------------------------
*   c-txt-3
--------------------------------------------- */
.c-txt-3 {
    font-size: 30px;
}
@media screen and (max-width: 767px) {
    .c-txt-3 {
        font-size: calc(33 / 2 * 1px);
    }
}

/* ---------------------------------------------
*   c-txt-4
--------------------------------------------- */
.c-txt-4 {
    font-size: 36px;
}
@media screen and (max-width: 767px) {
    .c-txt-4 {
        font-size: calc(38 / 2 * 1px);
    }
}

/* ---------------------------------------------
*   c-txt-5
--------------------------------------------- */
.c-txt-5 {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.375;
}
@media screen and (max-width: 767px) {
    .c-txt-5 {
        font-size: calc(22 / 2 * 1px);
        line-height: 1.3636363636;
    }
}
.c-txt-5--indent {
    padding-left: 2em;
    text-indent: -2em;
}
.c-txt-5--indent2 {
    padding-left: 1.2em;
    text-indent: -1.3em;
}
.c-txt-5--932 {
    max-width: 932px;
    margin-inline: auto;
}
.c-txt-5--829 {
    max-width: 829px;
    margin-inline: auto;
}

/* ---------------------------------------------
*   c-wysiwyg-news
--------------------------------------------- */
.c-wysiwyg-news {
    overflow: hidden;
    margin-top: 77px;
    font-size: 20px;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-news {
        margin-top: 19px;
    }
}
.c-wysiwyg-news::after {
    content: "";
    display: block;
    clear: both;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-news {
        font-size: calc(26 / 2 * 1px);
        line-height: 1.7692307692;
    }
}
.c-wysiwyg-news > :last-child {
    margin-bottom: 0 !important;
}
.c-wysiwyg-news > :first-child {
    margin-top: 0;
}
.c-wysiwyg-news sup {
    vertical-align: super;
    font-size: smaller;
}
.c-wysiwyg-news sub {
    vertical-align: sub;
    font-size: smaller;
}
.c-wysiwyg-news h1, .c-wysiwyg-news h2, .c-wysiwyg-news h3 {
    margin-top: 3rem;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-news h1, .c-wysiwyg-news h2, .c-wysiwyg-news h3 {
        margin-top: 2rem;
    }
}
.c-wysiwyg-news h4, .c-wysiwyg-news h5, .c-wysiwyg-news h6 {
    margin-top: 2rem;
}
.c-wysiwyg-news h1, .c-wysiwyg-news h2, .c-wysiwyg-news h3, .c-wysiwyg-news h4, .c-wysiwyg-news h5, .c-wysiwyg-news h6 {
    font-weight: 700;
}
.c-wysiwyg-news h2 {
    position: relative;
    font-size: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 11px;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-news h2 {
        gap: 3px;
        font-size: calc(28 / 2 * 1px);
    }
}
.c-wysiwyg-news h2::before {
    content: "";
    position: relative;
    top: 0.6em;
    width: 12px;
    aspect-ratio: 7/13;
    background: url(../img/common/icon/ico_arrow-ltr_thin.png) 0 0 no-repeat;
    background-size: 100% auto;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-news h2::before {
        top: 0.4em;
        width: 8px;
    }
}
.c-wysiwyg-news i,
.c-wysiwyg-news strong {
    font-weight: bold;
}
.c-wysiwyg-news p {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-news p {
        margin-block: 0.5rem;
    }
}
.c-wysiwyg-news em {
    font-style: italic;
}
.c-wysiwyg-news a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
    .c-wysiwyg-news a:hover {
        text-decoration: none;
    }
}
@media screen and (max-width: 767px) {
    .c-wysiwyg-news a {
        text-underline-offset: 2px;
    }
}
.c-wysiwyg-news ul {
    list-style-type: disc;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg-news ol {
    list-style-type: decimal;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg-news li {
    display: list-item;
    text-align: -webkit-match-parent;
}
.c-wysiwyg-news blockquote {
    padding: 1em;
    background-color: #eaeaea;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg-news pre {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg-news del {
    text-decoration: line-through;
}
.c-wysiwyg-news hr {
    display: block;
    border: none;
    border-top: #9a9a9a 1px solid;
    border-bottom: #eee 1px solid;
}
.c-wysiwyg-news 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-news .aligncenter {
    display: block;
    max-width: 100%;
    margin: 1rem auto;
}
.c-wysiwyg-news .alignright {
    float: right;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-left: 1rem;
}
.c-wysiwyg-news .alignleft {
    float: left;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-right: 1rem;
}
.c-wysiwyg-news img[class*=wp-image-],
.c-wysiwyg-news img[class*=attachment-] {
    height: auto;
    max-width: 100%;
}
.c-wysiwyg-news .wp-caption {
    max-width: 100%;
    text-align: left;
}
.c-wysiwyg-news .wp-caption img {
    width: 100%;
}
.c-wysiwyg-news .wp-caption-text {
    display: block;
    padding: 0.5em 1rem 0;
    text-align: left;
    color: #8a8a8a;
    font-size: 0.875em;
    margin: 0;
}
.c-wysiwyg-news table {
    margin-top: 1em;
    margin-bottom: 1em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.c-wysiwyg-news table th,
.c-wysiwyg-news table td {
    padding: 0.5em;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    word-break: break-all;
}
.c-wysiwyg-news table th {
    background-color: #eee;
}

/* ---------------------------------------------
*   c-wysiwyg
--------------------------------------------- */
.c-wysiwyg {
    overflow: hidden;
    font-size: 20px;
    line-height: 2;
}
.c-wysiwyg::after {
    content: "";
    display: block;
    clear: both;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg {
        font-size: calc(26 / 2 * 1px);
        line-height: 1.7692307692;
    }
}
.c-wysiwyg.c-list-solve__desc, .c-wysiwyg.c-block-voice__detail {
    font-family: var(--ff-Rounded);
    line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
    .c-wysiwyg.c-list-solve__desc, .c-wysiwyg.c-block-voice__detail {
        font-size: 18px;
    }
}
.c-wysiwyg > :last-child {
    margin-bottom: 0 !important;
}
.c-wysiwyg > :first-child {
    margin-top: 0;
}
.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;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h1, .c-wysiwyg h2, .c-wysiwyg h3 {
        margin-top: 2rem;
    }
}
.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 {
    font-size: 24px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h2 {
        font-size: calc(28 / 2 * 1px);
    }
}
.c-wysiwyg i,
.c-wysiwyg strong {
    font-weight: bold;
}
.c-wysiwyg p {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg p {
        margin-block: 0.5rem;
    }
}
.c-wysiwyg em {
    font-style: italic;
}
.c-wysiwyg a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
    .c-wysiwyg a:hover {
        text-decoration: none;
    }
}
@media screen and (max-width: 767px) {
    .c-wysiwyg a {
        text-underline-offset: 2px;
    }
}
.c-wysiwyg ul {
    list-style-type: disc;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg ol {
    list-style-type: decimal;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg li {
    display: list-item;
    text-align: -webkit-match-parent;
}
.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;
}

/* ---------------------------------------------
*   p-haikai-kv
--------------------------------------------- */
.p-haikai-kv {
    overflow: hidden;
}
.p-haikai-kv__ttl {
    position: relative;
    left: 49.2%;
    transform: translateX(-50%);
    width: calc(3775 / 2 * 1px);
    margin-top: min(-1.6%, -19px);
}
.p-haikai-kv__ttl img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (max-width: 767px) {
    .p-haikai-kv__ttl {
        left: 50%;
        width: 100%;
    }
}

/* ---------------------------------------------
*   p-haikai-section
--------------------------------------------- */
.p-haikai-section {
    position: relative;
    margin-top: -166px;
}
@media screen and (max-width: 767px) {
    .p-haikai-section {
        margin-top: 32px;
    }
}
.p-haikai-section__body {
    position: relative;
    padding-block: 0 137px;
    margin-top: 42px;
    background-color: var(--color-haikai-2);
}
@media screen and (max-width: 767px) {
    .p-haikai-section__body {
        margin-top: 37px;
    }
}
.p-haikai-section__body::before {
    content: "";
    position: absolute;
    top: -89px;
    left: 50%;
    width: calc(1654 / 1200 * 100%);
    height: 366px;
    background-color: var(--color-haikai-2);
    clip-path: ellipse(50% 50% at 50% 50%);
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .p-haikai-section__body::before {
        top: -82px;
        width: calc(2394 / 1200 * 100%);
        height: auto;
        aspect-ratio: 1654/402;
    }
}

/* ---------------------------------------------
*   p-haikai-ttl
--------------------------------------------- */
.p-haikai-ttl {
    position: relative;
    z-index: 1;
    text-align: center;
}
.p-haikai-ttl__jp {
    padding: 4px 10px 9px;
    color: var(--color-white-1);
    font-size: 31px;
    letter-spacing: 0.04em;
    line-height: 1;
    background-color: var(--color-haikai-1);
    border-radius: 999px;
    border: 3px solid var(--color-white-1);
    display: block;
    width: 285px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-haikai-ttl__jp {
        padding-block: 6px 8px;
        font-size: calc(54 / 2 * 1px);
        width: calc(502 / 2 * 1px);
        border-width: calc(3 / 2 * 1px);
    }
}
.p-haikai-ttl__en {
    color: var(--color-haikai-1);
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .p-haikai-ttl__en {
        display: block;
        font-size: calc(24 / 2 * 1px);
        margin-top: -1px;
    }
}
.p-haikai-ttl--purple .p-haikai-ttl__jp {
    background-color: var(--color-haikai-5);
}
.p-haikai-ttl--purple .p-haikai-ttl__en {
    color: var(--color-haikai-5);
}

/* ---------------------------------------------
*   p-haikai-spec
--------------------------------------------- */
.p-haikai-spec {
    position: relative;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 33px calc(96 / 988 * 100%);
    max-width: calc(932px + var(--contents-side-padding) * 2px);
    margin-inline: auto;
}
@media screen and (max-width: 900px) {
    .p-haikai-spec {
        gap: 33px;
    }
}
@media screen and (max-width: 767px) {
    .p-haikai-spec {
        padding-inline: 22px;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
}
@media screen and (min-width: 768px) {
    .p-haikai-spec::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50.6%;
        display: block;
        width: 79.8%;
        aspect-ratio: 1661/1438;
        background: url(../img/product/haikai/bg_spec.png) 0 0 no-repeat;
        background-size: 100% 100%;
        transform: translate(-50%, -50%);
    }
}
.p-haikai-spec__item {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
    border: 4px solid var(--color-haikai-1);
    border-radius: 20px;
    background-color: var(--color-white-1);
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .p-haikai-spec__item {
        border-radius: calc(60 / 2 * 1px);
    }
}
.p-haikai-spec__item:last-of-type .p-haikai-spec__fig {
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-haikai-spec__item:last-of-type .p-haikai-spec__fig {
        width: calc(545 / 675 * 100%);
    }
}
.p-haikai-spec__item:last-of-type .p-haikai-spec__fig::after {
    content: "";
    position: absolute;
    top: -11px;
    right: -34px;
    display: block;
    width: calc(116 / 275 * 100%);
    aspect-ratio: 233/227;
    background: url(../img/product/haikai/img_feaure_04_ico.png) 0 0 no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 767px) {
    .p-haikai-spec__item:last-of-type .p-haikai-spec__fig::after {
        top: -6.8%;
        right: -13%;
        width: calc(118 / 275 * 100%);
    }
}
.p-haikai-spec__num {
    position: absolute;
    z-index: 1;
    top: -12px;
    left: -11px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 83px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    color: var(--color-white-1);
    font-family: var(--ff-root);
    font-size: 41px;
    font-weight: bold;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .windows .p-haikai-spec__num {
        top: -13px;
    }
}
@media screen and (max-width: 767px) {
    .p-haikai-spec__num {
        top: -19px;
        left: -18px;
        width: calc(156 / 2 * 1px);
        font-size: calc(77 / 2 * 1px);
    }
}
.p-haikai-spec__num::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 52%;
    left: 50%;
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-haikai-1);
    transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
    .p-haikai-spec__num::before {
        top: 53%;
    }
}
.p-haikai-spec__term {
    padding: 16px 3px 15px 69px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    color: var(--color-haikai-6);
    font-family: var(--ff-Rounded);
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    border-radius: 16px 16px 0 0;
    background-color: var(--color-haikai-3);
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .p-haikai-spec__term {
        padding: 10px 3px 10px 4px;
        font-size: calc(44 / 2 * 1px);
        border-radius: calc(52 / 2 * 1px) calc(52 / 2 * 1px) 0 0;
        min-height: 73px;
    }
}
.p-haikai-spec__desc {
    padding: 12px 10px 17px;
}
@media screen and (max-width: 767px) {
    .p-haikai-spec__desc {
        padding: 27px 0 20px;
    }
}
.p-haikai-spec__fig {
    width: calc(275 / 422 * 100%);
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-haikai-spec__fig {
        width: calc(575 / 675 * 100%);
    }
}
.p-haikai-spec__fig img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.p-haikai-spec__detail {
    display: block;
    color: var(--color-haikai-6);
    font-family: var(--ff-Rounded);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3888888889;
    text-align: center;
    margin-top: 9px;
}
@media screen and (min-width: 768px) {
    .p-haikai-spec__detail {
        min-height: 50px;
    }
}
@media screen and (max-width: 767px) {
    .p-haikai-spec__detail {
        font-size: calc(36 / 2 * 1px);
        line-height: 1.4166666667;
        margin-top: 14px;
    }
}

/* ---------------------------------------------
*   p-haikai-section-system
--------------------------------------------- */
.p-haikai-section-system {
    position: relative;
    z-index: 1;
    margin-block: -86px -65px;
}
@media screen and (max-width: 767px) {
    .p-haikai-section-system {
        margin-block: -86px -3px;
    }
}
.p-haikai-section-system__body {
    position: relative;
    margin-top: 23px;
}
@media screen and (max-width: 767px) {
    .p-haikai-section-system__body {
        margin-top: 1px;
    }
}
.p-haikai-section-system__body::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -78px;
    left: 50%;
    width: calc(1654 / 1200 * 100%);
    height: 366px;
    background-color: var(--color-white-1);
    clip-path: ellipse(50% 50% at 50% 50%);
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .p-haikai-section-system__body::before {
        top: -43px;
        width: calc(2394 / 1200 * 100%);
        height: auto;
        aspect-ratio: 1654/402;
    }
}
.p-haikai-section-system__body picture {
    display: block;
    max-width: 1075px;
    width: 100%;
    margin-inline: auto;
}

/* ---------------------------------------------
*   p-haikai-section-model
--------------------------------------------- */
.p-haikai-section-model {
    padding-block: 0 130px;
    margin-top: -21px;
}
@media screen and (max-width: 767px) {
    .p-haikai-section-model {
        padding-block: 54px 60px;
    }
}
.p-haikai-section-model__table {
    width: 100%;
    margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
    .p-haikai-section-model__table {
        max-width: 1000px;
    }
}
@media screen and (max-width: 767px) {
    .p-haikai-section-model__table {
        padding-block: 0 10px;
        margin-top: 15px;
        overflow-x: scroll;
        box-sizing: border-box;
    }
}
.p-haikai-section-model__img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .p-haikai-section-model__img {
        width: calc(1350 / 2 * 1px);
    }
}
.p-haikai-section-model__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* ---------------------------------------------
*   p-top-kv
--------------------------------------------- */
.p-top-kv {
    position: relative;
    padding-top: 48px;
    background: url(../img/bg_kv.png) bottom center no-repeat;
    background-size: cover;
}
@media screen and (max-width: 1024px) {
    .p-top-kv {
        padding-top: 0;
        background: url(../img/sp/bg_kv.png) bottom center no-repeat;
        background-size: cover;
        height: 69.3333333333vw;
    }
}
@media screen and (min-width: 1025px) {
    .p-top-kv::before, .p-top-kv::after {
        content: "";
        position: absolute;
    }
}
.p-top-kv::before {
    top: 37%;
    left: 48.8%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 1200px;
    width: 100%;
    aspect-ratio: 2399/404;
    background: url(../img/bg_kv_cloud.png) bottom left repeat-x;
    background-size: cover;
}
.p-top-kv::after {
    bottom: 21px;
    display: block;
    width: 100%;
    height: 65px;
    background: url(../img/common/illust_footer.png) bottom left repeat-x;
    background-size: 368px 100%;
}
.p-top-kv__container {
    position: relative;
    z-index: 1;
    max-width: 1043px;
}
@media screen and (max-width: 1024px) {
    .p-top-kv__container {
        max-width: none;
    }
}
@media screen and (min-width: 1025px) {
    .p-top-kv__container::after {
        content: "";
        position: absolute;
        bottom: -2px;
        right: 34px;
        width: calc(1432 / 2 * 1px);
        aspect-ratio: 1432/632;
        background: url(../img/illust_kv.png) bottom right no-repeat;
        background-size: 100% 100%;
    }
}
.p-top-kv__ttl {
    padding-bottom: 171px;
    display: block;
    color: var(--color-brown-3);
    font-size: 40px;
    letter-spacing: 0.08em;
    line-height: 1.325;
}
@media screen and (max-width: 1024px) {
    .p-top-kv__ttl {
        position: absolute;
        left: 4.4vw;
        top: 50.5vw;
        padding-bottom: 0;
        font-size: 6vw;
        letter-spacing: -0.02em;
    }
}

/* ---------------------------------------------
*   p-top-section-product
--------------------------------------------- */
.p-top-section-product {
    padding-block: 50px 42px;
}
@media screen and (max-width: 767px) {
    .p-top-section-product {
        padding-block: 28px 20px;
    }
}
.p-top-section-product__body {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .p-top-section-product__body {
        margin-top: 11px;
    }
}
.p-top-section-product--narrow {
    padding-top: 8px;
}
@media screen and (max-width: 767px) {
    .p-top-section-product--narrow {
        padding-top: 11px;
    }
}

/* ---------------------------------------------
*   p-top-section-stories
--------------------------------------------- */
.p-top-section-stories {
    position: relative;
    z-index: 1;
    padding-block: 40px 94px;
}
@media screen and (max-width: 767px) {
    .p-top-section-stories {
        padding-block: 16px 24px;
    }
}

/* ---------------------------------------------
*   p-top-section-news
--------------------------------------------- */
.p-top-section-news {
    padding-block: 45px 25px;
}
@media screen and (max-width: 767px) {
    .p-top-section-news {
        padding-block: 22px 0px;
    }
}

/* ---------------------------------------------
*   p-product-kv
--------------------------------------------- */
.p-product-kv {
    position: relative;
    padding: min(59 / var(--contents-width) * 100vw, 59px) calc(var(--contents-side-padding) * 1px) 0;
    background-color: #fdf0f6;
}
.p-product-kv::before {
    content: "";
    position: absolute;
    top: min(177 / var(--contents-width) * 100vw, 177px);
    left: 50%;
    display: block;
    width: 100%;
    height: min(148 / var(--contents-width) * 100vw, 148px);
    background-color: #fadce7;
    transform: translateX(-50%);
}
.p-product-kv__ttl {
    position: relative;
    left: min(1%, 13px);
    max-width: 926px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-kv__ttl {
        left: -0.2%;
        max-width: none;
        width: calc(690 / var(--design-width) * 100vw);
    }
}
.p-product-kv__ttl img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.p-product-kv__txt {
    position: relative;
    z-index: 1;
    padding-block: min(41 / var(--contents-width) * 100vw, 41px) min(48 / var(--contents-width) * 100vw, 48px);
    font-size: min(24 / var(--contents-width) * 100vw, 24px);
    font-weight: 500;
    line-height: 1.5833333333;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-product-kv__txt {
        padding-block: calc(20 / var(--design-width) * 100vw) calc(46 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--design-width) * 100vw);
        letter-spacing: -0.02em;
        line-height: 1.7142857143;
        text-align: left;
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--standard-series {
        padding-top: min(41 / var(--design-width) * 100vw, 41px);
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--standard-series .p-product-kv__ttl {
        max-width: calc(1814 / 2 * 1px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--standard-series .p-product-kv__ttl {
        left: -1.4%;
        width: calc(674 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--standard-series::before {
        top: calc(424 / var(--design-width) * 100vw);
        height: calc(462 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--standard-series .p-product-kv__txt {
        padding-block: min(32 / var(--contents-width) * 100vw, 32px) min(30 / var(--contents-width) * 100vw, 30px);
        font-size: min(21 / var(--contents-width) * 100vw, 21px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--standard-series .p-product-kv__txt {
        padding-block: calc(33 / var(--design-width) * 100vw) calc(136 / var(--design-width) * 100vw);
    }
}
.p-product-kv--blue {
    background-color: var(--color-blue-4);
}
@media screen and (min-width: 768px) {
    .p-product-kv--blue {
        padding-top: min(47 / var(--contents-width) * 100vw, 47px);
    }
    .p-product-kv--blue::before {
        top: min(132 / var(--contents-width) * 100vw, 132px);
        max-width: 1400px;
        height: auto;
        aspect-ratio: 2800/430;
        background: url(../img/product/nurse-lora/bg_kv.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--blue {
        padding: 0;
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--blue .p-product-kv__ttl {
        left: min(3.4%, 45px);
        max-width: calc(1533 / 2 * 1px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--blue .p-product-kv__ttl {
        width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--blue .p-product-kv__txt {
        padding-block: min(18 / var(--contents-width) * 100vw, 18px) min(29 / var(--contents-width) * 100vw, 29px);
        font-size: min(21 / var(--contents-width) * 100vw, 21px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--blue .p-product-kv__txt {
        position: absolute;
        bottom: 4.3%;
        left: 5.8%;
        padding: 0;
        white-space: nowrap;
    }
    .edge .p-product-kv--blue .p-product-kv__txt {
        left: 3.8%;
    }
}
.p-product-kv--nurse-concent {
    background-color: var(--color-orange-4);
}
@media screen and (min-width: 768px) {
    .p-product-kv--nurse-concent {
        padding-top: min(51 / var(--contents-width) * 100vw, 51px);
    }
    .p-product-kv--nurse-concent::before {
        top: min(136 / var(--contents-width) * 100vw, 136px);
        max-width: 1400px;
        height: auto;
        aspect-ratio: 2800/430;
        background: url(../img/product/nurse-concent/bg_kv.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--nurse-concent {
        padding: calc(46 / var(--design-width) * 100vw) 0 0;
    }
    .p-product-kv--nurse-concent::before {
        top: calc(426 / var(--design-width) * 100vw);
        height: calc(430 / var(--design-width) * 100vw);
        background-color: #ffd496;
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--nurse-concent .p-product-kv__ttl {
        left: min(1.4%, 18px);
        max-width: calc(1201 / 2 * 1px);
    }
}
@media screen and (max-width: 1024px) {
    .p-product-kv--nurse-concent .p-product-kv__ttl {
        left: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--nurse-concent .p-product-kv__ttl {
        left: 0.4%;
        width: calc(697 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--nurse-concent .p-product-kv__txt {
        padding-block: min(20 / var(--contents-width) * 100vw, 20px) min(30 / var(--contents-width) * 100vw, 30px);
        font-size: min(21 / var(--contents-width) * 100vw, 21px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--nurse-concent .p-product-kv__txt {
        padding: calc(120 / var(--design-width) * 100vw) calc(30 / var(--design-width) * 100vw) calc(123 / var(--design-width) * 100vw);
    }
}
.p-product-kv--lora {
    background-color: var(--color-green-2);
}
@media screen and (min-width: 768px) {
    .p-product-kv--lora {
        padding-top: min(41 / var(--contents-width) * 100vw, 41px);
    }
}
.p-product-kv--lora::before {
    background-color: var(--color-green-3);
}
@media screen and (max-width: 767px) {
    .p-product-kv--lora::before {
        top: calc(423 / var(--contents-width) * 100vw);
        height: calc(400 / var(--contents-width) * 100vw);
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--lora .p-product-kv__ttl {
        max-width: calc(1812 / 2 * 1px);
        left: max(1%, 13px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--lora .p-product-kv__ttl {
        left: -1.3%;
        width: calc(709 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--lora .p-product-kv__txt {
        padding-block: min(27 / var(--contents-width) * 100vw, 27px) min(31 / var(--contents-width) * 100vw, 31px);
        font-size: min(21 / var(--contents-width) * 100vw, 21px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--lora .p-product-kv__txt {
        padding-block: calc(14 / var(--design-width) * 100vw) calc(176 / var(--design-width) * 100vw);
    }
}
.p-product-kv--nurse-series {
    padding-top: min(54 / var(--contents-width) * 100vw, 54px);
    background-color: var(--color-purple-3);
}
@media screen and (max-width: 767px) {
    .p-product-kv--nurse-series {
        padding-top: min(82 / var(--contents-width) * 100vw, 82px);
    }
}
.p-product-kv--nurse-series::before {
    background-color: var(--color-purple-4);
}
@media screen and (max-width: 767px) {
    .p-product-kv--nurse-series::before {
        top: calc(406 / var(--contents-width) * 100vw);
        height: calc(413 / var(--contents-width) * 100vw);
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--nurse-series .p-product-kv__ttl {
        max-width: calc(1351 / 2 * 1px);
        left: max(-0.5%, -6px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--nurse-series .p-product-kv__ttl {
        width: calc(654 / var(--design-width) * 100vw);
        left: 0.6%;
    }
}
@media screen and (min-width: 768px) {
    .p-product-kv--nurse-series .p-product-kv__txt {
        padding-block: min(10 / var(--contents-width) * 100vw, 10px) min(26 / var(--contents-width) * 100vw, 26px);
        font-size: min(21 / var(--contents-width) * 100vw, 21px);
    }
}
@media screen and (max-width: 767px) {
    .p-product-kv--nurse-series .p-product-kv__txt {
        padding-block: calc(56 / var(--design-width) * 100vw) calc(126 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-product-features
--------------------------------------------- */
.p-product-features {
    padding-block: 78px 100px;
}
@media screen and (max-width: 767px) {
    .p-product-features {
        padding-block: 16px 31px;
    }
}
.p-product-features__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px calc(36 / var(--contents-width-small) * 100%);
    margin-top: 36px;
}
@media screen and (max-width: 1055px) {
    .p-product-features__list {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .p-product-features__list {
        gap: 20px;
        margin-top: 14px;
    }
}
.p-product-features__list--blue .p-product-features__ttl {
    background-color: var(--color-blue-4);
}
.p-product-features__list--blue .p-product-features__num::before {
    background-color: var(--color-blue-2);
}
.p-product-features__list--lora .p-product-features__ttl {
    background-color: var(--color-green-5);
}
.p-product-features__list--lora .p-product-features__num::before {
    background-color: var(--color-green-4);
}
.p-product-features__list--nurse-series .p-product-features__ttl {
    background-color: var(--color-purple-5);
}
@media screen and (min-width: 768px) {
    .p-product-features__list--nurse-series .p-product-features__ttl {
        font-size: 20px;
        line-height: 1.1;
    }
}
.p-product-features__list--nurse-series .p-product-features__num::before {
    background-color: var(--color-purple-2);
}
.p-product-features__list--nurse-concent .p-product-features__ttl {
    background-color: var(--color-orange-5);
}
.p-product-features__list--nurse-concent .p-product-features__num::before {
    background-color: var(--color-orange-3);
}
.p-product-features__item {
    padding: 19px calc(34 / 482 * 100%) 10px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 8px;
    border-radius: 21px;
    border: 1px solid var(--color-gray-2);
    box-shadow: 7px 7px 9px rgba(var(--color-gray-3-rgb), 0.2);
    transform: translateZ(0);
}
@media screen and (max-width: 767px) {
    .p-product-features__item {
        padding: 13px 23px;
        box-shadow: 5px 5px 6px rgba(var(--color-gray-3-rgb), 0.2);
        border-radius: calc(21 / 2 * 1px);
    }
}
.p-product-features__ttl {
    position: relative;
    padding: 10px 5px 10px 67px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 999px;
    background-color: #fdf0f6;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-product-features__ttl {
        padding: 8px 5px 8px 51px;
        display: block;
        width: 100%;
        font-size: calc(30 / 2 * 1px);
        box-sizing: border-box;
    }
}
.p-product-features__num {
    position: absolute;
    top: 43%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    aspect-ratio: 1/1;
    font-size: 43px;
    font-weight: bold;
    color: var(--color-white-1);
    line-height: 1;
    transform: translateY(-50%);
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .p-product-features__num {
        top: 45%;
        left: -0.4%;
        width: calc(92 / 2 * 1px);
        font-size: calc(62 / 2 * 1px);
    }
}
.p-product-features__num::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 56%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ed82b1;
    transform: translate(-50%, -50%);
}
.p-product-features__img {
    display: block;
    margin-top: 9px;
}
@media screen and (max-width: 767px) {
    .p-product-features__img {
        margin-top: 4px;
    }
}
.p-product-features__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.p-product-features__txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.375;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-product-features__txt {
        font-size: calc(24 / 2 * 1px);
        line-height: 1.5416666667;
    }
}
.p-product-features__txts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.p-product-features__txts .p-product-features__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.p-product-features__list2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px calc(62 / 866 * 100%);
    margin-top: 17px;
}
@media screen and (max-width: 1024px) {
    .p-product-features__list2 {
        gap: 34px calc(40 / var(--contents-width-small) * 100%);
    }
}
@media screen and (max-width: 767px) {
    .p-product-features__list2 {
        gap: 21px 9.5px;
        margin-top: 16px;
    }
}
.p-product-features__item2 {
    position: relative;
    padding: 21px calc(43 / 402 * 100%) 25px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 11px;
    border-radius: 21px;
    border: 1px solid var(--color-gray-2);
    background-color: var(--color-white-1);
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
@media screen and (min-width: 768px) {
    .p-product-features__item2 {
        box-shadow: 7px 7px 9px rgba(var(--color-gray-3-rgb), 0.2);
    }
}
@media screen and (max-width: 767px) {
    .p-product-features__item2 {
        padding: 13px 14px;
        gap: 5px;
        border-radius: 11px;
        filter: drop-shadow(2px 2px 3px rgba(var(--color-gray-3-rgb), 0.3));
    }
}
.p-product-features__num2 {
    position: absolute;
    top: -16px;
    left: 2px;
    padding: 7px 10px 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white-1);
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    background-color: var(--color-pink-8);
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
    .p-product-features__num2 {
        top: -8px;
        left: -1px;
        padding: 2px 4px 5px;
        font-size: calc(40 / 2 * 1px);
        letter-spacing: 0.01em;
    }
}
.p-product-features__ttl2 {
    padding: 2px 3px 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white-1);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
    border-radius: 999px;
    background-color: var(--color-pink-8);
}
@media screen and (max-width: 767px) {
    .p-product-features__ttl2 {
        padding: 2px 3px 3px;
        font-size: calc(24 / 2 * 1px);
    }
}
@media screen and (min-width: 768px) {
    .safari .p-product-features__ttl2 {
        padding-bottom: 5px;
    }
}

@media screen and (min-width: 768px) {
    .windows.chrome .p-product-features__ttl2 {
        padding-bottom: 5px;
    }
}

@media screen and (min-width: 768px) {
    .firefox .p-product-features__ttl2 {
        padding-bottom: 5px;
    }
}

@media screen and (max-width: 767px) {
    .iphone .p-product-features__ttl2 {
        padding-top: 3px;
    }
}

.p-product-features__txt2 {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.3157894737;
    text-align: center;
    margin-top: 2px;
}
@media screen and (max-width: 767px) {
    .p-product-features__txt2 {
        font-size: calc(22 / 2 * 1px);
        margin-top: 0;
    }
}
.p-product-features--size {
    padding-block: 26px 52px;
}
@media screen and (max-width: 767px) {
    .p-product-features--size {
        padding-block: 13px 31px;
    }
}
.p-product-features__small {
    display: block;
    color: var(--color-pink-8);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-product-features__small {
        font-size: 6.3157894737px;
    }
}
.p-product-features--yellow {
    padding-block: 21px 48px;
    background-color: var(--color-yellow-2);
}
@media screen and (max-width: 767px) {
    .p-product-features--yellow {
        padding-block: 16px 23px;
    }
}

/* ---------------------------------------------
*   p-product-system
--------------------------------------------- */
.p-product-system {
    padding-block: 37px 42px;
    background-color: rgba(253, 240, 246, 0.3);
}
@media screen and (max-width: 767px) {
    .p-product-system {
        padding-block: 16px 18px;
    }
}
.p-product-system__img {
    display: block;
    width: 102%;
    margin-top: 28px;
    transform: translateX(max(-0.3%, -4px));
}
@media screen and (max-width: 767px) {
    .p-product-system__img {
        width: 104%;
        margin-top: 13px;
        transform: translateX(-1%);
    }
}
.p-product-system__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.p-product-system--blue {
    background-color: var(--color-blue-5);
}
.p-product-system--lora {
    background-color: rgba(var(--color-green-5-rgb), 0.3);
}
.p-product-system--lora .p-product-system__img {
    margin-inline: auto;
}
@media screen and (min-width: 768px) {
    .p-product-system--lora .p-product-system__img {
        width: 85%;
        transform: translateX(min(0.7%, 7px));
    }
}
.p-product-system--nurse-series {
    background-color: rgba(var(--color-purple-3-rgb), 0.3);
}
.p-product-system--nurse-series .p-product-system__img {
    margin-inline: auto;
}
@media screen and (min-width: 768px) {
    .p-product-system--nurse-series .p-product-system__img {
        width: 85%;
        transform: translateX(min(0.7%, 7px));
    }
}
.p-product-system--nurse-concent {
    background-color: var(--color-orange-6);
}
@media screen and (min-width: 768px) {
    .p-product-system--nurse-concent .p-product-system__img {
        margin-top: 18px;
    }
}

/* ---------------------------------------------
*   p-product-sensor
--------------------------------------------- */
.p-product-sensor {
    padding-block: 65px 21px;
}
@media screen and (max-width: 767px) {
    .p-product-sensor {
        padding-block: 21px 6px;
    }
}
.p-product-sensor__list {
    padding: 36px calc(24 / var(--contents-width-small) * 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(35 / var(--contents-width-small) * 100%);
    background-color: #efefef;
    border-radius: 30px;
    margin-top: 34px;
}
@media screen and (max-width: 767px) {
    .p-product-sensor__list {
        padding: 18px 14px;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        border-radius: calc(30 / 2 * 1px);
        margin-top: 17px;
    }
}
.p-product-sensor__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 21px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .p-product-sensor__item {
        border-radius: calc(24 / 2 * 1px);
    }
}
.p-product-sensor__item--1 .p-product-sensor__ttl {
    color: #9a7cc3;
}
.p-product-sensor__item--1 .p-product-sensor__link {
    background-color: #9a7cc3;
    border-color: #9a7cc3;
}
@media (hover: hover) and (pointer: fine) {
    .p-product-sensor__item--1 .p-product-sensor__link::after {
        transition: border-color 0.3s;
    }
    .p-product-sensor__item--1 .p-product-sensor__link:hover {
        color: #9a7cc3;
    }
    .p-product-sensor__item--1 .p-product-sensor__link:hover::after {
        border-color: transparent transparent transparent #9a7cc3;
    }
}
.p-product-sensor__item--2 .p-product-sensor__ttl {
    color: #f09ac1;
}
.p-product-sensor__item--2 .p-product-sensor__fig {
    position: relative;
    top: -3px;
    left: 2%;
    max-width: 196px;
}
@media screen and (max-width: 767px) {
    .p-product-sensor__item--2 .p-product-sensor__fig {
        top: -1px;
        left: 2.1%;
        max-width: none;
    }
}
.p-product-sensor__item--2 .p-product-sensor__link {
    background-color: #f09ac1;
    border-color: #f09ac1;
}
@media (hover: hover) and (pointer: fine) {
    .p-product-sensor__item--2 .p-product-sensor__link::after {
        transition: border-color 0.3s;
    }
    .p-product-sensor__item--2 .p-product-sensor__link:hover {
        color: #f09ac1;
    }
    .p-product-sensor__item--2 .p-product-sensor__link:hover::after {
        border-color: transparent transparent transparent #f09ac1;
    }
}
.p-product-sensor__item--3 .p-product-sensor__ttl {
    color: #78cdab;
}
.p-product-sensor__item--3 .p-product-sensor__fig {
    position: relative;
    left: 1.6%;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .p-product-sensor__item--3 .p-product-sensor__fig {
        left: 1.5%;
        margin-top: 4px;
    }
}
.p-product-sensor__item--3 .p-product-sensor__link {
    background-color: #78cdab;
    border-color: #78cdab;
}
@media (hover: hover) and (pointer: fine) {
    .p-product-sensor__item--3 .p-product-sensor__link::after {
        transition: border-color 0.3s;
    }
    .p-product-sensor__item--3 .p-product-sensor__link:hover {
        color: #78cdab;
    }
    .p-product-sensor__item--3 .p-product-sensor__link:hover::after {
        border-color: transparent transparent transparent #78cdab;
    }
}
.p-product-sensor__content {
    padding: 15px 10px 3px;
    min-height: 190px;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .p-product-sensor__content {
        padding: 6px;
        min-height: 95px;
    }
}
.p-product-sensor__ttl {
    display: block;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-product-sensor__ttl {
        font-size: calc(24 / 2 * 1px);
    }
}
.p-product-sensor__fig {
    padding-inline: 5px;
    max-width: 203px;
    width: 100%;
    margin-inline: auto;
    margin-top: 21px;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .p-product-sensor__fig {
        max-width: none;
        width: 80%;
        margin-top: 10px;
    }
}
.p-product-sensor__fig img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.p-product-sensor__link {
    position: relative;
    padding: 16px 16px 18px;
    display: block;
    color: var(--color-white-1);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    border-radius: 0 0 21px 21px;
    border: 1px solid;
}
@media (hover: hover) and (pointer: fine) {
    .p-product-sensor__link {
        transition: background-color 0.3s;
    }
    .p-product-sensor__link:hover {
        background-color: var(--color-white-1);
    }
}
@media screen and (max-width: 767px) {
    .p-product-sensor__link {
        padding: 8px 6px 9px;
        font-size: calc(18 / 2 * 1px);
        border-radius: 0 0 calc(24 / 2 * 1px) calc(24 / 2 * 1px);
    }
}
.p-product-sensor__link::after {
    content: "";
    position: absolute;
    top: 50.4%;
    right: calc(43 / 295 * 100%);
    display: block;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 12px;
    border-color: transparent transparent transparent var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .p-product-sensor__link::after {
        right: 25px;
        border-width: 4px 0 4px 6px;
    }
}

/* ---------------------------------------------
*   p-product-spec
--------------------------------------------- */
.p-product-spec {
    padding-block: 22px 85px;
}
@media screen and (max-width: 767px) {
    .p-product-spec {
        padding-block: 0px 35px;
    }
}

/* ---------------------------------------------
*   p-product-table
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .p-product-table {
        padding-block: 0 10px;
        overflow-x: scroll;
        box-sizing: border-box;
    }
}
.p-product-table__radius {
    border: 2px solid var(--color-pink-12);
    border-radius: 20px;
    overflow: hidden;
    letter-spacing: 0;
}
@media screen and (max-width: 767px) {
    .p-product-table__radius {
        width: calc(1365 / 2 * 1px);
        border-radius: calc(20 / 2 * 1px);
        border-width: 1px;
        padding-right: 1px;
    }
}
.p-product-table__fig {
    margin-block: 10px;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig {
        display: block;
        width: 81px;
        margin-block: 5px;
        margin-inline: auto;
    }
}
.p-product-table__fig--01, .p-product-table__fig--02 {
    width: 118px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--01, .p-product-table__fig--02 {
        width: 82px;
    }
}
.p-product-table__fig--03 {
    width: 75px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--03 {
        width: 45px;
    }
}
.p-product-table__fig--05 {
    width: 64px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--05 {
        width: 45px;
    }
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--3 {
        width: 40px;
    }
}
.p-product-table__fig--blue02 {
    width: 88px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--blue02 {
        width: 59px;
    }
}
.p-product-table__fig--blue03 {
    width: 66px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--blue03 {
        width: 44px;
    }
}
.p-product-table__fig--blue04 {
    width: 53px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--blue04 {
        width: 31px;
    }
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--fumufumu-01 {
        width: 161px;
    }
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--fumufumu-02 {
        width: 105px;
        margin-block: 17px;
    }
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--fumufumu-03 {
        width: 35px;
        margin-block: 9px;
    }
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--okiagari-02, .p-product-table__fig--okiagari-03 {
        width: 30px;
    }
}
.p-product-table__fig--call-01 {
    width: 77px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--call-01 {
        width: 30px;
    }
}
.p-product-table__fig--lora-01 {
    width: 111px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--lora-01 {
        width: 72px;
    }
}
.p-product-table__fig--lora-02 {
    width: 62px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--lora-02 {
        width: 31px;
    }
}
.p-product-table__fig--nurse-series {
    width: 70px;
    margin-inline: auto;
}
.p-product-table__fig--nurse-concent-01 {
    width: 139px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--nurse-concent-01 {
        width: 100px;
    }
}
.p-product-table__fig--nurse-concent-02 {
    width: 83px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--nurse-concent-02 {
        width: 53px;
    }
}
.p-product-table__fig--nurse-concent-03 {
    width: 83px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--nurse-concent-03 {
        width: 53px;
    }
}
.p-product-table__fig--nurse-concent-04 {
    width: 67px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--nurse-concent-04 {
        width: 47px;
    }
}
.p-product-table__fig--nurse-concent-05 {
    width: 53px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--nurse-concent-05 {
        width: 40px;
    }
}
.p-product-table__fig--nurse-concent-06 {
    width: 38px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table__fig--nurse-concent-06 {
        width: 30px;
    }
}
.p-product-table table {
    width: 100%;
    table-layout: fixed;
}
.p-product-table table th:not(:first-child),
.p-product-table table td {
    width: calc((100% - 188px) / 3);
}
.p-product-table table thead {
    border-bottom: 2px solid var(--color-pink-12);
}
@media screen and (max-width: 767px) {
    .p-product-table table thead {
        border-width: 1px;
    }
}
.p-product-table table thead th {
    padding: 21px 10px;
    text-align: center;
    color: var(--color-pink-12);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.075em;
    line-height: 1.2;
    border-left: 2px solid var(--color-pink-12);
}
@media screen and (max-width: 767px) {
    .p-product-table table thead th {
        padding: 7px;
        font-size: calc(28 / 2 * 1px);
        border-width: 1px;
        border-right: inherit;
        border-top: inherit;
    }
}
.p-product-table table thead th:first-of-type {
    color: var(--color-white-1);
    background-color: var(--color-pink-12);
    border-left: none;
}
.p-product-table table thead th.is-dashed {
    border-style: dashed;
}
.p-product-table table thead th small {
    display: block;
    font-size: 15px;
}
@media screen and (max-width: 767px) {
    .p-product-table table thead th small {
        font-size: 10px;
    }
}
.p-product-table table tbody tr {
    border-bottom: 2px solid var(--color-pink-12);
}
@media screen and (max-width: 767px) {
    .p-product-table table tbody tr {
        border-width: 1px;
    }
}
.p-product-table table tbody tr:last-of-type {
    border-bottom: none;
}
.p-product-table table tbody tr th {
    padding-inline: 23px 5px;
}
@media screen and (max-width: 1024px) {
    .p-product-table table tbody tr th {
        padding-inline: 10px;
    }
}
@media screen and (max-width: 767px) {
    .p-product-table table tbody tr th {
        padding-inline: 15px;
    }
}
.p-product-table table tbody tr td {
    padding-inline: 5px;
    border-left: 2px solid var(--color-pink-12);
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-product-table table tbody tr td {
        border-width: 1px;
        border-right: inherit;
        border-top: inherit;
    }
}
.p-product-table table tbody tr td.txt-al-left {
    padding-inline: 16px;
}
@media screen and (max-width: 767px) {
    .p-product-table table tbody tr td.txt-al-left {
        padding-inline: 10px;
    }
}
.p-product-table table tbody tr td.is-dashed {
    border-style: dashed;
}
.p-product-table table tbody tr th, .p-product-table table tbody tr td {
    padding-block: 4px 6px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4444444444;
}
@media screen and (max-width: 767px) {
    .p-product-table table tbody tr th, .p-product-table table tbody tr td {
        padding-block: 4px 5px;
        font-size: calc(24 / 2 * 1px);
        line-height: 1.4583333333;
    }
}
.p-product-table table tbody tr:nth-of-type(2n + 1) td {
    background-color: #fdf0f6;
}
.p-product-table table tbody tr:first-of-type td {
    background-color: var(--color-white-1);
}
.p-product-table table sup {
    position: relative;
    top: 0.2em;
    left: -0.2em;
    display: inline-block;
    transform: scale(0.75);
}
.p-product-table--small {
    max-width: 829px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-product-table--small .p-product-table__radius {
        width: 587px;
    }
}
.p-product-table--small table thead th {
    width: 319.5px;
}
@media screen and (max-width: 767px) {
    .p-product-table--small table thead th {
        width: calc((100% - 114px) / 2);
    }
}
.p-product-table--small table thead th:first-of-type {
    width: calc(190 / 829 * 100%);
}
@media screen and (max-width: 767px) {
    .p-product-table--small table thead th:first-of-type {
        width: 114px;
    }
}
.p-product-table--blue .p-product-table__radius {
    border-color: var(--color-blue-2);
}
.p-product-table--blue table thead {
    border-color: var(--color-blue-2);
}
.p-product-table--blue table thead th {
    color: var(--color-blue-2);
    border-color: var(--color-blue-2);
}
.p-product-table--blue table thead th:first-of-type {
    background-color: var(--color-blue-2);
}
.p-product-table--blue table tbody tr, .p-product-table--blue table tbody td {
    border-color: var(--color-blue-2) !important;
}
.p-product-table--blue table tbody tr:nth-of-type(2n + 1) td {
    background-color: var(--color-blue-4);
}
.p-product-table--blue table tbody tr:first-of-type td {
    background-color: var(--color-white-1);
}
@media screen and (min-width: 768px) {
    .p-product-table--nurse-series {
        max-width: 1160px;
        margin-inline: auto;
    }
}
.p-product-table--nurse-series .p-product-table__radius {
    border-color: var(--color-purple-2);
}
.p-product-table--nurse-series table thead {
    border-color: var(--color-purple-2);
}
.p-product-table--nurse-series table thead th {
    color: var(--color-purple-2);
    border-color: var(--color-purple-2);
}
.p-product-table--nurse-series table thead th:first-of-type {
    background-color: var(--color-purple-2);
}
.p-product-table--nurse-series table tbody tr, .p-product-table--nurse-series table tbody td {
    border-color: var(--color-purple-2) !important;
}
.p-product-table--nurse-series table tbody tr:nth-of-type(2n + 1) td {
    background-color: var(--color-purple-6);
}
.p-product-table--nurse-series table tbody tr:first-of-type td {
    background-color: var(--color-white-1);
}
@media screen and (min-width: 768px) {
    .p-product-table--nurse-concent {
        max-width: 1160px;
        margin-inline: auto;
    }
}
.p-product-table--nurse-concent .p-product-table__radius {
    border-color: var(--color-orange-3);
}
.p-product-table--nurse-concent table thead {
    border-color: var(--color-orange-3);
}
.p-product-table--nurse-concent table thead th {
    color: var(--color-orange-3);
    border-color: var(--color-orange-3);
}
.p-product-table--nurse-concent table thead th:first-of-type {
    background-color: var(--color-orange-3);
}
.p-product-table--nurse-concent table tbody tr, .p-product-table--nurse-concent table tbody td {
    border-color: var(--color-orange-3) !important;
}
.p-product-table--nurse-concent table tbody tr:nth-of-type(2n + 1) td {
    background-color: rgba(var(--color-orange-7-rgb), 0.5);
}
.p-product-table--nurse-concent table tbody tr:first-of-type td {
    background-color: var(--color-white-1);
}
.p-product-table--orange table tbody tr:nth-of-type(2n + 1) td {
    background-color: var(--color-orange-2) !important;
}
.p-product-table--orange table tbody tr:first-of-type td {
    background-color: var(--color-white-1) !important;
}
.p-product-table--lora .p-product-table__radius {
    border-color: var(--color-green-4);
}
.p-product-table--lora table thead {
    border-color: var(--color-green-4);
}
.p-product-table--lora table thead th {
    color: var(--color-green-4);
    border-color: var(--color-green-4);
}
.p-product-table--lora table thead th:first-of-type {
    background-color: var(--color-green-4);
}
.p-product-table--lora table tbody tr, .p-product-table--lora table tbody td {
    border-color: var(--color-green-4) !important;
}
.p-product-table--lora table tbody tr:nth-of-type(2n + 1) td, .p-product-table--lora table tbody tr:nth-of-type(12) td, .p-product-table--lora table tbody tr:nth-of-type(14) td {
    background-color: var(--color-green-5);
}
.p-product-table--lora table tbody tr:first-of-type td, .p-product-table--lora table tbody tr:nth-of-type(13) td, .p-product-table--lora table tbody tr:nth-of-type(15) td {
    background-color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .p-product-table--sp-small {
        overflow-x: initial;
    }
    .p-product-table--sp-small .p-product-table__radius {
        width: 100%;
    }
    .p-product-table--sp-small table thead th {
        width: calc(100% - 122.5px);
    }
    .p-product-table--sp-small table thead th:first-of-type {
        width: calc(217 / 2 * 1px);
    }
    .p-product-table--sp-small table tbody th {
        padding-inline: 12px !important;
    }
}
@media screen and (min-width: 768px) {
    .p-product-table--narrow {
        max-width: 660px;
        margin-inline: auto;
    }
    .p-product-table--narrow table thead th:first-of-type {
        width: calc(188 / 660 * 100%);
    }
}
.p-product-table--th2 table tbody tr:nth-of-type(2n + 4) td {
    background-color: var(--color-orange-2) !important;
}
.p-product-table--th2 table tbody tr:nth-of-type(2n + 1) td {
    background-color: var(--color-white-1) !important;
}

/* ---------------------------------------------
*   p-product-mv
--------------------------------------------- */
.p-product-mv {
    padding-block: 8px 63px;
}
@media screen and (max-width: 767px) {
    .p-product-mv {
        padding-block: 13px 20px;
    }
}
.p-product-mv__wrap {
    display: grid;
    grid-template-columns: calc(378.5 / 866 * 100%) 1fr;
    align-items: flex-start;
    gap: calc(70 / 866 * 100%);
}
@media screen and (max-width: 1024px) {
    .p-product-mv__wrap {
        grid-template-columns: 1fr calc(267 / 866 * 100%);
        gap: calc(30 / 866 * 100%);
    }
}
@media screen and (max-width: 767px) {
    .p-product-mv__wrap {
        grid-template-columns: calc(395 / var(--contents-width) * 100%) calc(280 / var(--contents-width) * 100%);
        gap: calc(36 / var(--contents-width) * 100%);
    }
}
.p-product-mv__ttl {
    position: relative;
    padding-left: 24px;
    color: var(--color-pink-8);
    font-size: 37px;
    font-weight: bold;
    margin-block: 0 9px;
}
@media screen and (max-width: 767px) {
    .p-product-mv__ttl {
        padding-left: 12px;
        font-size: calc(40 / 2 * 1px);
        margin-block: 0 4px;
    }
}
.p-product-mv__ttl::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 1px;
    display: block;
    width: 8px;
    height: 70%;
    background-color: var(--color-pink-8);
    border-radius: 999px;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .p-product-mv__ttl::before {
        width: calc(8 / 2 * 1px);
    }
}
.p-product-mv__right {
    position: relative;
    padding-top: 6px;
}
@media screen and (max-width: 767px) {
    .p-product-mv__right {
        padding-top: 10.5%;
    }
}
.p-product-mv__tag {
    position: absolute;
    top: 10px;
    right: -36px;
    padding: 7px 8px 8px;
    color: var(--color-white-1);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.025em;
    line-height: 1.15;
    background-color: var(--color-orange-1);
    border-radius: 10px;
}
@media screen and (max-width: 1024px) {
    .p-product-mv__tag {
        top: 0;
        right: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-product-mv__tag {
        top: 11%;
        right: -4px;
        padding: 4px 6px;
        font-size: calc(20 / 2 * 1px);
        line-height: 1.25;
        border-radius: calc(10 / 2 * 1px);
    }
}
@media screen and (min-width: 768px) {
    .firefox .p-product-mv__tag {
        padding-bottom: 9px;
    }
}

@media screen and (max-width: 767px) {
    .iphone .p-product-mv__tag {
        padding-bottom: 5px;
    }
}

.p-product-mv__txt {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3333333333;
    margin-top: 33px;
}
@media screen and (min-width: 768px) {
    .p-product-mv__txt {
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .p-product-mv__txt {
        font-size: calc(24 / 2 * 1px);
        line-height: 1.6666666667;
        margin-top: 14px;
    }
}
.p-product-mv img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (min-width: 768px) {
    .p-product-mv--okiagari {
        padding-block: 8px 39px;
    }
    .p-product-mv--okiagari .p-product-mv__wrap {
        gap: calc(35 / 866 * 100%);
    }
    .p-product-mv--okiagari .p-product-mv__right {
        padding-top: 22px;
    }
    .p-product-mv--okiagari .p-product-mv__txt {
        margin-top: 13px;
    }
}
@media screen and (min-width: 768px) {
    .p-product-mv--call .p-product-mv__right {
        padding-top: 20px;
    }
    .p-product-mv--call .p-product-mv__txt {
        margin-top: 31px;
    }
}
@media screen and (min-width: 768px) {
    .p-product-mv--tyouonpa .p-product-mv__right {
        padding-top: 80px;
    }
}

/* ---------------------------------------------
*   p-product-faq
--------------------------------------------- */
.p-product-faq {
    margin-top: -45px;
}
@media screen and (max-width: 767px) {
    .p-product-faq {
        margin-top: 2px;
    }
}

/* ---------------------------------------------
*   p-product-pop
--------------------------------------------- */
.p-product-pop {
    position: fixed;
    top: 29.4%;
    right: 0;
    display: block;
    width: 93px;
    z-index: 100;
}
@media screen and (max-width: 767px) {
    .p-product-pop {
        top: auto;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (min-width: 768px) {
    .p-product-pop__item + .p-product-pop__item {
        margin-top: 7px;
    }
}
@media screen and (max-width: 767px) {
    .p-product-pop__item {
        width: 50%;
    }
}
@media screen and (max-width: 767px) {
    .p-product-pop__item:first-of-type .p-product-pop__link {
        background-color: var(--color-pink-8);
    }
}
.p-product-pop__item:first-of-type .p-product-pop__txt::before {
    background: url(../img/product/ico_cat.png) 0 0 no-repeat;
    background-size: 100% auto;
    aspect-ratio: 75/89;
}
.p-product-pop__item:last-of-type .p-product-pop__txt::before {
    background: url(../img/product/ico_manual.png) 0 0 no-repeat;
    background-size: 100% auto;
    aspect-ratio: 72/96;
}
@media screen and (max-width: 767px) {
    .p-product-pop__item:last-of-type .p-product-pop__link {
        background-color: var(--color-orange-1);
    }
}
.p-product-pop__link {
    display: block;
    will-change: opacity;
}
@media (hover: hover) and (pointer: fine) {
    .p-product-pop__link {
        transition: opacity var(--hover-duration);
    }
    .p-product-pop__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 767px) {
    .p-product-pop__link {
        padding: 20px;
    }
    .p-product-pop__link img {
        display: none;
    }
}
.p-product-pop__txt {
    display: none;
}
@media screen and (max-width: 767px) {
    .p-product-pop__txt {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--color-white-1);
        font-size: 20px;
        font-weight: bold;
    }
    .p-product-pop__txt::before {
        content: "";
        width: 20px;
        flex-shrink: 0;
    }
}

/* ---------------------------------------------
*   p-product-section-model
--------------------------------------------- */
.p-product-section-model {
    padding-block: 0 50px;
}
@media screen and (max-width: 767px) {
    .p-product-section-model {
        padding-block: 19px 30px;
    }
}
.p-product-section-model__ttl {
    font-size: 37px;
}
@media screen and (max-width: 767px) {
    .p-product-section-model__ttl {
        font-size: calc(40 / 2 * 1px);
    }
}
.p-product-section-model__txt {
    font-size: 22px;
}
@media screen and (max-width: 767px) {
    .p-product-section-model__txt {
        font-size: calc(24 / 2 * 1px);
        margin-top: 11px;
    }
}
.p-product-section-model__table {
    width: 83.5%;
    margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
    .p-product-section-model__table {
        padding-block: 0 10px;
        width: 100%;
        margin-top: 15px;
        overflow-x: scroll;
        box-sizing: border-box;
    }
}
.p-product-section-model__img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .p-product-section-model__img {
        width: calc(1350 / 2 * 1px);
    }
}
.p-product-section-model__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* ---------------------------------------------
*   p-product-movie
--------------------------------------------- */
.p-product-movie {
    padding-block: 74px 0px;
    max-width: 750px;
    margin: 0 auto -14px;
}
@media screen and (max-width: 767px) {
    .p-product-movie {
        padding-block: 28px 4px;
        max-width: none;
        margin-block: 0;
    }
}
.p-product-movie__ttl {
    display: block;
    font-size: 34px;
}
@media screen and (max-width: 767px) {
    .p-product-movie__ttl {
        font-size: calc(40 / 2 * 1px);
        line-height: 1.25;
    }
}
.p-product-movie__frame {
    aspect-ratio: 16/9;
    margin-top: 13px;
}
@media screen and (max-width: 767px) {
    .p-product-movie__frame {
        margin-top: 10px;
    }
}
.p-product-movie__frame iframe {
    display: block;
    width: 100%;
    height: 101%;
    border: none;
}

/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: var(--color-white-1) !important;
}

/* ---------------------------------------------
*   color
--------------------------------------------- */
.fc-white {
    color: var(--color-white-1) !important;
}

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

.fc-pink-1 {
    color: var(--color-pink-1) !important;
}

.fc-pink-2 {
    color: var(--color-pink-2) !important;
}

.fc-pink-3 {
    color: var(--color-pink-3) !important;
}

.fc-pink-4 {
    color: var(--color-pink-4) !important;
}

.fc-pink-12 {
    color: var(--color-pink-12) !important;
}

.fc-blue-2 {
    color: var(--color-blue-2) !important;
}

.fc-blue-6 {
    color: var(--color-blue-6) !important;
}

.fc-purple-2 {
    color: var(--color-purple-2) !important;
}

.fc-green-4 {
    color: var(--color-green-4) !important;
}

.fc-orange-3 {
    color: var(--color-orange-3) !important;
}

/* ---------------------------------------------
*   display
--------------------------------------------- */
.display-inline-block {
    display: inline-block !important;
}

@media screen and (min-width: 768px) {
    .display-inline-block-pc {
        display: inline-block !important;
    }
}

@media screen and (max-width: 767px) {
    .display-inline-block-sp {
        display: inline-block !important;
    }
}

@media screen and (max-width: 767px) {
    .display-block-sp {
        display: block !important;
    }
}

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

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

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

@media screen and (max-width: 767px) {
    .fw-regular-sp {
        font-weight: 400 !important;
    }
}

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

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

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

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

/* ---------------------------------------------
*   line-height
--------------------------------------------- */
.lh-125 {
    line-height: 1.25 !important;
}

@media screen and (min-width: 768px) {
    .lh-125-pc {
        line-height: 1.25 !important;
    }
}

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

.lh-13 {
    line-height: 1.3 !important;
}

@media screen and (min-width: 768px) {
    .lh-13-pc {
        line-height: 1.3 !important;
    }
}

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

.lh-14 {
    line-height: 1.4 !important;
}

@media screen and (max-width: 767px) {
    .lh-14-pc {
        line-height: 1.3 !important;
    }
}

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

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

@media screen and (min-width: 768px) {
    .lh-15-pc {
        line-height: 1.5 !important;
    }
}

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

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

@media screen and (min-width: 768px) {
    .lh-16-pc {
        line-height: 1.6 !important;
    }
}

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

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

.lh-178 {
    line-height: 1.78 !important;
}

@media screen and (min-width: 768px) {
    .lh-178-pc {
        line-height: 1.78 !important;
    }
}

@media screen and (min-width: 768px) {
    .lh-17-pc {
        line-height: 1.7 !important;
    }
}

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

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

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

@media screen and (min-width: 768px) {
    .lh-18-pc {
        line-height: 1.8 !important;
    }
}

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

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

@media screen and (min-width: 768px) {
    .lh-2-pc {
        line-height: 2.08 !important;
    }
}

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

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

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

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

/*  右寄せ
--------------------------------------------- */
.txt-al-right {
    text-align: right !important;
}

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

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

/*  左寄せ
--------------------------------------------- */
.txt-al-left {
    text-align: left !important;
}

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

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

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

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

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

/* ---------------------------------------------
*   letter-spacing
--------------------------------------------- */
/*  letter-spacing: 0;
--------------------------------------------- */
.ls-0 {
    letter-spacing: 0 !important;
}

.ls-75 {
    letter-spacing: 0.075em !important;
}

@media screen and (min-width: 768px) {
    .ls-0-pc {
        letter-spacing: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .ls-0-sp {
        letter-spacing: 0 !important;
    }
}

.ff-m {
    font-family: var(--ff-m);
}

.ff-Rounded {
    font-family: var(--ff-Rounded);
}

/*  .js-tab-target
--------------------------------------------- */
.js-tab-target {
    display: none;
}
.js-tab-target.is-current {
    display: block;
}

/*  アコーディオン（複数開閉）
--------------------------------------------- */
.js-acc-target {
    --acc-body-height: 0px;
    height: 0;
    overflow: hidden;
}
.js-acc-scope.is-close .js-acc-target {
    animation: closeAccAnim 0.5s forwards;
}

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

@keyframes openAccAnim {
    0% {
        height: 0px;
        visibility: hidden;
    }
    99% {
        height: var(--acc-body-height);
        visibility: visible;
    }
    100% {
        height: auto;
    }
}
@keyframes closeAccAnim {
    0% {
        height: var(--acc-body-height);
    }
    99% {
        visibility: visible;
    }
    100% {
        height: 0px;
        visibility: hidden;
    }
}

@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 print and (max-width: 1024px), screen and (max-width: 1024px) {
    .tb-hide {
        display: none !important;
    }
}
@media print and (max-width: 930px), screen and (max-width: 930px) {
    .tb-hide2 {
        display: none !important;
    }
}
@media print and (min-width: 1025px), screen and (min-width: 1025px) {
    .tb-over {
        display: none !important;
    }
}
@media print and (min-width: 931px), screen and (min-width: 931px) {
    .tb-over2 {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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