@charset "UTF-8";
.pc {
    display: none !important;
}
@media only screen and (min-width: 768px) {
    .pc {
        display: initial !important;
    }
}

@media only screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}

.search_job__box .item_select_toggler_txt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.search_job__box .item_select_toggler_txt {
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.footer__grid .item_heading,
.footer__copyright,
.totop,
.nav__box .item_title {
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .footer__copyright,
    .nav__box .item_title {
        text-align: left;
    }
}
.footer__grid .item_heading,
.footer__grid .item_link,
.footer__grid .item_sub_link,
.totop__txt,
.header__logo_txt,
.header__shortcut .item_link,
.nav__box .item_title,
.nav__box .item_link,
.nav__box .item_sub_link,
.search_job__box .item_heading,
.search_job__box .item_submit {
    font-family: "Dela Gothic One", sans-serif;
}

html {
    line-height: 1.6;
    scrollbar-width: thin;
    overflow-y: scroll;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.7333333333vw;
    font-weight: 400;
    color: #373737;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    left: 0;
    background-color: #f8ea4b;
}
@media only screen and (min-width: 768px) {
    body {
        font-size: 1.1111111111vw;
    }
}

main {
    width: 100%;
    padding-top: 17.3333333333vw;
}
@media only screen and (min-width: 768px) {
    main {
        padding-top: 5.5555555556vw;
    }
}

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

.wrapper,
#wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

@media only screen and (min-width: 768px) {
    .nav_link_block:hover,
    .nav_link:hover {
        opacity: 0.6;
    }
}

.item_link,
.nav_link {
    display: inline-block;
    transition: 300ms ease-out;
}

.item_link_block,
.nav_link_block {
    display: block;
    transition: 300ms ease-out;
}

@keyframes keyf_rotate_animation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes keyf_rotate_animation_rev {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}
@keyframes text-flow {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(200%);
    }
}
@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
@media only screen and (min-width: 768px) {
    .container {
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
    }
}
.container_fluid {
    padding-left: 20px;
    padding-right: 20px;
}
.container_block {
    max-width: 85.3333333333vw;
    border: 0;
    border-left: 1px solid #2f2f2f;
    border-right: 1px solid #2f2f2f;
    position: relative;
    z-index: 0;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 768px) {
    .container_block {
        width: 69.1666666667vw;
        border-left: 2px solid #2f2f2f;
        border-right: 2px solid #2f2f2f;
    }
}

html.is_loading #loadding {
    opacity: 1;
    pointer-events: all;
}
html.is_loading body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

#loadding {
    position: fixed;
    z-index: 999999;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(0deg, #f8ea4b 0%, #dfd242 100%);
    opacity: 0;
    transition: opacity 1s ease-out 0.5s;
}

.three-body {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    animation: spin 2.75s infinite linear;
}
.three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
}
.three-body__dot:after {
    content: "";
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: #fff;
    border-radius: 50%;
}
.three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
}
.three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 1.1s infinite ease-in-out;
    animation-delay: -0.33s;
}
.three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
}
.three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 1.1s infinite -0.165s ease-in-out;
}
.three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
}
.three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 1.1s infinite ease-in-out;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes wobble1 {
    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-66%) scale(0.65);
        opacity: 0.8;
    }
}
@keyframes wobble2 {
    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(66%) scale(0.65);
        opacity: 0.8;
    }
}
/*cookie*/
.cookie_wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3057ff;
    color: #000;
    z-index: 30;
    padding: 10px 0;
}
.cookie_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    padding: 0 25px;
}
@media only screen and (min-width: 768px) {
    .cookie_container {
        flex-wrap: nowrap;
    }
}
.cookie_txt {
    width: 100%;
    font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
    .cookie_txt {
        width: 75%;
        padding-right: 15px;
    }
}
.cookie_close {
    width: 90%;
    margin: 10px auto 0;
}
@media only screen and (min-width: 768px) {
    .cookie_close {
        margin-top: 0;
        flex-shrink: 0;
        width: 25%;
    }
}
.cookie_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 10px 6px;
    text-decoration: none;
    border: solid 2px #000;
    background: #000;
    border-radius: 30px;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .cookie_btn {
        transition: all 0.5s;
        padding: 10px 10px 11px;
    }
    .cookie_btn:hover {
        opacity: 0.7;
    }
}

