
/***************************************************
//
//
// リフレア 採用サイト用css
//
//
/***************************************************/

:root {
    --color-red01:   #d86e5d;
    --color-red02:   #ffe2d9;
    --color-red03:   #efa39c;

    --color-green01: #399e70;
    --color-green02: #e1f1ea;
    --color-green03: #c4e2d4;

    --color-beige01: #f6f1ee;

    --filter-red01:   invert(62%) sepia(45%) saturate(1378%) hue-rotate(317deg) brightness(88%) contrast(92%);
    --filter-green01: invert(55%) sepia(43%) saturate(586%) hue-rotate(100deg) brightness(88%) contrast(82%);
    --filter-white:   invert(100%) sepia(100%) saturate(0%) hue-rotate(298deg) brightness(102%) contrast(102%);


    --text-color: #333;

    /* header高さ */
    --header-height: 80px;
}

html {
    scroll-padding-top: var(--header-height);
}

body {
    color: var(--text-color);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
    letter-spacing: 1px;
    font-size: 18px;
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

#container {
    padding: 0;
}


img {
    vertical-align: bottom;
}

.text_center {
    text-align: center;
}

.btn_box {
    display: flex;
    gap: 20px;
}
.btn_box.left {
    justify-content: flex-start;
}
.btn_box.right {
    justify-content: flex-end;
}
.btn_box.center {
    justify-content: center;
}
.btn_box.column {
    flex-direction: column;
    align-items: center;
}

.btn01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100vmax;
    padding: 5px 30px;
    border: 2px solid var(--color-green01);
    color: var(--color-green01);
    flex-wrap: wrap;
    padding: 10px 20px;
    gap: 0 1em;
}
.btn01 > img {
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
    filter: var(--filter-green01);
}
.btn01:after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1em;
    background-image: url(../images/recruit/arrow_green.svg);
}
.btn01.pink {
    border-color: var(--color-red01);
    color: var(--color-red01);
}
.btn01.pink > img {
    filter: none;
}
.btn01.pink:after {
    background-image: url(../images/recruit/arrow_red.svg);
}


.btn02 {
    display: block;
    border-radius: 10px;
    border: 2px solid;
    color: var(--text-color);
    flex-wrap: wrap;
    padding: 10px 30px 10px 10px;
    text-align: center;
    white-space: nowrap;
    position: relative;
    background: #fff;
}
.btn02.red {
    border-color: var(--color-red01);
}
.btn02.green {
    border-color: var(--color-green01);
}

.btn02:after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1em;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.btn02.red:after {
    background-image: url(../images/recruit/arrow_red.svg);
}
.btn02.green:after {
    background-image: url(../images/recruit/arrow_green.svg);
}





.hl002 {
    background: var(--color-beige01);
    text-align: center;
    padding: 50px 0;
}
.hl002 .en {
    font-weight: bold;
    line-height: 1.2;
    font-size: 20px;
    color: var(--color-red01);
}
.hl002 .jp {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 3px;
}
.hl002 .jp > span.color {
    color: var(--color-red01);
}
.hl002 .subtext {
    margin-top: 1.5em;

}

@media (max-width: 767px) {
    .hl002 {
        padding: 35px 0;
    }
    .hl002 .en {
        font-size: 18px;    }
    .hl002 .jp {
        font-size: 30px;
    }
    .hl002 .subtext {
        font-size: 14px;
    }
}


ul.note > li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
    margin-bottom: 0.5em;
}

ul.note > li:before {
    content: "※";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}


.grecaptcha-badge {
    display: none!important;
}


/***************************************************
//
// ヘッダー
//
/***************************************************/

.header {
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: var(--header-height);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.05);
}
.header #inner-header {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    height: var(--header-height);
    gap: 0 40px;
}

.header .logo {
    padding: 10px 0;
    position: relative;
    z-index: 2;
}
.header .logo a {
    display: flex;
    align-items: center;
    height: 60px;
    gap: 0 20px;
}
.header .logo a > img {
    width: 120px;
}
.recruit_logo {
    display: flex;
    flex-wrap: wrap;
}
.recruit_logo > span {
    font-size: clamp(17px, 1.4vw, 28px);
    text-align: center;
    padding: 10px 1em;
    line-height: 1;
    white-space: nowrap;
    display: block;
    flex: 1;
}
.recruit_logo > span.en {
    border: 1px solid var(--color-red01);
    background: #fff;
    color: var(--color-red01);
}
.recruit_logo > span.jp {
    border: 1px solid var(--color-red01);
    background: var(--color-red01);
    color: #fff;
}

.header .header_box {
    position: relative;
    z-index: 1;
}
.header nav > ul {
    display: flex;
    gap: 0 1em;
    font-size: clamp(14px, 1.3vw, 16px);
}
.header nav > ul > li {
    padding: 10px;
}
.header nav > ul > li > a {
    display: flex;
    gap: 0 0.5em;
    color: var(--text-color);
    height: 60px;
    align-items: center;
    white-space: nowrap;
}
.header nav > ul > li > a img {
    width: 25px;
    height: 25px;
    filter: var(--filter-green01);
}


/* ハンバーガーメニュー */
.header .menu {
    z-index: 101;
    height: 60px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-green01);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 0;
    top: 10px;
}
label.buMenu {
    position: relative;
    z-index: 102;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 20px;
    width: 30px;
}
label.buMenu .icon-bar,
label.buMenu .icon-bar:before,
label.buMenu .icon-bar:after {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 5px;
    margin-top: 0px;
    background-color: #fff;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    position: absolute;
    left: 0;
    border-radius: 100vmax;
}
label.buMenu .icon-bar:before,
label.buMenu .icon-bar:after {
    display: block;
    content: "";
}
label.buMenu .icon-bar {
    top: 2px;
}
label.buMenu .icon-bar:before {
    top: 10px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform,opacity;	
}
label.buMenu .icon-bar:after {
    top: 20px;
}
.menu .menu_text {
    font-size: 11px;
    text-align: center;
    color: #fff;
    line-height: 1.0;
    margin: 10px 0 0;
    letter-spacing: 0;
}
/* メニューオープン時のハンバーガー */
.open label.buMenu .icon-bar {
    transform: translate3d(0,10px,0) rotate(45deg);
}
.open label.buMenu .icon-bar:before {
    transform: rotate(-45deg) translate3d(-5.71429px,-6px,0);
    opacity: 0;
}
.open label.buMenu .icon-bar:after {
    transform: translate3d(0,-20px,0) rotate(-90deg);
}


@media (max-width: 1199px) {
    .recruit_logo > span {
        font-size: 25px;
    }
    .header .menu {
        display: flex;
    }

    .header .menu_box {
        position: fixed;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        top: 0;
        left: 0;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.5s, visibility 0.5s;
        padding: 80px 0 0;
        background: #fff;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 60px;
        pointer-events: none;
        z-index: 99;
        background: #fff;
    }
    .header .menu.open + .menu_box {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .header .menu_box nav {
        width: 100%;
        display: grid;
        gap: 30px 0;
        overflow-y: auto;
        max-height: 100%;
        padding: 0 80px 50px;
        max-width: 1500px;
        align-items: flex-start;
    }

    .header .menu_box nav ul {
        display: block;
        flex-wrap: wrap;
        gap: 20px;
        max-width: 660px;
        margin: auto;
        width: 100%;
    }

    .header nav > ul > li {
        border-bottom: 1px solid #ccc;
    }

    .header .menu_box nav ul > li.sp_only {
        display: block;
    }

    .header nav > ul > li > a {
        font-size: 18px;
        height: 50px;
        gap: 0 1em;
        position: relative;
    }
    .header nav > ul > li > a img {
        width: 35px;
        height: 35px;
    }
    .header nav > ul > li > a:after {
        content: "";
        display: block;
        width: 1em;
        height: 1em;
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: 1em;
        background-image: url(../images/recruit/arrow_green.svg);
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }
}

@media (max-width: 767px) {
    .header #inner-header {
        padding: 0 10px 0 20px;
    }
    .recruit_logo {
        flex-direction: column;
    }
    .recruit_logo > span {
        font-size: 18px;
        padding: 5px;
    }
    .header .menu_box nav {
        padding: 0px 20px 100px;
    }

    .header nav > ul > li > a {
        font-size: 16px;
        height: 40px;
    }
    .header nav > ul > li > a img {
        width: 25px;
        height: 25px;
    }

}



