html {
    width: 100%;
    height: 100%;
    color: #1C1C1C;
    font-size: 62.5%;
    /*font-family: "游ゴシック", YuGothic, YuGothicM, sans-serif;*/
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
}

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

.font-sans {
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", " Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

.container {
    box-sizing: border-box;
    max-width: 1200px;
    padding: 0 45px;
    margin: 0 auto;
}

.txt_center {
    text-align: center
}

.margin_none {
    margin: 0
}

.btn {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    padding: 15px;
    border-radius: 24px / 50%;
    transition: opacity 0.25s;
    text-align: center;
}

.btn:hover {
    opacity: 0.8;
}

.btn--purple {
    color: #fff;
    background-color: #811549;
}

.btn--blue {
    color: #fff;
    background-color: #152E81;
}

.lower-page {
    padding-top: 100px;
}

@media screen and (max-width: 1080px) {
    .lower-page {
        padding-top: 65px;
    }

    .container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

/* 全ページでreCAPTCHAバッジを非表示に */
.grecaptcha-badge {
    display: none !important;
}

/* #recruitがある場合にのみreCAPTCHAバッジを表示 */
main#recruit .grecaptcha-badge {
    display: block !important;
}




/* ---------------------------------------------
*   Header
--------------------------------------------- */
.header {
    display: flex;
    min-width: 0;
    padding: 20px 20px 20px 40px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header--lower {
    background-color: #fff;
}

.header.is-fixed {
    position: fixed;
    background-color: #fff;
    animation: slideIn 0.5s;
}

.header__logo {
    line-height: 1;
    margin: 0;
}

.header__logo a {
    transition: opacity 0.25s;
}

.header__logo a:hover {
    opacity: 0.8;
}

.header__logo img {
    height: 57px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    /*z-index: 9999*/
}

.header-menu__item {
    border-bottom: 3px solid transparent;
    transition: border-color 0.4s;
}

.header-menu__item.is-active {
    border-bottom-color: #811549;
}

.header-menu__item + .header-menu__item {
    margin-left: 17px;
}

.header-menu__link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.7rem;
    font-weight: 600;
    transition: opacity 0.25s;
    padding: 8px 4px;
    position: relative;
    z-index: 20;
}

.header-menu__item.is-active .header-menu__link::before {
    content: '';
    display: block;
    height: 45px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 0;
}

.header-menu__item .header-menu__link::after {
    content: '';
    opacity: 0;
    transition: opacity 0.4s;
}

.header-menu__item.is-active .header-menu__link::after {
    content: '';
    display: block;
    border-bottom: 27px solid #fff;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    margin-left: -19px;
    opacity: 1;
    z-index: 20;
}

.header-menu__link--icon {
    display: flex;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    line-height: 1;
    align-items: center;
    justify-content: center;
    background-color: #811549;
}

.header-menu__link--icon img {
    display: block;
    width: 30px;
    height: 30px;
}

.header-nested-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: visible;
    height: auto;
    opacity: 1;
    transition: opacity 0.4s;
}

.header-menu__item .header-nested-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
    height: 0;
    opacity: 0;
}

.header-menu__item.is-active .header-nested-menu-container {
    overflow: visible;
    height: auto;
    opacity: 1;
    transition: opacity 0.4s;
}

.nested-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: rgba(196, 196, 196, .1);
    backdrop-filter: grayscale(60%);
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: grayscale(60%);
    cursor: pointer;
    transition: bottom 0s 0.5s, opacity 0.3s 0s;
}

.nested-menu-backdrop.is-active {
    bottom: 0;
    opacity: 1;
    transition: bottom 0s 0s, opacity 0.25s 0.1s;
}

.header-menu__item.is-active .header-menu__link {
    color: #fff;
}


.header-nested-menu-content {
    padding: 10px 40px 0;
}

.header-nested-menu-inner {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.about-nested-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-nested-menu li:not(:last-of-type) {
    margin-right: 3%;
}


.about-nested-menu__item a {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-size: 1.7rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.25s;
}

.about-nested-menu__item a:hover {
    opacity: 0.8;
}

.about-nested-menu__item a::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../img/common/about_menu_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
}

.service-nested-menu__row {
    display: flex;
}

.service-nested-menu__col {
    flex: 1;
}

.service-nested-menu__col + .service-nested-menu__col {
    border-left: 1px dashed #B2B2B2;
    padding-left: 25px;
}

.service-nested-menu__col-title {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    padding: 6px;
    margin: 0 0 20px;
}

.service-nested-menu__col-title--red {
    color: #fff;
    background-color: #C30909;
}

.service-nested-menu__col-title--orange {
    color: #fff;
    background-color: #FD8800;
}

.service-nested-menu__col-title--blue {
    color: #fff;
    background-color: #1053AF;
}

.service-nested-menu__col-title--green {
    color: #fff;
    background-color: #0A6C21;
}

.service-nested-menu__col-title--brown {
    color: #fff;
    background-color: #88450B;
}

.service-nested-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-nested-menu__item + .service-nested-menu__item {
    margin-top: 15px;
}

.service-nested-menu__item a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.25s;
}

.service-nested-menu__item a:hover {
    opacity: 0.8;
}

.service-nested-menu__item small {
    font-size: 0.815em;
}

.service-nested-menu__btn-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.service-nested-menu__btn {
    flex: 0 1 260px;
}

@media screen and (max-width: 1080px) {
    .header {
        height: 65px;
        background-color: #fff;
        padding: 0 10px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .header.is-fixed {
        animation: none;
    }

    .header__logo a {
        transition: none;
    }

    .header__logo a:hover {
        opacity: 1;
    }

    .header__logo img {
        height: 50px;
    }

    .header-menu {
        display: none;
    }
}


/* ---------------------------------------------
*   Global Nav
--------------------------------------------- */
.gnav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 100%;
    z-index: 999;
    background-color: #F4F3F0;
    opacity: 0;
    overflow-y: scroll;
    transition: bottom 0s 0.4s, opacity 0.3s 0.1s;
}

.gnav.is-active {
    bottom: 0;
    opacity: 1;
    transition: bottom 0s 0s, opacity 0.3s 0.1s;
}

.gnav-menu {
    display: block;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 40px 0;
}

.gnav-menu__item {
    text-align: center;
}

.gnav-menu__item--icon {
    margin-top: 20px;
}

.gnav-menu__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-size: 1.7rem;
    font-weight: 600;
    text-decoration: none;
    padding: 9px;
    cursor: pointer;
}

span.gnav-menu__link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.gnav-menu__item.is-active span.gnav-menu__link::after {
    transform: rotate(180deg);
}

.gnav-menu__link--icon {
    margin: 0 auto;
}

.gnav-menu__link--icon {
    display: flex;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    line-height: 1;
    align-items: center;
    justify-content: center;
    background-color: #811549;
}

.gnav-menu__link--icon img {
    display: block;
    width: 30px;
    height: 30px;
}

.gnav-nested-menu-container {
    overflow: hidden;
    height: 0;
    background-color: #811549;
    background-color: #ebe9e6;
    transition: height 0.3s;
}

.gnav-nested-menu-container.is-active {
    height: auto;
}

.gnav-nested-menu {
    padding: 25px 0;
    margin: 0;
}

.gnav-nested-menu__link {
    display: block;
    color: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding: 7px 10px;
}

.gnav-toggle {
    display: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    background: none;
    appearance: none;
    border-radius: 0;
    width: 65px;
    height: 65px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #811549;
    z-index: 999;
}

.gnav-toggle__bar {
    top: 26px;
    left: 14px;
    margin-top: -1.5px;
    transition: background-color 0s 0.15s;
}

.gnav-toggle__bar,
.gnav-toggle__bar::before,
.gnav-toggle__bar::after {
    content: '';
    display: block;
    width: 37px;
    height: 3px;
    background-color: #fff;
    position: absolute;
}

.gnav-toggle__bar::before {
    top: -10px;
    transition: top 0.15s 0.15s, transform 0.15s 0s;
}

.gnav-toggle__bar::after {
    bottom: -10px;
    transition: bottom 0.15s 0.15s, transform 0.15s 0s;
}

.gnav-toggle.is-active .gnav-toggle__bar {
    background-color: transparent;
    transition: background-color 0s 0.15s;
}

.gnav-toggle.is-active .gnav-toggle__bar::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.15s 0s, transform 0.15s 0.15s;
}

.gnav-toggle.is-active .gnav-toggle__bar::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.15s 0s, transform 0.15s 0.15s;
}

.gnav-toggle__label {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    position: absolute;
    bottom: 9px;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    left: 0;
    right: 0;
    z-index: 0;
}

/* 固定前（透明/ヒーロー上）だけ白文字にする */
.header:not(.is-fixed) .header-menu__item.is-active .header-menu__link {
  color: #fff;
}

/* 固定後（白背景時）はブランド色など濃色にする */
.header.is-fixed .header-menu__item.is-active .header-menu__link,
.header--lower .header-menu__item.is-active .header-menu__link {
  color: #070707; /* お好みで #1C1C1C などでもOK */
}

@media screen and (max-width: 1080px) {
    .gnav {
        display: block;
    }

    .gnav-toggle {
        display: block;
    }
}


/* ---------------------------------------------
*   Footer
--------------------------------------------- */
.footer {
    color: #fff;
    padding-top: 55px;
    background-color: #811549;
    margin-top: 60px;
    position: relative;
    z-index: 0;
}

.footer::before {
    content: '';
    display: block;
    height: 60px;
    background-image: url(../img/common/footer_accent.png);
    background-size: 100% 60px;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
}

.footer__top {
    text-align: center;
}

.footer__logo {
    margin: 0 0 35px;
}

.footer__logo img {
    height: 60px;
}

.footer__name {
    font-weight: 600;
    line-height: 1;
    margin: 0 0 15px;
}

.footer__address {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
}

.footer__middle {
    border-top: 1px dotted #fff;
    border-bottom: 1px dotted #fff;
    margin: 35px 0;
    padding: 35px 0 45px;
}

.footer__nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.footer-menu-block__title {
    font-weight: 600;
}

.footer-menu-block__title a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer-menu-block__title a:hover {
    opacity: 0.8;
}

.footer-menu {
    margin: 15px 0;
    padding: 0;
}

.footer-menu__item + .footer-menu__item {
    margin-top: 3px;
}

