@charset "utf-8";

/*================================================================
# 全ページ共通スタイル
================================================================ */
/* header
------------------------------------------------------ */
.header {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 50;
    transition: ease-in 0.2s;
}

.header .header__inner {
    padding: 9px 16px 7px;
    opacity: 1;
    border-radius: 0 0 24px 24px;
    background-color: var(--white);
    visibility: visible;
    transition: 0.3s;
}

.top-page .header .header__inner {
    background-color: var(--bg01);
}

.header .header__inner.hidden {
    opacity: 0;
    visibility: hidden;
}

.header .left h1 {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.header .left h1 a {
    display: block;
}

.header .left h1 a img {
    width: auto;
    height: 48px;
}

.gnav_pc {
    display: none;
}

.nav-toggle {
    width: 64px;
    height: 64px;
    cursor: pointer;
    position: absolute;
    z-index: 50;
    inset: 0 0 auto auto;
}

.nav-toggle.active {
    background: var(--bg01);
}

.nav-toggle span {
    width: 56%;
    height: 2px;
    background: var(--black);
    position: absolute;
    display: inline-block;
    transition: 0.4s;
    inset: auto auto auto 13px;
}

.nav-toggle span:nth-of-type(1) {
    top: 20px;
}

.nav-toggle span:nth-of-type(2) {
    top: 29px;
}

.nav-toggle span:nth-of-type(3) {
    top: 39px;
}

.nav-toggle.active span:nth-of-type(1) {
    width: 50%;
    transform: translateY(6px) rotate(24deg);
    inset: 24px auto auto 16px;
}

.nav-toggle.active span:nth-of-type(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-of-type(3) {
    width: 50%;
    transform: rotate(-24deg);
    inset: 30px auto auto 16px;
}

/* gnav_sp
------------------------------------------------------ */
.gnav_sp {
    width: 100%;
    height: 100dvh;
    background: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    overflow-y: scroll;
    z-index: 40;
    transition: all 0.5s;
    -webkit-overflow-scrolling: touch;
}

.gnav_sp.panel-active {
    right: 0;
}

.gnav-list_sp {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.gnav-list_sp .primary {
    padding: 40px 24px 0;
}

.gnav-list_sp .primary .li_item,
.gnav-list_sp .primary .has-submenu {
    border-bottom: solid 1px var(--gray02);
}

.gnav-list_sp .primary .li_item>a,
.gnav-list_sp .primary .has-submenu>a {
    padding: 20px;
    display: block;
    font-weight: 700;
}

.gnav-list_sp .primary li.has-submenu {
    position: relative;
}

.gnav-list_sp .primary li.has-submenu>a::before {
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 32px;
    right: 16px;
    transition: 0.3s;
    transform: translateY(-50%);
}

.gnav-list_sp .primary li.has-submenu>a::after {
    width: 2px;
    height: 20px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 32px;
    right: 25px;
    transition: 0.3s;
    transform: translateY(-50%);
}

.gnav-list_sp .primary li.has-submenu>a.active::after {
    transform: translateY(-50%) rotate(90deg);
}

.gnav-list_sp .li_contact {
    margin: 24px 0 0;
}

.gnav-list_sp .li_contact a {
    padding: 16px 2rem 18px 6px;
    border-radius: 9999px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--white);
    gap: 16px;
}

.gnav-list_sp .li_contact a::before {
    width: 24px;
    height: 24px;
    background: url("../img/icon_mail.svg") no-repeat center/contain;
    content: "";
    display: inline-block;
}

.gnav-list_sp .li_recruit {
    margin: 16px 0 0;
}

.gnav-list_sp .li_recruit a {
    padding: 16px 2rem 18px 6px;
    border-radius: 9999px;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--white);
    gap: 16px;
}

.gnav-list_sp .li_recruit a::before {
    width: 24px;
    height: 24px;
    background: url("../img/icon_search.svg") no-repeat center/contain;
    content: "";
    display: inline-block;
}

.gnav-list_sp .li_access {
    margin: 24px 0 0;
    text-align: center;
}

.gnav-list_sp .li_access a {
    width: 50%;
    margin: auto;
    padding: 8px 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: 0.3s;
    gap: 8px;
}

.gnav-list_sp .li_access a::before {
    width: 12px;
    height: 20px;
    background: url("../img/icon_map.svg") no-repeat center/contain;
    content: "";
    display: inline-block;
}

.gnav-list_sp .submenu {
    padding: 16px;
    display: none;
}

.gnav-list_sp .submenu.active {
    display: block;
}

.gnav-list_sp .submenu .col:nth-child(n + 2) {
    margin: 16px 0 0;
}

.gnav-list_sp .submenu .col:nth-child(2) .title {
    background-color: var(--secondary);
}

.gnav-list_sp .submenu li a {
    padding: 8px 0 8px 20px;
    position: relative;
    display: block;
    font-size: 13px;
}

.gnav-list_sp .submenu li a:before {
    width: 10px;
    height: 1px;
    margin: auto;
    background-color: var(--gray02);
    position: absolute;
    content: "";
    top: 20px;
    left: 0;
}

.gnav-footer_sp {
    margin: 24px 0 0;
    padding: 40px 24px;
    background-color: var(--bg01);
    text-align: center;
}

.gnav-footer_sp h1 {
    max-width: 200px;
    margin: auto;
}

.gnav-footer_sp h1 a {
    display: block;
}

.gnav-footer_sp h1 img {
    width: 100%;
}

.gnav-footer_sp .address {
    margin: 24px 0 0;
    font-size: 14px;
}

.gnav-footer_sp .copyright {
    margin: 40px 0 0;
    font-size: 10px;
}

/* submenu
------------------------------------------------------ */
.header .gnav_sp ul {
    padding: 0 20px;
    list-style: none;
}

.header .gnav_sp li {
    margin-bottom: 10px;
}

.header .gnav_sp li a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    font-size: 16px;
    color: #fff;
}

