:root {
    --header-height: 50px;

    --width-max: 1000px;
    --padding-section-tb: 40px;
    --padding-section-lr: 24px;
    --padding-section: var(--padding-section-tb) var(--padding-section-lr);

    --color-brand: #E4007F;
    --color-brand2: #004986;
    --color-text-black: #333;
    --color-gray-2: #5C5C5C;
    --color-gray-light: #F5F5F5;

    --flex-gap: 16px;

    --fontweight-thick: 700;

    --line-height: 150%;
}

@media screen and (min-width: 1081px) {
    :root {
        --header-height: 70px;
    }
}


* {
    font-family: "Noto Sans JP", sans-serif !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: var(--line-height);
    font-size: 16px;
    overflow-x: hidden;
    color: #333;
}

main {
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
}

li {
    text-decoration: none;
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    opacity: 0.7;
}

button:hover {
    cursor: pointer;
    opacity: 0.7;
}

button.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.display-sp {
    display: block;
}

@media screen and (min-width: 1081px) {
    .display-sp {
        display: none;
    }
}

/* GENERAL 一般的 */
.btn {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.09);
    text-align: center;
    font-size: 16px;
    font-weight: var(--fontweight-thick);
    line-height: 100%;
}

.btn--white {
    background: #FFF;
    color: var(--color-brand);
}

.btn--pink {
    color: #FFF;
    background: var(--color-brand);
    width: 100%;
    max-width: 480px;
}

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

.color--pink {
    color: var(--color-brand);
}


/* HEADER ヘッダー */

.header-container {
    width: 100%;
    height: var(--header-height);
    padding: 8px 12px;
    position: fixed;
    top: 0;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
}

.header-container .nav-container {
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    gap: 12px;
}

.header-container .logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 999;
    max-width: 160px;
    width: 100%;
}

.header-container .logo-img {}

.header-container .logo-title {
    color: #444;
    font-size: 14px;
    word-break: keep-all;
    font-weight: 400;
}

.header-container .menu-container {
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    height: calc(100svh -50px);
    background: linear-gradient(152deg, rgba(99, 181, 253, 1) 0%, rgba(255, 75, 177, 1) 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8.9px);
    -webkit-backdrop-filter: blur(6.9px);
    transition: all 0.4s;
    z-index: 90;
    padding: 0 10%;
    gap: 16px;
}

.header-container .menu-container.nav-display {
    left: 0;
    transition: all 0.4s;
}

.header-container .menu-content-li a {
    font-size: 14px;
    font-weight: 400;

    color: #FFF;
    font-size: 32px;
    font-weight: var(--fontweight-thick);
    line-height: 200%;
}

.header-container .privacy {
    color: #FFF;
    font-size: 12px;
    font-weight: 900;
    line-height: 200%;
}

.header-container .copyright {
    color: #FFF;
    font-size: 10px;
    font-weight: 400;
    line-height: 220%;
}

.header-container .header-bgwhite {
    background-color: white;
    height: var(--header-height);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.btn-check-container {
    position: relative;
    z-index: 9999;
}

.btn-check-container:hover {
    cursor: pointer;
}

#menu-btn-check {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    width: 32px;
    opacity: 0;
}

.menu-btn {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
}

.menu-btn:hover {
    opacity: 1;
    transition: all .3s ease-in-out;
    background-color: var(--clr-white);
    cursor: pointer;
}

.menu-btn span.bar-top,
.menu-btn span.bar-middle,
.menu-btn span.bar-bottom {
    height: 3px;
    width: 22px;
    border-radius: 3px;
    position: absolute;
    transition: all .3s ease-out;
    background-color: #B2B2B2;
    left: 0;
    right: 0;
    margin: auto;
}

.menu-btn span.bar-top {
    top: 10px;
}

.menu-btn span.bar-middle {
    top: 18px;
}

.menu-btn span.bar-bottom {
    bottom: 10px;
}

#menu-btn-check:checked~.menu-btn span.bar-middle {
    opacity: 0;
    transition: all .1s ease-out;
}