.footer-menu__item a {
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer-menu__item a:hover {
    opacity: 0.8;
}

.footer-menu__item a::before {
    content: '-　';
}

.footer__bottom {
    display: flex;
    min-width: 0;
    padding-bottom: 80px;
}

.footer-facility-list {
    flex: 0 0 50%;
    padding: 0 20px 0 0;
    margin: 0;
    list-style: none;
}

.footer-facility-list__item + .footer-facility-list__item {
    margin-top: 25px;
}

.footer-facility__top {
    display: flex;
    margin-bottom: 5px;
}

.footer-facility__name {
    flex: 0 0 auto;
    font-weight: 600;
    line-height: 1.2;
    margin-right: 15px;
}

.footer-facility__address {
    flex: 1 1 auto;
    font-size: 1.5rem;
    margin: 0;
}

.footer-facility__category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-facility__category-label {
    display: inline-block;
    color: #070707;
    font-size: 1.2rem;
    line-height: 1;
    padding: 5px;
    border-radius: 3px;
}

.footer-facility__category-label--tokuyou {
    background-color: #FFFFDD;
}

.footer-facility__category-label--day {
    background-color: #CBF0CD;
}

.footer-facility__category-label--short {
    background-color: #E5F0FF;
}

.footer-facility__category-label--helper {
    background-color: #FFE5FC;
}

.footer-facility__category-label--cate-house {
    background-color: #FFEDE5;
}

.footer-facility__category-label--kyotaku {
    background-color: #E6E6E6;
}

.footer-facility__category-label--group-home {
    background-color: #FFDDDD;
}

.footer-facility__category-label--multi {
    background-color: #F1E3FD;
}

.footer-facility__category-label--houkatsu {
    background-color: #E6E6E6;
}

.footer__copyright {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1;
    padding: 8px 0;
    background-color: #551031;
    text-align: center;
}

@media screen and (max-width: 980px) {
    .footer {
        padding-top: 35px;
        margin-top: 30px;
    }

    .footer::before {
        height: 30px;
        background-size: 100% 30px;
        top: -29px;
    }

    .footer__logo img {
        height: 55px;
    }

    .footer__middle {
        display: none;
    }

    .footer__bottom {
        border-top: 1px dotted #fff;
        margin-top: 25px;
        padding-top: 25px;
        padding-bottom: 40px;
        display: block;
    }

    .footer-facility-list + .footer-facility-list {
        margin-top: 15px;
    }

    .footer-facility-list {
        padding: 0;
    }

    .footer-facility-list__item + .footer-facility-list__item {
        margin-top: 15px;
    }

    .footer-facility__top {
        display: block;
        margin-bottom: 5px;
    }

    .footer-facility__name {
        flex: 0 0 auto;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 5px;
        margin-right: 0;
    }

    .footer__copyright {
        margin: 0;
        font-size: 1.3rem;
        line-height: 1;
        padding: 8px 0;
        background-color: #551031;
        text-align: center;
    }
}


/* ---------------------------------------------
*   MV
--------------------------------------------- */
.mv {
    height: 100vh;
    height: 100svh;
    background-image: url(../img/top/mv.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.mv__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.mv__copy {
    margin: 0 0 0 65px;
    writing-mode: vertical-rl;
}

.mv__copy img {
    width: 148px;
}

.mv__message {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.5;
    letter-spacing: 0.02em;
    margin: 0;
    writing-mode: vertical-rl;
}

@media screen and (max-width: 991px) {

    .mv {
        margin-top: 65px;
        padding-top: 0;
        background-image: url(../img/top/mv_tab.jpg);
        background-position: top;
        background-size: cover;
    }

}

@media screen and (max-width: 767px) {

    .mv {
        margin-top: 65px;
        padding-top: 0;
        background-image: url(../img/top/mv_sp.jpg);
        background-position: center;
        background-size: cover;
    }

    .mv__inner {
        display: block;
        padding: 0 20px;
    }

    .mv__copy {
        margin: 0 auto 50px;
    }

    .mv__copy img {
        width: 140px;
    }


    .mv__message {
        font-size: 1.5rem;
        line-height: 1.73;
        letter-spacing: 0;
        text-align: center;
        writing-mode: horizontal-tb;
    }
}

@media screen and (max-width: 500px) {

    .mv {
        padding-top: 65px;
        background-image: url(../img/top/mv_sp.jpg);
        background-size: cover;
    }

    .mv__copy {
        margin: 0 auto 30px;
    }

    .mv__copy img {
        width: 120px;
    }
}


/* ---------------------------------------------
*   Information
--------------------------------------------- */
.info-sec {
    padding: 50px 0 0;
}

.info-sec__title {
    line-height: 1;
    text-align: center;
    margin: 0 0 20px;
}

.info-sec__title img {
    height: 40px;
}

.info-card-list {
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    border-bottom: 1px dotted #707070;
    padding: 20px 0;
}

.info-card__date {
    width: 115px;
    flex: 0 0 115px;
}

.info-card__category {
    flex: 0 0 90px;
    width: 90px;
}

.info-card__category-label {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    padding: 4px 6px;
    color: #fff;
}

.info-card__category-label--orange {
    color: #fff;
    background-color: #F76C06;
}

.info-card__category-label--green {
    color: #fff;
    background-color: #075713;
}

.info-card__category-label--brown {
    color: #fff;
    background-color: #7B3110;
}

.info-card__title {
    font-size: 1.6rem;
    font-weight: 400;
    flex: 1 1 auto;
    margin: 0;
}

.info-card__title a {
    color: inherit;
    text-decoration: none;
}

.info-card__title a:hover {
    text-decoration: underline;
}

.info-sec__btn-container {
    text-align: center;
}

.info-sec__btn {
    width: 100%;
    max-width: 280px;
}

@media screen and (max-width: 767px) {
    .info-sec {
        padding: 50px 0 0;
    }

    .info-sec__title {
        margin: 0 0 10px;
    }

    .info-sec__title img {
        height: 35px;
    }

    .info-card-list {
        margin-bottom: 30px;
    }

    .info-card {
        flex-wrap: wrap;
        align-items: center;
    }

    .info-card__date {
        font-size: 1.5rem;
        width: auto;
        flex: 0 0 auto;
    }

    .info-card__category {
        flex: 1 1 auto;
        width: auto;
        margin-left: 7px;
    }

    .info-card__category-label {
        font-size: 1.2rem;
    }

    .info-card__title {
        flex: 0 0 100%;
        font-size: 1.5rem;
        margin: 10px 0 0;
    }
}


/* ---------------------------------------------
*   Pickup News
--------------------------------------------- */
.pickup-sec {
    padding: 50px 0 65px;
}

.pickup-sec__title {
    line-height: 1;
    text-align: center;
    margin: 0 0 35px;
}

.pickup-sec__title img {
    height: 42px;
}

.pickup-slider-container {
    overflow: hidden;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
}

.pickup-slider {
    overflow: visible;
}

.pickup-slider .swiper-button-prev,
.pickup-slider .swiper-button-next {
    width: 38px;
    height: 38px;
    top: calc(50% - 18px);
    padding: 0;
    background-image: url(../img/common/slider_btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pickup-slider .swiper-button-prev {
    left: -18px;
}

.pickup-slider .swiper-button-next {
    right: -18px;
    transform: rotate(180deg);
}

.pickup-slider .swiper-button-prev::after,
.pickup-slider .swiper-button-next::after {
    display: none;
}

.pickup-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s;
}

.pickup-card:hover {
    opacity: 0.8;
}

.pickup-card_img {
    width: 100%;
    aspect-ratio: 17 / 11;
    background-image: url('http://sasayuri-kai.local/wp-content/uploads/2025/07/images.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}


.pickup-card__img {
    width: 100%;
    aspect-ratio: 17 / 11;
    object-fit: cover;
    margin-bottom: 20px;
}

.pickup-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-card__meta {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 12px;
    margin-bottom: 10px;
}

.pickup-card__date {
    font-size: 1.5rem;
    line-height: 1;
}

.pickup-card__category {
    font-size: 1.3rem;
    line-height: 1;
    padding: 4px 6px;
    color: #fff
}

.pickup-card__category--news {
    color: #fff;
    background-color: #811549;
}

.pickup-card__category--recruit {
    color: #fff;
    background-color: #174291;

}

.pickup-card__category--column {
    color: #fff;
    background-color: #139FA5;
}

.pickup-card__title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .pickup-sec {
        padding: 50px 0 40px;
    }

    .pickup-sec__title {
        margin: 0 0 25px;
    }

    .pickup-sec__title img {
        height: 32px;
    }

    .pickup-slider .swiper-button-prev {
        left: -18px;
    }

    .pickup-slider .swiper-button-next {
        right: -18px;
        transform: rotate(180deg);
    }

    .pickup-card__title {
        font-size: 1.5rem;
    }
}


/* ---------------------------------------------
*   Service
--------------------------------------------- */
.service-sec__inner {
    padding: 80px 55px 70px;
    background-color: #F4F3F0;
    border-radius: 20px;
}

.service-sec__title {
    line-height: 1;
    text-align: center;
    margin: 0 0 35px;
    padding-bottom: 25px;
    position: relative;
    z-index: 0;
}

.service-sec__title::after {
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    background-color: #811549;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -45px;
}

.service-sec__title-ja {
    font-size: 2.9rem;
    font-weight: 600;
}

.service-sec__title-en {
    margin-top: 17px;
    font-size: 1.5rem;
    font-weight: 300;
}

.service-sec__description {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.725;
    text-align: center;
    margin: 0 0 50px;
}

.service-card-list {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 35px;
    padding: 0;
    margin: 0 0 50px;
    list-style: none;
}

.service-card-list__item {
    flex: 0 0 calc((100% - 35px * 2) / 3);
    background-color: #fff;
    border-radius: 8px;
}

.service-card-list__item a {
    text-decoration: none;
    color: #070707
}

.service-card-list__item a:hover {
    opacity: .7
}

.service-card {
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    aspect-ratio: 20 / 13;
    object-fit: cover;

}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0
}

.service-card__bottom {
    padding: 25px 20px;
}

.service-card__title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 10px;
}

.service-card__title span {
    font-size: 1.5rem;
    display: block
}

.service-card__description {
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 14px;
}

.service-card__category {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    padding: 6px;
}

.service-card__category--red {
    color: #fff;
    background-color: #C30909;
}

.service-card__category--orange {
    color: #fff;
    background-color: #FD8800;
}

.service-card__category--blue {
    color: #fff;
    background-color: #1053AF;
}

.service-card__category--green {
    color: #fff;
    background-color: #0A6C21;
}

.service-card__category--brown {
    color: #fff;
    background-color: #88450B;
}

.service-sec__btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 890px;
    gap: 25px;
    margin: 0 auto;
}

.service-sec__btn {
    flex: 0 0 calc((100% - 25px * 2) / 3);
}

@media screen and (max-width: 767px) {
    .service-sec__inner {
        padding: 40px 20px 40px;
        border-radius: 12px;
    }

    .service-sec__description {
        font-size: 1.6rem;
        margin: 0 0 40px;
    }

    .service-card-list {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 20px;
        padding: 0;
        margin: 0 0 40px;
    }

    .service-sec__btn-list {
        flex-direction: column;
        gap: 20px;
    }

    .service-sec__btn {
        flex: 0 0 100%;
    }
}


/* ---------------------------------------------
*   Recruit
--------------------------------------------- */
.recruit-sec {
    padding: 0 0 75px;
}

.recruit-sec__title {
    line-height: 1;
    text-align: center;
    margin: 0 0 50px;
}

.recruit-sec__title::before {
    content: '';
    display: block;
    width: 240px;
    height: 120px;
    background-image: url(../img/top/recruit_symbol.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 25px;
}

.recruit-sec__title-ja {
    font-size: 4.1rem;
    font-weight: 600;
}

.recruit-sec__title-en {
    margin-top: 12px;
    font-size: 1.5rem;
    font-weight: 300;
}

.recruit-sec__inner {
    position: relative;
    z-index: 0;
}

.recruit-sec__img-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url(../img/top/recruit.jpg);
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

.recruit-sec__text-content {
    padding-left: calc(54.6%);
    padding-top: 32px;
    padding-bottom: 20px;
}

.recruit-sec__copy {
    font-size: 3.6rem;
    font-weight: 600;
    margin: 0 0 30px;
}

.recruit-sec__copy-bottom {
    margin-left: 2.2em;
}

.recruit-sec__description {
    line-height: 2.125;
    margin: 0 0 40px;
}

.recruit-sec__btn-container {
    text-align: right;
}

.recruit-sec__btn {
    display: inline-block;
    color: #070707;
    width: 210px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1px solid #0F0F0F;
    text-align: center;
    padding: 20px;
    margin-right: 6px;
    margin-bottom: 6px;
    position: relative;
    z-index: 0;
    transition: opacity 0.25s;
}

.recruit-sec__btn:hover {
    opacity: 0.8;
}

.recruit-sec__btn::before,
.recruit-sec__btn::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -6px;
    right: -6px;
    background-color: #0F0F0F;
}

.recruit-sec__btn::before {
    width: 1px;
    height: 40px;
}

.recruit-sec__btn::after {
    width: 40px;
    height: 1px;
}

@media screen and (max-width: 767px) {
    .recruit-sec {
        padding: 0 0 55px;
    }

    .recruit-sec__title {
        margin: 0 0 30px;
    }

    .recruit-sec__title::before {
        width: 160px;
        height: 80px;
    }

    .recruit-sec__title-ja {
        font-size: 2.9rem;
    }

    .recruit-sec__title-en {
        font-size: 1.5rem;
    }

    .recruit-sec__img-content {
        position: static;
        width: 100%;
        padding-top: 80%;
        margin-bottom: 30px;
    }

    .recruit-sec__text-content {
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .recruit-sec__copy {
        font-size: 2.5rem;
        margin: 0 0 25px;
    }

    .recruit-sec__description {
        line-height: 2;
        margin: 0 0 20px;
    }

    .recruit-sec__btn-container {
        text-align: center;
    }
}


/* ---------------------------------------------
*   Facility Detail
--------------------------------------------- */
.facility-detail-title {
    position: relative;
    z-index: 0;
    margin: 0;
}

.facility-detail-title::before {
    content: '';
    background-color: #ffffff;
    background-image: radial-gradient(circle, #ede7d3 1.5px, transparent 1.5px);
    background-position: 0 0;
    background-size: 11px 11px;
    position: absolute;
    top: 7%;
    left: 0;
    right: 0;
    bottom: 7%;
    z-index: -1;
}

.facility-detail-title__inner {
    display: flex;
    align-items: center;
}

.facility-detail-title__img-container {
    flex: 1;
    align-self: stretch;
}

.facility-detail-title__img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 50px 50px 0;
    padding-top: 68.27%;
}

.facility-detail-title__text {
    font-size: 2.8125vw;
    writing-mode: vertical-rl;
    padding: 0 7vw;
}

.facility-detail-title__text .s_text {
    font-size: 2.125vw;
}

@media screen and (max-width: 767px) {
    .facility-detail-title::before {
        background-image: radial-gradient(circle, #ede7d3 1px, transparent 1px);
        background-size: 6px 6px;
        position: absolute;
    }

    .facility-detail-title__img {
        border-radius: 0 20px 20px 0;
    }

    .facility-detail-title__text {
        font-size: max(2.8125vw, 16px);
        writing-mode: vertical-rl;
        padding: 0 7vw;
    }
}


/* ---------------------------------------------
*   Utility
--------------------------------------------- */

@media screen and (max-width: 767px) {
    .hidden-sp {
        display: none !important;
    }
}

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

.pc-view {
    display: block;
}

.tab-view {
    display: none;
}

.sp-view {
    display: none;
}

@media screen and (max-width:991px) {

    /*タブレット以下のみ表示 */
    .pc-view {
        display: none;
    }

    .tab-view {
        display: block;
    }

    .sp-view {
        display: block;
    }
}

@media only screen and (max-width:576px) {

    /*モバイル以下のみ表示 */
    .pc-view {
        display: none;
    }

    .tab-view {
        display: block;
    }

    .sp-view {
        display: block;
    }
}

/* ---------------------------------------------
*   Animation
--------------------------------------------- */
@keyframes slideIn {
    0% {
        top: -110px;
    }

    100% {
        top: 0;
    }
}


/* ---------------------------------------------
*   下階層　共通
--------------------------------------------- */

.lower-cont {
    padding-top: 60px;
    padding-bottom: 70px
}

.lower-head {
    background: url(../img/common/dot.svg) left top / 11px 11px repeat,
        url(../img/common/round-bg.svg) right center / 35% no-repeat rgba(240, 240, 227, 0.1);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lower-head h1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: 1.3;
}

.lower-head h1::after {
    content: url(../img/common/color-dot.svg)
}

.lower-head h1 span {
    display: block;
    font-size: 1.8rem;
    margin-top: 8px
}

.bread ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 15px;
    display: flex;
    flex-flow: wrap;
    font-size: 1.4rem;
}

.bread ul li::after {
    content: "＞";
    color: #adadad;
    font-size: 1.2rem;
    margin: 0 1em
}

.bread ul li:last-child::after {
    content: none
}

.bread ul li a {
    text-decoration: none;
    color: #ff8000
}

.ceircle_btn {
    --icon-size: 38px;
    --icon-offset-x: 0px;
    --icon-offset-y: 0px;
    --icon-gap: .7em;
    display: inline-flex;
    align-items: center;
    gap: var(--icon-gap);
    text-decoration: none;
    position: relative;
    color: #0B0B0B
}

.ceircle_btn::before {
    content: "";
    flex: 0 0 auto;
    width: var(--icon-size);
    height: var(--icon-size);
    background: url("../img/common/circle_btn.svg") no-repeat center / contain;
    transform: translate(var(--icon-offset-x), var(--icon-offset-y));
}

.ceircle_btn:hover {
    opacity: .8
}


@media screen and (max-width: 1080px) {

    .lower-cont {
        padding-top: 45px;
        padding-bottom: 45px
    }

    .lower-head {
        background: url(../img/common/dot.svg) left top / 9px 9px repeat,
            url(../img/common/round-bg.svg) right center / 300px no-repeat;
        height: 240px;
    }

    .lower-head h1 {
        font-size: 3rem;
        line-height: 1.2;
        margin-top: 13px
    }

    .bread ul {
        margin: 10px 0 0 15px;
        font-size: 1.3rem;
    }

    .bread ul li::after {
        font-size: 1.1rem;
        margin: 0 .8em
    }
}


@media screen and (max-width: 767px) {

    .lower-cont {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .lower-head {
        background: url(../img/common/dot.svg) left top / 8px 8px repeat,
            url(../img/common/round-bg.svg) 115% center / 200px no-repeat;
        height: 160px;
    }

    .lower-head h1 {
        font-size: 2.2rem;
        line-height: 1.4;
    }
}


/* ---------------------------------------------
*   下階層　お知らせ
--------------------------------------------- */

#info .ttL_round {
    font-size: 2.6rem;
    margin: 0 0 40px
}

.info_flex {
    display: flex
}

.info_menu {
    width: 250px
}

.info_archive {
    width: calc(100% - 250px);
    padding-right: 60px
}

.info_menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 40px; )
}

.info_menu_list li {
    width: calc(100% / 2 - 20px);
    margin-right: 40px;
    margin-bottom: 40px;
    padding: 20px 20px 25px 20px;
    background: #f8f6f3;
    border-radius: 15px;
    /*box-shadow: 2px 3px 2px 2px rgba(136, 136, 136, 0.5);*/
}

.info_menu_list li:nth-child(2n) {
    margin-right: 0
}

.info_menu_list li:hover {
    opacity: .8
}

.info_menu_list li a {
    text-decoration: none;
    color: #212121;
}

.info_menu_list .pickup-card__img {
    margin-bottom: 15px
}

.info_menu_list .date_wrap {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center
}

.info_menu_list .date_wrap .date {
    font-size: 1.5rem;
    margin: 0;
    color: #646464
}

.info_menu_list .date_wrap .cat {
    margin: 0;
}

.info_menu_list .date_wrap .cat span {
    font-size: 1.25rem;
    color: #fff;
    margin-left: 10px;
    padding: 5px 7px
}

.info_menu_list h3 {
    font-size: 1.9rem;
    margin: 15px 0 15px
}

.info_menu_list p.com {
    border-top: 2px dashed #C1C1C1;
    padding-top: 15px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #5C5C5C;
    margin: 0
}

.info_menu h2 {
    margin: 0 0 30px;
    padding-bottom: 10px;
    font-size: 2rem;
    border-bottom: 2px dashed #C1C1C1;
}

.info_menu_sidelist {
    margin: 0 0 40px;
    padding: 0 0 0 15px;
    list-style: none;
}

.info_menu_sidelist li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-weight: 600
}

