header {
    position: fixed;
    z-index: 9995;
    top: 0;
    left: 0;
}

@media (min-width:2000px) {
    header {
        max-width: 1920px;
        transform: translateX(-50%);
        left: 50%;
    }
}

@media (min-width:1025px) {
    header {
        display: grid;
        grid-template-columns: repeat(124, 1fr);
        grid-template-rows: auto;
        align-items: end;
        width: calc((1300 / 1366) * 100%);
    }
}

header .logo {
    background-color: var(--main-color);
    border-bottom-right-radius: 20px;
}

@media (min-width:1025px) {
    header .logo {
        grid-column: 1 / 29;
    }
}

header .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 24px;
}

header .logo a img {
    width: 100%;
    max-width: 288px;
}

header nav.global-menu {
    max-width: 478px;
}

@media (min-width:1025px) {
    header nav.global-menu {
        grid-column: 34 / 80;
    }
}

header nav.global-menu>ul {
    display: flex;
    gap: 0 calc((30 / 478) * 100%);
}

header nav.global-menu>ul>li {
    position: relative;
}


header nav.global-menu>ul>li.menu-item-has-children {
    padding-bottom: 7px;
}

header nav.global-menu>ul>li>a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.0;
    color: #100D0B;
    padding-bottom: 10px;
    padding-right: 30px;
    border-bottom: solid 1px #C2C3C5;
    transition: 0.3s ease-in-out;
}

header nav.change:not(.defa).global-menu>ul>li>a {
    color: #BCBCBC;
    border-bottom: solid 1px #BCBCBC;
}

@media (any-hover: hover) {
    header nav.global-menu>ul>li>a:hover {
        opacity: 0.6;
    }
}

header nav.global-menu>ul>li>a::after {
    content: "";
    position: absolute;
    top: calc(50% - 4.5px);
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border: solid 2px #100D0B;
    border-top-width: 0;
    border-left-width: 0;
}

header nav.change:not(.defa).global-menu>ul>li>a::after {
    border-color: #BCBCBC;
}

header nav.global-menu ul li:nth-of-type(3) a::after {
    transform: translateY(-50%) rotate(45deg);
}

header nav.global-menu ul li a span {
    display: block;
    font-size: calc((10 / 14) * 1.0em);
    font-weight: 400;
    font-family: var(--Montserrat);
    margin-top: 10px;
}

header nav.global-menu ul li ul {
    position: absolute;
    min-width: 188px;
    transform: translate(-50%, 7px);
    left: 50%;
    padding: 16px 17px;
    border-radius: 12px;
    background-color: #FFF;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

header nav.global-menu ul li ul li a {
    font-size: 14px;
    width: 100%;
    line-height: calc(32 / 14);
    transition: 0.3s ease-in-out;
}

@media (any-hover: hover) {
    header nav.global-menu>ul>li.menu-item-has-children:hover ul {
        opacity: 1.0;
        width: 100%;
        height: auto;
        pointer-events: auto;
    }

    header nav.global-menu ul li ul li a:hover {
        color: var(--main-color);
    }
}

header a.entry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: var(--Montserrat);
    font-weight: 500;
    color: #FFF;
    letter-spacing: 0.06em;
    max-width: 128px;
    margin-left: auto;
    padding: calc((11 / 16)*1.0em) calc((35 / 16)*1.0em);
    border: solid 1px var(--main-color);
    background-color: var(--main-color);
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

@media (any-hover: hover) {
    header a.entry-btn:hover {
        color: var(--main-color);
        background-color: #FFF;
    }
}

@media (min-width:1025px) {
    header a.entry-btn {
        grid-column: -1 / -14;
    }

    header nav>a.entry-btn {
        display: none;
    }
}

/*tb*/
@media (max-width:1024px) {
    header .logo {
        width: fit-content;
    }

    header .logo a {
        padding: 24px 40px;
    }

    header .logo a img {
        max-width: 218px;
    }


    header>a.entry-btn {
        display: none;
    }

    header a.entry-btn {
        width: 100%;
        max-width: 650px;
        margin: 25px auto 0;
    }
}

/*sp*/
@media (max-width:599px) {
    header .logo a {
        padding: 17px 16px;
    }

    header a.entry-btn {
        max-width: 128px;
        margin-left: calc((100% - ((335 / 375)*100%)) / 2);
    }
}

/*ハンバーガーメニュー*/
@media (max-width:1024px) {
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-right: calc((16 / 375) * 100%);
    }

    header .logo {
        position: relative;
        z-index: 9995;
        border-bottom-right-radius: 24px;
    }

    header nav.global-menu {
        position: fixed;
        z-index: 9994;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: initial;
        height: 100lvh;
        background-color: #FFF;
        transition: 0.3s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }

    header nav.global-menu.is-active {
        opacity: 1.0;
        pointer-events: auto;
    }

    header nav.global-menu ul {
        display: block;
        width: calc((335 / 375)*100%);
        max-width: 650px;
        margin: calc((120 / 667) * 100%) auto 0;
    }

    header nav.global-menu>ul>li>a {
        font-size: 18px;
        padding-left: 40px;
        padding-bottom: calc((16 / 20)*1.0em);
    }

    header nav.global-menu>ul>li:not(:first-of-type)>a {
        padding-top: calc((16 / 20)*1.0em);
    }

    header nav.global-menu>ul>li>a::before {
        content: "";
        position: absolute;
        z-index: 2;
        top: 11px;
        left: 9px;
        transform: translateY(-50%) rotate(-45deg);
        width: calc((5 / 19) * 1.0em);
        aspect-ratio: 1 / 1;
        border: solid 2px #FFF;
        border-top-width: 0;
        border-left-width: 0;
    }

    header nav.global-menu>ul>li>a::after {
        content: "";
        position: absolute;
        z-index: 1;
        transform: translateY(-50%) rotate(0);
        top: 11px;
        left: 0;
        right: initial;
        width: 25px;
        height: auto;
        aspect-ratio: 1 / 1;
        border: none;
        border-radius: 50%;
        background-color: var(--main-color);
    }

    header nav.global-menu>ul>li:not(:first-of-type)>a::before {
        top: calc((((16 / 20)*1.0em) / 1) + 11px);
    }

    header nav.global-menu>ul>li:not(:first-of-type)>a::after {
        top: calc((((16 / 20)*1.0em) / 1) + 11px);
    }

    header nav.global-menu ul li a span {
        display: none;
    }

    header nav.global-menu ul li ul {
        position: static;
        min-width: initial;
        transform: translate(0, 0);
        width: 100%;
        height: auto;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        background-color: transparent;
        opacity: 1.0;
    }

    header nav.global-menu.is-active ul li ul {
        pointer-events: auto;
    }

    header nav.global-menu ul li ul li:first-of-type {
        padding-top: 12px;
    }

    header .sp-btn {
        position: relative;
        z-index: 9995;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 3px;
        width: 50px;
        aspect-ratio: 1 / 1;
        background-color: var(--main-color);
        border-radius: 50%;
    }

    header .sp-btn span {
        width: calc((16 / 48) * 100%);
        height: 2px;
        border-radius: 5px;
        background-color: #FFF;
        transition: 0.3s ease-in-out;
    }

    header .sp-btn.is-active span:first-of-type {
        transform: translateY(3px) rotate(45deg);
    }

    header .sp-btn.is-active span:nth-of-type(2) {
        display: none;
    }

    header .sp-btn.is-active span:last-of-type {
        transform: translateY(-2px) rotate(-45deg);
    }

    header a.entry-btn {
        display: none;
    }
}

/*sp*/
@media (max-width:599px) {
    header {
        gap: 3px;
        align-items: end;
    }

    header .sp-btn {
        width: 48px;
    }

    header nav.global-menu ul {
        margin: calc((120 / 375) * 100%) auto 0;
    }

    header nav.global-menu>ul>li>a {
        font-size: 18px;
    }

    header nav.global-menu>ul>li>a {
        font-size: 16px;
        padding-left: 30px;
    }

    header nav.global-menu>ul>li>a::before {
        top: calc(50% - 6px);
        left: 7px;
        border: solid 1px #FFF;
        border-top-width: 0;
        border-left-width: 0;
    }

    header nav.global-menu>ul>li>a::after {
        top: calc(50% - 6px);
        left: 0;
        width: 20px;
    }

    header nav.global-menu>ul>li:not(:first-of-type)>a::before {
        top: 50%;
    }

    header nav.global-menu>ul>li:not(:first-of-type)>a::after {
        top: 50%;
    }
}

/*======================
*
TOP
*
=======================*/
/*======================
mv
=======================*/
#top .mv {
    position: relative;
    z-index: 1;
}

#top .mv::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc((384 / 768) * 100%);
    background-image: var(--gradient);
    opacity: 0.5;
}

#top .mv-slider,
#top .mv-slider>div {
    height: 100%;
}

#top .mv ul {
    height: 100%;
}

#top .mv ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top .mv .mv-hd {
    position: absolute;
    left: calc((64 / 1366) * 100%);
    bottom: calc((64 / 1366) * 100%);
    z-index: 3;
    font-size: 60px;
    color: #FFF;
}

#top .mv .mv-hd h1 {
    font-size: 1.0em;
    font-family: var(--ZenOldMincho);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: calc(72 / 60);
}

#top .mv .mv-hd span {
    display: block;
    width: 100%;
    height: 1px;
    margin: calc((24 / 60) * 1.0em) auto calc((22 / 60) * 1.0em);
    background-color: #FFF;
}

#top .mv .mv-hd p {
    font-size: calc((28 / 60) * 1.0em);
    font-weight: 600;
    letter-spacing: 0.016em;
}

#top .mv .scroll {
    position: absolute;
    right: calc((64 / 1366) * 100%);
    bottom: calc((64 / 1366) * 100%);
    z-index: 3;
    font-family: var(--Montserrat);
    font-weight: 600;
    font-size: 10px;
    line-height: 1.0;
    letter-spacing: 0.2em;
    color: #FFF;
    padding: 12px 20px;
    border: 1px solid #FFF;
    border-radius: 50px;
}

#top .mv .scroll p {
    display: flex;
    align-items: center;
    gap: 8px;
}

#top .mv .scroll p span {
    transform: translateY(-4px) rotate(45deg);
    width: 8px;
    height: 8px;
    border: solid 2px #FFF;
    border-top-width: 0;
    border-left-width: 0;
    animation: arrow_scroll 3.0s ease infinite;
}

@keyframes arrow_scroll {
    0% {
        transform: translateY(-4px) rotate(45deg);
    }

    20% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(0px) rotate(45deg);
        opacity: 0;
    }

    65% {
        transform: translateY(0px) rotate(45deg);
        opacity: 0;
    }

    100% {
        transform: translateY(0px) rotate(45deg);
        opacity: 0;
    }
}

/*tb*/
@media (max-width:1024px) {
    #top .mv .mv-hd {
        font-size: 45px;
    }
}

/*sp*/
@media (max-width:599px) {
    #top .mv {
        height: 100vh;
    }

    #top .mv::after {
        height: calc((375 / 667) * 100%);
    }

    #top .mv .mv-hd {
        transform: translateX(-50%) translateY(20px);
        left: 50%;
        bottom: 117px;
        min-width: fit-content;
        font-size: 40px;
    }

    @keyframes h1_move {
        to {
            transform: translateX(-50%) translateY(0);
            opacity: 1.0;
        }
    }

    #top .mv .mv-hd h1 {
        font-size: 1.0em;
        line-height: calc(48 / 40);
    }

    #top .mv .mv-hd span {
        margin: 11px auto 12px;
    }

    #top .mv .mv-hd p {
        font-size: calc((18 / 40) * 1.0em);
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    #top .mv .scroll {
        transform: translateX(-50%);
        left: 50%;
        bottom: 40px;
        width: fit-content;
    }

}

/*======================
*
top_message
*
=======================*/
#top .message_sec {
    padding: 80px 0 240px;
    background-color: var(--main-color);
}

#top .message_sec .cont-area {
    position: relative;
}

#top .message_sec .cont-area p {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.12em;
    line-height: 2.0;
    text-align: center;
}

#top .message_sec .cont-area p.active {
    animation-delay: var(--delay);
}

/*tb*/
@media (max-width:1024px) {
    #top .message_sec .cont-area p {
        bottom: -103px;
        font-size: 19px;
    }
}

@media (max-width:768px) {
    #top .message_sec .cont-area p {
        bottom: -103px;
        font-size: 16px;
    }
}

/*sp*/
@media (max-width:599px) {
    #top .message_sec {
        padding: 65px 0 110px;
    }

    #top .message_sec .cont-area p {
        position: static;
        transform: translateX(0);
        font-size: 16px;
        line-height: calc(40 / 16);
        margin-top: -80px;
    }
}

/*======================
*
top_about
*
=======================*/
#top section.about_sec {
    position: relative;
    background-color: var(--sub-color);
}

#top section.about_sec span.deco_bg {
    position: absolute;
    top: -48px;
    left: 0;
    width: calc((455 / 1366) * 100%);
    height: 48px;
    border-top-right-radius: 24px;
    background-color: var(--sub-color);
}

#top section.about_sec span.deco_bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -24px;
    width: 24px;
    height: 24px;
    background: url(images/top/about/top_about-deco.png) no-repeat left bottom / contain;
}

#top section.about_sec .cont-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#top section.about_sec .cont-area .text-area {
    width: calc((450 / 1240) * 100%);
}

#top section.about_sec .cont-area .text-area.active {}

#top section.about_sec .cont-area .img-area {
    width: calc((616 / 1240) * 100%);
    max-height: 740px;
    overflow: hidden;
}

#top section.about_sec .cont-area .img-area .flex-wrapper {
    display: flex;
    gap: 16px;
}

#top section.about_sec .cont-area .img-area .flex-wrapper .slider {
    width: calc((100% - 16px) / 2);
}

#top section.about_sec .cont-area .img-area ul {
    display: flex;
    gap: 16px;
    flex-direction: column-reverse;
    width: 100%;
    padding-bottom: 16px;
    animation: loopY 15s linear infinite;
}

#top section.about_sec .cont-area .img-area .slider:nth-of-type(2) ul {
    animation: loopY 22.5s linear -11.25s infinite;
}