#menu-btn-check:checked~.menu-btn span.bar-top {
    top: 18px;
    transform: rotate(45deg);
    transition: all .3s ease-out;
}

#menu-btn-check:checked~.menu-btn span.bar-bottom {
    bottom: 19px;
    transform: rotate(-45deg);
    transition: all .3s ease-out;
}

.header-container .btn--contact {
    height: 30px;
    padding: 7px 4px;
    gap: 8px;
    max-width: 160px;
    font-size: 14px;
    margin-left: auto;
}

@media screen and (min-width: 391px) {
    .header-container .btn--contact {
        font-size: 16px;
        padding: 7px 16px;
    }
}

@media screen and (min-width: 1081px) {
    .header-container {
        padding: 0px 40px;
        height: 70px;
    }

    .logo-container {
        gap: 24px;
    }

    .logo-title {
        font-size: 18px;
    }

    #menu-btn-check,
    .menu-btn {
        display: none;
    }

    .header-container .menu-container {
        flex-direction: row;
        justify-content: end;
        align-items: center;
        position: static;
        height: 100%;
        padding: 0;
        box-shadow: none;
        background: unset;
        backdrop-filter: unset;
    }

    .header-container .menu-content-li a {
        color: var(--color-text-black);
        font-size: 18px;
        font-weight: 400;
    }

    .header-container .btn--contact {
        height: 38px;
        padding: 9px 21px;
        gap: 10px;
        max-width: 190px;
        order: 2;
        font-size: 20px;
    }
}


.section-container {
    padding: var(--padding-section);
}

.section-box {
    max-width: var(--width-max);
    width: 100%;
}

.card-container {
    display: flex;
    padding: 24px;
    gap: 8px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
}

/* SECTION KV セックションKV */
.shikakeru--kv {
    position: relative;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #E3F7F3;
}

.shikakeru--kv .kv-box {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    max-width: unset;
}

.shikakeru--kv .h1image {
    z-index: 1;
    max-width: 320px;
    margin-top: var(--header-height);
}

.shikakeru--kv .h1image_pc {
    display: none;
}

.shikakeru--kv .h1image_sp {
    width: 100%;
    max-width: unset;
    padding: 8px;
    margin-top: 0;
    position: relative;
    top: var(--header-height);
}

.shikakeru--kv .kyara {
    max-width: 60%;
    width: 100%;
    margin-right: auto;
}

.shikakeru--kv .h1-container {
    gap: 24px;
    width: 100%;
}

.shikakeru--kv .h1heading {
    position: absolute;
    z-index: -1;
}

/* .kv-box .kv-title-p {
    display: flex;
    align-items: end;
    gap: 0;
}

.kv-box .kv-title-p>* {
    display: block;
}

.kv-box .line1-span1 {
    font-size: clamp(20px, 4.4vw, 30px);
}

.kv-box .line1-span2 {
    font-size: clamp(14px, 4vw, 18px);
}

.kv-box .line2-span1 {
    font-size: clamp(27px, 5.8vw, 39px);
}

.kv-box .line2-span2 {
    font-size: clamp(14px, 4vw, 18px);
}

.kv-box .line3-span1 {
    font-size: clamp(28px, 6vw, 42px);
}

.kv-box .line3-span2 {
    font-size: clamp(16px, 5vw, 26.543px);
}

.kv-box .line4-span1 {
    font-size: clamp(40px, 10vw, 60px);
    text-indent: -20px;
}

.kv-box .line5-span1 {
    font-size: clamp(20px, 5vw, 26.543px);
} */

.shikakeru--kv .kv-btn {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid rgba(51, 51, 51, 0.50);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.09);
    color: #333;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;

    width: calc(100% - 48px);
    max-width: 480px;

    position: absolute;
    bottom: 44px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* KV2 */


.shikakeru--kv.shikakeru--kv2 {
    background-color: #fff;
    height: 80vh;
    height: 80svh;
}

.shikakeru--kv.shikakeru--kv2 .kv-box {
    max-width: unset;
    height: 100%;
    justify-content: space-between;
}