.info_menu_sidelist li a {
    text-decoration: none;
    color: #070707
}

.info_menu_sidelist li a:hover {
    color: #FF7B0A
}

.info_menu_sidelist li::before {
    content: "▶︎";
    font-size: 1.2rem;
    margin-right: 8px;
    color: #7976BF
}

.info_menu_sidenews {
    list-style: none;
    margin: 40px 0 0 0;
    padding: 0;
}

.info_menu_sidenews li {
    margin-bottom: 25px
}

.info_menu_sidenews li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #555555
}

.info_menu_sidenews li a:hover {
    opacity: .8
}

.info_menu_sidenews .img {
    width: 70px
}

.info_menu_sidenews .cont {
    width: calc(100% - 70px);
    padding-left: 15px
}

.info_menu_sidenews .pickup-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 0
}

.info_menu_sidenews .pickup-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px
}

.info_menu_sidenews .cont p.date {
    margin: 0;
    font-size: 1.35rem;
    color: #98BF76;
    font-weight: 600
}

.info_menu_sidenews .cont p.ttl {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 3px
}

.info_single_base {
    display: flex;
    align-items: center
}

.info_single_base .date {
    color: #797979;
    font-size: 1.5rem;
    margin: 0
}

.info_single_base .cat {
    margin: 0;
    margin-left: 1.5em;

}

.info_single_base .cat span {
    color: #fff;
    font-size: 1.3rem;
    padding: 4px 10px;
    border-radius: 30px;
    margin-right: 10px
}

.info_single_ttl {
    font-size: 2.8rem;
    color: #811549;
    margin: 15px 0 0 0
}

@media screen and (max-width: 1080px) {

    #info .ttL_round {
        font-size: 2.0rem;
        margin: 0 0 25px
    }

    .info_archive {
        padding-right: 0px
    }

    .info_menu {
        width: 180px
    }

    .info_archive {
        width: calc(100% - 180px);
        padding-right: 10px
    }

    .info_menu_list {
        flex-flow: wrap;
        width: calc(100% + 20px; )
    }

    .info_menu_list li {
        width: calc(100% / 2 - 20px);
        margin-right: 20px;
        margin-bottom: 30px;
    }


    .info_menu_list .date_wrap {
        display: block;
    }

    .info_menu_list .date_wrap .cat span {
        font-size: 1.25rem;
        color: #fff;
        margin-left: 0;
        margin-right: 10px;
    }
}

@media screen and (max-width: 767px) {

    .info_flex {
        flex-flow: column
    }

    .info_menu {
        width: 100%
    }

    .info_archive {
        width: 100%;
        padding-right: 0
    }

    .info_menu_list {
        flex-flow: column;
        width: 100%
    }

    .info_menu_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        padding: 15px 15px 20px 15px;
        border-radius: 15px;
    }

    .info_menu_list .date_wrap {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .info_menu_list .date_wrap .cat span {
        margin-left: 10px;
        margin-right: 0;
    }

    .info_menu_list h3 {
        font-size: 1.7rem;
        margin: 13px 0 13px
    }

    .info_menu_list p.com {
        padding-top: 13px;
        font-size: 1.4rem;
    }

    .info_menu h2 {
        margin: 0 0 20px;
        padding-bottom: 10px;
        font-size: 1.8rem;
    }

    .info_menu_sidelist {
        margin: 0 0 25px;
        padding: 0 0 0 10px;
    }

    .info_menu_sidelist li {
        margin: 7px 0;
    }

    .info_menu_sidenews {
        margin: 25px 0 0 0;
    }

    .info_menu_sidenews li {
        margin-bottom: 15px
    }

    .info_menu_sidenews .cont {
        width: calc(100% - 70px);
        padding-left: 13px
    }


    .info_single_base {
        display: block;
    }

    .info_single_base .date {
        font-size: 1.4rem;
    }

    .info_single_base .cat {
        margin: 5px 0 0 0;

    }

    .info_single_base .cat span {
        font-size: 1.2rem;
        padding: 4px 8px;
        margin-right: 8px
    }

    .info_single_ttl {
        font-size: 2.2rem;
        line-height: 1.4;
        margin: 15px 0 0 0
    }

}


/* ---------------------------------------------
*   投稿フォーマット共通
--------------------------------------------- */

.sng_cont {
    margin-top: 28px
}

.sng_cont p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1em
}

.sng_cont p:first-of-type {
    margin-top: 0
}

.sng_cont p:last-of-type {
    margin-bottom: 0
}

.sng_cont h1 {
    font-size: 3.6rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h4 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h5 {
    font-size: 2rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h6 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont img {
    margin: 15px 0;
}

.sng_cont a {
    color: #CF0357
}

.sng_cont a:hover {
    color: #ff8000
}


/********* 投稿ページ詳細  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .sng_cont {
        margin-top: 25px
    }

    .sng_cont p {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .sng_cont h1 {
        font-size: 3.2rem;
        margin-bottom: 10px
    }

    .sng_cont h2 {
        font-size: 2.8rem;
        margin-bottom: 10px
    }

    .sng_cont h3 {
        font-size: 2.4rem;
        margin-bottom: 10px
    }

    .sng_cont h4 {
        font-size: 2.0rem;
        margin-bottom: 10px
    }

    .sng_cont h5 {
        font-size: 1.8rem;
        margin-bottom: 10px
    }

    .sng_cont h6 {
        font-size: 1.6rem;
        font-weight: 600;
        margin: 15px 0
    }

    .sng_cont img {
        margin: 15px 0
    }
}

/* ---------------------------------------------
*   ページネーション
--------------------------------------------- */

.pager {
    margin: 0 auto 0
}

.pager .pagination {
    text-align: center;
    font-family: sans-serif
}

.pager .pagination {
    padding: 0;
}

.pager .pagination li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #9f9f9f;
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    font-size: 1.5rem;
    line-height: 0
}


.pager .pagination li a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pager .pagination li a span {
    display: table-cell;
    vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
    color: #fff;
    background: #811549;
    border-radius: 50px;
}

/********* ページネーション  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .pager {
        margin: 25px auto 0
    }


    .pager .pagination {
        text-align: center;
    }

    .pager .pagination li {
        display: none;
        font-size: 1.4rem;
        background: #643835;
    }

    .pager .pagination li.pre,
    .pager .pagination li.next {
        display: inline-block;
        width: 40%;
        height: 50px;
        text-align: center;
    }

    .pager .pagination li.pre a,
    .pager .pagination li.next a {
        width: 100%;
        text-align: center;
    }

    .pager .pagination li.pre span::after {
        content: "　前の10件へ";
    }

    .pager .pagination li.next span::before {
        content: "次の10件へ　";
    }

    .pager .pagination li a:hover,
    .pager .pagination li a.active {
        color: #fff;
        background: #D9645F;
        border-radius: 50px;
    }
}

/* ---------------------------------------------
*   求人検索
--------------------------------------------- */

.search_word {
    text-align: center;
    margin-top: 45px
}

.search_word .inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_word .Form__Title {
    margin-right: 16px
}

.search_box {
    display: inline-block;
    position: relative;
}

.search_box::before {
    content: "";
    width: 20px;
    height: 22px;
    background: url(../img/recruit/glass.svg) no-repeat center center / auto 100%;
    display: inline-block;
    position: absolute;
    top: 10.5px;
    left: 12px;
}

.search_box input {
    padding-left: 2.5em;
    width: 380px
}

.search_tbl {
    max-width: 720px;
    margin: 5px auto 0;
    border-collapse: collapse;
}

.search_tbl th,
.search_tbl td {
    padding: 27px 0 0 0;
    white-space: nowrap;

}

.search_tbl th {
    text-align: left;
    padding-right: 30px;
    line-height: 1.6
}

.search_tbl th span {
    display: block;
    font-weight: 400;
    font-size: 1.4rem
}

input,
select {
    padding: 10px;
    font-size: 1.6rem
}

select {
    -webkit-appearance: none;
    appearance: none;
}

.radioItem {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    line-height: 1;
    cursor: pointer;
}

.radioItem:not(:last-of-type) {
    margin-right: 20px;
}

.radioButton {
    appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #23b2ff;
    border-radius: 9999px;
    cursor: pointer;
}

.radioButton:checked::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    border-radius: 9999px;
    background-color: #23b2ff;
}

.select_wrapper {
    position: relative;
    display: inline-block
}

.select_wrapper::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 15px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #898989;
    border-bottom: 2px solid #898989;
    transform: rotate(45deg);
}

select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 30px
}

.checkboxItem {
    display: flex;
    align-items: center;
    column-gap: 6px;
    width: fit-content;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.checkboxItem:not(:last-of-type) {
    margin-bottom: 13px;
}

.checkbox {
    appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #b5b5b5;
    border-radius: 2px;
    background-color: #ebebeb;
    cursor: pointer;
}

.checkbox:checked {
    background-color: #23b2ff;
}

.checkbox:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 3px;
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: rotate(-45deg);
}

.search_check {
    display: flex;
    flex-flow: wrap
}

.search_check label {
    width: 50%;
    font-weight: 600;
    margin: 3px 0
}

.search_check label span {
    font-weight: 400
}

.search_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 280px;
    margin: 35px auto 0;
    padding: 10px 2em;
    overflow: hidden;
    border: 2px solid #2589d0;
    border-radius: 5px;
    background-color: #2589d0;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: .1em;
    cursor: pointer;
}

.search_btn:hover {
    background-color: #fff;
    color: #2589d0;

}

.search_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #2589d0;
    content: '';
    transition: width .3s ease;
}

.search_btn:hover::before {
    width: 100%;
}

/*検索結果*/

.search_word_list {
    display: flex;
    flex-flow: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    justify-content: center
}

.search_word_list li {
    color: #FF7600;
    font-weight: 600
}

.search_word_list li::before {
    content: "#"
}

.search_word_list li:not(:last-of-type) {
    margin-right: 1em;
}


.search_ud_form {
    background: #F4F4F4;
    padding: 20px 25px;
    margin: 35px 0 0
}

.search_ud_form .search_part {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.search_word {
    padding-right: 20px;
}

.search_select_ud:not(:last-of-type) {
    margin-right: 20px
}

.search_ud_form input,
.search_ud_form select {
    padding: 8px;
    font-size: 1.5rem
}

.search_ud_form .search_part .search_word {
    margin: 0;
    text-align: left
}

.search_ud_form .search_part .search_word .search_box::before {
    content: "";
    width: 18px;
    height: 18px;
    top: 9px;
    left: 8px;
}

.search_ud_form .search_part .search_word .search_box input {
    width: 180px;
    padding: 7px 7px 7px 2em;
}

.search_part h3 {
    margin: 0 0 5px;
    font-size: 1.4rem;
}

.search_part .select_wrapper::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #898989;
    border-bottom: 2px solid #898989;
    transform: rotate(45deg);
}

.search_part select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 16px
}

.search_part .fac_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: wrap
}

.search_part .fac_list li {
    margin: 0 1em 8px 0
}

.search_part .fac_list li .checkboxItem {
    font-weight: 400;
    font-size: 1.4rem
}

.search_part .checkbox {
    width: 16px;
    height: 16px;
}

.search_part .checkbox:checked::after {
    width: 10px;
    height: 5px;
}

.search_ud_form .search_btn {
    width: 200px;
    margin: 10px auto 0;
    padding: 5px 2em;
    font-size: 1.5rem;
    font-weight: 400;
}

.search_btn:hover {
    background-color: #fff;
    color: #2589d0;

}

/*採用情報詳細*/

.rec_single .container {
    max-width: 950px
}

.rec_date {
    text-align: right;
    color: #747474;
    font-size: 1.3rem;
    margin: 0
}

.rec_single_ttl {
    font-size: 2.8rem;
    margin: 20px 0 10px
}

.rec_item {
    display: flex;
    flex-flow: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 5px;
    color: #FF7B0A;
    font-weight: 600;
    font-size: 1.5rem
}

.rec_item li {
    margin-right: 1em
}

.rec_item li::before {
    content: "#"
}

.rec_single .pickup-card__img {
    margin: 25px 0 45px
}

.rec_single .pickup-card__img img {
    border-radius: 15px
}

.rec_pply_btn {
    text-align: center;
    margin-top: 45px
}

.rec_pply_btn a {
    background: #152E81;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    padding: 18px 80px;
    border-radius: 100px;
    text-decoration: none
}

.rec_pply_btn a:hover {
    background: #f58400;
}

.rec_summary_tbl {
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0 60px
}

.rec_summary_tbl th,
.rec_summary_tbl td {
    padding: 25px 10px
}

.rec_summary_tbl th {
    border-bottom: 4px solid #30AAEB;
    width: 180px;
    text-align: left;
    color: #30AAEB
}

.rec_summary_tbl td {
    border-bottom: 1px solid #b1b1b1;
    padding-left: 25px;
    line-height: 1.6
}

.rec_tanto_wrap {
    background: #DBF2FF;
    display: flex;
    border-radius: 10px;
    align-items: center;
    padding: 40px
}

.rec_tanto_wrap h3 {
    margin: 0 60px 0 0;
    font-size: 2rem
}

/*.rec_tanto_wrap .tel_wrap {
    border-left:1px dashed #707070;
    padding-left: 60px
}

.rec_tanto_wrap .tel_wrap p.tanto {
    margin: 0;
    font-weight: 600;
    font-size: 1.8rem
}

.rec_tanto_wrap .tel_wrap p.tanto_tel {
    margin: 8px 0 0 0;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1
}

.rec_tanto_wrap .tel_wrap p.tanto_tel a {
    text-decoration: none;
    color:#070707
}

.rec_tanto_wrap .tel_wrap p.tanto_tel::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('../img/recruit/icon-phone.svg');
    background-position:bottom;
    background-size: contain;
    margin-right: 10px
}*/

