@charset "UTF-8";
.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.3s;
}
.is-anim-active--delay-2 {
    transition-delay: 0.5s;
}
.is-anim-active--delay-3 {
    transition-delay: 0.7s;
}
.is-anim-active--delay-4 {
    transition-delay: 0.9s;
}
.is-anim-active--delay-5 {
    transition-delay: 1s;
}

.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: #ffffff;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.l-header__container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}
.l-header__logo {
    width: 60px;
    z-index: 1002;
    position: relative;
}
@media screen and (max-width: 750px) {
    .l-header__logo {
        width: 48px;
    }
}
.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: 30px;
    height: 20px;
    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: 0;
}
.l-header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.l-header__hamburger span:nth-child(3) {
    bottom: 0;
}
.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: 24px;
}
.l-header-nav__link {
    font-size: 15px;
    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__hamburger {
        display: block;
    }
    .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: 36px;
        text-align: center;
    }
    .l-header-nav__link {
        font-size: 18px;
        letter-spacing: 0.1em;
        display: block;
        padding: 8px;
    }
}
/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    padding-top: calc(var(--fixed-header-height) * 1px);
}

.l-container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
@media screen and (max-width: 750px) {
    .l-container {
        padding: 0 20px;
    }
}

/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
.l-breadcrumb {
    width: 100%;
    padding: 16px 0;
}
.l-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.l-breadcrumb__item {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #888;
}
.l-breadcrumb__item:not(:last-child)::after {
    content: ">";
    margin: 0 8px;
}
.l-breadcrumb__txt {
    color: inherit;
    transition: opacity 0.3s;
}
.l-breadcrumb__txt[href]:hover {
    opacity: 0.6;
    color: #333;
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    padding: 50px 0;
    background-color: #333;
    color: #fff;
}
.l-footer__container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}
.l-footer-nav {
    margin-bottom: 30px;
}
.l-footer-nav__list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.l-footer-nav__link {
    font-size: 15px;
    transition: opacity 0.3s;
}
.l-footer-nav__link:hover {
    opacity: 0.7;
}
.l-footer__copyright {
    font-size: 14px;
    opacity: 0.7;
}

@media screen and (max-width: 750px) {
    .l-footer {
        padding: 30px 0 20px;
    }
    .l-footer-nav__list {
        flex-direction: column;
        gap: 16px;
    }
}
/* ---------------------------------------------
*   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: 42px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.12em;
    font-family: var(--ff-root);
}
@media screen and (max-width: 750px) {
    .c-ttl-01 {
        font-size: 32px;
    }
}

.c-ttl-sub {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
    .c-ttl-sub {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* セクションタイトル下の装飾ライン */
.c-ttl-line {
    display: block;
    width: 40px;
    height: 2px;
    background: #7abeb8;
    margin: 0 auto 50px;
}
@media screen and (max-width: 750px) {
    .c-ttl-line {
        margin-bottom: 36px;
    }
}

.c-ttl-02 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    font-family: var(--ff-root);
}
@media screen and (max-width: 750px) {
    .c-ttl-02 {
        font-size: 19px;
        margin-bottom: 24px;
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   p-top-kv
--------------------------------------------- */
.p-top-kv {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--fixed-header-height) * 1px);
    background-color: #000;
    overflow: hidden;
}
.p-top-kv__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1;
}
.p-top-kv__video--sp {
    display: none;
}
@media screen and (max-width: 750px) {
    .p-top-kv__video--pc {
        display: none;
    }
    .p-top-kv__video--sp {
        display: block;
    }
}
.p-top-kv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}
.p-top-kv__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.p-top-kv__logo {
    width: 180px;
    margin: 0 auto 30px;
}
@media screen and (max-width: 750px) {
    .p-top-kv__logo {
        width: 28vw;
        margin-bottom: 5vw;
    }
}
.p-top-kv__logo img {
    width: 100%;
    height: auto;
}
.p-top-kv__catch {
    font-size: 18px;
    line-height: 2.2;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 750px) {
    .p-top-kv__catch {
        font-size: 3.8vw;
        line-height: 2;
        letter-spacing: 0.05em;
    }
}
.p-top-kv__scroll {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
@media screen and (max-width: 750px) {
    .p-top-kv__scroll {
        bottom: -16vw;
        gap: 1.5vw;
    }
}
.p-top-kv__scroll-text {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}
@media screen and (max-width: 750px) {
    .p-top-kv__scroll-text {
        font-size: 2.4vw;
    }
}
.p-top-kv__scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .p-top-kv__scroll-line {
        height: 6vw;
    }
}
.p-top-kv__scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }
    50% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}