/***************************************************
//
// フッター
//
/***************************************************/
.footer {
    background: #333;
    color: #fff;
    padding: 0;
    position: relative;
    z-index: 0;
}
.footer #inner-footer {
    display: flex;
    gap: 0 10vw;
    padding: 100px 5vw 50px;
}

.footer .company_info {

}
.footer .logo {
    margin-bottom: 20px;
}
.footer .logo > a {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.footer .logo a img {
    filter: var(--filter-white);
    width: auto;
    height: 50px;
}

.footer .logo .recruit_logo {
    display: table;
}
.footer .logo .recruit_logo > span {
    width: 100%;
    padding: 5px 10px;
    font-size: 18px;
}

.footer .btn {
    margin-top: 20px;
}
.footer .btn > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}
.footer .btn > a:after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1em;
    background-image: url(../images/recruit/arrow_white.svg);
}

.footer nav {
    display: flex;
}

.footer nav ul {
    min-width: 200px;
}

.footer nav ul > li {
    margin-bottom: 8px;
}
.footer nav ul > li > a {
    padding: 0 0 0 1em;
    color: #fff;
    position: relative;
    white-space: nowrap;
    font-size: 16px;
}
.footer nav ul > li > a:before {
    content: "";
    display: block;
    width: 0.6em;
    height: 0.6em;
    border: 2px solid var(--color-green01);
    border-radius: 50%;
    position: absolute;
    top: 0.5em;
    left: 0;
}

.footer .copyright {
    background: #fff;
    color: var(--text-color);
    font-size: 11px;
    padding: 5px 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

@media (max-width: 1029px) {
    .footer #inner-footer {
        justify-content: center;
    }
    .footer .company_info {
        text-align: center;
    }

    .footer .logo > a {
        justify-content: center;
    }
    .footer nav {
        display: none;
    }
    .footer .copyright {
        padding-bottom: 75px;
    }
}

@media (max-width: 767px) {

    .footer .copyright {
        padding-bottom: 60px;
    }

}


/***************************************************
//
// フローティングメニュー
//
/***************************************************/
.fixed_link {
	position: fixed;
	right: 0;
	top: 100px;
	z-index: 999;
}

.fixed_link > div {
	padding: 10px 0;
}
.fixed_link > div a {
    background: var(--color-red01);
	border-radius: 20px 0 0 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	transform: translateX(15px);
	transition: transform 0.3s;
    font-feature-settings: normal;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    width: max(120px, 10vw);
    padding-right: 15px;
    aspect-ratio: 1;
    gap: 10px 0;
    border: 5px solid;
    border-right: none;
}

.fixed_link > div a.entry {
    border-color: var(--color-red03);
    background-color: var(--color-red01);
}
.fixed_link > div a.apply {
    border-color: var(--color-green03);
    background-color: var(--color-green01);
}

.fixed_link > div a img {
    width: 4vw;
    height: auto;
    object-fit: contain;
    filter: var(--filter-white);
    aspect-ratio: 1;
}

.fixed_link > div a .text {
    font-size: min(1.2vw, 18px);
    display: flex;
    flex-direction: column;
    text-align: center;
}
.fixed_link > div a .text > span {
    line-height: 1.3;
    display: block;
}

.fixed_link > div a:hover,
.fixed_link > div a:focus {
	transform: translateX(0);
}

@media (max-width: 1029px) {

    .fixed_link {
        position: fixed;
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        z-index: 999;
        display: flex;
    }
    .fixed_link > div {
        width: 50%;
        padding: 10px 10px 0;
        background: #fff;
    }
    .fixed_link > div a {
        width: 100%;
        flex-direction: row-reverse;
        border: none!important;
        padding: 5px;
        border-radius: 10px 10px 0 0;
        border: 2px solid;
        border-bottom: none;
        transform: none;
        font-size: min(3.2vw, 16px);
        height: 55px;
        box-shadow: none;
        gap: 5px;
    }

    .fixed_link > div a img {
        width: 40px;
        height: 35px;
    }
    .fixed_link > div a .text {
        font-size: 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

}
@media (max-width: 767px) {
    .fixed_link > div {
        padding: 0;
        background: transparent;
    }
    .fixed_link > div a .text {
        display: block;
        font-size: 14px;
    }

}




/***************************************************
//
// ページ下部お問い合わせ
//
/***************************************************/

.bottom_contact {
    background : linear-gradient(-90deg, rgba(255, 228, 161, 1) 0%, rgba(255, 213, 201, 1) 100%, rgba(255, 213, 201, 1) 100%);
    padding-top: 80px;
    padding-bottom: 1px;
    position: relative;
    z-index: 1;
}

.bottom_contact .contact_link  {
    background: #fff;
    padding: 40px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: -40px!important;
    width: 85%;
    max-width: 1600px;
    margin-inline: auto;
}
.bottom_contact .contact_link > div {
    width: 100%;
    padding: 0;
}


.contact_link .tel_box001 {
    font-size: clamp(28px, 2.6vw, 50px);
}

.contact_link .btn002 > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8em 0.5em;
    font-size: 14px;
    white-space: nowrap;
    border: 2px solid;
    font-size: clamp(18px, 1.6vw, 35px);
    min-height: 70px;
}
.contact_link .btn002 > a > img {
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
}
.contact_link .btn002 > a:after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1em;
}


.contact_link .btn002.entry > a {
    background: var(--color-red01);
    color: #fff;
    border-color: var(--color-red01);
}
.contact_link .btn002.apply > a {
    background: #fff;
    color: var(--color-green01);
    border-color: var(--color-green01);
}

.contact_link .btn002.entry > a > img {
    filter: var(--filter-white);
}
.contact_link .btn002.apply > a > img {
    filter: var(--filter-green01);
}
.contact_link .btn002.entry > a:after {
    background-image: url(../images/recruit/arrow_white.svg);
}
.contact_link .btn002.apply > a:after {
    background-image: url(../images/recruit/arrow_green.svg);
}


.tel_box001 {
    line-height: 1;
    font-size: 30px;
    display: table;
    margin: 0 auto;
}
.tel_box001 .number > img {
    filter: var(--filter-green01);
}

@media (max-width: 1029px) {

    .bottom_contact .contact_link {
        grid-template-columns: 100%;
    }

    .bottom_contact .contact_link .tel_box001 {
        font-size: 35px;
    }

    .bottom_contact .contact_link .btn002 > a {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        font-size: 24px;
    }

}

@media (max-width: 767px) {
    .bottom_contact .contact_link {
        padding: 20px;
    }

    .bottom_contact .contact_link .tel_box001 {
        font-size: 28px;
    }

    .bottom_contact .contact_link .btn002 > a {
        font-size: 16px;
    }
  

}


/***************************************************
//
// トップページ
//
/***************************************************/

.title01 {
    text-align: center;
}
.title01 > img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.title01 > .jp {
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 2px;;
}
.title01 > .en {
    color: var(--color-red01);
    font-weight: 500;
    font-size: 20px;
}

@media (max-width: 767px) {

    .title01 > .jp {
        font-size: 25px;
    }
    .title01 > .en {
        font-size: 14px;
    }
}


/* メインビジュアル */
#top_main {
    width: 100%;
    position: relative;
}
#top_main .image {
    width: 100%;
}
#top_main .image > img {
    width: 100%;
    height: auto;
    max-height: calc(80vh - 80px);
    object-fit: cover;
    object-position: center 20%;
}

#top_main .catch {
    position: absolute;
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
    display: grid;
    font-size: 3vw;
    gap: 0.3em 0;
}
#top_main .catch .box {
    background: #fff;
    display: table;
    font-weight: bold;
    letter-spacing: 0.1em;
    justify-self: start;
    line-height: 1.8;
    padding: 0 0.5em;
}
#top_main .catch .box .color {
    color: var(--color-red01);
}

@media (max-width: 1029px) {

    #top_main .catch {
       font-size: 30px;
    }
}

@media (max-width: 767px) {

    #top_main .image > img {
        height: 80vh;
        object-fit: cover;
        object-position: 70%;
    }

    #top_main .catch {
        font-size: 25px;
        top: 80%;
    }

}


/* 募集職種 */
#top_map {
    padding: 80px 0;
}

#top_map .title01 {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1em;
    align-items: center;
}

#top_map .title01 > .en {
    width: 100%;
}

#top_map .two_in_one {
    align-items: center;
    gap: 40px 0;
    padding-right: max(120px, 10vw);
}

#top_map .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