@media screen and (max-width: 767px) {

    .search_word {
        text-align: center;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #d1d1d1
    }

    .search_word .inner {
        display: block;
        width: 100%
    }

    .search_word .Form__Title {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 1.5rem;
    }

    .search_box::before {
        width: 18px;
        height: 18px;
        top: 10.5px;
        left: 10px;
    }

    .search_box input {
        padding-left: 2.2em;
        width: 320px;
    }

    .search_tbl {
        width: 100%;
        margin: 5px auto 0;
    }

    .search_tbl th,
    .search_tbl td {
        padding: 0;
        display: block;
        width: 100%;
        font-size: 1.5rem;
    }

    .search_tbl th {
        margin: 20px 0 8px;
        text-align: left;
    }

    .search_tbl th span {
        font-size: 1.3rem;
        display: inline-block;
        margin-left: 1em
    }

    input,
    select {
        padding: 8px;
        font-size: 1.5rem
    }

    .radioItem {
        display: flex;
        margin: 0 0 8px 0
    }

    .radioItem:not(:last-of-type) {
        margin-right: 0;
    }

    .radioButton {
        width: 18px;
        height: 18px;
    }

    .radioButton:checked::after {
        width: 10px;
        height: 10px;
    }

    .select_wrapper::after {
        top: 10px;
        right: 15px;
        width: 10px;
        height: 10px;
    }

    select {
        -webkit-appearance: none;
        appearance: none;
        padding-right: 30px
    }

    .checkboxItem:not(:last-of-type) {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkbox {
        width: 18px;
        height: 18px;
    }

    .checkbox:checked {
        background-color: #23b2ff;
    }

    .checkbox:checked::after {
        top: 3.5px;
        left: 2px;
    }

    .search_check {
        flex-flow: column
    }

    .search_check label {
        width: 100%;
        margin: 0
    }

    .search_check label span {
        font-weight: 400
    }

    .search_btn {
        width: 100%;
        margin: 25px auto 0;
        padding: 6px 2em;
        font-size: 1.6rem;
    }


    /*検索結果*/

    .search_word_list {
        font-size: 1.3rem;
        margin: 0 0 25px;
    }

    .search_word_list li::before {
        content: "#"
    }

    .search_word_list li:not(:last-of-type) {
        margin-right: .8em;
    }


    .search_ud_form {
        padding: 5px 15px 15px 15px;
        margin: 30px 0 0
    }

    .search_ud_form .search_part {
        flex-flow: column;
    }

    .search_word {
        padding-right: 0;
        margin-top: 0;
        padding-top: 0;
        border-top: none
    }

    .search_select_ud:not(:last-of-type) {
        margin-right: 0
    }

    .search_ud_form input,
    .search_ud_form select {
        padding: 6px;
        font-size: 1.4rem
    }

    .search_ud_form .search_part .search_word .search_box::before {
        content: "";
        width: 15px;
        height: 15px;
        top: 8px;
        left: 8px;
    }

    .search_ud_form .search_part .search_word .search_box input {
        width: 280px;
        padding: 5px 5px 5px 2em;
    }

    .search_part h3 {
        margin: 10px 0 3px;
        font-size: 1.35rem;
    }

    .search_part .select_wrapper::after {
        top: 10px;
    }

    .search_part .fac_list li {
        margin: 0 .7em 8px 0
    }

    .search_part .fac_list li .checkboxItem {
        font-size: 1.4rem
    }

    .search_part .checkbox {
        width: 15px;
        height: 15px;
    }

    .search_ud_form .search_btn {
        width: 100%;
        margin: 8px auto 0;
        padding: 3px 2em;
        font-size: 1.5rem;
    }

    /*採用情報詳細*/

    .rec_date {
        font-size: 1.2rem;
    }

    .rec_single_ttl {
        font-size: 1.8rem;
        line-height: 1.45;
        margin: 15px 0 5px
    }

    .rec_item {
        margin: 0 0 2px;
        font-size: 1.4rem
    }

    .rec_item li {
        margin-right: 10px
    }

    .rec_single .pickup-card__img {
        margin: 20px 0 25px
    }

    .rec_pply_btn {
        margin: 35px 0 30px
    }

    .rec_pply_btn a {
        font-size: 1.7rem;
        padding: 14px 70px;
    }

    .rec_summary_tbl {
        margin: 25px 0 40px
    }

    .rec_summary_tbl th,
    .rec_summary_tbl td {
        padding: 15px 0px;
        display: block;
        width: 100%;
        font-size: 1.5rem;
    }

    .rec_summary_tbl th {
        border-bottom: none;
        font-size: 1.5rem;
        padding-bottom: 8px
    }

    .rec_summary_tbl td {
        padding-left: 0;
        padding-top: 0
    }
}

/*Contact Form 7カスタマイズ*/
/*-------------------------------------------------------------------------*/


/*応募フォーム*/

.rec_apply_form {
    max-width: 860px;
    margin: 35px auto 0
}

/*Contact Form 7*/

#application-thanks h3,
#contact-thanks h3 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background: #292425;
    color: #fff;
    padding: 45px 15px;
    margin-bottom: 65px
}

#application-thanks .thanks_com,
#contact-thanks .thanks_com {
    text-align: center;
    margin-bottom: 60px
}


.inquiry_wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 860px;
    text-align: center;
}

.inquiry {
    width: 100%;
    margin: 45px auto;
    border-collapse: collapse;
    border-spacing: 0px;
}

.inquiry tr {
    border: solid 1px #b1b1b1;
}


.inquiry th {
    text-align: left;
    padding: 20px;
    width: 13em;
    vertical-align: middle;
    white-space: nowrap;
    border-right: solid 1px #b1b1b1;
}

.inquiry td {
    padding: 20px;
    text-align: left;
    width: calc(100% - 13em);
}

.rec_default {
    background: #f4f4f4
}

.haveto {
    font-size: 1.0rem;
    padding: 5px;
    background: #d60400;
    color: #fff;
    font-weight: normal;
    border-radius: 4px;
    margin-right: 7px;
    position: relative;
    bottom: 1px;
}

.any {
    font-size: 1.0rem;
    padding: 5px;
    background: #006edb;
    color: #fff;
    font-weight: normal;
    border-radius: 4px;
    margin-right: 7px;
    position: relative;
    bottom: 1px;
}

/* CF7チェックボックスとラジオボタンを縦並びに */
span.wpcf7-list-item {
    margin-top: 8px;
    display: block;
}

td.form_policy {
    text-align: center;
    padding-top: 25px;
}

td.form_policy a {
    font-weight: normal;
    margin-left: 0;
    padding-left: 0
}

td.form_policy .policy {
    font-size: 1.7rem;
    line-height: 2.5
}

p.check_att {
    text-align: center;
    font-size: 1.5rem
}

.submit_wrap {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0
}

.submit_wrap li {
    margin: 0 10px;
}

#formbtn {
    display: block;
    padding: 15px;
    width: 350px;
    background: #3e2a2a;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 4px;
    margin: 0 auto 0;
    border: 2px solid #3e2a2a;
}

#formbtn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.wpcf7-previous {
    padding: 15px;
    width: 200px;
    background: #fff;
    color: #;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid #3e2a2a;
    transition: all 0.3s ease;
}

.wpcf7-previous:hover {
    background: rgba(62, 42, 42, 0.72);
    border: 2px solid rgba(38, 53, 129, 0.3);
    color: #fff;
    opacity: 1;
}

.inquiry a {
    color: #D80235;
    font-weight: 600;
    margin-left: 1em
}

.inquiry textarea[name="your-message"] {
    width: 100%;
    border: 1px #c1c1c1 solid;
    padding: 10px;
    background: #fafafa;
    font-size: 1.6rem;
    margin-bottom: -6px !important;
}

.inquiry [type="file"] {
    margin: 10px 0 0 0;
}

.inquiry [type="text"],
.inquiry [type="email"],
.inquiry [type="tel"] {
    border: 1px #c1c1c1 solid;
    padding: 10px;
    max-width: 100% !important;
    background: #fafafa;
    font-size: 1.6rem
}

.inquiry .textsp {
    max-width: 100%
}

.inquiry .textfull {
    width: 100%
}

.inquiry .age {
    max-width: 6rem !important
}

.inquiry .content {
    width: 100%;
    border: 1px #c1c1c1 solid;
    padding: 8px;
    height: 150px
}

.inquiry select {
    border: 1px #c1c1c1 solid;
    cursor: pointer;
    line-height: 1.5;
    padding: 8px 10px
}

#your-year {
    width: 6em;
    margin-right: .3em;
    border: 1px #c1c1c1 solid;
    padding: 8px 10px;
    background: #fafafa;
    font-size: 1.6rem
}

#your-date,
#your-month {
    width: 4em;
    margin-left: .7em;
    margin-right: .3em;
    border: 1px #c1c1c1 solid;
    padding: 8px 10px;
    max-width: 100% !important;
    background: #fafafa;
    font-size: 1.6rem
}

#pref {
    width: 6em;
    margin-right: 8px
}

#city {
    width: calc(100% - 6.9em);
}


/*住所欄の幅*/
.inquiry #city {
    width: 100%;
}

.inquiry dl {
    margin-bottom: 8px
}

.inquiry dl dt {
    margin: 8px 0 5px 0
}

/* エラーメッセージの上部を消去 */
div.screen-reader-response {
    display: none;
}

.wpcf7-not-valid-tip {
    color: #ff0000 !important;
    width: 100%
}

/*送信成功*/
div.wpcf7-mail-sent-ok {
    background: #d5edda;
    color: #185626;
    border: 1px solid #c4e5cc;
    padding: 10px
}

/*送信NG*/
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    background: #f7d7da;
    color: #711d26;
    border: 1px solid #f4c6cb;
    padding: 10px
}

/*送信失敗*/
div.wpcf7-mail-sent-ng {
    background: #f7d7da;
    color: #711d26;
    border: 1px solid #f4c6cb;
    padding: 10px
}

/*スパムなどで送信ブロックされた場合*/
div.wpcf7-spam-blocked {
    background: #fff2cf;
    color: #846314;
    border: 1px solid #feedbd;
    padding: 10px
}

.form_finish {
    margin: 60px 0 0 0
}

.form_finish p {
    margin: 20px 0;
    line-height: 2;
    font-size: 1.7rem
}

.wpcf7 input::placeholder {
    color: #503b3b;
}

/*ステップバー*/
.stepBar {
    display: flex;
    max-width: 600px;
    position: relative;
    margin: 50px auto 0;
    text-align: center;
    padding: 0
}

.stepBar li {
    font-size: 1.6rem;
    list-style: none;
    position: relative;
    width: 33.333%;
}

.stepBar li:after {
    background: #bababa;
    content: "";
    width: calc(100% - 50px);
    height: 2px;
    position: absolute;
    left: calc(-50% + 25px);
    top: 36.5px;
}

.stepBar li:first-child:after {
    display: none;
}

.stepBar li span {
    background: #bababa;
    color: #ffffff;
    display: inline-block;
    height: 50px;
    margin-bottom: 5px;
    line-height: 50px;
    width: 50px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.stepBar .visited:after {
    background: #bababa;
}

.stepBar .visited span {
    background: #b20000;
}

/*エラーメッセージ非表示*/
.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-form.invalid .wpcf7-response-output {
    display: none;
}

.wpcf7-not-valid-tip {
    margin-top: 5px !important;
    font-size: 1.4rem !important
}


@media(max-width:767px) {

    #application-thanks h3 {
        margin-bottom: 35px
    }

    #application-thanks .thanks_com {
        margin-bottom: 35px
    }

    .iq_ttl {
        font-weight: 600;
        color: #D80235;
        font-size: 2rem;
    }

    .inquiry_wrap {
        padding-bottom: 25px
    }

    .inquiry th,
    .inquiry td {
        display: block !important;
        width: 100% !important;
        border-top: none !important;
        -webkit-box-sizing: border-box !important;
        box-sizing: border-box !important;
        text-align: left;
        font-size: 1.5rem;
    }

    .inquiry th {
        padding: 5px 0 0 0;
    }

    .inquiry td {
        padding: 0 0 8px;

    }

    .inquiry textarea[name="your-message"],
    .inquiry [type="text"],
    .inquiry [type="email"],
    .inquiry [type="tel"] {
        font-size: 1.5rem;
        width: 100%
    }

    /* CF7チェックボックスとラジオボタンを縦並びに */
    span.wpcf7-list-item {
        margin-left: 0
    }

    .submit_wrap li {
        margin: 0 7px;
    }

    td.form_policy {
        padding-top: 15px;
        padding-bottom: 0;
        text-align: center;
    }

    td.form_policy a {
        font-weight: normal;
        margin-left: 0;
        padding-left: 0
    }

    td.form_policy p.form_text {
        text-align: left
    }

    td.form_policy .policy {
        font-size: 1.6rem;
        line-height: 2.0
    }

    #formbtn {
        display: block;
        padding: 10px 20px;
        width: auto;
        font-size: 1.6rem;
        width: 100px;
    }

    .wpcf7-previous {
        padding: 10px 20px;
        width: 80px;
        font-size: 1.6rem;
        font-weight: bold;
        border-radius: 4px;
        border: 2px solid #3e2a2a;
        transition: all 0.3s ease;
    }

    .wpcf7-previous:hover {
        background: rgba(62, 42, 42, 0.72);
        border: 2px solid rgba(38, 53, 129, 0.3);
        color: #fff;
        opacity: 1;
    }

    /* CF7チェックボックスを縦並びに */
    span .wpcf7-checkbox .wpcf7-list-item {
        margin-top: 5px;
        display: block;
        margin-left: 0;
    }

    .form_finish {
        text-align: left
    }

    .form_finish h3 {
        margin: 40px 0 25px;
        font-size: 1.7rem
    }

    .form_finish p {
        margin: 15px 0;
        line-height: 1.6
    }

    /*ステップバー*/
    .stepBar {
        margin: 25px auto;
        text-align: center;
        padding: 0
    }

    .stepBar li {
        font-size: 1.2rem;
    }

    .stepBar li:after {
        width: calc(100% - 36px);
        left: calc(-50% + 18px);
        top: 18px;
    }

    .stepBar li span {
        height: 36px;
        margin-bottom: 5px;
        line-height: 36px;
        width: 36px;
    }

    #pref {
        width: 6em;
        display: block;
        margin-bottom: 10px
    }

    #city {
        width: 100%;
    }
}

/* ---------------------------------------------
*   採用情報
--------------------------------------------- */
.recruit-head {
    background: #8d8d8d;
    background: url(../img/recruit/mv.jpg) no-repeat center center / cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruit-head h1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: 1.0;
    color:#fff;
}

.recruit-head h1::after {
    content: url(../img/common/color-dot.svg)
}

.rec_mes_wrap .inner {
    display: flex
}

.rec_mes_wrap .inner .copy {
    font-size: 2.8rem;
    white-space: nowrap;
    width: 37%;
}

.rec_mes_wrap .inner .copy h3 {
    margin: 0
}

.rec_mes_wrap .inner .cont {
    width: 63%;
    padding-left: 20px
}

.rec_mes_wrap .inner .cont p {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 1.85
}

/* 採用情報ループスライダー */

.swiper-loop {
    overflow: hidden;
    margin: 50px 0 80px
}