/* ---------------------------------------------
*   p-top-about
--------------------------------------------- */
.p-top-about {
    padding: 120px 0;
    background-color: transparent;
}
@media screen and (max-width: 750px) {
    .p-top-about {
        padding: 70px 0;
    }
}
.p-top-about__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}
.p-top-about__item--reverse {
    flex-direction: row-reverse;
}
.p-top-about__item:last-child {
    margin-bottom: 0;
}
.p-top-about__desc {
    width: 50%;
    flex-shrink: 0;
}
.p-top-about__img {
    width: 45%;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
}
.p-top-about__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.p-top-about__img:hover img {
    transform: scale(1.03);
}
.p-top-about__head {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .p-top-about__head {
        font-size: 18px;
    }
}
.p-top-about__text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    color: #444;
}
@media screen and (max-width: 750px) {
    .p-top-about__text {
        font-size: 15px;
    }
}

/* ---------------------------------------------
*   p-top-service
--------------------------------------------- */
.p-top-service {
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 750px) {
    .p-top-service {
        padding: 70px 0;
    }
}
.p-top-service__lead {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}
@media screen and (max-width: 750px) {
    .p-top-service__lead {
        font-size: 15px;
        text-align: left;
    }
}
.p-top-service__img {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 400px;
}
.p-top-service__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.p-top-service__list {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.p-top-service__item {
    width: 32%;
    padding: 28px 24px;
    border: 2px solid #eee;
    border-radius: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-top-service__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.p-top-service__item:nth-child(1) {
    border-color: #f5b0b0;
}
.p-top-service__item:nth-child(1) .p-top-service__item-num,
.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-num,
.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-num,
.p-top-service__item:nth-child(3) .p-top-service__item-ttl {
    color: #e6c855;
}
.p-top-service__item-num {
    font-size: 36px;
    font-weight: bold;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}
.p-top-service__item-ttl {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}
.p-top-service__item-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ---------------------------------------------
*   p-top-flow
--------------------------------------------- */
.p-top-flow {
    position: relative;
    padding: 120px 0;
    background: transparent;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 750px) {
    .p-top-flow {
        padding: 70px 0;
    }
}
.p-top-flow .l-container {
    position: relative;
    z-index: 1;
}
.p-top-flow__sub {
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
    font-weight: bold;
}
@media screen and (max-width: 750px) {
    .p-top-flow__sub {
        font-size: 16px;
        margin-bottom: 30px;
    }
}
.p-top-flow__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}
.p-top-flow__step {
    width: 48%;
    background: #fff;
    padding: 0;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.p-top-flow__step--wide {
    width: 100%;
    margin-top: 10px;
}
.p-top-flow__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}
.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: 15px;
    line-height: 1.8;
    padding: 24px;
    color: #444;
}
.p-top-flow__img {
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 380px;
}
.p-top-flow__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

/* ---------------------------------------------
*   p-top-gallery
--------------------------------------------- */
.p-top-gallery {
    padding: 30px 0;
    overflow: hidden;
}
.p-top-gallery__slider .swiper-slide {
    width: 380px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .p-top-gallery__slider .swiper-slide {
        width: 280px;
        height: 190px;
    }
}
.p-top-gallery__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

