@charset "UTF-8";
/*
Theme Name: yell
Description: エール様のテンプレートです
Version: 1.0
Author: T.Yamada
*/

/* 全体 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

body {
    font-family: "Noto Sans JP";
}

:root {
    --orange: #F29100;
    --pink: #EE8599;
    --yellow: #EDE948;
    --bgcolor: #FFFCF2;
    --blue: #9DC3E6;
    --green: #A9D18E;
}




.sec_title {
    color: var(--orange);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 350;
    padding: 0.65rem 0.5rem 0;
}

.sec_title_2 {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
}


.br_sp {
    display: none;
}

.btn {
    display: inline-block;
}

.btn a {
    color: var(--pink);
    transition: background 800ms;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--pink);
    border-radius: 2rem;
}

.btn a::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(img/right_icon.svg) no-repeat;
    background-size: contain;
    margin-left: 1rem;
    position: relative;
    top: 5px;
}

.btn a:hover {
    background-color: var(--pink);
    color: #fff;
}

.btn a:hover::after {
    background: url(img/right_icon_w.svg) no-repeat;
}



.btn_w a {
    color: #fff;
    background: transparent;
    padding: 0.5rem 1.5rem 0.75rem;
    border: 1px solid #fff;
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    transition: .3s;
}

.btn_w a::after {
    background: url(img/right_icon_w.svg) no-repeat;
}

.btn_w a::before {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    right: -60px;
    z-index: -1;
    border-right: 60px solid transparent;
    border-bottom: 60px solid #fff;
    transform: translateX(-100%);
    transition: transform ease .3s;
}

.btn_w a:hover {
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn_w a:hover::before {
    transform: translateX(0);
}

.btn_w a:hover::after {
    background: url(img/right_icon_blue.svg) no-repeat;
}

.title_box {
    display: flex;
    align-items: center;
    padding-bottom: 1.75rem;
}

.title_01 {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    padding-left: 0.25rem;
}

.r_banner {
    position: fixed;
    right: 0;
    bottom: -3px;
    width: 15rem;
    z-index: 200;
    opacity: 0;
    transform: translateX(100px);
}

.sp_banner {
    display: none;
}


/* ＝＝ヘッダー＝＝ */

.flont_header {
    position: absolute;
    width: 100%;
    background: rgba(255, 255, 255, 0.80);
    z-index: 1;

}

.h_top_area {
    display: flex;
    justify-content: space-between;
}

h1 {
    color: #222;
    font-size: 0.625rem;
    font-weight: 400;
    padding-left: 1rem;
}

.h_top_right {
    display: flex;
}



.h_company_btn,
.h_recruit_btn {
    color: #222;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem 2rem;
    width: 9rem;
    border-radius: 0rem 0rem 1rem 1rem;
    background: #EDE948;
    box-shadow: 4px 4px 4px 0px #99972D;
    transition: 500ms;
    margin-right: 1.5rem;
}

.h_top_c_r_area a:hover {
    background-color: #fff;
    color: var(--pink);
}

.h_phone_icon {
    width: 14rem;
}

.h_contact_btn {
    width: 12rem;
}

.h_top_contact_area a {
    transition: 700ms;
}

.h_top_contact_area a:hover {
    opacity: 0.5;
}

.h_bottom_area {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* background-color: pink; */
}

.h_bottom_left_area {
    position: relative;
    top: -2rem;
    left: 1.5rem;
}

.yell_logo {
    width: 14rem;
}

.g-nav {
    display: flex;
}

.g-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    transition: background 1000ms;
    position: relative;
}


.g-nav strong {
    color: #222;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
}

.g-nav span {
    color: var(--orange);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
}

.g-nav li {
    border-right: 1px dashed #EE8599;
}

.g-nav li:nth-child(n+7) {
    display: none;
}

.g-nav li:first-child {
    border-right: 1px dashed #EE8599;
    border-left: 1px dashed #EE8599;
}


.g-nav a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 500ms;
}

.g-nav a:hover::after {
    transform: scale(1, 1);
}

/* ＝＝メインビジュアル＝＝ */

.mainvisual_sp {
    display: none;
}

/* ＝＝挨拶エリア＝＝ */

.ttl_icon {
    width: 80px;
    position: relative;
    left: 0.25rem;
}

.about_area {
    background-image: url(img/about_bg.jpg);
    background-size: cover;
    background-position: 50%;
    padding: 5rem 0;
}

.about_container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.about_left {
    width: 32%;
}

.about_right {
    width: 56%;
}

.about_left img {
    border-radius: 2rem;
    box-shadow: 5px 5px 4px 0px rgba(238, 133, 153, 0.25);
}

.about_right p {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25rem;
    padding-top: 3rem;
}

.pink_span {
    color: var(--pink);
    font-weight: 600;
}

.blue_span {
    color: var(--blue);
    font-weight: 600;
}

.yellow_span {
    color: var(--yellow);
    font-weight: 600;
}

.green_span {
    color: var(--green);
    font-weight: 600;
}