.swiper-wrapper {
    transition-timing-function: linear;

}

.swiper-slide img {
    height: auto;
    width: 100%;
}


.rec_ttl {
    color: #81D3FF;
    font-size: 6.4rem;
    font-weight: 600;
    margin: 0 0 40px 0;
    text-align: center;
    line-height: 1.3
}

.rec_ttl span {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #070707
}

.rec_new_ttl {
    text-align: center;
    font-size: 2.6rem;
    margin: 60px 0 25px
}

.new_rec_list {
    list-style: none;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 0px);
    margin: 0;
    padding: 0;
}

.new_rec_list li {
    width: calc(100% / 3 - 30px);
    margin: 0 15px;
    margin-bottom: 35px
}


.new_rec_list a {
    text-decoration: none;
    color: #1F1F1C
}

.new_rec_list li .date_wrap {
    display: flex;
    align-items: center;
    margin-top: 30px
}

.new_rec_list li p {
    margin: 0;
    line-height: 0
}

.new_rec_list li .cat span {
    color: #fff;
    font-size: 1.2rem;
    padding: 4px
}

.new_rec_list li .job {
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 1em;
}

.new_rec_list li h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 25px 0 18px 0
}

.new_rec_list li .facility {
    color: #FF7B0A;
    font-weight: 600;
    font-size: 1.5rem;
}

@media screen and (max-width: 1080px) {

    .recruit-head {
        height: 400px;
    }

    .rec_mes_wrap .inner {
        display: block
    }

    .rec_mes_wrap .inner .copy {
        font-size: 2.8rem;
        width: 100%;
    }

    .rec_mes_wrap .inner .copy h3 {
        margin: 0 0 25px
    }

    .rec_mes_wrap .inner .cont {
        width: 100%;
        padding-left: 0
    }
}

@media screen and (max-width: 767px) {

    .recruit-head {
        height: 320px;
    }

    .recruit-head h1 {
        font-size: 2.5rem;
        line-height: 1.3
    }

    .rec_mes_wrap .inner {
        display: block
    }

    .rec_mes_wrap .inner .copy h3 {
        font-size: 2.2rem;
        margin-bottom: 15px
    }

    .rec_mes_wrap .inner .cont p {
        font-size: 1.6rem;
        line-height: 1.75
    }

    .swiper-loop {
        margin: 30px 0 40px
    }


    .rec_ttl {
        font-size: 3.4rem;
        margin: 0 0 20px 0;
        line-height: 1.4
    }

    .rec_ttl span {
        font-size: 1.4rem;
    }

    .rec_new_ttl {
        font-size: 1.9rem;
        margin: 45px 0 13px
    }

    .new_rec_list {
        display: block;
        width: 100%;
    }

    .new_rec_list li {
        width: 100%;
        margin: 0 0 30px;
    }

    .new_rec_list li .date_wrap {
        margin-top: 25px
    }

    .new_rec_list li .cat span {
        font-size: 1.2rem;
        padding: 3px 4px
    }

    .new_rec_list li .job {
        font-size: 1.4rem;
        margin-left: .7em;
    }

    .new_rec_list li h3 {
        font-size: 1.5rem;
        line-height: 1.5;
        margin: 20px 0 15px 0
    }

}

/* ---------------------------------------------
*   採用情報　福利厚生制度
--------------------------------------------- */

.rec_ttl_wrap {
    text-align: center;
    margin: 0 0 70px
}

#benefits .rec_ttl_wrap {
    margin: 0 0 35px
}


.rec_ttl_wrap h2 {
    display: inline-block;
    margin: 0;
    font-size: 3.3rem
}

.rec_ttl_wrap hr {
    border: none;
    height: 6px;
    background-color: #45A7E5;
    width: 200px;
    margin: 20px auto 0;
}

.dot-list {
    list-style: none;
    font-size: 1.6rem;
    padding-left: 0;
    margin: 0
}

.dot-list li {
    position: relative;
    padding-left: 1.4em;
    margin-bottom: .5em;
}

.dot-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 1.6rem;
}

.benefits_flex {
    display: flex;
    align-items: center;
    margin-bottom: 60px
}

.benefits_reverse {
    flex-flow: row-reverse
}

.benefits_flex .image {
    width: 45%
}

.benefits_flex .image img {
    border-radius: 15px
}

.benefits_flex .cont {
    width: 55%;
    padding-left: 45px
}

.benefits_reverse .cont {
    padding: 0 45px 0 0
}

.benefits_flex .cont h3 {
    margin: 0 0 20px;
    font-size: 3rem;
    color: #2d3167
}

.benefits_flex .cont p.disc {
    margin: 0;
    line-height: 1.8
}

.benefits_flex .cont ul {
    margin: 15px 0 0 .8em;
}

.benefits_flex .ceircle_btn {
    margin-top: 13px;
    margin-left: .5em;
    color: #206cfc;
    font-weight: 600
}

#benefits .link_flex {
    justify-content: center;
    margin-bottom: 20px
}

#benefits .link_flex .pdf_btn {
    background: #162E81;
    width: 280px;
    padding: 15px 15px 15px 23px;
    margin: 0 12px;
    font-size: 1.8rem
}

#benefits .pdf_btn::before {
    width: 18px;
    height: 18px;
    margin-right: 10px
}

@media screen and (max-width: 991px) {

    .rec_ttl_wrap {
        margin: 25px 0 35px
    }

    .rec_ttl_wrap h2 {
        font-size: 2.2rem
    }

    .rec_ttl_wrap hr {
        border: none;
        height: 5px;
        width: 130px;
        margin: 10px auto 0;
    }

    .dot-list {
        font-size: 1.6rem;
        padding: 0
    }

    .dot-list li {
        padding-left: 1.4em;
        margin-bottom: .3em;
    }

    .benefits_flex {
        flex-flow: column-reverse;
        margin-bottom: 30px;
        border-top: 1px solid #b1b1b1;
        padding-top: 25px
    }

    .benefits_reverse {
        flex-flow: column-reverse
    }

    .benefits_flex .image {
        width: 100%;
        margin-top: 15px
    }

    .benefits_flex .image img {
        border-radius: 10px
    }

    .benefits_flex .cont {
        width: 100%;
        padding-left: 0
    }

    .benefits_reverse .cont {
        padding: 0
    }

    .benefits_flex .cont h3 {
        margin: 0 0 15px;
        font-size: 2.3rem;
    }

    .benefits_flex .cont p.disc {
        line-height: 1.7
    }

    .benefits_flex .cont ul {
        margin: 15px 0 0 0;
    }

    .benefits_flex .ceircle_btn {
        margin-top: 13px;
        margin-left: 0;
        color: #206cfc;
        font-weight: 600
    }

    #benefits .link_flex {
        text-align: center;
        align-items: center;
        margin-bottom: 0px
    }

    #benefits .link_flex .pdf_btn {
        width: 260px;
        padding: 12px 15px 12px 23px;
        margin: 7px 8px;
        font-size: 1.6rem
    }

    #benefits .pdf_btn::before {
        width: 18px;
        height: 18px;
        margin-right: 10px
    }
}

/* ---------------------------------------------
*   採用情報　資格取得
--------------------------------------------- */

.career_path img {
    width: 40%;
    border-radius: 15px;
    float: right;
    margin: 0 0 15px 30px;
}

.career_path p {
    margin: 0;
    line-height: 2
}

.career_path .sign {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 10px
}

.internship {
    background: #F0F9FF;
    border-radius: 0 15px 15px 15px;
    margin-top: 55px
}

.internship h3 {
    margin: 0;
    background: #1380C9;
    display: inline-block;
    color: #fff;
    padding: 14px 18px;
    width: 300px;
    border-radius: 0 0 15px 0;
    font-size: 2.2rem;
    line-height: 1
}

.internship .inner {
    padding: 30px 45px 30px
}

.internship .inner p {
    margin: 0;
    line-height: 1.9
}

.internship .inner p.internship_span {
    font-weight: 600;
    margin-top: 15px;
    font-size: 1.7rem;
    line-height: 1.8
}

.training_flex {
    display: flex;
    width: calc(100% + 45px);
    list-style: none;
    padding-left: 0;
    margin: 50px 0 70px
}

.training_flex li.inside,
.training_flex li.outside {
    width: calc(100% / 2 - 45px);
    margin-right: 45px;
    border-radius: 15px;
    background: #F1F8E7
}

.training_flex h3 {
    background: #FFC239;
    margin: 0;
    border-radius: 15px 15px 0 0;
    padding: 10px 15px;
    text-align: center;
    font-size: 2.2rem
}

.training_flex .outside h3 {
    background: #FF9C39
}

.training_flex .dot-list {
    margin: 35px 40px 30px 43px
}

.training_flex .dot-list li {
    margin: .35em 0
}

.blue_line_ttl {
    background: #2393D9;
    color: #fff;
    font-size: 1.8rem;
    padding: 5px 10px;
    margin: 40px 0 30px
}

.support_flex {
    display: flex
}

.support_flex .image {
    width: 30%
}

.support_flex .image img {
    border-radius: 10px
}

.support_flex .cont {
    width: 70%;
    padding-left: 50px
}

.support_flex .cont p {
    line-height: 1.9;
}

@media screen and (max-width: 767px) {

    .career_path img {
        width: 100%;
        float: none;
        border-radius: 10px;
        margin: 0 0 30px 0;
    }

    .career_path p {
        line-height: 1.8
    }

    .internship {
        border-radius: 0 10px 10px 10px;
        margin-top: 40px
    }

    .internship h3 {
        padding: 12px 25px 12px 12px;
        width: auto;
        border-radius: 0 0 10px 0;
        font-size: 1.8rem;
    }

    .internship .inner {
        padding: 20px 20px 20px
    }

    .internship .inner p {
        margin: 0;
        line-height: 1.8
    }

    .internship .inner p.internship_span {
        margin-top: 15px;
        font-size: 1.6rem;
    }

    .training_flex {
        display: block;
        width: 100%;
        margin: 40px 0 50px
    }

    .training_flex li.inside,
    .training_flex li.outside {
        width: 100%;
        margin-right: 0;
        border-radius: 10px;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }

    .training_flex h3 {
        border-radius: 10px 10px 0 0;
        padding: 8px 15px;
        font-size: 1.8rem
    }

    .training_flex .dot-list {
        margin: 20px 15px 20px 20px
    }

    .training_flex .dot-list li {
        margin: .25em 0
    }

    .blue_line_ttl {
        font-size: 1.7rem;
        padding: 5px 10px;
        margin: 30px 0 25px
    }

    .support_flex {
        display: flex;
        flex-flow: column-reverse
    }

    .support_flex .image {
        width: 100%;
        margin-top: 15px
    }

    .support_flex .cont {
        width: 100%;
        padding-left: 0
    }

    .support_flex .cont p {
        line-height: 1.7;
        margin: 0
    }

    .support_flex ul {
        margin-top: 15px
    }

}

/* ---------------------------------------------
*   採用情報　外国人採用
--------------------------------------------- */

/* YOUTUBEラッパー（16:9・レスポンシブ） */
.yt-lazy {
    position: relative;
    width: 100%;
    max-width: 860px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    /*box-shadow:0 6px 20px rgba(0,0,0,.15);*/
    transition: transform .15s ease;
    margin: 0 auto
}

.yt-lazy:hover {
    transform: translateY(-1px);
}

.yt-lazy:focus {
    outline: 2px solid #6aa2ff;
    outline-offset: 2px;
}

.yt-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yt-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 72px;
    height: 72px;
    max-width: 24%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
}

.yt-lazy:hover .yt-play {
    transform: scale(1.04);
    transition: transform .15s ease;
}

.yt-lazy.is-active {
    cursor: default;
}

.yt-lazy.is-active .yt-play {
    display: none;
}

.video_ttl_wrap {
    text-align: center;
    margin: 25px 0
}

.video_ttl_wrap h3 {
    margin: 0 0 5px;
    font-size: 1.8rem;
}

.video_ttl_wrap p {
    margin: 0;
}

.video_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* 中央寄せ */
    gap: 25px;
    /* li同士の間隔 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_list li {
    position: relative;
    font-size: 1.6rem;
    padding-left: 38px;
    /* アイコン分の余白 */
}

.video_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background: url("../img/recruit/youtube.svg") no-repeat center;
    background-size: contain;
}

.video_list a {
    text-decoration: none
}

.gaikoku_flow {
    margin-top: 50px;
}

.gaikoku_flow img.rec_fw {
    margin: 60px 0 0 0
}

@media screen and (max-width: 767px) {

    .video_ttl_wrap {
        text-align: center;
        margin: 15px 0
    }

    .video_ttl_wrap h3 {
        margin: 0 0 5px;
        font-size: 1.6rem;
    }

    .video_ttl_wrap p {
        font-size: 1.4rem;
        line-height: 1.5
    }

    .video_list {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gaikoku_flow {
        margin-top: 30px;
    }

    .gaikoku_flow img.rec_fw {
        margin: 35px 0 0 0
    }


}

/* ---------------------------------------------
*   採用情報　給与と退職金
--------------------------------------------- */

.kyuyo_tbl {
    border-collapse: collapse;
    width: 100%
}

.kyuyo_tbl th,
.kyuyo_tbl td {
    border: 1px solid gray;
    padding: 10px 15px;
    font-size: 1.5rem
}

.kyuyo_tbl tbody th {
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 10px;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

.kyuyo_tbl thead th {
    background: #b7e3ff
}

.kyuyo_tbl tbody th {
    width: 45px;
    background: #d3eeff
}

.kyuyo_tbl td {
    text-align: right
}

.kyuyo_tbl tbody tr:nth-child(odd) td {
    background-color: #f9f9f9;
}

.kyuyo_tbl td.academic {
    text-align: center;
    background-color: #ebf7ff !important
}

ul.kyuyo_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: column
}

ul.kyuyo_list li {
    position: relative;
    padding-left: 33px;
    margin-bottom: 20px;
    font-weight: 600
}

ul.kyuyo_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 27px;
    height: 27px;
    background: url("../img/common/icon-pdf-real.svg") no-repeat center / contain;
    transform: translateY(-50%);
}

ul.kyuyo_list li a {
    text-decoration: none;
    color: #070707
}

ul.kyuyo_list li a:hover {
    color: #811549
}

@media screen and (max-width: 767px) {

    .table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-wrap > table {
        border-collapse: collapse;
        min-width: 880px;
        width: max-content;
    }

}

/* ---------------------------------------------
*   施設を探す
--------------------------------------------- */

/* ----------------------------
*   施設を探すトップ
---------------------------- */

#mitachi {
    scroll-margin-top: 180px;
    /* ヘッダーの高さに合わせて調整 */
}

#map {
    width: 100%;
    height: 560px !important;
    /* デフォルト（PC） */
}

.instagram_feed {
    text-align: center;
    margin: 55px 0 25px
}

.find_map_list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    width: 100%;
    margin: 25px 0 0 0
}

.find_map_list a {
    text-decoration: none;
    font-weight: 600;
    color: #2431D0
}