/* ---------------------------------------------
*   p-top-target
--------------------------------------------- */
.p-top-target {
    padding: 120px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 750px) {
    .p-top-target {
        padding: 70px 0;
    }
}
.p-top-target__label {
    font-size: 15px;
    margin-bottom: 16px;
    color: #888;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .p-top-target__label {
        font-size: 14px;
    }
}
.p-top-target__head {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .p-top-target__head {
        font-size: 20px;
        margin-bottom: 30px;
    }
}
.p-top-target__body {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.p-top-target__body--reverse {
    flex-direction: row-reverse;
}
.p-top-target__img {
    width: 42%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.p-top-target__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.p-top-target__img:hover img {
    transform: scale(1.03);
}
.p-top-target__desc {
    flex: 1;
}
.p-top-target__text {
    font-size: 16px;
    line-height: 2;
    color: #444;
}
@media screen and (max-width: 750px) {
    .p-top-target__text {
        font-size: 15px;
    }
}
.p-top-target__points {
    flex: 1;
}
.p-top-target__point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
}
.p-top-target__point-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    font-size: 13px;
    margin-right: 16px;
    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: 15px;
    line-height: 1.6;
    color: #444;
}
.p-top-target__cta {
    text-align: center;
    margin-top: 40px;
}

/* ---------------------------------------------
*   Common Button
--------------------------------------------- */
.c-btn-01 {
    display: inline-block;
    padding: 14px 50px;
    background-color: #1d5e68;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: opacity 0.3s, transform 0.3s;
}
.c-btn-01:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* ---------------------------------------------
*   SP Layout
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .p-top-kv {
        height: auto;
    }
    .p-top-kv__video {
        position: relative;
        height: auto;
        -o-object-fit: contain;
           object-fit: contain;
    }
    .p-top-about__item {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 50px;
    }
    .p-top-about__item--reverse {
        flex-direction: column;
    }
    .p-top-about__desc, .p-top-about__img {
        width: 100%;
        max-width: none;
    }
    .p-top-service__list {
        flex-direction: column;
        gap: 16px;
    }
    .p-top-service__item {
        width: 100%;
        padding: 24px 20px;
    }
    .p-top-flow__step {
        width: 100%;
        flex-direction: column;
    }
    .p-top-flow__step-num {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        justify-content: flex-start;
    }
    .p-top-flow__step-text {
        padding: 20px;
    }
    .p-top-flow__step--wide {
        margin-top: 0;
    }
    .p-top-target__body {
        flex-direction: column;
        gap: 24px;
    }
    .p-top-target__img, .p-top-target__points {
        width: 100%;
        max-width: none;
    }
}
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-lower-kv
--------------------------------------------- */
.p-lower-kv {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 100px 0 50px;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .p-lower-kv {
        padding: 80px 0 30px;
    }
}
.p-lower-kv__ttl {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: #333;
}
@media screen and (max-width: 750px) {
    .p-lower-kv__ttl {
        font-size: 30px;
    }
}
.p-lower-kv__sub {
    font-size: 15px;
    color: #888;
}
@media screen and (max-width: 750px) {
    .p-lower-kv__sub {
        font-size: 14px;
    }
}

/* ---------------------------------------------
*   p-company-message
--------------------------------------------- */
.p-company-message {
    padding: 70px 0;
}
@media screen and (max-width: 750px) {
    .p-company-message {
        padding: 50px 0;
    }
}
.p-company-message__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .p-company-message__inner {
        flex-direction: column;
        gap: 30px;
    }
}
.p-company-message__img {
    width: 280px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .p-company-message__img {
        width: 200px;
        margin: 0 auto;
    }
}
.p-company-message__img img {
    width: 100%;
    height: auto;
    display: block;
}
.p-company-message__body {
    flex: 1;
}
.p-company-message__name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}
@media screen and (max-width: 750px) {
    .p-company-message__name {
        font-size: 18px;
        text-align: center;
    }
}
.p-company-message__text {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
    .p-company-message__text {
        font-size: 15px;
    }
}
.p-company-message__text:last-child {
    margin-bottom: 0;
}