/* ＝＝事業内容エリア＝＝ */
.service_area {
    background: var(--bgcolor);
}

.service_title_area {
    text-align: center;
    padding-top: 3rem;
}

.service_container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
    justify-content: space-around;
    gap: 5rem;
    padding: 3rem 0;
}

.service_container li {
    width: 33%;

}

.service_container a {
    transition: 500ms;
}

.service_container a:hover {
    opacity: 0.7;
}

.service_text_area {
    text-align: center;
    padding-bottom: 3rem;
}

.strong_area {
    color: #FF3535;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    background: #EDE948;
    padding: 0.625rem 1.25rem;
}

/* ＝＝お知らせエリア＝＝ */

.news_area {
    background-image: url(img/news_bg.jpg);
    background-size: cover;
    background-position: 50%;
    padding: 5rem;
}

.news_box {
    width: 80%;
    margin: 0 auto;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.80);
    padding: 1rem 5rem 0;
}

.news_title_area {
    text-align: center;
}

.news_box_in {
    padding: 4rem 0;
}

.news_box_in ul {
    border-top: 1px dotted #333;
}

.news_box_in a {
    display: flex;
    gap: 4rem;
    border-bottom: 1px dotted #333;
    padding: 1rem;
    color: #222;
    transition: background 1000ms;
}



.news_box_in dt {
    width: 30%;
    text-align: center;
}

.news_box_in dd {
    width: 70%;
}

.news_box_in a:hover {
    background-color: var(--pink);
    color: #FFF;


    p {
        color: #FFF;
    }
}



.news_box_in a::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(img/right_icon.svg) no-repeat;
    background-size: contain;
    margin-left: auto;
}

.news_box_in a:hover::after {
    background: url(img/right_icon_w.svg) no-repeat;
}

.news_btn_area {
    text-align: center;
    padding-bottom: 4rem;
}

/* ＝＝ブログエリア＝＝ */

.blog_area {
    background-color: var(--bgcolor);
}

.blog_title_area {
    text-align: center;
    padding: 3rem 0;
}

.blog_area_list {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1.5rem;
    padding: 2rem 0;

}

.blog_area_list li {
    width: 22%;
    display: inline-block;
}



.blog_area_list img {
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem;
    object-fit: cover;
}

.blog_text_box time {
    color: var(--pink);
    padding-left: 1rem;

}

.blog_text_box h4 {
    color: #222;
    font-weight: 400;
}

.blog_btn_area {
    text-align: center;
    padding: 3rem 0;
}

.blog_area_list a {
    transition: 1000ms;
}

.blog_area_list a:hover {
    opacity: 0.5;
}

/* ＝＝お問い合わせエリア＝＝ */
.contact_area {
    background-image: url(img/contact_bg.jpg);
    background-size: cover;
    background-position: 50%;
    padding: 3rem 0;
}

.c_phone_icon {
    width: 4rem;
}

.phone_btn {
    display: inline-flex;
    align-items: center;
}

.phone_btn strong {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contact_area_title {
    text-align: center;
    color: #F29100;
    font-size: 2rem;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    padding: 3rem 0;
}

.contact_box {
    width: 80%;
    margin: 0 auto;
    border-radius: 3.125rem;
    background: rgba(255, 255, 255, 0.70);
}

.contact_btn_area img {
    width: 24rem;
}

.contact_container {
    display: flex;
    justify-content: space-around;

}

.contact_container li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_container p {
    color: #222;
    font-size: 1.25rem;

}

.contact_container span {
    color: #222;
    font-size: 1rem;
}

.contact_btn_area {
    text-align: center;
    padding: 2rem 0 3rem;
}

.contact_btn_area a {
    transition: 700ms;
}

.contact_btn_area a:hover {
    opacity: 0.5;
}

/* ＝＝フッター＝＝ */
footer {
    background-color: var(--bgcolor);
}

.map_icon {
    width: 2rem;
}

.f_phone_icon {
    width: 2rem;
}

.fax_icon {
    width: 2rem;
}

.addres {
    display: flex;
    align-items: center;
}

.footer_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 82%;
    margin: auto;
    padding: 3rem 0;

}

.addres_top {
    padding-top: 1.5rem;
}

.f_left_area {
    width: 50%;
    border-right: 1px solid #999;

}

.f_left_area a {
    transition: 500ms;
}

.f_left_area a:hover {
    opacity: 0.7;
}

.f_right_area {
    width: 50%;
    padding-left: 5rem;
}

.f_nav {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0.375rem 1.5625rem;
    flex-wrap: wrap;

}

.f_nav li {
    width: 45%;
}

.f_nav strong {
    color: #222;
    font-size: 1rem;
    font-weight: 400;
}


.f_nav a::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(img/footer_right_icon.svg) no-repeat;
    background-size: contain;
    margin-right: 1px;
    position: relative;
    top: 6px;
}

small {
    color: #555;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP";
    font-size: 12px;
}

/* ＝＝トップページメディアクエリ＝＝ */