@keyframes loopY {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }

}

#top section.about_sec .cont-area .img-area ul li {
    aspect-ratio: 3 / 4;
}

#top section.about_sec .cont-area .img-area ul li img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (min-width:1025px) and (max-width:1365px) {
    #top section.about_sec .top_hd+.text-cont p br {
        display: none;
    }
}

/*tb*/
@media (max-width:1024px) {
    #top section.about_sec {
        padding-top: 65px;
    }

    #top section.about_sec .cont-area {
        display: block;
    }

    #top section.about_sec .cont-area .text-area {
        width: 100%;
        margin: auto;
    }

    #top section.about_sec .cont-area .img-area {
        max-height: 400px;
        margin: 50px auto 0;
    }
}

/*sp*/
@media (max-width:599px) {
    #top section.about_sec .cont-area .img-area {
        width: 100%;
    }

    #top section.about_sec .cont-area .img-area .flex-wrapper {
        gap: 9px;
    }

    #top section.about_sec .cont-area .img-area ul {
        gap: 9px;
        padding-bottom: 9px;
    }

    #top section.about_sec span.deco_bg {
        top: -32px;
        width: calc((120 / 375) * 100%);
        height: 32px;
        border-top-right-radius: 16px;
    }

    #top section.about_sec span.deco_bg::after {
        right: -16px;
        width: 16px;
        height: 16px;
        background: url(images/top/about/top_about-deco_sp.png) no-repeat left bottom / contain;
    }
}

/*======================
*
top_company
*
=======================*/
#top .company_sec {
    position: relative;
    background-color: var(--main-color);
}

#top .company_sec .text-area {
    position: absolute;
    z-index: 2;
    top: calc((245 / 768) * 100%);
    right: calc((230 / 1366) * 100%);
}

/*tb*/
@media (min-width:768px) and (max-width:1024px) {
    #top .company_sec .text-area {
        top: initial;
        right: min(50px, 10%);
        bottom: 7%;
    }

    #top .company_sec .top_hd {
        width: 100%;
        font-size: 16px;
        text-align: start;
    }

    #top .company_sec .top_hd .hd-deco p {
        font-size: calc((48 / 16) * 1.0em);
        margin-top: 13px;
        margin-bottom: -13px;
    }

    #top .company_sec .top_hd+.text-cont p {
        font-size: 14px;
        text-align: start;
        margin-top: 32px;
    }

    #top .company_sec .text-btn {
        justify-content: start;
    }
}

/*sp*/
@media (max-width:767px) {
    #top .company_sec {
        padding-bottom: 60px;
    }

    #top .company_sec .text-area {
        position: static;
        margin-top: -65px;
    }
}

/*======================
*
top_cta
*
=======================*/
.top_cta {
    width: 100%;
    padding-bottom: 13px;
    background-color: var(--main-color);
}

.top_cta .slider-area {
    display: flex;
    overflow: hidden;
}

.top_cta .cta_slider {
    display: flex;
    min-width: 100%;
    animation: loopX 30s linear infinite;
}

@keyframes loopX {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.top_cta .cta_slider li {
    width: calc((100% - 26px) / 3);
    margin-right: 13px;
}

.top_cta .cta_slider li img {
    border-radius: 24px;
}

.top_cta .cta-area {
    position: relative;
    padding: 13px 13px 0;
}

.top_cta .cta-area img {
    border-radius: 24px;
}

.top_cta .cta-area .text-area {
    position: absolute;
    transform: translate(-50%, 15px);
    left: 50%;
    top: calc((60 / 660) * 100%);
    width: 100%;
    text-align: center;
    color: var(--main-color);
}

.top_cta .cta-area .text-area .hd-area {
    position: relative;
    font-size: 22px;
}

.top_cta .cta-area .text-area .hd-area h2 {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: 1.0em;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.top_cta .cta-area .text-area .hd-area .hd-deco {
    font-family: var(--Montserrat);
    font-weight: 500;
    font-size: calc((80 / 22) * 1.0em);
    color: #E8F8FF;
    margin-top: -19px;
}

.top_cta .cta-area .text-area>p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 2.0;
    margin-top: 10px;
}

.top_cta .cta-area .text-area .text-btn {
    margin-left: auto;
    margin-right: auto;
}

/*sp*/
@media (max-width:767px) {
    .top_cta .cta-area .text-area .hd-area {
        font-size: 18px;
    }

    .top_cta .cta-area .text-area>p {
        font-size: 14px;
    }
}

@media (max-width:599px) {
    .top_cta {
        padding-bottom: 5px;
    }

    .top_cta .cta_slider li {
        width: calc((100% - 10px) / 3);
        margin-right: 5px;
    }

    .top_cta .cta_slider li img {
        border-radius: 12px;
    }

    .top_cta .cta-area {
        padding: 5px 5px 0;
    }

    .top_cta .cta-area img {
        border-radius: 12px;
    }

    .top_cta .cta-area .text-area {
        top: calc((50 / 480) * 100%);
    }

    .top_cta .cta-area .text-area .hd-area {
        font-size: 16px;
    }

    .top_cta .cta-area .text-area .hd-area .hd-deco {
        font-size: calc((48 / 16) * 1.0em);
    }

    .top_cta .cta-area .text-area>p {
        font-size: 14px;
        margin-top: 25px;
    }
}

/*======================
*
breadcrumbs
*
=======================*/
.breadcrumbs {
    position: relative;
    z-index: 5;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 33px;
}

.breadcrumbs ul li {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: #737886;
    letter-spacing: 0.12em;
}

.breadcrumbs ul li:not(:last-of-type)::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: calc(50% + 1px);
    right: -25px;
    width: 1px;
    height: 14px;
    background-color: #C6C9CA;
}

.breadcrumbs ul li a {
    color: var(--main-color);
}

/*======================
*
下層
*
=======================*/

/*======================
*
固定ページ
*
=======================*/
#page {
    background-color: var(--under-bg);
}

/*採用関係以外の下層*/
#page .under-head {
    font-size: 22px;
    color: var(--main-color);
    text-align: center;
    padding: 60px 0;
}

#page .under-head h1 {
    font-size: 1.0em;
    font-weight: 600;
    letter-spacing: 0.06em;
}

#page .under-head p.hd-deco {
    font-family: var(--Montserrat);
    font-size: calc((80 / 22) * 1.0em);
    font-weight: 500;
    line-height: 1.0;
    margin-top: 17px;
}

@media (max-width:599px) {
    #page .under-head {
        font-size: 16px;
        padding: 75px 0 80px;
    }

    #page .under-head p.hd-deco {
        font-size: 48px;
        margin-top: 8px;
        margin-bottom: -7px;
    }
}

.under_header_cont {
    position: relative
}

.under_header_cont .text-area {
    position: absolute;
    top: calc((100 /680) * 100%);
    right: calc((240 /1366) * 100%);
    font-size: 42px;
}

@media (max-width:1300px) {
    .under_header_cont .text-area {
        top: min(55px, calc((100 /680) * 100%));
        right: min(100px, calc((240 /1366) * 100%));
    }
}

.under_header_cont .text-area h2 {
    font-family: var(--ZenOldMincho);
    font-size: 1.0em;
    font-weight: 400;
    line-height: calc(60 / 42);
    color: var(--main-color);
    letter-spacing: -0.06em;
}

.under_header_cont .text-area p {
    font-size: calc((16 / 42) * 1.0em);
    font-weight: 600;
    line-height: 2.0;
    color: var(--main-color);
    letter-spacing: 0.12em;
    margin-top: calc((42 / 16) * 1.0em);
}

/*tb*/
@media (min-width:768px) and (max-width:1024px) {
    .under_header_cont .text-area h2 {
        font-size: 0.85em;
    }

    .under_header_cont .text-area p {
        font-size: calc((16 / 42) * 0.85em);
    }
}

@media (min-width:600px) and (max-width:767px) {
    .under_header_cont .text-area {
        top: min(30px, calc((100 /680) * 100%));
        right: min(60px, calc((240 /1366) * 100%));
    }

    .under_header_cont .text-area h2 {
        font-size: 0.65em;
    }

    .under_header_cont .text-area p {
        font-size: calc((16 / 42) * 0.75em);
    }
}

/*sp*/
@media (max-width:599px) {
    .under_header_cont .text-area {
        position: static;
        padding: 60px 0 80px;
    }

    .under_header_cont .text-area h2 {
        font-size: 30px;
        line-height: calc(42 / 30);
    }

    .under_header_cont .text-area p {
        font-size: 14px;
        margin-top: calc((23 / 14) * 1.0em);
    }
}

/*under-head01*/
.under-head01 {
    max-width: 1920px;
    margin: auto;
}

.under-head01 .header-text {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    padding-bottom: 105px;
}

.under-head01 .header-text .deco-text {
    position: absolute;
    z-index: -1;
    bottom: -17%;
    left: -6%;
}

.under-head01 figure {
    position: relative;
    z-index: 2;
    width: 100%;
}

.under-head01 figure img {
    width: 100%;
}

/*sp*/
@media (max-width:767px) {
    .under-head01 .header-text {
        padding-top: 68px;
        padding-bottom: 48px;
    }

    .under-head01 .header-text .deco-text {
        bottom: calc(((45 / 375) * 100%) * -1);
        left: calc(((25 / 375) * 100%) * -1);
    }
}

/*under-head02*/
.under-head02 {
    max-width: 1920px;
    margin: auto;
}

@media (min-width:1301px) {
    .under-head02 {
        margin: 0 auto calc((80 / 1366) * 100%);
    }
}

@media (min-width:1025px) and (max-width:1300px) {
    .under-head02 {
        margin: 0 auto calc((100 / 1366) * 100%);
    }
}

.under-head02 .header-text {
    line-height: 1.0;
    margin-top: -15px;
    margin-bottom: -16px;
    margin-left: -9px;
}

.under-head02 .mv-cont {
    position: relative;
}

.under-head02 .mv-cont .text-cont {
    position: absolute;
    left: calc((100% - ((1240 / 1366) * 100%)) / 2);
    bottom: calc((80 / 520) * -100%);
    width: calc((1240 / 1366) * 100%);
}

@media (min-width:1025px) {
    .under-head02 .mv-cont .text-cont.right {
        left: initial;
        right: calc((100% - ((1240 / 1366) * 100%)) / 2);
    }

    .under-head02 .mv-cont .text-cont.right>*>* {
        width: calc((587 / 1240) * 100%);
        margin-left: auto;
    }
}

@media (min-width:1025px) and (max-width:1300px) {
    .under-head02 .mv-cont .text-cont {
        bottom: calc((100 / 520) * -100%);
    }
}

.under-head02 .mv-cont .text-cont .hd-area {
    color: var(--main-color);
}

.under-head02 .mv-cont .text-cont .hd-area h1 {
    font-family: var(--ZenOldMincho);
    font-size: clamp(20px, 2.34vw, 32px);
    font-weight: 400;
    letter-spacing: -0.06em;
    margin-top: 8px;
}

.under-head02 .mv-cont .text-cont .hd-area p.hd-deco {
    font-family: var(--Montserrat);
    font-size: 20px;
    font-size: clamp(16px, 1.46vw, 20px);
    font-weight: 500;
    letter-spacing: 0.06em;
}

.under-head02 .mv-cont .text-cont .name-area {
    color: var(--main-color);
    margin-top: 24px;
}

.under-head02 .mv-cont .text-cont .name {
    font-family: var(--ZenOldMincho);
    font-size: clamp(16px, 1.46vw, 20px);
    font-weight: 400;
    letter-spacing: -0.06em;
}