.shikakeru--kv.shikakeru--kv2 .h1-container {
    padding: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.shikakeru--kv.shikakeru--kv2 .kv-mainimg {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100%;
    position: absolute;
    bottom: -120px;
}

.shikakeru--kv.shikakeru--kv2 .kv-mainimg img {
    height: 100%;
    width: auto;
}

.shikakeru--kv.shikakeru--kv2 .kv-h1img {
    position: relative;
    z-index: 1;
}

.shikakeru--kv.shikakeru--kv2 .kv-btn {
    position: relative;
    color: #FFF;
    background: var(--color-brand);
    width: 100%;
    max-width: 480px;
    border: none;
}

@media screen and (min-width: 421px) {
    .kv-box .kv-btn {
        max-width: 420px;
    }
}

@media screen and (min-width: 768px) {
    .shikakeru--kv.shikakeru--kv2 {
        padding: 40px;
        height: unset;
    }

    .shikakeru--kv .kv-box,
    .shikakeru--kv.shikakeru--kv2 .kv-box {
        flex-direction: row;
        gap: 32px;
        max-width: 1360px;
        position: relative;
        left: -40px;
        margin-top: 0;
        padding-bottom: 40px;
    }

    .shikakeru--kv .kyara {
        max-width: 48%;
        margin-top: 20px;
    }

    .shikakeru--kv .h1-container {
        width: 48%;
    }

    .shikakeru--kv .h1image_sp {
        display: none;
    }

    .shikakeru--kv .h1image_pc {
        display: block;
        max-width: 100%;
        margin-top: 100px;
    }

    .shikakeru--kv .kv-btn {
        width: 80%;
        text-align: center;
        font-size: 25.667px;
        font-weight: 700;
        line-height: 100%;
        padding: 24px 16px;
        position: static;
    }

    .shikakeru--kv.shikakeru--kv2 .kv-mainimg {
        display: block;
        position: static;
    }

    .shikakeru--kv.shikakeru--kv2 .kv-mainimg img {
        width: 100%;
        height: auto;
    }

    .shikakeru--kv .h1image,
    .shikakeru--kv.shikakeru--kv2 .kv-box {
        position: static;
        max-width: 580px;
        width: 100%;
    }

    .shikakeru--kv.shikakeru--kv2 .kv-box {
        position: static;
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
    }

    .shikakeru--kv.shikakeru--kv2 .kv-btn {
        position: static;
    }
}

/* LOGOS SECTION ロゴセクション */
.section--logos {
    padding: 16px 0;
    background-color: var(--color-brand);
}

.scroller-container {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller-wrapper {
    display: flex;
    animation: scroll 10s linear infinite;
}

.scroller-container:hover .scroller-wrapper {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.scroller-list {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-right: 16px;
}

.scroller-container .scroller-wrapper .scroller-list figure {
    flex-shrink: 0;
    height: 50px;
    width: auto;
}

.scroller-container .scroller-wrapper .scroller-list img {
    height: 50px;
    width: auto;
}

/* SECTION INTRO セックション紹介 */
.section--intro {
    background-color: var(--color-brand);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.section--intro .intro-h2-container {
    width: 100%;
    justify-content: center;
}

.section--intro .intro-h2 {
    color: #FFF;
    text-align: center;
    font-size: 26px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
}

.section--intro .intro-card-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    height: 100%;
    width: 100%;
}

.section--intro .intro-card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
}

.section--intro .intro-title {
    color: var(--color-brand);
    text-align: center;
    font-size: 24px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
    width: 100%;
    display: block;
    text-align: center;
}

.section--intro .intro-title2 {
    color: var(--color-brand2);
    text-align: center;
    font-size: 20px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
    padding-bottom: 8px;
    text-align: center;
    width: 100%;
}

.section--intro .card-description {
    font-size: 14px;
}

.section--intro .intro-picture {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .section--intro .intro-card-container {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 16px;
        width: 100%;
    }

    .section--intro .wp-block-group.intro-card {
        display: flex;
        flex-direction: column;
        flex: 1;
        align-self: stretch;
        padding: 24px;
        gap: 8px;
        border-radius: 10px;
        background: #FFF;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
    }

    .section--intro .intro-picture {
        margin-top: auto;
        margin-left: auto;
        margin-right: auto;
    }
}

/* SECTION KIKAKU 企画セックション */
.section--kikaku {
    justify-content: center;
    align-items: center;
    gap: 36px;
    background: var(--color-gray-light);
}

.section--kikaku .heading {
    line-height: 130%;
    text-align: center;
    font-size: 32px;
    font-weight: var(--fontweight-thick);
    width: 100%;
    ;
}

.section--kikaku .section-description {
    text-align: center;
    width: 100%;
}

.section--kikaku .card-container {
    align-items: center;
    margin: 0 auto;
    max-width: 800px;
    gap: 16px;
}

.section--kikaku .card-title {
    color: var(--color-brand);
    text-align: center;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
    width: 100%;
}

.section--kikaku .card-title .txt--large {
    font-size: 40px;
    line-height: 1.5;
}

.section--kikaku .card-title .txt--m {
    text-align: center;
    font-size: 26px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
}

.section--kikaku .card-description {
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .section--kikaku .card-description {
        text-align: center;
    }
}

/* GRADIENT CONTAINER */
.section--gradient {
    width: 100%;
    background: linear-gradient(180deg, #E4007F 0%, #191D8B 100%);
}

.section--serviceshoukai {
    gap: 36px;
    padding: 24px;
}

.section--serviceshoukai .serviceshoukai-heading {
    color: #FFF;
    text-align: center;
    font-size: 34px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
}

.section--serviceshoukai .serviceshoukai-description {
    color: #FFF;
    gap: 18px;
    font-weight: var(--fontweight-thick);
    text-align: left;
}

.section--serviceshoukai .section--servicenaiyou {
    background-color: white;
    width: 100%;
}

.section--servicenaiyou {
    background-color: white;
    justify-content: center;
    width: 100%;
    padding: 24px;
}

.section--servicenaiyou .section-box {
    max-width: 600px;
}

.section--servicenaiyou .section-box>* {
    width: 100%;
}

.servicenaiyou-heading-container {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.servicenaiyou-heading {
    color: #E4007F;
    text-align: center;
    font-size: 32px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
}

.section--servicenaiyou .card-container {
    display: flex;
    padding-bottom: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.section--servicenaiyou .card-box {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 10px;
    background: #E4007F;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
    width: 100%;
}

.section--servicenaiyou .card-title {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
}

.section--servicenaiyou .card-description {
    color: #FFF;
    font-size: 16px;
}

.section--fanltv {
    gap: 22px;
}

.fanltv-heading {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
}

.section--fanltv .btn {
    width: 100%;
    margin-top: 12px;
}

@media screen and (min-width: 421px) {
    .servicenaiyou-heading-container {
        flex-direction: row;
    }
}

@media screen and (min-width: 768px) {
    .section--serviceshoukai .serviceshoukai-description {
        align-items: center !important;
    }
}

/* NAYAMI 悩み */
.section--nayami {
    line-height: 170%;
    gap: var(--flex-gap);
    background-color: #F5F5F5;
}

.section--nayami .section-box {
    gap: 16px;
}

.nayami-box {
    border-radius: 10px;
    padding: 24px;
    gap: var(--flex-gap);
}

.nayami-box--gray {
    background-color: #D5D5D5;
    color: var(--color-gray-2);
}

.nayami-box--pink {
    background-color: white;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
    color: var(--color-brand);
}

.nayami-list-container {}

.nayami-list {
    width: 100%;
    height: 100%;
    padding: 16px;
    padding-bottom: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.section--nayami .nayami-list--gray {
    background-image: url(pic/img_framebggray.png);
    color: white;
}

.section--nayami .nayami-list--pink {
    background-image: url(pic/img_framebgpink.png);
    color: white;
}

.section--nayami .nayami-bg {
    width: 100%;
    height: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.section--nayami .nayami-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.section--nayami .nayami-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
}

.section--nayami .nayami-number {
    width: 100%;
}

.nayami-box .nayami-title1 {
    text-align: center;
    font-size: 32px;
    line-height: 130%;
    font-weight: var(--fontweight-thick);
}

.nayami-box .nayami-title2 {
    text-align: center;
    font-size: 22px;
    font-weight: var(--fontweight-thick);
}

.nayami-box .nayami-description {
    text-align: center;
    font-size: 14px;
    font-weight: var(--fontweight-thick);
}

.nayami-box--pink .nayami-description {
    color: var(--color-gray-2);
}

.section--nayami .btn {
    width: 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.09);
}

@media screen and (min-width: 768px) {
    .nayami-list {
        padding-bottom: 50px;
    }

    .nayami-box .nayami-title1 {
        font-size: 36px;
    }

    .nayami-box .nayami-title2 {
        font-size: 26px;
    }

    .section--nayami .nayami-item {
        grid-template-columns: 28px 1fr;
    }

    .nayami-box .nayami-description {
        font-size: 16px;
        width: 100%;
    }

    .nayami-box div,
    .nayami-box .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* IP */
.section--ip {
    background-color: #F5F5F5;
    gap: 36px;
}

.section--ip .section-box {
    gap: 36px;
}

.section--ip .ip-head {
    gap: var(--flex-gap);
}

.section--ip .ip-title-container {
    color: #333;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.section--ip .ip-title {
    font-size: 26px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
}

.section--ip .ip-description {
    font-size: 14px;
}

.section--ip .table-container {
    width: 100%;
}

.section--ip .ip-table-heading {
    color: var(--color-brand);
    text-align: center;
    font-size: 18px;
    font-weight: var(--fontweight-thick);
    line-height: 130%;
    width: 100%;
    padding: 8px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFF;
    max-width: 800px;
}

/*.section--ip .ip-table {
   display: grid;
    width: calc(100% - 2px);
    grid-template-columns: 16.5% 83.5%;
    gap: 4px; 
     display: flex;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: scroll; 
}*/

.table-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.table-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}

/* .comparison-grid, */
.grid-wrapper .wp-block-group__inner-container {
    min-width: 800px;
    display: grid;
    grid-template-columns: minmax(120px, auto) repeat(3, minmax(200px, 1fr));
    width: 100%;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
}

.grid-wrapper .wp-block-group__inner-container>* {
    width: 100%;
}

div.grid-cell,
p.grid-cell {
    padding: .2rem;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: center;
    background-color: #E1E1E1;
    font-size: 11px;
    font-weight: 400;
    line-height: 140%;
    text-align: left;
    width: 100%;
    padding-left: 16px;

}

.shikakeru .grid-wrapper div.grid-cell {
    display: grid;
    grid-template-columns: 26px 1fr;
}

.grid-text {
    position: relative;
    left: -12px;
}

.comparison-grid .header-cell {
    text-align: center;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 140%;
    display: flex;
    justify-content: center;
}

.comparison-grid .category-header {
    font-size: 10px;
    font-weight: 400;
    line-height: 140%;
    background-color: #B4B4B4;
    height: 100%;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 10;
}

.comparison-grid .col-a3-header {
    background-color: var(--color-brand);
}

.comparison-grid .col-ec-header {
    background-color: #6A9861;
}

.comparison-grid .col-tantou-header {
    background-color: #A27FAC;
}

.comparison-grid .category-cell {
    background-color: #FFF;
    font-weight: bold;
    display: flex;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 10;
}

.comparison-grid .a3-cell {
    color: var(--color-brand);
    font-weight: bold;
    background-color: #FFE0F1;
    color: #E4007F;
    font-size: 12px;
    font-weight: 700;
    line-height: 140%;
}

/* .comparison-grid>div:nth-child(4n + 1), */
.comparison-grid .wp-block-group__inner-container>div:nth-child(4n + 1) {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 10;
}

@media (min-width: 768px) {
    .grid-wrapper .wp-block-group__inner-container {
        min-width: 1000px;
    }

    .section--ip .ip-table-heading {
        min-width: unset;
        width: 100%;
        max-width: 1000px;
    }

    .table-container {
        max-width: 1001px;
    }

    .nayami-list {
        padding-bottom: 64px;
        gap: 24px;
        font-size: 20px;
    }

    .grid-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .comparison-grid .category-cell,
    .comparison-grid .header-cell {
        padding: 8px;
        font-size: 16px;
    }
}

/* CONTACT */
.section--contact .section-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    margin: 0 auto;
}

.section--contact .contact-title {
    width: fit-content;
    margin: 0 auto;
}

.section--contact .contact-description {
    width: fit-content;
    margin: 0 auto;
}

.section--contact form {
    margin: 0 auto;
    width: 100%;
}

.section--contact .recruit_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
    padding-bottom: 30px;
}

.section--contact .form_row-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.section--contact .form_label-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
}

.section--contact .form_label-row-small {
    font-size: 12px;
}

.section--contact .hitsuyou-container {
    max-width: 68px;
    position: relative;
}

.section--contact .hitsuyou-borderimg {
    width: 100%;
}

.section--contact .hitsuyou-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--color-brand);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section--contact .form_input {
    display: flex;
    padding: 12px 20px;
    align-items: center;
    align-self: stretch;
    border: 2px solid var(--clr-gray-light1CCC, #CCC);
    border-radius: 3px;
    background: #FBFBF9;
    height: 50px;
    font-size: 16px;
    border: none;
    width: 100%;
}

.section--contact .form_textarea {
    min-height: 188px;
}

input::placeholder,
textarea::placeholder {
    color: #ccc
}

.section--contact .checkbox-container--topics {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 16px;
}

.section--contact .checkbox-container--topics span {
    margin-left: 0 !important;
    line-height: 1;
}

.section--contact .checkbox-container--topics label {
    white-space: nowrap;
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    background: #FBFBF9;
    line-height: 1;
    color: #666;
    leading-trim: both;
    text-edge: cap;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.section--contact .form-privacy {
    background: var(--clr-white);
    height: 230px;
    overflow-y: scroll;
    padding: 16px;
    border-radius: 3px;
    background: #FBFBF9;
    margin: 10px 0;
}

.section--contact .form-privacy section {
    padding: 0;
}

.section--contact .form-privacy {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.section--contact .form-privacy::-webkit-scrollbar {
    display: none;
}

.section--contact .form_row-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.section--contact .form_check-checkbox {
    display: flex;
    width: 30px;
    height: 30px;
    padding: 38px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section--contact .form_check-label {
    color: var(--black, #444);
    text-align: center;
    font-family: "Noto Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.btn-contact.ec-form-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    border: none;
    height: 70px;
    margin-bottom: 1rem;

    border-radius: 100px;
    box-shadow: 0 3px 0 0 #1D328D;
    background: #E4007F;
    color: white;
    font-weight: 700;
    ;
}

.btn-contact.ec-form-btn-gray {
    background: var(--white-gray, #E0E0E0);
    box-shadow: 0px 3px 0px 0px #C5C5C5;
    margin-bottom: 1rem;
    color: var(--black, #444);
    height: 70px;
}

.btn-contact.form_kakunin-disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .4;
    background: var(--white-gray, #E0E0E0);
}

.mw_wp_form_complete {
    display: none;
}

.mw_wp_form_input {
    width: 100%;
}

.form-privacy {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .section--contact form {
        width: 600px;
    }

    .section--contact .form-privacy {
        min-height: 108px;
    }
}

footer {
    background: linear-gradient(152deg, rgba(0, 73, 134, 0.70) 0%, rgba(228, 0, 127, 0.70) 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 32px 24px;
    color: white;
}

footer .footer-box {
    max-width: 600px;
    margin: 0 auto;
}

footer .menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

footer .menu-content-li a {
    color: white;
    font-size: 12px;
    font-weight: 700;
    line-height: 220%;
}

footer .footer-copy {
    text-align: right;
    font-family: "Noto Sans JP";
    font-size: 10px;
    font-weight: 400;
    line-height: 220%;
    color: white;
    fill: white;
}

@media screen and (min-width: 768px) {
    footer .menu-container {
        flex-direction: row;
    }

    footer .footer-copy {
        text-align: center;
    }
}