.header .gnav_sp li .submenu {
    max-height: 0;
    padding-left: 20px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.header .gnav_sp li .submenu.active {
    max-height: 500px;
}

.header .gnav_sp li .submenu li a {
    padding: 10px 0;
    font-size: 14px;
}

.header .gnav_sp li.has-submenu>a {
    position: relative;
}

.header .gnav_sp li.has-submenu>a::after {
    position: absolute;
    content: "+";
    top: 50%;
    right: 0;
    font-size: 18px;
    transform: translateY(-50%);
}

.header .gnav_sp li.has-submenu>a.active::after {
    content: "-";
}

/* ページトップ
------------------------------------------------------ */
.scroll-to-top {
    width: 48px;
    height: 48px;
    cursor: pointer;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9;
}

.scroll-to-top a {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.scroll-to-top a svg {
    height: 20px;
    color: var(--white);
    transition: 0.3s;
}

/* フッター
------------------------------------------------------ */
.footer .contact-section .contact-banner {
    padding: 80px 0;
    background-color: var(--primary);
    text-align: center;
}

.footer .contact-section .contact-box {
    width: calc(100% - 6.4rem);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .contact-section .contact-link {
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    border-radius: 9999px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    gap: 16px;
}

.footer .contact-section .contact-link:hover {
    transform: scale(1.03);
}

.footer .contact-section .contact-box .icon {
    width: 64px;
}

.footer .contact-section .contact-box .title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.footer .contact-section .contact-box .sub {
    margin: 4px 0 0;
    font-size: 14px;
}

.footer .contact-section .recruit-section {
    text-align: center;
}

.footer .contact-section .recruit-link {
    height: 272px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    z-index: 0;
}

.footer .contact-section .recruit-link::before {
    background: url("../img/footer_recruit.png") no-repeat left -160px center / cover;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.6s ease;
}

.footer .contact-section .recruit-label {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    transition: 0.6s ease;
}

.footer .contact-section .recruit-title {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 700;
    transition: 0.6s ease;
}

.footer .contact-section .recruit-icon {
    width: 48px;
    height: 48px;
    transition: 0.6s ease;
}

.footer .group-section {
    padding: 64px 0 80px;
    background-color: var(--bg02);
    text-align: center;
}

.footer .group-section .section-title {
    margin: 0 0 32px;
    font-size: 24px;
    font-weight: 700;
}

.footer .group-section .group-list {
    margin: 0 0 0 -16px;
    padding: 0 40px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .group-section .group-list li {
    width: calc(100% / 1 - 16px);
    margin: 16px 0 0 16px;
}

.footer .group-section .group-list li a {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer .group-section .group-list li a:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transform: scale(1.03);
}

.footer .group-section .group-list img {
    width: 100%;
    height: auto;
    display: block;
}

.footer .nav-section {
    padding: 64px 0;
    background: var(--bg04);
}

.footer .nav-section .logo a {
    display: block;
}

.footer .nav-section .logo img {
    max-width: 192px;
    height: auto;
}

.footer .nav-section .address {
    margin: 24px 0 0;
    font-size: 14px;
}

.footer .nav-section .container .right {
    margin: 40px 0 0;
}

.footer .nav-section .nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .nav-section .nav-list a {
    padding: 10px 0;
    display: block;
    font-size: 14px;
    transition: color 0.3s;
}

.footer .nav-section .nav-list .submenu-list {
    margin: 8px 0 16px;
    padding: 0 0 0 24px;
}

.footer .nav-section .nav-list .submenu-list a {
    font-size: 13px;
    font-weight: 400;
}

.footer .nav-section .nav-list a:hover {
    color: var(--primary);
}

.footer .nav-section .footer-policy {
    margin: 24px 0 0;
}

.footer .nav-section .copyright {
    margin: 40px 0 0;
    font-size: 10px;
}

/* 背景・余白
------------------------------------------------------ */
.bg01 {
    padding: 100px 0;
}

.bg02 {
    padding: 100px 0;
    background: var(--bg02);
}

.section+.section {
    margin: 100px 0 0;
}

.unit+.unit {
    margin: 64px 0 0;
}

/* layout
------------------------------------------------------ */
main .row .img-area img {
    border-radius: 0 40px 40px 0;
}

main .row .text-area {
    width: calc(100% - 6.4rem);
    margin: auto;
    padding: 4rem 0 0;
}

main .row.reverse {
    flex-direction: row-reverse;
}

main .row.reverse .img-area img {
    border-radius: 40px 0 0 40px;
}

/* card
------------------------------------------------------ */
.card-grid01 {
    margin: 64px 0 0 -30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-grid01 .card-item {
    width: calc(50% - 30px);
    margin: 0 0 0 30px;
    padding: 56px;
    background: var(--white);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.card-grid01 .card-item:nth-child(n + 3) {
    margin: 30px 0 0 30px;
}

.card-grid01 .card-item.img {
    background: transparent;
    justify-content: center;
    align-items: center;
}

.card-grid01 .card-title {
    margin: 0;
    padding: 0 0 0 24px;
    position: relative;
    font-family: var(--mincho);
    font-size: 28px;
    line-height: 1.4;
    color: var(--primary);
}

.card-grid01 .card-title:before {
    width: 16px;
    height: 16px;
    border-radius: 9999px;
    background-color: var(--secondary);
    position: absolute;
    content: "";
    top: 14px;
    left: 0;
}

.card-grid01 .card-title strong {
    color: var(--primary);
}

/* heading
------------------------------------------------------ */
.heading01 {
    font-size: 28px;
    font-weight: 600;
}

.heading01.center {
    text-align: center;
}

.heading01 .text-en {
    padding: 0 0 0 44px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.heading01 .text-en::before {
    width: 32px;
    height: 1px;
    margin: 0 40px 0 0;
    background: var(--primary);
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    display: inline-block;
    transform: translateY(-50%);
}

.heading01 .text-jp {
    margin: 40px 0 0;
    font-size: 28px;
    font-weight: 600;
}

.recruit-page .heading01 .text-en {
    color: var(--secondary);
}

.recruit-page .heading01 .text-en::before {
    background: var(--secondary);
}

.heading02 {
    padding: 0 0 16px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
}

.heading02.center {
    text-align: center;
}

.heading02:before {
    width: 60px;
    height: 3px;
    margin: auto;
    background-color: var(--primary);
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    left: 0;
}

.heading03 {
    margin: 40px 0 0;
    padding: 0 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.heading03.center {
    text-align: center;
}

/* text
------------------------------------------------------ */
.text01 {
    margin: 32px 0 0;
    line-height: 2;
}

.text01.top {
    margin: 0;
}

.text01.center {
    text-align: center;
}

.text01 p:nth-child(n + 2) {
    margin: 32px 0 0;
}

.text02 {
    margin: 40px 0 0;
    line-height: 2;
}

.text02 p:nth-child(n + 2) {
    margin: 32px 0 0;
}

.coming-soon {
    margin: 64px 0 0;
    font-size: 18px;
    color: var(--gray03);
    text-align: center;
}

/* list
------------------------------------------------------ */
.list01 {
    margin: 24px 0 0;
}

.list01.top {
    margin: 0;
}

.list01 li {
    display: flex;
    gap: 8px;
}

.list01 li+li {
    margin: 9px 0 0;
}

.list01 li::before {
    width: 6px;
    height: 6px;
    margin: 10px 0 0;
    border-radius: 9999px;
    background-color: var(--secondary);
    content: "";
    flex-shrink: 0;
}

/* btn
------------------------------------------------------ */
.btn01 {
    margin: 4rem 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.btn01 .btn01__link {
    min-width: 80%;
    padding: 12px 40px 14px;
    border: 2px solid var(--primary);
    border-radius: 9999px;
    background: var(--primary);
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    transition: 0.3s;
}

.btn01 .btn01__link:hover {
    color: var(--white);
}

.btn01 .btn01__link::before {
    width: 100%;
    height: 100%;
    background: var(--white);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transition: left 0.2s ease-in-out;
}

.bg02 .btn01 .btn01__link::before {
    background: var(--bg02);
}

.btn01 .btn01__link:hover::before {
    left: 100%;
}

.btn01 .btn01__link span {
    position: relative;
}

.btn01 .btn01__icon {
    position: relative;
    z-index: 1;
}

/* breadcrumb
------------------------------------------------------ */
.breadcrumb {
    margin: 8px 0 0;
}

.breadcrumb__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    font-size: 11px;
}

.breadcrumb__item {
    position: relative;
    color: var(--gray03);
}

.breadcrumb__item:not(:last-child) {
    margin: 0 16px 0 0;
}

.breadcrumb__item:not(:last-child)::after {
    position: absolute;
    content: "-";
    top: 0;
    right: -10px;
}

.breadcrumb__link {
    color: var(--black);
    text-decoration: none;
}

.breadcrumb__link:hover {
    text-decoration: underline;
}

/* 中面page-title
------------------------------------------------------ */
.page-title {
    width: 100%;
    margin: 64px auto 0;
}

.page-title__img {
    width: 90%;
    margin: 0 0 0 auto;
}

.page-title__img img {
    width: 100%;
    height: 240px;
    border-radius: 48px 0 0 48px;
    object-fit: cover;
}

.page-title__inner {
    width: 90%;
    height: 120px;
    margin: -60px 0 0;
    padding: 0 0 0 2.4rem;
    border-radius: 0 9999px 9999px 0;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    z-index: 2;
}

.page-title .title-jp {
    font-size: 22px;
    line-height: 1.4;
}

.page-title .title-en {
    margin: 8px 0 0;
    font-size: 14px;
}

.recruit-page .page-title__inner {
    background-color: var(--secondary);
}

/* accordion
------------------------------------------------------ */
.accordion-container {
    max-width: 800px;
    margin: 64px auto 0;
    padding: 0;
}

.accordion-item {
    border: 1px solid var(--secondary);
}

.accordion-header {
    padding: 15px 24px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title {
    font-size: 18px;
    font-weight: 400;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    background: var(--secondary);
    position: absolute;
    content: "";
    transition: transform 0.3s;
}

.accordion-icon::before {
    width: 100%;
    height: 3px;
    top: 9px;
    left: 0;
}

.accordion-icon::after {
    width: 3px;
    height: 100%;
    top: 0;
    left: 9px;
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-inner {
    padding: 0 20px 20px;
}

.accordion-content .disability-list {
    padding: 0 0 0 10px;
    list-style-position: inside;
}

.accordion-content .disability-list li {
    margin: 10px 0;
    font-size: 14px;
    color: var(--primary);
}

.accordion-content .disability-list li span {
    color: var(--black);
}

/* table
------------------------------------------------------ */
.table01 {
    width: 100%;
    margin: 40px 0 0;
    border-collapse: collapse;
    border-bottom: 1px solid var(--gray02);
}

.table01 tr {
    display: flex;
    flex-wrap: wrap;
}

.table01 th,
.table01 td {
    text-align: left;
    vertical-align: middle;
}

.table01 th {
    width: 100%;
    padding: 24px 16px 0;
    border-top: 1px solid var(--gray02);
    font-weight: 600;
}

.table01 td {
    width: 100%;
    padding: 16px 16px 24px;
}

.table01 .note {
    margin: 10px 0;
    font-size: 13px;
    color: var(--primary);
}

/*================================================================
# お問い合わせ
================================================================ */
.contact-page .page-title:before {
    background: url("../img/contact_page-title_sp.png") no-repeat top right / cover;
}

.contact-form {
    width: 100%;
    margin: 40px auto 0;
}

.contact-table {
    width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 2;
}

.contact-table>tbody>tr {
    margin: 16px 0 0;
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
}

.contact-table>tbody>tr>th {
    width: 100%;
    padding: 0 0 0 48px;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--blue04);
    text-align: left;
    white-space: nowrap;
}

.contact-table>tbody>tr>.no-label {
    padding: 0;
}

.contact-table>tbody>tr>td {
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
}

.contact-table>tbody>tr>td .note {
    margin-top: 4px;
    font-size: 11px;
    color: var(--gray03);
}

.contact-form .form-tag {
    width: 40px;
    height: 20px;
    border-radius: 9999px;
    background-color: var(--primary);
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 0;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.contact-form .form-tag.-required {
    color: var(--white);
}

.contact-table .checkbox-list {
    margin: 0 0 0 -16px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.contact-table .checkbox-list li {
    margin: 8px 8px 8px 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form__footer {
    margin-top: 40px;
    line-height: 2;
}

.contact-form__footer .title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    text-align: center;
}

.privacy-box {
    width: 100%;
    height: 200px;
    margin: 20px auto;
    padding: 24px;
    background: var(--gray01);
    overflow: auto;
    font-size: 14px;
}

.privacy-box .unit {
    margin: 16px 0 0;
}

.privacy-box .unit__title {
    font-size: 12px;
    font-weight: 500;
}

.privacy-box .unit__text {
    margin: 8px 0 0;
    font-size: 10px;
}

.privacy-text {
    font-size: 14px;
    line-height: 2;
}

/*-----------
form
------------*/
::placeholder {
    font-size: 14px;
    color: var(--gray02);
}

.contact-table select,
.contact-table input,
.contact-table textarea,
.contact-table button,
.contact-table option {
    font-family: "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.contact-table input,
.contact-table textarea {
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: var(--gray01);
    font-size: 16px;
    line-height: normal;
    box-sizing: border-box;
    transition: all 0.5s;
}

.contact-table input:focus,
.contact-table textarea:focus {
    background: var(--gray01);
}

.contact-table input:focus::placeholder,
.contact-table textarea:focus::placeholder {
    color: var(--gray02);
}

.contact-form input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 3px 0 0;
    padding: 0;
    cursor: pointer;
    border: 2px solid var(--gray02);
    border-radius: 0.3em;
    background: var(--white);
    position: relative;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form input[type="checkbox"]:checked {
    border: 2px solid var(--primary);
    background: var(--primary);
}

.contact-form input[type="checkbox"]:focus {
    border: 2px solid var(--gray02);
}

.contact-form input[type="checkbox"]::before {
    width: 6px;
    height: 12px;
    opacity: 0;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    position: absolute;
    content: "";
    top: 3px;
    left: 7px;
    transition: opacity 0.2s;
    transform: rotate(45deg);
}

.contact-form input[type="checkbox"]:checked::before {
    opacity: 1;
}

.contact-form span.wpcf7-list-item-label{
    margin: -20px 20px 0 30px;
	line-height:0;
	display:block;
}

.select-wrap {
    width: 100%;
    border-radius: 0;
    background: var(--gray01);
    position: relative;
    overflow: hidden;
}

.select-wrap::before {
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border: 0;
    border-right: solid 2px var(--gray02);
    border-bottom: solid 2px var(--gray02);
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    transform: rotate(45deg);
}

.select-wrap select {
    width: 100%;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    font-size: 16px;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    appearance: none;
}

.select-wrap select::-ms-expand {
    display: none;
}

.contact-form .kojin-checkbox {
    margin: 24px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-align: center;
}

.contact-form .kojin-checkbox label {
    padding: 0 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.contact-form .kojin-checkbox label:hover {
    cursor: pointer;
}

.contact-form .kojin-checkbox input {
    margin: 3px 10px 0 0;
}

.contact-form .kojin-checkbox .form-tag {
    margin: 3px 0 0 8px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
}

.submit-btn {
    width: 100%;
    margin: 40px auto 0;
}

.submit-btn input {
    width: 100%;
    height: 64px;
    padding: 0 0 2px;
    border-radius: 9999px;
    background: var(--btn);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}

/*================================================================
# トップページ
================================================================ */
/* mv
------------------------------------------------------ */
.top-page .mv {
    width: 100%;
    margin: 64px auto 0;
    position: relative;
    display: flex;
    overflow: hidden;
    aspect-ratio: 1281 / 1689;
}

.top-page .mv .splide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.top-page .mv .splide__track,
.top-page .mv .splide__list {
    height: 100%;
}

.top-page .mv .splide__slide {
    height: 100%;
    position: relative;
}

.top-page .mv .slide-bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.top-page .mv .text-area {
    width: 100%;
    margin: auto 0 36% 1.6rem;
    padding: 0;
    position: relative;
    font-family: var(--mincho);
    color: var(--white);
    z-index: 1;
}

.top-page .mv .text-area span {
    padding: 0 16px;
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 0 16px rgba(39, 45, 52, 1);
}

.top-page .mv__text01 {
    margin: 0;
    font-size: 40px;
    transition-delay: 0.3s;
    transition-duration: 1.6s !important;
}

.top-page .mv__text02 {
    font-size: 18px;
    transition-delay: 0.6s;
    transition-duration: 1.6s !important;
}

.top-page .mv .splide__arrows,
.top-page .mv .splide__pagination {
    display: none;
}

/* recruit-banner
------------------------------------------------------ */
.top-page .recruit-banner {
    margin: 0;
}

.top-page .recruit-banner .recruit_ban {
    width: calc(100% - 6.4rem);
    margin: auto;
}

.top-page .recruit-banner .recruit_ban a {
    display: block;
}

/* news
------------------------------------------------------ */
.top-page .news {
    margin: 0;
}

.top-page .news .heading01 .text-jp {
    margin: 4px 0 0;
}

.top-page .news-list {
    margin: 40px 0 0;
    border-top: 1px solid var(--border01);
}

.top-page .news-item {
    margin: 0;
    border-bottom: 1px solid var(--border01);
}

.top-page .news-item__link {
    width: 100%;
    padding: 32px 40px 32px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.top-page .news-item__link:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.top-page .news-item .date {
    width: 100%;
    flex-shrink: 0;
    color: var(--gray03);
}

.top-page .news-item .title {
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
}

.top-page .news-item__link::after {
    width: 16px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='b' data-name='レイヤー 2' xmlns='http://www.w3.org/2000/svg' width='18' height='12.67' viewBox='0 0 18 12.67'%3E%3Cg id='c' data-name='レイヤー 1'%3E%3Cg%3E%3Cline x1='1' y1='6.33' x2='17' y2='6.33' fill='none' stroke='%23ff9d50' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpolyline points='11.67 1 17 6.33 11.67 11.67' fill='none' stroke='%23ff9d50' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 10px;
    position: absolute;
    content: "";
    top: 50%;
    right: 2.4rem;
    transition: transform 0.3s ease;
    transform: translateY(-50%);
}

.top-page .news-item__link:hover::after {
    transform: translateY(-50%) translateX(5px);
}

/* service
------------------------------------------------------ */
main .service {
    padding: 0 0 100px;
}

main .service .service-links {
    margin: 64px auto 0;
}

main .service .service-card {
    height: 320px;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: 2.4rem;
    color: var(--white);
    transition: transform 0.5s ease, filter 0.5s ease;
}

main .service .service-card::before {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: transform 0.5s ease, filter 0.5s ease;
}

main .service .service1::before {
    background-image: url("../img/top_img02.png");
}

main .service .service2::before {
    background-image: url("../img/top_img03.png");
}

main .service .service-card:hover::before {
    filter: brightness(0.8);
    transform: scale(1.05);
}

main .service .service-caption {
    text-align: center;
}

main .service .service-caption p {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

main .service .service-caption span {
    min-width: 28.4rem;
    margin: 1.6rem 0 0;
    padding: 14px 24px 16px;
    border-radius: 5px;
    background-color: var(--tertiary);
    display: inline-block;
    font-size: 1.7rem;
    color: var(--white);
}

/* access
------------------------------------------------------ */
.top-page .access .heading01 .text-jp {
    margin: 4px 0 0;
}

.top-page .access-content {
    margin: 40px 0 0;
}

.top-page .access .info {
    margin: 40px 0 0;
}

.top-page .access .info .name {
    font-size: 20px;
    font-weight: 700;
}

.top-page .access .info p+p {
    margin: 16px 0 0;
    font-size: 14px;
}

/* instagram
------------------------------------------------------ */
.top-page .instagram {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.top-page .instagram .title {
    font-size: 32px;
}

.top-page .instagram p {
    margin: 64px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray03);
}

/*================================================================
# お知らせ
================================================================ */
/* news-list
------------------------------------------------------ */
.news-page .news {
    margin: 0;
}

.news-page .news-list {
    margin: 0;
    border-top: 1px solid var(--border01);
}

.news-page .news-item {
    margin: 0;
    border-bottom: 1px solid var(--border01);
}

.news-page .news-item__link {
    width: 100%;
    padding: 32px 48px 32px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.news-page .news-item__link:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.news-page .news-item .date {
    width: 100%;
    flex-shrink: 0;
    color: var(--gray03);
}

.news-page .news-item .title {
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
}

.news-page .news-item__link::after {
    width: 16px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='b' data-name='レイヤー 2' xmlns='http://www.w3.org/2000/svg' width='18' height='12.67' viewBox='0 0 18 12.67'%3E%3Cg id='c' data-name='レイヤー 1'%3E%3Cg%3E%3Cline x1='1' y1='6.33' x2='17' y2='6.33' fill='none' stroke='%23ff9d50' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpolyline points='11.67 1 17 6.33 11.67 11.67' fill='none' stroke='%23ff9d50' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 10px;
    position: absolute;
    content: "";
    top: 50%;
    right: 2.4rem;
    transition: transform 0.3s ease;
    transform: translateY(-50%);
}

.news-page .news-item__link:hover::after {
    transform: translateY(-50%) translateX(5px);
}

/* pager
------------------------------------------------------ */
.pager {
    margin: 64px 0 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pager li {
    margin: 0 4px;
}

.pager a {
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
}

.pager a:hover {
    background-color: var(--gray01);
}

.pager .active a {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.pager .prev a,
.pager .next a {
    border: 1px solid var(--gray03);
    position: relative;
}

.pager .prev a svg,
.pager .next a svg {
    width: 12px;
    fill: var(--gray03);
}

.pager .prev a svg {
    transform: scale(-1, 1);
}

/* news_detail
------------------------------------------------------ */
.news-page .post .date {
    color: var(--primary);
}

.news-page .post .title {
    margin: 8px 0 0;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--gray02);
    font-size: 28px;
}

.news-page .post .text {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray02);
    line-height: 2;
}

/*================================================================
# 当施設について
================================================================ */
.about-page .page-title__img img {
    object-position: 80% center;
}

/* room
------------------------------------------------------ */
.about-page .room {
    padding: 0 0 100px;
}

/* service
------------------------------------------------------ */
.about-page .service {
    padding: 0 0 100px;
}

.about-page .service .service-links {
    margin: 64px auto 0;
}

.about-page .service .service-card {
    height: 320px;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: 2.4rem;
    color: var(--white);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.about-page .service .service-card::before {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.about-page .service .service1::before {
    background-image: url("../img/top_img02.png");
}

.about-page .service .service2::before {
    background-image: url("../img/top_img03.png");
}

.about-page .service .service-card:hover::before {
    filter: brightness(0.8);
    transform: scale(1.05);
}

.about-page .service .service-caption {
    text-align: center;
}

.about-page .service .service-caption p {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.about-page .service .service-caption span {
    min-width: 28.4rem;
    margin: 1.6rem 0 0;
    padding: 14px 24px 16px;
    border-radius: 5px;
    background-color: var(--tertiary);
    display: inline-block;
    font-size: 1.7rem;
    color: var(--white);
}

/*================================================================
 # サービス案内
 ================================================================ */
.certification .conditions {
    margin: 4rem auto;
    text-align: center;
    gap: 2rem;
}

.certification .conditions__label {
    font-size: 18px;
    font-weight: 600;
}

.certification .conditions__content {
    margin: 16px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certification .conditions__text {
    width: 160px;
    height: 160px;
    border: 1px solid var(--black);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.certification .conditions__and {
    margin: 16px 0;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.certification .level-row {
    width: 100%;
    margin: 16px 0 0;
}

.certification .conditions__levels {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.certification .level {
    width: calc(100% / 3 - 5.33333333px);
    border-radius: 9999px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    aspect-ratio: 1 / 1;
}

.certification .support {
    background: var(--tertiary);
}

.certification .level strong {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.certification .box {
    margin: 64px 0 0;
    padding: 64px 24px;
    border: 2px solid var(--gray02);
    border-radius: 32px;
    background-color: var(--white);
}

.certification .requirement-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: num;
    border-bottom: 1px solid var(--gray02);
}

.certification .requirement-list li {
    margin: 0;
    padding: 16px 16px 16px 48px;
    border-top: 1px solid var(--gray02);
    position: relative;
}

.certification .requirement-list li::before {
    width: 22px;
    height: 22px;
    border: 1px solid var(--primary);
    border-radius: 999px;
    position: absolute;
    content: "";
    top: 19px;
    left: 16px;
    box-sizing: border-box;
}

.certification .requirement-list li::after {
    width: 22px;
    height: 22px;
    counter-increment: num;
    position: absolute;
    content: counter(num);
    top: 18px;
    left: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
}

/* サービス案内_TOP
------------------------------------------------------ */
.service-page .nursing-home .heading01,
.service-page .shortstay .heading01 {
    text-align: center;
}

.service-page .nursing-home {
    padding: 100px 0 0;
}

.service-page .nursing-home .img-area,
.service-page .shortstay .img-area {
    margin: 40px 0 0;
}

.service-page .nursing-home .img-area img,
.service-page .shortstay .img-area img {
    height: 200px;
    border-radius: 40px;
    object-fit: cover;
}

.service-page .nursing-home .btn01,
.service-page .shortstay .btn01 {
    margin: 40px 0 0;
}

/* 地域密着型特別養護老人ホーム
------------------------------------------------------ */
.service-page.service_nursing-home .features .services-list {
    margin: 64px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.service-page.service_nursing-home .features .services-item {
    height: 100px;
    padding: 2rem 1rem;
    border: 1px solid var(--gray02);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 1 calc(100% / 3 - 8px);
}

.service-page.service_nursing-home .features .services-item__icon {
    width: 32px;
    height: 32px;
}

.service-page.service_nursing-home .features .services-item__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.service-page.service_nursing-home .features .services-item__label {
    margin: 16px 0 0;
    font-size: 11px;
}

/* ショートステイ
------------------------------------------------------ */
.service-page.service_shortstay .refresh-care .img-area img {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    object-fit: cover;
}

.service-page.service_shortstay .refresh-care .text-area {
    width: 100%;
    margin: 40px 0 0;
    padding: 0;
}

/*================================================================
# ご利用について
================================================================ */
.guide-page .usage-cards {
    margin: 4rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.guide-page .usage-card {
    width: 100%;
    padding: 24px;
    border: 1px solid var(--gray02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    transition: 0.4s ease;
}

.guide-page .usage-card:hover {
    background-color: var(--gray01);
    transform: translate(0, -5px);
}

.guide-page .usage-card__icon {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    background-color: var(--gray01);
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-page .usage-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: 0.4s ease;
}

.guide-page .usage-card:hover .usage-card__icon img {
    transform: translateY(-5px) scale(1.4);
}

.guide-page .usage-card__text {
    margin: 0 0 0 16px;
}

/*================================================================
# 採用情報
================================================================ */
.recruit-page .page-title__img img {
    object-position: 80% center;
}

.recruit-page .training-support {
    margin: 24px 0 0;
}

.recruit-page .training-support__item {
    margin: 40px 0 0;
    border-radius: 32px;
    background: var(--gray01);
}

.recruit-page .training-support__img img {
    width: 100%;
    border-radius: 32px 32px 0 0;
}

.recruit-page .training-support__text {
    padding: 24px;
}

.recruit-page .training-support__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary);
}

.recruit-page .training-support__text p {
    margin: 16px 0 0;
}

.recruit-page .job-description .recruit-tabs {
    margin: 32px 0 0;
}

.recruit-page .job-description .tab-list {
    margin: 0 0 0 -4px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.recruit-page .job-description .tab {
    width: calc(100% / 3 - 4px);
    margin: 4px 0 0 4px;
    padding: 16px 4px;
    cursor: pointer;
    border-radius: 16px;
    background: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    z-index: 0;
    transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.recruit-page .job-description .tab:not(.is-active):hover {
    background: #633c71;
    transform: translateY(4px);
}

.recruit-page .job-description .tab.is-active {
    pointer-events: none;
    background: var(--white);
    font-weight: 600;
    color: var(--secondary);
}

.recruit-page .job-description .tab-content {
    margin: 16px 0 0;
    padding: 40px 24px;
    opacity: 0;
    border-radius: 16px;
    background: var(--white);
    position: relative;
    display: none;
    font-size: 14px;
    z-index: 1;
    transition: opacity 0.6s;
}

.recruit-page .job-description .tab-content.is-active {
    opacity: 1;
    display: block;
}

.recruit-page .job-description .table01 {
    margin: 0;
}

.recruit-page .job-description .table01 .heading03 {
    margin: 24px 0 0;
    font-size: 16px;
    color: var(--secondary);
}

.recruit-page .job-description .table01 .text01 {
    margin: 16px 0 0;
}

.recruit-page .job-description .table01 .text01.top {
    margin: 0;
}

.recruit-page .job-description .table01 .text01 p:nth-child(n + 2) {
    margin: 8px 0 0;
}

.recruit-page .job-description .table01 dl {
    width: 100%;
    margin: 8px 0 0;
    display: flex;
}

.recruit-page .job-description .table01 dd {
    margin: 0 0 0 8px;
    padding: 0 0 0 16px;
    position: relative;
    flex: 1;
}

.recruit-page .job-description .bar dd:before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "/";
    top: 0;
    left: 0;
}

.recruit-page .job-description .table01 .unit+.unit {
    margin: 24px 0 0;
}

.recruit-page .job-description .btn01 {
    margin: 16px 0 0;
}

.recruit-page .job-description .btn01 .btn01__link::before {
    background: var(--bg01);
}

.recruit-page .job-description .btn01 .btn01__link {
    width: 100%;
    padding: 14px 20px 18px;
    border: 2px solid var(--secondary);
    background: var(--secondary);
    font-size: 18px;
    color: var(--secondary);
}

.recruit-page .job-description .btn01 .btn01__link:hover {
    color: var(--white);
}

.recruit-page .job-description .btn01 .btn01__icon {
    width: 24px;
    height: 24px;
    margin: 0 5px 0 0;
}

/* 採用応募フォーム
------------------------------------------------------ */
.recruit_contact .contact-form .form-tag.-required {
    background-color: var(--secondary);
}

.recruit_contact .contact-form input[type="checkbox"]:checked {
    border: 2px solid var(--secondary);
    background: var(--secondary);
}

.recruit_contact .contact-form__footer .title {
    color: var(--secondary);
}

.recruit_contact .submit-btn input {
    background: var(--secondary);
}

.recruit_contact .submit-btn input:hover {
    background: #633c71;
}