.under-head02 .mv-cont .text-cont .since {
    font-size: clamp(12px, 1.02vw, 14px);
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

.under-head02 .mv-cont .text-cont .profile-cont {
    width: calc((587 / 1240) * 100%);
    color: #FFF;
    margin-top: 60px;
    padding: 48px calc((48 / 1366) * 100%) 44px;
    border-radius: 24px;
    background-color: var(--main-color);
}

@media (min-width:1025px) and (max-width:1300px) {
    .under-head02 .mv-cont .text-cont .profile-cont {
        width: calc((1240 / 1366) * 100%);
    }
}

.under-head02 .mv-cont .text-cont .profile-cont .profile {
    font-family: var(--Montserrat);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.under-head02 .mv-cont .text-cont .profile-cont p:not(.profile) {
    font-size: 14px;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 0.12em;
    margin-top: 12px;
}

/*tb*/
@media (max-width:1024px) {
    .under-head02 {
        margin-top: 32px;
    }

    .under-head02 .mv-cont .text-cont {
        position: static;
        margin: 25px auto 0;
    }

    .under-head02 .mv-cont .text-cont .profile-cont {
        width: 100%;
        margin-top: 24px;
        padding: 20px;
        border-radius: 12px;
    }
}

/*sp*/
@media (max-width:767px) {
    .under-head02 .header-text {
        margin-bottom: -9px;
        margin-left: -3px;
    }

    .under-head02 .mv-cont .text-cont {
        width: calc((335 / 375) * 100%);
    }

    .under-head02 .mv-cont .text-cont .name-area {
        margin-top: 12px;
    }
}

/*under-head03*/
.under-head03 {
    position: relative;
    min-height: calc(100svh - var(--header) - 40px - min(calc((80 / 1366) * 100vw), 80px));
    margin-top: min(calc((80 / 1366) * 100%), 80px);
    opacity: 1.0;
}

.under-head03.active {
    animation: none;
}

.under-head03::before {
    content: "";
    position: absolute;
    top: calc((62 / 1366) * -100vw);
    right: calc((100vw - ((1240 / 1366) * 100vw)) / -2);
    z-index: 1;
    height: calc(100% + ((62 / 1366)) * 100vw);
    width: calc((460 / 1240) * 100%);
    border-top-left-radius: 24px;
    background-color: var(--sub-color);
    opacity: 0;
    transition: 0.1s ease-in-out;
}

.under-head03.active::before {
    opacity: 1.0;
}

.under-head03::after {
    content: "";
    position: absolute;
    z-index: 2;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 60px;
    background-color: #FFF;
}

.under-head03>* {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.under-head03 .header-text .deco-text {
    position: absolute;
    z-index: -1;
    bottom: 15px;
    left: -6%;
}

@media (min-width:2000px) {
    .under-head03 .header-text .deco-text {
        bottom: 19px;
        left: -12%;
    }
}

/*mv テキスト*/
.under-head03 .header-text {
    width: calc((587 / 1240) * 100%);
}

.under-head03 .header-text .hd-area {
    border-bottom: 1px solid var(--border-glay);
}

.under-head03 .header-text .hd-area .read-text {
    font-size: clamp(14px, 1.17vw, 16px);
    font-weight: 600;
    color: #262626;
    line-height: 2.0;
    letter-spacing: 0.12em;
    margin: 28px 0 44px;
}

.under-head03 .header-text .anchor-area {
    margin-top: 50px;
}

.under-head03 .header-text .anchor-area>* {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
}

/*mv 画像*/
.under-head03 .img-area {
    position: relative;
    z-index: 3;
    width: calc((587 / 1240) * 100%);
}

.under-head03 .img-area figure img {
    width: 100%;
    aspect-ratio: 587 / 400;
    object-fit: cover;
    border-radius: 24px;
}

/*tb*/
@media (max-width:1024px) {
    .under-head03 {
        min-height: initial;
        margin-top: 69px;
    }

    .under-head03::before {
        content: none;
    }

    .under-head03::after {
        content: none;
    }

    .under-head03>* {
        display: block;
    }

    /*mv テキスト*/
    .under-head03 .header-text {
        position: relative;
        z-index: 4;
        width: 100%;
    }

    .under-head03 .header-text .anchor-area {
        margin-top: 24px;
        margin-bottom: 66px;
    }

    /*mv 画像*/
    .under-head03 .img-area {
        position: relative;
        width: 100%;
        padding: 32px 0;
    }

    .under-head03 .img-area::after {
        content: "";
        position: absolute;
        top: 0;
        right: calc(((100vw - ((1240 / 1366) * 100vw)) / -2));
        height: 100%;
        width: calc((323 / 335) * 100%);
        border-radius: 12px 0 0 0;
        background-color: var(--sub-color);
    }

    .under-head03 .img-area img {
        position: relative;
        z-index: 1;
        border-radius: 12px;
    }

    .under-head03 .img-area .deco-text {
        position: absolute;
        z-index: 2;
        bottom: calc(100% - 41px);
        left: calc(((100vw - ((1240 / 1366) * 100vw)) / -2) - 6px);
    }
}

/*sp*/
@media (max-width:767px) {

    /*mv テキスト*/
    :is(.under-head01, .under-head02, .under-head03) .header-text .hd-area .hd h1 {
        line-height: calc((48 / 36) * 1.0em);
    }

    .under-head03 .header-text .hd-area .read-text {
        margin: 32px 0 20px;
    }


    /*mv 画像*/
    .under-head03 .img-area::after {
        right: calc(((100vw - ((335 / 375) * 100vw)) / -2));
    }

    .under-head03 .img-area figure img {
        position: relative;
        z-index: 1;
        border-radius: 12px;
    }

    .under-head03 .img-area .deco-text {
        bottom: calc(100% - 22px);
        left: calc(((100vw - ((335 / 375) * 100vw)) / -2) - 6px);
    }
}

/*under-head01 under-head02*/
:is(.under-head01, .under-head02, .under-head03) .header-text .hd-area .hd {
    color: var(--main-color);
}

:is(.under-head01, .under-head02, .under-head03) .header-text .hd-area .hd h1 {
    font-family: var(--ZenOldMincho);
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -0.06em;
}

:is(.under-head01, .under-head02, .under-head03) .header-text .hd-area .hd .hd-deco {
    font-family: var(--Montserrat);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

:is(.under-head01, .under-head02, .under-head03) .deco-text {
    font-family: var(--Montserrat);
    font-size: 112px;
    font-weight: 500;
    color: #FFF;
    letter-spacing: 0.06em;
}

/*sp*/
@media (max-width:767px) {
    :is(.under-head01, .under-head02, .under-head03) .header-text .hd-area .hd h1 {
        font-size: 36px;
    }

    :is(.under-head01, .under-head02, .under-head03) .header-text .hd-area .hd .hd-deco {
        font-size: 16px;
    }

    :is(.under-head01, .under-head02, .under-head03) .deco-text {
        font-size: 56px;
    }
}


/*======================
ABOUT US
=======================*/
/*事業内容*/
#page .business-cont_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc((1300 / 1366) * 100%);
    margin-left: auto;
}

@media (min-width:2000px) {
    #page .business-cont_area {
        margin: auto;
    }
}

#page .business-cont_area .text-area {
    width: calc((525 / 1300) * 100%);
}

#page .business-cont_area .text-area .hd-area {
    position: relative;
    font-size: 32px;
    width: fit-content;
    margin: auto;
}

#page .business-cont_area .text-area .hd-area h2 {
    position: relative;
    z-index: 2;
    font-size: 1.0em;
    font-family: var(--ZenOldMincho);
    font-weight: 400;
    color: #53565C;
    line-height: 1.0;
    text-align: center;
}

#page .business-cont_area .text-area .hd-area h2>span {
    position: relative;
    width: fit-content;
    display: block;
    font-size: calc((42 / 32) * 1.0em);
    color: var(--main-color);
    margin: 7px auto;
    padding: 10px 25px;
}

#page .business-cont_area .text-area .hd-area h2>span span.deco {
    position: absolute;
    left: 0;
    top: 0;
}

#page .business-cont_area .text-area .hd-area h2>span span.deco::before,
#page .business-cont_area .text-area .hd-area h2>span span.deco::after,
#page .business-cont_area .text-area .hd-area h2>span span.deco2::before,
#page .business-cont_area .text-area .hd-area h2>span span.deco2::after {
    content: "";
    position: absolute;
    background-color: var(--main-color);
}

#page .business-cont_area .text-area .hd-area h2>span span.deco::before {
    top: 0;
    left: 0.5px;
    width: 2px;
    height: 40px;
}

#page .business-cont_area .text-area .hd-area h2>span span.deco::after {
    top: 4.5px;
    left: -4px;
    width: 24px;
    height: 2px;
}

#page .business-cont_area .text-area .hd-area h2>span span.deco2::before {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 40px;
}

#page .business-cont_area .text-area .hd-area h2>span span.deco2::after {
    bottom: 4px;
    right: -4px;
    width: 24px;
    height: 2px;
}


#page .business-cont_area .text-area .hd-area .hd-deco {
    position: absolute;
    z-index: 1;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-family: var(--Montserrat);
    font-weight: 500;
    font-size: calc((80 / 32) * 1.0em);
    line-height: 1.0;
    color: #FFF
}

#page .business-cont_area .text-area p.text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 2.0;
    color: #53565C;
    margin: calc((32 / 16) * 1.0em) 0 calc((22 / 16) * 1.0em);
}

#page .business-cont_area .text-area .list-area {
    border: solid 1px var(--main-color);
    border-radius: 8px;
}

#page .business-cont_area .text-area .list-area h3 {
    width: fit-content;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-right: solid 1px var(--main-color);
    border-bottom: solid 1px var(--main-color);
    border-radius: 0 0 8px 0;
}

#page .business-cont_area .text-area .list-area ul {
    margin: 17px 0 32px 24px;
}

#page .business-cont_area .text-area .list-area ul li {
    display: flex;
    column-gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 2.0;
}

#page .business-cont_area .text-area .list-area ul li::before {
    content: "";
    position: relative;
    top: 10px;
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
}

#page .business-cont_area .img-area {
    width: calc((683 / 1300) * 100%);
}

@media (max-width:1300px) {
    #page .business-cont_area .text-area .hd-area {
        font-size: calc(32px * 0.85);
    }

    #page .business-cont_area .text-area p.text {
        font-size: calc(16px * 0.85);
    }

    #page .business-cont_area .text-area .list-area h3 {
        font-size: 14px;
    }

    #page .business-cont_area .text-area .list-area ul li {
        font-size: 12px;
    }
}

/*tb*/
@media (min-width:600px) and (max-width:1024px) {
    #page .business-cont_area {
        align-items: end;
        margin-top: 50px;
    }

    #page .business-cont_area .text-area .hd-area {
        font-size: calc(32px * 0.75);
    }

    #page .business-cont_area .text-area p.text {
        margin: 20px 0 15px;
    }

    #page .business-cont_area .text-area .list-area ul {
        margin: 10px 0 10px 17px;
    }

    #page .business-cont_area .text-area .list-area ul li {
        column-gap: 4px;
    }

    #page .business-cont_area .text-area .list-area ul li::before {
        top: 9px;
        width: 6px;
        height: 6px;
    }

    #page .business-cont_area .img-area {
        aspect-ratio: 1 / 1;
    }

    #page .business-cont_area .img-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }
}

@media (min-width:600px) and (max-width:767px) {
    #page .business-cont_area {
        width: 98%;
    }

    #page .business-cont_area .text-area {
        margin: auto;
    }

    #page .business-cont_area .text-area .hd-area {
        font-size: calc(32px * 0.55);
    }

    #page .business-cont_area .text-area p.text {
        font-size: 10px;
        margin: 15px 0 10px;
    }

    #page .business-cont_area .text-area .list-area h3 {
        font-size: 12px;
    }

    #page .business-cont_area .text-area .list-area ul {
        margin: 7px 0 7px 10px;
    }

    #page .business-cont_area .text-area .list-area ul li {
        font-size: 10px;
    }

    #page .business-cont_area .text-area .list-area ul li::before {
        top: 8px;
        width: 4px;
        height: 4px;
    }
}

/*sp*/
@media (max-width:599px) {
    #page .business-cont_area {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    #page .business-cont_area+.business-cont_area {
        margin-top: 65px;
    }

    #page .business-cont_area .img-area {
        width: 100%;
    }

    #page .business-cont_area .text-area {
        width: calc((335 / 375) * 100%);
        margin-top: 25px;
    }

    #page .business-cont_area .text-area .hd-area {
        font-size: 20px;
    }

    #page .business-cont_area .text-area .hd-area h2>span {
        font-size: 30px;
        margin: 8px auto;
        padding: 10px 20px;
    }

    #page .business-cont_area .text-area .hd-area h2>span span.deco::before {
        top: 0;
        left: 0;
        width: 1.5px;
        height: 30px;
    }

    #page .business-cont_area .text-area .hd-area h2>span span.deco::after {
        top: 3px;
        left: -3px;
        width: 18px;
        height: 1.5px;
    }

    #page .business-cont_area .text-area .hd-area h2>span span.deco2::before {
        bottom: 0;
        right: 0;
        width: 1.5px;
        height: 30px;
    }

    #page .business-cont_area .text-area .hd-area h2>span span.deco2::after {
        bottom: 3px;
        right: -3px;
        width: 18px;
        height: 1.5px;
    }


    #page .business-cont_area .text-area .hd-area .hd-deco {
        font-size: 40px;
    }

    #page .business-cont_area .text-area p.text {
        font-size: 14px;
        margin: calc((17 /14) * 1.0em) 0 calc((17 / 14) * 1.0em);
    }

    #page .business-cont_area .text-area .list-area h3 {
        padding: 4.5px 12px;
    }

    #page .business-cont_area .text-area .list-area ul {
        margin: 9px 0 17px 32px;
    }

    #page .business-cont_area .text-area .list-area ul li {
        font-size: 14px;
    }
}

/*about メッセージ*/
#page .about_message {
    position: relative;
}

#page .about_message .img-area img {
    width: 100%;
    max-height: 1080px;
    object-fit: cover;
}

#page .about_message .text-area {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, 15px);
    top: calc((160 / 1080) * 100%);
    left: 50%;
    width: calc((720 / 1366) * 100%);
    max-width: 720px;
    font-size: 42px;
    color: #fff;
}

@media (max-width:1300px) {
    #page .about_message .text-area {
        width: 85%;
    }
}

#page .about_message .text-area h2 {
    font-family: var(--ZenOldMincho);
    font-size: 1.0em;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-align: center;
}

#page .about_message .text-area p {
    font-size: clamp(14px, calc((16 / 42) * 1.0em), 16px);
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 2.0;
    margin-top: 2.0em;
}

/*tb*/
@media (max-width:1024px) {
    #page .about_message {
        margin-top: 65px;
    }

    #page .about_message .text-area {
        font-size: calc(42px * 0.85);
    }
}

@media (max-width:767px) {
    #page .about_message .text-area {
        top: 9%;
        font-size: calc(42px * 0.65);
    }

    #page .about_message .text-area p {
        font-size: 12px;
    }
}

/*sp*/
@media (max-width:599px) {
    #page .about_message .img-area img {
        max-height: 780px;
    }

    #page .about_message .text-area {
        top: calc((60 / 780) * 100%);
        font-size: 30px;
    }

    #page .about_message .text-area p {
        font-size: 14px;
        margin-top: 25px;
    }
}

/*======================
COMPANY
=======================*/
h2.company-hd {
    font-size: 42px;
    font-family: var(--ZenOldMincho);
    font-weight: 400;
    color: var(--main-color);
    letter-spacing: 0.06em;
}

/*tb*/
@media (max-width:1024px) {
    h2.company-hd {
        font-size: 35px;
    }
}

/*sp*/
@media (max-width:767px) {
    h2.company-hd {
        font-size: 30px;
    }
}

/*message*/
.company_message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 120px auto;
}

.company_message .text-area {
    width: calc((765 / 1240) * 100%);
}

.company_message .text-area p {
    font-weight: 600;
    color: #53565C;
    line-height: 2.0;
    letter-spacing: 0.12em;
    margin-top: 45px;
}

.company_message .img-area {
    width: calc((396 / 1240) * 100%);
}

/*tb*/
@media (max-width:1024px) {
    .company_message .text-area p {
        font-size: 14px;
        margin-top: 25px;
    }
}

@media (max-width:767px) {
    .company_message {
        flex-direction: column-reverse;
    }

    .company_message .text-area {
        width: 100%;
        margin-top: 20px;
    }

    .company_message .img-area {
        width: 100%;
    }
}

/*sp*/
@media (max-width:767px) {
    .company_message {
        margin-top: 60px;
        margin-bottom: 42px;
    }

    .company_message .text-area {
        --offsetY: 10px;
        --offsetX: 0 !important;
        margin-top: 13px;
    }

    .company_message .text-area p {
        margin-top: 9px;
    }
}