#top_map .text > .inner {
    display: grid;
    grid-template-columns: 100%;
    gap: 40px 0;
}


#top_map .btn_box > .btn01 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(24px, 1.5vw, 30px);
    letter-spacing: 3px;
    padding: 0.5em 1em;
}
#top_map .btn_box > .btn01.pink {
    background: var(--color-red01);
    color: #fff;
}
#top_map .btn_box > .btn01.green {
    background: var(--color-green01);
    color: #fff;
}

#top_map .btn_box > .btn01:after {
    background-image: url(../images/recruit/arrow_white.svg);
}

#top_map .btn_box > .btn01 img {
    filter: var(--filter-white);
}


.map_image {
    width: 100%;
    position: relative;
    z-index: 0;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
}
.map_image > img {
    width: 100%;
    height: auto;
    z-index: 1;
}

.map_image > .pin {
    border-radius: 100vmax;
    background: #fff;
    border: 3px solid var(--color-green01);
    line-height: 1;
    padding: 0.5em 0.7em;
    position: absolute;
    color: var(--text-color);
    z-index: 2;
    transform: translate(-50%, -50%);
    font-size: min(1.2vw,20px);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0 0.5em;
    z-index: 0;
}

.map_image > .pin > span {
    display: flex;
    align-items: center;
    gap: 0 0.5em;
    white-space: nowrap;
}

.map_image > .pin > span:after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 1em;
    background-image: url(../images/recruit/arrow_green.svg);
}


.map_image > .pin:before {
    content: "";
    display: block;
    width: 1em;
    height: 0.7em;
    background: var(--color-green01);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.map_image > .pin:after {
    content: "";
    display: block;
    width: 2em;
    height: 0.8em;
    background: var(--color-red01);
    border-radius: 50%;
    position: absolute;
    top: calc(100% + 0.5em);
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.map_image > .pin.agetsuchi {
    top: 26%;
    left: 37%;
}
.map_image > .pin.muramatsu {
    top: 39%;
    left: 73%;
}
.map_image > .pin.komagoe {
    top: 54%;
    left: 79%;
}
.map_image > .pin.kusanagi {
    top: 32%;
    left: 55%;
}
.map_image > .pin.hijiri {
    top: 45%;
    left: 43%;
}
.map_image > .pin.mizuho {
    top: 86%;
    left: 22%;
}
.map_image > .pin.mizuho:before,
.map_image > .pin.mizuho:after {
    left: 25%;
}

.map_dialog {
  border: none;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.map_dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

/* 施設リンクボタンの調整 */
.map_dialog .btn01 {
    margin-bottom: 15px;
}


@media (min-width: 1400px) {

    #top_map .text_center {
        font-size: clamp(18px,1.2vw,20px);
    }

}


@media (max-width: 1299px) {
    #top_map .two_in_one {
        padding-right: 0;
    }
    #top_map .two_in_one > div {
        width: 100%;
    }
    #top_map .two_in_one > div.map {
        padding-bottom: 50px;
    }

    .map_image {
        width: 700px;
        margin: auto;
        border-radius: 50px;
        overflow: hidden;
    }
    .map_image > .pin {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    #top_map {
        padding-bottom: 0;
    }
    #top_map .title01 > .jp {
        width: 100%;
    }

    #top_map .two_in_one > div.map {
        padding-bottom: 0;
    }

    #top_map .btn_box {
        flex-direction: column;
    }
    #top_map .btn_box > .btn01 {
        width: 100%;
        max-width: 100%;
    }

    .map_image {
        width: 100%;
        border-radius: 0;
    }
    .map_image > .pin {
        font-size: 3vw;
        border-width: 1px;
    }


}




#top_news {
    padding: 80px 0;
    background: var(--color-red02);
}

#top_news .title01 {
    margin-bottom: 40px;
}



#top_about {
    padding: 80px 60px;
    background: var(--color-beige01);
}

#top_about .two_in_one {
    display: grid;
    align-items: center;
    grid-template-columns: 55% 1fr;
    gap: 40px;
    grid-template-areas: "image text";
    max-width: 1400px;
    width: 100%;
    margin: auto;
}
#top_about .two_in_one > div {
    width: 100%;
}
#top_about .two_in_one > div.image {
    grid-area: image;
}
#top_about .two_in_one > div.text {
    grid-area: text;
    display: flex;
    justify-content: center;
}

#top_about .catch {
    font-size: 2.2vw;
    font-weight: bold;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: var(--color-red01);
    text-decoration-thickness: 1px;
    text-underline-offset: 10px;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

#top_about .catch > span {
    color: var(--color-red01);
}

#top_about .image {
    border-radius: 20px;
    overflow: hidden;
}

#top_about .image > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

@media (max-width: 1199px) {
    #top_about .two_in_one {
        grid-template-columns: 100%;
        grid-template-areas: "text"
                             "image";
    }

    #top_about .catch {
        font-size: 30px;
        line-height: 2;
    }
}

@media (max-width: 767px) {

    #top_about {
        padding: 80px 5vw;
    }
    #top_about .catch {
        font-size: 25px;
    }

}



#top_features {
    padding: 80px 0;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f8f8f8 calc(100% - 1px)),
                        linear-gradient(90deg, transparent calc(100% - 1px), #f8f8f8 calc(100% - 1px));
    background-size: 20px 20px;
    background-repeat: repeat;
    background-position: center center;
}

#top_features .title01 {
    margin-bottom: 40px;
}

.features_list {
    display: grid;
    gap: 40px;
    max-width: 1400px;
    width: 90%;
    margin: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features_list > .item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.features_list > .item .image {
    width: 100%;
}
.features_list > .item .image > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.features_list > .item .num {
    background: var(--color-red01);
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    margin-top: -60px;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
    margin-left: 40px;
    font-weight: bold;
}

.features_list > .item .text {
    padding: 30px 40px;
    display: flex;
    flex-wrap: wrap;
}

.features_list > .item .text img.tokai_logo {
    width: 150px;
    object-fit: contain;
    margin-top: -30px;
    margin-left: 10px;
}

.features_list > .item .text:has(img.tokai_logo) .title {
    width: calc(100% - 160px);
}

.features_list > .item .text .title {
    margin-bottom: 15px;
    width: 100%;
}
.features_list > .item .text .title .sub {
    color: var(--color-green01);
    font-weight: bold;
}
.features_list > .item .text .title .catch {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.5;
}
.features_list > .item .text .title .catch > span.small {
    font-size: 14px;
    margin: 0 0.5em;
    white-space: nowrap;
}

.features_list > .item .text p {
    margin-bottom: 0;
    width: 100%;
}

@media (max-width: 1199px) {

    .features_list {
        grid-template-columns: 100%;
    }
    .features_list > div.item {
        width: 80%;
    }
    .features_list > div:nth-child(odd) {
        margin-right: auto;
    }
    .features_list > div:nth-child(even) {
        margin-left: auto;
    }

}

@media (max-width: 767px) {

    .features_list > div.item {
        width: 100%;
    }
    .features_list > .item .num {
        font-size: 30px;
        width: 60px;
        margin-top: -40px;
        margin-bottom: -20px;
    }
    .features_list > .item .text {
        padding: 30px 20px;
    }
    .features_list > .item .text .title .catch {
        font-size: 20px;
        line-height: 1.5;
    }

    .features_list > .item .text:has(img.tokai_logo) .title {
        width: 100%;
    }
    .features_list > .item .text img.tokai_logo {
        margin: 0 auto 10px;
        transform: translateX(20px);
    }

}


#top_voice {
    background: var(--color-red02);
    padding: 80px 0;
    position: relative;
    z-index: 0;
}

#top_voice:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #ff2300;
    opacity: 0.1;
    clip-path: polygon(60% 0, 95% 0, 40% 100%, 5% 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    
}



.voice_list {
    display: grid;
    grid-template-columns: 100%;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    gap: 50px 0;
}