@media screen and (max-width: 796px) {

    /* 全体 */
    .br_sp {
        display: block;
    }

    .sec_title {
        font-size: 1rem;
    }

    .sec_title_2 {
        font-size: 1.25rem;
    }

    .r_banner {
        display: none;
    }

    .sp_banner {
        display: flex;
        position: -webkit-fixed;
        position: fixed;
        bottom: -5px;
        /* right: 0; */
        z-index: 220;
       
    }

    /* ヘッダー */
    .flont_header {
        position: static;
    }

    h1 {
        font-size: 0.5rem;
        padding-left: 0;
    }

    .h_top_right {
        display: none;
    }

    .h_bottom_left_area {
        position: static;

    }

    .yell_logo {
        width: 8rem;
    }

    .g-nav li:nth-child(n+7) {
        display: block;
    }

    .g-nav li {
        border: none;
        padding: 0.35rem 0;
    }

    .g-nav li:first-child {
        border-right: none;
        border-left: none;
    }

    .g-nav strong {
        font-size: 1rem;
    }

    .g-nav span {
        font-size: 0.75rem;
    }

    .g-nav {
        width: 100%;
    }



    /* ハンバーガーメニュー */
    header nav {
        box-sizing: border-box;
        position: fixed;
        top: 60px;
        width: 100%;
        height: calc(100% - 60px);
        background: #fff;
        opacity: 0.8;
        /* 3. スライドメニューの場合 */
        /* display: block; */
        right: -100%;
        transition: right .7s;
        z-index: 1;
        /* ここまで */
    }

    header nav.sp_open {
        right: 0;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    header nav ul li a {
        display: block;
        /* padding: 25px; */
        border-radius: 5px;
        /* color: #666; */
        /* font-size: 1.8rem; */
        text-align: center;
        /* text-decoration: none; */

    }

    #openbtn {
        z-index: 200;
        cursor: pointer;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        right: 0;
        display: inline-block;
        width: 60px;
        height: 60px
    }

    #openbtn span {
        position: absolute;
        top: 24px;
        left: 16px;
        display: inline-block;
        width: 30px;
        height: 3px;
        border-radius: 2px;
        background-color: #999;
        vertical-align: top;
    }

    #openbtn span:nth-child(2) {
        margin-top: 10px;
    }

    #openbtn span:last-child {
        margin-top: 20px;
    }

    #openbtn.open span {
        top: 36px;
        left: 14px;
        width: 35px;
        margin: 0;
    }

    #openbtn.open span:first-child {
        transform: rotate(45deg);
    }

    #openbtn.open span:nth-child(2) {
        display: none;
    }

    #openbtn.open span:last-child {
        transform: rotate(-45deg);
    }

    /* メインビジュアル */

    .mainvisual_pc {
        display: none;
    }

    .mainvisual_sp {
        display: block;
    }


    /* 挨拶エリア */
    .about_area {
        padding: 2rem 0;
    }

    .about_container {
        width: 98%;
        flex-direction: column;

    }

    .about_left {
        width: 100%;
    }

    .about_right {
        width: 100%;
    }

    .about_right p {
        font-size: 0.825rem;
        line-height: 1.5rem;
    }

    /* 事業内容 */
    .service_container {
        width: 98%;
    }

    .service_container li {
        width: 100%;

    }

    /* お知らせエリア */
    .news_area {
        padding: 2rem 0;
    }

    .news_box {
        width: 98%;
        padding: 0.25rem;
    }

    .news_box_in a {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .news_box_in dt {
        text-align: left;
        font-size: 0.75rem;
    }

    /* ブログエリア */
    .blog_area_list {
        width: 98%;
        gap: 2rem;
    }

    .blog_area_list li {
        width: 100%;
    }

    /* お問い合わせエリア */
    .contact_area_title {
        font-size: 1.25rem;
    }

    .contact_box {
        width: 98%;
    }

    .contact_container {
        flex-direction: column;
        gap: 3rem;
    }

    .phone_btn strong {
        font-size: 1.75rem;
    }

    .contact_container p {
        font-size: 1rem;

    }

    .contact_container span {
        font-size: 0.75rem;
    }

    .contact_btn_area img {
        width: 16rem;
    }

    /* フッター */

    .f_left_area {
        width: 98%;
        border-right: none;
    }

    .f_right_area {
        display: none;
    }


}

/* ＝＝以下固定ページ＝＝ */
/* ＝＝共通＝＝ */

.page-title {
    color: #222;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 7rem;
}

.page_sub_title {
    color: var(--orange);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 7rem;
}

/* ぱんくず */

.c-breadcrumbs_bg {
    background-color: var(--bgcolor);
}

.c-breadcrumbs {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #555;
    background-color: var(--bgcolor);
    line-height: 3.2;
}

.c-breadcrumbs>li {
    display: inline-block;
    position: relative;
}

.c-breadcrumbs>li:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin-right: 0.5em;
    margin-left: 0.5em;
}

.c-breadcrumbs a {
    color: #222;
}