/*ビジョン*/
.company_vision {
    color: #FFF;
    padding: 80px 0;
    border-radius: 24px;
    background-color: var(--main-color);
}

.company_vision .wrapper {
    width: calc((1100 / 1240) * 100%);
    margin: auto;
}

.company_vision .hd-area {
    font-size: 42px;
    font-family: var(--ZenOldMincho);
    font-weight: 400;
}

.company_vision .hd-area h2 {
    font-size: 1.0em;
    font-weight: 400;
    letter-spacing: -0.06em;
    text-align: center;
}

.company_vision .hd-area p {
    font-size: calc((32 / 42) * 1.0em);
    letter-spacing: -0.06em;
    line-height: calc(60 / 32);
    margin-top: 35px;
}

.company_vision h3 {
    font-size: 20px;
    font-family: var(--ZenOldMincho);
    font-weight: 400;
    letter-spacing: -0.06em;
    color: var(--main-color);
    margin: 40px auto 30px;
    padding: 10px 0;
    text-align: center;
    border-radius: 12px;
    background-color: #FFF;
}

.company_vision .visionCont-area>div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: calc((30 / 1366) * 100%);
}

.company_vision .visionCont-area>div .vison-cont {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 2 span;
    gap: 0;
}

.company_vision .visionCont-area>div .vison-cont>div {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 2 span;
    gap: 0;
}

.company_vision .visionCont-area>div .vison-cont>div h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 2.0;
    margin-bottom: 7px;
}

.company_vision .visionCont-area>div .vison-cont>div p {
    font-size: 16px;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 0.12em;
}

/*tb*/
@media (max-width:1024px) {
    .company_vision .visionCont-area>div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/*sp*/
@media (max-width:767px) {
    .company_vision {
        width: 100%;
        padding: 64px 0;
        border-radius: 0;
    }

    .company_vision .wrapper {
        width: 90%;
    }

    .company_vision .hd-area {
        font-size: 30px;
    }

    .company_vision .hd-area h2 {
        text-align: start;
    }

    .company_vision .hd-area p {
        font-size: 20px;
        line-height: 2.0;
        margin-top: 19px;
    }

    .company_vision h3 {
        font-size: 16px;
        margin: 36px auto 23px;
        padding: 12px 0;
        border-radius: 8px;
    }

    .company_vision .visionCont-area>div {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px;
    }

    .company_vision .visionCont-area>div :is(.vison-cont, .vision-cont > div) {
        display: block;
    }

    .company_vision .visionCont-area>div .vison-cont>div h4 {
        font-size: 16px;
        letter-spacing: 0.08em;
        margin-bottom: 13px;
    }

    .company_vision .visionCont-area>div .vison-cont>div p {
        font-size: 14px;
    }
}

/*会社概要*/
:is(.company_info, .group_info) {
    padding: 120px 0 120px;
}

.company_info {
    border-bottom: solid 1px var(--border-glay);
}

:is(.company_info, .group_info) .cont_wrapper>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

:is(.company_info, .group_info) .cont_wrapper h2 {
    min-width: fit-content;
}

:is(.company_info, .group_info) .text_cont {
    width: calc((762 / 1240) * 100%);
}

.company_info .text_cont {
    margin-top: -27px;
}


:is(.company_info, .group_info) .text_cont>div {
    display: grid;
    grid-template-columns: auto 1fr;
}

:is(.company_info, .group_info) .text_cont p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #53565C;
    line-height: 2.0;
}

.company_info .text_cont p {
    font-size: 20px;
    padding: 27px 0;
    border-bottom: 1px solid var(--main-color);
}

:is(.company_info, .group_info) .text_cont .info-th {
    color: var(--main-color);
}

:is(.company_info, .group_info) .text_cont .info-td {
    padding-left: calc((33 / 1366) * 100%);
}

:is(.company_info, .group_info) .text_cont a {
    transition: 0.3s ease-in-out;
}

.group_info .text_cont .has-icn a {
    display: inline-block;
    margin-right: 5px;
}

@media (any-hover:hover) {
    :is(.company_info, .group_info) .text_cont a:hover {
        opacity: 0.75;
    }
}

:is(.company_info, .group_info) .text_cont .has-icn a {
    position: relative;
    color: var(--main-color);
    text-decoration: underline;
    padding-right: 21px;
}

:is(.company_info, .group_info) .text_cont .has-icn a::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    width: 16px;
    aspect-ratio: 1/1;
    background: url(images/common/link-icn.webp) no-repeat center / 100%;
}

/*tb*/
@media (max-width:1024px) {
    :is(.company_info, .group_info) .text_cont {
        width: 100%;
    }

    :is(.company_info, .group_info) .text_cont {
        width: 100%;
        margin-top: 25px;
    }
}

/*sp*/
@media (max-width:767px) {
    :is(.company_info, .group_info) {
        padding: 60px 0;
    }

    .company_info .text_cont {
        margin-top: 4px;
    }

    :is(.company_info, .group_info) .text_cont>div {
        display: block;
    }

    :is(.company_info, .group_info) .text_cont p {
        font-size: 14px;
    }

    .company_info .text_cont p {
        font-size: 16px;
        padding: 21px 0;
    }

    :is(.company_info, .group_info) .text_cont .info-th {
        padding-bottom: 8px;
        border: 0;
    }

    :is(.company_info, .group_info) .text_cont .info-td {
        padding-left: 0;
        padding-top: 0;
    }
}

/*======================
recruit
=======================*/
/*header*/
.page-recruit .recruit_header {
    position: relative;
    margin-top: calc((var(--header) + 40px + 18px) * -1);
}

.page-recruit .recruit_header :is(div, .mv-img > div, figure) {
    height: 100%;
}

.page-recruit .recruit_header h1 {
    position: absolute;
    top: calc((192 / 900) * 100%);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ZenOldMincho);
    font-size: clamp(40px, 4.39vw, 60px);
    font-weight: 400;
    color: #262626;
    letter-spacing: -0.06em;
    width: fit-content;
    white-space: nowrap;
}

@media (min-width:768px) {
    .page-recruit .recruit_header h1 br {
        display: none;
    }
}

.page-recruit .recruit_header .mv-img img {
    height: 100%;
    object-fit: cover;
}

/*tb*/
@media(min-width:768px) and (max-width:1024px) {
    .page-recruit .recruit_header {
        height: 62vh;
    }
}

/*sp*/
@media (max-width:767px) {
    .page-recruit .recruit_header {
        margin-top: calc((var(--header) + 39px) * -1);
    }

    .page-recruit .recruit_header h1 {
        top: calc((199 / 667) * 100%);
        line-height: calc(48 / 40);
        text-align: center;
    }
}

/*message*/
section.recruit_message_work {
    background: url(/wp-content/uploads/2026/02/recruit_message-scaled.jpg) no-repeat top / cover;
}

section.recruit_message_work .recruit-message {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1366 / 745;
}

section.recruit_message_work .recruit-message p {
    font-size: clamp(16px, 1.46vw, 20px);
    font-weight: 600;
    line-height: 2.0;
    letter-spacing: 0.12em;
}

/*work*/
section.recruit_message_work .work-area {
    position: relative;
    width: calc((1303 / 1366) * 100%);
}

@media (min-width:2000px) {
    section.recruit_message_work .work-area {
        max-width: 1920px;
        margin: auto;
    }
}

section.recruit_message_work .work-area .work-text {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: 520px;
    padding: 64px;
    color: #FFF;
    background-color: var(--main-color);
    border-radius: 24px;
}

section.recruit_message_work .work-area .work-text :is(h2, p) {
    color: #FFF;
}

section.recruit_message_work .work-area .work-text h3 {
    font-family: var(--ZenOldMincho);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.06em;
    margin: 16px 0 32px;
}

section.recruit_message_work .work-area .work-text p:not(.hd-deco, .text-btn) {
    font-size: 16px;
    font-weight: 600;
    line-height: 2.0;
    letter-spacing: 0.12em;
}

section.recruit_message_work .work-area .work-text .text-btn {
    margin: 19px 0 0 auto;
}

section.recruit_message_work .work-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border-radius: 0 24px 24px 0;
}

/*tb*/
@media (max-width:1024px) {

    /*work*/
    section.recruit_message_work .work-area .work-text {
        padding: 50px 32px;
        border-radius: 24px;
    }

    section.recruit_message_work .work-area .work-text h3 {
        font-size: 24px;
        margin: 10px 0 25px;
    }

    section.recruit_message_work .work-area .work-text p:not(.hd-deco, .text-btn) {
        font-size: 14px;
    }
}

/*sp*/
@media (max-width:767px) {

    /*message*/
    section.recruit_message_work .recruit-message {
        width: calc((325 / 375) * 100%);
        aspect-ratio: 325 / 660;
        margin: auto;
    }

    /*work*/
    section.recruit_message_work {
        background: url(/wp-content/uploads/2026/03/sp_recruit_message.jpg) no-repeat top / cover;
    }

    section.recruit_message_work .work-area {
        width: calc((355 / 375) * 100%);
        margin: initial;
    }

    section.recruit_message_work .work-area .work-text {
        position: static;
        transform: translate(0, 0);
        padding: 40px calc((100% - ((295 / 375) * 100%)) / 2);
        border-radius: 0;
    }

    section.recruit_message_work .work-area .work-text h3 {
        font-size: 20px;
        margin: 24px 0 14px;
    }

    section.recruit_message_work .work-area .work-text p:not(.hd-deco, .text-btn) {
        font-size: 14px;
    }

    section.recruit_message_work .work-area .work-text .text-btn {
        margin: 12px 0 0 auto;
    }

    section.recruit_message_work .work-img.no_s_tb_sp {
        display: none;
    }

    section.recruit_message_work .sp_work-img {
        display: flex;
        overflow: hidden;
    }

    section.recruit_message_work .sp_work-img.top_img {
        border-radius: 0 12px 0 0;
    }

    section.recruit_message_work .sp_work-img.bottom_img {
        border-radius: 0 0 12px 0;
    }
}

/*interview*/
section.recruit_interview {
    background-color: #FFF;
    padding: 160px 0;
}