.voice_list > .item {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.voice_list .item > .image  {
    width: 40%;
    align-self: stretch;
}
.voice_list .item > .image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.voice_list .item > .text {
    width: 60%;
    padding: 30px 40px;
}
.voice_list .item > .text .catch {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.voice_list .item > .text .catch span {
    color: var(--color-red01);
}

.voice_list .item > .text .profile {
    display: flex;
    align-items: baseline;
    gap: 20px;
    font-size: 18px;
    margin-bottom: 15px;
}
.voice_list .item > .text .profile .job {
    background: var(--color-red01);
    color: #fff;
    line-height: 1;
    padding: 5px 20px;
    border-radius: 100vmax;
}
.voice_list .item > .text .profile .year {
    color: var(--color-red01);
}

.voice_list .item > .text .voice {
    font-size: 15px;
}

.voice_list .item:nth-child(odd) {
    flex-direction: row-reverse;
}

@media (max-width: 1199px) {
    .voice_list .item {
        background: transparent;
    }
    .voice_list .item > .image {
        width: 45%;
        position: relative;
        z-index: 1;
    }
    .voice_list .item > .text {
        width: 80%;
        background: #fff;
    }
    .voice_list .item > .text .catch {
        font-size: 22px;
    }

    .voice_list .item:nth-child(odd)  {
        flex-direction: column;
        margin-bottom: -50px;
    }
    .voice_list .item:nth-child(odd) .text {
        margin-left: auto;
        margin-bottom: -50px;
        padding-bottom: 80px;
    }
    .voice_list .item:nth-child(odd) .image {
        margin-right: auto;
    }
    .voice_list .item:nth-child(even) {
        flex-direction: column-reverse;
        margin-top: -50px;
    }
    .voice_list .item:nth-child(even) .text {
        margin-right: auto;
        margin-top: -50px;
        padding-top: 80px;
    }
    .voice_list .item:nth-child(even) .image {
        margin-left: auto;
    }

}

@media (max-width: 767px) {

    #top_voice:after {
        clip-path: none;
        background-color: transparent;
        background-image: repeating-linear-gradient(120deg, rgba(0,0,0,0.05), rgba(0,0,0,0.05), 300px, transparent 300px, transparent 600px);
        opacity: 1;
    }

    .voice_list .item:nth-child(odd),
    .voice_list .item:nth-child(even) {
        margin: 0;
        flex-direction: column;
    }
    .voice_list .item:nth-child(odd) .text,
    .voice_list .item:nth-child(even) .text {
        width: 100%;
        margin: 0;
        padding: 30px 20px;
    }
    .voice_list .item > .text .catch {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .voice_list .item > .text .profile {
        flex-wrap: wrap;
        font-size: 14px;
    }
    .voice_list .item:nth-child(odd) .image,
    .voice_list .item:nth-child(even) .image {
        width: 100%;
        margin: 0;
    }
}



#top_other {
    background: var(--color-beige01);
    padding: 50px 0;
}

#top_other .two_in_one {
    display: grid;
    gap: 20px 40px;
    grid-template-columns: 70% 1fr;
}
#top_other .two_in_one > div {
    width: 100%;
}

.btn03 {
    border: 5px solid var(--color-red03);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 30px 40px;
    position: relative;
    color: var(--text-color);
}

.btn03 img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.btn03:after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/recruit/arrow_red.svg);
}

#top_other .btn03 {
    height: 150px;
}

#top_other .flow .btn03 {
    font-size: 30px;
    gap: 0 20px;
}
#top_other .flow .btn03:after {
    width: 22px;
    height: 22px;
}

#top_other .flow .btn03 img {
    width: 60px;
    height: 60px;
}

#top_other .flow .btn03 > span {
    line-height: 1.5;
}

#top_other .flow .btn03 .small {
    display: block;
    font-size: 16px;
    color: var(--color-red01);
}

#top_other .company .btn03 {
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 20px;
    gap: 5px;
}
#top_other .company .btn03:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

@media (max-width: 1029px) {
    #top_other .two_in_one {
        grid-template-columns: 65% 1fr;
    }

}

@media (max-width: 767px) {

    #top_other .two_in_one {
        grid-template-columns: 100%;
        width: 90%;
        margin: auto;
    }

    .btn03 {
        padding: 20px 30px;
        font-size: 20px;
    }

    #top_other .flow .btn03 {
        height: auto;
       flex-direction: column;
       font-size: 20px;
    }
    #top_other .btn03:after {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    #top_other .flow .btn03 > span {
        text-align: center;
    }

}



/***************************************************
//
// お知らせ
//
/***************************************************/

/* 一覧 */

.news_list {
    display: grid;
    gap: 2vw;
    max-width: 1600px;
    width: 90%;
    margin: auto;
}
.news_list.three_in_one {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news_list.two_in_one {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news_list > * {
    width: 100%;
}

.news_list .item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.news_list .item > a {
    display: block;
    color: var(--text-color);
}
.news_list .item .image {   
    width: 100%;
    background: var(--color-red03);
}
.news_list .item .image > img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;  
}
.news_list .item .author {
    background: var(--color-green01);
    color: #fff;
    padding: 0.3em 0.2em;
    font-size: 20px;
    font-size: clamp(18px, 1.4vw, 25px);
    text-align: center;
    font-weight: bold;
}

.news_list .item .post_data {
    padding: 15px;
}

.news_list .item .date {
    color: var(--color-red01);
    margin-bottom: 5px;
    font-size: 16px;
}
.news_list .item .title {
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding-right: 1em;
    font-size: clamp(18px, 1.4vw, 20px);
    font-weight: bold;
} 
.news_list .item .title:after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1em;
    background-image: url(../images/recruit/arrow_red.svg);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}


.news_list .item .post-excerpt {
    font-size: 12px;
    font-size: clamp(12px, 1vw, 15px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.8;
    height: 3.6em;
    margin: 0;
}

@media (max-width: 1099px) {

    .news_list.three_in_one {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {
    .news_list {
        gap: 20px;
    }
    .news_list.three_in_one {
        grid-template-columns: 100%;
    }

}



/***************************************************
//
// 検索
//
/***************************************************/
#search_box {
    padding: 80px 0;
}

.occupation #search_box,
.facility #search_box {
    background-size: 20px 20px;
    background-repeat: repeat;
    background-position: center center;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f8f8f8 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f8f8f8 calc(100% - 1px));
}

.occupation #search_box {
    border-top: 1px solid var(--color-red01);
}
.facility #search_box {
    border-top: 1px solid var(--color-green01);
}


#search_box > .inner {
    display: grid;
    grid-template-columns: 100%;
    gap: 50px 0;
}

#search_box .search_box_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}
.facility #search_box .search_box_wrap {
    flex-direction: column-reverse;

}

.search_box01 {
    padding: 40px;
    position: relative;
    z-index: 0;
    border-radius: 20px;
    overflow: hidden;
}

.search_box01 .search_box_title {
    display: flex;
    gap: 0 30px;
    align-items: center;
    margin-bottom: 20px;
}

.search_box01 .search_box_title .title {
    display: flex;
    font-size: 25px;
    align-items: center;
    gap: 0 0.5em;
    letter-spacing: 2px;
    font-weight: bold;
}
.search_box01 .search_box_title .title img {
    height: 1.5em;
    width: 1.5em;
    object-fit: contain;
}

.search_box01 .search_box_title .note {
    font-size: 14px;
}

@media (min-width: 1200px) {
    #search_box > .wrap {
        max-width: 1600px;
        width: 90%;
    }

    #search_box .search_box01 {
        padding: min(3vw, 50px);
    }
    #search_box .search_box01 .search_box_title {
        gap: 0 1em;
        margin-bottom: 1em;
        font-size: min(2.5vw, 40px);
    }

    #search_box .search_box01 .search_box_title .title {
        font-size: min(2.5vw, 40px);
    }
    #search_box .search_box01 .search_box_title .note {
        font-size: min(1.3vw, 25px);
    }

}

@media (max-width: 767px) {
    .search_box01 {
        padding: 20px;
    }
    .search_box01 .search_box_title {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* 職種検索 */
.search_box01.occupation:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: -1;
    background: #fff;
}

.search_box01.occupation:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 228, 161, 1) 0%, rgba(255, 213, 201, 1) 100%, rgba(255, 213, 201, 1) 100%);
}

.search_box01.occupation .search_box_title .title {
    color: var(--color-red01);
}

.occupation_list01 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,  1fr));
    gap: 20px;
}
.occupation_list01 .btn02 {
    padding: 20px 30px 20px 10px;
}