/* 見出し */
.ttl_line {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}

.ttl_line:before {
    content: '';
    position: absolute;
    bottom: -10px;
    /* left: 16px; */
    display: inline-block;
    width: 64px;
    height: 1px;
    background-color: var(--pink);
}

/* ページナビ */
.page-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 28px;
    border-top: 1px dashed #666666;
    border-bottom: 1px dashed #666666;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666666;
    list-style: none;
}

.page-nav a {
    text-decoration: none;
    color: #777;
    padding: 5px 8px;
    transition: background 1000ms;
}


.page-nav a:hover {
    background: var(--orange);
    color: #fff;
}

.page-nav a.to-archive {
    padding: 5px 0;
}

/* ＝固定ページ共通のメディアクエリ＝ */

@media screen and (max-width: 796px) {
    .ttl_line {
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.25rem;
        padding-top: 6rem;
    }

    .page_sub_title {
        font-size: 1rem;
    }

    .p_title {
        font-size: 1.25rem;
    }

    .c-breadcrumbs {
        font-size: 0.5rem;
    }
}

/* ＝訪問看護ページ＝ */


.hokan_header-img {
    background-image: url(img/hokan_header.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
}

.vnp_about_area {
    background-image: url(img/hokan_about_bg.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
    padding: 3rem 0 5rem;
}



.vnp_a_p {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    padding-top: 3rem;
}

.vnp_availability_area {
    background-color: #fafafa;
}

.vnp_a_container {
    width: 85%;
    margin: 0 auto;
    padding: 3rem 0;

}

.hokan_aki {
    padding-top: 3rem;
}

.self_intro {
    display: inline-block;
    text-align: center;
    padding-top: 2rem;
}

.self_intro img {
    width: 8rem;
}

.vnp_a_bottom {
    display: flex;
    justify-content: space-between;
    padding-left: 5rem;
}

.vnp_a_bottom strong {
    color: var(--pink);
    font-size: 1.25rem;
    font-weight: 400;

}

.hokan_service_area {
    background-color: var(--bgcolor);
}

.h_s_box {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}

.h_s_title_area {
    text-align: center;
}

.h_s_container {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
}

.h_s_container_text {
    width: 55%;
}

.h_s_container_text p {
    color: #222;
    line-height: 1.5rem;
    padding-top: 1.5rem;
}

.h_s_container_img {
    width: 35%;
}

.vnp_ttline:before {
    left: 12px;

}

.vnp_s_yell_area {
    background-image: url(img/vnp_s_yell_bg.jpg);
    background-size: cover;
    background-position: 50%;
}


.vnp_s_yell_box {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}

.vnp_s_yell_box h3 {
    padding-top: 3rem;
}

.vnp_s_yell_box p {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
    padding: 2rem 0;
}

.vnp_btn_area {
    text-align: right;
}

/* ＝訪問看護ページのメディアクエリ＝ */

@media screen and (max-width: 796px) {
    .vnp_a_p {
        font-size: 0.825rem;
    }

    .vnp_a_container {
        width: 98%;
    }

    .vnp_a_bottom {
        flex-direction: column-reverse;
        padding-left: 0;
    }

    .vnp_a_bottom strong {
        font-size: 0.75rem;
    }

    .h_s_box {
        width: 98%;
    }

    .h_s_container {
        flex-direction: column;
    }

    .h_s_container_text {
        width: 100%;
    }

    .h_s_container_img {
        width: 100%;
    }

    .h_s_container_text p {
        font-size: 0.825rem;
    }

    .h_s_container_sp {
        flex-direction: column-reverse;
    }

    .vnp_s_yell_box {
        width: 98%;
    }

    .vnp_s_yell_box p {
        font-size: 0.825rem;
    }


}

/* ＝ケアマネページ＝ */

.caremane_header-img {
    background-image: url(img/caremane_header.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
}

.caremane_a {
    background-image: url(img/caremane_a_bg.jpg);
    background-size: cover;
    background-position: 50%;
}

.caremane_a span {
    color: #222;
    font-size: 1.5rem;
    position: relative;
    left: -7rem;
}

.caremane_a p {
    line-height: 2rem;
}

.caremane_needs_area {
    background-image: url(img/caremane_n_bg.jpg);
    background-size: cover;
    background-position: 50%;
    padding: 2rem 0;
}

.c_n_title_area {
    text-align: center;
}

.c_n_box {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}

.c_n_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;

}

.caremane_n_img {
    width: 40%;
}

.c_n_list {
    width: 52%;
}

.c_n_list li {
    color: #222;
    font-size: 1.25rem;
    padding: 0.5rem 0;
}

.c_n_list li::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(img/check_icon.svg) no-repeat;
    background-size: contain;
    margin-right: 3px;
    position: relative;
    top: 3px;
}

.caremane_main_area {
    background-color: var(--bgcolor);
    margin-top: -1rem;
}

.c_m_box {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}

.c_m_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
}

.c_m_img {
    width: 35%;
}

.c_m_text {
    width: 60%;
}