section.recruit_interview .cont-area>* {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

section.recruit_interview .cont-area .hd-area {
    width: calc((413 / 1240) * 100%);
    padding-right: calc((64 / 1240) * 100%);
}

section.recruit_interview .cont-area .hd-area.active {
    border-right: 1px solid var(--border-glay);
}

section.recruit_interview .cont-area .interview-cont {
    width: calc((100% - ((413 / 1240) * 100%)) - ((64 / 1240) * 100%));
}

section.recruit_interview .cont-area .interview-cont .interview-list+.interview-list {
    margin-top: 52px;
}

section.recruit_interview .cont-area .interview-list .text-area {
    margin-top: calc(((47 / 826) * 100%) * -1);
}

section.recruit_interview .cont-area .interview-list .text-area>* {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

section.recruit_interview .cont-area .interview-list .text-area .text {
    font-family: var(--ZenOldMincho);
    color: var(--main-color);
}

section.recruit_interview .cont-area .interview-list .text-area .text h3 {
    font-size: clamp(20px, 2.34vw, 32px);
    font-weight: 400;
    letter-spacing: -0.06em;
    padding: 16px 16px 16px 0;
    border-radius: 0 24px 0 0;
    background-color: #FFF;
}

section.recruit_interview .cont-area .interview-list .text-area .text p {
    font-weight: 400;
}

section.recruit_interview .cont-area .interview-list .text-area .text .name p:nth-of-type(1) {
    font-size: 20px;
    letter-spacing: -0.06em;
    margin: 8px 0;
}

section.recruit_interview .cont-area .interview-list .text-area .text .name p:nth-of-type(2) {
    font-family: 'ZenKakuGothicNew', 'Noto Sans', 'メイリオ';
    font-size: 14px;
    letter-spacing: 0.12em;
}

/*tb*/
@media (max-width:1024px) {
    section.recruit_interview .cont-area>* {
        display: block;
        justify-content: space-between;
        align-items: stretch;
    }

    section.recruit_interview .cont-area .hd-area {
        width: 100%;
        padding: 0 0 36px 0;
    }

    section.recruit_interview .cont-area .hd-area.active {
        border-right: 0;
    }

    section.recruit_interview .cont-area .interview-cont {
        width: 100%;
    }

    section.recruit_interview .cont-area .interview-cont .interview-list+.interview-list {
        margin-top: 32px;
    }

    section.recruit_interview .cont-area .interview-list figure img {
        border-radius: 12px;
    }

    section.recruit_interview .cont-area .interview-list .text-area {
        position: relative;
        margin-top: -27px;
    }

    section.recruit_interview .cont-area .interview-list .text-area .text-btn {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    section.recruit_interview .cont-area .interview-list .text-area .text h3 {
        padding: 12px 12px 12px 0;
        border-radius: 0 12px 0 0;
    }

    section.recruit_interview .cont-area .interview-list .text-area .text .name p:nth-of-type(1) {
        font-size: 16px;
        margin: 16px 0 8px;
    }

    section.recruit_interview .cont-area .interview-list .text-area .text .name p:nth-of-type(2) {
        font-size: 12px;
    }
}

/*sp*/
@media (max-width:767px) {
    section.recruit_interview {
        padding: 64px 0;
    }
}

/*discussion*/
section.recruit_discussion {
    padding: 120px 0;
    background: url(/wp-content/uploads/2026/03/recruit_disscution.png) var(--sub-color) no-repeat right bottom/ calc((953 / 1366) * 100%);
}

@media (min-width:1366px) {
    section.recruit_discussion {
        background-size: 953px;
    }
}

@media (min-width:2000px) {
    section.recruit_discussion {
        background-position: 63% 100%;
    }
}

section.recruit_discussion .cont-area .hd-area {
    width: calc((348 / 1240) * 100%);
}

section.recruit_discussion .cont-area .hd-area :is(h2, p) {
    color: #FFF;
}

section.recruit_discussion .cont-area .hd-area .text-btn {
    margin-top: 28px;
}

/*tb*/
@media (max-width:1024px) {
    section.recruit_discussion .cont-area .hd-area {
        width: 100%;
    }
}

/*sp*/
@media (max-width:767px) {
    section.recruit_discussion {
        padding: 48px 0 calc((211 / 375) * 100%);
        background: url(/wp-content/uploads/2026/03/sp_recruit_disscution.png) var(--sub-color) no-repeat right bottom/ 100%;
    }

    section.recruit_discussion .cont-area .hd-area .text-btn {
        margin-top: 20px;
    }
}

/*benefits*/
section.recruit_benefits {
    padding-top: 120px;
}

section.recruit_benefits .cont-area>* {
    display: flex;
    justify-content: space-between;
}

section.recruit_benefits .img-area {
    width: calc((825 / 1240) * 100%);
    border-radius: 24px;
    overflow: hidden;
}

section.recruit_benefits .hd-area {
    width: calc((350 / 1240) * 100%);
}

section.recruit_benefits .hd-area .text-btn {
    margin-top: 28px;
}

/*tb*/
@media (max-width:1024px) {
    section.recruit_benefits .cont-area>* {
        display: block
    }

    section.recruit_benefits .img-area {
        width: 100%;
        margin-bottom: 24px;
    }

    section.recruit_benefits .hd-area {
        width: 100%;
    }
}

/*sp*/
@media (max-width:767px) {
    section.recruit_benefits {
        padding-top: 64px;
    }

    section.recruit_benefits .img-area {
        border-radius: 12px;
    }

    section.recruit_benefits .hd-area .text-btn {
        margin-top: 20px;
    }
}

/*======================
work
=======================*/
/*about*/
section.work-about {
    position: relative;
    z-index: 1;
    max-width: 1920px;
    padding: 120px 0;
    background-color: var(--main-color);
    overflow: hidden;
}

section.work-about .cont-area>* {
    display: flex;
    justify-content: space-between;
}

section.work-about .cont-area .hd-area {
    width: calc((477 / 1240) * 100%);
}

section.work-about .cont-area .hd-area .hd-deco {
    width: fit-content;
    font-family: var(--ZenOldMincho);
    font-size: 20px;
    font-weight: 400;
    color: var(--main-color);
    letter-spacing: -0.06em;
    padding: 5px 12px;
    background-color: #FFF;
}

section.work-about .cont-area .hd-area h2 {
    font-family: var(--ZenOldMincho);
    font-size: 42px;
    font-weight: 400;
    color: #FFF;
    letter-spacing: -0.06em;
    line-height: calc(60 / 42);
    margin-top: 19px;
}

section.work-about .cont-area .text-area {
    width: calc((587 / 1240) * 100%);
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 0.12em;
    line-height: 2.0;
}

section.work-about .cont-area .deco-text {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -42px;
    font-family: var(--Montserrat);
    font-size: 112px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #1567AC;
}

/*tb*/
@media (max-width:1024px) {
    section.work-about .cont-area>* {
        display: block;
    }

    section.work-about .cont-area .hd-area {
        width: 100%;
    }

    section.work-about .cont-area .hd-area .hd-deco {
        font-size: 16px;
        padding: 5px 12px;
    }

    section.work-about .cont-area .hd-area h2 {
        font-size: 30px;
        line-height: calc(42 / 30);
        margin-top: 8px;
        margin-bottom: 20px;
    }

    section.work-about .cont-area .text-area {
        width: 100%;
        font-size: 14px;
    }

    section.work-about .cont-area .deco-text {
        bottom: -9px;
        font-size: 56px;
        line-height: calc(60 / 56);
    }
}

/*sp*/
@media (max-width:767px) {
    section.work-about {
        padding: 80px 0;
    }

    section.work-about .cont-area .hd-area h2 {
        white-space: nowrap;
    }
}

/*schedule*/
section.work-schedule {
    background-color: #FFF;
}

@media (min-width:1025px) {
    section.work-schedule02 {
        position: relative;
        padding: 40px 0;
    }

    section.work-schedule02::before,
    section.work-schedule02::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--border-glay);
    }

    section.work-schedule02::before {
        top: 39px;
    }

    section.work-schedule02::after {
        bottom: 39px;
    }
}

section:is(.work-schedule01, .work-schedule03) .schedule-wrapper {
    margin: 0 0 0 auto;
}

section.work-schedule02 .schedule-wrapper {
    margin: 0;
}

section.work-schedule .schedule-wrapper>* {
    display: flex;
    justify-content: space-between;
}

section:is(.work-schedule01, .work-schedule03) .schedule-wrapper>* {
    flex-direction: row-reverse;
    margin: 0 0 0 auto;
}

section.work-schedule .schedule-wrapper figure {
    width: calc((651 / 1300) * 100%);
}

section.work-schedule .schedule-wrapper figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.work-schedule .schedule-wrapper .text-area {
    display: flex;
    align-items: center;
    width: calc((587 / 1300) * 100%);
}

section.work-schedule .schedule-wrapper .text-area .hd-area h2 {
    font-family: var(--ZenOldMincho);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.06em;
    color: var(--main-color);
}

section.work-schedule .schedule-wrapper .text-area .hd-area p {
    font-size: 16px;
    font-weight: 600;
    line-height: 2.0;
    letter-spacing: 0.12em;
    margin-top: 21px;
}

section.work-schedule .schedule-wrapper .text-area .schedule-cont {
    margin-top: 44px;
}

section.work-schedule .schedule-wrapper .text-area .schedule-cont h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

section.work-schedule .schedule-wrapper .text-area .schedule-cont .cont {
    position: relative;
    padding-left: 16px;
    border-left: solid 1px var(--main-color);
    margin-bottom: 16px;
}

section.work-schedule .schedule-wrapper .text-area .schedule-cont .cont::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-glay);
}

section.work-schedule .schedule-wrapper .text-area .schedule-cont .cont p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--main-color);
}

section.work-schedule .schedule-wrapper .text-area .schedule-cont .cont .time {
    font-family: var(--Montserrat);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

/*tb*/
@media (max-width:1024px) {
    section.work-schedule {
        padding-top: 60px;
    }

    section:is(.work-schedule01, .work-schedule03) .schedule-wrapper {
        margin: auto;
    }

    section.work-schedule02 .schedule-wrapper {
        margin: auto;
    }


    section:is(.work-schedule01, .work-schedule02, .work-schedule03) .schedule-wrapper>* {
        flex-direction: column;
    }

    section.work-schedule .schedule-wrapper figure {
        width: 100%;
        max-width: 750px;
        margin: auto;
    }

    section.work-schedule .schedule-wrapper .text-area {
        width: 100%;
        margin-top: 32px;
    }
}

/*sp*/
@media (max-width:767px) {
    section.work-schedule {
        padding-top: 0;
    }

    section.work-schedule+section.work-schedule {
        padding-top: 60px;
    }

    section.work-schedule03 {
        padding-bottom: 60px;
        border-bottom: 1px solid var(--border-glay);
    }

    section:is(.work-schedule01, .work-schedule02, .work-schedule03) .schedule-wrapper {
        width: 100%;
    }

    section.work-schedule .schedule-wrapper .text-area {
        width: calc((335 / 375) * 100%);
        margin: 32px auto 0;
    }

    section.work-schedule .schedule-wrapper .text-area .hd-area h2 {
        font-size: 20px;
    }

    section.work-schedule .schedule-wrapper .text-area .hd-area p {
        font-size: 14px;
        margin-top: 20px;
    }

    section.work-schedule .schedule-wrapper .text-area .schedule-cont h3 {
        margin-bottom: 18px;
    }

    section.work-schedule .schedule-wrapper .text-area .schedule-cont {
        margin-top: 20px;
    }
}

/*skillup*/
section.work-skillup {
    padding-top: 120px;
    background-color: #FFF;
}

section.work-skillup .cont-area .hd-area {
    position: relative;
    z-index: 1;
}

section.work-skillup .cont-area .hd-area .hd-deco {
    width: fit-content;
    font-family: var(--ZenOldMincho);
    font-size: 20px;
    font-weight: 400;
    color: #FFF;
    letter-spacing: -0.06em;
    padding: 5px 12px;
    background-color: var(--main-color);
}

section.work-skillup .cont-area .hd-area h2 {
    font-family: var(--ZenOldMincho);
    font-size: 42px;
    font-weight: 400;
    color: var(--main-color);
    letter-spacing: -0.06em;
    line-height: calc(60 / 42);
    margin-top: 19px;
}

section.work-skillup .cont-area .hd-area .deco-text {
    position: absolute;
    z-index: -1;
    top: -33px;
    right: 0;
    font-family: var(--Montserrat);
    font-size: 112px;
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
    color: #EFF2F4;
}

section.work-skillup .cont-area .skillup-list {
    margin-top: 48px;
}

section.work-skillup .cont-area .skillup-list>* {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

section.work-skillup .cont-area .skillup-list .cont {
    position: relative;
    z-index: 1;
    padding: 0 50px;
    overflow: hidden;
}

section.work-skillup .cont-area .skillup-list .cont::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    z-index: -1;
    top: 50%;
    right: calc(((249 / 325) * 50%) * -1);
    width: calc((249 / 325) * 100%);
    height: 100%;
    background: url(/wp-content/uploads/2026/03/work_skillup_bg.png) no-repeat center / cover;
}

section.work-skillup .cont-area .skillup-list .cont :is(h3, p) {
    position: relative;
    z-index: 2;
}

section.work-skillup .cont-area .skillup-list .cont h3 {
    font-family: var(--ZenOldMincho);
    font-size: clamp(18px, 1.76vw, 24px);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--main-color);
}

section.work-skillup .cont-area .skillup-list .cont p {
    font-size: clamp(13px, 1.17vw, 16px);
    font-weight: 600;
    line-height: 2.0;
    letter-spacing: 0.12em;
    margin-top: 20px;
}

section.work-skillup .cont-area .annotation {
    display: flex;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin: 13px 0 0 38px;
}

section.work-skillup .cont-area .annotation::before {
    content: "※";
}

/*tb*/
@media (max-width:1024px) {
    section.work-skillup .cont-area .hd-area .hd-deco {
        font-size: 16px;
        padding: 5px 12px;
    }

    section.work-skillup .cont-area .hd-area h2 {
        font-size: 30px;
        line-height: calc(42 / 30);
        margin-top: 8px;
        margin-bottom: 20px;
    }

    section.work-skillup .cont-area .skillup-list .cont {
        padding: 0 20px;
    }

}

/*sp*/
@media (max-width:767px) {
    section.work-skillup {
        padding-top: 60px;
    }

    section.work-skillup .cont-area {
        width: 100%;
    }

    section.work-skillup .cont-area .skillup-list>* {
        grid-template-columns: repeat(1, 1fr);
    }

    section.work-skillup .cont-area .hd-area {
        width: calc((335 / 375) * 100%);
        margin: auto;
    }

    section.work-skillup .cont-area .hd-area .deco-text {
        bottom: -43px;
        top: initial;
        right: 0;
        font-size: 56px;
    }

    section.work-skillup .cont-area .skillup-list {
        display: block;
        margin-top: 21px;
        padding-left: 20px;
    }

    section.work-skillup .cont-area .skillup-list .cont {
        padding: 24px 36px 34px 0;
    }

    section.work-skillup .cont-area .skillup-list .cont::after {
        transform: initial;
        top: initial;
        right: 0;
        bottom: 0;
        width: calc((180 / 355) * 100%);
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(/wp-content/uploads/2026/03/sp_work_skliup_bg.png) no-repeat center / 100%;
    }

    section.work-skillup .cont-area .skillup-list .cont h3 {
        font-family: 20px;
    }

    section.work-skillup .cont-area .skillup-list .cont p {
        font-size: 14px;
        margin-top: 12px;
    }

    section.work-skillup .cont-area .annotation {
        width: calc((335 / 375) * 100%);
        margin: 13px auto 0;
    }

}

/*qualification*/
section.work-qualification {
    padding: 80px 0 120px;
    background-color: #FFF;
}

section.work-qualification .cont-area>* {
    display: flex;
    justify-content: space-between;
}

section.work-qualification .cont-area .text-area h2 {
    font-family: var(--ZenOldMincho);
    font-size: 42px;
    font-weight: 400;
    color: var(--main-color);
    letter-spacing: -0.06em;
    line-height: calc(60 / 42);
}

section.work-qualification .cont-area .text-area p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 2.0;
    margin-top: 44px;
}

/*tb*/
@media (max-width:1024px) {
    section.work-qualification .cont-area>* {
        display: block;
    }

    section.work-qualification .cont-area .text-area {
        width: 100%;
    }

    section.work-qualification .cont-area .text-area h2 {
        font-size: 30px;
        line-height: calc(42 / 30);
    }

    section.work-qualification .cont-area .text-area p {
        font-size: 14px;
        margin-top: 20px;
    }
}

/*sp*/
@media (max-width:767px) {
    section.work-qualification {
        padding: 48px 0 64px;
    }
}


/*======================
interview
=======================*/
section.interview-cont {
    position: relative;
    background-color: var(--under-bg);
    transform: translateZ(1px);
    -webkit-transform: translateZ(1px);
}

section.interview-cont .cont-area .hd-area {
    width: fit-content;
    color: var(--main-color);
    margin: 0 auto 64px;
}

section.interview-cont .cont-area.flex .hd-area {
    margin: 0 0 64px;
}

section.interview-cont .cont-area.flex {
    display: flex;
    justify-content: space-between;
}

section.interview-cont .cont-area.flex .hd-area {
    width: calc((400 / 1240) * 100%);
}

section.interview-cont .cont-area .hd-area .hd-deco {
    width: fit-content;
    font-family: var(--ZenOldMincho);
    font-size: 96px;
    font-weight: 400;
    letter-spacing: -0.06em;
    margin: 0 auto 16px;
    border-bottom: solid 1px var(--main-color);
}

section.interview-cont .cont-area.flex .hd-area .hd-deco {
    margin: 0 0 16px 0;
}

section.interview-cont .cont-area .hd-area h2 {
    font-family: var(--ZenOldMincho);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.06em;
}

section.interview-cont .cont-area .cont.flex {
    display: flex;
    justify-content: space-between;
}

section.interview-cont .cont-area.flex .text-area {
    width: calc((762 / 1240) * 100%);
}

section.interview-cont .cont-area .cont.flex .text-area {
    width: calc((587 / 1240) * 100%);
}