@media (min-width: 1200px) {
    .occupation_list01 {
        gap: 1.5vw;
    }
    .occupation_list01 .btn02 {
        font-size: min(1.8vw, 30px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1em 1.5em 1em 1em;
    }
}

@media (max-width: 1029px) {
    .occupation_list01 .btn02 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .occupation_list01 {
        grid-template-columns: repeat(2, minmax(0,  1fr));
        gap: 15px;
    }
    .occupation_list01 .btn02 {
        padding: 15px 20px 15px 10px;
    }
    .occupation_list01 .btn02:after {
        right: 5px;
    }
}



/* 施設検索 */
.search_box01.facility {
    background: var(--color-green02);
}

.search_box01.facility .search_box_title .title {
    color: var(--color-green01);
}
.search_box01.facility .search_box_title .title img {
    filter: var(--filter-green01);
}

.search_box01.facility .layout {
    display: grid;
    grid-template-areas: "dayservice shortstay nhome"
                         "dayservice careplan careplan";
    grid-template-columns: auto 24% 24%;
    grid-template-rows: auto auto;
    gap: 20px;
}

/*
.search_box01.facility .map_image_wrap {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin: 30px auto 0;
    border-radius: 50px;
}
*/

.search_box01.facility .map_image {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    height: auto;
    border-radius: 40px;
}
.search_box01.facility .map_image > img {
}

.box001 {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.box001.dayservice {
    grid-area: dayservice;
}
.box001.shortstay {
    grid-area: shortstay;
}
.box001.nhome {
    grid-area: nhome;
}
.box001.careplan {
    grid-area: careplan;
}


.box001 h3 {
    background: var(--color-green01);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    line-height: 1;
    height: 40px;
}

.facility_list {
    padding: 20px;
    background: var(--color-green03);
}
.box001 .facility_list {
    flex: 1;    
}

.box001.dayservice .facility_list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.box001 .facility_list .btn02 {
    line-height: 1.2;
    padding: 15px 30px 15px 10px;
}

.box001.dayservice .facility_list .btn02 {
    align-self: center;
}

.box001.dayservice .facility_list .btn02:nth-child(1),
.box001.dayservice .facility_list .btn02:nth-child(2) {
    align-self: start;
}
.box001.dayservice .facility_list .btn02:nth-child(3),
.box001.dayservice .facility_list .btn02:nth-child(4) {
    align-self: center;
}
.box001.dayservice .facility_list .btn02:nth-child(5),
.box001.dayservice .facility_list .btn02:nth-child(6) {
    align-self: end;
}


@media (min-width: 1200px) {
    .search_box01.facility .layout {
        gap: min(1.5vw, 30px);
    }

    .box001 h3 {
        font-size: min(1.5vw, 30px);
        height: auto;
        padding: 0.8em;
    }
    .box001 .facility_list {
        padding: min(1.5vw, 30px);
    }
    .box001 .facility_list .btn02 {
        font-size: min(1.5vw, 30px);
        padding: 1em 1.5em 1em 1em;
    }

}

@media (max-width: 1029px) {
    .search_box01.facility .layout {
        grid-template-areas:
            "dayservice shortstay"
            "dayservice nhome"
            "dayservice careplan";
        grid-template-columns: 50% 1fr;
        grid-template-rows: auto auto auto;
    }
    .box001.dayservice .facility_list {
        grid-template-columns: 100%;
    }
    .facility_list .btn02 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .search_box01.facility {
        padding: 20px 10px;
    }
    .search_box01.facility .layout {
        grid-template-areas:
            "dayservice dayservice"
            "shortstay nhome"
            "careplan careplan";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
    }
    .box001 h3 {
        font-size: 14px;
        padding: 10px 0;
    }

    .facility_list {
        padding: 10px;
    }

    .box001.dayservice .facility_list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}


/* 採用情報リスト */
#archive_job_list {
    padding: 80px 0;
}

.job_list_wrap {
    position: relative;
}

.job_list_wrap > .search_loading {
    text-align: center;
    width: 100% !important;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    display: block;
    background: #fff;
}
.job_list_wrap > .search_loading > img {
    width: 25px;
    height: 25px;
    display: block;
    margin: auto;
}



.job_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 30px;
}
.job_list > a.item {
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    border: 2px solid var(--color-red01);
    overflow: hidden;
    color: var(--text-color);
}   
.job_list > .item .image {
    width: 40%;
    background: var(--color-red02);
}
.job_list > .item .image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.job_list > .item .info {
    width: 60%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.job_list > .item .info .type {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.job_list > .item .info .type > span {
    background: var(--color-red01);
    color: #fff;
    line-height: 1.2;
    padding: 5px 20px;
    border-radius: 100vmax;
}
.job_list > .item .info .title {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.job_list > .item .info .title .facility {
    order: 3;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-green01);
}
.job_list > .item .info .title .facility_type {
    order: 1;
    font-weight: bold;
    font-size: 25px;
}
.job_list > .item .info .title .occupation {
    order: 2;
    font-weight: bold;
    font-size: 25px;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.job_list > .item .info .title .occupation:after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1em;
    background-image: url(../images/recruit/arrow_red.svg);
}

.job_list > .item .info .title .facility_type:after {
    content: "\ff0f";
    display: inline;
}
.job_list > .item .info .work {
    font-size: 14px; 
    display: -webkit-box;             
    -webkit-box-orient: vertical;      /* 垂直方向に配置 */
    overflow: hidden;                  /* 溢れた部分を隠す */
    text-overflow: ellipsis;           /* 溢れた部分に「...」を表示 */
    -webkit-line-clamp: 4; 
}

@media (min-width: 1200px) {
    #archive_job_list > .wrap {
        width: 90%;
        max-width: 1400px;
    }

    .job_list > .item .info {
        padding: 2vw 3vw;
    }
    .job_list > .item .info .type > span {
        font-size: clamp(18px, 1.5vw, 24px);
    }
    .job_list > .item .info .title .facility_type {
        font-size: clamp(25px, 2.3vw, 32px);
    }
    .job_list > .item .info .title .occupation {
        font-size: clamp(25px, 2.3vw, 32px);
    }

    .job_list > .item .info .title .facility {
        font-size: clamp(18px, 1.5vw, 24px);
    }
    .job_list > .item .info .work {
        font-size: clamp(14px, 1.2vw, 20px);
    }
}


@media (max-width: 1029px) {
    .job_list > .item .image {
        width: 30%;
    }
    .job_list > .item .info {
        width: 70%;
    }
    .job_list > .item .info .title .facility {
        font-size: 16px;
    }
    .job_list > .item .info .title .facility_type {
        font-size: 20px;
    }
    .job_list > .item .info .title .occupation {
        font-size: 20px;
    }
    .job_list > .item .info .work {
        line-height: 1.5;
    }


}

@media (max-width: 767px) {

    .job_list > .item .image {
        width: 100%;
    }
    .job_list > .item .image > img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .job_list > .item .info {
        width: 100%;
        padding: 15px 20px;
    }


    .job_list > .item .info .work {
        display: block;
    }
}

/*もっと見るボタン*/
#load-more {
    display: table;
    border-radius: 100vmax;
    background: var(--color-red01);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    min-width: 300px;
    margin: 2em auto 1em;
    letter-spacing: 2px;
    font-size: 20px;
    cursor: pointer;
}


/***************************************************
//
// 検索（施設紹介）
//
/***************************************************/
#facility_select {
    padding: 80px 0;
}

#facility_select .two_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    align-items: center;
}
#facility_select .two_in_one > div {
    width: 100%;    
}


#facility_select .facility_type {
    background: var(--color-green01);
    display: inline-block;
    color: #fff;
    line-height: 1.2;
    padding: 5px 20px;
    border-radius: 100vmax;
    margin-bottom: 10px;
}

#facility_select .facility_name {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
}
#facility_select .sub_text {
    color: var(--color-green01);
    font-size: 20px;
    margin-bottom: 20px;
}
@media (min-width: 1200px) {
    #facility_select > .wrap {
        width: 90%;
        max-width: 1600px;
    }
    #facility_select .two_in_one {
        gap: 0 5vw;
    }
    #facility_select .facility_type {
        padding: 0.5vw 2vw;
        font-size: min(2vw, 25px);
        margin-bottom: 0.5em;
    }
    #facility_select .facility_name {
        font-size: min(2.8vw, 50px);
        margin-bottom: 0.2em;
    }
    #facility_select .sub_text {
        font-size: min(2vw, 25px);
        margin-bottom: 1em;
    }
    #facility_select .facility_text {
        font-size: 1.4vw;
        font-size: min(1.4vw, 20px);
    }
}

@media (max-width: 1029px) {
    #facility_select .two_in_one {
        grid-template-columns: 100%;
    }

}

@media (max-width: 767px) {

    #facility_select .facility_name {
        font-size: 24px;
    }
    #facility_select .sub_text {
        font-size: 18px;
    }

}