/* ---------------------------------------------
*   p-company
--------------------------------------------- */
.p-company {
    padding-top: 70px;
    padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
    .p-company {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}
.p-company__content {
    max-width: 800px;
    margin: 0 auto;
}
.p-company__list {
    border-top: 1px solid #eee;
}
.p-company__item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
@media screen and (max-width: 750px) {
    .p-company__item {
        display: block;
        padding: 16px 0;
    }
}
.p-company__term {
    width: 25%;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    padding-right: 16px;
}
@media screen and (max-width: 750px) {
    .p-company__term {
        width: 100%;
        margin-bottom: 8px;
    }
}
.p-company__desc {
    width: 75%;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}
@media screen and (max-width: 750px) {
    .p-company__desc {
        width: 100%;
        font-size: 15px;
    }
}
.p-company__text + .p-company__text {
    margin-top: 12px;
}

/* ---------------------------------------------
*   p-diagnostician
--------------------------------------------- */
.p-diagnostician {
    padding-bottom: 80px;
}
@media screen and (max-width: 750px) {
    .p-diagnostician {
        padding-bottom: 50px;
    }
}
.p-diagnostician-hero {
    width: 100%;
    max-height: 380px;
    overflow: hidden;
    margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-hero {
        max-height: 220px;
    }
}
.p-diagnostician-hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.p-diagnostician-sec__columns {
    display: flex;
    gap: 36px;
    align-items: center;
    margin-bottom: 36px;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-sec__columns {
        flex-direction: column;
    }
}
.p-diagnostician-sec__columns--reverse {
    flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-sec__columns--reverse {
        flex-direction: column;
    }
}
.p-diagnostician-sec__img {
    width: 42%;
    max-width: 400px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-sec__img {
        width: 100%;
        max-width: none;
    }
}
.p-diagnostician-sec__img img {
    width: 100%;
    height: auto;
    display: block;
}
.p-diagnostician-gallery {
    padding: 50px 0;
    overflow: hidden;
}
.p-diagnostician-gallery__slider .swiper-slide {
    width: 380px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-gallery__slider .swiper-slide {
        width: 280px;
        height: 190px;
    }
}
.p-diagnostician-gallery__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.p-diagnostician-gallery__slider .swiper-button-prev,
.p-diagnostician-gallery__slider .swiper-button-next {
    color: #333;
    --swiper-navigation-size: 24px;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-gallery__slider .swiper-button-prev,
    .p-diagnostician-gallery__slider .swiper-button-next {
        display: none;
    }
}
.p-diagnostician-fv {
    padding: 60px 0;
    text-align: center;
    background-color: transparent;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-fv {
        padding: 40px 0;
    }
}
.p-diagnostician-fv__ttl {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-fv__ttl {
        font-size: 22px;
    }
}
.p-diagnostician-fv__sub {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-fv__sub {
        font-size: 15px;
    }
}
.p-diagnostician-issues {
    padding: 50px 0;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-issues {
        padding: 30px 0;
    }
}
.p-diagnostician-issues__inner {
    max-width: 800px;
    margin: 0 auto;
}
.p-diagnostician-issues__list {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-issues__list {
        flex-direction: column;
        gap: 12px;
    }
}
.p-diagnostician-issues__item {
    background: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    width: 32%;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 750px) {
    .p-diagnostician-issues__item {
        width: 100%;
    }
}
.p-diagnostician-issues__arrow {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #ccc;
    margin: 0 auto 24px;
}
.p-diagnostician-issues__result {
    font-size: 18px;
    font-weight: bold;
    color: #d85a5a;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-issues__result {
        font-size: 18px;
    }
}
.p-diagnostician-sec {
    padding: 90px 0;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-sec {
        padding: 60px 0;
    }
}
.p-diagnostician-sec--bg {
    background-color: rgba(255, 255, 255, 0.35);
}
.p-diagnostician-sec + .p-diagnostician-sec {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.p-diagnostician-intro {
    text-align: center;
    margin-bottom: 30px;
}
.p-diagnostician-text {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 16px;
    color: #444;
}
@media screen and (max-width: 750px) {
    .p-diagnostician-text {
        font-size: 15px;
        text-align: left;
    }
}
.p-diagnostician-text.u-text-center {
    text-align: center;
}
.p-diagnostician-text strong {
    background: linear-gradient(transparent 60%, rgba(255, 200, 200, 0.6) 60%);
    font-weight: bold;
}

/* Sales Agency Cards */
.p-card-list {
    display: flex;
    justify-content: center;
    gap: 16px;
}
@media screen and (max-width: 750px) {
    .p-card-list {
        flex-direction: column;
    }
}

.p-card {
    width: 30%;
    background: #fff;
    border: 1px solid #eee;
    padding: 22px;
    text-align: center;
    border-radius: 10px;
}
@media screen and (max-width: 750px) {
    .p-card {
        width: 100%;
    }
}
.p-card__head {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 12px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 4px;
}
.p-card__body {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Approaches */
.p-approaches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    flex: 1;
}
@media screen and (max-width: 750px) {
    .p-approaches {
        flex-direction: column;
    }
}

.p-approach-item {
    flex: 1;
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .p-approach-item {
        width: 100%;
    }
}
.p-approach-item__num {
    font-size: 40px;
    font-weight: bold;
    color: #f0f0f0;
    position: absolute;
    top: -8px;
    right: 8px;
    line-height: 1;
    z-index: 0;
}
.p-approach-item__head {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.p-approach-item__head small {
    font-size: 70%;
    font-weight: normal;
}
.p-approach-item__text {
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: #555;
}

/* Education Steps */
.p-education-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
}

.p-step-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 14px;
    border-radius: 8px;
}
@media screen and (max-width: 750px) {
    .p-step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }
}
.p-step-item__label {
    background: #333;
    color: #fff;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 16px;
    white-space: nowrap;
}
@media screen and (max-width: 750px) {
    .p-step-item__label {
        margin-right: 0;
    }
}
.p-step-item__head {
    font-size: 17px;
    font-weight: bold;
    margin-right: 16px;
    min-width: 100px;
}
@media screen and (max-width: 750px) {
    .p-step-item__head {
        margin-right: 0;
    }
}
.p-step-item__text {
    font-size: 15px;
    color: #555;
}

