.c-anim-up {
    opacity: 0;
    transform: translateY(30px);
}

.c-anim-scale {
    opacity: 0;
    transform: scale(0.9);
}

.c-hover-bounce {
    display: inline-block;
}

.is-anim-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.is-anim-active--delay-1 {
    transition-delay: 0.1s;
}
.is-anim-active--delay-2 {
    transition-delay: 0.2s;
}
.is-anim-active--delay-3 {
    transition-delay: 0.3s;
}
.is-anim-active--delay-4 {
    transition-delay: 0.4s;
}
.is-anim-active--delay-5 {
    transition-delay: 0.5s;
}

.c-hover-bounce {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.c-hover-bounce:hover {
    transform: scale(1.05);
}

/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    height: calc(var(--fixed-header-height) * 1px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 249, 246, 0.9);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.l-header__container {
    width: calc(var(--contents-width) / var(--design-width) * 100vw);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.l-header__logo {
    width: calc(70 / var(--design-width) * 100vw);
    z-index: 1002;
    position: relative;
}
@media screen and (max-width: 750px) {
    .l-header__logo {
        width: calc(90 / var(--design-width) * 100vw);
    }
}
.l-header__logo-link {
    display: block;
}
.l-header__logo-link img {
    width: 100%;
    height: auto;
    display: block;
}
.l-header__hamburger {
    display: none;
    z-index: 1002;
    cursor: pointer;
    width: calc(40 / var(--design-width) * 100vw);
    height: calc(40 / var(--design-width) * 100vw);
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
}
.l-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: all 0.4s ease-in-out;
}
.l-header__hamburger span:nth-child(1) {
    top: 10%;
}
.l-header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.l-header__hamburger span:nth-child(3) {
    bottom: 10%;
}
.l-header__hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.l-header-nav__list {
    display: flex;
    align-items: center;
    gap: calc(30 / var(--design-width) * 100vw);
}
.l-header-nav__link {
    font-size: calc(14 / var(--design-width) * 100vw);
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}
.l-header-nav__link:hover {
    color: #d88b8b;
}

/* ---------------------------------------------
*   SP Layout
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .l-header__container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .l-header__hamburger {
        display: block;
        width: 30px;
        height: 20px;
    }
    .l-header__hamburger span:nth-child(1) {
        top: 0;
    }
    .l-header__hamburger span:nth-child(2) {
        top: 50%;
        margin-top: -1px;
    }
    .l-header__hamburger span:nth-child(3) {
        bottom: 0;
    }
    .l-header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(250, 249, 246, 0.95);
        -webkit-backdrop-filter: blur(15px);
                backdrop-filter: blur(15px);
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    .l-header-nav.is-active {
        opacity: 1;
        visibility: visible;
    }
    .l-header-nav__list {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .l-header-nav__link {
        font-size: 18px;
        letter-spacing: 0.1em;
        display: block;
        padding: 10px;
    }
}
/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    padding-top: calc(var(--fixed-header-height) * 1px);
}

.l-container {
    width: calc(var(--contents-width) / var(--design-width) * 100vw);
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .l-container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    padding: calc(60 / var(--design-width) * 100vw) 0;
    background-color: #333;
    color: #fff;
}
.l-footer__container {
    width: calc(var(--contents-width) / var(--design-width) * 100vw);
    margin: 0 auto;
    text-align: center;
}
.l-footer-nav {
    margin-bottom: calc(40 / var(--design-width) * 100vw);
}
.l-footer-nav__list {
    display: flex;
    justify-content: center;
    gap: calc(30 / var(--design-width) * 100vw);
    flex-wrap: wrap;
}
.l-footer-nav__link {
    font-size: calc(14 / var(--design-width) * 100vw);
    transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
    .l-footer-nav__link {
        font-size: calc(25 / var(--design-width) * 100vw);
    }
}
.l-footer-nav__link:hover {
    opacity: 0.7;
}
.l-footer__copyright {
    font-size: calc(16 / var(--design-width) * 100vw);
    opacity: 0.7;
}

@media screen and (max-width: 750px) {
    .l-footer {
        padding: calc(40 / var(--design-width) * 100vw) 0 calc(20 / var(--design-width) * 100vw);
    }
    .l-footer-nav__list {
        flex-direction: column;
        gap: calc(20 / var(--design-width) * 100vw);
    }
}
/* ---------------------------------------------
*   c-bg-animation
--------------------------------------------- */
.c-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background-color: transparent;
}
.c-bg-animation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 1;
}
.c-bg-animation__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    mix-blend-mode: multiply;
}
.c-bg-animation__circle--1 {
    background-color: #ECC359;
    width: 60vw;
    height: 60vw;
    top: -32%;
    left: -40%;
    animation: bg-anim-fast-1 7s infinite alternate ease-in-out;
}
.c-bg-animation__circle--2 {
    background-color: #F89391;
    width: 50vw;
    height: 50vw;
    bottom: -30%;
    right: -20%;
    animation: bg-anim-fast-2 6s infinite alternate-reverse ease-in-out;
}
.c-bg-animation__circle--3 {
    background-color: #4299A0;
    width: 50vw;
    height: 50vw;
    top: -10%;
    right: -10%;
    animation: bg-anim-fast-3 9s infinite alternate ease-in-out;
}
.c-bg-animation__circle--4 {
    background-color: #7CB2B2;
    width: 50vw;
    height: 50vw;
    bottom: -20%;
    left: -20%;
    animation: bg-anim-fast-4 7s infinite alternate-reverse ease-in-out;
}