/***************************************************
//
// 検索（職種紹介）
//
/***************************************************/
#occupation_select {
    padding: 80px 0;
}

.title02 {
    text-align: center;
    margin-bottom: 30px;
}
.title02 > .main_text {
    font-size: 50px;
    width: 100%;
    letter-spacing: 0.1em;
    font-weight: bold;
}
.title02 > .sub_text {
    border: 2px solid var(--color-red01);
    color: var(--color-red01);
    line-height: 1.2;
    padding: 5px 20px;
    border-radius: 100vmax;
    display: inline-block;
    font-size: 20px;
}

@media (max-width: 767px) {

    .title02 > .main_text {
        font-size: 35px;
    }

}


/***************************************************
//
// 絞込みbox
//
/***************************************************/

.title03 {
    text-align: center;
    margin: 50px 0;
    font-size: clamp(20px, 3vw, 40px);
    width: 100%;
    letter-spacing: 0.1em;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title03:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 2px;
    background: var(--text-color);
    margin-right: 0.5em;
}
.title03:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 2px;
    background: var(--text-color);
    margin-left: 0.5em;
}

.title03 span.green {
    color: var(--color-green01);
}
.title03 span.red {
    color: var(--color-red01);
}


#select_box_occupation,
#select_box_facility {
    margin: 0;
    border-radius: 0;
    background: var(--color-beige01);
}

#select_box_occupation:before,
#select_box_occupation:after {
    display: none;
}

#select_box_occupation input,
#select_box_facility input {
    display: none;
}
#select_box_occupation .btn02,
#select_box_facility .btn02 {
    cursor: pointer;
}

#select_box_occupation .btn02 {
    padding: 0.5em;
    font-size: clamp(14px, 1.8vw, 25px);
}
#select_box_facility .btn02 {
    padding: 1em 0.5em;
    font-size: clamp(14px, 1.8vw, 25px);
}

#select_box_occupation .btn02:after,
#select_box_facility .btn02:after {
    display: none;
}

#select_box_occupation input:checked + label {
    background: var(--color-red01);
    color: #fff;
}
#select_box_occupation input:checked + label:after {
    background-image: url(../images/recruit/arrow_white.svg);
}


#select_box_facility input:checked + label {
    background: var(--color-green01);
    color: #fff;
}
#select_box_facility input:checked + label:after {
    background-image: url(../images/recruit/arrow_white.svg);
}

#select_box_facility .box001 h3 {
    font-size: clamp(15px, 1.5vw, 20px);
}

#select_box_facility .box001.dayservice .facility_list .btn02:nth-child(2),
#select_box_facility .box001.dayservice .facility_list .btn02:nth-child(4) {
    align-self: start;
}
#select_box_facility .box001.dayservice .facility_list .btn02:nth-child(6),
#select_box_facility .box001.dayservice .facility_list .btn02:nth-child(8) {
    align-self: center;
}
#select_box_facility .box001.dayservice .facility_list .btn02:nth-child(10),
#select_box_facility .box001.dayservice .facility_list .btn02:nth-child(12) {
    align-self: end;
}

@media (min-width: 1200px) {
    #select_box_occupation > .wrap,
    #select_box_facility > .wrap {
        max-width: 1400px;
        width: 90%;
    }

    #select_box_occupation.search_box01 .search_box_title .title,
    #select_box_facility.search_box01 .search_box_title .title {
        font-size: min(2vw, 30px);
    }
    #select_box_occupation.search_box01 .search_box_title .note,
    #select_box_facility.search_box01 .search_box_title .note {
        font-size: min(1.3vw, 18px);
    }
}

@media (max-width: 767px) {

    .title03 {
        margin: 30px 0;
        font-size: 20px;
    }

}


/***************************************************
//
// 採用情報詳細
//
/***************************************************/
.job_single .hl002 {
    text-align: center;
}
.job_single .hl002 .type {
    background: var(--color-red01);
    color: #fff;
    line-height: 1.2;
    padding: 5px 20px;
    border-radius: 100vmax;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 20px;
}
.job_single .hl002 .title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.job_single .hl002 .title .facility {
    order: 3;
    width: 100%;
    font-size: 20px;
    margin-top: 15px;
}
.job_single .hl002 .title .facility_type {
    order: 1;
    font-weight: bold;
    font-size: 30px;
}
.job_single .hl002 .title .occupation {
    order: 2;
    font-weight: bold;
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.job_single .hl002 .title .facility_type:after {
    content: "／";
    display: inline;
}

.job_single #recruit_information {
    padding: 80px 0;
}

.job_single #recruit_information .image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 50px;
}
.job_single #recruit_information .image > img {
    width: 100%;
}

.job_single #recruit_information .title01 {
    margin-bottom: 50px;
}


.job_single #recruit_information table {
    min-width: 80%;
    margin: auto;
    max-width: 100%;
}

.job_single #recruit_information table th {
    padding: 20px;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    color: var(--color-red01);
    white-space: nowrap;
}
.job_single #recruit_information table td {
    padding: 20px 30px;
    border-bottom: 1px solid #ccc;
}


#recruit_entry {
    padding: 80px 0;
    background: linear-gradient(-90deg, rgba(255, 228, 161, 1) 0%, rgba(255, 213, 201, 1) 100%, rgba(255, 213, 201, 1) 100%);
}

#recruit_entry > .wrap {
    max-width: 1200px;
}

#recruit_entry .contact_link {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 20px;
    width: 100%;
}
#recruit_entry .contact_link > div {
    padding: 20px;
    background: #fff;
}

#recruit_entry .contact_link .tel_box001 {
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    font-size: min(35px, 2.5vw);
}

#recruit_entry .contact_link .btn002 > a {
    font-size: 20px;
}

#recruit_entry .contact_link .fukidashi {
    text-align: center;
    line-height: 1.5;
    position: relative;
    padding: 10px;
    display: table;
    margin: 0 auto 25px;
    font-weight: bold;
}
#recruit_entry .contact_link .fukidashi span {
    color: var(--color-red01);
}

#recruit_entry .contact_link .fukidashi:after {
    content: "";
    display: block;
    width: 15px;
    height: 10px;
    background: var(--color-green01);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

@media (max-width: 1199px) {
    #recruit_entry .contact_link .btn002 > a {
        font-size: 18px;
    }

    #recruit_entry .contact_link .tel_box001 {
        font-size: 30px;
    }
}

@media (max-width: 1029px) {
    #recruit_entry .contact_link {
        grid-template-columns: 100%;
        gap: 20px;
    }
}

@media (max-width: 1029px) and (min-width: 768px) {
    #recruit_entry > .wrap {
        width: 90%;
    }
    #recruit_entry .contact_link > div {
        display: grid;
        grid-template-columns: 1fr 50%;
        gap: 0 50px;
    }

    #recruit_entry .contact_link .fukidashi {
        margin-bottom: 0;
        width: 100%;
    }
    #recruit_entry .contact_link .fukidashi:after {
        width: 20px;
        height: 30px;
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
        clip-path: polygon(0 0, 0 100%, 100% 50%);
    }
    #recruit_entry .contact_link .btn002 > a {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .job_single .hl002 .title .facility {
        font-size: 18px;
        margin-top: 15px;
    }
    .job_single .hl002 .title .facility_type {
        font-size: 20px;
    }
    .job_single .hl002 .title .occupation {
        font-size: 20px;
    }

    .job_single #recruit_information table th {
        background-color: var(--color-red02);
        color: var(--text-color);
        border: none;
        padding: 10px;
    }
    .job_single #recruit_information table td {
        border: none;
        padding: 15px 10px;
    }

    #recruit_entry .contact_link .tel_box001 {
        height: auto;
    }

}



/***************************************************
//
// 会社案内
//
/***************************************************/

.page_company section {
    padding: 80px 0;
}

#company_message {
    padding: 80px 0;
}

#company_message .two_in_one > div.left > .inner {
    max-width: 600px;
}

#company_message .title01 {
    text-align: left;
    margin-bottom: 30px;
}

@media (max-width: 1029px) {

    #company_message.p002 .two_in_one > div.left {
        padding: 0 15px;
    }
}


#company_philosophy {
    position: relative;
    z-index: 0;
    background: var(--color-green02);
}
#company_philosophy .title01 > .en {
    color: var(--color-green01);
}


#company_philosophy .box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin: 40px auto 50px;
}

#company_philosophy .logo_image {
    text-align: center;
    margin: 0 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