section.interview-cont .cont-area .text-area h3 {
    width: fit-content;
    font-family: var(--ZenOldMincho);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.06em;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: solid #262626 1px;
}

section.interview-cont .cont-area .text-area p {
    font-size: 16px;
    font-weight: 600;
    line-height: 2.0;
    color: #262626;
    letter-spacing: 0.12em;
}

section.interview-cont .cont-area .cont.flex figure {
    width: calc((587 / 1240) * 100%);
    aspect-ratio: 1 / 1;
}

section.interview-cont .cont-area .cont.flex figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
}

section.interview-cont01 {
    z-index: 2;
    padding-top: 120px;
}

section.interview-cont02 {
    z-index: 3;
    padding-top: 115px;
}

section.interview-cont03 {
    z-index: 4;
    padding-top: 120px;
}

section.interview-cont04 {
    z-index: 5;
    padding-top: 120px;
}

.interview_bg {
    position: sticky;
    z-index: 1;
    top: 0;
    margin-top: 120px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
}

/*tb*/
@media (max-width:1024px) {
    section.interview-cont .cont-area.flex {
        display: block;
    }

    section.interview-cont :is(.cont-area, .cont-area.flex) .hd-area {
        margin: 0 auto 32px;
    }

    section.interview-cont .cont-area .cont.flex {
        display: block;
    }

    section.interview-cont :is(.cont-area, .cont-area.flex) .text-area {
        width: 100% !important;
    }

    section.interview-cont :is(.cont-area, .cont-area.flex) .hd-area .hd-deco {
        font-size: 64px;
        padding-bottom: 4px;
        margin: 0 auto 12px;
    }

    section.interview-cont .cont-area.flex .hd-area {
        width: 100%;
    }

    section.interview-cont .cont-area .hd-area h2 {
        font-size: 20px;
        text-align: center;
    }

    section.interview-cont .cont-area .text-area h3 {
        width: 100%;
        font-size: 16px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    section.interview-cont .cont-area .text-area p {
        font-size: 14px;
    }

    section.interview-cont .cont-area .cont.flex figure {
        width: 80%;
        margin: 28px auto 0;
    }
}

/*sp*/
@media (max-width:767px) {
    section.interview-cont {
        padding-top: 60px !important;
    }

    section.interview-cont .cont-area .cont.flex figure {
        width: 100%;
    }

    .interview_bg {
        margin-top: 60px;
    }
}

/*interview-link*/
section.interview-link {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    background-color: var(--under-bg);
    transform: translateZ(1px);
    -webkit-transform: translateZ(1px);
}

section.interview-link .cont-area {
    width: 100%;
    padding: 79px 0;
    border-top: 1px solid var(--border-glay);
    border-bottom: 1px solid var(--border-glay);
}

section.interview-link .cont-area .wrapper {
    width: calc((1240 / 1366) * 100%);
    max-width: 1920px;
    margin: auto;
}

section.interview-link .cont-area .wrapper>* {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc((64 / 1366) * 100%);
}

section.interview-link .cont-area .link-cont {
    position: relative;
    display: flex;
    align-items: center;
    gap: calc((24 / 587) * 100%);
    padding-right: 48px;
    transition: 0.3s ease-in-out;
}

@media (any-hover:hover) {
    section.interview-link .cont-area a.link-cont:hover {
        opacity: 0.75;
    }
}

section.interview-link .cont-area .link-cont::after {
    content: "";
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    right: 0;
    width: 38px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: url(images/common/arrow-w.webp) no-repeat #BBD0D9 calc(50% + 1.5px) 50%/ 8.5px;
    transition: 0.3s ease-in-out;
    pointer-events: none;
}

section.interview-link .cont-area a.link-cont::after {
    background-color: var(--main-color);
}

@media (any-hover:hover) {
    section.interview-link .cont-area a.link-cont:hover::after {
        translate: 8px 0;
    }
}

section.interview-link .cont-area .link-cont img {
    width: 100px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
}

section.interview-link .cont-area .link-cont .text-area {
    width: calc(100% - ((24 / 587) * 100%) - 100px);
    color: #737886;
}

section.interview-link .cont-area a.link-cont .text-area {
    color: var(--main-color);
}

section.interview-link .cont-area .link-cont .text-area .hd-deco {
    font-family: var(--Montserrat);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

section.interview-link .cont-area .link-cont .text-area h2 {
    font-family: var(--ZenOldMincho);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.06em;
    margin-top: 8px;
}

/*tb*/
@media (max-width:1024px) {
    section.interview-link .cont-area .wrapper>* {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px 0;
    }
}

/*sp*/
@media (max-width:767px) {
    section.interview-link {
        padding-top: 60px;
    }

    section.interview-link .cont-area {
        padding: 40px 0;
    }

    section.interview-link .cont-area .wrapper {
        width: calc((335 / 375) * 100%);
    }

    section.interview-link .cont-area .wrapper>* {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px 0;
    }

    section.interview-link .cont-area .link-cont {
        gap: 12px;
    }


    section.interview-link .cont-area .link-cont img {
        width: 64px;
        border-radius: 12px;
    }

    section.interview-link .cont-area .link-cont .text-area {
        width: calc(100% - 76px);
    }

    section.interview-link .cont-area .link-cont .text-area h2 {
        font-size: 12px;
    }
}

/*======================
discussion
=======================*/
.under-page.page-discussion .hd-area h2.hd {
    font-family: var(--ZenOldMincho);
    font-size: 42px;
    font-weight: 400;
    color: var(--main-color);
    letter-spacing: 0.06em;
    line-height: calc(64 / 42);
}

.under-page.page-discussion .hd-area h2.hd span {
    display: inline-block;
    color: #FFF;
    margin-right: 4px;
    padding: 3px 10px;
    border-radius: 4px;
    background-color: var(--main-color);
}

/*sp*/
@media (max-width:767px) {
    .under-page.page-discussion .hd-area h2.hd {
        font-size: 30px;
        line-height: calc(42 / 30);
        white-space: nowrap;
    }

    .under-page.page-discussion .hd-area h2.hd span {
        margin-right: 5px;
    }
}

/*proflie*/
section.discussion-profile {
    padding: 120px 0;
}

section.discussion-profile .hd-area {
    display: flex;
    justify-content: space-between;
}

section.discussion-profile .hd-area .read-text {
    width: calc((587 / 1240) * 100%);
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 2.0;
    letter-spacing: 0.12em;
}

/*tb*/
@media (max-width:1024px) {
    section.discussion-profile .hd-area {
        display: block;
        justify-content: space-between;
    }

    section.discussion-profile .hd-area .read-text {
        width: 100%;
        font-size: 14px;
        margin-top: 21px;
    }
}

/*sp*/
@media (max-width:767px) {
    section.discussion-profile {
        padding: 60px 0 80px;
    }
}

/*profile cont*/
section.discussion-profile .cont {
    position: relative;
    margin-top: 50px;
    padding: 48px calc((64 / 1240) * 100%);
    border-radius: 8px;
    border: 1px solid var(--main-color);
}

section.discussion-profile .cont h3 {
    position: absolute;
    transform: translateX(-50%);
    top: -9px;
    left: 50%;
    font-family: var(--Montserrat);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--main-color);
    padding: 0 16px;
    background: var(--under-bg);
}

section.discussion-profile .profile-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc((32 / 1110) * 100%);
}

section.discussion-profile .profile-wrapper figure img {
    width: 120px;
    aspect-ratio: 1 / 1;
    margin: auto;
}

section.discussion-profile .profile-wrapper .name-area {
    color: var(--main-color);
    margin-top: 16px;
    text-align: center;
}

section.discussion-profile .profile-wrapper .name {
    font-family: var(--ZenOldMincho);
    font-size: clamp(16px, 1.46vw, 20px);
    font-weight: 400;
    letter-spacing: -0.06em;
}

section.discussion-profile .profile-wrapper .since {
    font-size: clamp(12px, 1.02vw, 14px);
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

section.discussion-profile .profile-wrapper p.text {
    font-size: 14px;
    font-weight: 600;
    line-height: 2.0;
    letter-spacing: 0.12em;
    color: var(--main-color);
    margin-top: 20px;
}

/*tb*/
@media (max-width:1024px) {
    section.discussion-profile .profile-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/*sp*/
@media (max-width:767px) {
    section.discussion-profile .cont {
        margin-top: 30px;
        padding: 28px calc((20 / 335) * 100%);
    }

    section.discussion-profile .profile-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    section.discussion-profile .profile-wrapper .img-name>* {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    section.discussion-profile .profile-wrapper figure img {
        width: 60px;
    }

    section.discussion-profile .profile-wrapper .name-area {
        margin-top: 0;
        text-align: start;
    }

    section.discussion-profile .profile-wrapper .since {
        margin-top: 5px;
    }

    section.discussion-profile .profile-wrapper p.text {
        font-size: 12px;
        margin-top: 12px;
    }
}

/*discussion theme*/
section.discussion-theme {
    background-color: #FFF;
}

section.discussion-theme+section.discussion-theme {
    padding-top: 120px;
}

section.discussion-theme .theme-header {
    position: relative;
    margin-bottom: 80px;
    padding-top: 80px;
    background-image: linear-gradient(to bottom, #0081BA 0%, transparent 100%);
}

section.discussion-theme .theme-header figure img {
    border-radius: 24px;
}

section.discussion-theme .theme-header .header-text {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 40px;
    width: calc((1158 / 1366) * 100%);
    max-width: 1500px;
    padding: 15px calc((33 / 1366) * 100%) 15px;
    background-color: rgba(39, 124, 196, 0.6);
    border-radius: 8px;
}

section.discussion-theme .theme-header .header-text {
    display: flex;
    align-items: center;
}

section.discussion-theme .theme-header .header-text .hd-area {
    position: relative;
    padding-right: 32px;
    margin-right: 32px;
}

section.discussion-theme .theme-header .header-text .hd-area::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    width: 0.5px;
    height: 100%;
    max-height: 80px;
    background-color: #FFF;
}

section.discussion-theme .theme-header .header-text .hd-area>* {
    display: flex;
    align-items: center;
}

section.discussion-theme .theme-header .header-text .hd-area .num {
    font-family: var(--Montserrat);
    font-size: clamp(30px, 4.69vw, 64px);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #FFF;
    text-align: center;
    margin-top: 15px;
}

section.discussion-theme .theme-header .header-text .hd-area .num span {
    display: block;
    font-size: clamp(10px, 1.02vw, 64px);
    margin-bottom: -13px;
}

section.discussion-theme .theme-header .header-text .hd-area .hd {
    font-size: 32px;
    color: #FFF;
    white-space: nowrap;
    margin-left: 25px;
}

section.discussion-theme .theme-header .header-text .hd-area .hd span {
    color: var(--main-color);
    background-color: #FFF;
}

section.discussion-theme .theme-header .header-text .read-text p.text {
    font-family: var(--ZenOldMincho);
    font-size: clamp(16px, 1.46vw, 20px);
    font-weight: 400;
    color: #FFF;
    line-height: calc(32 / 20);
    letter-spacing: -0.06em;
    margin-bottom: 7px;
}

section.discussion-theme .theme-header .header-text .read-text p.name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #FFF;
}

section.discussion-theme .theme-header .header-text .read-text p.name::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background-color: #FFF;
}

/*tb*/
@media (max-width:1024px) {
    section.discussion-theme .theme-header figure img {
        border-radius: 24px 24px 0 0;
    }

    section.discussion-theme .theme-header .header-text {
        position: static;
        transform: translateX(0);
        width: calc((1240 / 1366) * 100%);
        margin: auto;
        padding: 24px;
        background-color: var(--main-color);
        border-radius: 0 0 24px 24px;
    }

    section.discussion-theme .theme-header .header-text {
        display: block;
    }

    section.discussion-theme .theme-header .header-text .hd-area {
        padding: 0 0 16px 0;
        margin: 0 0 12px 0;
        border-bottom: 1px solid #FFF;
    }

    section.discussion-theme .theme-header .header-text .hd-area::after {
        content: none;
    }

    section.discussion-theme .theme-header .header-text .hd-area>* {
        display: flex;
        align-items: center;
    }

    section.discussion-theme .theme-header .header-text .hd-area .num {
        margin-top: 0;
    }
}

/*sp*/
@media (max-width:767px) {
    section.discussion-theme+section.discussion-theme {
        padding-top: 60px;
    }

    section.discussion-theme .theme-header {
        padding-top: 48px;
        margin-bottom: 30px
    }

    section.discussion-theme .theme-header figure img {
        border-radius: 12px 12px 0 0;
    }

    section.discussion-theme .theme-header .header-text {
        width: calc((335 / 375) * 100%);
        padding: 24px 20px 20px;
        border-radius: 0 0 12px 12px;
    }

    section.discussion-theme .theme-header .header-text .hd-area>* {
        display: block;
    }

    section.discussion-theme .theme-header .header-text .hd-area .num span {
        margin-bottom: 0;
    }

    section.discussion-theme .theme-header .header-text .hd-area .hd {
        font-size: 20px;
        line-height: calc(36 / 20);
        margin-top: 7px;
        margin-left: 0;
        text-align: center;
    }

    section.discussion-theme .theme-header .header-text .hd-area .hd span {
        line-height: 1.5;
    }

    section.discussion-theme .theme-header .header-text .read-text p.text {
        line-height: 2.0;
        text-align: center;
        margin-bottom: 4px;
    }

    section.discussion-theme .theme-header .header-text .read-text p.name {
        width: fit-content;
        margin: auto;
    }
}

/*theme-cont*/
section.discussion-theme04 {
    padding-bottom: 120px;
}

section.discussion-theme .theme-cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: calc((952 / 1366) * 100%);
    max-width: 1600px;
    margin: auto;
}

section.discussion-theme .theme-cont+.theme-cont {
    margin-top: 32px;
}

section.discussion-theme .theme-cont .img-area {
    width: 80px;
    text-align: center;
}