.find_map_list li {
    width: calc(100% / 5);
    margin-bottom: 10px
}

.find_map_list li img {
    width: 1.8em;
    height: 1.8em;
    margin-right: 0.4em;
}

/*.find_map_list li::before {
    content: "";
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    background-image: url(../img/facility/find/icon-star.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 0.5em;
}*/

.main_fac_wrap {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fafafa;
    border-radius: 0 15px 0 15px
}

.main_fac_wrap .img {
    width: 39%;
}

.main_fac_wrap .img img {
    border-radius: 15px 0 0 15px
}

.main_fac_wrap .info {
    width: 61%;
    padding: 0 50px;
}

.main_fac_wrap .info h4 {
    margin: 0 0 20px 0;
    color: #349F1A;
    font-size: 1.8rem;
}

.main_fac_wrap .info h4::before {
    content: "●";
    margin-right: 5px
}

.servise_tbl {
    border-collapse: collapse;
    border-top: 1px dashed #B2B2B2
}

.servise_tbl th,
.servise_tbl td {
    padding: 15px 0;
    border-bottom: 1px dashed #B2B2B2
}

.servise_tbl th {
    width: 8em;
    text-align: left
}

.servise_list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    margin: 0;
    line-height: 1.7
}

.servise_list li:not(:last-child)::after {
    content: "、";
}

.servise_list a {
    text-decoration: none;
    font-weight: 600;
    color: #194EFF
}

.dept-list {
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 20px);
    list-style: none;
    padding: 0;
    margin: 45px 0 0 0
}

.dept-list li {
    width: calc(100% / 4 - 20px);
    margin-right: 20px;
    margin-bottom: 20px
}

.dept-list li a {
    text-decoration: none;
    color: #070707
}

.bg_nyukyo {
    background: #C3080A
}

.bg_tsusyo {
    background: #0F53AF
}

.bg_tanki {
    background: #FD8800
}

.bg_houmon {
    background: #0C6C22
}

.bg_other {
    background: #88450B
}

.dept-list li .dept_head {
    color: #fff;
    text-align: center;
    font-size: 1.7rem;
    padding: 6px 0 5px;
    border-radius: 9px 9px 0 0;
    margin: 0
}

.dept-list li .inner {
    border: 1px solid #BCBCBC;
    border-top: none;
    padding: 12px 15px 15px 15px;
    position: relative;
    border-radius: 0 0 0 15px
}

.dept-list li h5 {
    margin: 0 0 6px;
    font-size: 1.6rem;
    line-height: 1.5
}

.dept-list li .tag {
    display: inline-block;
    font-size: 1.3rem;
    color: #fff;
    padding: 3px 7px;
    margin: 0
}

.dept-list li .link_icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 991px) {

    .find_map_list li {
        width: calc(100% / 4);
        font-size: 1.5rem
    }

    .find_map_list li img {
        width: 1.6em;
        height: 1.6em;
        margin-right: 0.4em;
    }

    /* .find_map_list li::before {
        width: 1.6em;
        height: 1.6em;
        margin-right: 0.4em;
    }*/

    .main_fac_wrap .img {
        width: 45%;
    }

    .main_fac_wrap .img img {
        border-radius: 15px 0 0 15px
    }

    .main_fac_wrap .info {
        width: 55%;
        padding: 0 15px 0 25px;
    }

    .main_fac_wrap .info h4 {
        margin: 0 0 10px 0;
        font-size: 1.7rem;
    }

    .servise_tbl {
        border: none
    }

    .servise_tbl th,
    .servise_tbl td {
        padding: 10px 0;
        font-size: 1.5rem;
        border: none;
        border-top: 1px dashed #B2B2B2;
        line-height: 1.5
    }

    .servise_tbl th {
        width: 7em;
    }

    .servise_list {
        line-height: 1.5
    }

    .dept-list {
        margin: 35px 0 0 0
    }

    .dept-list li {
        width: calc(100% / 3 - 20px);
    }
}

@media screen and (max-width: 767px) {

    .instagram_feed {
        text-align: center;
        margin: 20px 0 5px;

    }

    .instagram_feed img {
        max-width: 200px
    }

    #map {
        height: 30vh;
    }

    .find_map_list {
        margin: 20px 0 0 0
    }

    .find_map_list li {
        width: calc(100% / 2);
        margin-bottom: 8px;
        font-size: 1.5rem
    }

    .find_map_list li img {
        width: 1.5em;
        height: 1.5em;
        margin-right: 0.3em;
    }

    /*.find_map_list li::before {
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.3em;
}*/

    .main_fac_wrap {
        display: block;
        border-radius: 10px
    }

    .main_fac_wrap .img {
        width: 100%;
    }

    .main_fac_wrap .img img {
        border-radius: 10px 10px 0 0
    }

    .main_fac_wrap .info {
        width: 100%;
        padding: 20px 20px 10px 20px;
    }

    .main_fac_wrap .info h4 {
        margin: 0 0 10px 0;
        font-size: 1.8rem;
    }

    .servise_tbl {
        width: 100%;
        border-top: 1px dashed #B2B2B2
    }

    .servise_tbl th,
    .servise_tbl td {
        padding: 15px 0 13px;
        display: block;
        width: 100%;
    }

    .servise_tbl th {
        padding-bottom: 0
    }

    .servise_tbl td {
        border: none;
        padding-top: 3px
    }

    .servise_list {
        line-height: 1.5;
    }

    .dept-list {
        display: flex;
        flex-flow: wrap;
        width: calc(100% + 15px);
        list-style: none;
        padding: 0;
        margin: 25px 0 0 0
    }

    .dept-list li {
        width: calc(100% / 2 - 15px);
        margin-right: 15px;
        margin-bottom: 15px
    }

    .dept-list li .dept_head {
        font-size: 1.4rem;
        padding: 5px 0 4px;
    }

    .dept-list li .inner {
        padding: 12px 10px 12px 10px;
        position: relative;
        border-radius: 0 0 10px 10px
    }

    .dept-list li h5 {
        margin: 0 0 6px;
        font-size: 1.5rem;
        line-height: 1.4
    }

    .dept-list li .tag {
        font-size: 1.2rem;
        padding: 1.5px 5px;
    }

    .dept-list li .link_icon {
        display: none
    }

}

/* ----------------------------
*   施設を探す詳細
---------------------------- */

/*共通項目*/

#facility-cont .container {
    max-width: 1065px
}

#facility-cont p {
    margin: 0 0 1em;
    line-height: 1.9
}

.fac-contact {
    background: url(../img/facility/foot-bg.jpg)no-repeat center center /cover;
    ;
    margin-bottom: -58px;
    padding-bottom: 85px;
    padding: 100px 0 155px;
    text-align: center
}

.fac-contact .inner {
    background: #fff;
    display: inline-block;
    padding: 42px 50px 32px
}

.fac-contact .fac-ttl {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 0 12px;
}

.fac-contact .fac-ttl span {
    color: #FF7510
}

