@charset "utf-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #313137;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
    -webkit-text-size-adjust: 100%;
}

body.fix {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    body {
        font-size: 13px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: 100%;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

p {
    margin: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol {
    margin: 0;
    padding: 0 0 0 28px;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
    padding: 0;
}

a,
.a {
    color: #313137;
    text-decoration: none;
    transition: 0.2s ease;
    cursor: pointer;
}

a:hover,
.a:hover {
    opacity: 0.8;
}

a img {
    border: none;
}

img {
    height: auto;
    max-width: 100%;
    border: 0;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

sup {
    font-size: 0.8em;
}

table {
    border-collapse: collapse;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

main {
    display: block;
    overflow: clip;
}

.layout {
    position: relative;
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    /*overflow: hidden;*/
}

@media (max-width: 767px) {
    .pc {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .sp {
        display: none !important;
    }
}



/* ---------------- general */
em {
    color: #f04d44;
    font-style: normal;
}

a.btn,
.a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 80px;
    max-width: 448px;
    padding: 8px 8px 8px 8px;
    background: linear-gradient(90deg, #fff, #fff 50%, #28b9b9 50%, #28b9b9);
    background-size: 200%;
    background-position: 100% 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    border-radius: 40px;
    border: 2px solid #28b9b9;
}

a.btn::before,
.a.btn::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #009A96;
    border-radius: 50%;
}

a.btn::after,
.a.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 40px;
    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translate(0, -50%) rotate(45deg);
}

a.btn:hover,
.a.btn:hover {
    background-position: 0 0;
    color: #28b9b9;

}

@media (max-width: 1023px) {

    a.btn,
    .a.btn {
        height: 60px;
        max-width: 312px;
        font-size: 13px;
        margin: 0 auto;
    }

    a.btn::before,
    .a.btn::before {
        top: 8px;
        right: 10px;
    }

    a.btn::after,
    .a.btn::after {
        right: 26px;
    }
}

/*arrow-btn*/
.arrow-btn .circle {
    position: relative;
    width: 48px;
    height: 48px;
    background: #28B9B9;
    border-radius: 50%;
    transition: 0.2s ease;
    overflow: hidden;
}

.arrow-btn .circle .arrow {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    width: fit-content;
    height: fit-content;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-duration: 0.2s;
}

.arrow-btn .arrow-right {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.arrow-btn.arrow-right .circle .arrow img {
    transform: rotate(270deg);
}

.arrow-btn {
    cursor: pointer;
}

.arrow-btn a {
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes arrow-down {
    0% {
        top: 50%;
        left: 50%;
    }

    50% {
        top: 100%;
        left: 50%;
    }

    51% {
        top: -100%;
        left: 50%;
    }

    100% {
        top: 50%;
        left: 50%;
    }
}

@keyframes arrow-right {
    0% {
        top: 50%;
        left: 50%;
    }

    50% {
        top: 50%;
        left: 100%;
    }

    51% {
        top: 50%;
        left: -100%;
    }

    100% {
        top: 50%;
        left: 50%;
    }
}

/* ---------------- header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 64px;
    z-index: 99;
}

header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.is-single hgroup {
    display: flex;
    align-items: center;
}

header hgroup {
    display: flex;
    margin-bottom: 0;
    gap: 12px;
}

header .logo {
    width: 126px;
}

header .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header .logo img {
    width: 126px;
}

header.is-single {
    position: relative;
    top: 0;
    left: 0;
    background: #fff;
}

header.is-single .shoulder a {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 16px 72px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #313137;
}

header .shoulder {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    transform: translateY(-5px);
}

header .shoulder a {
    color: #313137
}

header .shoulder a:hover {
    color: inherit;
}

header .shoulder span {
    display: block;
}

header .nav-group {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 56px;
}

header .nav-group .nav-list {
    height: fit-content;
}

header .nav-group .nav-list ul {
    display: flex;
    gap: 24px;
}

header .nav-group .nav-list li {
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

header .nav-group .nav-list li .a {
    display: block;
    transform: translateY(0);
}

header .nav-group .nav-list li .copy {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

header .nav-group .nav-list li:hover .a {
    animation: roll1;
    animation-duration: 0.4s;
}

header .nav-group .nav-list li:hover .copy {
    animation: roll2;
    animation-duration: 0.4s;
}

@keyframes roll1 {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes roll2 {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%);
    }
}

header .nav-group .arrow-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    height: 50px;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    background: #28B9B9;
    border-radius: 25px;
    padding-left: 24px;
    transition: 0.2s ease;
}

header .nav-group .arrow-btn:hover {
    transform: scale(1.05);
}

header .nav-group .arrow-btn:hover .circle .arrow {
    animation: arrow-down;
    animation-duration: 0.4s;
    animation-timing-function: linear;
}

.nav-btn-sp {
    display: none;
}

@media (max-width: 1279px) {
    header .logo {}

    header .shoulder {
        font-size: 14px;
    }

    header {
        padding: 16px 24px
    }

    header .layout {
        padding: 0;
    }
}

@media (max-width: 767px) {
    header {
        padding: 16px;
    }

    header .layout {
        padding: 0;
    }

    header .logo {
        width: 118px;
    }

    header .logo a {
        padding: 0;
    }

    header .shoulder {

        font-size: 10px;
    }

    header .nav-group {
        position: fixed;
        top: 0;
        right: -100%;
        width: 63.88%;
        height: 100%;
        background: #28b9b9;
        justify-content: center;
        align-items: flex-start;
        transition: all 0.2s ease;
        padding-top: 99px;
    }

    header .nav-group.active {
        right: 0;
    }

    header .nav-group .nav-list ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        font-size: 14px;
        margin: 0 auto;
    }

    header .nav-group .nav-list li .a {
        color: #fff;
    }

    header .nav-group .arrow-btn {
        display: none;
    }

    .nav-btn-sp {
        position: fixed;
        top: 12px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: #28b9b9;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        transition: 0.3s ease;
    }

    .nav-btn-sp span {
        width: 16px;
        height: 2px;
        background: #fff;
        transition: 0.3s ease;
        transform-origin: center;
    }

    .nav-btn-sp.active {
        background: #fff;
    }

    .nav-btn-sp.active span {
        background: #28b9b9;
    }

    .nav-btn-sp.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-btn-sp.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-btn-sp.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    header.is-single .nav-btn-sp {
        display: none;
    }

    header.is-single .shoulder a {
        font-size: 10px;
        display: block;
        padding: 0;
    }
}



/* ---------------- footer */
footer {
    padding: 64px 0 0;
    background: #fff;
    text-align: center;
}

footer .logo {
    margin: 0 auto 16px;
}

footer .logo img {
    width: 126px;
}

footer .title {
    font-size: 15px;
    line-height: 1.5;
}

footer .copyright {
    padding: 40px 0;
    font-size: 10px;
}

footer.is-single {
    background: #313137;
}

footer.is-single .title a {
    color: #fff;
}

footer.is-single .copyright {
    color: #fff;
}

@media (max-width: 767px) {
    footer {
        padding: 64px 0 0;
    }

    footer .layout {
        padding: 0 32px;
    }

    footer .logo {
        margin-bottom: 16px;
    }

    footer .logo img {
        width: 95px;
    }

    footer .title {
        font-size: 10px;
        line-height: 1.2;
    }

    footer .copyright {
        padding: 32px 0;
        text-align: right;
    }
}

/*hgroup*/
hgroup {
    margin-bottom: 40px;
}

hgroup .sub {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
    margin-bottom: 24px;
}

hgroup .sub::before {
    content: "";
    width: 32px;
    height: 2px;
    background: #28B9B9;
}

hgroup .h2 {
    font-size: 64px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 700;
}

section .h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.025em;
    margin-bottom: 24px;
}

section .lead {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.025em;
    max-width: 580px;
    margin-bottom: 64px;
}

@media (max-width:1279px) {
    hgroup .h2 {
        font-size: 48px;
    }
}

@media (max-width: 1023px) {
    hgroup {
        margin-bottom: 24px;
    }

    hgroup .sub {
        font-size: 12px;
        gap: 8px;
        margin-bottom: 16px;
    }

    hgroup .sub::before {
        width: 16px;
        height: 2px;
    }

    hgroup .h2 {
        font-size: 24px;
    }

    section .h3 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    section .lead {
        font-size: 14px;
    }
}

/*hero-area*/
.hero-area {
    position: relative;
    padding-top: 144px;
}

.hero-area::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 67.34%;
    background: linear-gradient(to bottom, #DEF2F4, #ADE0E1);
    z-index: 1;
}

.hero-area .layout {
    position: relative;
    z-index: 10;
}

.hero-area .copy {
    margin: 0 auto 72px;
}

.hero-area .copy .h1 {
    text-align: center;
    font-size: 58px;
    line-height: 1.7;
    letter-spacing: 0.025em;
    white-space: nowrap;
    font-weight: 700;
}

.hero-area .copy .h1 .-spacing-min {
    letter-spacing: -0.1em;
}

.hero-area picture.img {
    display: block;
    position: relative;
    z-index: 10;
    padding: 0 24px;
    width: 100%;
}

.hero-area figure.img img {
    width: 100%;
}

@media (max-width: 1279px) {
    .hero-area {
        padding-top: 120px;
    }

    .hero-area .copy {
        margin: 0 auto 56px;
    }

    .hero-area .copy .h1 {
        font-size: 44px;
        line-height: 1.6;
    }

    .hero-area figure.img {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .hero-area {
        padding-top: 100px;
    }

    .hero-area::before {
        height: 85.19%;
    }

    .hero-area .copy {
        margin: 0 auto 40px;
    }

    .hero-area .copy .h1 {
        font-size: 32px;
        line-height: 1.8;
        white-space: nowrap;
    }

    .hero-area figure.img {
        padding: 0 16px;
    }
}

/* fill animation */
.-fill {
    display: inline;
    padding: 4px .3rem;
    background-image: linear-gradient(90deg, transparent 50%, #fff 50%);
    background-size: 200%;
    color: transparent;
    line-height: 1.7;
    letter-spacing: 0.025em;
    transition-property: background-position, color;
    transition-timing-function: var(--easing);
    transition-duration: .4s;
    transition-delay: .4s, .8s;
}

.active .-fill {
    background-position: -100%;
    color: #28B9B9;
}

/*open-positions*/
.open-positions {
    position: relative;
    padding: 140px 0 120px;
}

/* 背景画像バリエーション */
.open-positions.-bgimg {
    background-image: url(/img/recruit/recruit_open-positions_bg.png);
    background-size: cover;
    background-position: center center;
}

.open-positions .layout {
    position: relative;
    z-index: 10;
}

/* 背景の疑似要素 */
.open-positions::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 46.91%;
    bottom: 0;
    left: 0;
    background: #28B9B9;
    z-index: 1;
}

/* 背景画像使用時は疑似要素を非表示 */
.open-positions.-bgimg::after {
    display: none;
}

/* アイテムグループ */
.open-positions .item-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    grid-gap: 40px;
    position: relative;
    z-index: 2;
}

/* コラム要素（新機能） */
.open-positions .item-group .column {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 44px;
}

/* バルーン要素（新機能） */
.open-positions .item-group .column .baloon {
    opacity: 0;
    position: relative;
    padding: 24px 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.025em;
    background: #DEF2F4;
    border-radius: 24px;
    transition: all 0.2s ease;
}

/* バルーンのアニメーション */
.open-positions .item-group.show .column:nth-of-type(1) .baloon {
    opacity: 1;
}

.open-positions .item-group.show .column:nth-of-type(2) .baloon {
    opacity: 1;
    transition-duration: 0.6s;
}

.open-positions .item-group.show .column:nth-of-type(3) .baloon {
    opacity: 1;
    transition-duration: 1.2s;
}

/* バルーンの矢印 */
.open-positions .item-group .column .baloon::after {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #DEF2F4;
}

/* アイテム（既存の求人カード） */
.open-positions .item-group .item {
    background: #fff;
    padding: 32px 32px 40px;
    grid-row: span 4;
    box-shadow: 0px 4px 16px 0px rgba(40, 185, 185, 0.2);
    transition: all 0.5s ease;
}

.open-positions .item-group .item a {
    color: #313137;
}

.open-positions .item-group .item .img {
    width: 168px;
    margin: 0 auto 8px;
}

.open-positions .item-group .item .h {
    text-align: center;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 700;
    margin-bottom: 16px;
}

.open-positions .item-group .item p {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    text-align: center;
    margin-bottom: 40px;
}

.open-positions .item-group .item:hover {
    box-shadow: 0px 4px 16px 0px rgba(40, 185, 185, 0.6);
}

.open-positions .item-group .item .arrow-btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.open-positions .item-group .item:hover .arrow-btn .circle .arrow {
    animation: arrow-right;
    animation-duration: 0.4s;
    animation-timing-function: linear;
}

/* タブレット対応 */
@media (max-width: 1023px) {
    .open-positions {
        padding: 100px 0;
    }

    .open-positions .item-group {
        grid-template-columns: 1fr 1fr;
        grid-gap: 32px;
    }

    .open-positions .item-group .item {
        padding: 24px 24px 32px;
    }

    .open-positions .item-group .item .img {
        width: 120px;
    }

    .open-positions .item-group .item .h {
        font-size: 24px;
    }

    .open-positions .item-group .item p {
        font-size: 16px;
    }
}

/* スマートフォン対応 */
@media (max-width: 767px) {
    .open-positions {
        padding: 80px 0;
    }

    .open-positions::after {
        height: 65%;
    }

    .open-positions .item-group {
        grid-template-columns: 1fr;
        grid-gap: 24px;
    }

    .open-positions .item-group .item {
        padding: 20px 20px 24px;
    }

    .open-positions .item-group .head-group {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .open-positions .item-group .item .img {
        width: 72px;
        margin: 0;
    }

    .open-positions .item-group .item .h {
        font-size: 20px;
        text-align: left;
        margin-bottom: 0;
    }

    .open-positions .item-group .item p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .open-positions .item-group .column .baloon {
        font-size: 14px;
    }
}

/*company*/
.company-area {
    position: relative;
    padding: 120px 0 0;
    margin-bottom: 160px;
}

.company-area .img-block {
    position: absolute;
    width: 44.16vw;
    height: 700px;
    bottom: 0;
    left: 0;
}

.company-area .img-block .img {
    width: 100%;
    height: 100%;
}

.company-area .img-block .img img {
    object-fit: cover;
    width: 100%;
    height: 700px;
}

.company-area .table-block {
    max-width: 581px;
    width: 40.34vw;
    margin-right: 0;
    margin-left: auto;
}

.company-area .table-block table {
    border-top: 1px solid #D4F1F1;
}

.company-area .table-block table tr {
    border-bottom: 1px solid #D4F1F1;
}

.company-area .table-block table th {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    padding: 32px 24px;
    min-width: 160px;
    vertical-align: text-top;
    text-align: left;
}

.company-area .table-block table td {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    padding: 32px 24px;
}

.company-area .table-block table td p {
    margin-bottom: 16px;
}

.company-area .table-block table td p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .company-area {
        padding: 100px 0 0;
        margin-bottom: 120px;
    }

    .company-area .img-block {
        width: 50%;
        height: 500px;
    }

    .company-area .img-block .img img {
        height: 500px;
    }

    .company-area .table-block {
        max-width: none;
    }

    .company-area .table-block table th {
        font-size: 18px;
        padding: 24px 16px;
        min-width: 120px;
    }

    .company-area .table-block table td {
        font-size: 14px;
        padding: 24px 16px;
    }

    .company-area .table-block table td p {
        margin-bottom: 12px;
    }
}

@media (max-width: 767px) {
    .company-area {
        padding: 88px 0 0;
        margin-bottom: 40px;
    }

    .company-area .img-block {
        position: relative;
        width: calc(100vw - 24px);
        height: 370px;
        margin-top: 40px;
    }

    .company-area .img-block .img img {
        height: 370px;
    }

    .company-area .table-block {
        width: 100%;
        margin-left: 0;
    }

    .company-area .table-block table tr {
        padding: 24px 8px;
    }

    .company-area .table-block table th {
        font-size: 16px;
        padding: 24px 8px 16px;
        min-width: auto;
        display: block;
        width: 100%;
        text-align: left;
        margin-bottom: 16px;
    }

    .company-area .table-block table td {
        font-size: 14px;
        padding: 0 8px 24px;
        display: block;
        width: 100%;
    }

    .company-area .table-block table td p {
        margin-bottom: 12px;
    }
}

/*-bg-area*/
.-bg-area {
    padding: 140px 0 160px;
    margin: 0 24px;
}

.-bg01 {
    background: #F6F6F6;
    margin-bottom: 24px;
}

.-bg02 {
    background: linear-gradient(to bottom, #DEF2F4, #ADE0E1);
    margin-bottom: 24px;
}

.-bg02.short {
    position: relative;
    padding-bottom: 0;
}

.-bg02.short::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 1;
}

@media (max-width:767px) {
    .-bg-area {
        margin: 0 auto;
        padding: 80px 0;
    }
}

/*lineup*/
.lineup {
    margin-bottom: 120px;
}

.lineup .item-group {
    background: #fff;
    padding: 48px 64px;
}

.lineup .item-group .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 40px;
}

.lineup .item-group .row:last-of-type {
    margin-bottom: 0;
}

.lineup .item-group .row .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.lineup .item-group .row .item .img {
    height: 30px;
    width: fit-content;
    margin: 0 auto;
}

.lineup .item-group .row .item .img img {
    width: 100%;
    height: 100%;
}

.lineup .item-group .row .item .txt {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    width: fit-content;
    margin: 0 auto;
}

@media (max-width: 1023px) {
    .lineup {
        margin-bottom: 80px;
    }

    .lineup .item-group {
        padding: 40px 48px;
    }

    .lineup .item-group .row {
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 32px;
    }

    .lineup .item-group .row .item {
        gap: 12px;
    }

    .lineup .item-group .row .item .img {
        height: 24px;
    }

    .lineup .item-group .row .item .txt {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .lineup {
        margin-bottom: 60px;
    }

    .lineup .item-group {
        padding: 40px 16px;
    }

    .lineup .item-group .row {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 24px;
        grid-gap: 24px 16px;
    }

    .lineup .item-group .row .item {
        gap: 10px;
    }

    .lineup .item-group .row .item .img {
        height: 26px;
    }

    .lineup .item-group .row .item .txt {
        font-size: 11px;
    }
}

/*service*/
.service .grid-item-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(376px, 1fr));
    grid-gap: 24px 40px;
}

.service .grid-item-group .item {
    background: #fff;
    padding: 32px 40px 40px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    text-align: center;
    gap: 16px;
}

.service .grid-item-group .item .ico {
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.service .grid-item-group .item .h {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.025em;
    text-align: center;
}

.service .grid-item-group .item .txt {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    text-align: left;
}

@media (max-width: 1023px) {
    .service .grid-item-group {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        grid-gap: 20px 32px;
    }

    .service .grid-item-group .item {
        padding: 24px 32px 32px;
        gap: 12px;
    }

    .service .grid-item-group .item .h {
        font-size: 18px;
    }

    .service .grid-item-group .item .txt {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .service .grid-item-group {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .service .grid-item-group .item {
        padding: 32px 40px 32px;
        gap: 10px;
    }

    .service .grid-item-group .item .h {
        font-size: 16px;
    }

    .service .grid-item-group .item .h .logo {
        height: 20px;
        margin-bottom: 8px;
    }

    .service .grid-item-group .item .h .logo img {
        height: 100%;
        width: auto;
    }

    .service .grid-item-group .item .txt {
        font-size: 14px;
    }
}

/*workplace*/
.workplace {
    position: relative;
    z-index: 10;
}

.workplace .item-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 64px;
}

.workplace .item-group .item {
    background: #fff;
    padding: 24px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    text-align: center;
    gap: 0;
}

.workplace .item-group .item .head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.workplace .item-group .item .head .ico {
    width: 168px;
    height: 168px;
}

.workplace .item-group .item .head .txt {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 700;
    text-align: left;
}

.workplace .item-group .item .num-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.workplace .item-group .item .num-block .num {
    font-size: 96px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.025em;
}

.workplace .item-group .item .num-block .txt {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.025em;
}

.list-group li {
    position: relative;
    padding: 16px 40px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.025em;
    background: #fff;
}

.list-group li::before {
    position: absolute;
    content: "";
    top: calc(((1em * 1.75) / 2) + 16px);
    left: 20px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #28b9b9;
}

.workplace .list-group ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 24px 40px;
    margin-bottom: 64px;
}

.workplace .list-group li:before {
    width: 12px;
    height: 12px;
    left: 22px;
}

.workplace .img-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.workplace .img-group .item:nth-of-type(2n) {
    transform: translateY(48px);
}

.workplace .h3 {
    font-size: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1023px) {
    .workplace .item-group {
        grid-gap: 32px;
        margin-bottom: 48px;
    }

    .workplace .item-group .item {
        padding: 20px;
    }

    .workplace .item-group .item .head {
        gap: 12px;
    }

    .workplace .item-group .item .head .ico {
        width: 120px;
        height: 120px;
    }

    .workplace .item-group .item .head .txt {
        font-size: 24px;
    }

    .workplace .item-group .item .num-block .num {
        font-size: 72px;
    }

    .workplace .item-group .item .num-block .txt {
        font-size: 20px;
    }

    .list-group li {
        padding: 12px 32px;
        font-size: 20px;
    }

    .list-group li::before {
        top: calc(((1em * 1.75) / 2) + 12px);
        left: 16px;
    }

    .workplace .list-group ul {
        grid-gap: 20px 32px;
        margin-bottom: 48px;
    }

    .workplace .img-group {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .workplace .img-group .item:nth-of-type(2n) {
        transform: translateY(32px);
    }
}

@media (max-width: 767px) {
    .workplace .item-group {
        grid-template-columns: 1fr;
        grid-gap: 40px;
        margin-bottom: 48px;
    }

    .workplace .item-group .item .head {
        gap: 16px;
    }

    .workplace .item-group .item .head .ico {
        width: 72px;
        height: 72px;
    }

    .workplace .item-group .item .head .txt {
        font-size: 20px;
    }

    .workplace .item-group .item .num-block .num {
        font-size: 64px;
    }

    .workplace .item-group .item .num-block .txt {
        font-size: 14px;
    }

    .list-group li {
        padding: 16px 32px;
        font-size: 16px;
    }

    .list-group li::before {
        top: calc(((1em * 1.75) / 2) + 16px);
        left: 16px;
    }

    .workplace .list-group ul {
        grid-template-columns: 1fr;
        grid-gap: 16px;
        margin-bottom: 48px;
    }

    .workplace .list-group li:before {
        width: 8px;
        height: 8px;
        left: 16px;
    }

    .workplace .img-group {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .workplace .img-group .item:nth-of-type(2n) {
        transform: translateY(24px);
    }

    .workplace .h3 {
        font-size: 18px;
        margin-bottom: 24px;
    }
}

/*our-commitment*/
.our-commitment {
    position: relative;
    padding: 120px 0px 160px;
}

.our-commitment .sticky-area {
    display: flex;
    gap: 150px;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.our-commitment .txt-group .txt-block {
    margin-bottom: 64px;
}

.our-commitment .txt-group .txt-block:last-of-type {
    margin-bottom: 0;
}

.our-commitment .txt-group p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    margin-bottom: 1.75em;
}

.our-commitment .txt-group p .marker {
    background: #28B9B9;
    color: #fff;
    padding: 2px 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: 500;
}

.our-commitment .txt-group p:last-of-type {
    margin-bottom: 0;
}

.our-commitment .sticky-area .sticky-item {
    width: fit-content;
}

.our-commitment .sticky-area .sticky-item .img {
    position: sticky;
    top: calc((100vh - 450px)/2);
    right: 0;
    width: 520px;
}

@media (max-width: 1023px) {
    .our-commitment {
        padding: 100px 0px 120px;
    }

    .our-commitment .sticky-area {
        gap: 100px;
    }

    .our-commitment .txt-group .txt-block {
        margin-bottom: 48px;
    }

    .our-commitment .txt-group p {
        font-size: 15px;
        margin-bottom: 1.5em;
    }

    .our-commitment .sticky-area .sticky-item .img {
        top: calc((100vh - 350px)/2);
        width: 400px;
    }
}

@media (max-width: 767px) {
    .our-commitment {
        padding: 80px 0px 0px;
    }

    .our-commitment .sticky-area {
        flex-direction: column;
        gap: 0px;
    }

    .our-commitment .txt-group .txt-block {
        margin-bottom: 48px;
    }

    .our-commitment .txt-group p {
        font-size: 14px;
        margin-bottom: 1.4em;
    }

    .our-commitment .sticky-area .sticky-item {
        width: 100%;
    }

    .our-commitment .sticky-area .sticky-item .img {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 48px;
        padding: 0 24px
    }
}

/*mission-vision-value*/
.mission-vision-value {
    padding-top: 120px;
}

.mission-vision-value .h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.mission-vision-value .sticky-area {
    display: flex;
    gap: 150px;
    justify-content: space-between;
    margin-bottom: 120px;
}

.mission-vision-value .sticky-area .sticky-item {
    width: fit-content;
}

.mission-vision-value .sticky-area .sticky-item .img {
    position: sticky;
    top: calc((100vh - 450px)/2);
    left: 0;
    width: 520px;
    height: 446px;
}

.mission-vision-value .sticky-area .sticky-item .img img {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s ease;
}

.mission-vision-value .sticky-area .sticky-item .img img:nth-of-type(1) {
    opacity: 0;
}

.mission-vision-value .sticky-area .sticky-item .img img:nth-of-type(2) {
    opacity: 0;
}

.mission-vision-value .sticky-area .sticky-item .img img:nth-of-type(3) {
    opacity: 0;
}

.mission-vision-value .sticky-area.show-img-01 .sticky-item .img img:nth-of-type(1) {
    opacity: 1;
}

.mission-vision-value .sticky-area.show-img-02 .sticky-item .img img:nth-of-type(2) {
    opacity: 1;
}

.mission-vision-value .sticky-area.show-img-03 .sticky-item .img img:nth-of-type(3) {
    opacity: 1;
}

.mission-vision-value .txt-group {
    /*padding-top: 150px;*/
}

.mission-vision-value .txt-group .txt-block {
    padding-bottom: 280px;
}

.mission-vision-value .txt-group .txt-block:first-of-type {
    padding-top: 150px;
}

.mission-vision-value .txt-group .txt-block:last-of-type {
    margin-bottom: 0;
}

.mission-vision-value .txt-group .txt-block p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    margin-bottom: 1.75em;
}

.mission-vision-value .txt-group .txt-block .h {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.025em;
    padding: 2px;
    background: #DEF2F4;
    margin-bottom: 16px;
    text-align: center;
}

.mission-vision-value .txt-group .txt-block ul {
    margin-bottom: 24px;
}

.mission-vision-value .txt-group .txt-block ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.025em;
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 8px;
}

.mission-vision-value .txt-group .txt-block ul li .num {
    padding-right: 4px;
}

@media (max-width: 1023px) {
    .mission-vision-value {
        padding-top: 100px;
    }

    .mission-vision-value .sticky-area {
        gap: 100px;
        margin-bottom: 100px;
    }

    .mission-vision-value .sticky-area .sticky-item .img {
        top: calc((100vh - 350px)/2);
        width: 400px;
        height: 343px;
    }

    .mission-vision-value .txt-group .txt-block {
        padding-bottom: 200px;
    }

    .mission-vision-value .txt-group .txt-block p {
        font-size: 15px;
        margin-bottom: 1.5em;
    }

    .mission-vision-value .txt-group .txt-block .h {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .mission-vision-value .txt-group .txt-block ul {
        margin-bottom: 20px;
    }

    .mission-vision-value .txt-group .txt-block ul li {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .mission-vision-value {
        padding-top: 80px;
    }

    .mission-vision-value .sticky-area {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .mission-vision-value .sticky-area .sticky-item {
        width: 100%;
    }

    .mission-vision-value .sticky-area .sticky-item .img {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 350px;
        height: 300px;
        margin: 0 auto;
    }

    .mission-vision-value .txt-group {
        padding-top: 0;
    }

    .mission-vision-value .txt-group .txt-block .img {
        margin: 0 24px;
    }

    .mission-vision-value .txt-group .txt-block:first-of-type {
        padding-top: 0;
    }

    .mission-vision-value .txt-group .txt-block {
        margin-bottom: 48px;
        padding-bottom: 0;
        padding-top: 0;
    }

    .mission-vision-value .txt-group .txt-bloc .img {
        margin-bottom: 48px;
    }

    .mission-vision-value .txt-group .txt-block p {
        font-size: 14px;
        margin-bottom: 1.4em;

    }

    .mission-vision-value .txt-group .txt-block .h {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .mission-vision-value .txt-group .txt-block ul {
        margin-bottom: 16px;
    }

    .mission-vision-value .txt-group .txt-block ul li {
        font-size: 14px;
    }

    .mission-vision-value .h3 {
        font-size: 18px;
        margin-top: 40px;
        margin-bottom: 16px;
    }
}


/*actions*/
.actions {
    padding: 140px 0 0;
}

.actions .item-group {
    display: flex;
    gap: 40px;
    align-items: center;
}

.actions .item-group .list-group ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 1;
}

.actions .item-group .list-group ul li {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.025em;
}

.actions .item-group .img {
    width: 376px;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .actions .item-group {
        gap: 32px;
    }

    .actions .item-group .list-group ul {
        gap: 12px;
    }

    .actions .item-group .list-group ul li {
        font-size: 15px;
    }

    .actions .item-group .img {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .actions {
        padding: 0 0;
    }

    .actions .item-group {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .actions .item-group .list-group {
        margin-top: 0;
        order: 2;
    }

    .actions .item-group .list-group ul {
        gap: 32px;
    }

    .actions .item-group .list-group ul li {
        font-size: 14px;
    }

    .actions .item-group .img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 32px;
        order: 1;
        flex-shrink: 1;
    }
}

/*changes*/
.changes {
    padding: 120px 0 0;
}

.changes .item-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
}

.changes .item-group .item {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 32px 54px;
    transition: all 0.2s ease;
}

.changes .item-group.show .item:nth-of-type(1) {
    opacity: 1;
}

.changes .item-group.show .item:nth-of-type(2) {
    opacity: 1;
    transition-duration: 0.6s;
}

.changes .item-group.show .item:nth-of-type(3) {
    opacity: 1;
    transition-duration: 1.2s;
}

.changes .item-group .item p {
    position: relative;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.025em;
}

.changes .item-group .item p::before {
    position: absolute;
    content: "";
    top: -8px;
    left: -30px;
    width: 22px;
    height: 15px;
    background-image: url(/img/recruit/recruit_txt_deco_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.changes .item-group .item p::after {
    position: absolute;
    content: "";
    bottom: -8px;
    right: -30px;
    width: 22px;
    height: 15px;
    background-image: url(/img/recruit/recruit_txt_deco_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1023px) {
    .changes {
        padding: 100px 0 0;
    }

    .changes .item-group {
        grid-template-columns: 1fr 1fr;
        grid-gap: 32px;
    }

    .changes .item-group .item {
        padding: 24px 40px;
    }

    .changes .item-group .item p {
        font-size: 15px;
    }

    .changes .item-group .item p::before {
        top: -6px;
        left: -24px;
        width: 18px;
        height: 15px;
    }

    .changes .item-group .item p::after {
        bottom: -6px;
        right: -24px;
        width: 18px;
        height: 15px;
    }
}

@media (max-width: 767px) {
    .changes {
        padding: 80px 0 0;
    }

    .changes .item-group {
        grid-template-columns: 1fr;
        grid-gap: 24px;
    }

    .changes .item-group .item {
        padding: 20px 32px;
    }

    .changes .item-group .item p {
        font-size: 14px;
    }

    .changes .item-group .item p::before {
        top: -5px;
        left: -20px;
        width: 16px;
        height: 15px;
    }

    .changes .item-group .item p::after {
        bottom: -5px;
        right: -20px;
        width: 16px;
        height: 15px;
    }
}

/*understanding*/
.understanding {
    padding: 120px 0 0;
}

.understanding .txt-box-area {
    position: relative;
    padding-top: 414px;
    margin-bottom: 64px;
}

.understanding .img.left {
    position: absolute;
    top: 64px;
    left: 0;
    width: 73.67%;
    height: 350px;
}

.understanding .img.left img {
    object-fit: cover;
}

.understanding .txt-box {
    opacity: 0;
    position: relative;
    background: #fff;
    padding: 64px;
    max-width: 688px;
    margin-right: 0;
    margin-left: auto;
    z-index: 10;
    transition: all 0.2s ease;
}

.understanding .txt-box.show {
    opacity: 1;
}

.understanding .txt-box .h {
    position: relative;
    width: fit-content;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 700;
    margin: 0 auto 40px;
    color: #28B9B9;
}

.understanding .txt-box .h::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 37px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    background-image: url(/img/recruit/recruit_txt_deco_03.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.understanding .txt-box .h::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 37px;
    top: 50%;
    right: -38px;
    transform: translateY(-50%);
    background-image: url(/img/recruit/recruit_txt_deco_04.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.understanding .txt-box ul {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.understanding .txt-box ul li {
    position: relative;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.025em;
    padding-left: 16px;
}

.understanding .txt-box ul li::before {
    position: absolute;
    content: "";
    top: calc((1em * 1.5) / 2);
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #28b9b9;
}

.understanding .bottom-area {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    transform: translateX(116px);
}

.understanding .bottom-area .txt {
    max-width: 578px;
}

.understanding .bottom-area .txt p {
    font-size: 24px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.025em;
    margin-bottom: 1em;
}

.understanding .bottom-area .txt p:last-of-type {
    margin-bottom: 0;
}

.understanding .bottom-area .img.right {
    width: 596px;
}

@media (max-width: 1023px) {
    .understanding {
        padding: 100px 0 0;
    }

    .understanding .txt-box-area {
        padding-top: 280px;
        margin-bottom: 48px;
    }

    .understanding .img.left {
        width: 70%;
        height: 280px;
    }

    .understanding .txt-box {
        padding: 48px;
        max-width: 550px;
    }

    .understanding .txt-box .h {
        font-size: 24px;
        margin: 0 auto 32px;
    }

    .understanding .txt-box .h::before {
        width: 20px;
        height: 30px;
        left: -32px;
    }

    .understanding .txt-box .h::after {
        width: 20px;
        height: 30px;
        right: -32px;
    }

    .understanding .txt-box ul {
        gap: 16px;
    }

    .understanding .txt-box ul li {
        font-size: 18px;
        padding-left: 14px;
    }

    .understanding .bottom-area {
        gap: 32px;
        transform: translateX(80px);
    }

    .understanding .bottom-area .txt p {
        font-size: 20px;
        line-height: 1.8;
    }

    .understanding .bottom-area .img.right {
        width: 450px;
    }
}

@media (max-width: 767px) {
    .understanding {
        padding: 80px 0 0;
    }

    .understanding .txt-box-area {
        position: relative;
        padding-top: 208px;
        margin-bottom: 32px;
    }

    .understanding .img.left {
        width: 100%;
        height: 184px;
        margin-bottom: 24px;
        top: 48px;
        left: -24px;
    }

    .understanding .txt-box {
        position: relative;
        padding: 24px 18px;
        max-width: none;
        margin: 0;
    }

    .understanding .txt-box .h {
        font-size: 16px;
        margin: 0 auto 16px;
    }

    .understanding .txt-box .h::before {
        width: 16px;
        height: 24px;
        left: -24px;
    }

    .understanding .txt-box .h::after {
        width: 16px;
        height: 24px;
        right: -24px;
    }

    .understanding .txt-box ul {
        gap: 8px;
    }

    .understanding .txt-box ul li {
        font-size: 14px;
        padding-left: 16px;
    }

    .understanding .bottom-area {
        flex-direction: column;
        gap: 24px;
        transform: none;
    }

    .understanding .bottom-area .txt p {
        font-size: 13px;
        line-height: 1.75;
    }

    .understanding .bottom-area .img.right {
        width: 100vw;
        margin-right: -24px;
    }

    .understanding .bottom-area .img .img {
        max-width: calc(100% - 48px);
    }
}

/*environment*/
.environment {
    padding: 140px 0 160px;
}

.environment .table {
    width: 100%;
    border-top: 1px solid #D4F1F1;
}

.environment .table tr {
    border-bottom: 1px solid #D4F1F1;
}

.environment .table th {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    padding: 32px 24px;
    min-width: 160px;
    text-align: left;
}

.environment .table td {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    padding: 32px 24px;
}

.environment .table td p {
    margin-bottom: 16px;
}

.environment .table td p.deco {
    position: relative;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    padding: 8px 30px;
}

.environment .table td p.deco::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 21px;
    height: 15px;
    background-image: url(/img/recruit/recruit_txt_deco_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.environment .table td p.deco::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 21px;
    height: 15px;
    background-image: url(/img/recruit/recruit_txt_deco_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.environment .table td p.note {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    margin-bottom: 0;
}

.environment .table td p:last-of-type {
    margin-bottom: 0;
}

.environment .table td ul {
    margin-bottom: 16px;
}

.environment .table td ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    padding-left: 16px;
}

.environment .table td ul li::before {
    position: absolute;
    content: "";
    top: calc((1em * 1.75) / 2);
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #28b9b9;
}

@media (max-width: 1023px) {

    .environment {
        padding: 100px 0 0;
    }

    .environment .table th {
        font-size: 18px;
        padding: 24px 16px;
        min-width: 120px;
    }

    .environment .table td {
        font-size: 14px;
        padding: 24px 16px;
    }

    .environment .table td p.deco {
        font-size: 16px;
        padding: 6px 24px;
    }

    .environment .table td p.deco::before,
    .environment .table td p.deco::after {
        width: 18px;
        height: 12px;
    }

    .environment .table td ul li {
        font-size: 14px;
        padding-left: 14px;
    }

    .environment .table td ul li::before {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 767px) {

    .environment {
        padding: 80px 0 40px;
    }

    .environment .table th,
    .environment .table td {
        text-align: left;
        display: block;
        width: 100%;
        padding: 16px 12px;
    }

    .environment .table th {
        font-size: 16px;
        min-width: auto;
    }

    .environment .table td {
        font-size: 14px;
    }

    .environment .table td p.deco {
        font-size: 14px;
        padding: 4px 20px;
    }

    .environment .table td p.deco::before,
    .environment .table td p.deco::after {
        width: 14px;
        height: 10px;
    }

    .environment .table td ul li {
        font-size: 13px;
        padding-left: 12px;
    }

    .environment .table td ul li::before {
        width: 5px;
        height: 5px;
    }

    .environment .table td p.note {
        font-size: 12px;
    }
}

/*message*/
.message {
    position: relative;
    padding: 120px 0 160px;
}

.message.massage01 {
    padding-bottom: 0;
}

.message:first-of-type {
    padding-bottom: 0;
}

.message hgroup {
    position: relative;
    z-index: 10;
}

.message::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 77.5%;
    height: 100%;
    background: #F6F6F6;
    z-index: 1;
}

.message .item-group {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 104px;
    z-index: 10;
}

.message .item-group .person-area {
    position: relative;
    flex: 1;
    padding-top: 398px;
}

.message .item-group .person-area .img {
    position: absolute;
    top: 0;
    left: calc(((100vw - 1208px) / 2) * -1);
    width: 41.38vw;
    height: 398px;
}

.message .item-group .person-area .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message .item-group .person-area .txt {
    max-width: 480px;
    margin-top: 24px;
}

.message .item-group .person-area .txt .h {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 500;
    margin-bottom: 16px;
}

.message .item-group .person-area .txt p {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 0.025em;
    margin-bottom: 1.75em;
}

.message .item-group .person-area .txt p:last-of-type {
    margin-bottom: 0;
}

.message .item-group .txt-area {
    max-width: 624px;
}

.message .item-group .txt-area .baloon {
    position: relative;
    padding: 40px 64px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.025em;
    background: #fff;
    border-radius: 24px;
}

.message .item-group .txt-area .baloon::before {
    position: absolute;
    content: "";
    left: -64px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-right: 64px solid #fff;
}

.message .item-group .txt-area .baloon .h {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 700;
    margin-bottom: 24px;
}

.message .item-group .txt-area .baloon p {
    margin-bottom: 1.75em;
}

.message .item-group .txt-area .baloon p:last-of-type {
    margin-bottom: 0;
}

.message .js-baloon-area {
    height: 3200px;
}

.message .sticky-area .sticky-item .person-area {
    flex-shrink: 0;
}

.message .sticky-area {
    position: sticky;
    top: calc((100vh - 584px)/2);
    width: 100%;
}

.message .sticky-area .txt-area .baloon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 624px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    z-index: 1;
}

/* 初期状態：1つ目のbaloonのみ表示 */
.message .sticky-area .txt-area .baloon:nth-of-type(1) {
    opacity: 1;
    z-index: 3;
    transform: translate(0)
}

.message .sticky-area .txt-area .baloon:nth-of-type(2) {
    opacity: 0;
    z-index: 2;
    transform: translateY(120px);
}

.message .sticky-area .txt-area .baloon:nth-of-type(3) {
    opacity: 0;
    z-index: 1;
    transform: translateY(240px);
}

/* スクロール状態に応じたクラスでbaloonを切り替え */
.message .show-item01 .txt-area .baloon:nth-of-type(1) {
    opacity: 1;
    z-index: 3;
    transform: translate(0)
}

.message .show-item01 .txt-area .baloon:nth-of-type(2) {
    opacity: 0;
    z-index: 2;
    transform: translateY(120px);
}

.message .show-item01 .txt-area .baloon:nth-of-type(3) {
    opacity: 0;
    z-index: 1;
    transform: translateY(240px);
}

.message .show-item02 .txt-area .baloon:nth-of-type(1) {
    opacity: 0;
    z-index: 1;
    transform: translateY(-120px);
}

.message .show-item02 .txt-area .baloon:nth-of-type(2) {
    opacity: 1;
    z-index: 3;
    transform: translateY(0px);
}

.message .show-item02 .txt-area .baloon:nth-of-type(3) {
    opacity: 0;
    z-index: 2;
    transform: translateY(120px);
}

.message .show-item03 .txt-area .baloon:nth-of-type(1) {
    opacity: 0;
    z-index: 1;
    transform: translateY(-240px);
}

.message .show-item03 .txt-area .baloon:nth-of-type(2) {
    opacity: 0;
    z-index: 1;
    transform: translateY(-120px);
}

.message .show-item03 .txt-area .baloon:nth-of-type(3) {
    opacity: 1;
    z-index: 3;
    transform: translateY(0);
}

/*
@media (max-width: 1023px) {
.message{
    padding: 100px 0 120px;
}
.message::before{
    width: 85%;
}
.message .item-group{
    gap: 64px;
}
.message .item-group .person-area{
    padding-top: 300px;
}
.message .item-group .person-area .img{
    left: calc(((100vw - 960px) / 2) * -1);
    width: 45vw;
    height: 300px;
}
.message .item-group .person-area .txt{
    max-width: 400px;
    margin-top: 20px;
}
.message .item-group .person-area .txt .h{
    font-size: 16px;
    margin-bottom: 12px;
}
.message .item-group .person-area .txt p{
    font-size: 12px;
}
.message .item-group .txt-area{
    max-width: 500px;
}
.message .item-group .txt-area .baloon{
    padding: 32px 48px;
    font-size: 15px;
}
.message .item-group .txt-area .baloon::before{
    left: -48px;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-right: 48px solid #fff;
}
.message .item-group .txt-area .baloon .h{
    font-size: 24px;
    margin-bottom: 20px;
}
.message .sticky-area{
    height: 3200px;
}
.message .sticky-item {
    top: 80px;
    gap: 32px;
}
.message .sticky-area .sticky-item .person-area{
    top: 80px;
}
.message .sticky-area .txt-area .baloon{
    max-width: 500px;
}
}
*/
@media (max-width: 1279px) {
    .message {
        padding: 80px 0 0;
    }

    .message.message02 {
        padding-bottom: 80px;
    }

    .message::before {
        width: 100%;
    }

    .message .item-group {
        flex-direction: column;
        gap: 40px;
    }

    .message .item-group .person-area {
        padding-top: 0;
        margin-bottom: 24px;
    }

    .message .item-group .person-area .img {
        position: relative;
        left: auto;
        width: 100%;
        max-width: 280px;
        height: 186px;
        margin-bottom: 16px;
        margin-left: -24px;
    }

    .message .item-group .person-area .txt {
        max-width: 100%;
        margin-top: 0;
    }

    .message .item-group .person-area .txt .h {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .message .item-group .person-area .txt p {
        font-size: 11px;
    }

    .message .item-group .txt-area {
        max-width: 100%;
    }

    .message .item-group .txt-area .baloon {
        padding: 24px 32px;
        font-size: 14px;
    }

    .message .item-group .txt-area .baloon::before {
        display: none;
    }

    .message .item-group .txt-area .baloon .h {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .message .js-baloon-area {
        height: auto;
    }

    .message .sticky-area {
        height: auto;
        position: relative;
        top: 0;
    }

    .message .sticky-item {
        position: relative;
        top: auto;
        height: auto;
        flex-direction: column;
        gap: 24px;
    }

    .message .sticky-area .sticky-item .person-area {
        position: relative;
        top: auto;
    }

    .message .sticky-area .txt-area {
        height: auto;
    }

    .message .sticky-area .txt-area .baloon {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        margin-bottom: 24px;
        opacity: 1 !important;
        transform: none !important;
    }
}

/*head_area*/
.head_area {
    height: 252px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #28B9B9;
}

.head_area h2 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
}

@media screen and (max-width:767px) {
    .head_area {
        height: 126px;
    }

    .head_area h2 {
        font-size: 19px;
    }
}

/*form_area*/
.form_area {
    background: #fff;
    padding: 120px 0;
    font-size: 16px;
    color: #313137;
}

.form_area .required {
    display: inline-block;
    width: 50px;
    color: #fff;
    background: #28b9b9;
    font-size: 12px;
    line-height: 28px;
    text-align: center;
    margin-left: 12px;
}

.form_area input {
    font-size: 16px;
}

.form_area input[type="text"],
.form_area input[type="email"],
.form_area input[type="number"],
.form_area input[type="tel"],
.form_area textarea {
    border: none;
    padding: 10px;
    width: 100%;
}

.form_area input[type="text"]:focus,
.form_area input[type="email"]:focus,
.form_area input[type="number"]:focus,
.form_area input[type="tel"]:focus,
.form_area textarea:focus {
    outline: none;
}

.form_area input[type="file"] {
    font-size: 13px;
}

.form_area .example {
    display: block;
    margin-top: 16px;
}

.form_area textarea {
    resize: none;
    height: 196px;
    font-size: 16px;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.form_area form {
    max-width: 936px;
    margin: 0 auto;
}

.form_area table {
    width: 100%;
    background: #DEF2F4;
    margin-bottom: 52px;
}

.form_area table tr {
    border-bottom: 1px solid #fff;
}

.form_area table th {
    padding: 32px 20px 32px 82px;
    text-align: left;
    font-weight: 400;
    vertical-align: top;
    white-space: nowrap;
}

.form_area table td {
    padding: 32px 112px 32px 20px;
}

.form_area .wpcf7-radio .wpcf7-list-item {
    display: block;
}

.form_area .wpcf7-radio .wpcf7-list-item label {
    cursor: pointer;
}

.form_area .wpcf7-radio .wpcf7-list-item input {
    margin-right: 16px;
}

.form_area .btn_area {
    display: flex;
    justify-content: center;
}

.form_area .btn_area .wpcf7 .ajax-loader {
    display: none;
}

.form_area .btn {
    border: 2px solid #28b9b9;
    padding: 0;
}

.form_area a.btn {
    padding: 8px 8px 8px 8px;
}

.form_area .btn input {
    width: 100%;
    height: 100%;
    padding: 8px 8px 8px 8px;
    background: none;
    pointer-events: auto;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
}

.form_area .btn input:focus {
    outline: none;
}

.form_area .btn input:hover {
    color: #28b9b9;
}

.form_area .btn::before,
.form_area .btn::after {
    pointer-events: none;
}

.form_area table tr:nth-of-type(5) td {
    display: flex;
}

.form_area table tr:nth-of-type(5) td select {
    margin: 0 14px;
    border: none;
    width: 104px;
    height: 38px;
}

.form_area table tr:nth-of-type(5) td select:focus {
    outline: none;
}

.form_area table tr:nth-last-of-type(3) {
    border-bottom: 0;

}

.form_area table tr:nth-last-of-type(3) th,
.form_area table tr:nth-last-of-type(3) td {
    padding-bottom: 16px;
}

.form_area table tr:nth-last-of-type(2) th,
.form_area table tr:nth-last-of-type(2) td {
    padding-top: 16px;
}

.form_area table tr:last-pf-type th {
    vertical-align: top;
}

.form_area .center {
    text-align: center;
    margin-bottom: 52px;
}

.form_area .center label {
    cursor: pointer;
}

.form_area .center input {
    margin-right: 16px;
}

.form_area .center a:hover {
    color: #28b9b9;
    opacity: 0.8;
}

.form_area .center .privacy {
    margin-top: .5em;
}

.form_area .btn_area .prev,
.form_area .btn_area .next {
    max-width: 336px;
}

.form_area .btn_area .prev {
    margin-right: 40px;

    background: linear-gradient(90deg, #f1f1f1, #f1f1f1 50%, #fff 50%, #fff);
    background-size: 200%;
    background-position: 0 0;

    border: 2px solid #f1f1f1;
}

.form_area .btn_area .prev:hover {
    background-position: 100% 0;
    border: 2px solid #28b9b9;
}

.form_area .btn_area .prev input {
    padding: 8px 8px 8px 8px;
    color: #313137;
}

.form_area .btn_area .prev:hover input,
.form_area .btn_area .next:hover input {
    color: #28b9b9;
}

.form_area .btn_area .prev::before {
    left: 24px;
    right: auto;
}

.form_area .btn_area .prev::after {
    left: 40px;
    right: auto;
    transform: translate(0, -50%) rotate(-135deg);
}

.form_area .btn_area .btn.disabled {
    opacity: .3;
}

.form_area .btn_area .btn.disabled:hover {
    background-position: 100% 0;
}

.form_area .btn_area .btn.disabled input:hover {
    color: #fff;
    cursor: default;
}

.form_area .complete p {
    text-align: center;
    margin-bottom: 90px;
}

.form_area .complete .btn_area .btn {
    max-width: 520px;
}

.form_area .wpcf7c-conf {
    background: none;
}

.wpcf7c-conf:-webkit-autofill {
    box-shadow: 0 0 0px 999px #f1f1f1 inset !important;
}

input:-internal-autofill-selected {
    background: none !important;
    box-shadow: 0 0 0px 999px #fff inset !important;
}

.form_area table tr:nth-of-type(5) td .wpcf7c-conf {
    width: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    margin: 0 4px;
}

.form_area table tr:nth-of-type(5) td .wpcf7c-conf::-ms-expand {
    display: none;
}

.wpcf7-custom-wpcf7c-confirmed {
    display: none !important;
}

input[name="resume_conf"],
input[name="cv_conf"],
input[name="otherfile_conf"] {
    display: none;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #df0404 !important;
}

.file-notice {
    margin-left: 10px;
    font-size: 14px;
}

@media screen and (max-width:1023px) {

    .form_area,
    .form_area input,
    .form_area textarea {
        font-size: 14px;
    }

    .form_area .required {
        font-size: 10px;
        width: 32px;
        line-height: 16px;
        margin-left: 8px;
    }

    .form_area .example {
        margin-top: 8px;
    }

    .form_area table th,
    .form_area table td {
        padding: 16px;
    }

    .form_area table tr:nth-of-type(5) td select {
        width: auto;
        margin: 0 8px;
    }

    .form_area table {
        margin-bottom: 24px;
    }

    .form_area .center {
        margin-bottom: 24px;
    }

    .form_area table tr:nth-of-type(5) td .wpcf7c-conf {
        font-size: 14px;
    }
}

@media screen and (max-width:767px) {

    .form_area {
        padding: 28px 0;
    }

    .form_area table th,
    .form_area table td {
        display: block;
        padding: 12px;
    }

    .form_area table th {
        padding-bottom: 0;
    }

    .form_area table tr:nth-last-of-type(3) th,
    .form_area table tr:nth-last-of-type(3) td,
    .form_area table tr:nth-last-of-type(2) th,
    .form_area table tr:nth-last-of-type(2) td {
        padding-bottom: 12px;
    }

    .form_area .btn_area {
        display: block;
    }

    .form_area .btn_area .btn {
        max-width: 310px;
        margin: 0 auto;
    }

    .form_area .btn_area .prev {
        margin-bottom: 20px;
    }

    .form_area a.btn {
        padding: 8px 8px 8px 8px;
    }

    .form_area .btn input {
        font-size: 13px;
        padding: 8px 8px 8px 8px;
    }

    .form_area .btn_area .prev {
        padding: 8px 8px 8px 8px;
    }

    .form_area .complete p {
        margin-top: 25px;
        margin-bottom: 45px;
    }

    .form_area .btn_area .prev::before {
        left: 10px;
    }

    .form_area .btn_area .prev::after {
        left: 26px;
    }

    .file-notice {
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }
}

/*guideline*/
.guideline_area {
    background: #fff;
    color: #313137;
}

.guideline_area .container {
    background: #fff;
    padding: 118px 112px;
}

.guideline_area .content {
    margin-bottom: 108px;
}

.guideline_area h3 {
    position: relative;
    padding: 0 0 36px;
    font-size: 28px;
    font-weight: 600;
}

.guideline_area h4 {
    padding: 16px 0;
    margin-bottom: 36px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #D4F1F1;
}

.guideline_area h5 {
    position: relative;
    padding-left: 16px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
}

.guideline_area h5:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    content: "";
    width: 7px;
    height: 3px;
    background-color: #28b9b9;
}

.guideline_area h6 {
    margin-bottom: 10px;
}

.guideline_area .txt {
    padding-left: 16px;
    margin-bottom: 30px;
    font-size: 15px;
}

.guideline_area .txt p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.guideline_area ul {
    margin-bottom: 30px;
    font-size: 14px;
}

.guideline_area ul li {
    padding-left: 18px;
    margin-bottom: 10px;
    position: relative;
}

.guideline_area ul li:before {
    position: absolute;
    top: 7px;
    left: 0;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #28b9b9;

}

.guideline_area ul.child {
    padding-left: 16px;
}

.guideline_area .process {
    padding-left: 16px;
}

.guideline_area .process li {
    padding: 28px 20px;
    border-top: 1px solid #ADE0E1;
    display: flex;
    align-items: center;
}

.guideline_area .process li:last-of-type {
    border-bottom: 1px solid #ADE0E1;
}

.guideline_area .process li:before {
    display: none;
}

.guideline_area .process li .num {
    font-size: 24px;
    font-weight: 600;
    color: #28b9b9;
    margin-right: 30px;
}

.guideline_area table {
    width: 100%;
    border: 1px solid #ADE0E1;
    margin: 0 0 30px 16px;
}

.guideline_area table tr {
    border-bottom: 1px solid #ADE0E1;
}

.guideline_area table th {
    width: 18.7%;
    text-align: left;
    border-right: 1px solid #ADE0E1;
    padding: 20px 24px;
    background: #DEF2F4;
}

.guideline_area table td {
    padding: 20px 24px;
}

.guideline_area table td p {
    margin-bottom: 10px;
}

.guideline_area table td ul {
    margin-bottom: 0;
}

.guideline_area table td .col3 {
    display: flex;
    flex-wrap: wrap;
}

.guideline_area table td .col3 li {
    width: calc(100%/3);
}

.guideline_area .txt .min {
    font-size: 13px;
}

.guideline_area .txt .note {
    font-size: 11px;
}

.guideline_area .btn_area {
    padding: 72px 24px;
    display: flex;
    justify-content: center;
    background: #DEF2F4;
    margin-bottom: 48px;
}

.guideline_area .prev {
    position: relative;
    font-weight: 600;
}

.guideline_area .prev a {
    padding-left: 40px;
}

.guideline_area .prev:hover a {
    color: #28b9b9;
    opacity: 0.8;
}

.guideline_area .prev:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #28b9b9;
    border-right: 3px solid #28b9b9;
    transform: translate(0, -60%) rotate(-135deg);
}

.guideline_area .prev:hover:before {
    opacity: 0.8;
}

@media screen and (max-width:1023px) {
    .guideline_area .container {
        padding: 118px 16px;
    }

    .guideline_area table td .col3 li {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .guideline_area {
        padding: 26px 0;
    }

    .guideline_area .container {
        padding: 30px 16px;
    }

    .guideline_area .content {
        margin-bottom: 40px;
    }

    .guideline_area h3 {
        padding: 20px 0;
        font-size: 18px;
    }

    .guideline_area h3:before {
        width: 83px;
        height: 3px;
    }

    .guideline_area h4 {
        font-size: 16px;
        padding: 15px 0;
        margin-bottom: 24px;
    }

    .guideline_area h5 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .guideline_area h6 {
        font-size: 14px;
    }

    .guideline_area .txt {
        margin-bottom: 26px;
        padding-left: 0;
        font-size: 14px;
    }

    .guideline_area .txt p {
        margin-bottom: 26px;
    }

    .guideline_area table {
        margin: 0 0 26px 0;
    }

    .guideline_area table th,
    .guideline_area table td {
        display: block;
        width: 100%;
        padding: 10px 13px;
    }

    .guideline_area table th {
        border-right: none;
    }

    .guideline_area table ul {
        font-size: 13px;
    }

    .guideline_area .process {
        padding-left: 0;
    }

    .guideline_area .process li {
        padding: 20px 12px;
    }

    .guideline_area .process li .num {
        font-size: 16px;
        margin-right: 18px;
    }

    .guideline_area .btn_area {
        width: calc(100% + 32px);
        transform: translateX(-16px);
        -webkit-transform: translateX(-16px);
        padding: 16px;
        margin-bottom: 26px;
    }

    .guideline_area .prev a {
        padding-left: 24px;
    }
}
.unable {
    pointer-events: none;
}
.unable .item > * {
    opacity: 50%;
}