/* Check List */
.p-check-list {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 24px;
    border-radius: 10px;
}
.p-check-list__item {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: bold;
}
.p-check-list__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 7px;
    height: 12px;
    border-bottom: 3px solid #62c3a5;
    border-right: 3px solid #62c3a5;
    transform: rotate(45deg);
}
.p-check-list__item:last-child {
    margin-bottom: 0;
}

/* CTA */
.p-diagnostician-cta {
    padding: 60px 0;
}

.p-cta-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 10px;
}
.p-cta-box__text {
    margin-bottom: 24px;
    font-size: 15px;
    color: #666;
}
.p-cta-box__btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}
@media screen and (max-width: 750px) {
    .p-cta-box__btns {
        flex-direction: column;
    }
}
.p-cta-box__btns a {
    display: inline-block;
    padding: 14px 36px;
    text-align: center;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: opacity 0.3s;
    text-decoration: none;
}
.p-cta-box__btns a:hover {
    opacity: 0.8;
}

.c-btn-main {
    background: #333;
    color: #fff;
    border: 2px solid #333;
}

.c-btn-sub {
    background: #fff;
    color: #333;
    border: 2px solid #333;
}

.u-text-highlight {
    background: linear-gradient(transparent 60%, rgba(255, 230, 230, 0.8) 60%);
    font-weight: bold;
}