.fac-contact .fac-tel {
    font-size: 5.6rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.fac-contact .fac-tel img {
    margin-bottom: 6px;
    width: 60px;
    height: auto;
    margin-right: 6px
}

.fac-contact .fac-tel a {
    text-decoration: none;
    color: #070707
}

.fac-contact .fac-tel a:hover {
    color: #2589d0
}

.ttL_round {
    font-size: 3.2rem;
    margin: 50px 0;
    color: #390C0C;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    line-height: 1
}

.ttL_round::before {
    content: "";
    display: inline-block;
    width: 69px;
    height: 24.66px;
    background-image: url('../img/facility/icon-harf.svg');
    background-position: center;
    background-size: contain;
    margin-bottom: 20px
}

.ttl_3rings_side {
    font-size: 1.9rem;
    margin: 50px 0 35px;
    color: #390C0C;
    display: flex;
    flex-flow: wrap;
    line-height: 1;
    padding-bottom: 10px;
    border-bottom: 4px dotted #8E6A6A
}

.ttl_3rings_side::before {
    content: "";
    display: inline-block;
    width: 47px;
    height: 13px;
    background-image: url('../img/facility/icon-3rings_side.svg');
    background-position: center;
    background-size: contain;
    margin-top: 2px;
    margin-right: 6px
}

.ttl_3rings_top {
    font-size: 3.7rem;
    margin: 0 0 40px;
    text-align: center;
    color: #390C0C;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5
}

.ttl_3rings_top span {
    font-size: 1.9rem;
    margin-bottom: 6px;
}

.ttl_3rings_top::before {
    content: "";
    display: inline-block;
    width: 69px;
    height: 18px;
    background-image: url('../img/facility/icon-3rings_top.svg');
    background-position: center;
    background-size: contain;
    margin-bottom: 13px
}

.ttl-h4-blue {
    border-left: 8px solid #811549;
    padding-left: 10px;
    margin: 30px 0 25px;
    font-size: 1.7rem;
}

/*施設スライダー*/
.fac-slide {
    max-width: 760px;
    margin: 0 auto 65px
}

/* メインスライダー：3:2比率 + 角丸 */
.main-slider .swiper-slide {
    position: relative;
    padding-top: 66.6667%;
    /* 3:2比率 */
    border-radius: 15px;
    overflow: hidden;
}

.main-slider .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* サムネイルスライダー */
.thumb-slider {
    margin-top: 8px;
    box-sizing: border-box;
}

.thumb-slider .swiper-slide {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    cursor: pointer;
    border-radius: 6px;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/**/

.fac-tokutyo {
    padding-bottom: 70px
}

.riyou-list {
    margin: 0;
    font-weight: 600;
    color: #390C0C;
    font-size: 1.8rem;
    padding: 0 0 0 1em
}

.riyou-list li {
    line-height: 1.8;
    margin: 0 0 3px 0
}

#facility-cont .att {
    font-size: 1.5rem;
    margin: 7px 0 0 0
}

.fac-overview {
    padding: 90px 0 75px;
    background-image: radial-gradient(circle, #ede7d3 1.5px, transparent 1.5px);
    background-position: 0 0;
    background-size: 11px 11px;
}

.tbl_overview {
    background: #fff;
    border-collapse: collapse;
    border: 2px solid #5c3232;
    margin-bottom: 45px;
    width: 100%
}

.tbl_overview th,
.tbl_overview td {
    border: 1px solid #390C0C;
    padding: 20px 25px;
    text-align: left
}

.tbl_overview th {
    background: #FDFFF2;
    white-space: nowrap;
}

.pdf_btn {
    background: #811549;
    width: auto;
    padding: 10px 15px;
    white-space: nowrap;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.pdf_btn:hover {
    background: #171da7
}

.pdf_btn::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('../img/common/icon-pdf.svg');
    background-position: center;
    background-size: contain;
    margin-right: 5px
}

.excel_btn {
    background: #1A6726;
    padding: 10px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.excel_btn:hover {
    background: #171da7
}

.excel_btn::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('../img/common/icon-excel.svg');
    background-position: center;
    background-size: contain;
    margin-right: 5px
}


.tbl_overview td.fac-access h4 {
    margin: 0 0 5px 0
}

.tbl_overview td.fac-access p {
    margin: 0 0 0 .5em !important;
    line-height: 1.5 !important
}

.link_flex {
    display: flex;
    flex-flow: wrap;
}

.link_flex .btn {
    margin: 0 12px 0 0
}

.fac-layout {
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd6ce;
    text-align: center
}

.fac-layout img {
    width: 100%;
    height: auto
}

.fac-gallery {
    display: flex;
    flex-flow: wrap;
    padding: 0;
    list-style: none;
    width: calc(100% + 20px);
    margin: 0
}

.fac-gallery li {
    width: calc(100% / 5 - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center
}

.fac-gallery li img {
    border-radius: 12px
}

.fac-gallery li p {
    font-size: 1.4rem;
    margin: 3px 0 0 0 !important
}

.fac-blog {
    padding: 35px 0 75px
}

.fac-blog-list {
    display: flex;
    flex-flow: wrap;
    padding: 0;
    list-style: none;
    width: calc(100% + 30px);
    margin: 0
}

.fac-blog-list li {
    width: calc(100% / 3 - 30px);
    margin-right: 30px;
}

.fac-blog-list a {
    text-decoration: none;
    color: #212121;
    cursor: pointer !important;
    transition: opacity 0.4s ease;
}

.fac-blog-list a:hover {
    opacity: 0.5;
}

.fac-blog-list h3 {
    margin: 0;
    font-size: 1.9rem !important;
    margin: 6px 0
}

.center-wrapper {
    text-align: center;
}

.fac-blog-link {
    background: #811549;
    color: #fff;
    width: 320px;
    margin: 25px auto;
    text-align: center;
    margin: 35px auto 0;
}

.fac-blog-list p.date {
    margin: 0 !important;
    font-size: 1.5rem;
}

.fac-blog-list p.com {
    margin: 0 !important;
    font-size: 1.5rem;
    line-height: 1.6 !important;
}

.wh_base {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd6ce;
}

.fac-list-tokucho {
    margin: 0;
    padding: 0 0 0 1em
}

.fac-list-tokucho li {
    margin: 8px 0;
    line-height: 1.6
}

.fac-list-tokucho li:first-of-type {
    margin-top: 0
}

.fac-list-tokucho li:last-of-type {
    margin-bottom: 0
}

.daily-schedule {
    /*width: 100%;*/
    min-width: 600px;
    background: #fff;
    border-collapse: collapse;
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.daily-schedule th,
.daily-schedule td {
    border: 1px solid #939393;
    padding: 0.6em 1em;
    text-align: left;
}

.daily-schedule th {
    width: 100px;
    background-color: #fff8da;
    font-weight: bold;
    color: #333;
    white-space: nowrap
}

.daily-schedule tr:nth-child(even) {
    background-color: #fafafa;
}

.fac-gallery li.last-none-pc {
    /*スマホ時のみ表示*/
    display: none
}

.fac-service {
    padding: 90px 0 75px;
}

.tbl_service {
    width: 100%;
    border-collapse: collapse;
}

.tbl_service thead th {
    background-color: #d9e9ff;
    border: 1px solid #390C0C;
}

.tbl_service tbody th,
.tbl_service tbody td {
    padding: 12px 15px;
    border: 1px solid #390C0C;
}

.tbl_service tbody th {
    background-color: #f8f8f8;
    text-align: left;
    width: 25%;
    white-space: nowrap
}

.tbl_service td {
    border: 1px solid #390C0C;
    vertical-align: top;
}

.normal_list_dot {
    padding-left: 1.5em
}

.normal_list_dot li {
    margin-bottom: 8px;
    line-height: 1.6
}

.ol_norm_list {
    padding-left: 1.5em
}

.ol_norm_list li {
    margin-bottom: 8px;
    line-height: 1.6
}

.border_bold {
    font-size: 2.0rem;
    font-weight: 600;
    border-bottom: 5px solid #ffcfe2;
    display: inline-block
}

.h4-norm {
    margin: 30px 0 20px;
    font-size: 1.8rem
}

.h4-norm span {
    font-weight: 400;
    font-size: 1.6rem;
    color: #398432
}

/*アコーディオン*/

.qa-1 {
    width: 100％;
    margin-bottom: 12px;
    border: 1px solid #a8a8a8;
    border-radius: 5px;
    background: rgba(230, 244, 255, 0.46)
}

.qa-1 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-1 summary::before,
.qa-1 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-1 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-1 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-1[open] summary::after {
    transform: rotate(225deg);
}

.qa-1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 0;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-1[open] p {
    transform: none;
    opacity: 1;
}

.qa-1 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

@media screen and (max-width: 767px) {

    #facility-cont p {
        margin: 0 0 1em;
        line-height: 1.8
    }

    .fac-contact {
        margin-bottom: -35px;
        padding-bottom: 85px;
        padding: 40px 0 70px;
        text-align: center
    }

    .fac-contact .inner {
        padding: 22px 20px 15px
    }

    .fac-contact .fac-ttl {
        font-size: 1.7rem;
        margin: 0 0 8px;
    }

    .fac-contact .fac-ttl span {
        display: block;
        font-size: 1.9rem
    }

    .fac-contact .fac-tel {
        font-size: 3.2rem;
    }

    .fac-contact .fac-tel img {
        margin-bottom: 6px;
        width: 34px;
        margin-right: 3px
    }

    .ttL_round {
        font-size: 2.4rem;
        margin: 15px 0 25px;
    }

    .ttL_round::before {
        width: 59px;
        height: 21.09px;
        margin-bottom: 15px
    }

    .ttl_3rings_side {
        font-size: 1.8rem;
        margin: 35px 0 25px;
        padding-bottom: 10px;
        border-bottom: 3px dotted #8E6A6A
    }

    .ttl_3rings_side::before {
        width: 38px;
        height: calc(38px * (13 / 47));
        margin-top: 4px;
        margin-right: 5px
    }

    .ttl_3rings_top {
        font-size: 2.6rem;
        margin: 0 0 25px;
    }

    .ttl_3rings_top span {
        font-size: 1.5rem;
        margin-bottom: 0
    }

    .ttl_3rings_top::before {
        width: 60px;
        height: calc(60px * (18 / 69));
        margin-bottom: 13px
    }

    /**/

    .fac-tokutyo {
        padding-bottom: 35px
    }

    .riyou-list {
        margin: 0 0 5px;
        font-size: 1.6rem;
    }

    .riyou-list li {
        line-height: 1.6;
        margin: 0
    }

    #facility-cont .att {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .fac-overview {
        padding: 45px 0 35px;
        background-image: radial-gradient(circle, #ede7d3 1.3px, transparent 1.3px);
        background-position: 0 0;
        background-size: 8px 8px;
    }

    /*施設スライダー*/
    .fac-slide {
        margin: 0 auto 35px
    }

    .tbl_overview {
        border: 1px solid #5c3232;
        border-bottom: none;
        margin-bottom: 35px
    }

    .tbl_overview th,
    .tbl_overview td {
        border: none;
        border-bottom: 1px solid #390C0C;
        padding: 10px 10px;
        display: block;
        width: 100%
    }

    .tbl_overview td {
        padding: 13px 10px;
    }

    .pdf_btn,
    .excel_btn {
        padding: 10px 15px;
        font-size: 1.5rem;
    }

    .pdf_btn:last-of-type {
        margin-top: 8px
    }

    .link_flex {
        display: block;
    }

    .link_flex .btn {
        margin: 5px 5px 5px 0
    }

    .fac-layout {
        padding: 15px;
    }

    .fac-gallery {
        width: calc(100% + 10px);
    }

    .fac-gallery li {
        width: calc(100% / 2 - 10px);
        margin-right: 10px;
        margin-bottom: 10px
    }

    .fac-gallery li.last-none-pc {
        /*スマホ時のみ表示*/
        display: block
    }

    .fac-gallery li.last-none-sp {
        /*スマホ時非表示*/
        display: none
    }

    .fac-gallery li img {
        border-radius: 10px
    }

    .fac-gallery li p {
        font-size: 1.3rem;
    }

    .fac-blog {
        padding: 35px 0 35px
    }

    .fac-blog-list {
        width: 100%;
    }

    .fac-blog-list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px
    }

    .fac-blog-list h3 {
        margin: 0;
        font-size: 1.8rem !important;
        margin: 0
    }

    .fac-blog-link {
        width: 240px;
        margin: 25px auto 0;
        font-size: 1.6rem
    }

    .fac-blog-list p.date {
        margin: -10px 0 0 0 !important;
        font-size: 1.5rem;
    }

    .fac-blog-list p.com {
        font-size: 1.4rem;
        line-height: 1.5 !important;
    }

    .wh_base {
        padding: 20px 15px;
    }

    .fac-list-tokucho li {
        margin: 8px 0;
        line-height: 1.5;
        font-size: 1.5rem
    }

    .fac-service {
        padding: 45px 0 35px;
    }


    .daily-schedule {
        width: 100%;
        min-width: auto;
    }

    .daily-schedule th,
    .daily-schedule td {
        padding: 0.5em 0.8em;
        font-size: 1.5rem
    }

    .daily-schedule th {
        width: auto;
    }

    .daily-schedule tr:nth-child(even) {
        background-color: #fafafa;
    }

    .tbl_service {
        border-bottom: 1px solid #390C0C;
    }

    .tbl_service thead th {
        border-bottom: none;
        padding: 6px 10px;
    }

    .tbl_service tbody th,
    .tbl_service tbody td {
        padding: 6px 10px;
        display: block;
        width: 100%;
        border-bottom: none;
        font-size: 1.5rem;
        line-height: 1.5
    }

    .tbl_service td {
        padding: 10px 10px !important;

    }

    .border_bold {
        font-size: 1.7rem;
        line-height: 1.5 !important;
        border-bottom: none;

    }
}

/* ---------------------------------------------
*   ご挨拶
--------------------------------------------- */

.greeting_flex {
    display: flex;
    align-items: center
}

.greeting_flex .img {
    width: 36%
}

.greeting_flex .img img {
    border-radius: 10px
}

.greeting_flex .cont {
    width: 64%;
    padding-left: 55px
}

.h2_sidebar_ttl {
    position: relative;
    padding-left: 36px;
    /* アイコン分の余白 */
    font-size: 3.1rem;
    margin: 0 0 25px
}

.h2_sidebar_ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 5px;
    background-image: url('../img/about/icon_parplebar.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.greeting_flex .cont p {
    line-height: 2;
    font-size: 1.8rem;
    margin: 0
}

.sign {
    text-align: right;
    margin-top: 25px;
}

.sign .name {
    margin-top: 10px !important;
    font-size: 2rem;
    font-weight: 600
}

.sign .name img {
    margin-left: 13px
}

.book_wrap {
    border-top: 3px solid #070707;
    margin-top: 60px;
    padding-top: 60px
}

.book_wrap h2 {
    text-align: center;
    margin: 0;
    font-size: 3.1rem
}

.book_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: wrap;
    widows: calc(100% + 30px)
}

.book_list li {
    width: calc(100% / 5 - 30px);
    margin-right: 30px;
    margin-top: 30px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600
}

.book_list li img {
    margin-bottom: 8px;
    border: 1px solid #d0d0d0
}

@media screen and (max-width: 991px) {
    .greeting_flex {
        display: block;
        align-items: center
    }

    .greeting_flex .img {
        width: 100%;
        text-align: center;
    }

    .greeting_flex .img img {
        max-width: 600px;
        width: 100%;
        height: auto;
        margin-bottom: 30px
    }

    .greeting_flex .cont {
        width: 100%;
        padding-left: 0
    }
}

@media screen and (max-width: 767px) {


    .h2_sidebar_ttl {
        position: relative;
        padding-left: 30px;
        /* アイコン分の余白 */
        font-size: 2rem;
        margin: 0 0 20px
    }

    .h2_sidebar_ttl::before {
        width: 20px;
        height: 5px;
    }

    .greeting_flex .cont p {
        line-height: 1.8;
        font-size: 1.6rem;
    }

    .sign {
        text-align: right;
        margin-top: 15px;
    }

    .sign .name {
        margin-top: 6px !important;
        font-size: 2rem;
    }

    .sign .name img {
        margin-left: 10px;
        height: 30px;
        margin-bottom: 5px
    }

    .book_wrap {
        border-top: 2px solid #070707;
        margin-top: 40px;
        padding-top: 30px
    }

    .book_wrap h2 {
        font-size: 2.0rem
    }

    .book_list {
        widows: calc(100% + 15px)
    }

    .book_list li {
        width: calc(100% / 2 - 15px);
        margin-right: 15px;
        margin-top: 15px;
        font-size: 1.3rem;
    }

    .book_list li img {
        margin-bottom: 6px;
    }

}

/* ---------------------------------------------
*   あゆみ
--------------------------------------------- */

.h2_bottom_dec_ttl {
    text-align: center;
    margin-bottom: 45px
}

.h2_bottom_dec_ttl h2 {
    margin: 0;
    font-size: 3rem
}

.h2_bottom_dec_ttl p {
    font-size: 1.5rem;
    margin: 2px 0 6px 0
}

.ayumi_tbl {
    width: 100%;
    border-collapse: collapse;
    margin-top: 65px
}

.ayumi_tbl th,
.ayumi_tbl td {
    border: 1px solid #ccc;
    /* 線の色をグレー */
    padding: 15px;
    vertical-align: top;
    text-align: left
}

.ayumi_tbl th {
    white-space: nowrap
}

.ayumi_tbl tr:nth-child(even) {
    background-color: #f9f9f9;
    /* 偶数行の背景グレー */
}


.ayumi_tbl tr:nth-child(even) {
    background-color: #f0f0f0;
}

.ayumi_tbl thead th {
    text-align: center;
    background: #811549;
    color: #fff;
    padding: 7px;
    font-size: 1.8rem
}

@media screen and (max-width: 767px) {


    .h2_bottom_dec_ttl {
        margin-bottom: 30px
    }

    .h2_bottom_dec_ttl h2 {
        margin: 0;
        font-size: 2.4rem
    }

    .h2_bottom_dec_ttl p {
        font-size: 1.4rem;
        margin: 0 0 3px 0
    }

    .h2_bottom_dec_ttl img {
        height: 4.0px;
        width: auto
    }

    .ayumi_tbl {
        margin-top: 35px;
        border: 1px solid #b9b9b9;
    }

    .ayumi_tbl tr:nth-child(even) {
        background-color: transparent;
    }

    .ayumi_tbl th,
    .ayumi_tbl td {
        display: block;
        padding: 8px 8px;
        border: none;
        font-size: 1.5rem;
    }

    .ayumi_tbl th {
        padding: 4px 8px;
        font-size: 1.4rem;
        background: #f0f0f0;
        border-top: 1px solid #b9b9b9;
    }

    .ayumi_tbl th {
        white-space: nowrap
    }

    .ayumi_tbl thead th {
        text-align: center;
        background: #811549;
        color: #fff;
        padding: 7px;
        font-size: 1.8rem
    }
}

/* ---------------------------------------------
*   会社概要
--------------------------------------------- */

.rinen_flex {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0
}

.rinen_flex li {
    margin: 0 15px;
    width: 100%;
    height: auto;
    max-width: 360px;
}

.dot_ttl {
    color: #070707;
    margin: 65px 0 40px;
    padding-bottom: 6px;
    font-size: 2.3rem;
    border-bottom: 3px dotted #8E6A6A
}

.abour_tbl {
    border-collapse: collapse;
    width: 100%;
}

.abour_tbl th,
.abour_tbl td {
    border: 1px solid #C1BCBC;
    padding: 20px;
    text-align: left
}

.abour_tbl th {
    background: #FDFBF8;
    width: 25%
}

.abour_pdf_list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 40px 0;
    width: calc(100% + 20px)
}

.abour_pdf_list li {
    width: calc(100% / 3 - 20px);
    margin-right: 20px
}

.abour_pdf_list.col2 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 40px 0;
    width: calc(100% + 20px)
}

.abour_pdf_list.col2 li {
    width: calc(100% / 2 - 20px);
    margin-right: 20px
}

.dl-button {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    background-color: #4B2F0A;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    position: relative;
    text-align: left;
    box-sizing: border-box;
}

.dl-button::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../img/common/icon_dl.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.precepts_wrap {
    background: #ECF4ED;
    padding: 55px 55px 35px 55px;
    border-radius: 10px
}

.precepts_list {
    counter-reset: jp-counter;
    list-style: none;
    padding-left: 0;
    margin: 0
}

.precepts_list li {
    position: relative;
    padding-left: 2.5em;
    margin-bottom: 1em;
    font-size: 1.8rem;
    font-weight: 600
}

.precepts_list li::before {
    counter-increment: jp-counter;
    content: counter(jp-counter, cjk-ideographic) "．";
    position: absolute;
    left: 0;
    top: 0;
}

@media screen and (max-width: 767px) {

    .rinen_flex {
        flex-flow: column;
        align-items: center;
        margin: -20px 0 0 0
    }

    .rinen_flex li {
        margin: 20px 0 0;
        max-width: 360px;
    }

    .dot_ttl {
        margin: 45px 0 30px;
        padding-bottom: 6px;
        font-size: 1.9rem;
        border-bottom: 3px dotted #8E6A6A
    }


    .abour_tbl th,
    .abour_tbl td {
        padding: 10px 10px;
        font-size: 1.5rem;
        line-height: 1.4
    }

    .abour_tbl th {
        white-space: nowrap;
        width: 5em
    }

    .abour_pdf_list {
        flex-flow: column;
        margin: 30px 0;
        width: 100%;
    }

    .abour_pdf_list li {
        width: auto;
        margin-right: 0;
        margin-bottom: 10px
    }

    .dl-button {
        padding: 10px 20px;
    }

    .dl-button::after {

        right: 15px;
        width: 18px;
        height: 18px;
    }

    .precepts_wrap {
        padding: 25px 23px 10px 20px;
        border-radius: 8px
    }

    .precepts_list li {
        position: relative;
        padding-left: 1.7em;
        margin-bottom: .8em;
        font-size: 1.6rem;
        font-weight: 400
    }

    .precepts_list li::before {
        counter-increment: jp-counter;
        content: counter(jp-counter, cjk-ideographic) "．";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 600
    }
}

/* ---------------------------------------------
*   地域貢献
--------------------------------------------- */

.contribution_wrap p {
    line-height: 1.9;
    margin: 0
}

.contribution_wrap h3 {
    margin: 40px 0 20px;
    font-size: 1.8rem
}

.contribution_wrap .ttl_3rings_side {
    font-size: 2.1rem
}

.contribution_wrap .ttl_3rings_side::before {
    margin-right: 10px;
    margin-top: 4px
}

.contribution_photo {
    display: flex;
    width: calc(100% + 40px);
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0
}

.contribution_photo li {
    width: calc(100% / 2 - 40px);
    margin-right: 40px;
    text-align: center
}

.contribution_photo li img {
    margin-bottom: 10px
}