.caremane_line:before {
    background-color: var(--yellow);
}

.c_m_text p {
    color: #222;
    font-size: 1rem;
}

.c_m_text strong {
    font-size: 1.125rem;
}

.caremane_box {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}

.caremane_container {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
}

.caremane_intro {
    width: 30%;
}

.caremane_aki {
    width: 60%;
}

.caremane_aki p {
    text-align: right;
    color: #222;
    font-size: 1.25rem;
}

/* ＝居宅ページのメディアクエリ＝ */

@media screen and (max-width: 796px) {

    .caremane_a span {
        font-size: 1rem;
        left: -4.5rem;
    }

    .c_n_box {
        width: 98%;
    }

    .c_n_container {
        flex-direction: column;
    }

    .caremane_n_img {
        width: 100%;
    }

    .c_n_list {
        width: 100%;
    }

    .c_n_list li {
        font-size: 0.825rem;
    }

    .c_m_box {
        width: 98%;
    }

    .c_m_container {
        flex-direction: column;
    }

    .c_m_img {
        width: 100%;
    }

    .c_m_text {
        width: 100%;
    }

    .c_m_text p {
        font-size: 0.825rem;
    }

    .c_m_text strong {
        font-size: 1rem;
    }

    .caremane_box {
        width: 98%;
    }

    .caremane_container {
        flex-direction: column;
        gap: 1rem;
    }

    .caremane_intro {
        width: 100%;
    }

    .caremane_aki {
        width: 100%;
    }

    .caremane_aki p {

        font-size: 0.825rem;
    }

    .caremane_needs_area {
        background-position: 60%;
    }
}

/* ＝鍼灸ページ＝ */

.shinkyu_header-img {
    background-image: url(img/shinkyu_header.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
}

.shinkyu_a {
    background-image: url(img/shinkyu_about_bg.jpg);
    background-size: cover;
    background-position: 50%;

}


.shinkyu_a p {
    line-height: 2rem;
}

.s_p_first_area {
    background-image: url(img/shinkyu_first_bg.jpg);
    background-size: cover;
    background-position: 50%;
    padding-bottom: 3rem;
}

.s_p_first_title {
    text-align: center;
    padding: 2rem 0;
}

.s_p_first_box {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 3rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.60);
}

.shinkyu_line:before {
    background-color: var(--blue);
}

.first_list h4 {
    color: #222;
    font-size: 1.25rem;
    font-weight: 500;
    padding-bottom: 0.25rem;
}

.first_list h4::before {
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background: url(img/dot_icon.svg) no-repeat;
    background-size: contain;
    margin-right: 3px;
    position: relative;
    top: 0.7rem;
}

.first_list p {
    color: #222;
    padding-left: 2.7rem;
}

.first_list li {
    padding: 0.5rem 0;
}

.first_list li:nth-child(even) {
    position: relative;
    left: 10%;
}

.shinkyu_intro_area {
    background-color: var(--bgcolor);
}