/* ---------------------------------------------
*   p-salon
--------------------------------------------- */
.p-salon {
    padding-bottom: 80px;
    /* Comparison (Before/After) */
    /* About Roles */
    /* Why Box */
    /* AI Comparison */
    /* Mechanism */
    /* Process */
    /* Plan */
    /* Flow */
    /* Common */
    /* Table */
    /* Check List */
}
@media screen and (max-width: 750px) {
    .p-salon {
        padding-bottom: 50px;
    }
}
.p-salon-hero {
    width: 100%;
    max-height: 380px;
    overflow: hidden;
    margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
    .p-salon-hero {
        max-height: 220px;
    }
}
.p-salon-hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.p-salon-sec__img {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    max-height: 350px;
}
.p-salon-sec__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.p-salon-about__img {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    max-height: 350px;
}
.p-salon-about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.p-salon-fv {
    padding: 60px 0;
    text-align: center;
    background-color: transparent;
}
@media screen and (max-width: 750px) {
    .p-salon-fv {
        padding: 40px 0;
    }
}
.p-salon-fv__ttl {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
    .p-salon-fv__ttl {
        font-size: 22px;
    }
}
.p-salon-fv__sub {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}
@media screen and (max-width: 750px) {
    .p-salon-fv__sub {
        font-size: 15px;
    }
}
.p-salon-sec {
    padding: 90px 0;
}
@media screen and (max-width: 750px) {
    .p-salon-sec {
        padding: 60px 0;
    }
}
.p-salon-sec--bg {
    background-color: rgba(255, 255, 255, 0.35);
}
.p-salon-sec + .p-salon-sec {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.p-salon-comparison {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .p-salon-comparison {
        flex-direction: column;
    }
}
.p-salon-comparison__item {
    flex: 1;
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.p-salon-comparison__item--before {
    border-top: 4px solid #ccc;
}
.p-salon-comparison__item--after {
    border-top: 4px solid #d85a5a;
    background: #fff5f5;
}
.p-salon-comparison__head {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.p-salon-comparison__list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 15px;
}
.p-salon-comparison__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #999;
}
.p-salon-comparison__list li strong {
    font-weight: bold;
    background: linear-gradient(transparent 60%, rgba(255, 200, 200, 0.6) 60%);
}
.p-salon-comparison__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-salon-comparison__arrow::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 3px solid #ccc;
    border-right: 3px solid #ccc;
    transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
    .p-salon-comparison__arrow::after {
        transform: rotate(135deg);
        margin: 8px auto;
    }
}
.p-salon-about {
    max-width: 800px;
    margin: 0 auto;
}
.p-salon-roles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .p-salon-roles {
        flex-direction: column;
    }
}
.p-salon-role {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    width: 28%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 750px) {
    .p-salon-role {
        width: 80%;
        padding: 20px;
    }
}
.p-salon-role__head {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}
.p-salon-role__text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}
.p-salon-role--result {
    background: #333;
    color: #fff;
}
.p-salon-role--result .p-salon-role__head {
    color: #fff;
}
.p-salon-role--result .p-salon-role__text {
    color: #ddd;
}
.p-salon-role__plus, .p-salon-role__equal {
    font-size: 20px;
    font-weight: bold;
    color: #ccc;
}
@media screen and (max-width: 750px) {
    .p-salon-role__plus, .p-salon-role__equal {
        transform: rotate(90deg);
    }
}
.p-salon-why {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
    .p-salon-why {
        flex-direction: column;
    }
}
.p-salon-why__box {
    width: 45%;
    background: rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: 8px;
}
@media screen and (max-width: 750px) {
    .p-salon-why__box {
        width: 100%;
    }
}
.p-salon-why__box .c-ttl-02 {
    text-align: left;
    margin-bottom: 16px;
    font-size: 17px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
}
@media screen and (max-width: 750px) {
    .p-salon-why__box .c-ttl-02 {
        text-align: center;
    }
}
.p-salon-message {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 24px 0;
}
@media screen and (max-width: 750px) {
    .p-salon-message {
        font-size: 17px;
    }
}
.p-salon-ai {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    padding: 28px;
    border-radius: 10px;
}
.p-salon-ai__compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}
@media screen and (max-width: 750px) {
    .p-salon-ai__compare {
        flex-direction: column;
    }
}
.p-salon-ai__item {
    flex: 1;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
}
@media screen and (max-width: 750px) {
    .p-salon-ai__item {
        width: 100%;
    }
}
.p-salon-ai__item--human {
    background: #fff5f5;
    border-color: #ffcccc;
}
.p-salon-ai__type {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #666;
}
.p-salon-ai__vs {
    font-weight: bold;
    font-size: 18px;
    color: #ccc;
}
.p-salon-mechanism {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
    .p-salon-mechanism {
        flex-direction: column;
    }
}
.p-salon-mechanism__item {
    flex: 1;
    background: #fff;
    padding: 24px;
    border-radius: 10px;
}
.p-salon-mechanism__item--mytone {
    background: #f0f0f0;
}
.p-salon-mechanism__head {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #333;
}
.p-salon-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
    .p-salon-process {
        flex-direction: column;
    }
}
.p-salon-process__step {
    background: #fff;
    padding: 24px;
    width: 40%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 750px) {
    .p-salon-process__step {
        width: 100%;
    }
}
.p-salon-process__num {
    color: #ccc;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
}
.p-salon-process__title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 12px;
}
.p-salon-process__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}
.p-salon-process__arrow {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #ccc;
}
@media screen and (max-width: 750px) {
    .p-salon-process__arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
}
.p-salon-format {
    max-width: 700px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}