#company_philosophy .logo_image > img {
    width: 100%;
    max-width: 300px;
    align-self: center;
    justify-self: center;
}

#company_philosophy .text_center {
    margin-bottom: 40px;
}

#company_philosophy .text_center strong {
    color: var(--color-green01);
    font-weight: bold;
}

#company_philosophy .logo_exp {
    display: table;
    margin: auto;
}


#company_philosophy h3 {
    text-align: center;
    margin: 80px 0 40px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#company_philosophy h3:before,
#company_philosophy h3:after {
    content: '';
    display: inline-block;
    width: 1em;
    min-width: 1em;
    height: 1px;
    background: #000;
    margin: 0 0.5em;
}


#company_philosophy .three_in_one {
    gap: 15px;
    max-width: 1200px;
    margin: 40px auto 10px;
}

#company_philosophy .three_in_one > div {
    width: calc(33.3333% - 20px);
    background: #fff;
    padding: 20px 15px;
    border-radius: 20px;
}

#company_philosophy .three_in_one > div h4 { 
    color:  var(--color-green01);
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}


#company_philosophy .three_in_one > div ul {
    padding-left: 1.5em;
    margin: auto;
    display: table;
}
#company_philosophy .three_in_one > div ul > li {
    list-style: none;
    position: relative;
    line-height: 1.5;
}
#company_philosophy .three_in_one > div ul > li:not(:last-child) {
    margin-bottom: 10px;
}

#company_philosophy .three_in_one > div ul > li:before {
    content: "\25cf";
    display: inline;
    position: absolute;
    left: -1.5em;
    color: var(--color-green01);
}



#company_philosophy .note {
    text-align: center;
    font-size: 14px;
}


.logo_exp > .item {
    display: flex;
    align-items: baseline;
    font-size: 20px;
    margin-bottom: 10px;
}
.logo_exp > .item:last-child {
    margin-bottom: 0;
}

.logo_exp > .item .word {

    font-weight: bold;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo_exp > .item .word:after {
    content: "";
    display: block;
    width: 100px;
    min-width: 100px;
    height: 1px;
    background: #000; 
    margin-inline: 1em;
}

@media (max-width: 1029px) {

    #company_philosophy .text_center {
        text-align: left;
    }
    #company_philosophy .text_center p br {
        display: none;
    }

    #company_philosophy .three_in_one {
        padding: 0 15px;
    }

    #company_philosophy .three_in_one > div {
        width: 100%;
    }
    #company_philosophy .three_in_one > div ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 50px;
    }
}

@media (max-width: 767px) {

    #company_philosophy .box {
        padding: 20px;
    }

    #company_philosophy .logo_image > img {
        max-width: 100%;
        width: 300px;
    }

    .logo_exp > .item {
        font-size: 16px;
    }

    .logo_exp > .item .word:after {
        width: 30px;
        min-width: 30px;
    }

    #company_philosophy .three_in_one > div h4 { 
        font-size: 18px;
    }

    #company_philosophy .three_in_one > div ul {
        justify-content: flex-start;
    }
    #company_philosophy .three_in_one > div ul > li {
        width: 100%;
    }

    #company_philosophy .note {
        font-size: 12px;
    }
}


#company_profile {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 0;
    background: var(--color-red02);
}

#company_profile .title01 {
    margin-bottom: 40px;
}

#company_profile .box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
}

.p004 table tr th {
    border-bottom-color: var(--color-red01);
    color: var(--color-red01);
    padding: 15px;
    white-space: nowrap;
}
.p004 table tr td {
    border-bottom-color: #ccc;
    padding: 15px;
}

@media (max-width: 767px) {
    #company_profile .box {
        padding: 30px 20px;
    }
    .p004 table {
        width: 100%;
    }

    .p004 table tr th,
    .p004 table tr td {
        border: none;
    }
    .p004 table tr th {
        background: #f8f8f8;
    }

}


/* アクセス */
.facility_single_access {
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: center;

}

.facility_single_access .title01 {
    margin-bottom: 40px;
}

.facility_single_access .title01 > .en {
    color: var(--color-green01);
}

.facility_single_access .address_wrap {
    margin-bottom: 40px;
}

.facility_single_access .googlemap {
	width: 100%;
}
.facility_single_access .googlemap > iframe {
	width: 100%;
	height: 450px;
	display: block;
}




/***************************************************
//
// フォーム
//
/***************************************************/
table.mail_form {
    width: 100%;
}

table.mail_form caption {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-red02);
}
table.mail_form tr:first-child {
   border-top: none;
}
table.mail_form tr:last-child {
   border-bottom: none;
}
table.mail_form.note_table tr:first-child {
   border-top: 1px solid #ccc;
}


table.mail_form th {
    width: 300px;
    padding: 30px 15px;
}
table.mail_form td {
    padding: 30px 15px;
}

.mail_form .wpcf7-form-control {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1em;
}

.mail_form .wpcf7-list-item {
    margin: 0;
}

.mail_form .row {
    display: flex;
    gap: 20px;
}

.mail_form .row > div {
    display: flex;
    
    align-items: baseline;
}

.mail_form .row > div > span.text {
    width: 50px;
    min-width: 50px;
    white-space: nowrap;
}

.mail_form td.name input[type=text] {
    max-width: 200px;
}

.mail_form td.occupation .wpcf7-list-item {
    margin: 0;
    min-width: 25%;
}

.mail_form td.work_day select {
    width: 200px;
}

.mail_form td.experience .row {
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5em;
}

.mail_form td.experience .row:not(:last-child) {
    margin-bottom: 20px;
}

.mail_form td.experience .row .name {
    width: 200px;
}
.mail_form td.experience .row input[type="text"] {
    width: 200px;
}



.reserve_list {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}

.reserve_list > .item {
  display: flex;
  align-items: baseline;
}

.reserve_list > .item .title {
  padding-right: 1em;
}

.reserve_list > .item .contents {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.5em 1em;
  flex: 1;
}
.reserve_list > .item .contents input[type="text"] {
  width: 200px;
}
.reserve_list > .item .contents input.datepicker {
    width: 300px;
}

.wpcf7 .btn001 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 20px;
}

.btn001 input[type="button"] {
    background: var(--color-green01);
    display: block;
    width: fit-content;
    padding: 0.5em 3em;
    margin: 0;
    border-radius: 2em;
    white-space: nowrap;
    transition: all 0.5s;
    background: var(--main-color);
    color: #fff;
    cursor: pointer;
    text-align: center;
}

.btn001 input[type="submit"] {
    background: var(--color-red01);
    margin: 0;
    text-align: center;
}

input[type="text"],
input[type="password"],
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
select, 
textarea, 
.field {
    max-width: 100%;
}

.mail_form input.datepicker {
    cursor: default;
    background-image: url(../images/common/icon_calendar.svg);
    background-size: 1.2em;
    background-position: center right 8px;
    background-repeat: no-repeat;
}

input[type="checkbox"]+input[type="hidden"]+span {
	position: relative;
	cursor: pointer;
	padding-left: 1.5em;
	line-height: 2.5rem;
}
input[type="checkbox"]+input[type="hidden"]+span:before,
input[type="checkbox"]+input[type="hidden"]+span:after {
	content: "";
	display: block;
	position: absolute;
}
input[type="checkbox"]+input[type="hidden"]+span:before {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--text-color);
	width: 1.2em;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
input[type="checkbox"]+input[type="hidden"]+span:after {
	border-bottom: 2px solid var(--text-color);
	border-left: 2px solid var(--text-color);
	opacity: 0;
	width: 0.8em;
	height: 0.4em;
	top: calc(50% - 0.3em);
	left: 0.2em;
	transform: rotate(-45deg);
}
input[type="checkbox"]:checked+input[type="hidden"]+span::after {
	opacity: 1;
}
input[type="checkbox"].wpcf7c-conf {
    display: none;
}


input[type="checkbox"]+input[type="hidden"]+span:before {
    content: "";
    display: block;
    position: absolute;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--text-color);
    width: 1.2em;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.wpcf7c-conf {
    border: none;
    background-color: #e8f0fe;
}

.custom-wpcf7c-confirmed .wpcf7-list-item {
    pointer-events: none;
}

.custom-wpcf7c-confirmed textarea {
    background: #e8f0fe;
}

.custom-wpcf7c-confirmed table caption {
    display: none;
}

.custom-wpcf7c-confirmed table {
    border-top: 1px solid #ccc;
}