.shinkyu_intro_box {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.s_i_text {
    width: 70%;
}

.s_i_img {
    width: 20%;
}

.s_i_text p {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 1rem 0;

}

.shin_span {
    color: #1182EA;
    font-weight: 700;
}

.shin_aki_area {
    background-color: #fafafa;
    padding: 3rem 0;
}

.shin_aki_box {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 3rem;

}

.shin_aki_box p {
    color: #FC3838;
    font-size: 1rem;
    float: right;

}

.shinkyu_aki {
    padding-top: 1.5rem;
}


.shin_text_area {
    text-align: center;
    padding-top: 3rem;
}

.shin_service {
    background-color: var(--bgcolor);
}

.shi_service_box {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 3rem;

}

.shin_s_left {
    width: 45%;
}

.shin_s_right {
    width: 45%;
}

.shin_menu {
    padding-top: 2rem;
}

.shin_s_right h4 {
    color: #222;
    font-size: 1.25rem;
    font-weight: 500;
}

.shin_s_right h4::before {
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background: url(img/dot_icon.svg) no-repeat;
    background-size: contain;
    margin-right: 3px;
    position: relative;
    top: 0.7rem;
}

.shin_s_right p {
    font-size: 1.25rem;
    color: #222;
    padding: 2rem 1rem;
}

.shin_strong {
    background: #ADD095;
    padding: 0.75rem;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 5rem;
}

.shin_strong span {
    color: #FF3535;
    font-size: 2rem;
    padding: 0 0.5rem;
}

.shin_flow_area {
    background-color: #fafafa;
}

.shin_flow_box {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.torikumi_box {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    border-radius: 2rem;
    border: 2px solid #9DC3E6;
    padding: 1rem 1.5rem;
    background: #FFF;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.t_box_text {
    width: 70%;
}

.t_box_img {
    width: 25%;
}

.t_box_text h3 {
    color: #222;
    font-size: 2rem;
    font-weight: 400;
}

.t_box_text p {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
    padding-top: 1rem;
}

.red_span {
    color: #FF3535;
}

.under_icon {
    display: block;
    margin: auto;
    width: 10rem;
    padding: 0.5rem 0;
}

.plus_icon {
    display: block;
    margin: auto;
    width: 4rem;
    padding: 1rem 0;
}

.option {
    border: 2px solid #EE8599;

}

/* ＝鍼灸ページのメディアクエリ＝ */

@media screen and (max-width: 796px) {
    .s_p_first_box {
        width: 98%;
        padding: 0.75rem 0.25rem;
        border-radius: 1rem;
    }

    .first_list h4 {
        font-size: 1rem;
    }

    .first_list h4::before {
        width: 2rem;
        top: 1rem;
    }

    .first_list p {
        padding-left: 2rem;
        font-size: 0.825rem;
    }

    .first_list li:nth-child(even) {
        position: static;
    }

    .shinkyu_intro_box {
        width: 98%;
        flex-direction: column-reverse;
    }

    .s_i_text {
        width: 100%;
    }

    .s_i_img {
        width: 80%;
    }

    .s_i_text p {
        font-size: 0.825rem;
    }

    .shin_aki_box {
        width: 98%;
    }

    .shin_aki_box p {
        font-size: 0.5rem;
    }

    .shin_strong_area {
        font-size: 0.65rem;
    }

    .shi_service_box {
        width: 98%;
        flex-direction: column;
    }

    .shin_s_left {
        width: 100%;
    }

    .shin_s_right {
        width: 100%;
    }

    .shin_s_right p {
        font-size: 0.825rem;
    }

    .shin_strong {
        font-size: 1rem;
        padding: 0.5rem;
        line-height: 3rem;
    }

    .shin_strong span {
        font-size: 1.25rem;
        padding: 0 0.25rem;
    }

    .shin_flow_box {
        width: 98%;
    }

    .torikumi_box {
        flex-direction: column;
        padding: 0.5rem;
    }

    .t_box_text {
        width: 100%;
    }

    .t_box_img {
        width: 100%;
    }

    .t_box_text h3 {
        font-size: 1.25rem;
    }

    .t_box_text p {
        font-size: 0.825rem;
    }

}

/* ＝サポートステーションエールのページ＝ */

.ss_header-img {
    background-image: url(img/ss_header_img.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
}

.ss_a {
    background-image: url(img/ss_about_bg.jpg);
    background-size: cover;
    background-position: 50%;

}

.ss_a p {
    line-height: 2rem;
}

.ss_price_area {
    background-color: #fafafa;
}

.ss_p_box {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}

.ss_line:before {
    background-color: var(--green);
}

.ss_price {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--green);
    margin-top: 3rem;

}

.ss_price dt {
    width: 30%;
    text-align: center;
    border-bottom: 1px solid var(--green);
    background-color: #fff;
    padding: 0.25rem 0;
}

.ss_price dd {
    width: 70%;
    text-align: center;
    border-bottom: 1px solid var(--green);
    background-color: #fff;
    padding: 0.25rem 0;
}

.ss_price dt p {
    border-right: 1px solid #999;

}

.ss_price p {
    padding: 0.9rem 0;
    font-size: 1.5rem;
    color: #222;
}

.ss_price span {
    font-size: 1.25rem;
}

.ss_notes {
    color: #FC3838;
    font-size: 1rem;
    display: flex;
    justify-content: flex-end;
}

.ss_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
}

.ss_intro {
    width: 35%;
}

.ss_aki {
    width: 60%;
}

.ss_service_area {
    background-image: url(img/ss_service_bg.jpg);
    background-size: cover;
    background-position: 50%;
}

.service_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 4rem;
    padding: 3rem 0 5rem;
}

.service_list li {
    width: 24%;
    border-radius: 1.5rem;
    border: 2px solid var(--green);
    background: rgba(255, 255, 255, 0.80);

}

.service_list_in {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #999;
    padding: 1.5rem 0;
    margin: 1rem;
}

.service_list_in h3 {
    color: #0095FF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-weight: 350;
}

.service_icon {
    width: 50%;
}

.service_list p {
    color: #555;
    font-size: 1rem;
    font-weight: 350;
    line-height: 2rem;
    padding: 0 1rem 2rem;
}

/* ＝サポートステーションエールのメディアクエリ＝ */

@media screen and (max-width: 796px) {
    .ss_p_box {
        width: 98%;
    }

    .ss_price p {
        font-size: 1rem;
    }

    .ss_price span {
        font-size: 0.75rem;
    }

    .ss_notes {
        font-size: 0.625rem;
    }

    .ss_container {
        flex-direction: column;
        gap: 1rem;
    }

    .ss_aki {
        width: 100%;
    }

    .service_list li {
        width: 95%;
    }
}

/* ＝会社概要ページ＝ */


.company_img {
    background-image: url(img/company_header.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
}

.company_about_area {
    background-image: url(img/company_about_bg.jpg);
    background-size: cover;
    background-position: 50%;
    padding: 3rem 0;
}

.company_a_box {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.80);
    padding: 3rem 0;
}