section.discussion-theme .theme-cont .img-area p {
    font-size: 14px;
    font-weight: 600;
    color: #53565C;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

section.discussion-theme .theme-cont .serif {
    position: relative;
    width: calc(100% - 80px - 32px - 40px);
    font-size: 16px;
    font-weight: 600;
    line-height: 2.0;
    color: #53565C;
    padding: 28px calc((32 / 952) * 100%);
    background-color: var(--under-bg);
    border-radius: 8px;
}

section.discussion-theme .theme-cont .serif::after {
    content: "";
    position: absolute;
    top: 24px;
    width: 12px;
    aspect-ratio: 1 / 1;
    background-color: var(--under-bg);
}

section.discussion-theme .theme-cont .serif.left {
    margin-right: 40px;
}

section.discussion-theme .theme-cont .serif.left::after {
    left: -12px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

section.discussion-theme .theme-cont .serif.right {
    margin-left: 40px;
}

section.discussion-theme .theme-cont .serif.right::after {
    right: -12px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/*tb*/
@media (max-width:1024px) {
    section.discussion-theme .theme-cont {
        width: calc((1240 / 1366) * 100%);
    }
}

/*sp*/
@media (max-width:767px) {
    section.discussion-theme04 {
        padding-bottom: 60px;
    }

    section.discussion-theme .theme-cont {
        width: calc((335 / 375) * 100%);
    }

    section.discussion-theme .theme-cont+.theme-cont {
        margin-top: 16px;
    }

    section.discussion-theme .theme-cont .img-area {
        width: 40px;
    }

    section.discussion-theme .theme-cont .img-area p {
        font-size: 12px;
        margin-top: 5px;
    }

    section.discussion-theme .theme-cont .serif {
        position: relative;
        width: calc(100% - 40px - 16px);
        font-size: 14px;
        padding: 16px 20px;
        border-radius: 8px;
    }

    section.discussion-theme .theme-cont .serif:is(.right, .left) {
        margin: 0;
    }

    section.discussion-theme .theme-cont .serif::after {
        top: 20px;
        width: 8px;
    }

    section.discussion-theme .theme-cont .serif.left::after {
        left: -8px;
    }

    section.discussion-theme .theme-cont .serif.right::after {
        right: -8px;
    }
}

/*======================
benefits
=======================*/
#page.page-benefits section.benefits_wrapepr {
    background-color: #FFF;
}

#page.page-benefits section.benefits_cont+section.benefits_cont {
    margin-top: 60px;
}

#page.page-benefits section.benefits_cont {
    width: 100%;
}

#page.page-benefits section.benefits_cont .cont-area {
    padding: 120px calc((120 / 1366) * 100%) 116px;
    border-radius: 24px;
}

#page.page-benefits section .sec_header .hd-area {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid #FFF;
}

#page.page-benefits section .sec_header .hd-area h3 {
    font-family: var(--ZenOldMincho);
    color: #FFF;
    font-size: clamp(30px, 3.18vw, 42px);
    font-weight: 400;
    letter-spacing: -0.06em;
}

#page.page-benefits section .sec_header .hd-area .hd-deco {
    position: absolute;
    z-index: -1;
    transform: translateX(-50%);
    bottom: 59%;
    left: 50%;
    font-family: var(--Montserrat);
    font-size: clamp(32px, 4.54vw, 60px);
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/*tb*/
@media (max-width:1024px) {
    #page.page-benefits section.benefits_wrapepr {
        padding-top: 60px;
    }

    #page.page-benefits section.benefits_cont+section.benefits_cont {
        margin-top: 30px;
    }
}

/*sp*/
@media (max-width:767px) {
    #page.page-benefits section.benefits_cont .cont-area {
        padding: 48px calc((20 / 375) * 100%) 24px;
        border-radius: 12px;
    }

    #page.page-benefits section .sec_header .hd-area {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    #page.page-benefits section .sec_header .hd-area .hd-deco {
        line-height: calc(39 / 32);
        transform: translate(-50%, -50%);
        top: calc(50% - 12px);
        bottom: initial;
    }

}

/*number*/
#page.page-benefits section#number.benefits_cont .cont-area {
    background-color: var(--main-color);
}

#page.page-benefits section#number .sec_header .hd-area .hd-deco {
    color: #1567AC;
}

#page.page-benefits section#number .cont-wrapper>* {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: calc((32 / 1000) * 100%);
}

#page.page-benefits section#number .cont-wrapper .num-cont {
    color: #fff;
}

#page.page-benefits section#number .cont-wrapper .num-cont .cont-top {
    font-family: var(--ZenOldMincho);
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.03em;
}

#page.page-benefits section#number .cont-wrapper .num-cont .cont-top span {
    display: inline-block;
    font-size: calc((60 / 24) * 1.0em);
    margin-top: -7px;
}

#page.page-benefits section#number .cont-wrapper .num-cont .cont-bottom {
    font-size: clamp(14px, 1.17vw, 24px);
    font-weight: 600;
    line-height: 2.0;
    letter-spacing: 0.12em;
    margin-top: 20px;
}

/*tb*/
@media (max-width:1024px) {
    #page.page-benefits section#number .cont-wrapper>* {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 40px;
    }
}

/*sp*/
@media (max-width:767px) {
    #page.page-benefits section#number .cont-wrapper>* {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 40px;
    }

    #page.page-benefits section#number .cont-wrapper .num-cont .cont-bottom {
        margin-top: 4px;
    }
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper>* {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont {
    display: flex;
    align-items: center;
    padding: 54px 48px;
    border-radius: 12px;
    background-color: #FFF;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.s {
    width: calc((100% - 16px) / 3);
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.m {
    width: calc((100% - 8px) / 2);
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.l {
    width: 100%;
    padding: 44px 48px;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont>* {
    display: flex;
    align-items: center;
    gap: 12px;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.l>* {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.l .hd>* {
    display: flex;
    align-items: center;
    gap: 12px;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont h3 {
    font-family: var(--ZenOldMincho);
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 400;
    letter-spacing: -0.03em;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont .img-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont .img-area img {
    height: 32px;
    object-fit: contain;
}

#page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.l .text {
    width: calc((606 / 807) * 100%);
    font-weight: 600;
    font-size: 16px;
    line-height: 2.0;
    letter-spacing: 0.12em;
    color: #53565C;
}

/*tb*/
@media (max-width:1024px) {
    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.s {
        width: 100%;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.m {
        width: 100%;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.l>* {
        display: block;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.l .text {
        width: 100%;
        margin-top: 6px;
    }
}

/*sp*/
@media (max-width:767px) {
    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper>* {
        gap: 5px;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont {
        padding: 20px !important;
        border-radius: 6px;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont>* {
        gap: 8px;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.l .hd>* {
        gap: 8px;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont .img-area {
        width: 24px;
        height: 24px;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont .img-area img {
        height: 24px;
    }

    #page.page-benefits section:is(#allowance, #system).benefits_cont .cont-area .cont-wrapper .cont.l .text {
        font-size: 14px;
    }

}

/*allowance*/
#page.page-benefits section#allowance.benefits_cont .cont-area {
    background-color: #37B0DD;
}

#page.page-benefits section#allowance .sec_header .hd-area .hd-deco {
    color: #179ACB;
}

#page.page-benefits section#allowance.benefits_cont .cont-area .cont-wrapper .cont h3 {
    color: #37B0DD;
}

@media (max-width:767px) {
    #page.page-benefits section#allowance .sec_header .hd-area .hd-deco {
        top: calc(50% - 31px);
        color: #179ACB;
    }
}


/*system*/
#page.page-benefits section#system {
    padding-bottom: 120px;
}

#page.page-benefits section#system.benefits_cont .cont-area {
    background-color: var(--sub-color);
}

#page.page-benefits section#system .sec_header .hd-area .hd-deco {
    color: #55B518;
}

#page.page-benefits section#system.benefits_cont .cont-area .cont-wrapper .cont h3 {
    color: var(--sub-color);
}

@media (max-width:767px) {
    #page.page-benefits section#system {
        padding-bottom: 60px;
    }
}


/*======================
requirements
=======================*/
section.requirements-message {
    padding-top: 80px;
    background: #FFF;
}

section.requirements-message p{
    width: calc((1240 / 1366) * 100%);
    max-width: 800px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #ff2b2b;
    margin: auto;
    padding: 50px 20px;
    border: solid 1px #eded;
    border-radius: 15px;
}

section.requirements-table {
    padding: 120px 0;
    background-color: #FFF;
}

section.requirements-table .wrapper>* {
    display: grid;
    grid-template-columns: auto 1fr;
    width: calc((1240 / 1366) * 100%);
    max-width: 800px;
    margin: -32px auto 0;
}

section.requirements-table :is(.th, .td) {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

section.requirements-table .th {
    color: var(--main-color);
    padding: 32px 90px 32px 0;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-glay);
}

section.requirements-table .td {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-glay);
}

section.requirements-table .td ul+p:not(.annotation) {
    margin-top: 0.75em;
}

section.requirements-table .td p.annotation+ul {
    margin-top: 0.25em;
}

section.requirements-table .td ul li {
    display: flex;
}

section.requirements-table .td ul li::before {
    content: "・";
}

section.requirements-table .td .annotation {
    font-size: 0.8em;
    font-width: 500;
}

section.requirements-table .td .annotation::before {
    content: "※";
}

/*sp*/
@media (max-width:767px) {
    section.requirements-table {
        padding: 60px 0;
    }

    section.requirements-table .wrapper>* {
        display: block;
        width: calc((335 / 375) * 100%);
        margin-top: -24px;
    }


    section.requirements-table :is(.th, .td) {
        font-size: 14px;
    }

    section.requirements-table .th {
        padding: 24px 0 0 0;
        border-bottom: 0;
    }

    section.requirements-table .td {
        padding: 8px 0 24px;
    }

}

/*======================
recruit cta
=======================*/
section.recruit-cta {
    position: relative;
    z-index: 3;
    padding: 60px 0 120px;
    background-color: var(--under-bg) !important;
    transform: translateZ(1px);
    -webkit-transform: translateZ(1px);
}

section.recruit-cta .cont-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc((64 / 1240) * 100%);
}

section.recruit-cta a {
    position: relative;
    display: block;
    padding: 64px 64px calc((222 / 587) * 100%);
    border-radius: 24px;
    overflow: hidden;
}

section.recruit-cta a span {
    position: absolute;
    right: 64px;
    bottom: 64px;
    width: 38px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

section.recruit-cta a.requirements-link {
    background: url(/wp-content/uploads/2026/02/recruit_cta1.jpg) #FFF no-repeat bottom / 100%;
}

section.recruit-cta a.requirements-link span {
    background: url(images/common/arrow-w.webp) no-repeat var(--main-color) calc(50% + 1.5px) 50%/ 8.5px;
    transition: 0.3s ease-in-out;
}

section.recruit-cta a.entry-link {
    background: url(/wp-content/uploads/2026/02/recruit_cta2.png) var(--main-color) no-repeat calc(100% + 40px) calc(100% + 6px)/ calc((423 / 587) * 100%);
}

section.recruit-cta a.entry-link span {
    background: url(images/common/arrow-b.webp) no-repeat #FFF calc(50% + 1.5px) 50%/ 8.5px;
    transition: 0.3s ease-in-out;
}

@media (any-hover:hover) {
    section.recruit-cta a:hover span {
        translate: 10px 0;
    }
}

section.recruit-cta a.requirements-link :is(h2, p, p.read-text) {
    color: var(--main-color);
}

section.recruit-cta a.entry-link :is(h2, p, p.read-text) {
    color: #FFF;
}

/*tb*/
@media (max-width:1024px) {
    section.recruit-cta {
        padding: 60px 0 120px;
    }

    section.recruit-cta .cont-area {
        display: block;
    }

    section.recruit-cta a {
        aspect-ratio: 4/3;
        padding: 40px 40px 0;
    }

    section.recruit-cta a+a {
        margin-top: 32px;
    }

    section.recruit-cta a span {
        right: 40px;
        bottom: 40px;
    }

}

/*sp*/
@media (max-width:767px) {
    section.recruit-cta {
        padding: 60px 0 60px;
    }

    section.recruit-cta a {
        aspect-ratio: 1/1;
        padding: 40px 40px 0;
    }

    section.recruit-cta a span {
        right: 40px;
        bottom: 40px;
    }

    section.recruit-cta a.entry-link {
        background: url(/wp-content/uploads/2026/02/recruit_cta2.png) var(--main-color) no-repeat calc(100% + 115px) calc(100% + 6px) / calc((376 / 335) * 100%);
    }
}

/*======================
フォーム関連
=======================*/
section.entry-form {
    padding: 120px 0 0;
    background-color: #FFF;
}

section.entry-form .cont-wrapper {
    width: calc((1240 / 1366) * 100%);
    max-width: 800px;
    margin: auto;
}

/*sp*/
@media (max-width:767px) {
    section.entry-form {
        padding: 60px 0 0;
    }
}

/*ステータス*/
section.entry-form .cont-wrapper .status-area {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 48px;
}

section.entry-form .cont-wrapper .status-area .status-cont span {
    position: relative;
    display: block;
    width: 32px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #EEF2F4;
}

section.entry-form .cont-wrapper .status-area .status-cont.current span {
    background-color: var(--main-color);
    border: solid 8px #EEF2F4;
}

section.entry-form .cont-wrapper .status-area .status-cont.completion span {
    background: url(images/common/check-w.webp) var(--main-color) no-repeat 50% calc(50% + 1px) / 13px;
}

section.entry-form .cont-wrapper .status-area .status-cont+span {
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 15px;
    border-radius: 4px;
    background-color: #EEF2F4;
}

section.entry-form .cont-wrapper .status-area .status-cont.completion:not(:last-of-type)+span {
    background-color: var(--main-color);
}

section.entry-form .cont-wrapper .status-area .status-cont p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #BBD0D9;
    text-align: center;
    margin-top: 5px;
}

section.entry-form .cont-wrapper .status-area .status-cont.current p {
    color: #53565C;
}

section.entry-form .cont-wrapper .status-area .status-cont.completion p {
    color: var(--main-color);
}

/*sp*/
@media (max-width:767px) {
    section.entry-form .cont-wrapper .status-area {
        margin: 0 auto 24px;
    }
}

/*form*/
section.entry-form .cont-wrapper .form-cont_area .cont {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

section.entry-form .cont-wrapper .form-cont_area .cont br{
	display:none;
}

section.entry-form .cont-wrapper .form-cont_area h3 {
    width: calc((160 / 800) * 100%);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--main-color);
    white-space: nowrap;
}

section.entry-form .cont-wrapper .form-cont_area h3+ :is(p, .free-wrapper) {
    width: calc(100% - ((160 / 800) * 100%));
}

section.entry-form .cont-wrapper .form-cont_area :is(input, textarea) {
    font-size: 16px;
    font-weight: 600;
    color: #53565C;
    letter-spacing: 0.12em;
}

section.entry-form .cont-wrapper .form-cont_area :is(input[type="text"], textarea) {
    padding: 1.0em 0.75em;
    background-color: #EEF2F4;
    border-radius: 8px;
    width: 100%;
    height: 72px;
    border: none;
}

section.entry-form .cont-wrapper .form-cont_area textarea {
    resize: none;
    overflow: auto;
}

section.entry-form .cont-wrapper .form-cont_area input+span {
    font-size: 16px;    
    color: #53565C;
    letter-spacing: 0.12em;
}

section.entry-form .cont-wrapper .form-cont_area span.error {
    color: #cc0303;
}

section.entry-form .cont-wrapper .form-cont_area .age-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #53565C;
    letter-spacing: 0.12em;
}

section.entry-form .cont-wrapper .form-cont_area .age-wrapper input {
    width: 120px;
}

section.entry-form .cont-wrapper .form-cont_area .age-wrapper span:not(.error) {
    order: 2;
}

section.entry-form .cont-wrapper .form-cont_area .age-wrapper span.error {
    width: 100%;
    order: 3;
}

section.entry-form .cont-wrapper .form-cont_area .free-wrapper {
    position: relative;
}

section.entry-form .cont-wrapper .form-cont_area .free-wrapper .annotation {
    display: flex;
    position: absolute;
    bottom: -18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #53565C;
}

section.entry-form .cont-wrapper .form-cont_area .free-wrapper .annotation::before {
    content: "※";
}

/*ラジオボタンレイアウト*/
section.entry-form .cont-wrapper .form-cont_area .radio-wrapper {
    display: flex;
    flex-wrap: wrap;
}

section.entry-form .cont-wrapper .form-cont_area .radio-wrapper p.error {
    width: 100%;
}

section.entry-form .cont-wrapper .form-cont_area .radio-wrapper .horizontal-item+.horizontal-item {
    margin-left: 32px;
}

/*ラジオボタン変更*/
section.entry-form .cont-wrapper .form-cont_area .mwform-radio-field input[type="radio"] {
    position: absolute;
    margin: 0;
    opacity: 0
}

section.entry-form .cont-wrapper .form-cont_area .mwform-radio-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

section.entry-form .cont-wrapper .form-cont_area .mwform-radio-field label::before {
    content: "";
    width: 40px;
    aspect-ratio: 1 / 1;
    background: #EEF2F4;
    border-radius: 50%;
}

section.entry-form .cont-wrapper .form-cont_area .mwform-radio-field input[type="radio"]:checked {
    opacity: 1.0;
}

section.entry-form .cont-wrapper .form-cont_area .mwform-radio-field input[type="radio"] {
    position: absolute;
    left: 14px;
    opacity: 0;
}

section.entry-form .cont-wrapper .form-cont_area .mwform-radio-field input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 16px;
    aspect-ratio: 1 / 1;
    background: var(--main-color);
    border-radius: 50%;
}

/*ボタン*/
section.entry-form .cont-wrapper .btn-area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 90px;
}