@media screen and (max-width: 767px) {
    .contribution_wrap p {
        line-height: 1.8;
    }

    .contribution_wrap .ttl_3rings_side {
        font-size: 1.9rem
    }

    .contribution_wrap .ttl_3rings_side::before {
        margin-right: 8px;
    }

    .contribution_wrap h3 {
        margin: 30px 0 15px
    }

    .contribution_photo {
        display: block;
        width: 100%;
        margin: 20px 0 0 0
    }

    .contribution_photo li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 1.4rem
    }

    .contribution_photo li img {
        margin-bottom: 6px
    }
}



/* ---------------------------------------------
*   提供介護サービス
--------------------------------------------- */

.ud_description {
    margin: 20px 0 55px;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.8;
}

.services_list_wrap {
    padding: 0
}

.services_list_wrap .service-card {
    background: none;
}

.services_list_wrap .service-card-list {
    gap: 40px 40px;
}

.services_list_wrap .service-card-list li {
    background: #F4F3F0;
    border-radius: 0 0 8px 8px
}

.services_list_wrap .service-card-list__item {
    flex: 0 0 calc((100% - 40px * 2) / 3);
}

a.service-link {
    display: block;
    width: 100%;
    padding: 6px 0px;
    background-color: #152E81;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    margin-top: 25px
}

a.service-link:hover {
    background-color: #ff5800;
    opacity: 1
}

.services_list_wrap .service-sec__btn-list {
    margin-top: 60px
}

.services_list_wrap .service-sec__btn-list .btn {
    border-radius: 8px;
    padding: 20px;
    background: green
}

@media screen and (max-width: 991px) {

    .ud_description {
        margin: 0 0 45px;
        font-size: 1.6rem;
    }

    .services_list_wrap .service-card-list {
        gap: 30px 25px;
    }

    .services_list_wrap .service-card-list__item {
        flex: 0 0 calc((100% - 25px * 2) / 3);
    }

    a.service-link {
        font-size: 1.5rem;
        margin-top: 25px
    }
}

@media screen and (max-width: 767px) {

    .ud_description {
        margin: -5px 0 30px;
        font-size: 1.6rem;
        text-align: left;
        line-height: 1.8;
    }

    .services_list_wrap .service-sec__btn-list {
        margin-top: 25px
    }

    .services_list_wrap .service-sec__btn-list {
        gap: 15px;
    }

    .services_list_wrap .service-sec__btn-list .btn {
        padding: 13px;
    }
}


/* ---------------------------------------------
*   地域貢献
--------------------------------------------- */

.torikumi_ttl {
    margin: 30px 0 50px;
    text-align: center;
    font-size: 2.6rem
}

.torikumi_ttl span {
    display: block;
    font-size: 1.6rem;
    padding-top: 15px
}

.torikumi_wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #811549
}

.ribbon {
    position: relative;
    width: 65px;
    /* 余裕を持たせる。狭ければ調整 */
    background: #811549;
    color: #fff;
    overflow: visible;
    /* まずは切らない */
}

.ribbon .rotate-90 {
    position: absolute;
    left: 3px;
    top: 0;
    display: block;
    white-space: nowrap;
    line-height: 1;
    transform-origin: bottom left;
    /* ← 左下を基点 */
    transform: rotate(90deg) translateY(-100%);
    /* ← 右回転 → 1行分上へ引き戻す */
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
}

.torikumi_cont {
    padding: 50px 65px 50px 80px;
    width: calc(100% - 65px);
}

.torikumi_cont h3 {
    border-bottom: 3px dotted #811549;
    font-size: 2.3rem;
    padding-bottom: 6px;

}

.torikumi_cont h3:not(:first-of-type) {
    margin: 45px 0 35px
}

.torikumi_cont h4 {
    font-size: 1.8rem;
    margin: 35px 0 20px 10px
}

.torikumi_cont ul {
    margin: 0
}

@media screen and (max-width: 767px) {


    .torikumi_ttl {
        margin: 00px 0 25px;
        font-size: 2.0rem
    }

    .torikumi_ttl span {
        font-size: 1.4rem;
        padding-top: 5px
    }

    .torikumi_wrap {
        display: flex;
        align-items: stretch;
        border: 1px solid #811549
    }

    .ribbon {
        width: 27px;
    }

    .ribbon .rotate-90 {
        left: -4px;
        font-size: 1.2rem;
        font-weight: 400
    }

    .torikumi_cont {
        padding: 25px 15px 20px 20px;
        width: calc(100% - 27px);
    }

    .torikumi_cont h3 {
        border-bottom: 2px dotted #811549;
        font-size: 1.8rem;
        padding-bottom: 4px;
        margin: 0
    }

    .torikumi_cont h3:not(:first-of-type) {
        margin: 35px 0 20px
    }

    .torikumi_cont h4 {
        font-size: 1.7rem;
        margin: 20px 0 15px 0
    }

    .torikumi_cont ul {
        padding-left: 1.2em;
        margin: 0;
        font-size: 1.5rem;
    }

    .torikumi_cont ul li {
        margin-bottom: 3px
    }
}


/* ---------------------------------------------
*   提供介護サービス詳細
--------------------------------------------- */

.services_ttl {
    text-align: center;
    position: relative;
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding-bottom: 20px;
    color: #390C0C;
    font-size: 3rem
}

.services_ttl::after {
    content: "";
    display: block;
    width: 180px;
    height: 4px;
    background-color: #F8C2DD;
    margin: 15px auto 0;
}

.services_mv {
    text-align: center;
    margin: 55px 25px
}

.services_desc {
    margin: 0 0 100px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2
}

.dept-list.services_list {
    width: calc(100% + 30px)
}

.dept-list.services_list li {
    width: calc(100% / 3 - 30px);
    margin-right: 30px;
    margin-bottom: 30px
}

.dept-list.services_list img {
    border-radius: 10px 10px 0 0
}

.dept-list.services_list li .link_icon img {
    border-radius: 0 !important
}

@media screen and (max-width: 767px) {

    .services_ttl {
        padding-bottom: 0;
        font-size: 2rem
    }

    .services_ttl::after {
        width: 120px;
        height: 4px;
    }

    .services_mv {
        text-align: center;
        margin: 40px 25px 30px
    }

    .services_desc {
        margin: 0 0 35px;
        text-align: left;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.8
    }

    .dept-list.services_list {
        width: 100%
    }

    .dept-list.services_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px
    }

}


/* ---------------------------------------------
*   要介護度別施設表
--------------------------------------------- */

.carelev_tbl {
    border-collapse: collapse;
    width: 100%;
    margin-top: 50px
}

.carelev_tbl th,
.carelev_tbl td {
    border: 1px solid #606060;
    padding: 16px
}

.carelev_tbl thead th {
    background: #d2eaff
}

.carelev_tbl tbody th {
    white-space: nowrap;
    width: 12% !important;
    background: #f0f8ff
}

.carelev_tbl td .inner {
    display: flex;
    align-items: center
}

.carelev_tbl td img {
    width: 140px;
    margin-right: 20px
}

table td:nth-child(3) {
    width: 14em;
    white-space: nowrap
}

.carelev_tbl td ul {
    padding-left: 1em;
    margin: 0;
    line-height: 1.6
}

.carelev_tbl td ul a {
    text-decoration: none;
    color: #1b63d6;
    font-weight: 600
}

.caretype_tbl {
    border-collapse: collapse;
    width: 100%;
    margin-top: 50px
}

.caretype_tbl th,
.caretype_tbl td {
    border: 1px solid #606060;
    padding: 12px;
    text-align: center;
    font-weight: 600
}

.caretype_tbl thead th {
    background: #ffebaa
}

.caretype_tbl tbody th {
    white-space: nowrap;
    width: 20%;
    background: #fffde8;
    text-align: left
}

.caretype_tbl td {
    width: 10%;
}

.caretype_tbl td.true {
    background: #f4ffeb
}

.caretype_tbl td.true2 {
    background: #e3ffcc
}

.caretype_tbl td.true3 {
    background: #ebf0e7
}

@media screen and (max-width: 767px) {

    .carelev_tbl {
        margin-top: 30px;
        border: 1px solid #606060;
    }

    .carelev_tbl th,
    .carelev_tbl td {
        padding: 12px 10px;
        display: block;
        width: 100% !important;
        border: none
    }

    .carelev_tbl thead th {
        display: none;
    }

    .carelev_tbl tbody th {
        padding: 5px 10px;
        width: 100% !important;
        border-bottom: 1px dotted #606060;
        border-top: 1px solid #606060;
    }

    .carelev_tbl tbody tr:first-child th {
        border-top: none
    }

    .carelev_tbl td .inner {
        flex-flow: column;
    }

    .carelev_tbl td img {
        width: 140px;
        margin: 5px 0 12px
    }

    .carelev_tbl td:nth-child(3) {
        white-space: inherit;
        border-top: 1px dotted #606060;
    }

    .carelev_tbl td ul {
        display: flex;
        flex-flow: wrap;
        padding-left: 0;
        list-style: none;
        margin: 0;
    }

    .carelev_tbl td ul a {
        text-decoration: none;
        color: #1b63d6;
        font-weight: 600
    }

    .carelev_tbl td ul li {
        margin-right: 1.0em
    }

    .caretype_tbl {
        border-collapse: collapse;
        margin-top: 30px
    }

    .caretype_tbl th,
    .caretype_tbl td {
        padding: 10px;
    }

    .scroll_tbl_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* スマホでスムーズにスクロール */
    }

    .caretype_tbl {
        width: 850px;
        /* テーブルの実サイズより大きめに */
        min-width: 800px;
        /* 必要最低限の横幅を確保 */
    }
}


/* ---------------------------------------------
*   各種情報公開
--------------------------------------------- */

.report h3 {
    margin: 45px 0 35px;
    font-size: 1.7rem;
    background: #152E81;
    color: #fff;
    padding: 4px 10px;
}

ul.report_list {
    list-style: none;
    /* デフォルトの丸ポチを消す */
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: wrap
}

ul.report_list li {
    position: relative;
    padding-left: 28px;
    /* アイコン分の余白 */
    width: calc(100% / 2);
    margin-bottom: 10px
}

ul.report_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url("../img/common/icon-pdf-blue.svg") no-repeat center / contain;
    transform: translateY(-50%);
}

ul.report_list li a,
ul.report_list_column li a {
    text-decoration: none;
    color: #070707
}

ul.report_list li a:hover,
ul.report_list_column li a:hover {
    color: #3e5ab7
}

ul.report_list_column {
    list-style: none;
    /* デフォルトの丸ポチを消す */
    padding: 0;
    margin: 0;
}

ul.report_list_column li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px
}

ul.report_list_column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url("../img/common/icon-pdf-blue.svg") no-repeat center / contain;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {

    .report h3 {
        margin: 35px 0 25px;
        font-size: 1.6rem;
        padding: 3px 6px;
    }

    ul.report_list {
        display: block;
    }

    ul.report_list li {
        width: 100%;
        margin-bottom: 8px
    }

    ul.report_list_column li {
        margin-bottom: 8px
    }
}

/* ---------------------------------------------
*   お問い合わせ
--------------------------------------------- */

.contact_desc {
    text-align: center;
    margin: 0 0 40px;
    font-size: 1.8rem
}

.contact_tbl {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #1f1f1f
}

.contact_tbl th,
.contact_tbl td {
    padding: 15px 15px 13px;
    border: 1px solid #1f1f1f
}

.contact_tbl .top_border {
    border-top: 2px solid #1f1f1f
}

.contact_tbl thead th {
    background: #ffebeb
}

.contact_tbl tbody th {
    background: #fffeee;
    text-align: left
}

.contact_tbl td.tel {
    text-align: center;
    white-space: nowrap;
}

.contact_tbl td.tel a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #070707
}

.contact_tbl td.tel a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/common/icon-tel.svg") no-repeat center;
    background-size: contain;
}

.contact_tbl td.tel a:hover {
    color: #3943bf
}

@media screen and (max-width: 767px) {

    .contact_tbl,
    .contact_tbl thead,
    .contact_tbl tbody,
    .contact_tbl tr,
    .contact_tbl th,
    .contact_tbl td {
        display: block;
        width: 100% !important;
        border: none;
    }

    .contact_tbl {
        border: 1px solid #1f1f1f;
    }

    .contact_tbl .top_border {
        border: none;
    }

    .contact_tbl thead {
        display: none;
    }

    .contact_tbl tbody th {
        background: #fffeee;
        width: 100%;
        padding: 10px 12px;
        font-weight: bold;
        white-space: nowrap;
        border-top: 1px solid #1f1f1f;
    }

    .contact_tbl tbody tr:first-child th {
        border-top: none
    }

    /* 電話番号 */

    .contact_tbl td:not(.tel) {
        padding: 12px 12px;
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #1f1f1f;
    }

    .contact_tbl td.tel {
        text-align: center;
        padding: 10px 12px;
        border: none
    }

    .contact_tbl td.tel a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 14px;
        border: 1px solid #1f1f1f;
        border-radius: 8px;
        text-decoration: none;
        color: #070707;
    }

    .contact_tbl td.tel a::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url("../img/common/icon-tel.svg") no-repeat center;
        background-size: contain;
    }

    .contact_tbl td.tel a:hover,
    .contact_tbl td.tel a:active {
        color: #3943bf;
        border-color: #3943bf;
    }
}

/* ---------------------------------------------
*   個人情報保護方針
--------------------------------------------- */

.policy_wrap h2 {
    font-size: 2.3rem;
    margin: 0 0 55px;
    text-align: center
}

.policy_wrap h2 span {
    border-bottom: 5px double #811549;
    padding-bottom: 10px
}

.policy_wrap h3 {
    font-size: 1.8rem;
    margin: 45px 0 30px;
    border-bottom: 1px solid #070707;
    border-left: 8px solid #811549;
    padding: 8px 0 8px 10px
}

.policy_wrap p {
    margin: 0;
    line-height: 1.8;
}

.policy_wrap ol {
    margin: 0;
    padding-left: 2em
}

.policy_wrap ol li {
    line-height: 1.8;
    margin-bottom: 10px
}

.policy_sign {
    margin-top: 40px
}

.policy_sign p {
    text-align: right;
}

.policy_sign p span {
    font-size: 1.8rem;
    font-weight: 600
}

@media screen and (max-width: 767px) {

    .policy_wrap h2 {
        font-size: 1.8rem;
        margin: 0 0 35px;
    }

    .policy_wrap h2 span {
        border-bottom: 4px double #811549;
        padding-bottom: 8px
    }


    .policy_wrap h3 {
        font-size: 1.6rem;
        margin: 30px 0 20px;
        border-left: 6px solid #811549;
        padding: 5px 0 5px 7px
    }

    .policy_wrap p {
        line-height: 1.7;
        font-size: 1.5rem;
    }

    .policy_wrap ol {
        font-size: 1.5rem;
        padding-left: 1.2em
    }

    .policy_wrap ol li {
        line-height: 1.7;
        margin-bottom: 10px
    }

    .policy_sign {
        margin-top: 20px
    }

    .policy_sign p span {
        font-size: 1.8rem;
    }
}