.company_a_p {
    padding-top: 2rem;
    line-height: 2rem;
    color: #000;
    font-size: 1rem;
    font-weight: 550;
}

.overview_area {
    background-color: var(--bgcolor);
}

.c_p_overview_box {
    width: 80%;
    margin: auto;
    padding: 3rem 0;
}

.c_p_overview_box h3 {
    margin-bottom: 3rem;
}

.togun_img {
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

table {
    border-collapse: collapse;
    width: 100%;
}

th {
    width: 30%;
    background-color: #fff;
    color: var(--orange);
    font-size: 1rem;
    font-weight: 700;
    border-top: 1px solid var(--orange);
    border-bottom: 1px solid var(--orange);
}

td {
    width: 70%;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    color: #222;
    font-size: 1rem;
}

table th,
table td {
    padding: 1rem;
}

.access_box {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}

.access_addres {
    font-weight: 500;
    color: #333;
    padding-top: 1rem;
}

iframe {
    width: 100%;
}

/* 会社概要ページのメディアクエリ */

@media screen and (max-width: 796px) {
    .company_img {
        background-position: 53%;
    }

    .company_a_box {
        width: 98%;
    }

    .company_a_p {
        font-size: 0.825rem;
    }

    .c_p_overview_box {
        width: 98%;
    }

    th {
        font-size: 0.825rem;
    }

    td {
        font-size: 0.825rem;
    }

    .access_box {
        width: 98%;
    }
}

/* ＝採用情報ページ＝ */


.recruit_img {
    background-image: url(img/recruit_header.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
}

.recruit_about_area {
    background-image: url(img/recruit_a_bg.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
    padding: 3rem 0;
}

.redruit_message_area {
    background-color: var(--bgcolor);
}

.recruit_m_box {
    width: 85%;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recruit_m_img {
    width: 35%;
}

.recruit_m_text {
    width: 60%;
}

.recruit_m_img img {
    border-radius: 2rem;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.recruit_m_text h3 {
    color: var(--orange);
}

.recruit_m_text p {
    color: #222;
}

/* 募集要項 */


.r_p_m_box {
    display: flex;
    flex-wrap: wrap;
    color: #222;
    padding: 0 0 3rem;
}

.recruit_list {
    display: flex;
    justify-content: center;
}

.recruit_list li {
    padding: 0.5rem 0;
    border-right: 1px dashed #EE8599;
}

.recruit_list li:first-child {
    border-right: 1px dashed #EE8599;
    border-left: 1px dashed #EE8599;
}

.r_box {
    width: 65%;
    margin: 0 auto;
    padding: 3rem 0;
}

.recruit_list a {
    padding: 0.5rem 1rem;
    color: #222;
    font-size: 1.25rem;
    transition: 700ms;
}

.nurse_a:hover {
    color: #fff;
    background-color: var(--pink);

}

.riha_a:hover {
    color: #fff;
    background-color: var(--green);
}

.care_a:hover {
    color: #fff;
    background-color: var(--yellow);
}


.r_p_m_box dt {
    width: 30%;
    border-bottom: 3px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.r_p_m_box dd {
    width: 70%;
    border-bottom: 1px solid #555;
    display: flex;
    align-items: center;
}

.r_p_m_box dt,
.r_p_m_box dd {
    padding: 2rem 0;
}

#r_riha dt {
    border-bottom: 3px solid var(--green);
}

#r_riha h3:before {
    background-color: var(--green);
}

#r_caremane dt {
    border-bottom: 3px solid var(--yellow);
}

#r_caremane h3:before {
    background-color: var(--yellow);
}

/* ＝採用情報のメディアクエリ＝ */

@media screen and (max-width: 796px) {
    .recruit_m_box {
        width: 98%;
        flex-direction: column;
        gap: 1rem;
    }

    .recruit_m_img {
        width: 100%;
    }

    .recruit_m_text {
        width: 100%;
    }

    .recruit_m_text p {
        font-size: 0.825rem;
    }

    .recruit_list a {
        font-size: 0.825rem;
    }

    .r_box {
        width: 98%;
    }

    .r_p_m_box dt,
    .r_p_m_box dd {
        font-size: 0.825rem;
        padding: 1rem 0;
    }
}

/* お知らせ一覧詳細 */

.blog-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 5rem 0;
}

.day-cat {
    display: flex;
    gap: 1.5rem;
}

.day-cat time {
    color: var(--orange);
}


.post-title {
    padding-bottom: 3rem;
    color: #222;
    font-size: 1.5rem;
}

.post-text {
    line-height: 2rem;
    color: #222;
}

.post-text img {
    width: auto;
}

@media screen and (max-width: 796px) {
    .blog-wrapper {
        width: 98%;
    }
}

/* ＝ブログ一覧詳細＝ */
.blog_single_area {
    background-color: var(--bgcolor);
}

.blog_img {
    background-image: url(img/blog_header.jpg);
    background-size: cover;
    background-position: 50%;
    text-align: center;
}

.blog-day time {
    color: var(--blue);
}

.blog-title {
    color: var(--orange);
    font-size: 1.5rem;
    padding: 0.5rem 0;
    margin-bottom: 3rem;
    border-bottom: 3px dotted var(--orange);
}

.blog_title {
    display: flex;
}

.blog-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;

}

