/*
Theme Name:	VITAMIN FARM theme
Description: ビタミンファーム株式会社コーポレートサイト
Author: 株式会社Create
Version: 1.0
*/

:root {
    --light-gray: #f2f2eb;
    --light-green: #a4b465;
    --orange: #f08337;
    --dark-green: #114232;
    --dark-green-alpha: rgba(17, 66, 50, 0.5);
    --beige: #f0bb78;
    --red-brown: #aa5656;
    --text-color-white: #fff;
    --text-color-primary: #114232;
    --bg-color-base: #fff;
    --radius-sm: 3px;
    --link-hover-color: #aa5656;
    --transition-duration: 0.2s;
}
body {
    background-color: var(--bg-color-base);
    color: var(--text-color-primary);
    font-family: 游ゴシック Medium, Yu Gothic Medium, 游ゴシック体, YuGothic,
        ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, メイリオ, Meiryo,
        sans-serif;
}
img, svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.page-top {
    bottom: 20px;
    opacity: 0;
    position: fixed;
    right: 20px;
    transition: 0.4s;
    visibility: hidden;
    z-index: 1000;
}
.page-top,
.page-top svg {
    mix-blend-mode: difference;
}
.page-top svg {
    stroke: #000;
    transition: stroke 0.3s;
}
.page-top.active {
    opacity: 1;
    visibility: visible;
}
.bg-wrapper {
    background-position: 50%;
    background-size: cover;
    position: relative;
    z-index: -10;
}
.bg-wrapper:after {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -5;
}
.c-title {
    align-items: center;
    display: flex;
    gap: 64px;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .c-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }
}
.c-title--ja {
    font-size: 1.75rem;
    line-height: 1.75;
    position: relative;
}
@media screen and (max-width: 768px) {
    .c-title--ja {
        font-size: 1.5rem;
        line-height: 1.333;
    }
}
.c-title--en {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}
@media screen and (max-width: 768px) {
    .c-title--en {
        font-size: 0.75rem;
        line-height: 2;
    }
}
.c-title--white {
    color: var(--text-color-white);
}
.c-title--green {
    color: var(--text-color-primary);
}
@media screen and (min-width: 769px) {
    .c-title .c-title--ja:after {
        content: "";
        height: 28px;
        position: absolute;
        right: -32px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
    }
    .c-title--white .c-title--ja:after {
        background-color: var(--text-color-white);
    }
    .c-title--green .c-title--ja:after {
        background-color: var(--red-brown);
    }
}
.c-card {
    color: var(--text-color-primary);
    display: flex;
    flex-direction: column;
}
[lang="en"] {
    font-family: Inter, sans-serif;
    font-weight: 300;
}
.pc-only {
    display: block;
}
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
}
.sp-only {
    display: none;
}
@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
}
.sr-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}
.header {
    background-color: var(--bg-color-base);
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
}
.header__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 15px 1.67vw 15px 3.33vw;
    height: 100%;
}
@media (max-width: 820px) {
    .header__inner {
        padding: 15px 5.13vw;
    }
}
.header__link {
    display: block;
    max-width: 61vw;
}
.header__image {
    max-width: 100%;
    height: auto;
}
.header__logo {
    position: relative;
    z-index: 300;
}
.header__nav {
    align-items: center;
    display: flex;
    height: 4.63vh;
}
@media screen and (max-width: 820px) {
    .header__nav {
        align-items: flex-start;
        height: auto;
        width: 100%;
    }
}
.header__nav-list {
    align-items: center;
    display: flex;
    gap: 2.08vw;
    height: 100%;
}
@media screen and (max-width: 820px) {
    .header__nav-list {
        align-items: start;
        -moz-column-gap: 0;
        column-gap: 0;
        display: grid;
        grid-template-columns: repeat(2, 44.03%);
        grid-template-rows: repeat(4, 1fr);
        height: auto;
        justify-content: space-between;
        row-gap: 3.79vh;
        width: 100%;
    }
}
.header__nav-item {
    display: inline-block;
    position: relative;
}
@media screen and (max-width: 820px) {
    .header__nav-item {
        border-top: 1px solid var(--red-brown);
        padding-top: 5px;
    }
}
@media screen and (min-width: 769px) {
    .header__nav-item:hover:after {
        width: 100%;
    }
    .header__nav-item:hover {
        color: var(--link-hover-color);
    }
}
.header__nav-link {
    color: var(--dark-green);
    font-size: 1rem;
    line-height: 1.75;
    text-transform: uppercase;
}
@media screen and (max-width: 820px) {
    .header__nav-link {
        font-size: 1.25rem;
        line-height: 1.4;
        display: flex;
        flex-direction: column;
    }
    .header__nav-link--en {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}
.header__contact-btn {
    background-color: var(--dark-green);
    border-radius: 10000px;
    height: 4.63vh;
    width: 9.06vw;
}
@media screen and (max-width: 820px) {
    .header__contact-btn {
        height: auto;
        width: 100%;
        border-radius: var(--radius-sm);
    }
}
.header__contact-btn:hover {
    background-color: var(--link-hover-color);
}
.header__contact-link {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
@media screen and (max-width: 1024px) and (min-width: 821px) {
    .header__contact-link {
        font-size: 0.75rem;
    }
}
@media screen and (max-width:820px) {
    .header__contact-link {
        padding: .75rem;
        height: auto;
    }
}
.social-links {
    display: none;
}
@media screen and (max-width: 820px) {
    .social-links {
        display: flex;
        gap: 10.26vw;
        justify-content: center;
        margin-top: 1rem;
    }
}
.hamburger-menu__wrapper {
    align-items: center;
    display: flex;
    gap: 3.33vw;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 100;
}
@media screen and (max-width: 820px) {
    .hamburger-menu,
    .hamburger-menu__information {
        display: block;
    }
    .hamburger-menu {
        cursor: pointer;
        height: 17px;
        position: relative;
        width: 32px;
        z-index: 200;
    }
    .hamburger-menu__line:after,
    .hamburger-menu__line:before {
        background-color: var(--dark-green);
        content: "";
        height: 1px;
        position: absolute;
        right: 0;
        transition: all 0.3s ease;
        width: 100%;
        z-index: 101;
    }
    .hamburger-menu__line:before {
        top: 0;
    }
    .hamburger-menu__line:after {
        top: 16px;
    }
    .hamburger-menu.open .hamburger-menu__line {
        background-color: transparent;
    }
    .hamburger-menu.open .hamburger-menu__line:before {
        top: 0;
        transform: rotate(315deg);
    }
    .hamburger-menu.open .hamburger-menu__line:after {
        top: 0;
        transform: rotate(-315deg);
    }
    .hamburger-menu__wrapper {
        align-items: center;
        background-color: var(--bg-color-base);
        box-sizing: border-box;
        flex-direction: column;
        height: 100vh;
        height: 100dvh;
        left: 0;
        overflow-y: auto;
        padding: 184px 5.13vw 18.01vh;
        position: fixed;
        top: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        width: 100vw;
    }
    .hamburger-menu__wrapper.open {
        transform: translateX(0);
    }
}
.fv {
    background-color: #707070;
    height: 100vh;
    position: relative;
    width: 100%;
}
.fv__copy-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.78vh;
    height: auto;
    left: 12.4%;
    padding: 3.7vh 2.08vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: -moz-fit-content;
    width: fit-content;
    z-index: 10;
}
@media screen and (max-width: 768px) {
    .fv__copy-wrapper {
        bottom: 0;
        left: 0;
        padding: 3.79vh 5.13vw;
        top: auto;
        transform: none;
        width: 100%;
    }
}
.fv__copy-wrapper:after {
    background-color: var(--dark-green);
    content: "";
    height: 100%;
    left: 0;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.fv__copy {
    color: var(--text-color-white);
}
.fv__copy-main {
    font-size: 2rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .fv__copy-main {
        font-size: 1.5rem;
    }
}
.fv__copy-sub {
    font-size: 1rem;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .fv__copy-sub {
        font-size: 0.875rem;
    }
}
.scroll {
    bottom: 30px;
    color: var(--text-color-white);
    font-size: 1rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}
.scroll__label {
    position: relative;
    text-transform: uppercase;
}
.scroll__label:after,
.scroll__label:before {
    background-color: var(--bg-color-base);
    border-radius: 9999px;
    bottom: -16px;
    content: "";
    height: 9px;
    left: calc(44% - 0.5px);
    position: absolute;
    transform-origin: 50% calc(100% - 0.5px);
    width: 1px;
}
.scroll__label:before {
    transform: rotate(45deg);
}
.scroll__label:after {
    transform: rotate(-45deg);
}
.infomation-wrapper {
    padding: 14.81vh 21.15vw;
}
@media screen and (max-width:1200px) {
    .infomation-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
@media screen and (max-width: 768px) {
    .infomation-wrapper {
        padding: 0;
    }
}
.information__inner {
    background-color: var(--dark-green);
    border-radius: 48px;
    color: var(--text-color-white);
    padding: 7.41vh 4.17vw 8.52vh;
}
@media screen and (max-width: 768px) {
    .information__inner {
        border-radius: 0;
        padding: 9.48vh 5.13vw;
    }
}
.information__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.7vh;
}
.information__link {
    color: var(--text-color-white);
    padding-left: 12px;
    position: relative;
}
.information__link:before {
    background: var(--text-color-white);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
    height: calc(tan(60deg) * 12px / 2);
    left: 0;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    width: 6px;
}
.information__item,
.information__item-term {
    align-items: baseline;
    display: flex;
    gap: 2.08vw;
}
.information__item {
    border-top: 1px solid var(--light-green);
    padding: 2.96vh 0;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .information__item {
        align-items: flex-start;
        flex-direction: column;
        padding: 2.84vh 0;
    }
}
.information__item:last-of-type {
    border-bottom: 1px solid var(--light-green);
}
.infomation__item-date {
    font-family: Inter, sans-serif;
    font-weight: 100;
    line-height: 1.25;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .infomation__item-date {
        font-size: 0.875rem;
        line-height: 1.214;
    }
}
.infomation__item-cat {
    align-items: center;
    background-color: var(--bg-color-base);
    border-radius: 1000px;
    color: var(--text-color-primary);
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    height: 20px;
    justify-content: center;
    width: 84px;
}
.information__item-def {
    font-size: 1rem;
    line-height: 1.75;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
}
@media screen and (max-width:768px) {
    .information__item-def {
        width: auto;
        overflow: auto;
        white-space: initial;
    }
}
.product-wrapper {
    padding: 14.81vh 23.96vw 16.3vh;
}
@media screen and (max-width: 768px) {
    .product-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.product-wrapper:after {
    background-color: hsla(60, 21%, 94%, 0.9);
}
.products__content {
    display: flex;
    flex-direction: column;
    gap: 14.44vh;
}
@media screen and (max-width: 768px) {
    .products__content {
        gap: 9.48vh;
    }
}
.products__item-head {
    margin-bottom: 7.41vh;
}
@media screen and (max-width: 768px) {
    .products__item-head {
        margin-bottom: 3.79vh;
    }
}
.products__item-body {
    display: grid;
    gap: 6.25vw;
    grid-template-columns: repeat(2, minmax(auto, 468px));
    height: auto;
    justify-content: space-between;
    padding: 0 2.5vw;
}
@media screen and (max-width: 768px) {
    .products__item-body {
        gap: 6.64vh;
        grid-template-columns: 1fr;
    }
}
.product-card {
    gap: 2.96vh;
}
@media screen and (max-width: 768px) {
    .product-card {
        gap: 2.61vh;
    }
}
.product-card:nth-of-type(2) {
    margin-top: -7.4vh;
}
@media screen and (max-width: 768px) {
    .product-card:nth-of-type(2) {
        margin-top: 0;
    }
}
.product-card__image {
    border-radius: var(--radius-sm);
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .product-card__image {
        height: 24.76vh;
    }
}
.product-card__content {
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
}
@media screen and (max-width: 768px) {
    .product-card__content {
        gap: 1.9vh;
    }
}
.product-card__title {
    font-size: 1.5rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .product-card__title {
        font-size: 1.25em;
        line-height: 1.35;
    }
}
.product-card__desc {
    font-size: 1rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .product-card__desc {
        line-height: 1.604;
    }
}
.about-wrapper {
    padding: 57.78vh 18.96vw 14.07vh 61.3vw;
    max-width: 100vw;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .about-wrapper {
        padding: 49.29vh 5.13vw 9.48vh;
        overflow: auto;
    }
}
.about-wrapper:after {
    background: linear-gradient(
        to top right,
        rgba(24, 65, 28, 0.36),
        rgba(3, 13, 10, 0.77)
    );
    mix-blend-mode: multiply;
    opacity: 0.8;
}
.about__head {
    margin-bottom: 5.19vh;
}
.about__body {
    display: flex;
    flex-direction: column;
    gap: 2.22vh;
}
.about__desc {
    color: var(--text-color-white);
    font-size: 1rem;
    line-height: 1.75;
}
.about__link {
    align-items: center;
    background-color: var(--bg-color-base);
    border-radius: var(--radius-sm);
    color: var(--text-color-primary);
    display: flex;
    flex-direction: column;
    height: 48px;
    justify-content: center;
    width: 12.5vw;
}
@media screen and (max-width: 768px) {
    .about__link {
        width: 100%;
    }
}
.about__link:hover {
    background-color: var(--link-hover-color);
    color: var(--text-color-white);
}
.qc-wrapper {
    padding: 14.81vh 23.96vw 10.37vh;
}
@media screen and (max-width: 1024px) {
    .qc-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.qc__head {
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .qc__head {
        margin-bottom: 3.79vh;
    }
}
.qc__body {
    color: var(--text-color-primary);
    display: flex;
    flex-direction: column;
    gap: 7.22vh;
}
@media screen and (max-width: 768px) {
    .qc__body {
        gap: 7.58vh;
    }
}
.qc__item-title {
    font-size: 1.5rem;
    line-height: 1.75;
    margin-bottom: 2.78vh;
}
@media screen and (max-width: 768px) {
    .qc__item-title {
        font-size: 1.25rem;
        line-height: 1;
        margin-bottom: 2.84vh;
    }
}
.qc__jas-inner {
    background-color: var(--light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    gap: 3.91vw;
    justify-content: space-between;
    padding: 5.93vh 3.33vw;
}
@media screen and (max-width: 768px) {
    .qc__jas-inner {
        align-items: center;
        flex-direction: column-reverse;
        gap: 3.55vh;
        margin-bottom: 1.9vh;
    }
    .qc__jas-title {
        text-align: center;
    }
}
.qc__jas-descs {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    gap: 2.96vh;
    line-height: 2;
}
.qc__cf-step {
    display: grid;
    grid-template-columns: repeat(3, 32.01%);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 13.3%;
    grid-row-gap: 8.89vh;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .qc__cf-step {
        gap: 8.53vh;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        width: 100%;
    }
}
.qc__cf-item {
    gap: 2.04vh;
    position: relative;
}
@media screen and (max-width: 768px) {
    .qc__cf-item {
        flex-direction: row;
    }
}
.qc__cf-item:first-child {
    grid-area: 1/1/2/2;
}
.qc__cf-item:nth-child(2) {
    grid-area: 2/2/3/3;
    transform: translateX(-70%);
}
.qc__cf-item:nth-child(3) {
    grid-area: 1/2/2/3;
}
.qc__cf-item:nth-child(4) {
    grid-area: 2/3/3/4;
    transform: translateX(-70%);
}
@media screen and (max-width: 768px) {
    .qc__cf-item:first-child {
        grid-area: 1/1/2/2;
        margin-left: 0;
        transform: translateX(0);
    }
    .qc__cf-item:nth-child(2) {
        grid-area: 2/1/3/2;
        margin-left: 0;
        transform: translateX(0);
    }
    .qc__cf-item:nth-child(3) {
        grid-area: 3/1/4/2;
        margin-left: 0;
        transform: translateX(0);
    }
    .qc__cf-item:nth-child(4) {
        grid-area: 4/1/5/2;
        margin-left: 0;
        transform: translateX(0);
    }
}
.qc__cf-item:after,
.qc__cf-item:before { 
    background: url(assets/image/arrow_red.svg) no-repeat;
    content: "";
    height: 10px;
    left: 14.17%;
    position: absolute;
    top: -4.44vh;
    width: 20px;
}
.qc__cf-item:first-of-type:after,
.qc__cf-item:nth-of-type(3):after,
.qc__cf-item:nth-of-type(3):before,
.qc__cf-item:nth-of-type(4):after {
    display: none;
}
.qc__cf-item:nth-of-type(2):after {
    left: auto;
    right: 14.17%;
    transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
    .qc__cf-item:after,
    .qc__cf-item:before {
        display: none;
    }
    .qc__cf-item:not(:nth-of-type(4)):after {
        bottom: -4.265vh;
        display: block;
        left: 50%;
        right: auto;
        top: auto;
    }
    .qc__cf-item:nth-of-type(2):after {
        transform: rotate(0);
    }
    .qc__cf-item:nth-of-type(4):before {
        display: none;
    }
    .qc__cf-image {
        width: 52.86%;
    }
}
.qc__cf-image {
    border-radius: var(--radius-sm);
}
.qc__cf-number {
    color: var(--red-brown);
    font-size: 1.25rem;
    line-height: 1.2;
}
@media screen and (max-width: 768px) {
    .qc__cf-number {
        display: none;
    }
}
.qc__cf-title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 1.48vh;
}
@media screen and (max-width: 768px) {
    .qc__cf-title {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 0.12vh;
    }
}
.qc__cf-desc {
    font-size: 1rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .qc__cf-desc {
        font-size: 0.875rem;
        line-height: 1.714;
    }
}
.qc__qm-inner {
    background-color: var(--light-gray);
    border-radius: var(--radius-sm);
    gap: 3.91vw;
    justify-content: space-between;
    padding: 5.93vh 3.33vw;
}
@media screen and (max-width: 768px) {
    .qc__qm-inner {
        background-color: transparent;
        border: 1px solid var(--dark-green);
        padding: 2.84vh 6.86%;
    }
}
.qc__qm-list {
    display: grid;
    gap: 2.08vw;
    grid-template-columns: repeat(4, 21.21%);
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .qc__qm-list {
        gap: 3.79vh;
        grid-template-columns: 1fr;
    }
}
.qc__qm-item-title {
    align-items: center;
    display: flex;
    gap: 0.83vw;
    margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
    .qc__qm-item-title {
        margin-bottom: 1.9vh;
    }
}
.qc__qm-item-number {
    color: var(--red-brown);
    display: block;
    font-size: 1.5rem;
    line-height: 1.167;
}
@media screen and (max-width: 768px) {
    .qc__qm-item-number {
        font-size: 1.25rem;
        line-height: 1.2;
    }
}
.qc__qm-item-label {
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    line-height: 1.4;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .qc__qm-item-label {
        font-size: 1rem;
        line-height: 1.75;
    }
}
.qc__qm-item-desc {
    font-size: 0.875rem;
    line-height: 1.714;
}
.interview-wrapper {
    background-color: var(--dark-green);
    margin-bottom: 13.89vh;
    padding: 7.13vh 23.96vw 11.85vh;
}
@media screen and (max-width: 768px) {
    .interview-wrapper {
        margin-bottom: 0;
        padding: 9.48vh 5.13vw 18.96vh;
    }
}
.interview__head {
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .interview__head {
        margin-bottom: 3.79vh;
    }
}
.interview__card {
    align-items: center;
    background-color: var(--bg-color-base);
    color: var(--text-color-primary);
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 472px;
    max-width: 320px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .interview__item {
        max-width: 100%;
        width: 100%;
    }
}
.interview__card-image,
.interview__card-img {
    height: 100%;
    width: 100%;
}
.interview__card-img {
    -o-object-fit: cover;
    object-fit: cover;
}
.interview__card-text {
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
    padding: 2.22vh 2.08vw 3.7vh;
    position: relative;
}
@media screen and (max-width: 768px) {
    .interview__card-text {
        padding: 2.84vh 10.26vw 4.74vh;
    }
}
.interview__card-text:before {
    background-color: var(--dark-green);
    content: "";
    height: calc(100% - 3.7vh);
    left: 1.25vw;
    position: absolute;
    top: 0;
    width: 1px;
}
@media screen and (max-width: 768px) {
    .interview__card-text:before {
        height: calc(100% - 4.74vh);
        left: 6.15vw;
    }
}
.interview__card-title {
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    line-height: 1.4;
}
.interview__card-profile {
    display: flex;
    flex-direction: column;
    position: relative;
}
.interview__card-profile:after {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}
.interview__card-position {
    font-size: clamp(0.75rem, 0.73vw, 0.875rem);
    line-height: 2;
}
.interview__card-name {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 1;
}
.interview__swiper {
    overflow: hidden;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .interview__swiper .swiper-slide {
        max-width: 100%;
        width: 89.74% !important;
    }
}
.progressbar {
    background: var(--bg-color-base);
    border-radius: 1000px;
    height: 16px;
    margin-top: 32px;
    overflow: hidden;
    position: relative;
    width: 100%;
    span {
        background: var(--light-green);
        border-radius: 1000px;
        bottom: 0;
        display: inline-block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transform: scaleX(0);
        transform-origin: left center;
        transition-timing-function: linear;
        transition: transform 0.3s ease;
        width: 100%;
    }
}
.interview__nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 16px;
}
.interview__next,
.interview__prev {
    background: none;
    border: none;
    cursor: pointer;
}
.interview__nav-arrow {
    height: 100%;
    width: 100%;
}
.interview__nav-arrow--next {
    transform: rotate(180deg);
}
.swiper-button-prev:after {
    background-image: url(https://junpei-sugiyama.com/wp-content/uploads/2021/02/e0379d76f3f78d80011fc748c93b6cbe.png);
}
.swiper-button-next:after {
    background-image: url(https://junpei-sugiyama.com/wp-content/uploads/2021/02/e1bdcdb129887882c13aaf571f555b16.png);
}
.swiper-slide img {
    height: auto;
    width: 100%;
}
.for-whom-wrapper {
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 1024px) {
    .for-whom-wrapper {
        padding: 9.24vh 0 9.48vh;
    }
}
.for-whom-wrapper:after {
    background-color: hsla(60, 21%, 94%, 0.9);
}
.for-whom__title {
    display: flex;
    font-size: clamp(1.5rem, 2.08vw, 2.5rem);
    justify-content: center;
    margin-bottom: 5.93vh;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .for-whom__title {
        font-size: 1.5rem;
        line-height: 1.5;
        margin-bottom: 3.79vh;
        text-align: center;
    }
}
.for-whom__image {
    border-radius: var(--radius-sm);
    margin-bottom: 4.44vh;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .for-whom__image {
        height: 29.38vh;
        margin-bottom: 5.69vh;
    }
}
.for-whom__image img {
    border-radius: var(--radius-sm);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.for-whom__list {
    display: grid;
    gap: 4.17vw;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
}
@media screen and (max-width: 1024px) {
    .for-whom__list {
        gap: 9.48vh;
        grid-template-columns: 1fr;
        padding-left: 5.13vw;
        padding-right: 5.13vw;
    }
}
.for-whom__item {
    display: flex;
    flex-direction: column;
    gap: 2.22vh;
}
@media screen and (max-width: 768px) {
    .for-whom__item {
        gap: 2.84vh;
    }
}
.for-whom__item-title {
    border-bottom: 1px solid var(--red-brown);
    font-size: clamp(1.25rem, 1.25vw, 1.5rem);
    height: 30%;
    padding-bottom: 2.2vh;
    line-height: 1.25;
}
@media screen and (max-width: 768px) {
    .for-whom__item-title {
        font-size: 1.25rem;
        line-height: 1.35;
        padding-bottom: 2.84vh;
    }
}
.for-whom__item-desc {
    font-size: 1rem;
    line-height: 1.771;
}
.media-wrapper {
    overflow: hidden;
    padding-left: 23.96vw;
    padding-top: 14.81vh;
}
@media screen and (max-width: 768px) {
    .media-wrapper {
        padding: 9.48vh 0 9.48vh 5.13vw;
    }
}
.media__inner {
    display: flex;
    gap: 2.5vw;
    margin-right: -5.94%;
}
@media screen and (max-width: 768px) {
    .media__inner {
        flex-direction: column;
        gap: 3.79vh;
        margin-right: 0;
    }
}
.media__head {
    display: flex;
    flex-direction: column;
    gap: 2.96vh;
}
@media screen and (max-width: 768px) {
    .media__head {
        display: grid;
        grid-template-areas: "title control" "link . ";
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        justify-content: space-between;
        padding-right: 5.13vw;
        row-gap: 1.9vh;
    }
    .media .c-title {
        grid-area: title;
        min-width: 0;
    }
    .media__control-area {
        display: flex;
        gap: 4.27vw;
        grid-area: control;
    }
    .media__link {
        grid-area: link;
    }
}
.media__control-area {
    align-items: center;
    display: flex;
    gap: 0.83vw;
}
.media__arrow--right {
    transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
    .media__arrow--left,
    .media__arrow--right {
        height: 40px;
        width: 40px;
    }
}
.media__link {
    color: var(--text-color-primary);
    padding-left: 12px;
    position: relative;
}
.media__link:before {
    background: var(--red-brown);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
    height: calc(tan(60deg) * 16px / 2);
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
}
.media__list {
    display: grid;
    gap: 0.42vw;
    grid-template-columns: repeat(4, minmax(0, 320px));
    grid-template-rows: 1fr;
}
@media screen and (max-width: 768px) {
    .media__list {
        display: flex;
        gap: 4.1vw;
    }
}
.media__card {
    gap: 2.22vh;
}
@media screen and (max-width: 768px) {
    .media__card {
        width: 75.7%;
    }
    .media__card-image {
        height: 23.34vh;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
..media__card-image {
    border-radius: var(--radius-sm);
}
@media screen and (max-width: 768px) {
    .media__card-image {
        height: 23.34vh;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.media__card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media screen and (max-width: 768px) {
    .media__card-meta {
        gap: 0;
    }
}
.media__card-cat {
    align-items: center;
    background-color: var(--light-green);
    border-radius: 1000px;
    color: var(--text-color-white);
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    height: 20px;
    justify-content: center;
    width: 84px;
}
.media__card-title {
    font-size: 1.125em;
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .media__card-title {
        font-size: 1rem;
        line-height: 1.75;
    }
}
.media__card-date {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
}
.media-tags__list {
    align-items: center;
    display: flex;
    gap: 8px;
}
.media-tags__item-label {
    background-color: var(--light-gray);
    border-radius: 4px;
    color: var(--light-green);
    display: block;
    font-size: 0.875rem;
    padding: 0.37vh 0.21vw;
}
@media screen and (max-width: 768px) {
    .media-tags__item-label {
        font-size: 0.75rem;
        padding: 0.95vh 2.05vw;
    }
}
.contact-wrapper {
    padding: 14.81vh 8.75vw;
}
@media screen and (max-width: 768px) {
    .contact-wrapper {
        padding: 0;
    }
}
.contact .bg-wrapper {
    background-image: url(assets/image/bg_contact.png);
    border-radius: 64px;
    padding: 13.7vh 15.42vw;
}
@media screen and (max-width: 768px) {
    .contact .bg-wrapper {
        border-radius: 0;
        padding: 5.69vh 19.23vw 9.48vh;
    }
}
.contact .bg-wrapper:after {
    background-color: hsla(72, 34%, 55%, 0.9);
    border-radius: 64px;
    transition: background-color 0.2s ease;
}
@media screen and (max-width: 768px) {
    .contact .bg-wrapper:after {
        border-radius: 0;
    }
}
.contact .bg-wrapper:hover:after {
    background-color: #b3c46fe6;
}
.contact__inner {
    align-items: center;
    display: flex;
    gap: 6.88vw;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .contact__inner {
        flex-direction: column;
        gap: 6.64vh;
    }
}
.contact__text {
    color: var(--text-color-white);
    display: flex;
    flex-direction: column;
    gap: 2.96vh;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .contact__text {
        gap: 1.9vh;
        text-align: center;
    }
}
.contact__text.recruit {
    font-size: 24px;
}
.contact__title {
    font-size: 2.5rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .contact__title {
        font-size: 1.5rem;
    }
}
.contact__desc {
    font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
    .contact__desc {
        font-size: 1rem;
        line-height: 1.5;
    }
}
.contact__link {
    align-items: center;
    color: var(--text-color-white);
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 300;
    justify-content: center;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .contact__link {
        font-size: 1.25rem;
    }
}
.contact__link-button {
    height: auto;
    width: 83px;
}
@media screen and (max-width: 768px) {
    .contact__link-button {
        width: 124px;
    }
}
.footer {
    background-color: var(--dark-green);
    color: var(--text-color-white);
    padding: 5.93vh 23.96vw 2.22vh;
}
@media screen and (max-width: 768px) {
    .footer {
        padding: 4.74vh 0 1.9vh;
    }
}
.footer__head {
    border-bottom: 1px solid #fff;
    padding-bottom: 2.22vh;
}
@media screen and (max-width: 768px) {
    .footer__head {
        margin: 0 5.13vw;
        padding: 0 0 2.84vh;
    }
}
.footer__link {
    display: block;
    max-width: 69vw;
}
.footer__image {
    max-width: 100%;
    height: auto;
}
.footer__label {
    display: block;
    font-size: 1rem;
    margin-top: 0.75rem;
}
.footer__body {
    display: flex;
    gap: 5vw;
    justify-content: space-between;
    margin-bottom: 7.78vh;
    padding-top: 2.22vh;
}
@media screen and (max-width: 1024px) {
    .footer__body {
        flex-direction: column;
        gap: 5.69vh;
        margin-bottom: 5.69vh;
        overflow: hidden;
        padding-top: 2.84vh;
    }
}
.footer__address {
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
}
@media screen and (max-width: 768px) {
    .footer__address {
        padding: 0 5.13vw;
    }
}
.footer__address-text {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 1.25vw;
    position: relative;
}
@media screen and (max-width: 768px) {
    .footer__address-text {
        padding-left: 6.15vw;
    }
}
.footer__address-text:before {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    left: 0;
    position: absolute;
}
.footer__address-text--locate:before {
    background-image: url(assets/image/icon_map.svg);
    height: 17.01px;
    top: 0;
    width: 11.59px;
}
.footer__address-text--mail:before {
    background-image: url(assets/image/icon_mail.svg);
    height: 11.12px;
    top: 50%;
    transform: translateY(-50%);
    width: 15.09px;
}
.footer__menu {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 1.5vw;
    grid-row-gap: 2.22vh;
}
@media screen and (max-width: 768px) {
    .footer__menu {
        grid-column-gap: 0;
        grid-row-gap: 0;
    }
}
.footer__menu-item {
    font-size: 0.95rem;
}
.footer__menu-item:first-of-type {
    grid-area: 1/1/2/2;
}
.footer__menu-item:nth-of-type(2) {
    grid-area: 2/1/3/2;
}
.footer__menu-item:nth-of-type(3) {
    grid-area: 3/1/4/2;
}
.footer__menu-item:nth-of-type(4) {
    grid-area: 1/2/2/3;
}
.footer__menu-item:nth-of-type(5) {
    grid-area: 2/2/3/3;
}
.footer__menu-item:nth-of-type(6) {
    grid-area: 1/3/2/4;
}
.footer__menu-item:nth-of-type(7) {
    grid-area: 2/3/3/4;
}
.footer__menu-item:nth-of-type(8) {
    grid-area: 1/4/2/5;
}
.footer__menu-item:nth-of-type(9) {
    grid-area: 2/4/3/5;
}
@media screen and (max-width: 768px) {
    .footer__menu {
        border: 1px solid #1f614c;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: repeat(5, 7vh);
    }
    .footer__menu-item {
        align-items: center;
        border-bottom: 1px solid #1f614c;
        border-right: 1px solid #1f614c;
        display: flex;
        flex-direction: column;
        height: auto;
        justify-content: center;
        margin: -1px;
    }
    .footer__menu-item:first-of-type {
        grid-area: 1/1/2/2;
    }
    .footer__menu-item:nth-of-type(2) {
        grid-area: 1/2/2/3;
    }
    .footer__menu-item:nth-of-type(3) {
        grid-area: 2/1/3/2;
    }
    .footer__menu-item:nth-of-type(4) {
        grid-area: 2/2/3/3;
    }
    .footer__menu-item:nth-of-type(5) {
        grid-area: 3/1/4/2;
    }
    .footer__menu-item:nth-of-type(6) {
        grid-area: 3/2/4/3;
    }
    .footer__menu-item:nth-of-type(7) {
        grid-area: 4/1/5/2;
    }
    .footer__menu-item:nth-of-type(8) {
        grid-area: 4/2/5/3;
    }
    .footer__menu-item:nth-of-type(9) {
        grid-area: 5/1/6/2;
    }
    .footer__menu-link {
        align-items: center;
        display: flex;
        height: 100%;
        justify-content: center;
        width: 100%;
    }
}
.footer__label,
.footer__menu-link {
    color: var(--text-color-white);
}
.footer__menu-link {
    position: relative;
}
.footer__menu-link:after {
    background-color: #fff;
    content: "";
    height: 2px;
    scale: 1 0.5;
    left: 0;
    position: absolute;
    bottom: -1px;
    transition: width 0.2s ease;
    width: 0;
}
@media screen and (max-width:768px) {
    .footer__menu-link:after {
        content: none;
    }
}
.footer__menu-link:hover:after {
    width: 100%;
}
.foooter__copyright {
    display: block;
    font-size: 0.75rem;
    text-align: center;
}
.company-profile .header {
    background-color: transparent;
}
.company-profile .fv {
    background-image: url(assets/image/fv_company-profile.png);
    background-size: cover;
    height: 100vh;
    margin-top: 0;
    width: 100%;
}
.company-profile .fv__copy {
    background-color: transparent;
}
@media screen and (max-width: 768px) {
    .company-profile .fv__copy {
        padding: 24.64vh 23.08vw 24.64vh 5.13vw;
        top: 0;
    }
}
.company__map,
.feature__card-image,
.feature__card-img,
.group,
.primary__link,
.vision__list {
    border-radius: var(--radius-sm);
}
.primary__link:hover {
    background-color: var(--link-hover-color);
}
.breadcrumb {
    align-items: center;
    background-color: var(--bg-color-base);
    content: "";
    display: flex;
    height: 18px;
    left: 3.33vw;
    padding: 8px;
    position: absolute;
    top: 12.59vh;
    width: auto;
    z-index: 50;
}
@media screen and (max-width: 768px) {
    .breadcrumb {
        height: 60px;
        left: auto;
        padding: 2.84vh 5.13vw;
        top: 80px;
    }
}
.breadcrumb__list {
    align-items: center;
    border-radius: var(--radius-sm);
    color: var(--text-color-primary);
    display: flex;
    font-size: 0.875rem;
    gap: 1.15vw;
    list-style: none;
}
@media screen and (max-width: 768px) {
    .breadcrumb__list {
        gap: 8.21vw;
    }
}
.breadcrumb__link {
    font-size: 0.875rem;
    height: 100%;
    line-height: 1;
    width: 100%;
}
.breadcrumb__item:not(:last-of-type),
.breadcrumb__link {
    position: relative;
}
.breadcrumb__item:not(:last-of-type):after {
    color: var(--red-brown);
    content: ">";
    position: absolute;
    right: -1vw;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .breadcrumb__item:not(:last-of-type):after {
        right: -6.1vw;
    }
}
.l-fv {
    align-items: center;
    background-color: var(--bg-color-base);
    display: flex;
    gap: 3.13vw;
    height: 64.81vh;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    margin-top: 80px;
}
@media screen and (max-width: 768px) {
    .l-fv {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 0;
        height: 100vh;
        padding-top: 140px;
        margin-top: 0;
    }
}
.l-fv.custom-media {
    margin-top: 0;
}
@media screen and (max-width:768px) {
    .l-fv.custom-media {
        padding-top: 24px;
    }
}
.l-fv__image {
    height: 100%;
    width: 50%;
}
@media screen and (max-width: 768px) {
    .l-fv__image {
        height: 42.65vh;
        width: 100%;
    }
}
.l-fv__img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.l-fv__text {
    color: var(--text-color-primary);
}
@media screen and (max-width: 768px) {
    .l-fv__text {
        margin-top: -7.11vh;
    }
}
.c-page-title {
    color: var(--text-color-primary);
    display: flex;
    flex-direction: column;
    margin-bottom: 5.19vh;
}
.c-page-title--ja {
    background-color: var(--bg-color-base);
    font-size: clamp(2rem, 2.08vw, 2.5rem);
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .c-page-title--ja {
        border-radius: 0 12px 0 0;
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 0;
        padding: 1.9vh 5.13vw;
        width: -moz-fit-content;
        width: fit-content;
    }
    .c-page-title--en {
        padding-left: 5.13vw;
    }
}
.c-page-title--en {
    font-size: 1rem;
    line-height: 1.25;
}
@media screen and (max-width: 768px) {
    .c-page-title--en {
        font-size: 0.875rem;
    }
}
.c-fv__copy {
    background-color: var(--bg-color-base);
    font-size: clamp(0.875rem, 1.04vw, 1.25rem);
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .c-fv__copy {
        font-size: 0.875rem;
        padding: 1.9vh 5.13vw;
        width: 100%;
    }
}
.page-initiatives img:not(.l-fv__img) {
    border-radius: var(--radius-sm);
}
.abolished-school-wrapper {
    background-color: var(--light-gray);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .abolished-school-wrapper {
        padding: 0 0 14.22vh;
    }
}
.page-initiatives .c-title .c-title--ja:after {
    display: none;
}
.abolished-school__image {
    height: 43.15vh;
    width: 100%;
}
.abolished-school__card-img,
.abolished-school__img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.abolished-school__text {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.44vh 0 7.41vh;
}
@media screen and (max-width: 768px) {
    .abolished-school__text {
        padding: 3.79vh 5.13vw 9.48vh;
    }
}
.abolished-school__title {
    font-size: clamp(1.25rem, 1.67vw, 2rem);
    line-height: 1.75;
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .abolished-school__title {
        font-size: 1.25rem;
        margin-bottom: 3.79vh;
    }
}
.abolished-school__desc {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 2.22vh;
}
@media screen and (max-width: 768px) {
    .abolished-school__desc {
        line-height: 1.75;
        margin-bottom: 3.79vh;
    }
}
.abolished-school__locate {
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
}
.abolished-school__list {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .abolished-school__list {
        gap: 7.58vh;
        grid-template-columns: 100%;
        padding: 0 5.13vw;
    }
}
.abolished-school__card,
.abolished-school__card-text {
    display: flex;
    flex-direction: column;
    gap: 2.22vh;
}
.abolished-school__card-title {
    font-size: 1.25rem;
    line-height: 1.8;
}
.abolished-school__card-desc {
    font-size: 1rem;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .abolished-school__card-desc {
        font-size: 1rem;
        line-height: 1.75;
    }
}
.agri-welfare-overview-wrapper {
    background-color: var(--bg-color-base);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .agri-welfare-overview-wrapper {
        border-bottom: 1px solid #87a922;
        padding: 9.48vh 5.13vw;
    }
}
.agri-welfare-overview__head {
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .agri-welfare-overview__head {
        margin-bottom: 1.9vh;
    }
}
.agri-welfare-overview__content {
    align-items: center;
    display: flex;
    flex-direction: column;
}
.agri-welfare-overview__list {
    color: var(--text-color-primary);
    display: flex;
    gap: 2.5vw;
    justify-content: space-between;
    margin-bottom: 6.67vh;
}
@media screen and (max-width: 768px) {
    .agri-welfare-overview__list {
        flex-direction: column;
        gap: 5.69vh;
        margin-bottom: 4.74vh;
        width: 100%;
    }
}
.agri-welfare-overview__card {
    display: flex;
    flex-direction: column;
    gap: 2.96vh;
}
@media screen and (max-width: 768px) {
    .agri-welfare-overview__card {
        gap: 1.9vh;
    }
}
.agri-welfare-overview__card-title {
    font-size: 1.5rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .agri-welfare-overview__card-title {
        font-size: 1rem;
        line-height: 1.75;
    }
}
.agri-welfare-overview__card-img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.agri-welfare-overview__link {
    align-items: center;
    background-color: var(--dark-green);
    border-radius: var(--radius-sm);
    color: var(--text-color-white);
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    justify-content: center;
    line-height: 1.75;
    padding: 10px 5vw;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 768px) {
    .agri-welfare-overview__link {
        padding: 10px 12.31vw;
    }
}
.agri-welfare-overview__link:hover {
    background-color: var(--link-hover-color);
}
.substrate-recycling-wrapper {
    background-color: var(--bg-color-base);
    padding: 14.81vh 23.96vw 0;
}
@media screen and (max-width: 768px) {
    .substrate-recycling-wrapper {
        border-bottom: 1px solid #87a922;
        padding: 9.48vh 5.13vw;
    }
}
.substrate-recycling__head {
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .substrate-recycling__head {
        margin-bottom: 1.9vh;
    }
}
.substrate-recycling__content {
    align-items: center;
    display: flex;
    flex-direction: column;
}
.substrate-recycling__list {
    color: var(--text-color-primary);
    display: flex;
    gap: 2.5vw;
    justify-content: space-between;
    margin-bottom: 6.67vh;
}
@media screen and (max-width: 768px) {
    .substrate-recycling__list {
        flex-direction: column;
        gap: 5.69vh;
        margin-bottom: 4.74vh;
        width: 100%;
    }
}
.substrate-recycling__card {
    display: flex;
    flex-direction: column;
    gap: 2.96vh;
}
@media screen and (max-width: 768px) {
    .substrate-recycling__card {
        gap: 1.9vh;
    }
}
.substrate-recycling__card-img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.substrate-recycling__card-title {
    font-size: 1.5rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .substrate-recycling__card-title {
        font-size: 1rem;
        line-height: 1.75;
    }
}
.substrate-recycling__card-desc {
    font-size: 1rem;
    line-height: 2;
}
.page-agri-welfare img:not(.l-fv__img) {
    border-radius: var(--radius-sm);
}
.about-agri-welfare-wrapper {
    background-color: var(--light-gray);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .about-agri-welfare-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.about-agri-welfare__title--ja:after {
    display: none;
}
.about-agri-welfare__hedding {
    margin-bottom: 1.21vh;
}
@media screen and (max-width: 768px) {
    .about-agri-welfare__hedding {
        margin-bottom: 3.79vh;
    }
}
.about-agri-welfare__desc {
    font-size: 1rem;
    line-height: 2.5;
}
.emp-support-wrapper {
    background-color: var(--bg-color-base);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .emp-support-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.emp-support__content {
    display: flex;
    flex-direction: column;
    gap: 14.81vh;
}
.emp-support__item-inner {
    display: flex;
    flex-direction: column;
    gap: 2.96vh;
}
@media screen and (max-width: 768px) {
    .emp-support__item-inner {
        gap: 3.79vh;
    }
}
.emp-support__head {
    margin-bottom: 3.7vh;
}
.aw-section-intro {
    align-items: center;
    display: flex;
    gap: 2.08vw;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .aw-section-intro {
        flex-direction: column-reverse;
        gap: 2.84vh;
    }
}
.aw-section-intro__image {
    width: 69.3%;
}
.aw-section-intro__img,
.aw-section-main__card-img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.aw-section-intro__text {
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
    width: 38%;
}
@media screen and (max-width: 768px) {
    .aw-section-intro__image,
    .aw-section-intro__text,
    .aw-section-main__card-img {
        width: 100%;
    }
}
.aw-section-intro__title {
    font-size: clamp(1.125rem, 1.042vw, 1.25rem);
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .aw-section-intro__title {
        font-size: 1.25rem;
    }
}
.aw-section-intro__desc {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 1.75;
}
.aw-section-main-wrapper {
    background-color: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 3.7vh 2.08vw;
}
@media screen and (max-width: 768px) {
    .aw-section-main-wrapper {
        padding: 4.74vh 8.21vw 2.84vh;
    }
}
.aw-section-main__title {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.22vh;
    text-align: center;
}
.aw-section-main__desc {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .page-agri-welfare .aw-section-main__desc {
        text-align: center;
    }
}
.aw-section-main__list {
    display: flex;
    gap: 2.08vw;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .aw-section-main__list {
        flex-direction: column;
        gap: 4.74vh;
    }
}
.aw-section-main__card-image {
    margin-bottom: 0.74vh;
}
@media screen and (max-width: 768px) {
    .aw-section-main__card-image {
        margin-bottom: 2.84vh;
    }
}
.aw-section-main__card-img {
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .aw-section-main__card-img {
        height: 100%;
        width: 100%;
    }
}
.emp-support__workplace-system-card-title {
    font-size: clamp(1.125rem, 1.04vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 1.48vh;
}
@media screen and (max-width: 768px) {
    .emp-support__workplace-system-card-title {
        margin-bottom: 1.9vh;
    }
}
.emp-support__workplace-system-card-desc {
    font-size: 1rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .emp-support__flow-seeker-list {
        gap: 10.66vh;
    }
}
.emp-support__flow-seeker-list .emp-support__flow-seeker-card-image {
    margin-bottom: 0.74vh;
    position: relative;
}
@media screen and (max-width: 500px) {
    .emp-support__flow-seeker-list .emp-support__flow-seeker-card-image {
        height: 25.12vh;
    }
}
.emp-support__flow-seeker-item:not(:last-of-type)
    .emp-support__flow-seeker-card-image:after {
    background: url(assets/image/arrow_red.svg) no-repeat;
    content: "";
    height: 10px;
    position: absolute;
    right: -11%;
    top: 50%;
    transform: translate(50%, -50%) rotate(-90deg);
    width: 20px;
}
@media (max-width: 768px) {
    .emp-support__flow-seeker-item {
        position: relative;
    }
    .emp-support__flow-seeker-item:not(:last-of-type)
        .emp-support__flow-seeker-card-image:after {
        display: none;
    }
    .emp-support__flow-seeker-item:not(:last-of-type):after {
        background: url(assets/image/arrow_red.svg) no-repeat;
        bottom: -15%;
        content: "";
        height: 10px;
        left: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        width: 20px;
    }
}
.emp-support__flow-seeker-card-title {
    font-size: clamp(1.125rem, 1.04vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 1.48vh;
}
.emp-support__flow-seeker-card-desc {
    font-size: clamp(0.75rem, 0.73vw, 0.875rem);
    line-height: 1.714;
}
.aw-section-main__title.emp-support__flow-employer-title {
    font-size: 1.5em;
    line-height: 1.75;
    text-align: left;
}
.emp-support__flow-employer-item {
    border: 1px solid var(--dark-green);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
    padding: 2.22vh 1.25vw;
    position: relative;
}
@media screen and (max-width: 768px) {
    .emp-support__flow-employer-item {
        gap: 0.95vh;
        padding: 2.84vh 6.15vw;
    }
}
.emp-support__flow-employer-item:not(:last-of-type):after {
    background: url(assets/image/arrow_red.svg) no-repeat;
    content: "";
    height: 10px;
    position: absolute;
    right: -7.4%;
    top: 50%;
    transform: translate(50%, -50%) rotate(-90deg);
    width: 20px;
}
@media screen and (max-width: 768px) {
    .emp-support__flow-employer-item:not(:last-of-type):after {
        bottom: -22%;
        content: "";
        position: absolute;
        right: 50%;
        top: auto;
        transform: translateY(-50%) rotate(0);
    }
}
.emp-support__flow-employer-item-title {
    align-items: center;
    display: flex;
    gap: 0.83vw;
}
@media screen and (max-width: 768px) {
    .emp-support__flow-employer-item-title {
        gap: 4.1vw;
    }
}
.emp-support__flow-employer-item-number {
    color: var(--red-brown);
    font-family: Inter, "sans-serif";
    font-size: clamp(1.25rem, 1.667vw, 2rem);
    font-weight: 300;
    line-height: 1.219;
}
@media screen and (max-width: 768px) {
    .emp-support__flow-employer-item-number {
        font-size: 1.5em;
        line-height: 1.208;
    }
}
.emp-support__flow-employer-item-label {
    font-size: clamp(1rem, 1.042vw, 1.25rem);
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .emp-support__flow-employer-item-label {
        font-size: 1rem;
        line-height: 1.75;
    }
}
.emp-support__flow-employer-item-desc {
    font-size: clamp(0.75rem, 0.73vw, 0.875rem);
    line-height: 1.714;
}
@media screen and (max-width: 768px) {
    .emp-support__flow-employer-item-desc {
        font-size: 0.875rem;
    }
    .aw-section-main__title.emp-support__feature-title {
        display: flex;
        justify-content: center;
        white-space: nowrap;
    }
}
.aw-section-main__list.emp-support__feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, 280px));
    max-height: 261px;
}
@media screen and (max-width: 768px) {
    .aw-section-main__list.emp-support__feature-list {
        grid-template-columns: 1fr;
        max-height: none;
    }
}
.emp-support__feature-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1.11vh;
    height: 100%;
    max-width: none;
}
.emp-support__feature-card-title {
    align-items: center;
    display: flex;
    gap: 0.42vw;
    margin-bottom: 1.48vh;
}
.emp-support__feature-card-number {
    color: var(--red-brown);
    font-family: Inter, "sans-serif";
    font-size: 1.25rem;
    font-size: clamp(0.875rem, 1.042vw, 1.25rem);
    font-weight: 400;
    line-height: 1.2;
}
.emp-support__feature-card-label {
    font-size: clamp(0.75rem, 0.73vw, 1.125rem);
    line-height: 1.778;
}
.emp-support__feature-card-desc {
    font-size: clamp(0.75rem, 0.73vw, 0.875rem);
    line-height: 1.714;
}
.emp-support__feature-card-image {
    flex-shrink: 0;
    height: 12.96vh;
    margin-bottom: 0;
    overflow: hidden;
    width: 100%;
}
@media screen and (max-width: 500px) {
    .emp-support__feature-card-image {
        height: 25.12vh;
    }
}
.emp-support__feature-card-img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
}
.create-emp-opp-wrapper {
    background-color: var(--light-gray);
    clip-path: polygon(0 43%, 100% 0, 100% 100%, 0 100%);
    color: var(--text-color-primary);
    padding: 35.56vh 23.96vw 14.81vh;
    position: relative;
}
@media screen and (max-width: 768px) {
    .create-emp-opp-wrapper {
        background-color: transparent;
        clip-path: none;
        padding: 4.74vh 5.13vw 14.22vh;
    }
}
.create-emp-opp__inner {
    background-color: var(--bg-color-base);
    border: 1px solid var(--dark-green);
    border-radius: var(--radius-sm);
    padding: 3.7vh 2.08vw;
}
@media screen and (max-width: 768px) {
    .create-emp-opp__inner {
        padding: 3.79vh 8.21vw;
    }
}
.create-emp-opp__head {
    margin-bottom: 3.7vh;
}
.create-emp-opp__head-br {
    display: none;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .create-emp-opp__head-br {
        display: block;
    }
}
.create-emp-opp__content {
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .aw-section-intro.create-emp-opp__content {
        flex-direction: column;
    }
}
.aw-section-intro__image.create-emp-opp__image {
    width: 51%;
}
@media screen and (max-width: 768px) {
    .aw-section-intro__image.create-emp-opp__image {
        width: 100%;
    }
    .aw-section-intro__label.create-emp-opp__label {
        font-size: 1.25rem;
        line-height: 1.8;
    }
    .aw-section-intro__desc.create-emp-opp__desc {
        font-size: 1rem;
        line-height: 1.75;
    }
}
.page-fc-recruit img:not(.l-fv__img) {
    border-radius: var(--radius-sm);
}
.about-fc-recruit-wrapper {
    background-color: var(--light-gray);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .about-fc-recruit-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.about-fc-recruit__title--ja:after {
    display: none;
}
.about-fc-recruit__hedding {
    margin-bottom: 1.21vh;
}
@media screen and (max-width: 768px) {
    .about-fc-recruit__hedding {
        margin-bottom: 3.79vh;
    }
}
.about-fc-recruit__desc {
    font-size: 1rem;
    line-height: 2.5;
}
.fc-feature-wrapper {
    background-color: var(--bg-color-base);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .fc-feature-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.fc-feature__head {
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .fc-feature__head {
        margin-bottom: 3.79vh;
    }
}
.fc-feature__list {
    display: flex;
    flex-direction: column;
    gap: 7.41vh;
}
@media screen and (max-width: 768px) {
    .fc-feature__list {
        gap: 7.58vh;
    }
}
.fc-feature__card-inner {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    gap: 2.08vw;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .fc-feature__card-inner {
        flex-direction: column-reverse;
        gap: 2.84vh;
    }
}
.fc-feature__item:nth-of-type(2n) .fc-feature__card-inner {
    flex-direction: row;
}
@media screen and (max-width: 768px) {
    .fc-feature__item:nth-of-type(2n) .fc-feature__card-inner {
        flex-direction: column-reverse;
    }
}
.fc-feature__card-image {
    height: auto;
    width: 48.1%;
}
@media screen and (max-width: 768px) {
    .fc-feature__card-image {
        height: 30.09vh;
        width: 100%;
    }
}
.fc-feature__card-img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.fc-feature__card-text {
    display: flex;
    flex-direction: column;
    gap: 2.96vh;
    width: 47.9%;
}
@media screen and (max-width: 768px) {
    .fc-feature__card-text {
        width: 100%;
    }
}
.fc-feature__card-title {
    display: flex;
    flex-direction: column;
    gap: 1.85vh;
}
.fc-feature__card-number {
    color: var(--red-brown);
    font-family: Inter, sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
}
@media screen and (max-width: 768px) {
    .fc-feature__card-number {
        font-size: 1rem;
    }
}
.fc-feature__card-label {
    font-size: clamp(1.25rem, 1.67vw, 2rem);
}
@media screen and (max-width: 768px) {
    .fc-feature__card-label {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}
.fc-feature__card-desc {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 2;
}
.fc-feature__card-descs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media screen and (max-width: 768px) {
    .fc-feature__card-descs {
        gap: 1.75rem;
    }
}
.achievements-wrapper {
    background-color: var(--light-gray);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .achievements-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.achievements__content {
    align-items: center;
    display: flex;
    gap: 2.08vw;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .achievements__content {
        flex-direction: column-reverse;
        gap: 2.84vh;
    }
}
.achievements__head {
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .achievements__head {
        margin-bottom: 3.79vh;
    }
}
.achievements__text {
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
    width: 52.4%;
}
@media screen and (max-width: 768px) {
    .achievements__text {
        width: 100%;
    }
}
.achievements__label {
    font-size: clamp(1.125rem, 1.04vw, 1.25rem);
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .achievements__label {
        font-size: 1.25rem;
    }
}
.achievements__desc {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .achievements__desc {
        font-size: 1rem;
    }
}
.achievements__image {
    width: 43.6%;
}
@media screen and (max-width: 768px) {
    .achievements__image {
        width: 100%;
    }
}
.achievements__img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.fc-opening-flow-wrapper {
    background-color: var(--bg-color-base);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw 0;
}
@media screen and (max-width: 768px) {
    .fc-opening-flow-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.fc-opening-flow__head {
    margin-bottom: 3.7vh;
}
.fc-opening-flow__list {
    display: flex;
    flex-direction: column;
    gap: 6.85vh;
}
@media screen and (max-width: 768px) {
    .fc-opening-flow__list {
        gap: 8.77vh;
    }
}
.fc-opening-flow__item {
    align-items: center;
    border: 1px solid var(--dark-green);
    border-radius: var(--radius-sm);
    display: flex;
    gap: 4.8%;
    justify-content: space-between;
    padding: 4.44vh 3.2%;
    position: relative;
}
@media screen and (max-width: 768px) {
    .fc-opening-flow__item {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.95vh;
        padding: 2.84vh 6.15vw;
    }
}
.fc-opening-flow__item:not(:last-of-type):after {
    background: url(assets/image/arrow_red.svg) no-repeat;
    bottom: -4.07vh;
    content: "";
    height: 10px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 20px;
}
@media screen and (max-width: 768px) {
    .fc-opening-flow__item:not(:last-of-type):after {
        bottom: -5.21vh;
    }
}
.fc-opening-flow__item-title {
    color: var(--red-brown);
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    line-height: 1.8;
    white-space: nowrap;
    width: 13%;
}
@media screen and (max-width: 768px) {
    .fc-opening-flow__item-title {
        font-size: 1.25rem;
        width: 100%;
    }
}
.fc-opening-flow__item-desc {
    font-size: clamp(0.75rem, 0.87vw, 1rem);
    line-height: 1.625;
    width: 83%;
}
@media screen and (max-width: 768px) {
    .fc-opening-flow__item-desc {
        font-size: 1rem;
        width: 100%;
    }
}
.page-recruit img:not(.l-fv__img) {
    border-radius: var(--radius-sm);
}
.about-recruit-wrapper {
    background-color: var(--light-gray);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .about-recruit-wrapper {
        padding: 0 0 9.48vh;
    }
}
.about-recruit__title--ja:after {
    display: none;
}
.about-recruit__inner {
    align-items: center;
    display: flex;
    gap: 2.08vw;
}
@media screen and (max-width: 768px) {
    .about-recruit__inner {
        flex-direction: column-reverse;
    }
}
.about-recruit__text {
    display: flex;
    flex-direction: column;
    gap: 3.7vh;
    width: 50%;
}
@media screen and (max-width: 768px) {
    .about-recruit__text {
        padding: 4.74vh 5.13vw 0;
        width: 100%;
    }
}
.about-recruit__desc {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 2.5;
}
.about-recruit__image {
    width: 46%;
}
@media screen and (max-width: 768px) {
    .about-recruit__image {
        height: 39.81vh;
        width: 100%;
    }
}
.about-recruit__img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .about-recruit__img {
        -o-object-position: center;
        object-position: center;
    }
}
.about-company-wrapper {
    background-color: #fff;
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .about-company-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.about-company__list {
    display: flex;
    flex-direction: column;
    gap: 7.41vh;
}
@media screen and (max-width: 768px) {
    .about-company__list {
        gap: 7.58vh;
    }
}
.about-company__card {
    align-items: center;
    display: flex;
    gap: 2.08vw;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .about-company__card {
        flex-direction: column;
        gap: 2.84vh;
    }
}
.about-company__item:nth-of-type(2n) .about-company__card {
    flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
    .about-company__item:nth-of-type(2n) .about-company__card {
        flex-direction: column;
    }
}
.about-company__card-text {
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
    width: 56.9%;
}
@media screen and (max-width: 768px) {
    .about-company__card-text {
        width: 100%;
    }
}
.about-company__card-image {
    width: 38.9%;
}
@media screen and (max-width: 768px) {
    .about-company__card-image {
        height: 27.96vh;
        width: 100%;
    }
}
.about-company__card-img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.about-company__item:nth-child(2) .about-company__card-img {
    object-position: top;
}
.about-company__card-title {
    font-size: clamp(1.25rem, 1.458vw, 1.75rem);
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .about-company__card-title {
        font-size: 1.25rem;
        line-height: 1.8;
    }
}
.about-company__card-desc {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .about-company__card-desc {
        font-size: 0.875rem;
    }
}
.job-desc-wrapper {
    background-color: var(--light-gray);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .job-desc-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.job-desc__inner {
    border: 1px solid var(--dark-green);
    border-radius: var(--radius-sm);
    padding: 3.7vh 2.08vw;
}
@media screen and (max-width: 768px) {
    .job-desc__inner {
        border: none;
    }
}
.job-desc__head {
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .job-desc__head {
        margin-bottom: 2.84vh;
    }
}
.job-desc__list {
    display: grid;
    gap: 2.08vw;
    grid-template-columns: repeat(2, 48%);
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .job-desc__list {
        gap: 5.69vh;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }
}
.job-desc__item {
    background-color: #fff;
    border-radius: var(--radius-sm);
    padding: 2.96vh 1.67vw;
}
@media screen and (max-width: 768px) {
    .job-desc__item {
        padding: 3.79vh 8.21vw;
    }
}
.job-desc__item-title {
    color: var(--red-brown);
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    line-height: 1.4;
    margin-bottom: 2.22vh;
}
@media screen and (max-width: 768px) {
    .job-desc__item-title {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 1.9vh;
    }
}
.job-desc__item-desc {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .job-desc__item-desc {
        font-size: 0.875rem;
        line-height: 1.714;
    }
}
.recruit-info-wrapper {
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw 0;
}
@media screen and (max-width: 768px) {
    .recruit-info-wrapper {
        padding: 9.48vh 5.13vw;
    }
}
.recruit-info__head {
    margin-bottom: 3.7vh;
}
@media screen and (max-width: 768px) {
    .recruit-info__head {
        margin-bottom: 2.84vh;
    }
}
.recruit-info__content {
    display: flex;
    flex-direction: column;
    gap: 14.81vh;
}
.recruit-info__cat-title {
    font-size: clamp(1.25rem, 1.25vw, 1.5rem);
    height: 30%;
    line-height: 1.75;
    padding-bottom: 1.48vh;
}
@media screen and (max-width: 768px) {
    .recruit-info__cat-title {
        font-size: 1.25rem;
        line-height: 1.35;
        padding-bottom: 2.84vh;
    }
}
.recruit-info__cat-item {
    align-items: center;
    border-top: 1px solid var(--light-green);
    display: flex;
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    gap: 7.08vw;
    line-height: 1.8;
    padding: 2.96vh 1.67vw;
}
@media screen and (max-width: 768px) {
    .recruit-info__cat-item {
        font-size: 1rem;
        gap: 8.21vw;
        line-height: 1.75;
        padding: 2.84vh 0;
    }
}
.recruit-info__cat-item:last-of-type {
    border-bottom: 1px solid var(--light-green);
}
.recruit-info__cat-item-term {
    flex-shrink: 0;
    width: 15%;
}
@media screen and (max-width: 768px) {
    .recruit-info__cat-item-term {
        width: 30%;
    }
}
.entry__button {
    align-items: center;
    background-color: var(--dark-green);
    border-radius: var(--radius-sm);
    color: var(--text-color-white);
    display: flex;
    flex-direction: column;
    font-size: clamp(1.25rem, 1.67vw, 2rem);
    height: 110px;
    justify-content: center;
    line-height: 1.75;
    width: 400px;
}
@media screen and (max-width: 768px) {
    .entry__button {
        font-size: 0.938rem;
        height: auto;
        line-height: 1.667;
        padding: 1.9vh 0;
        width: 100%;
    }
}
.entry__button:hover {
    background-color: var(--bg-color-base);
    box-shadow: inset 0 0 0 2px var(--dark-green);
    color: var(--text-color-primary);
}
.faq__qa {
    border-radius: var(--radius-sm);
}
.sidebar-layout {
    display: flex;
    gap: 4.17vw;
    justify-content: space-between;
    padding: 0 23.96vw 14.81vh;
}
@media screen and (max-width: 1024px) {
    .sidebar-layout {
        gap: 9.48vh;
        padding: 0 15.63vw 9.48vh;
    }
}
@media screen and (max-width: 768px) {
    .sidebar-layout {
        flex-direction: column;
        padding: 0 0 9.48vh;
    }
}
.article-list__content,
.article__content {
    display: flex;
    flex-direction: column;
    gap: 7.41vh;
    width: 77%;
}
@media screen and (max-width: 768px) {
    .article-list__content {
        gap: 4.74vh;
        padding: 0 5.13vw 9.48vh;
    }
    .article-list__content,
    .article__content {
        border-bottom: 1px solid var(--light-green);
        width: 100%;
    }
    .article__content {
        padding-bottom: 9.48vh;
    }
    .article__body,
    .article__head {
        padding: 0 5.13vw;
    }
}
.article__hero {
    border-radius: var(--radius-sm);
    height: 36.3vh;
    width: 100%;
}
.article__figure-img,
.article__hero-img {
    border-radius: var(--radius-sm);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 3.7vh;
    width: 32.35%;
}
@media screen and (max-width: 768px) {
    .sidebar {
        padding: 0 5.13vw;
        width: 100%;
    }
}
.search-field {
    height: 3em;
    width: 90%;
}
.sidebar__item:not(.sidebar__search):not(:last-of-type) {
    border-bottom: 1px solid var(--light-green);
    padding-bottom: 3.7vh;
}
.sidebar__item-title {
    color: var(--text-color-primary);
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.48vh;
}
.sidebar__list-vertical a {
    font-size: 1.125rem;
}
.sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 2.22vh;
}
.sidebar__list-item-link {
    color: var(--text-color-primary);
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 1.75;
    padding-left: 16px;
    position: relative;
}
.archive-list .sidebar__list-item-link:before {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    height: 9px;
    width: 8px;
}
.archive-list .sidebar__list-item-link:before,
.category-list .sidebar__list-item-link:before {
    background-color: var(--red-brown);
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.category-list .sidebar__list-item-link:before {
    clip-path: circle(50% at 50% 50%);
    height: 7px;
    width: 7px;
}
.sidebar-image {
    border-radius: var(--radius-sm);
}
.post-meta {
    align-items: center;
    display: flex;
    gap: 1.25vw;
}
@media screen and (max-width: 768px) {
    .post-meta {
        gap: 4.1vw;
    }
}
.post-meta__date {
    font-size: 1rem;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .post-meta__date {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}
.post-meta__cat {
    align-items: center;
    background-color: var(--dark-green);
    border-radius: 10000px;
    color: var(--text-color-white);
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    height: 20px;
    justify-content: center;
    width: 84px;
}
.article-page .sidebar-layout {
    margin-top: 19.26vh;
}
@media screen and (max-width: 768px) {
    .article-page .sidebar-layout {
        margin-top: 16.59vh;
    }
}
.article__title {
    font-size: clamp(1.25rem, 1.458vw, 1.75rem);
    line-height: 1.714;
}
@media screen and (max-width: 768px) {
    .article__title {
        font-size: 1.25rem;
        line-height: 2;
    }
    .article__hero {
        flex-shrink: 0;
        height: 42.65vh;
    }
}
.article__desc {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .article__desc {
        font-size: 0.875em;
    }
}
.article__descs {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
@media screen and (max-width: 768px) {
    .article__descs {
        gap: 1.75em;
    }
    .article__sp-fv {
        height: 100vh;
        margin-top: -16.59vh;
        position: relative;
    }
    .article__sp-fv-inner {
        content: "";
        display: flex;
        flex-direction: column;
        gap: 3.79vh;
        position: absolute;
        top: 16.59vh;
    }
}
.page-news .breadcrumb {
    top: 80px;
}
@media screen and (max-width: 768px) {
    .page-news .breadcrumb {
        padding-bottom: 0;
    }
}
.page-fv {
    height: 44.44vh;
    padding-left: 23.96vw;
    position: relative;
    width: 100%;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    .page-fv {
        height: 45.02vh;
        padding: 0 5.13vw;
    }
}
.page-fv-text {
    left: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .page-fv-text {
        position: absolute;
        top: 45%;
    }
}
.page-fv .c-page-title {
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .page-fv .c-page-title--ja {
        padding: 0;
    }
    .page-fv .c-page-title--en {
        padding-left: 0.3em;
    }
}
.monthly-news-list__inner {
    border-bottom: 1px solid var(--red-brown);
    display: grid;
    gap: 2.08vw;
    grid-template-columns: 9% 1fr;
    padding-bottom: 7.41vh;
}
@media screen and (max-width: 768px) {
    .monthly-news-list__inner {
        gap: 8.21vw;
        grid-template-columns: 12.5% 1fr;
        padding-bottom: 4.74vh;
    }
}
.monthly-news-list__title {
    font-size: clamp(1.25rem, 1.458vw, 1.75rem);
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
    .monthly-news-list__title {
        font-size: 1.25rem;
        line-height: 1.8;
    }
}
.news-list__item {
    border-bottom: 1px solid var(--light-green);
    padding-bottom: 2.96vh;
}
@media screen and (max-width: 768px) {
    .news-list__item {
        padding-bottom: 2.84vh;
    }
}
.news-list__item:not(:first-of-type) {
    padding-top: 2.96vh;
}
@media screen and (max-width: 768px) {
    .news-list__item:not(:first-of-type) {
        padding-top: 2.84vh;
    }
}
.news-list__item-link {
    align-items: flex-start;
    color: var(--text-color-primary);
    display: flex;
    gap: 1.25vw;
}
@media screen and (max-width: 768px) {
    .news-list__item-link {
        flex-direction: column;
        gap: 0.95vh;
    }
}
.news-list__card-title {
    font-size: 1rem;
    line-height: 1.75;
    width: 72%;
}
@media screen and (max-width: 768px) {
    .news-list__card-title {
        width: 100%;
    }
}
.news-article__hero {
    border-radius: var(--radius-sm);
    margin-bottom: 5.93vh;
}
@media screen and (max-width: 768px) {
    .news-article__hero {
        flex-shrink: 0;
        margin-bottom: 0;
    }
}
.news-article__hero-img {
    border-radius: var(--radius-sm);
}
.news-article__head {
    display: flex;
    flex-direction: column;
    gap: 0.83vh;
    margin-bottom: 5.93vh;
}
@media screen and (max-width: 768px) {
    .news-article__head {
        flex: 0;
        gap: 2.84vh;
        margin-bottom: 0;
    }
}
.news-article__body {
    display: flex;
    flex-direction: column;
    gap: 7.41vh;
}
@media screen and (max-width: 768px) {
    .news-article__body {
        gap: 7.58vh;
    }
}
.news-article__figure {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
}
.news-article__figure-image {
    height: 33.7vh;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .news-article__figure-image {
        height: 28.91vh;
    }
}
.single__figure img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    height: auto;
}
.article__figure-caption {
    font-size: 0.75rem;
    line-height: 1.75;
}
.news-article__back-link {
    background-color: var(--dark-green);
    color: var(--text-color-white);
    display: block;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 auto;
    padding: 8px 0;
    text-align: center;
    width: 188px;
}
@media screen and (max-width: 768px) {
    .news-article__back-link {
        margin-top: 1.9vh;
        width: 140px;
    }
}
.archive__card__img-wrapper .media__card-image {
    border-radius: var(--radius-sm);
}
.page-media .sidebar-layout {
    padding-top: 14.81vh;
}
@media screen and (max-width: 768px) {
    .page-media .sidebar-layout {
        padding-top: 0;
    }
    .article-list__content.media-list-wrapper {
        gap: 5.69vh;
    }
}
.media-list__content {
    -moz-column-gap: 1.67vw;
    column-gap: 1.67vw;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    row-gap: 5.93vh;
}
@media screen and (max-width: 768px) {
    .media-list__content {
        -moz-column-gap: 6.15vw;
        column-gap: 6.15vw;
        grid-template-rows: repeat(3, minmax(auto, 196px));
    }
    .media-list__content .media__card {
        width: 100%;
    }
    .media-list__content .media__card-image {
        height: 57.14%;
    }
    .media-list__content .media__card-meta {
        gap: 4px;
    }
}
.page-media .pagination__list {
    align-items: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
    display: grid;
    grid-template-columns: repeat(9, 32px);
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .page-media .pagination__list {
        grid-template-columns: repeat(7, 32px);
    }
}
.pagination__item {
    height: 32px;
    width: 32px;
}
@media (max-width: 768px) {
    .pagination__item:nth-child(6),
    .pagination__item:nth-child(7) {
        display: none;
    }
}
.pagination__link {
    align-items: center;
    color: var(--text-color-primary);
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    height: 100%;
    justify-content: center;
    line-height: 1.25;
    width: 100%;
}
.media-article__hero {
    margin-bottom: 6.67vh;
}
.article__head {
    margin-bottom: 11.11vh;
}
.article__head .post-meta {
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 1.48vh;
}
.article__head .post-meta__cat {
    background-color: var(--light-green);
}
.media-article__body {
    display: flex;
    flex-direction: column;
    gap: 5.93vh;
}
@media screen and (max-width: 768px) {
    .media-article__body {
        gap: 7.58vh;
    }
}
.article__subtitle {
    font-size: 1.5rem;
    line-height: 1.333;
    margin-bottom: 2.22vh;
    padding-left: 12px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .article__subtitle {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 3.79vh;
        padding-left: 10px;
    }
}
.article__subtitle:before {
    background-color: var(--dark-green);
    border-radius: 0 2px 2px 0;
    content: "";
    height: 65.5%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}
@media screen and (max-width: 768px) {
    .article__subtitle:before {
        height: 60.5%;
        width: 6px;
    }
}
.article__heading {
    background-color: var(--light-green);
    color: var(--text-color-white);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.22vh;
    padding-left: 8px;
}
@media screen and (max-width: 768px) {
    .article__heading {
        font-size: 1.125rem;
        line-height: 1.556;
        margin-bottom: 3.79vh;
    }
}
.article__subheading {
    font-size: 1.125rem;
    line-height: 1.778;
    margin-bottom: 2.22vh;
    padding-left: 8px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .article__subheading {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 3.79vh;
        padding-left: 5px;
    }
}
.article__subheading:before {
    background-color: var(--red-brown);
    content: "";
    height: 72%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
}
@media screen and (max-width: 768px) {
    .article__subheading:before {
        height: 60.5%;
        width: 3px;
    }
}
.article__caption {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 2.22vh;
    padding-left: 8px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .article__caption {
        font-size: 0.875rem;
        line-height: 2;
        margin-bottom: 3.79vh;
        padding-left: 8px;
    }
}
.article__caption:before {
    background-color: var(--orange);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
}
@media screen and (max-width: 768px) {
    .article__caption:before {
        height: 5px;
        width: 5px;
    }
}
.article__note {
    font-size: 0.875rem;
    line-height: 2.286;
    margin-bottom: 2.22vh;
    padding-left: 10px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .article__note {
        font-size: 0.75rem;
        line-height: 2.333;
        margin-bottom: 3.79vh;
        padding-left: 10px;
    }
}
.article__note:before {
    background-color: var(--dark-green);
    clip-path: circle(50% at 50% 50%);
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
}
.media-article__list {
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
}
@media screen and (max-width: 768px) {
    .media-article__list {
        gap: 1.9vh;
    }
}
.media-article__list-item {
    font-size: 1rem;
    line-height: 2;
}
.media-article__list-item--unordered {
    padding-left: 10px;
    position: relative;
}
.media-article__list-item--unordered:before {
    background-color: var(--light-green);
    clip-path: circle(50% at 50% 50%);
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
}
.media-article__list--ordered {
    counter-reset: my-counter;
    list-style: none;
    padding-left: 0;
}
.media-article__list-item--ordered {
    counter-increment: my-counter;
    padding-left: 1.25em;
    position: relative;
}
.media-article__list-item--ordered:before {
    color: var(--red-brown);
    content: counter(my-counter) " ";
    left: 0;
    position: absolute;
}
.media-article__desc {
    font-size: clamp(0.875rem, 0.87vw, 1rem);
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .media-article__desc {
        font-size: 0.875rem;
    }
}
.media-article__descs {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.media-article__figure {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16.5%;
}
@media screen and (max-width: 768px) {
    .media-article__figure {
        padding: 0 12.31%;
    }
}
.media-article__figure-image {
    height: 23.7vh;
}
@media screen and (max-width: 768px) {
    .media-article__figure-image {
        height: 20.38vh;
    }
}
.media-article__table {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .media-article__table {
        margin-left: 50%;
        overflow-x: auto;
        scrollbar-width: none;
        transform: translateX(-50%);
        width: 100vw;
        -ms-overflow-style: none;
    }
    .media-article__table::-webkit-scrollbar {
        display: none;
    }
}
.media-article__table-head {
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--dark-green);
}
.media-article__table-row {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(5, 20%);
}
.media-article__table-row-data,
.media-article__table-row-head {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 4.81vh;
    justify-content: center;
}
.media-article__table-row-head:not(:last-of-type) {
    border-right: 1px solid var(--bg-color-base);
}
.media-article__table-body > * {
    background-color: var(--bg-color-base);
}
.media-article__table-body .media-article__table-row {
    border-bottom: 1px solid var(--light-green);
}
.media-tags {
    align-items: center;
    display: flex;
}
.media-tags__label {
    font-size: 0.875rem;
    line-height: 1.714;
}
.media-article .media-tags__list {
    gap: 16px;
}
.media-article .media-tags__item {
    position: relative;
}
.media-article .media-tags__item:not(:last-of-type):after {
    background-color: var(--dark-green);
    content: "";
    height: 0.875rem;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
.media-article__pagination {
    align-items: center;
    display: flex;
    font-size: 1rem;
    justify-content: space-between;
    line-height: 1.75;
    padding: 0 1.46vw;
}
.media-article__pagination-link {
    color: var(--text-color-primary);
    position: relative;
}
.media-article__pagination-link--prev {
    padding-left: 20px;
}
.media-article__pagination-link--next {
    padding-right: 20px;
}
.media-article__pagination-link--next:after,
.media-article__pagination-link--prev:before {
    background-color: var(--red-brown);
    content: "";
    height: 9px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
}
.media-article__pagination-link--prev:before {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    left: 0;
}
.media-article__pagination-link--next:after {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    right: 0;
}
.privacy-policy__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 7.41vh;
    padding: 0 23.96vw 14.81vh;
}
@media screen and (max-width: 768px) {
    .privacy-policy__content-wrapper {
        gap: 7.58vh;
        padding: 9.48vh 5.13vw;
    }
}
.privacy-policy__content {
    display: flex;
    flex-direction: column;
    gap: 4.44vh;
}
@media screen and (max-width: 768px) {
    .privacy-policy__content {
        gap: 5.69vh;
    }
}
.privacy-policy__item-title {
    font-size: 1em;
    line-height: 1.75;
    margin-bottom: 1.48vh;
}
@media screen and (max-width: 768px) {
    .privacy-policy__item-title {
        font-size: 1rem;
        line-height: 2.188;
        margin-bottom: 0.95vh;
    }
}
.privacy-policy__ol {
    list-style-position: inside;
}
.privacy-policy__ol > li {
    margin-top: 1em;
}
.privacy-policy__ol-head {
    margin-top: 1em;
    display: inline-block;
    line-height: 2;
}
.privacy-policy__text {
    font-size: 0.875rem;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .privacy-policy__desc.privacy-policy__text {
        line-height: 2.188;
    }
}
.privacy-policy__text--small {
    font-size: 0.8125rem;
}
.privacy-policy__ul {
    line-height: 2;
    margin-top: 1em;
}
.privacy-policy__ol .privacy-policy__ul {
    margin-left: 1em;
}
.privacy-policy__ul > li {
    display: grid;
    grid-template-columns: 16px auto;
    gap: 4px;
    align-items: baseline;
    margin-top: 0.3em;
}
.privacy-policy__ul > li:before {
    content: "";
    display: block;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    background-color: var(--text-color-primary);
    scale: 0.25;
    transform: translateY(50%);
}
.privacy-policy__sub-items {
    display: flex;
    flex-direction: column;
    gap: 2.96vh;
    margin-top: 2.96vh;
}
@media screen and (max-width: 768px) {
    .privacy-policy__sub-items {
        gap: 1.25rem;
    }
}
.privacy-policy__link-wrapper {
    display: block;
    margin-bottom: 1em;
    line-height: 1.5;
}
.privacy-policy__address-wrapper {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}
.top .fv {
    background-color: #114232;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: auto;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .top .fv {
        grid-template-columns: auto;
        height: auto;
    }
}
.about-wrapper {
    background-image: url(assets/image/bg_about.png);
    z-index: 0;
}
.emp-support__flow-seeker-item {
    flex-basis: 25%;
}
.emp-support__flow-employer-item:not(:last-of-type):after,
.emp-support__flow-seeker-item:not(:last-of-type)
    .emp-support__flow-seeker-card-image:after {
    background-image: url(assets/image/arrow_red.svg);
}
.emp-support__feature-card-title {
    margin-top: 0.5rem;
}
.aw-section-intro__label {
    line-height: 1.4;
}
.emp-support__flow-seeker-card-title {
    margin-bottom: 0.48vh;
}
@media screen and (max-width: 768px) {
    .swiper-slide:not(.swiper-slide-active) {
        display: block !important;
    }
    .media__card {
        width: auto;
    }
}
.media__card-image {
    aspect-ratio: 3/2;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .media__list {
        display: flex;
        gap: 0;
    }
}
.sidebar {
    gap: 0;
    width: auto;
}
.sidebar__item:not(.sidebar__search):not(:last-of-type) {
    border-bottom: 0;
    padding-bottom: 0;
}
.sidebar__list {
    gap: 0;
}
.interview__card {
    border-radius: 4px;
    overflow: hidden;
}
.interview__card-profile:after {
    background: url(assets/image/arrow_interview-card.svg) no-repeat;
}
.aw-section-main__list {
    list-style: none;
}
.bg-wrapper.contact__inner {
    z-index: 0;
}
.interview__card-profile {
    justify-content: center;
    min-height: 56px;
}
.interview__card-profile:after {
    bottom: 0;
    left: auto;
    max-width: 56px;
    right: 0;
}
.interview__card-title {
    height: 68px;
}
.interview__card-text {
    width: 100%;
}
.interview__card-text:before {
    scale: 0.5 1;
    width: 2px;
}
.swiper-slide img {
    vertical-align: top;
}
.interview__card-image img {
    min-height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}
.article__hero {
    height: auto;
}
.emp-support__feature-card-img {
    max-height: none;
}
.interview-wrapper {
    margin-bottom: 0;
}
.breadcrumb__list {
    align-items: baseline;
    gap: 22px;
}
.breadcrumb__item:not(:last-of-type):after {
    height: 100%;
    right: -16px;
}
@media screen and (max-width: 768px) {
    .breadcrumb__list {
        gap: 26px;
    }
    .breadcrumb__item:not(:last-of-type):after {
        right: -18px;
    }
}
@media screen and (min-width: 820px) {
    .header__nav-item {
        text-align: center;
        width: 64px;
    }
    .header__nav-link {
        display: grid;
        height: 80px;
        place-content: center;
    }
}
@media screen and (min-width: 769px) {
    .header__nav-item:after {
        background-color: var(--dark-green);
        content: "";
        height: 3px;
        left: 0;
        position: absolute;
        top: 0;
        transition: width 0.2s ease;
        width: 0;
    }
}
.qc__jas-image {
    width: 38.2%;
}
.custom-pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 40px;
}
.page-numbers {
    color: var(--text-color-primary);
    display: grid;
    height: 32px;
    place-content: center;
    text-align: center;
    width: 32px;
}
.page-numbers img {
    vertical-align: bottom;
}
.primary__link {
    background-color: var(--text-color-primary);
    color: #fff;
    display: block;
    line-height: 1.25;
    overflow-wrap: break-word;
    text-align: center;
    word-break: keep-all;
}
.primary__link-single {
    margin-inline: auto;
    padding: 0.75rem min(5vw, 64px);
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
}
.auto-break {
    overflow-wrap: break-word;
    word-break: keep-all;
}
.date-text {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    line-height: 1.25;
}
@media screen and (max-width: 820px) {
    .hamburger-menu__line:after,
    .hamburger-menu__line:before {
        background-color: var(--dark-green);
        content: "";
        height: 2px;
        position: absolute;
        right: 0;
        scale: 1 0.5;
        transition: all 0.3s ease;
        width: 100%;
        z-index: 101;
    }
}
.contact__link {
    background-color: #fff;
    border-radius: 50%;
    height: calc(42px + 2.5rem);
    overflow: hidden;
    pointer-events: none;
    position: relative;
    width: calc(42px + 2.5rem);
    --hover-x: -50%;
    --hover-y: -50%;
    --hover-x1: -200%;
    --hover-y1: -50%;
}
.contact__link-button {
    width: 42px;
}
.contact__link:before {
    -o-object-fit: contain;
    object-fit: contain;
    transform: translate(var(--hover-x), var(--hover-y));
}
.contact__link:after,
.contact__link:before {
    background-image: url(assets/image/arrow-contact-inner.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    font-size: 20px;
    font-weight: 700;
    height: 36px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 42px;
    z-index: 3;
}
.contact__link:after {
    transform: translate(var(--hover-x1), var(--hover-y1));
}
.contact__link.is-active {
    --hover-x: -100%;
    --hover-y: -50%;
}
.contact__text {
    pointer-events: none;
}
.scroll {
    color: #dfdfdf;
    display: grid;
    gap: 4px;
}
.scroll__arrow {
    animation: floating-y 1.3s ease-in-out infinite alternate-reverse;
    display: grid;
    justify-content: center;
    margin-inline: auto;
    transform-origin: bottom;
}
.scroll__arrow:before {
    border: 0.1em solid;
    border-bottom: 0;
    border-left: 0;
    box-sizing: border-box;
    color: #dfdfdf;
    content: "";
    display: block;
    height: 0.8em;
    line-height: 1;
    margin-inline: auto;
    position: relative;
    transform-origin: center;
    width: 0.8em;
}
.scroll__label:after,
.scroll__label:before {
    content: none;
}
@keyframes floating-y {
    0% {
        transform: translate(-50%) rotate(135deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(135deg);
    }
}
.fv__catchphrase {
    color: #fff;
    display: grid;
    gap: 80px;
    grid-template-columns: 100%;
    place-content: center;
}
@media screen and (max-width: 768px) {
    .fv__catchphrase {
        gap: 40px;
        margin-top: 40px;
        margin-bottom: 80px;
    }
}
.fv__title {
    margin: 0 -5px;
}
.fv__subtitle {
    line-height: 1.5;
    padding-inline: 0.5rem;
    text-align: center;
}
.fv-slide-image,
.fv-swiper {
    max-width: 100%;
}
.fv-slide-image {
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .fv-swiper-first {
        max-height: 66vh;
    }
    .fv-swiper-second {
        display: none;
    }
}
.information__item-term {
    justify-content: space-between;
}
.infomation__item-date {
    font-size: 1rem;
    width: 6em;
}
.information__item-def a {
    color: #fff;
}
.interview {
    position: relative;
}
.swiper-scrollbar {
    background-color: #fff;
    bottom: -18px !important;
    cursor: pointer;
    height: 8px !important;
    left: 0 !important;
    width: 100% !important;
}
@media screen and (max-width: 1024px) {
    .swiper-scrollbar {
        display: none !important;
    }
}
.swiper-scrollbar-drag {
    background-color: var(--light-green);
    cursor: grab;
}
.swiper-scrollbar-drag:active {
    cursor: grabbing;
    opacity: 0.8;
}
.interview__control-area {
    display: none;
}
@media screen and (max-width: 1024px) {
    .interview__control-area {
        display: flex;
        gap: 12px;
        gap: 10px;
        justify-content: center;
        margin-top: 32px;
    }
}
.interview-wrapper .swiper-button-next,
.interview-wrapper .swiper-button-prev {
    display: inline-block !important;
    filter: brightness(0) invert(1);
    height: 40px;
    margin: 0 !important;
    position: inherit !important;
    width: 40px;
}
.swiper-button-next,
.swiper-button-prev {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.interview-wrapper .swiper-button-next {
    rotate: 180deg;
}
@media screen and (max-width: 768px) {
    .media-wrapper .swiper {
        overflow: visible;
        width: 94.87vw;
    }
}
.media-wrapper .swiper-button-next,
.media-wrapper .swiper-button-prev {
    display: inline-block !important;
    height: 40px;
    margin: 0 !important;
    position: inherit !important;
    width: 40px;
}
.media-wrapper .swiper-button-prev + .swiper-button-next {
    margin-left: 8px !important;
}
.media-wrapper .swiper-slide {
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .media-wrapper .swiper-slide {
        flex-shrink: 0;
        width: 80vw !important;
    }
}
.media__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.media__card-tag a {
    background-color: var(--light-gray);
    border-radius: 4px;
    color: var(--light-green);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.1rem 0.2rem;
}
.link-wrapper {
    color: var(--text-color-primary);
    display: contents;
}
.header.transparent {
    background-color: transparent;
}
.fv.company-profile {
    background: url(assets/image/fv-company-profile.png);
    background-position: 50%;
    background-size: cover;
}
.breadcrumb-inquiry,
.breadcrumb-single,
.company-profile .breadcrumb {
    background-color: transparent;
    content: none;
    display: inherit;
    height: auto;
    padding: max(80px, 6vw) 0 0 2.9vw;
    position: static;
}
.breadcrumb-inquiry .breadcrumb__list,
.breadcrumb-single .breadcrumb__list,
.company-profile .breadcrumb__list {
    align-items: center;
    background: #fff;
    color: var(--text-color-primary);
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    gap: 0;
    list-style: none;
    padding: 8px;
}
.breadcrumb-inquiry .breadcrumb__item + .breadcrumb__item:before,
.breadcrumb-single .breadcrumb__item + .breadcrumb__item:before,
.company-profile .breadcrumb__item + .breadcrumb__item:before {
    color: #aa5656;
    content: ">";
    margin-inline: 0.5em;
}
.breadcrumb-inquiry .breadcrumb__item:not(:last-of-type):after,
.breadcrumb-single .breadcrumb__item:not(:last-of-type):after,
.company-profile .breadcrumb__item:not(:last-of-type):after {
    content: none;
}
.breadcrumb__link {
    color: var(--text-color-primary);
}
.company-profile .fv__copy {
    color: #fff;
    padding-left: 12.7vw;
    padding-top: 5.9vw;
    font-weight: bold;
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 768px) {
    .company-profile .fv__copy {
        padding-inline: 5.12vw;
        padding-top: 72px;
    }
}
.company-profile .fv__copy-main {
    font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
    .company-profile .fv__copy-main {
        font-size: 1.25rem;
    }
}
.company-profile .fv__copy-sub {
    font-size: 1.4rem;
    line-height: 2;
    padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
    .company-profile .fv__copy-sub {
        font-size: 0.875rem;
    }
}
.page-content {
    margin-inline: auto;
    max-width: 1000px;
    min-width: 700px;
    width: 52%;
}
@media screen and (max-width: 768px) {
    .page-content {
        min-width: auto;
        padding-block: 80px;
        padding-inline: 5.12vw;
        width: auto;
    }
}
.vision-wrapper {
    background-color: var(--light-gray);
}
.vision {
    margin-inline: auto;
    max-width: 1000px;
    padding-block: min(160px, 8.3vw);
    width: 52%;
}
@media screen and (max-width: 768px) {
    .vision {
        padding-block: 80px;
        padding-inline: 5.12vw;
        width: auto;
    }
}
.vision__head {
    color: var(--text-color-primary);
    font-size: 1.2rem;
    line-height: 2;
}
.vision__list {
    background-color: #fff;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 5fr;
    margin-top: 64px;
    padding: 64px 96px;
    row-gap: 32px;
}
@media screen and (max-width: 1500px) {
    .vision__list {
        grid-template-columns: 100%;
        padding: 39px min(64px, 16.1vw);
        place-items: center;
        row-gap: 0;
        text-align: center;
    }
}
.vision__detail {
    color: var(--red-brown);
    line-height: 1.3;
    margin-top: 0.45rem;
}
@media screen and (max-width: 1500px) {
    .vision__detail {
        margin-bottom: 0.2rem;
    }
}
.vision__desc {
    color: var(--text-color-primary);
    font-size: 1.4rem;
    line-height: 1.5;
}
@media screen and (max-width: 1500px) {
    .vision__desc {
        font-size: 1rem;
    }
    .vision__desc:not(:last-of-type) {
        margin-bottom: 1rem;
    }
}
.feature__list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding-block: min(160px, 8.3vw);
}
@media screen and (max-width: 768px) {
    .feature__list {
        gap: 64px;
        padding-block: 80px;
    }
}
.feature__card {
    display: flex;
    gap: 32px;
}
.feature__item:nth-child(2n) :where(.feature__card) {
    flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
    .feature__item .feature__card {
        flex-direction: column-reverse;
    }
}
.feature__card-texts {
    border-color: var(--text-color-primary);
    border-style: solid;
    height: -moz-fit-content;
    height: fit-content;
    margin-block: auto;
}
.feature__item:nth-child(2n - 1) .feature__card-texts {
    border-left-width: 1px;
    padding-left: 32px;
}
.feature__item:nth-child(2n) .feature__card-texts {
    border-right-width: 1px;
    padding-right: 32px;
}
@media screen and (max-width: 1024px) {
    .feature__item:nth-child(2n) .feature__card-texts {
        border-left-width: 1px;
        border-right: none;
        padding-left: 32px;
        padding-right: 0;
    }
}
.feature__card-title {
    color: var(--red-brown);
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
    .feature__card-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}
.feature__card-number {
    color: var(--text-color-primary);
    display: inline-block;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
    .feature__card-number {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
}
.feature__card-desc {
    color: var(--text-color-primary);
    line-height: 1.625;
}
@media screen and (max-width: 768px) {
    .feature__card-desc {
        line-height: 2;
    }
}
.feature__card-image {
    align-self: center;
    flex-shrink: 0;
    width: 45.9%;
}
@media screen and (max-width: 1024px) {
    .feature__card-image {
        width: auto;
    }
}
.feature__card-img {
    height: auto;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.feature__message {
    margin-inline: auto;
    margin-bottom: 160px;
    min-width: 700px;
    width: min(52%, 1000px);
}
@media screen and (max-width: 1024px) {
    .feature__message {
        min-width: auto;
        width: min(1000px, 89%);
    }
}
.feature__message-content {
    align-items: center;
    display: flex;
    gap: 5%;
    margin-top: 80px;
}
@media screen and (max-width: 1024px) {
    .feature__message-content {
        flex-direction: column-reverse;
        gap: 48px;
    }
}
.feature__message-text {
    display: inline-block;
    font-size: 1rem;
    line-height: 2;
    width: 65%;
}
@media screen and (max-width: 768px) {
    .feature__message-text {
        width: 100%;
    }
}
.feature__message-img-wrapper {
    min-width: 200px;
    width: 30%;
}
.page-figcaption {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}
.feature__chief-name,
.feature__chief-title {
    vertical-align: middle;
}
.feature__chief-name {
    font-size: 1.5rem;
}
.company-wrapper {
    background-color: var(--light-gray);
}
.company {
    padding-block: min(160px, 8.3vw);
}
.company .c-title {
    margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
    .company .c-title {
        margin-bottom: 24px;
    }
}
.company__info {
    margin-bottom: 80px;
}
.company__info-item {
    align-items: center;
    border-top: 1px solid var(--light-green);
    display: grid;
    grid-template-columns: minmax(104px, 1fr) 4fr;
    line-height: 1.6;
    padding: 24px min(2.9vw, 56px);
}
@media screen and (max-width: 768px) {
    .company__info-item {
        padding-block: 20px;
    }
}
.company__info-item:last-child {
    border-bottom: 1px solid var(--light-green);
}
.group-wrapper {
    margin-top: 120px;
}
.group {
    border: 1px solid var(--text-color-primary);
    padding: min(64px, 3.3vw) min(64px, 3.3vw) min(72px, 3.75vw);
}
@media screen and (max-width: 768px) {
    .group {
        margin-block: 120px;
        margin-inline: 5.12vw;
        padding: 32px;
    }
}
.group__desc {
    line-height: 2;
    margin-block: 1rem 2.5rem;
}
@media screen and (max-width: 768px) {
    .group__desc {
        margin-bottom: 2.5rem;
    }
}
.group__link {
    margin-inline: auto;
    padding: 0.85rem min(5vw, 24px);
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
}
.c-page-title-faq {
    margin-inline: auto;
    margin-bottom: 80px;
    margin-top: 120px;
    max-width: 52%;
}
@media screen and (max-width: 768px) {
    .c-page-title-faq {
        max-width: min(1000px, 89%);
    }
    .c-page-title-faq .c-page-title--en,
    .c-page-title-faq .c-page-title--ja {
        padding-left: 0;
    }
}
.faq-wrapper {
    margin-inline: auto;
    margin-bottom: 160px;
    max-width: 52%;
}
@media screen and (max-width: 768px) {
    .faq-wrapper {
        max-width: min(1000px, 89%);
    }
}
.faq__cat-title {
    color: var(--red-brown);
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
}
@media screen and (max-width: 768px) {
    .faq__cat-title {
        font-size: 1.5rem;
    }
}
.faq__list {
    border-top: 1px solid #ccc;
    display: grid;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 768px) {
    .faq__list {
        gap: 24px;
    }
}
.faq__qa {
    border: 1px solid var(--text-color-primary);
    padding-inline: 1rem;
}
.faq__question {
    align-items: center;
    cursor: pointer;
    display: flex;
    padding-block: 1.5rem;
    padding-left: 1rem;
    position: relative;
    text-align: left;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .faq__question {
        padding-left: 0;
    }
}
.faq__label--a,
.faq__label--q {
    flex-shrink: 0;
    font-family: Inter, sans-serif;
    font-size: 2rem;
    margin-right: 1rem;
}
@media screen and (max-width: 768px) {
    .faq__label--a,
    .faq__label--q {
        font-size: 1.5rem;
        margin-right: 0.75rem;
    }
}
.faq__label--q {
    color: var(--light-green);
}
.faq__question-text {
    flex: 1;
    line-height: 2rem;
    margin: 0;
}
@media screen and (max-width: 768px) {
    .faq__question-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}
.faq__icon {
    margin-left: 0.75rem;
}
.faq__icon,
.faq__icon:after {
    display: grid;
    place-content: center;
}
.faq__icon:after {
    background-image: url(assets/image/icon_plus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 16px;
    width: 16px;
}
.faq__question[aria-expanded="true"] .faq__icon:after {
    background-image: url(assets/image/icon_minus.svg);
    height: 1px;
}
.faq__answer {
    align-items: start;
    border-top: 1px solid var(--light-green);
    display: flex;
    max-height: 0;
    overflow: hidden;
    padding-left: 1rem;
    padding-block: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .faq__answer {
        padding-left: 0;
    }
}
.faq__answer.hidden {
    border-top: 1px solid transparent;
    max-height: 0;
    padding-block: 0;
}
.faq__answer:not(.hidden) {
    max-height: 300px;
    padding-block: 1.5rem;
}
.faq__label--a {
    color: var(--red-brown);
}
.faq__answer-text {
    margin: 0;
}
.faq__answer-title {
    line-height: 2rem;
    margin: 0 0 0.5rem;
}
@media screen and (max-width: 768px) {
    .faq__answer-title {
        font-size: 1rem;
        line-height: 1.5;
    }
}
.faq__answer-desc {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}
.breadcrumb-single {
    padding-top: max(72px, 4.6vw);
}
@media screen and (max-width: 820px) {
    .breadcrumb-single {
        padding-top: 80px;
    }
}
.two-columns {
    display: grid;
    gap: 40px;
    grid-template-columns: 2.3fr 1fr;
    margin-inline: auto;
    max-width: min(1000px, 80%);
    padding-top: 48px;
    width: 52%;
}
@media screen and (max-width: 1024px) {
    .two-columns {
        display: block;
        max-width: none;
        padding-top: 24px;
        width: auto;
    }
    .column,
    .column-wrapper {
        margin-bottom: 80px;
    }
    .column {
        border-bottom: 1px solid var(--light-green);
        padding-bottom: 80px;
    }
    .column > :not(.wp-block-image, img) {
        margin-inline: auto;
        max-width: 89%;
    }
    .column-main {
        border-bottom: 1px solid var(--light-green);
        margin-bottom: 80px;
    }
}
.article__hero {
    margin-bottom: 40px;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
}
.news-article__hero-img {
    max-height: -moz-fit-content;
    max-height: fit-content;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.news-article__meta {
    align-items: center;
    align-items: baseline;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 1rem;
}
.article__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.35;
}
.information__item-categories {
    width: min-content;
}
@media screen and (max-width:768px) {
    .information__item-categories {
        width: auto;
    }
}
.article__category {
    border-radius: 999px;
    font-size: 0.75rem;
    padding: 0.15rem 0.75rem 0.1rem;
}
.news-article__category {
    background-color: var(--text-color-primary);
    color: #fff;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 80px;
    text-align: center;
    line-height: 1.35;
}
@media screen and (max-width:768px) {
    .news-article__category {
        min-width: auto;
    }
}
.single-article__category {
    padding: 0.35rem 0.75rem 0.3rem;
}
.news-article__date {
    font-size: 1rem;
}
.article__title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 4rem;
    margin-top: 1rem;
}
.custom-heading-h2,
.custom-heading-h3,
.custom-heading-h4,
.custom-heading-h5,
.custom-heading-h6 {
    line-height: 1.4;
    margin-bottom: 2em;
    margin-top: 2em;
}
.custom-heading-h2 {
    font-size: 1.5rem;
}
.custom-heading-h3 {
    font-size: 1.25rem;
}
.custom-heading-h4 {
    font-size: 1.125rem;
}
.custom-heading-h6 {
    font-size: 0.875rem;
}
.custom-media-heading-h2,
.custom-media-heading-h3,
.custom-media-heading-h4,
.custom-media-heading-h5,
.custom-media-heading-h6 {
    line-height: 1.4;
    margin-bottom: 2em;
    margin-top: 2em;
}
.custom-media-heading-h2 {
    display: flex;
    font-size: 1.5rem;
    gap: 8px;
}
.custom-media-heading-h2:before {
    background-color: var(--text-color-primary);
    border-radius: 0 2px 2px 0;
    content: "";
    display: inline-block;
    flex-shrink: 0;
    height: 1.8rem;
    width: 8px;
}
.custom-media-heading-h3 {
    background-color: var(--light-green);
    color: #fff;
    font-size: 1.25rem;
    padding: 0.3rem 0.75rem;
}
.custom-media-heading-h4 {
    display: flex;
    font-size: 1.125rem;
    gap: 8px;
}
.custom-media-heading-h4:before {
    background-color: var(--red-brown);
    content: "";
    display: inline-block;
    flex-shrink: 0;
    height: 1.5rem;
    width: 4px;
}
.custom-media-heading-h5 {
    display: flex;
    gap: 8px;
}
.custom-media-heading-h5:before {
    background-color: var(--orange);
    content: "";
    display: inline-block;
    flex-shrink: 0;
    height: 0.5rem;
    margin-top: 0.4rem;
    rotate: 45deg;
    transform-origin: center;
    width: 0.5rem;
}
.custom-media-heading-h6 {
    display: flex;
    font-size: 0.875rem;
    gap: 6px;
}
.custom-media-heading-h6:before {
    background-color: var(--text-color-primary);
    border-radius: 50%;
    content: "";
    display: inline-block;
    flex-shrink: 0;
    height: 0.4rem;
    margin-top: 0.33rem;
    width: 0.4rem;
}
.custom-paragraph {
    line-height: 2;
    margin-bottom: 4rem;
}
.single-list {
    display: grid;
    gap: 16px;
    margin-block: 2rem;
}
.single-ol {
    counter-reset: single-ol;
}
.single-list-item {
    display: flex;
    gap: 6px;
    line-height: 1.5;
}
.single-list-item:before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
}
.single-ul .single-list-item:before {
    background-color: var(--light-green);
    border-radius: 50%;
    height: 0.4rem;
    margin-top: 0.55rem;
    width: 0.4rem;
}
.single-ol .single-list-item {
    gap: 8px;
}
.single-ol .single-list-item:before {
    border-radius: 50%;
    content: counter(single-ol);
    counter-increment: single-ol;
}
.single__figure {
    margin: 48px auto;
    width: -moz-fit-content;
    width: fit-content;
}
.single__figure-caption {
    font-size: 0.75rem;
    margin-top: 1rem;
    text-align: center;
}
.single-table {
    line-height: 1.75;
    overflow-x: auto;
    table-layout: auto !important;
}
.single-table thead {
    border-bottom: none;
}
.single-table th {
    background-color: #dedecb;
    border: none;
}
.single-table th + th {
    position: relative;
}
.single-table th + th:after {
    background-color: #fff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    scale: 0.5 1;
    top: 0;
    width: 2px;
}
.single-table tbody td {
    border: none;
    min-width: 100px;
}
.single-table tbody tr:first-child td {
    border-top: 1px solid var(--text-color-primary);
}
.search-field-wrapper {
    position: relative;
}
.search-field-wrapper:before {
    background-image: url(assets/image/icon_search.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 18px;
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
}
.search-field {
    border-radius: 4px;
    border-width: 1px;
    padding: 0.4rem 8px 0.3rem 32px;
    width: clamp(15em, 100%, 18em);
}
@media screen and (max-width: 1024px) {
    .media-sidebar,
    .news-sidebar {
        margin-inline: auto;
        margin-bottom: 80px;
        max-width: 89%;
    }
}
.sidebar__item-title {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.sidebar > .sidebar__item-title:first-child {
    margin-top: 0;
}
.sidebar__list-vertical .sidebar__list-item + .sidebar__list-item {
    margin-top: 0.8rem;
}
.sidebar__list-vertical a {
    color: var(--text-color-primary);
    padding-left: 14px;
    position: relative;
}
.sidebar__list-horizontal {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}
.sidebar__list-horizontal a {
    font-size: 1rem;
    background-color: var(--dark-green);
    color: #fff;
    border-radius: 4px;
    font-size: 0.875rem;
    padding: 0.2em 0.5em;
}
.sidebar__list-media a {
    background-color: var(--light-gray);
    color: var(--light-green);
}
.list-circle .sidebar__list-item a:before {
    background-color: var(--red-brown);
    border-radius: 50%;
    height: 7px;
    width: 7px;
}
.list-circle .sidebar__list-item a:before,
.list-triangle .sidebar__list-item a:before {
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.list-triangle .sidebar__list-item a:before {
    border-color: transparent transparent transparent var(--red-brown);
    border-style: solid;
    border-width: 4px 0 4px 6.9px;
    height: 0;
    width: 0;
}
.list-tag .sidebar__list-item a {
    background-color: var(--red-brown);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.sidebar__item + .sidebar__item {
    border-top: 1px solid var(--light-green);
    margin-top: 3rem;
}
.sidebar-image {
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1024px) {
    .newest__item-link {
        align-items: center;
        display: grid;
        gap: 16px;
        grid-template-columns: 100px auto;
    }
}
.newest__list-article {
    display: grid;
    gap: 24px;
}
.newest__item-title {
    margin-top: 0.5rem;
}
.newest__item-date,
.newest__item-title {
    color: var(--text-color-primary);
    line-height: 1.5;
}
.post-tag__list-wrapper {
    border-bottom: 1px solid var(--red-brown);
    display: grid;
    gap: 4px;
    grid-template-columns: auto 1fr;
    margin-bottom: 5rem;
    padding-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
    .post-tag__list-wrapper {
        margin-inline: auto;
        max-width: 89%;
    }
}
.post-tag__list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
}
.post-tag {
    border-radius: 4px;
    font-size: 0.875rem;
    padding: 0.2em 0.5em;
}
.media-tag {
    background-color: var(--light-gray);
    color: var(--light-green);
}
.news-tag {
    background-color: var(--dark-green);
    color: #fff;
}
.post-tag__list-wrapper li {
    position: relative;
}
.post-tag__list-wrapper li:not(:last-child):after {
    background-color: var(--text-color-primary);
    content: "";
    display: block;
    height: 1rem;
    position: absolute;
    right: -9px;
    scale: 0.5 1;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
}
.single-nav__links {
    align-items: center;
    color: var(--text-color-primary);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    margin-inline: 1rem;
}
@media screen and (max-width: 1024px) {
    .single-nav__links {
        margin-inline: auto;
        max-width: 89%;
    }
}
.single-nav__links [rel="next"] {
    margin-left: auto;
}
.nav-toarchive {
    color: var(--text-color-primary);
    margin-inline: auto;
}
.single-nav__links [rel="prev"] {
    margin-right: auto;
}
.nav-next,
.nav-prev {
    color: var(--text-color-primary);
    width: -moz-fit-content;
    width: fit-content;
}
.nav-prev {
    margin-left: 1em;
}
.nav-next {
    margin-right: 1em;
}
.nav-triangle {
    position: relative;
}
.nav-triangle:after,
.nav-triangle:before {
    border-color: transparent;
    border-style: solid;
    height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}
.triangle-left:before {
    border-color: transparent var(--red-brown) transparent transparent;
    border-width: 4px 6.9px 4px 0;
    content: "";
    left: -1em;
}
.triangle-right:after {
    border-color: transparent transparent transparent var(--red-brown);
    border-width: 4px 0 4px 6.9px;
    content: "";
    right: -1em;
}
.archive-title {
    margin-inline: auto;
    max-width: 52%;
}
@media screen and (max-width: 1024px) {
    .archive-title {
        max-width: min(1000px, 89%);
    }
    .archive-title .c-page-title--en,
    .archive-title .c-page-title--ja {
        padding: 0;
    }
}
.archive__list-item {
    display: grid;
    grid-template-columns: 56px auto;
}
.archive__month {
    font-size: 1.5rem;
}
.date-article-wrapper {
    display: grid;
    grid-template-columns: 1fr;
}
.archive__list-item {
    border-bottom: 1px solid var(--red-brown);
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.archive-article__meta {
    align-items: start;
    border-bottom: 1px solid var(--light-green);
    display: grid;
    gap: 16px;
    grid-template-columns: 80px minmax(120px, 1fr);
    align-items: baseline;
    line-height: 1.3;
    margin-bottom: 32px;
    padding-bottom: 32px;
}
.archive-article__meta:has(.news-article__category) {
    grid-template-columns: 80px 102px minmax(120px, 1fr);
}
@media screen and (max-width:1024px) {
    .archive-article__meta:has(.news-article__category) {
        grid-template-columns: auto;
    }
}
.archive-article__meta:first-child:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
    .archive-article__meta {
        grid-template-columns: auto;
    }
}
.archive__link {
    color: var(--text-color-primary);
    line-height: 1.5;
}
.grid-item-contents {
    display: contents;
}
@media screen and (max-width: 1024px) {
    .grid-item-contents {
        display: flex;
        gap: 12px;
    }
}
.archive__card {
    display: grid;
    gap: 64px 32px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.archive__card-meta {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.archive__card__img-wrapper {
    height: auto;
    max-width: 100%;
}
.archive__card__img-wrapper .media__card-image {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.media-article__category {
    background-color: var(--light-green);
    color: #fff;
}
.inquiry {
    padding-top: max(80px, 7.1vw);
}
.page-inquiry {
    padding-top: 0;
    width: clamp(680px, 52%, 755px);
    padding-bottom: 80px;
}
@media screen and (max-width:768px) {
    .page-inquiry {
        width: auto;
    }
}
.c-page-title-inquiry {
    margin-bottom: 80px;
    margin-top: 80px;
}
@media screen and (max-width: 768px) {
    .c-page-title-inquiry {
        margin-bottom: 0;
        margin-top: 0;
    }
    .c-page-title-inquiry .c-page-title--ja {
        font-size: 1.75rem;
        padding-left: 0;
    }
    .c-page-title-inquiry .c-page-title--en {
        padding-left: 0;
    }
}
.inquiry-flow-wrapper {
    display: grid;
    margin-bottom: 80px;
    margin-top: 160px;
    place-content: center;
}
@media screen and (max-width: 768px) {
    .inquiry-flow-wrapper {
        margin-bottom: 48px;
    }
}
[role="tablist"] {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
[role="tablist"] [role="tab"] {
    border-bottom: 2px solid #d4d4d4;
    color: #d4d4d4;
    display: grid;
    height: 100%;
    height: -webkit-fill-available;
    line-height: 1.3;
    padding-block: 1rem;
    place-content: center;
    transition: color 0.3s ease, border 0.3s ease;
}
@media screen and (max-width: 768px) {
    [role="tablist"] [role="tab"] {
        padding-block: 0.8rem;
    }
}
[role="tablist"] [role="tab"][aria-selected="true"] {
    border-color: var(--text-color-primary);
    color: var(--text-color-primary);
}
.wpcf7-radio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
    justify-content: center;
    padding-bottom: 32px;
    padding-top: 64px;
    row-gap: 1rem;
}
@media screen and (max-width: 768px) {
    .wpcf7-radio {
        padding-bottom: 8px;
        padding-top: 40px;
    }
}
.wpcf7-radio label {
    align-items: baseline;
    display: flex;
    gap: 4px;
}
.wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-list-item-label {
    line-height: 1.3;
}
.wpcf7-email,
.wpcf7-select,
.wpcf7-tel,
.wpcf7-text,
.wpcf7-textarea {
    background-color: #fff;
    border: 1px solid var(--text-color-primary);
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0.6rem;
}
.wpcf7-select {
    padding-inline: 0.4rem;
    width: 88px;
}
.wpcf7-email,
.wpcf7-tel,
.wpcf7-text,
.wpcf7-textarea {
    width: 100%;
}
.wpcf7-text[name="your-zip-code"] {
    width: 88px;
}
.wpcf7-textarea {
    resize: none;
}
.wpcf7-not-valid-tip {
    margin-bottom: 1rem;
}
.label-text {
    color: var(--text-color-primary);
    display: inline-block;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}
.label-required {
    background-color: var(--red-brown);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    margin-left: 0.3rem;
    padding: 0.1rem 0.75em;
}
.is-hidden {
    display: none;
}
[type="radio"],
label {
    cursor: pointer;
}
[type="radio"] {
    accent-color: var(--red-brown);
    scale: 1.6;
}
.form-part {
    margin-bottom: 0.5rem;
}
.wpcf7-not-valid {
    margin-bottom: 0.3rem;
}
.inquiry-link {
    background-color: var(--text-color-primary);
    color: #fff;
    cursor: pointer;
    display: block;
    line-height: 1.25;
    margin-inline: auto;
    margin-top: 40px;
    min-width: 160px;
    overflow-wrap: break-word;
    padding: 0.85rem min(5vw, 24px);
    text-align: center;
    word-break: keep-all;
    transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
    .inquiry-link {
        padding: 0.5rem min(5vw, 24px) 0.4rem;
    }
}
.inquiry-link:hover {
    opacity: 0.8;
}
.inquiry-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}
.inquiry-detail,
.inquiry-title {
    color: var(--text-color-primary);
    text-align: center;
}
.inquiry-detail {
    line-height: 1.5;
}
.inquiry__info-item {
    align-items: center;
    border-bottom: 1px solid var(--light-green);
    display: grid;
    grid-template-columns: minmax(176px, 1fr) 3fr;
    line-height: 1.6;
    padding: 24px min(2.9vw, 56px);
}
.inquiry-nav-links > p {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr 1fr;
    justify-self: center;
    margin-top: 2rem;
}
.wpcf7-spinner {
    display: none;
}
.fv-only-heading {
    padding: 22.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .fv-only-heading {
        padding-inline: 5.13vw;
    }
}
.about-single-interview-wrapper {
    background-color: var(--light-gray);
    color: var(--text-color-primary);
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .about-single-interview-wrapper {
        padding-inline: 5.13vw;
    }
}
.about-single-interview__desc {
    line-height: 2.5;
}
.interview__content-wrapper {
    padding: 14.81vh 23.96vw;
}
@media screen and (max-width: 768px) {
    .interview__content-wrapper {
        padding-inline: 5.13vw;
    }
}
.interview-article__title {
    margin-bottom: 2rem;
    margin-top: 3rem;
}
.interview-article__profile-position {
    margin-right: 1rem;
}
.interview-article__profile {
    align-items: center;
    display: flex;
}
.interview-article__profile-name {
    font-size: 1.25rem;
}
.interview-article__question-label {
    color: var(--red-brown);
    font-family: Inter, sans-serif;
    font-size: 2rem;
}
.interview-article__question {
    align-items: baseline;
    display: flex;
    font-size: 1.5rem;
    gap: 0.75rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}
.interview-article__answer {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 5rem;
}
.interview-article__figure-image {
    display: block;
    margin-inline: auto;
}
.interview-article__figure-caption {
    margin-top: 0.5rem;
    text-align: center;
}
.interview-article__figure {
    margin-bottom: 3rem;
}
.other-iterview-article__list-wrapper {
    border-top: 1px solid var(--red-brown);
    margin-top: 64px;
    padding-top: 144px;
}
.other-interview__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.other-iterview-article__list {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
    .other-iterview-article__list {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
}
.other-iterview-article__item-position {
    font-size: 0.875rem;
    margin-top: 1rem;
}
.other-iterview-article__item-thumnail-img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.other-iterview-article__item-profile-name {
    font-size: 1.2rem;
    margin-top: 0.75rem;
}
.not-found-wrapper {
    margin-inline: auto;
    margin-bottom: 160px;
    max-width: 52%;
}
@media screen and (max-width:768px) {
    .not-found-wrapper {
        max-width: min(1000px, 89%);
    }
}
.not-found-head {
    font-size: 1.75rem;
    line-height: 1.5;
    margin-bottom: 1.5em;
}
.not-found-text {
    line-height: 1.5;
    margin-bottom: 8em;
}