.layout {
    width: 93.3vw;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 768px) {
    .layout {
        width: 94.8611111111vw;
    }
}
.layout__inner {
    border: 0;
    border-left: 1px solid #2f2f2f;
    border-right: 1px solid #2f2f2f;
    overflow: hidden;
}
@media only screen and (min-width: 768px) {
    .layout__inner {
        border-width: 2px;
    }
}

.search_job {
    position: fixed;
    z-index: 900;
    inset: 0;
    padding-top: 17.6vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 300ms linear;
}
@media only screen and (min-width: 768px) {
    .search_job {
        padding-top: 5.625vw;
    }
}
.search_job.is_open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.search_job__mask {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: rgba(47, 47, 47, 0.31);
}
.search_job__wrap {
    width: 92vw;
    background-color: #373737;
    border-radius: 1.0666666667vw;
    border: 1px solid #fff;
    position: relative;
    margin-left: auto;
}
@media only screen and (min-width: 768px) {
    .search_job__wrap {
        width: 37.0833333333vw;
        border-width: 2px;
        border-radius: 0.5555555556vw;
    }
}
.search_job__inner {
    position: relative;
    z-index: 0;
    padding-top: 9.3333333333vw;
    padding-left: 6.1333333333vw;
    padding-right: 12.5333333333vw;
    padding-bottom: 16.2666666667vw;
}
@media only screen and (min-width: 768px) {
    .search_job__inner {
        padding-top: 2.5694444444vw;
        padding-left: 5.625vw;
        padding-right: 7.2916666667vw;
        padding-bottom: 3.4722222222vw;
    }
}
.search_job__inner::before {
    content: "";
    width: 69.0666666667vw;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 0;
    aspect-ratio: 1.9185185185;
    background-image: url("./../images/common/img_serach_sh_sp.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
    .search_job__inner::before {
        width: 17.0833333333vw;
        aspect-ratio: 1.0982142857;
        background-image: url("./../images/common/img_serach_sh.png");
    }
}
.search_job__box + .search_job__box {
    margin-top: 11.2vw;
}
@media only screen and (min-width: 768px) {
    .search_job__box + .search_job__box {
        margin-top: 2.9166666667vw;
    }
}
.search_job__box .item_heading {
    font-weight: 400;
    font-size: 3.7333333333vw;
    letter-spacing: 0.1em;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_heading {
        font-size: 0.9722222222vw;
    }
}
.search_job__box .item_heading span {
    font-size: 4.8vw;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_heading span {
        font-size: 1.25vw;
    }
}
.search_job__box .item_form {
    position: relative;
    margin-top: 4px;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_form {
        margin-top: 4px;
    }
}
.search_job__box .item_select {
    width: 67.4666666667vw;
    position: relative;
    margin-left: auto;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select {
        width: 21.8055555556vw;
    }
}
.search_job__box .item_select > select {
    display: none;
}
.search_job__box .item_select_toggler {
    height: 14.4vw;
    background-color: #2f2f2f;
    border: 1px solid #fff;
    border-radius: 2.1333333333vw;
    display: flex;
    align-items: center;
    font-size: 4.2666666667vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #e64141;
    position: relative;
    padding-left: 7.2vw;
    padding-right: 12vw;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select_toggler {
        height: 3.75vw;
        font-size: 1.1111111111vw;
        border-radius: 0.5555555556vw;
        cursor: pointer;
        transition: opacity 300ms linear;
        padding-left: 1.875vw;
        padding-right: 3.125vw;
    }
    .search_job__box .item_select_toggler:hover {
        opacity: 0.6;
    }
}
.search_job__box .item_select_toggler.is_open + .item_select_dropdown {
    display: block;
}
.search_job__box .item_select_toggler::after {
    content: "";
    position: absolute;
    top: 54%;
    right: 4.2666666667vw;
    translate: 0 -50%;
    border: 0;
    border-top: 2.9333333333vw solid #e64141;
    border-left: 1.8666666667vw solid rgba(0, 0, 0, 0);
    border-right: 1.8666666667vw solid rgba(0, 0, 0, 0);
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select_toggler::after {
        right: 1.1111111111vw;
        border-top: 0.625vw solid #e64141;
        border-left: 0.4861111111vw solid rgba(0, 0, 0, 0);
        border-right: 0.4861111111vw solid rgba(0, 0, 0, 0);
    }
}
.search_job__box .item_select_dropdown {
    width: 100%;
    max-height: calc(100vh - 53.3333333333vw);
    max-height: calc(100dvh - 53.3333333333vw);
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 2.1333333333vw;
    position: absolute;
    z-index: 1;
    left: 0;
    padding: 2.1333333333vw 0 5.3333333333vw;
    overflow: auto;
    display: none;
    filter: drop-shadow(0 0.2083333333vw 10.2px rgba(220, 71, 71, 0.56));
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select_dropdown {
        top: 3.75vw;
        max-height: calc(100vh - 15.2777777778vw);
        padding: 0.5555555556vw 0 1.3888888889vw;
        border-radius: 0.5555555556vw;
        filter: drop-shadow(0 0.2777777778vw 10.2px rgba(220, 71, 71, 0.56));
    }
    .search_job__box .item_select_dropdown:hover .is_selected:not(:hover) {
        color: #373737;
        background-color: rgba(255, 255, 255, 0);
    }
}
.search_job__box .item_select_dropdown_wrap {
    width: 100%;
}
.search_job__box .item_select_group {
    color: #c4c4c4;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0 4.5333333333vw;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select_group {
        padding: 0 1.1805555556vw;
    }
}
.search_job__box .item_select_group::before,
.search_job__box .item_select_group::after {
    content: "---";
    display: inline-block;
}
.search_job__box .item_select_lists {
    margin-top: 1.0666666667vw;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select_lists {
        margin-top: 0.2777777778vw;
    }
}
.search_job__box .item_select_lists + .item_select_group {
    margin-top: 4.2666666667vw;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select_lists + .item_select_group {
        margin-top: 1.1111111111vw;
    }
}
.search_job__box .item_select_lists .item {
    font-size: 4.2666666667vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    padding: 1.0666666667vw 4vw;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select_lists .item {
        font-size: 1.1111111111vw;
        padding: 0.2777777778vw 1.0416666667vw;
        transition: 150ms ease;
        cursor: pointer;
    }
    .search_job__box .item_select_lists .item:hover {
        color: #fff;
        background-color: #0066cc;
    }
}
.search_job__box .item_select_lists .item.is_selected {
    color: #fff;
    background-color: #0066cc;
}
.search_job__box .item_select_lists .item span {
    font-weight: 500;
    font-size: 3.7333333333vw;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_select_lists .item span {
        font-size: 0.9722222222vw;
    }
}
.search_job__box .item_submit {
    width: 67.4666666667vw;
    height: 11.7333333333vw;
    background-color: #ff0000;
    border-radius: 999px;
    font-size: 4vw;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 2.9333333333vw;
    margin-left: auto;
    padding-right: 8vw;
    filter: drop-shadow(0 1.0666666667vw 0 #000);
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_submit {
        width: 21.875vw;
        height: 3.0555555556vw;
        font-size: 1.0416666667vw;
        margin-top: 0.7638888889vw;
        padding-right: 2.7777777778vw;
        filter: drop-shadow(0 0.2777777778vw 0 #000);
        cursor: pointer;
        transition: 300ms ease;
    }
    .search_job__box .item_submit:hover {
        translate: 0 4px;
        filter: unset;
    }
}
.search_job__box .item_submit .icon {
    width: 6.4vw;
    position: absolute;
    top: 50%;
    right: 9.0666666667vw;
    translate: 0 -50%;
}
@media only screen and (min-width: 768px) {
    .search_job__box .item_submit .icon {
        width: 1.6666666667vw;
        right: 3.4722222222vw;
    }
}

/** -- ▷ header -- */
.header {
    width: 100%;
    background-color: #f8ea4b;
    border-bottom: 1px solid #2f2f2f;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
}
@media only screen and (min-width: 768px) {
    .header {
        border-bottom-width: 2px;
    }
}
.header_close_all {
    position: absolute;
    z-index: 0;
    inset: 0;
}
.header__inner {
    height: 17.3333333333vw;
    display: flex;
    align-items: center;
    padding-left: 3.4666666667vw;
    padding-right: 3.4666666667vw;
}
@media only screen and (min-width: 768px) {
    .header__inner {
        height: 5.5555555556vw;
        padding-left: 3.8194444444vw;
        padding-right: 3.1944444444vw;
    }
}
.header__logo {
    display: inline-flex;
    flex-direction: column;
    gap: 0vw;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .header__logo {
        gap: 1.875vw;
        align-items: center;
        flex-direction: row;
    }
}
.header__logo_img {
    width: 22.6666666667vw;
}
@media only screen and (min-width: 768px) {
    .header__logo_img {
        width: 8.2597222222vw;
    }
}
.header__logo_txt {
    font-weight: 400;
    color: #e10629;
    font-size: 2.6666666667vw;
    position: relative;
    top: 0.8vw;
}
@media only screen and (min-width: 768px) {
    .header__logo_txt {
        font-size: 0.7638888889vw;
        top: 0;
    }
}
.header__shortcut {
    display: flex;
    gap: 0.6944444444vw;
    margin-left: auto;
    margin-right: 2.6666666667vw;
}
@media only screen and (min-width: 768px) {
    .header__shortcut {
        gap: 0.6944444444vw;
        margin-right: 2.0138888889vw;
    }
}
.header__shortcut .item:nth-child(1) {
    display: none;
}
@media only screen and (min-width: 768px) {
    .header__shortcut .item:nth-child(1) {
        display: block;
    }
}
.header__shortcut .item:nth-child(2) {
    display: none;
}
@media only screen and (min-width: 768px) {
    .header__shortcut .item:nth-child(2) {
        display: block;
    }
}
.header__shortcut .item:nth-child(3) .item_link {
    background-color: #ff0000;
    color: #fff;
}
.header__shortcut .item_link {
    font-size: 2.6666666667vw;
    font-weight: 400;
    height: 8.2666666667vw;
    background-color: #fff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2.6666666667vw 2.6666666667vw;
    filter: drop-shadow(0 0.8vw 0 rgba(0, 0, 0, 0.25));
}
@media only screen and (min-width: 768px) {
    .header__shortcut .item_link {
        height: 2.1527777778vw;
        font-size: 1.0416666667vw;
        padding: 0.6944444444vw 0.6944444444vw;
        filter: drop-shadow(0 0.2777777778vw 0 rgba(0, 0, 0, 0.25));
        cursor: pointer;
    }
    .header__shortcut .item_link:hover {
        translate: 0 4px;
        filter: unset;
    }
    .header__shortcut .item_link:hover .item_txt {
        animation-name: text-flow;
        animation-duration: 2s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }
}
.header__shortcut .item_link_wrap {
    overflow: hidden;
    position: relative;
    display: inline-flex;
}
.header__shortcut .item_txt {
    position: relative;
}
.header__shortcut .item_txt::before {
    content: attr(data-content);
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateX(-200%);
}

.nav {
    position: fixed;
    z-index: 900;
    inset: 0;
    padding-top: 17.6vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 300ms linear;
}
@media only screen and (min-width: 768px) {
    .nav {
        padding-top: 5.5555555556vw;
    }
}
.nav.is_open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.nav__toggler {
    width: 12.5333333333vw;
    height: 12.5333333333vw;
    border-radius: 999px;
    background-color: #2f2f2f;
    position: relative;
    filter: drop-shadow(0 0.8vw 0 rgba(0, 0, 0, 0.25));
    transition: 300ms ease;
}
@media only screen and (min-width: 768px) {
    .nav__toggler {
        width: 3.2638888889vw;
        height: 3.2638888889vw;
        cursor: pointer;
        filter: drop-shadow(0 0.2777777778vw 0 rgba(0, 0, 0, 0.25));
    }
    .nav__toggler:hover {
        filter: unset;
        translate: 0 0.2777777778vw;
    }
}
.nav__toggler.is_open {
    filter: unset;
    translate: 0 0.8vw;
}
@media only screen and (min-width: 768px) {
    .nav__toggler.is_open {
        translate: 0 0.2777777778vw;
    }
}
.nav__toggler.is_open .nav__toggler_bar:nth-child(1) {
    top: 50%;
    rotate: 45deg;
}
.nav__toggler.is_open .nav__toggler_bar:nth-child(2) {
    opacity: 0;
}
.nav__toggler.is_open .nav__toggler_bar:nth-child(3) {
    top: 50%;
    rotate: -45deg;
}
.nav__toggler_box {
    width: 5.6vw;
    height: 3.2vw;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
@media only screen and (min-width: 768px) {
    .nav__toggler_box {
        width: 1.4583333333vw;
        height: 0.8333333333vw;
    }
}
.nav__toggler_bar {
    width: 100%;
    height: 0.8vw;
    background-color: #fff;
    position: absolute;
    left: 0;
    translate: 0 -50%;
    transition: rotate 300ms ease, opacity 300ms linear;
}
@media only screen and (min-width: 768px) {
    .nav__toggler_bar {
        height: 0.1388888889vw;
    }
}
.nav__toggler_bar:nth-child(1) {
    top: 0;
}
.nav__toggler_bar:nth-child(2) {
    top: 50%;
}
.nav__toggler_bar:nth-child(3) {
    top: 100%;
}
.nav__mask {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: rgba(47, 47, 47, 0.31);
}
.nav__wrap {
    width: 92vw;
    height: calc(100vh - 17.8666666667vw);
    height: calc(100dvh - 17.8666666667vw);
    background-color: #373737;
    border: 0;
    border-left: 2px solid #fff;
    position: relative;
    z-index: 0;
    margin-left: auto;
    padding: 6.1333333333vw 2.6666666667vw 13.3333333333vw;
}
@media only screen and (min-width: 768px) {
    .nav__wrap {
        width: 37.0833333333vw;
        height: calc(100vh - 5.5555555556vw);
        height: calc(100dvh - 5.5555555556vw);
        padding: 2.2222222222vw 1.9444444444vw 3.4722222222vw;
    }
}
.nav__wrap::before {
    content: "";
    width: 64vw;
    pointer-events: none;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    aspect-ratio: 1.0982142857;
    background-image: url("./../images/common/img_serach_sh.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
    .nav__wrap::before {
        width: 17.0833333333vw;
    }
}
.nav__os {
    width: 100%;
    max-height: calc(100vh - 33.8666666667vw);
    max-height: calc(100dvh - 33.8666666667vw);
    border-radius: 4.2666666667vw;
    overflow: auto;
    background-color: rgba(47, 47, 47, 0.89);
}
@media only screen and (min-width: 768px) {
    .nav__os {
        max-height: calc(100vh - 9.7222222222vw);
        border-radius: 1.6666666667vw;
    }
}
.nav__inner {
    width: 78.1333333333vw;
    position: relative;
    left: -2px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 6.6666666667vw;
    padding-bottom: 7.4666666667vw;
}
@media only screen and (min-width: 768px) {
    .nav__inner {
        width: 22.9166666667vw;
        left: 0;
        padding-top: 2.3611111111vw;
        padding-bottom: 2.6388888889vw;
    }
}
.nav__box {
    color: #fff;
}
.nav__box + .nav__box {
    margin-top: 6.4vw;
}
@media only screen and (min-width: 768px) {
    .nav__box + .nav__box {
        margin-top: 2.2222222222vw;
    }
}
.nav__box .item_title {
    font-size: 4.8vw;
    padding-bottom: 4.8vw;
    border: 0;
    border-bottom: 1px solid #fff;
}
@media only screen and (min-width: 768px) {
    .nav__box .item_title {
        font-size: 1.4583333333vw;
        border-width: 0.2083333333vw;
        padding-bottom: 0.2083333333vw;
    }
}
.nav__box .item_lists {
    display: flex;
    gap: 1.8666666667vw;
    flex-direction: column;
    margin-top: 3.2vw;
}
@media only screen and (min-width: 768px) {
    .nav__box .item_lists {
        margin-top: 0.8333333333vw;
        gap: 0.4166666667vw;
    }
}
.nav__box .item_link {
    font-size: 4.2666666667vw;
    font-weight: 400;
    display: inline-flex;
    gap: 1.8666666667vw;
    align-items: center;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .nav__box .item_link {
        gap: 0.4861111111vw;
        font-size: 1.1111111111vw;
        background: linear-gradient(to right, #f8ea4b 0, #f8ea4b 50%, #fff 50%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 100%;
        background-position: 100%;
        transition: background-position 300ms ease;
    }
    .nav__box .item_link:hover {
        background-position: 0 100%;
    }
}
.nav__box .item_link::before {
    content: "";
    width: 5.3333333333vw;
    aspect-ratio: 1;
    display: inline-block;
    background-image: url("./../images/common/icon_right_arrow.svg");
    background-size: 100%;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
    .nav__box .item_link::before {
        width: 1.3888888889vw;
    }
}
.nav__box .item_sub {
    margin-top: 0.5333333333vw;
    padding-left: 7.4666666667vw;
    display: flex;
    gap: 1.3333333333vw;
    flex-direction: column;
}
@media only screen and (min-width: 768px) {
    .nav__box .item_sub {
        gap: 0px;
        margin-top: -0.3472222222vw;
        padding-left: 1.9444444444vw;
    }
}
.nav__box .item_sub_link {
    font-size: 3.2vw;
    font-weight: 400;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .nav__box .item_sub_link {
        font-size: 0.9722222222vw;
        background: linear-gradient(to right, #f8ea4b 0, #f8ea4b 50%, #fff 50%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 100%;
        background-position: 100%;
        transition: background-position 300ms ease;
    }
    .nav__box .item_sub_link:hover {
        background-position: 0 100%;
    }
}

/** -- ▷ footer -- */
.footer__wrap {
    position: relative;
    background-color: #2f2f2f;
}
.footer .layout__inner {
    padding-bottom: 4vw;
}
@media only screen and (min-width: 768px) {
    .footer .layout__inner {
        padding-bottom: 2.7777777778vw;
    }
}
.footer_frame_270 {
    background-color: #fff;
    border-top: 1px solid #2f2f2f;
    border-bottom: 1px solid #2f2f2f;
    padding-left: 1.6vw;
}
@media only screen and (min-width: 768px) {
    .footer_frame_270 {
        border-top: 2px solid #2f2f2f;
        border-bottom: 2px solid #2f2f2f;
        padding-left: 0;
    }
}
.footer_frame_270 .frame_270 {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .footer_frame_270 .frame_270 {
        width: 87.5vw;
        margin-left: auto;
        margin-right: auto;
    }
}
.footer__banner {
    height: 10.4vw;
}
@media only screen and (min-width: 768px) {
    .footer__banner {
        height: auto;
    }
}
.footer__banner img {
    height: 100%;
    object-fit: cover;
}
.footer__inner {
    position: relative;
    z-index: 0;
    padding-top: 6.6666666667vw;
}
@media only screen and (min-width: 768px) {
    .footer__inner {
        padding-top: 6.25vw;
        padding-bottom: 11.5277777778vw;
    }
}
.footer__bg_01 {
    width: 130.2453333333vw;
    pointer-events: none;
    position: absolute;
    z-index: -1;
    top: -6.9333333333vw;
    left: -26.1333333333vw;
}
@media only screen and (min-width: 768px) {
    .footer__bg_01 {
        width: 100vw;
        top: -12.2222222222vw;
        left: -2.9166666667vw;
    }
}
.footer__bg_02 {
    width: 91.5893333333vw;
    pointer-events: none;
    position: absolute;
    z-index: -1;
    right: -2.1333333333vw;
    bottom: 9.8666666667vw;
}
@media only screen and (min-width: 768px) {
    .footer__bg_02 {
        width: 70.8333333333vw;
        right: -2.4305555556vw;
        bottom: -2.7083333333vw;
    }
}
.footer__content {
    width: 85.6vw;
    background-color: rgba(47, 47, 47, 0.89);
    border-radius: 6.4vw;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25.3333333333vw;
}
@media only screen and (min-width: 768px) {
    .footer__content {
        width: 74.375vw;
        border-radius: 1.6666666667vw;
        padding-bottom: 4.1666666667vw;
    }
}
.footer__content::after {
    content: "";
    width: 15.0986666667vw;
    pointer-events: none;
    aspect-ratio: 1.0862068966;
    background-image: url("./../images/common/img_footer_sh_01.png");
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 4vw;
    bottom: 4.3%;
    translate: -50% -50%;
    rotate: 16.67deg;
}
@media only screen and (min-width: 768px) {
    .footer__content::after {
        width: 8.75vw;
        rotate: 16.67deg;
        left: -0.6944444444vw;
        bottom: 12%;
    }
}
.footer__grid {
    width: 78.1333333333vw;
    display: flex;
    gap: 9.6vw;
    flex-direction: column;
    position: relative;
    left: 1.0666666667vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 9.3333333333vw;
}
@media only screen and (min-width: 768px) {
    .footer__grid {
        width: 47.2222222222vw;
        gap: 0;
        flex-direction: row;
        justify-content: space-between;
        left: 0;
        padding-top: 4.7222222222vw;
        padding-right: 6px;
    }
}
@media only screen and (min-width: 768px) {
    .footer__grid .item:nth-child(1) {
        width: 20.6944444444vw;
    }
}
@media only screen and (min-width: 768px) {
    .footer__grid .item:nth-child(2) {
        width: 23.2638888889vw;
    }
}
.footer__grid .item_heading {
    font-size: 4.8vw;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    border-bottom: 2px solid currentColor;
    padding-bottom: 5.6vw;
}
@media only screen and (min-width: 768px) {
    .footer__grid .item_heading {
        font-size: 1.4583333333vw;
        padding-bottom: 1.3888888889vw;
        border-bottom-width: 3px;
    }
}
.footer__grid .item_lists {
    display: flex;
    gap: 4vw;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 4vw;
}
@media only screen and (min-width: 768px) {
    .footer__grid .item_lists {
        gap: 1.7361111111vw;
        margin-top: 1.7361111111vw;
    }
}
.footer__grid .item_link {
    font-size: 4.2666666667vw;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
}
@media only screen and (min-width: 768px) {
    .footer__grid .item_link {
        font-size: 1.1111111111vw;
        background: linear-gradient(to right, #f8ea4b 0, #f8ea4b 50%, #fff 50%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 100%;
        background-position: 100%;
        transition: background-position 300ms ease;
    }
    .footer__grid .item_link:hover {
        background-position: 0 100%;
    }
}
.footer__grid .item_link::before {
    content: "";
    width: 5.3333333333vw;
    display: block;
    aspect-ratio: 1;
    background-image: url("./../images/common/icon_right_arrow.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 1.6vw;
}
@media only screen and (min-width: 768px) {
    .footer__grid .item_link::before {
        width: 1.3888888889vw;
        margin-right: 0.4861111111vw;
    }
}
.footer__grid .item_sub {
    display: flex;
    gap: 1.3333333333vw;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2.1333333333vw;
    padding-left: 7.2vw;
}
@media only screen and (min-width: 768px) {
    .footer__grid .item_sub {
        gap: 0.625vw;
        margin-top: 1.0416666667vw;
        padding-left: 1.875vw;
    }
}
.footer__grid .item_sub_link {
    font-size: 3.2vw;
    font-weight: 400;
    line-height: 1;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .footer__grid .item_sub_link {
        transition: color 300ms ease;
        font-size: 0.9722222222vw;
        background: linear-gradient(to right, #f8ea4b 0, #f8ea4b 50%, #fff 50%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 100%;
        background-position: 100%;
        transition: background-position 300ms ease;
    }
    .footer__grid .item_sub_link:hover {
        background-position: 0 100%;
    }
}
.footer__copyright {
    font-size: 2.6666666667vw;
    font-weight: 700;
    line-height: 1;
    color: #d9d9d9;
    padding-top: 15.7333333333vw;
    padding-bottom: 5.8666666667vw;
}
@media only screen and (min-width: 768px) {
    .footer__copyright {
        font-size: 0.6944444444vw;
        position: absolute;
        left: 5.4166666667vw;
        bottom: 2.7083333333vw;
        padding: 0;
    }
}

.totop {
    line-height: 1.05;
    position: absolute;
    z-index: 1;
    right: 8.8vw;
    bottom: 3.7333333333vw;
}
@media only screen and (min-width: 768px) {
    .totop {
        right: 3.6111111111vw;
        bottom: 2.2916666667vw;
        transition: opacity 300ms linear;
        cursor: pointer;
    }
    .totop:hover {
        opacity: 0.6;
    }
}
.totop img {
    width: 8.8vw;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 768px) {
    .totop img {
        width: 3.3333333333vw;
        margin-bottom: 5px;
    }
}
.totop__txt {
    font-size: 2.6666666667vw;
    font-weight: 400;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .totop__txt {
        font-size: 1.0416666667vw;
    }
}

[data-delay="0.1s"] {
    transition-delay: 0.1s;
}

[data-delay="0.2s"] {
    transition-delay: 0.2s;
}

[data-delay="0.3s"] {
    transition-delay: 0.3s;
}

[data-delay="0.4s"] {
    transition-delay: 0.4s;
}

[data-delay="0.5s"] {
    transition-delay: 0.5s;
}

[data-delay="0.6s"] {
    transition-delay: 0.6s;
}

[data-delay="0.7s"] {
    transition-delay: 0.7s;
}

[data-delay="0.8s"] {
    transition-delay: 0.8s;
}

[data-delay="0.9s"] {
    transition-delay: 0.9s;
}

[data-delay="1s"] {
    transition-delay: 1s;
}

[data-delay="1.5s"] {
    transition-delay: 1.5s;
}

.js_inview {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    transition-duration: 0.8s;
}

.fade {
    opacity: 0;
}

.fadeup {
    transform: translate3d(0, 50px, 0);
}

.fadedown {
    transform: translate3d(0, -50px, 0);
}

.faderight {
    transform: translate3d(50px, 0, 0);
}

.fadeleft {
    transform: translate3d(-50px, 0, 0);
}

.zoomin {
    transform: scale(0.8);
}

.is_show.js_inview {
    opacity: 1;
    transform: none;
}

.frame_270 {
    width: 100%;
    height: 6.1333333333vw;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .frame_270 {
        height: 2.5694444444vw;
    }
}
.frame_270::after {
    content: "";
    width: 100%;
    max-width: 100%;
    height: 1.6vw;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-image: url("./../images/common/img_frame_270.png");
    background-size: 24vw 1.8666666667vw;
    background-repeat: repeat-x;
    background-position: -2.4vw 0;
}
@media only screen and (min-width: 768px) {
    .frame_270::after {
        height: 0.6944444444vw;
        background-size: 6.25vw 0.625vw;
        background-position: -0.625vw 0;
    }
}