.custom-wpcf7c-confirmed input[type="checkbox"]+span {
    opacity: 0.5;
}
.custom-wpcf7c-confirmed input[type="checkbox"]:checked+input[type="hidden"]+span {
    opacity: 1;
}

@media (max-width: 1029px) {

    table.mail_form.two_column tbody th,
    table.mail_form.two_column tbody td {
        display: block;
        width: 100%;
        padding: 20px 15px;
        margin: 0;
    }
    table.mail_form.two_column tbody th {
        padding: 20px 15px 0;
    }

}

@media (max-width: 767px) {
    table.mail_form caption { 
        text-align: left;
        line-height: 1.5;
        padding: 20px;
    }
    .mail_form .name .row {
        flex-wrap: wrap;
    }
    .mail_form .name .row > div {
        width: 100%;
    }
    .mail_form td.name input[type=text] {
        max-width: 100%;
    }

    .mail_form td.occupation .wpcf7-list-item {
        min-width: calc(50% - 0.5em);
    }

    .reserve_list > .item {
        flex-wrap: wrap;
    }
    .reserve_list > .item .title {
        width: 100%;
    }
    .reserve_list > .item .contents {
        flex-wrap: wrap;
    }
    .reserve_list > .item .contents > *:first-child,
    .reserve_list > .item .contents > *:first-child input {
        width: 100%;
    }

    .mail_form td.experience .row .name {
        width: 150px;
    }

    .mail_form td.experience .row input[type="text"] {
        width: 100px;
    }

    .wpcf7 .btn001 {
        flex-direction: column;
    }
    .btn001 input[type="button"],
    .btn001 input[type="submit"] {
        min-width: 80%;
    }
}




/***************************************************
//
// 採用の流れ
//
/***************************************************/
#flow_content {
    padding: 80px 0;
}
#flow_content .subtext {
    text-align: center;
    margin-bottom: 50px;
}


.flow_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 60px 0;
}
.flow_list > .item {
    width: 100%;
    border: 5px solid var(--color-red03);
    background: #fff;
    letter-spacing: 3px;
    padding: 40px 40px;
    position: relative;
}

.flow_list > .item:not(:last-child):after {
    content: "";
    display: block;
    width: 30px;
    height: 15px;
    background: var(--color-green01);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    transform: translateX(-50%)
}

.flow_list > .item .two_in_one {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 20px 40px;
    align-items: center;
}
.flow_list > .item .two_in_one > div {
    width: 100%;
}

.flow_list > .item .cnt {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: bold;
    gap: 15px 0;
}
.flow_list > .item .cnt .step {
    font-size: 20px;
    margin-left: 5px;
    color: var(--color-red01);
}
.flow_list > .item .cnt .num {
    font-size: 40px;
    color: var(--color-red01);
}

.flow_list > .item .name {
    font-size: 40px;
    margin-left: 1em;
}

.flow_list > .item .contact_link {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0!important;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.flow_list > .item .contact_link > div {
    width: 100%;
    max-width: 400px;
    justify-self: center;
}

.flow_list > .item .contact_link .fukidashi {
    position: relative;
    z-index: 0;
    display: table;
    text-align: center;
    font-weight: bold;
    margin: 15px auto 30px;
    background: var(--color-red02);
    padding: 5px 30px;
    border-radius: 100vmax;
}

.flow_list > .item .contact_link .fukidashi:before {
    content: "";
    display: block;
    width: 20px;
    height: 15px;
    background: var(--color-red02);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
}

.flow_list > .item .contact_link .tel_box001 {
    font-size: 30px;
    min-height: 60px;
}
.flow_list > .item .contact_link .tel_box001 .time {
    font-size: 14px;
    letter-spacing: 1px;
}

.flow_list > .item .contact_link .btn002 > a {
    padding: 0 1em;
    min-height: 60px;
    font-size: 20px;
}

@media (max-width: 1029px) {

    .flow_list > .item .contact_link {
        grid-template-columns: 100%;
        gap: 20px;
    }


}

@media (max-width: 767px) {
    .flow_list > .item {
        padding: 20px;
    }
    .flow_list > .item .two_in_one {
        grid-template-columns: 100%;
    }
    .flow_list > .item .cnt {
        justify-content: center;
        text-align: center;
    }
    .flow_list > .item .name {
        width: 100%;
        margin: 0;
        font-size: 30px;
    }

    .flow_list > .item .two_in_one > div img {
        display: block;
        margin: auto;
        width: 150px;
        height: 100px;
        object-fit: contain;
    }

}


/***************************************************
//
// 履歴書の提出
//
/***************************************************/

#resume_content {
    padding: 80px 0;
}
#resume_content .text_center {
    text-align: center;
    margin-bottom: 50px;
}

#resume_content h2 {
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
#resume_content .btn_box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.download_btn {
    background: var(--color-red01);
    color: #fff;
    padding: 1em 2em;
    display: flex;
    justify-content: center;
    gap: 1em;
    font-size: 20px;
    letter-spacing: 2px;
    max-width: 100%;
    width: 400px;
}

.download_btn.green {
    background: var(--color-green01);
}

.download_btn > img {
    width: 1.5em;
    height: 1.5em;
    filter: var(--filter-white);
}

@media (max-width: 767px) {

    .download_btn {
        font-size: 16px;
    }

}

#resume_content .two_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 50px;
}
#resume_content .two_in_one > div {
    width: 100%;
    border: 5px solid var(--color-red03);
    background: #fff;
    padding: 40px 40px;
    text-align: center;
    display: grid;
    grid-template-columns: 100%;
    
}

#resume_content .two_in_one > div h3 {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
    gap: 0 1em;
}

#resume_content .two_in_one > div h3 img {
    height: 2em;
    width: auto;
}

#resume_content .two_in_one > div > .address {
    align-self: flex-end;
    margin-bottom: 0;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 20px;
}

#resume_content .two_in_one > div > .address .tel {
    display: inline-block;
    margin-top: 0.5em;
}

#resume_content .box02 {
    background: var(--color-beige01);
    padding: 40px;
    border-radius: 20px;
}
#resume_content .box02 h2 {
    margin-top: 0;
}

@media (max-width: 1029px) {

    #resume_content .two_in_one > div {
        padding: 20px 15px;
    }


}

@media (max-width: 767px) {


    #resume_content h2 {
        font-size: 25px;
    }

    #resume_content .two_in_one {
        grid-template-columns: 100%;
    }

    #resume_content .box02 {
        padding: 30px 15px;
    }

}


/***************************************************
//
// 施設紹介
//
/***************************************************/

#facility_content {
    padding: 80px 0;
}
#facility_content .title01 {
    margin: 50px 0;
}

.page_facility #facility_select {
    padding-top: 0;
}
    

.facility_list01 {
    display: grid;
    grid-template-columns: 100%;
    gap: 0;    
}
.facility_list01 > div {
    padding: 50px 0;
    border-bottom: 1px solid var(--color-green01);
}


.facility_list01 .two_in_one img {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.facility_list01 .btn01.pink {
    background: var(--color-red01);
    color: #fff;
    font-size: 20px;
}
.facility_list01 .btn01.pink:after {
    background-image: url(../images/recruit/arrow_white.svg);
}

@media (max-width: 767px) {

    .facility_list01 .btn01.pink {
        font-size: 16px;
    }

}


/***************************************************
//
// プライバシーポリシー
//
/***************************************************/

#privacy_policy h2 {
    font-size: 30px;
    text-align: center;
    margin: 2em 0;
    font-weight: bold;
}

#privacy_policy h3 {
    margin: 2em 0 1em;
    font-weight: bold;
    font-size: 25px;
}

#privacy_policy h3:before {
    content: "●";
    margin-right: 0.5em;
    color: var(--color-red01);
}

#privacy_policy h4 {
    margin: 1em 0;
    font-weight: bold;
    font-size: 20px;
}

#privacy_policy strong {
    font-weight: bold;
}


#privacy_policy ul {
    margin-left: 2em;
    list-style-type: disc;
    margin-bottom: 1rem;
}

#privacy_policy ol {
    margin-left: 2em;
    margin-bottom: 1rem;
}

#privacy_policy ol > li {
	list-style-type: none;
	counter-increment: cnt;
}

#privacy_policy ol > li::before {
	content: "(" counter(cnt) ") ";
    display: inline-block;
    margin-left: -2em;
    width: 2em;
}

#privacy_policy ol > li {
    margin-bottom: 0.5em;
}

#privacy_policy a {
    text-decoration: underline;
    color: var(--color-red01);
}