.p-salon-plan {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
}
@media screen and (max-width: 750px) {
    .p-salon-plan {
        flex-direction: column;
        align-items: center;
    }
}
.p-salon-plan__box {
    flex: 1;
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-align: center;
}
.p-salon-plan__head {
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 16px;
}
.p-salon-plan__price {
    font-size: 14px;
    margin-bottom: 16px;
}
.p-salon-plan__price .u-price {
    font-size: 30px;
    font-weight: bold;
}
.p-salon-plan__content {
    text-align: left;
    background: #f5f5f5;
    padding: 16px;
    border-radius: 4px;
    font-size: 15px;
}
.p-salon-plan__content strong {
    display: block;
    margin-bottom: 8px;
}
.p-salon-plan__content ul {
    list-style: disc inside;
    line-height: 1.6;
}
.p-salon-menu {
    flex: 1.2;
}
@media screen and (max-width: 750px) {
    .p-salon-menu {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
.p-salon-flow {
    max-width: 800px;
    margin: 0 auto;
}
.p-salon-flow__head {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
}
@media screen and (max-width: 750px) {
    .p-salon-flow__head {
        font-size: 18px;
    }
}
.p-salon-flow__desc {
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
    color: #666;
}
.p-salon-option {
    max-width: 800px;
    margin: 20px auto 0;
}
.p-salon-option__box {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    border: 1px dashed #ccc;
}
.p-salon-text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 16px;
    color: #444;
}
@media screen and (max-width: 750px) {
    .p-salon-text {
        font-size: 15px;
    }
}
.p-salon-text.u-text-center {
    text-align: center;
}
.p-salon .c-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 8px;
    width: 100%;
}
.p-salon .c-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
}
@media screen and (max-width: 750px) {
    .p-salon .c-table {
        min-width: 500px;
    }
}
.p-salon .c-table th,
.p-salon .c-table td {
    border: 1px solid #ddd;
    padding: 12px;
}
.p-salon .c-table th {
    background: #f5f5f5;
    font-weight: bold;
    text-align: center;
    width: 30%;
}
.p-salon .c-table th:first-child {
    width: 40%;
}
.p-salon .c-table td {
    text-align: center;
}
.p-salon .p-check-list {
    max-width: initial;
    margin: 0 auto;
    background: #fff;
    padding: 28px;
    border-radius: 10px;
}
.p-salon .p-check-list__item {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}
.p-salon .p-check-list__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 7px;
    height: 12px;
    border-bottom: 3px solid #62c3a5;
    border-right: 3px solid #62c3a5;
    transform: rotate(45deg);
}
.p-salon .p-check-list__item:last-child {
    margin-bottom: 0;
}
.p-salon .p-check-list--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.p-salon .p-check-list--inline .p-check-list__item {
    width: 48%;
    margin-bottom: 0;
}
@media screen and (max-width: 750px) {
    .p-salon .p-check-list--inline .p-check-list__item {
        width: 100%;
    }
}
.p-salon .c-btn-main {
    background: #333;
    color: #fff;
    border: 2px solid #333;
}
.p-salon .c-btn-sub {
    background: #fff;
    color: #333;
    border: 2px solid #333;
}

.u-text-right {
    font-size: 14px;
}

/* ---------------------------------------------
*   p-voice
--------------------------------------------- */
.p-voice {
    padding: 70px 0 100px;
}
@media screen and (max-width: 750px) {
    .p-voice {
        padding: 50px 0 60px;
    }
}
.p-voice__lead {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #666;
}
@media screen and (max-width: 750px) {
    .p-voice__lead {
        font-size: 15px;
        margin-bottom: 30px;
    }
}
.p-voice__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media screen and (max-width: 750px) {
    .p-voice__list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.p-voice__item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-voice__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}