.blog-box {
    width: 65%;
}

aside {
    width: 30%;
}

.blog_aside_img img {
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem;
    object-fit: cover;
}

.blog_sp {
    display: none;
}

hr {
    margin: 1rem 0;
}

/* ＝ブログのメディアクエリ＝ */

@media screen and (max-width: 796px) {
    .blog-container {
        flex-direction: column;
        gap: 1rem;
        width: 98%;
    }

    .blog-box {
        width: 100%;
    }

    aside {
        width: 100%;
    }

    .blog_sp {
        display: block;
    }

    .blog_pc {
        display: none;
    }

}


/* ＝＝ワードプレスのページネーション＝＝ */
/* 前へ次へ */

.wp-pagenavi {
    display: flex;
    justify-content: flex-end;
    margin-top: 42px;
    padding: 16px;
}

.wp-pagenavi a {
    text-decoration: none;
}

.wp-pagenavi span,
.wp-pagenavi a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--blue);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: 0.3s ease-in;
}

.wp-pagenavi span:not(:last-child),
.wp-pagenavi a:not(:last-child) {
    margin-right: 2.622%;
}

@media screen and (max-width: 768px) {

    .wp-pagenavi span,
    .wp-pagenavi a {
        font-size: 0.875rem;
    }
}

.wp-pagenavi span:hover,
.wp-pagenavi a:hover {
    background-color: var(--blue);
    color: #FFFFFF;
}

.wp-pagenavi span.current {
    background-color: var(--blue);
    color: #FFFFFF;
}

.wp-pagenavi a {
    color: #666666;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
    width: auto;
    padding: 5px 1.2em;
}

/* ＝＝404ページ＝＝ */
.page-404 {
    background: #eee;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
    color: #777;

}

.page-404 h2 {
    font-size: 2rem;
    padding: 64px;
}

/* お問い合わせページ */
.box-white {
    background-color: var(--bgcolor);
    padding: 48px;
}

.form-wrapper {
    max-width: 70%;
    margin: 0 auto;
    background-color: #fff;
    padding: 128px;
    border-radius: 2rem;
}

.form-wrapper p {
    line-height: 32px;
    font-size: 1.2rem;
    color: #555;
}

.text-red {
    color: #DA1725;
}

form {
    margin: 32px 0;
}

.form-box {
    width: 100%;
}

.form-box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.form-box dt,
.form-box dd {
    padding-bottom: 30px;
}

.form-box dt {
    font-weight: 400;
    text-align: left;
}

.form-box dt.message {
    padding-top: 10px;
    vertical-align: top;
}

.form-box dd {
    width: 63.993%;
}

.required {
    display: inline-block;
}

.required::after {
    content: "※";
    display: inline-block;
    padding-left: 1em;
    color: #DA1725;
}

.form-style {
    width: 400px;
    padding: 8px;
    box-shadow: 0 0 0 1px #ccc inset;
    border-radius: 4px;
}

.form-style:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.btn-wrapper {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    display: inline-block;
    min-width: 220px;
    padding: 10px;
    background-image: linear-gradient(to right, #333 0%, #333 50%, #FFFFFF 50%, #FFFFFF 100%);
    background-size: 200%;
    background-position-x: 0;
    border: 1px solid #333;
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    transition: 0.3s ease-in;
}

.btn-submit:hover {
    background-position-x: 100%;
    color: #333;
}

/* お問い合わせページメディアクエリ */
@media (max-width: 796px) {
    .box-white {
        padding: 16px;
    }

    .form-wrapper {
        max-width: 97%;
        margin: 0 auto;
        padding: 16px;
    }

    .form-wrapper p {
        font-size: 0.9rem;
    }

    .form-box dl {
        display: flex;
        flex-direction: column;
    }

    .form-box dd {
        width: 100%;
    }

    .form-style {
        width: 100%;
    }

}

/* ＝＝J-Query＝＝ */


/* ページトップ */
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
}

#page-top a:hover {
    background: var(--pink);
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 101;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove {
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*　右の動き　*/

#page-top.RightMove {
    animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(100px);
    }
}

/* バナーの動き */

.r_banner.LeftMove {
    animation: LeftAnime 0.9s forwards;
}




@keyframes LeftAnime {
    from {
        opacity: 0;
        transform: translateX(240px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.r_banner.RightMove {
    animation: RightAnime 0.9s forwards;
}



@keyframes RightAnime {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(240px);
    }
}



/* ギャラリーフェードイン */
.service_list li {
    opacity: 0;
    transition: all 1.5s;
}

.service_list li.active {
    opacity: 1;
}

.service_container li {
    opacity: 0;
    transition: all 1.5s;
}

.service_container li.active {
    opacity: 1;
}