@keyframes bg-anim-fast-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    30% {
        transform: translate(20vw, 10vh) scale(1.1);
    }
    60% {
        transform: translate(-6vw, 20vh) scale(0.9);
    }
    100% {
        transform: translate(15vw, -5vh) scale(1.05);
    }
}
@keyframes bg-anim-fast-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(-13vw, -15vh) scale(1.1);
    }
    70% {
        transform: translate(4vw, -5vh) scale(0.9);
    }
    100% {
        transform: translate(8vw, 10vh) scale(1.05);
    }
}
@keyframes bg-anim-fast-3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-6vw, 11vh) rotate(180deg) scale(1.1);
    }
    100% {
        transform: translate(5vw, -2vh) rotate(360deg) scale(1);
    }
}
@keyframes bg-anim-fast-4 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10vw, -10vh) scale(1.1);
    }
    100% {
        transform: translate(-3vw, 5vh) scale(0.95);
    }
}
@media screen and (max-width: 750px) {
    .c-bg-animation__circle {
        filter: blur(80px);
        opacity: 0.5;
    }
    .c-bg-animation__circle--1 {
        width: 150vw;
        height: 150vw;
    }
    .c-bg-animation__circle--2 {
        width: 140vw;
        height: 140vw;
    }
    .c-bg-animation__circle--3 {
        width: 130vw;
        height: 130vw;
    }
    .c-bg-animation__circle--4 {
        width: 160vw;
        height: 160vw;
    }
}
/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
/* ---------------------------------------------
*   c-card
--------------------------------------------- */
/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
/* ---------------------------------------------
*   c-link
--------------------------------------------- */
/* ---------------------------------------------
*   c-list
--------------------------------------------- */
/* ---------------------------------------------
*   c-section
--------------------------------------------- */
/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
.c-ttl-01 {
    font-size: calc(40 / var(--design-width) * 100vw);
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: calc(60 / var(--design-width) * 100vw);
    letter-spacing: 0.1em;
    font-family: var(--ff-root);
}
@media screen and (max-width: 750px) {
    .c-ttl-01 {
        font-size: calc(62 / var(--design-width) * 100vw);
        margin-bottom: calc(40 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   p-top-kv
--------------------------------------------- */
.p-top-kv {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    overflow: hidden;
    /* Floating Blobs */
}
.p-top-kv__content {
    position: relative;
    z-index: 10;
    text-align: center;
}
.p-top-kv__logo {
    width: calc(220 / var(--design-width) * 100vw);
    margin: 0 auto calc(30 / var(--design-width) * 100vw);
}
@media screen and (max-width: 750px) {
    .p-top-kv__logo {
        width: calc(450 / var(--design-width) * 100vw);
    }
}
.p-top-kv__logo img {
    width: 100%;
    height: auto;
}
.p-top-kv__catch {
    font-size: calc(20 / var(--design-width) * 100vw);
    line-height: 2;
    font-weight: bold;
    color: #555;
    letter-spacing: 0.1em;
}
.p-top-kv__blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.p-top-kv__blob {
    position: absolute;
    opacity: 0.9;
}
.p-top-kv__blob img {
    width: 100%;
    height: auto;
    display: block;
}
.p-top-kv__blob--1 {
    top: calc(120 / var(--design-width) * 100vw);
    left: calc(80 / var(--design-width) * 100vw);
    width: calc(220 / var(--design-width) * 100vw);
    animation: float 6s ease-in-out infinite;
}
.p-top-kv__blob--2 {
    bottom: calc(80 / var(--design-width) * 100vw);
    left: calc(150 / var(--design-width) * 100vw);
    width: calc(200 / var(--design-width) * 100vw);
    animation: float 7s ease-in-out infinite 1s;
}
.p-top-kv__blob--3 {
    top: calc(100 / var(--design-width) * 100vw);
    right: calc(50 / var(--design-width) * 100vw);
    width: calc(240 / var(--design-width) * 100vw);
    animation: float 8s ease-in-out infinite 0.5s;
}
.p-top-kv__blob--4 {
    bottom: calc(100 / var(--design-width) * 100vw);
    right: calc(120 / var(--design-width) * 100vw);
    width: calc(280 / var(--design-width) * 100vw);
    animation: float 9s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
/* ---------------------------------------------
*   p-top-about
--------------------------------------------- */
.p-top-about {
    padding: calc(120 / var(--design-width) * 100vw) 0;
    background-color: transparent;
}
.p-top-about__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(100 / var(--design-width) * 100vw);
}
.p-top-about__item--reverse {
    flex-direction: row-reverse;
}
.p-top-about__item:last-child {
    margin-bottom: 0;
}
.p-top-about__desc {
    width: 48%;
}
.p-top-about__img {
    width: 45%;
}
.p-top-about__head {
    font-size: calc(28 / var(--design-width) * 100vw);
    font-weight: bold;
    margin-bottom: calc(30 / var(--design-width) * 100vw);
    line-height: 1.4;
}
.p-top-about__text {
    font-size: calc(15 / var(--design-width) * 100vw);
    line-height: 2;
    margin-bottom: calc(40 / var(--design-width) * 100vw);
}

/* ---------------------------------------------
*   p-top-service
--------------------------------------------- */
.p-top-service {
    padding: calc(120 / var(--design-width) * 100vw) 0;
    text-align: center;
}
.p-top-service__lead {
    margin-bottom: calc(60 / var(--design-width) * 100vw);
    font-size: calc(16 / var(--design-width) * 100vw);
    line-height: 1.8;
}
@media screen and (max-width: 750px) {
    .p-top-service__lead {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}
.p-top-service__list {
    display: flex;
    justify-content: space-between;
    gap: calc(30 / var(--design-width) * 100vw);
}
.p-top-service__item {
    width: 32%;
    padding: calc(20 / var(--design-width) * 100vw);
    border: 2px solid #eee;
    border-radius: calc(30 / var(--design-width) * 100vw);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.p-top-service__item:nth-child(1) {
    border-color: #f5b0b0;
}
.p-top-service__item:nth-child(1) .p-top-service__item-ttl {
    color: #f5b0b0;
}
.p-top-service__item:nth-child(2) {
    border-color: #b0e0e6;
}
.p-top-service__item:nth-child(2) .p-top-service__item-ttl {
    color: #8ccacc;
}
.p-top-service__item:nth-child(3) {
    border-color: #f0e68c;
}
.p-top-service__item:nth-child(3) .p-top-service__item-ttl {
    color: #e6c855;
}
.p-top-service__item-ttl {
    font-size: calc(18 / var(--design-width) * 100vw);
    font-weight: bold;
    margin-bottom: calc(20 / var(--design-width) * 100vw);
    text-align: center;
}
.p-top-service__item-text {
    font-size: calc(14 / var(--design-width) * 100vw);
    line-height: 1.8;
    text-align: left;
}

/* ---------------------------------------------
*   p-top-flow
--------------------------------------------- */
.p-top-flow {
    position: relative;
    padding: calc(120 / var(--design-width) * 100vw) 0;
    background: transparent;
    text-align: center;
    overflow: hidden;
}
.p-top-flow__blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.p-top-flow__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}
.p-top-flow__blob--1 {
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background-color: #fffacd;
}
.p-top-flow__blob--2 {
    top: 10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background-color: #e0f2f1;
}
.p-top-flow__blob--3 {
    bottom: -20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background-color: #ffebee;
}
.p-top-flow .l-container {
    position: relative;
    z-index: 1;
}
.p-top-flow__sub {
    font-size: calc(18 / var(--design-width) * 100vw);
    margin-bottom: calc(60 / var(--design-width) * 100vw);
    color: #555;
    font-weight: bold;
}
@media screen and (max-width: 750px) {
    .p-top-flow__sub {
        font-size: calc(27 / var(--design-width) * 100vw);
        margin-top: calc(-30 / var(--design-width) * 100vw);
    }
}
.p-top-flow__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: calc(40 / var(--design-width) * 100vw);
}
.p-top-flow__step {
    width: 48%;
    background: #fff;
    padding: 0;
    border-radius: calc(20 / var(--design-width) * 100vw);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: left;
    margin-bottom: 0;
    box-shadow: 0 calc(10 / var(--design-width) * 100vw) calc(20 / var(--design-width) * 100vw) rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.p-top-flow__step--wide {
    width: 100%;
    margin-top: calc(40 / var(--design-width) * 100vw);
}
.p-top-flow__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100 / var(--design-width) * 100vw);
    color: #fff;
    font-weight: bold;
    font-size: calc(20 / var(--design-width) * 100vw);
    flex-shrink: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    writing-mode: horizontal-tb;
}
.p-top-flow__step:nth-child(1) .p-top-flow__step-num {
    background-color: #7abeb8;
}
.p-top-flow__step:nth-child(2) .p-top-flow__step-num {
    background-color: #f2b5b5;
}
.p-top-flow__step:nth-child(3) .p-top-flow__step-num {
    background-color: #edd585;
}
.p-top-flow__step-text {
    flex: 1;
    font-size: calc(15 / var(--design-width) * 100vw);
    line-height: 1.8;
    padding: calc(30 / var(--design-width) * 100vw);
}

/* ---------------------------------------------
*   p-top-target
--------------------------------------------- */
.p-top-target {
    padding: calc(120 / var(--design-width) * 100vw) 0;
}
.p-top-target__label {
    font-size: calc(16 / var(--design-width) * 100vw);
    margin-bottom: calc(20 / var(--design-width) * 100vw);
}
@media screen and (max-width: 750px) {
    .p-top-target__label {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}
.p-top-target__head {
    font-size: calc(32 / var(--design-width) * 100vw);
    font-weight: bold;
    margin-bottom: calc(50 / var(--design-width) * 100vw);
}
.p-top-target__body {
    display: flex;
    justify-content: space-between;
}
.p-top-target__body--reverse {
    flex-direction: row-reverse;
}
.p-top-target__desc {
    width: 45%;
}
.p-top-target__points {
    width: 50%;
}
.p-top-target__point {
    display: flex;
    align-items: flex-start;
    margin-bottom: calc(30 / var(--design-width) * 100vw);
    background: #fff;
    padding: calc(20 / var(--design-width) * 100vw);
    border-radius: calc(10 / var(--design-width) * 100vw);
}
.p-top-target__point-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(60 / var(--design-width) * 100vw);
    height: calc(60 / var(--design-width) * 100vw);
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    font-size: calc(12 / var(--design-width) * 100vw);
    margin-right: calc(20 / var(--design-width) * 100vw);
    flex-shrink: 0;
}
.p-top-target__point-label--green {
    background: #579893;
}
.p-top-target__point-label--pink {
    background: #efb0b0;
}
.p-top-target__point-label--yellow {
    background: #e8cf8c;
}
.p-top-target__point-text {
    font-size: calc(14 / var(--design-width) * 100vw);
    line-height: 1.6;
}
.p-top-target__text {
    font-size: calc(16 / var(--design-width) * 100vw);
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .p-top-target__text {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}
.p-top-target__box {
    width: 50%;
    background: #f0fdfc;
    padding: calc(40 / var(--design-width) * 100vw);
    border-radius: calc(20 / var(--design-width) * 100vw);
}
.p-top-target__box-ttl {
    font-weight: bold;
    margin-bottom: calc(20 / var(--design-width) * 100vw);
}
.p-top-target__box-list {
    list-style: disc;
    padding-left: calc(20 / var(--design-width) * 100vw);
    margin-bottom: calc(30 / var(--design-width) * 100vw);
}
.p-top-target__box-list li {
    margin-bottom: calc(10 / var(--design-width) * 100vw);
    font-size: calc(14 / var(--design-width) * 100vw);
}
.p-top-target__box-text {
    font-size: calc(12 / var(--design-width) * 100vw);
    line-height: 1.5;
}

/* ---------------------------------------------
*   Common Button
--------------------------------------------- */
.c-btn-01 {
    display: inline-block;
    padding: calc(15 / var(--design-width) * 100vw) calc(60 / var(--design-width) * 100vw);
    background-color: #1d5e68;
    color: #fff;
    border-radius: calc(50 / var(--design-width) * 100vw);
    text-decoration: none;
    font-weight: bold;
    font-size: calc(16 / var(--design-width) * 100vw);
    transition: opacity 0.3s;
}
.c-btn-01:hover {
    opacity: 0.8;
}

/* ---------------------------------------------
*   SP Layout
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .p-top-kv {
        min-height: 60vh;
    }
    .p-top-kv__catch {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
    .p-top-about {
        padding: calc(80 / var(--design-width) * 100vw) 0;
    }
    .p-top-about__item {
        flex-direction: column;
        margin-bottom: calc(80 / var(--design-width) * 100vw);
    }
    .p-top-about__item--reverse {
        flex-direction: column;
    }
    .p-top-about__desc, .p-top-about__img {
        width: 100%;
    }
    .p-top-about__head {
        font-size: calc(38 / var(--design-width) * 100vw);
        margin-bottom: calc(30 / var(--design-width) * 100vw);
        line-height: 1.4;
    }
    .p-top-about__text {
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 2;
        text-align: justify;
        margin-bottom: calc(30 / var(--design-width) * 100vw);
    }
    .p-top-about__img {
        display: none;
    }
    .p-top-service__list {
        flex-direction: column;
        gap: calc(40 / var(--design-width) * 100vw);
    }
    .p-top-service__item {
        width: 100%;
        padding: calc(50 / var(--design-width) * 100vw);
    }
    .p-top-service__item-ttl {
        font-size: calc(34 / var(--design-width) * 100vw);
        margin-bottom: calc(24 / var(--design-width) * 100vw);
    }
    .p-top-service__item-text {
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 1.8;
        text-align: justify;
    }
    .p-top-flow__step {
        width: 100%;
        flex-direction: column;
    }
    .p-top-flow__step-num {
        width: 100%;
        writing-mode: horizontal-tb;
        padding: calc(24 / var(--design-width) * 100vw);
        font-size: calc(32 / var(--design-width) * 100vw);
        justify-content: flex-start;
        padding-left: calc(40 / var(--design-width) * 100vw);
    }
    .p-top-flow__step-text {
        padding: calc(40 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 1.8;
        text-align: justify;
    }
    .p-top-flow__step--wide {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
    .p-top-target {
        padding: calc(80 / var(--design-width) * 100vw) 0;
    }
    .p-top-target__body {
        flex-direction: column;
    }
    .p-top-target__desc, .p-top-target__points, .p-top-target__box {
        width: 100%;
    }
    .p-top-target__head {
        font-size: calc(40 / var(--design-width) * 100vw);
        margin-bottom: calc(40 / var(--design-width) * 100vw);
    }
    .p-top-target__text {
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 1.8;
        text-align: justify;
        margin-bottom: calc(40 / var(--design-width) * 100vw);
    }
    .p-top-target__points, .p-top-target__box {
        margin-top: calc(60 / var(--design-width) * 100vw);
    }
    .p-top-target__point {
        padding: calc(30 / var(--design-width) * 100vw);
    }
    .p-top-target__point-label {
        width: calc(90 / var(--design-width) * 100vw);
        height: calc(90 / var(--design-width) * 100vw);
        font-size: calc(22 / var(--design-width) * 100vw);
        margin-right: calc(24 / var(--design-width) * 100vw);
    }
    .p-top-target__point-text {
        font-size: calc(26 / var(--design-width) * 100vw);
        text-align: left;
    }
    .p-top-target__box-list li {
        font-size: calc(26 / var(--design-width) * 100vw);
        margin-bottom: calc(16 / var(--design-width) * 100vw);
    }
    .p-top-target__box-text {
        font-size: calc(26 / var(--design-width) * 100vw);
        line-height: 1.8;
        text-align: justify;
    }
}
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: var(--color-white-1) !important;
}

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

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

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

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

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

@media print and (min-width: 751px), screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 750px), screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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