.p-voice__img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.p-voice__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transition: transform 0.5s ease;
}
.p-voice__item:hover .p-voice__img img {
    transform: scale(1.05);
}
.p-voice__body {
    padding: 24px;
}
.p-voice__category {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 13px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.p-voice__name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}
.p-voice__age {
    font-size: 14px;
    font-weight: normal;
    color: #999;
    margin-left: 8px;
}
.p-voice__text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.p-voice__pagination {
    margin-top: 50px;
    text-align: center;
}

/* ---------------------------------------------
*   p-contact
--------------------------------------------- */
.p-contact {
    padding: 70px 0 100px;
}
@media screen and (max-width: 750px) {
    .p-contact {
        padding: 50px 0 60px;
    }
}
.p-contact__lead {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #666;
}
@media screen and (max-width: 750px) {
    .p-contact__lead {
        font-size: 15px;
        margin-bottom: 30px;
    }
}
.p-contact__form-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 750px) {
    .p-contact__form-wrap {
        padding: 24px;
    }
}
.p-contact__field {
    margin-bottom: 24px;
}
.p-contact__field--checkbox {
    margin-top: 8px;
    text-align: center;
}
.p-contact__label {
    display: block;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}
.p-contact__required {
    display: inline-block;
    background: #d85a5a;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}
.p-contact__input, .p-contact__select, .p-contact__textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 18px;
    font-family: inherit;
    background: #fafafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.p-contact__input:focus, .p-contact__select:focus, .p-contact__textarea:focus {
    outline: none;
    border-color: #7abeb8;
    box-shadow: 0 0 0 3px rgba(122, 190, 184, 0.15);
    background: #fff;
}
.p-contact__input::-moz-placeholder, .p-contact__select::-moz-placeholder, .p-contact__textarea::-moz-placeholder {
    color: #bbb;
}
.p-contact__input::placeholder, .p-contact__select::placeholder, .p-contact__textarea::placeholder {
    color: #bbb;
}
.p-contact__select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.p-contact__textarea {
    resize: vertical;
    min-height: 160px;
}
.p-contact__checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}
.p-contact__checkbox {
    width: 18px;
    height: 18px;
    accent-color: #7abeb8;
    cursor: pointer;
    -moz-appearance: auto;
         appearance: auto;
    -webkit-appearance: checkbox;
    flex-shrink: 0;
}
.p-contact__checkbox-text {
    color: #555;
}
.p-contact__submit {
    text-align: center;
    margin-top: 32px;
}
.p-contact__btn {
    display: inline-block;
    padding: 14px 60px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: inherit;
}
.p-contact__btn:hover:not(:disabled) {
    opacity: 0.8;
    transform: translateY(-2px);
}
.p-contact__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ---------------------------------------------
*   p-thanks
--------------------------------------------- */
.p-thanks {
    padding: 80px 0 120px;
}
@media screen and (max-width: 750px) {
    .p-thanks {
        padding: 50px 0 80px;
    }
}
.p-thanks__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 750px) {
    .p-thanks__inner {
        padding: 40px 24px;
    }
}
.p-thanks__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #2d8a5e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}
.p-thanks__heading {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}
@media screen and (max-width: 750px) {
    .p-thanks__heading {
        font-size: 18px;
    }
}
.p-thanks__text {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
    .p-thanks__text {
        font-size: 15px;
    }
}
.p-thanks__note {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-top: 24px;
    margin-bottom: 0;
}
.p-thanks__cta {
    margin-top: 40px;
}

/* 送信結果メッセージ */
.p-contact__result {
    text-align: center;
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    display: none;
}
.p-contact__result--success {
    display: block;
    background: #f0faf5;
    color: #2d8a5e;
    border: 1px solid #c3e6d5;
}
.p-contact__result--error {
    display: block;
    background: #fef2f2;
    color: #d85a5a;
    border: 1px solid #fecaca;
}

/* 送信中ボタン */
.p-contact__btn.is-sending {
    opacity: 0.6;
    cursor: wait;
}

/* CF7 response output */
.wpcf7-response-output {
    text-align: center;
    margin-top: 16px;
    font-size: 15px;
}

/* ---------------------------------------------
*   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;
    }
}