section.entry-form .cont-wrapper .btn-area input {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 0.12em;
    width: 384px;
    height: 80px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

section.entry-form .cont-wrapper .btn-area .submit-btn {
    border: solid 1.5px var(--main-color);
    background-color: var(--main-color);
}

@media (any-hover:hover) {
    section.entry-form .cont-wrapper .btn-area .submit-btn:hover {
        color: var(--main-color);
        background-color: #FFF;
    }
}

section.entry-form .cont-wrapper .btn-area .back-btn {
    border: solid 1.5px #53565C;
    background-color: #53565C;
}

@media (any-hover:hover) {
    section.entry-form .cont-wrapper .btn-area .back-btn:hover {
        color: #53565C;
        background-color: #FFF;
    }
}

/*sp*/
@media (max-width:767px) {
    section.entry-form .cont-wrapper .form-cont_area .cont {
        display: block;
    }

    section.entry-form .cont-wrapper .form-cont_area h3 {
        width: 100%;
        font-size: 14px;
        margin-top: 24px;
        padding-right: 0;
    }

    section.entry-form .cont-wrapper .form-cont_area h3+ :is(p, .free-wrapper) {
        width: 100%
    }

    section.entry-form .cont-wrapper .form-cont_area :is(input, textarea, .radio-wrapper) {
        margin-top: 9px;
        font-size: 14px;
    }

    section.entry-form .cont-wrapper .form-cont_area :is(input[type="text"], textarea) {
        padding: 1.0em 0.75em;
        width: 100%;
        height: 48px;
    }

    section.entry-form .cont-wrapper .form-cont_area textarea {
        width: 100%;
        height: 144px;
    }

    section.entry-form .cont-wrapper .form-cont_area input+span {
        font-size: 14px;
    }

    section.entry-form .cont-wrapper .form-cont_area .age-wrapper {
        gap: 5px;
        font-size: 14px;
    }

    section.entry-form .cont-wrapper .form-cont_area .age-wrapper input {
        width: 80px;
    }

    section.entry-form .cont-wrapper .form-cont_area .age-wrapper span:not(.error) {
        margin-top: 9px;
    }

    section.entry-form .cont-wrapper .form-cont_area .free-wrapper .annotation {
        position: static;
        margin-top: -6px;
        line-height: 2.0;
    }

    /*ボタン*/
    section.entry-form .cont-wrapper .btn-area {
        gap: 24px;
        margin-top: 32px;
    }

    section.entry-form .cont-wrapper .btn-area input {
        font-size: 14px;
        width: 280px;
        height: 60px;
    }
}

/*確認画面*/
section.entry-form.form-confirmation .cont-wrapper .form-cont_area .cont {
    padding-bottom: 32px;
    border-bottom: solid 1px var(--border-glay);
}

section.entry-form.form-confirmation .cont-wrapper .form-cont_area .cont :is(p, .radio-wrapper, .free-wrapper, .age-wrapper) {
    font-size: 16px;
    font-weight: 600;
    line-height: 2.0;
    color: #262626;
    letter-spacing: 0.12em;
    word-break: break-all;
}

section.entry-form.form-confirmation .cont-wrapper .form-cont_area .cont.age-wrapper {
    gap: 0;
}

section.entry-form.form-confirmation .cont-wrapper .form-cont_area .free-wrapper .annotation {
    display: none;
}

/*sp*/
@media (max-width:767px) {
    section.entry-form.form-confirmation .cont-wrapper .form-cont_area .cont {

        padding-bottom: 28px;
    }

    section.entry-form.form-confirmation .cont-wrapper .form-cont_area .cont :is(p, .radio-wrapper, .free-wrapper, .age-wrapper) {
        font-size: 14px;
    }
}

/*完了画面*/
section.entry-form.form-thanks .thanks-cont h2 {
    font-family: var(--ZenOldMincho);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.06em;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 28px;
}

section.entry-form.form-thanks .thanks-cont {
    font-size: 16px;
    font-weight: 600;
    line-height: 2.0;
    color: #262626;
    letter-spacing: 0.12em;
}

/*sp*/
@media (max-width:767px) {
    section.entry-form.form-thanks .thanks-cont h2 {
        display: none;
    }

    section.entry-form.form-thanks .thanks-cont {
        font-size: 14px;
    }
}


/*======================
404
=======================*/
.page-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65vh;
    padding: 120px 0 0;
    background-color: #FFF;
}

.page-404 .cont {
    width: calc((1240 / 1366) * 100%);
    max-width: 800px;
    padding: 45px;
    margin: auto;
    border: solid 2px var(--main-color);
    border-radius: 12px;
}

.page-404 .cont p:first-of-type {
    font-family: var(--Montserrat);
    font-size: 32px;
    font-weight: 600;
    color: var(--main-color);
    text-align: center;
}

.page-404 .cont p:first-of-type span {
    display: block;
    line-height: 1.0;
}

.page-404 .cont p:last-of-type {
    font-size: 16px;
    font-weight: 500;
    line-height: 2.0;
    text-align: center;
    margin-top: 20px;
}

/*sp*/
@media (max-width:767px) {
    .page-404 {
        padding: 90px 0 0;
    }

    .page-404 .cont p:last-of-type {
        font-size: 14px;
        text-align: start;
    }

    a.top_btn {
        max-width: 100%;
        margin-top: 30px;
    }
}

/*======================
*
footer
*
=======================*/
footer {
    position: relative;
    padding: 120px 0 160px;
    background-color: #fff;
    overflow: hidden;
}

main:has(section.entry-form)+footer {
    padding-top: 200px;
}

footer .cont-area {
    display: flex;
    justify-content: space-between;
}

footer .cont-area .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((300 / 1240) * 100%);
}

footer .cont-area .left .logo a {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}

footer .cont-area .left p {
    font-family: var(--Montserrat);
    font-weight: 400;
    font-size: 12px;
    color: #A2A7AA;
}

footer .cont-area .left .privacy_link a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    margin-bottom: 8px;
    transition: 0.3s ease-in-out;
}

footer .cont-area .left .privacy_link a::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: -21px;
    width: 16px;
    aspect-ratio: 1/1;
    background: url(images/common/link-icn.webp) no-repeat center / 100%;
}

footer .cont-area .left .privacy_link a::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--main-color);
}

@media (any-hover:hover) {
    footer .cont-area .left .privacy_link a:hover {
        opacity: 0.75;
    }
}

footer .cont-area .right {
    width: calc((580 / 1240) * 100%);
}

footer .cont-area .right nav.footer-menu ul.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 40px calc((30 / 580) * 100%);
}

footer .cont-area .right nav.footer-menu>ul>li:not(:last-of-type) {
    flex: 1 1;
}

footer .cont-area .right nav.footer-menu>ul>li:last-of-type {
    width: 100%;
}

footer .cont-area .right nav.footer-menu>ul>li>a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    padding-left: 27px;
    padding-bottom: 24px;
    border-bottom: solid 1px #D3D3D3;
}

footer .cont-area .right nav.footer-menu>ul>li>a::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 6px;
    transform: translateY(-50%) rotate(-45deg);
    width: calc((6 / 19) * 1.0em);
    aspect-ratio: 1 / 1;
    border: solid 1px #FFF;
    border-top-width: 0;
    border-left-width: 0;
    transition: 0.3s ease-in-out;
}

footer .cont-area .right nav.footer-menu>ul>li>a::after {
    content: "";
    position: absolute;
    z-index: 1;
    transform: translateY(-50%) rotate(0);
    top: 13px;
    left: 0;
    right: initial;
    width: 19px;
    height: auto;
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 50%;
    background-color: var(--main-color);
    transition: 0.3s ease-in-out;
}

footer .cont-area .right nav.footer-menu>ul>li ul.sub-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: end;
    margin-top: 16px;
}

footer .cont-area .right nav.footer-menu>ul>li ul.sub-menu li:last-of-type {
    grid-column: -2;
}

footer .cont-area .right nav.footer-menu>ul>li ul.sub-menu a {
    font-size: 14px;
    line-height: calc(32 / 14);
    transition: 0.3s ease-in-out;
}

@media (any-hover: hover) {
    footer .cont-area .right nav.footer-menu>ul>li>a:hover::before {
        transform: translate(5px, -50%) rotate(-45deg);
    }

    footer .cont-area .right nav.footer-menu>ul>li>a:hover::after {
        transform: translate(5px, -50%) rotate(0);
    }

    footer .cont-area .right nav.footer-menu>ul>li ul.sub-menu a:hover {
        color: var(--main-color);
    }
}

footer .footer-text {
    position: absolute;
    bottom: -56px;
    display: flex;
    animation: footer_loopX 10s linear infinite;
}

footer .footer-text p {
    min-width: 100%;
    font-family: var(--Montserrat);
    font-size: 102px;
    font-weight: 500;
    color: #EFF2F4;
    letter-spacing: 0.06em;
}

@keyframes footer_loopX {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width:1300px) {
    footer .cont-area {
        width: 96%;
    }

    footer .cont-area .left {
        width: calc((400 / 1240) * 100%);
    }

    footer .cont-area .right {
        width: calc((630 / 1240) * 100%);
    }
}

/*tb*/
@media (max-width:1024px) {
    footer .cont-area {
        display: block;
    }

    footer .cont-area .left {
        width: 100%;
        margin: 0 auto 30px;
    }

    footer .cont-area .left .privacy_link a {
        margin-right: 21px;
    }

    footer .cont-area .left .copyright {
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
        bottom: 16%;
        width: 100%;
        text-align: center;
    }

    footer .cont-area .left .logo {
        width: 100%;
        text-align: center;
    }

    footer .cont-area .right {
        width: 100%;
    }

    footer .cont-area .right nav.footer-menu>ul>li ul.sub-menu li:last-of-type {
        grid-column: 1;
    }
}

/*sp*/
@media (max-width:767px) {
    footer .cont-area {
        width: calc((335 / 375) * 100%);
    }
}

@media (max-width:599px) {
    footer {
        padding: 60px 0 140px;
    }

    main:has(section.entry-form)+footer {
        padding-top: 96px;
    }

    footer .cont-area .left .logo a {
        font-size: 16px;
    }

    footer .cont-area .right nav.footer-menu ul.footer-menu {
        display: block;
        margin-top: -20px;
    }

    footer .cont-area .right nav.footer-menu>ul>li>a {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    footer .cont-area .right nav.footer-menu>ul>li>a::before,
    footer .cont-area .right nav.footer-menu>ul>li>a::after {
        top: 50%;
    }

    footer .cont-area .right nav.footer-menu>ul>li ul.sub-menu {
        grid-template-columns: repeat(1, 1fr);
    }

    footer .cont-area .left .copyright {
        bottom: calc((45 /652) * 100%);
    }

    footer .footer-text {
        bottom: -13px;
    }

    footer .footer-text p {
        font-size: 28px;
    }
}