@charset "utf-8";

:root {
    /*カラー変数*/
    --main-color: #F3A100;
    --main-color-r: 243;
    --main-color-g: 161;
    --main-color-b: 0;
    --dark-color: #533F1A;
    --pale-color: #FFF6E9;
}

* {
    box-sizing: border-box;
    list-style: none;
}

html {
    font-size: 62.5%;
    color: var(--dark-color);
}

body {
    line-height: 1.5;
}

p {
    line-height: 1.7;
}

a {
    transition: all 0.5s ease 0s;
    color: var(--main-color);
}

a:hover {
    opacity: 0.75;
}

img {
    width: 100%;
}

/*———————————
共通スタイル
———————————*/



/*
横幅、カラム
———————————*/
.col-main {
    width: 100%;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.col-sub {
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:768px) {
    .col-main {}
}


/*
文字
———————————*/
html {
    font-family: "Kiwi Maru", serif;

}

/*
見出し
———————————*/
.el-ttl_xl {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;

}

.el-ttl_lg {
    font-size: 3rem;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 40px;
}

.el-ttl_md {
    font-size: 2.6rem;
    text-align: center;
}

.el-ttl_sm {
    color: var(--main-color);
    font-size: 2.2rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 10px;
    text-align: center;
}

@media screen and (max-width:768px) {
    .el-ttl_xl {
        font-size: 2.4rem;
    }

    .el-ttl_lg {
        font-size: 2.4rem;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .el-ttl_md {
        font-size: 2.2rem;
    }

    .el-ttl_sm {
        font-size: 1.8rem;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
}


/*
リンクボタン
———————————*/


.el-inlink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.el-inlink.un-1link {
    justify-content: center;
}

.el-inlink li {
    width: calc(50% - 5px);
    border: 1px solid var(--main-color);
    background-color: #fff;
    border-radius: 5px;

}

.el-inlink a {
    color: var(--dark-color);
    padding: 10px 20px 10px 15px;
    height: 45px;
    line-height: 1.4;
    font-size: 1.6rem;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.el-inlink a::before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    position: absolute;
    right: 5px;
    color: var(--main-color);
    transition: 0.5s;
    font-size: 1.6rem;
}

@media screen and (max-width:768px) {
    .el-inlink a {
        font-size: 1.5rem;
    }
}

/*
スケジュール表
———————————*/

.el-schedule {
    border: 1px solid var(--main-color);
    display: flex;
    font-size: 2.4rem;
}

.el-schedule > div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.el-schedule dt,
.el-schedule dd {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.el-schedule dt {
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    border-right: 1px solid #fff;
}

.el-schedule dd {
    background-color: #fff;
    color: var(--dark-color);
    text-align: center;
    border-right: 1px solid var(--main-color);
}

.el-schedule div:last-of-type dt,
.el-schedule div:last-of-type dd {
    border: none;
}

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

    .el-schedule {
        font-size: 1.8rem;
    }

    .el-schedule dt,
    .el-schedule dd {
        width: 100%;
        padding-top: 7px;
        padding-bottom: 7px;
    }
}

/*
電話番号
———————————*/
.el-tel {
    color: var(--dark-color);
    font-size: 4.8rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
}

.el-tel img {
    width: 30px;
    margin-right: 10px;
    padding-top: 8px;
}

@media screen and (max-width:768px) {
    .el-tel {
        font-size: 3.8rem;
    }

    .el-tel img {
        width: 24px;
    }
}

/*
お知らせ
———————————*/
.el-news {}

.el-news > a {
    display: flex;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.el-news dt {
    width: 150px;
    margin-right: 30px;
}

.el-news dd {}

@media screen and (max-width:768px) {
    .el-news > a {
        flex-direction: column;
    }
}

/*
GoogleMap
———————————*/
.el-gmap iframe {
    width: 100%;
    height: 400px;
}

.el-gmap .gm-style .review-box {
    display: none;
}

/*
パンくず
———————————*/
.el-pankuzu {
    padding: 30px 0;
    font-size: 1.4rem;

}

.el-pankuzu a {
    color: var(--dark-color);
}

/*
アイコン＋テキスト
———————————*/
.el-iconNtxt_item {
    justify-content: space-between;
    margin-bottom: 50px;
}

.el-iconNtxt_item:last-of-type {
    margin-bottom: 0;
}

.el-iconNtxt_img {
    width: 120px;
    margin-right: 30px;
}

.el-iconNtxt_txt {
    width: calc(100% - 150px);
    flex-direction: column;
    gap: 15px;
    font-weight: 300;
}

.el-iconNtxt_txt h3,
.el-iconNtxt_ttl{
    color: var(--main-color);
}

.el-iconNtxt_btn {
    font-size: 2.4rem;
    background-color: var(--pale-color);
    color: var(--dark-color);
    padding: 10px;
    width: fit-content;
    border-radius: 8px;

}

@media screen and (max-width:768px) {
    .el-iconNtxt_item {
        margin-bottom: 45px;
        flex-direction: column;
        align-items: center
    }

    .el-iconNtxt_img {
        width: 80px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .el-iconNtxt_txt {
        width: 100%;
    }

    .el-iconNtxt_btn {
        font-size: 1.8rem;
        width: 100%;
        text-align: center;
        text-decoration: underline;
    }
    .el-iconNtxt_btn p{
        text-decoration: none;
    }
}


/*
医師
———————————*/


.el-doctor {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.el-doctor_img {
    width: 100%;
    max-width: 170px;
    margin-right: 30px;
    margin-bottom: 20px;
}

.el-doctor_img img {
    border-radius: 8px;
}

.el-doctor_txt {
    display: flex;
    width: calc(100% - 200px);
    flex-direction: column;
    margin-bottom: 20px;
}

.el-doctor_txt:nth-of-type(2) {
    width: 100%;
    justify-content: flex-start;
}

.el-dr_class {
    background-color: var(--main-color);
    text-align: center;
    padding: 4px 10px;
    width: fit-content;
    color: #fff;
    border-radius: 8px;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.el-dr_name {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.el-dr_disc dt {
    color: var(--main-color);
}

.el-dr_disc dt::before {
    content: "＜"
}

.el-dr_disc dt::after {
    content: "＞"
}

.el-dr_disc dd {
    margin-bottom: 10px;
}



/* 2人並び */
.el-doctor_wrap {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

@media screen and (max-width:768px) {
    .el-doctor {}

    .el-doctor.col-5 {
        width: 100%;
    }

    .el-doctor_img {
        width: 145px;
        margin-right: 0;
        margin-right: 20px;
    }

    .el-doctor_txt {
        width: calc(100% - 145px - 20px);
    }

    .el-dr_name {
        font-size: 2.4rem;
    }

    .el-doctor.col-half {
        width: 100%;
    }
}

/*———————————
装飾
———————————*/
/*ボタン */
.st-btn {
    padding: 5px 10px;
    text-align: center;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 8px;
}

/* 枠線ボタン */
.el-btn_border {
    border:1px solid var(--main-color);
    color: var(--dark-color);
    padding: 10px 20px 10px 15px;
    line-height: 1.4;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.el-btn_border::before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    position: absolute;
    right: 5px;
    color: var(--main-color);
    transition: 0.5s;
    font-size: 1.6rem;
}

/* 文字色_メインカラー */
.st-fc_main {
    color: var(--main-color) !important;
}

/* 文字色_ダークカラー */
.st-fc_dark {
    color: var(--dark-color) !important;
}

/* 仕切り線 */
.st-separate {
    width: 1px;
    background-color: var(--main-color);
}



/* ボーダーリスト */
.st-borderList {
    display: flex;
    flex-wrap: wrap;
}

.st-borderList li {
    background-color: var(--pale-color);
    padding: 5px 10px;
    display: flex;
    align-items: center;
    width: 50%;

}

.st-borderList li:nth-child(4n),
.st-borderList li:nth-child(4n-1) {
    background-color: #fff;
}


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

    /* sp時1カラム */
    .st-borderList.un-bdList-1col_sp {
        flex-direction: column;
    }

    .un-bdList-1col_sp li {
        width: 100%;
    }

    .un-bdList-1col_sp li:nth-child(2n) {
        background-color: #fff;
    }

    .un-bdList-1col_sp li:nth-child(4n-1) {
        background-color: var(--pale-color);
    }
}

/* ボーダーテーブル */
.st-bordertable {}

.st-bordertable div {
    display: flex;
    background-color: var(--pale-color);
    padding: 5px 10px;
}

.st-bordertable div:nth-child(2n) {
    background-color: #fff;
}

.st-bordertable dt {
    width: 30%;
    min-width: 100px;
}

.st-bordertable dd {
    width: 70%;
}
.st-bordertable dd a{
    color: var(--dark-color);
    text-decoration: underline;
}
@media screen and (max-width:768px) {
    .st-bordertable div {
    }
    .st-bordertable dt{
        font-weight: 600;
        width: 25%;
        min-width: initial;
    }
    .st-bordertable dd {
        width: 80%;
    }
}

/* 枠線 */
.st-border {
    border: 1px solid var(--main-color);
}




/*———————————
ヘッダー
———————————*/
.ly-header {}

.ly-header_inner {
    width: 100%;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 20px;
}

/* ロゴ */

.bl-logo {
    margin-right: 30px;
}

.bl-logo_img {
    width: 100%;
    max-width: 230px;

}

/* アドレス */

.bl-address {
    line-height: 1.5;
    color: var(--dark-color);
    text-align: right;
}

@media screen and (max-width:768px) {
    .ly-header_inner {
        justify-content: center;
    }

    .bl-logo {
        margin-right: 0;
    }

    .ly-header .bl-address {
        display: none;
    }
}

/*———————————
ナビ
———————————*/
.ly-nav_inner {
    padding: 0 20px 10px;
    height: 60px;
}

.ly-nav_inner > li {
    padding: 10px 0;
    line-height: 1.5;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--dark-color);
    position: relative;
}

.ly-nav_inner > li:last-of-type {
    border-right: 1px solid var(--dark-color);
}



.ly-nav_inner  a {
    padding: 14px 5px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--dark-color);
}

.ly-nav_inner  a:hover {
    color: var(--main-color);
    text-decoration: underline;
}


/*
ホバー時展開 */

.ly-nav_hover {
    visibility: hidden;
    /*デフォルトでは非表示の状態にしておく*/
    opacity: 0;
    /*不透明度0*/
    transition: all .3s;
    /*表示の変化を0.3秒に指定*/
    width: max-content;
    position: absolute;
    top: 50px;
    left: 0;
    text-align: left;
    background-color: #fff;
    transition: opacity .3s;
}

/*ホバーしたら表示*/
.ly-nav_inner > li:hover .ly-nav_hover {
    visibility: visible;
    /*Gナビメニューにホバーしたら表示*/
    opacity: 1;
    /*不透明度1*/;
}

.ly-nav_hover > li {
    padding: 10px;
    border-bottom: 1px solid var(--main-color);
}


.ly-nav_hover > li:last-of-type {
    border: none;
}

/* ホバー色変更 */
.ly-nav_inner > li:hover,
.ly-nav_hover > li:hover {
    background-color: var(--pale-color);
    transition: all .3s;
}

.ly-nav_inner > li:hover >a,
.ly-nav_hover > li:hover a {
    opacity: 1;
    color: var(--main-color);
}



@media screen and (max-width:768px) {
    .ly-nav {
        display: none;
    }

}


/*———————————
メイン
———————————*/
.ly-main.un-top {
    padding-top: 100px;
}

/*———————————
トップページ
———————————*/
@media screen and (max-width:768px) {

    .un-top {
        padding-left: 0;
        padding-right: 0;
    }
}

/*
メインvisual
———————————*/
.sec-mainV img {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*
各ページ概要
———————————*/
.sec-topinfo_inner {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.sec-topinfo_item {
    background-color: var(--pale-color);
    padding: 40px;
    border-radius: 8px;
}

.sec-topinfo_item h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.sec-topinfo_txt p {
    font-size: 1.6rem;
    /* テキスト高さ揃え 3行 */
    line-height: 150%;
    min-height: calc(1.6em * 3);
    letter-spacing: 1.5px;
}


/* テキスト間余白 */
.sec-topinfo_txt {
    gap: 20px;
}

@media screen and (max-width:768px) {
    .sec-topinfo_item {
        padding: 20px;
    }

    .sec-topinfo_item h2 {
        font-size: 2.4rem;
    }

    .sec-topinfo_item p {
        font-size: 1.4rem;
        min-height: max-content;

    }

    .un-toptext_height {
        min-height: initial;
    }

    .sec-topinfo_txt {
        flex-direction: column;
    }
}

/* item 2つ並び */
.sec-topinfo .col-half {
    width: calc(50% - 10px);
}

@media screen and (max-width:768px) {
    .sec-topinfo .col-half {
        width: 100%;
    }
}

/* アイコン */
.sec-topinfo_icon {
    text-align: center;
    margin-bottom: 20px;
}

.sec-topinfo_icon img {
    height: 80px;
}

/* テキスト系縦揃え */
.col-half .sec-topinfo_txt {
    flex-direction: column;
}

/* 箱内分割 */
.sec-topinfo_halfbox {
    justify-content: space-between;
}

@media screen and (max-width:768px) {
    .sec-topinfo_halfbox {
        flex-direction: column;
    }
}

/* 訪問診療 */
.un-tophomecare {
    flex-wrap: wrap;
    justify-content: space-between;
}

.un-tophomecare > h2 {}

.un-tophomecare .col-half {
    width: calc(50% - 20px);
}

@media screen and (max-width:768px) {
    .un-tophomecare {
        flex-direction: column;
    }

    .un-tophomecare .col-half {
        width: 100%;
    }

    .un-tophomecare .col-half:first-of-type {
        margin-bottom: 40px;
    }
}


/* 予約外来 */
.sec-topinfo_item.un-top-gairai {
    padding-left: 40px;
    padding-right: 40px;
}



@media screen and (max-width:768px) {
    .sec-topinfo_item.un-top-gairai {
        padding-left: 20px;
        padding-right: 20px;
    }

    .un-top-gairai .st-separate {
        width: 100%;
        height: 1px;
        border-left: none;
        border-bottom: 1px solid var(--main-color);

    }

}

.sec-topinfo_schedule {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.sec-topinfo_schedule p {
    text-align: center;
}

.sec-topinfo_wrap {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.sec-topinfo_tel {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sec-topinfo_tel .el-tel {
    font-size: 4rem;
}

.sec-topinfo_tel span {
    margin-left: 20px;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
}

@media screen and (max-width:990px) {
    .sec-topinfo_tel span br {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .sec-topinfo_schedule {
        width: 100%;
        padding-bottom: 30px;

    }

    .sec-topinfo_wrap {
        width: 100%;
        padding-top: 30px;
    }

    .sec-topinfo_tel {
        flex-direction: column;
    }

}

/*
お知らせ
———————————*/
.sec-topnews {
    flex-direction: column;
}

.sec-topnews .el-news {
    margin-bottom: 20px;
}

.sec-topnews_alllink {
    display: block;
    margin-left: auto;
    color: var(--dark-color);
}

@media screen and (max-width:768px) {
    .sec-topnews {
        padding: 0 20px;
    }
}

/*
アクセス
———————————*/

.sec-topaccess {}

@media screen and (max-width:768px) {
    .sec-topaccess {
        padding: 0 20px;
    }
}

/*———————————
下層ページ
———————————*/

.sec-underttl {
    padding: 120px 0;
    justify-content: center;
    align-items: center;
    background-image: url(../img/common/underbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width:768px) {
    .sec-underttl {
        padding: 40px;
    }

    .sec-inlink.col-5 {
        width: 100%;
        max-width: 500px;
    }
}

/*
画像とテキスト
———————————*/

.bl-imgNtxt {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.bl-imgNtxt_img {
    width: 48%;
    border-radius: 8px;
    line-height: 1;

}

.bl-imgNtxt_img p:has(img) {
    line-height: 1;
}

.bl-imgNtxt_img img {
    vertical-align: top
}

/* 画像下注釈用 */
.bl-imgNtxt_img span {
    line-height: 1.5;
}

.bl-imgNtxt_txt {
    width: 48%;
}

.bl-imgNtxt_txt h3 {
    color: var(--main-color);
    margin-bottom: 20px;
}

.bl-imgNtxt_txt p {}

@media screen and (max-width:768px) {
    .bl-imgNtxt {
        flex-direction: column;
        align-items: center;
    }

    .bl-imgNtxt_img {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .bl-imgNtxt_txt {
        width: 100%;
    }

    .bl-imgNtxt_txt h3 {
        text-align: center;
        margin-bottom: 15px;
    }
}

/*
訪問診療
———————————*/

/* 対象となる方 */
.bl-subject {
    flex-wrap: wrap;
    justify-content: space-between;
}

.bl-subject_item {
    margin-bottom: 30px;
}

.bl-subject_img {
    width: 88px;
    margin-right: 15px;
}

.bl-subject_txt {
    flex-direction: column;
    gap: 8px;
}

.bl-subject_txt h4 {
    font-size: 2.2rem;

}

.bl-subject_txt p {
    font-size: 1.6rem;
}

.bl-subject_txt span {
    font-size: 1.4rem;
    color: var(--main-color);
}

.bl-subject_item.col-half {
    align-items: center;
}

@media screen and (max-width:768px) {
    .bl-subject_item {
        margin-bottom: 20px;
    }

    .bl-subject_txt {
        width: 100%;
    }

    .bl-subject_item.col-half {
        width: 100%;
    }
}

/* 費用の目安 */
.sec-hc_cash {
    text-align: center;
}

.bl-cash {
    justify-content: space-between;
}

.bl-cash_item {
    background-color: var(--pale-color);
    padding: 20px 0;
    border-radius: 8px;
    flex-direction: column;
    margin-bottom: 20px;
}



@media screen and (max-width:768px) {
    .bl-cash {
        flex-direction: column;
        align-items: center;
    }

    .bl-cash_item {
        width: 80%;

    }
}


/* 流れ */
@media screen and (max-width:768px) {

.sec-hc_flow .el-iconNtxt_ttl{
       text-align: center;
    }
}



/*
医療関係者
———————————*/
/* 実績 */
.sec-hc_result .bl-imgNtxt:nth-of-type(2n) .bl-imgNtxt_img {
    order: 2;
}

.sec-hc_result .bl-imgNtxt:nth-of-type(2n) .bl-imgNtxt_txt {
    order: 1;
}

@media screen and (max-width:768px) {
    .sec-hc_result .bl-imgNtxt_img {
        order: 1;
    }

    .sec-hc_result .bl-imgNtxt_txt {
        order: 2;
    }
}

/* 訪問可能エリア */
.sec-hc_area .bl-imgNtxt_img img {
    border
}

/* 対応可能医療 */

.bl-fixable_item {
    margin-bottom: 50px;
}

.bl-fixable_item:last-of-type {
    margin-bottom: 0;
}

.bl-fixable_item h3 {
    text-align: center;
    font-size: 2rem;
}

.bl-fixable_icon {
    gap: 10px;
    justify-content: center;
}

.bl-fixable_icon li {
    display: flex;
    flex-direction: column;
    width: 20%;
    max-width: 100px;
}

.bl-fixable_icon p {
    width: 100%;
    margin-bottom: 15px;
}

.bl-fixable_icon span {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.2;
}


@media screen and (max-width:768px) {
    .bl-fixable_icon {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .bl-fixable_icon li {
        width: 30%;
        margin-bottom: 10px;
    }

    .bl-fixable_icon p {
        margin-bottom: 5px;
    }

    .bl-fixable_icon span {
        font-size: 1.5rem;
    }

    .bl-fixable_item .col-8 {
        width: 100%;
    }
}


/*
当院について
———————————*/
.sec-ab_greeting h3 {
    color: var(--main-color);
}

/*
アクセス
———————————*/
.bl-ac_about {
    padding-top: 60px;
}

.bl-ac_gmap {
    width: 100%;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width:768px) {
    .bl-ac_about {
    padding-top:10px;
}
}
/*
予約外来
———————————*/
.bl-telbox {
    background-color: var(--pale-color);
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}

.sec-gai_wrap {
    justify-content: space-between;
}

.sec-kanwa_about {
    background-color: var(--pale-color);
    padding: 30px;
}

.sec-kanwa_about h2 {
    font-size: 2.4rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .sec-gai_wrap {
        flex-direction: column;
    }

    .sec-kanwa_about {
        padding: 20px 10px;
    }

    .sec-gai_wrap .col-half {
        width: 100%;
    }

    .sec-gai_wrap .col-half:first-of-type {
        margin-bottom: 35px;
    }
}



/*
医師スタッフ紹介
———————————*/
/* 院長 */
.sec-doctor_mcd .el-doctor {
    margin-bottom: 0;
}

.un-mcd_greeting {
    padding: 20px;
    border-radius: 8px;

}


/*———————————
採用
———————————*/
/*
採用TOP
———————————*/
/* 求人情報 .bl-recruitInfo */
.bl-recruitInfo {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.bl-recruitInfo_item {
    width: 23%;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    overflow: hidden;
}

.bl-recruitInfo_item a {
    display: block;
}

.bl-recruitInfo_item img {
    width: 100%;
    line-height: 0;
    display: block;
}

.bl-recruitInfo_item h3 {
    background-color: var(--main-color);
    text-align: center;
    color: #fff;
    line-height: 1;
    font-size: 2rem;
    padding: 0 15px 0 10px;
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bl-recruitInfo_item h3:after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    color: #fff;
    font-weight: 900;
    position: absolute;
    right: 8px;
    transition: 0.5s;
    font-size: 1.4rem;

}

.bl-recruitInfo_item h3 br {}

@media screen and (max-width:768px) {
    .bl-recruitInfo.col-9 {
        max-width: 500px;
        justify-content: space-between;
    }

    .bl-recruitInfo_item {
        width: 48%;
        margin-bottom: 4%;
    }

    .bl-recruitInfo_item h3 {
        font-size: 1.8rem;
        padding: 0;
        min-height: 50px;
    }

    @media screen and (max-width:500px) {
        .bl-recruitInfo_item h3 br {
            display: block;
        }
    }
}



/*
業務内容
———————————*/
.sec-mainwork {
    border-radius: 8px;
    padding: 20px;
}

.sec-mainwork_list li {
    margin-bottom: 8px;
}

/* 求人リンクボタン */
.bl-recruit_link {
    text-align: center;
    padding: 30px 0;
}

.bl-recruit_link a {
    padding-left: 20px;
    padding-right: 20px;
}


/* 働き方を知る */
.bl-workabout_item {
    border-radius: 8px;
    overflow: hidden;
}

.bl-workabout_img {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bl-workabout_img img {
    display: block;
}

.bl-workabout_txt {
    width: 100%;
    padding: 15px;
}

.bl-workabout_txt h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.bl-workabout_txt p {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.bl-workabout_txt span {
    background-color: var(--main-color);
    color: #fff;
    font-size: 1.4rem;
    padding: 5px;
    border-radius: 5px;
    line-height: 1;
    display: inline-block;
}

@media screen and (max-width:768px) {
    .bl-workabout.col-6 {
        max-width: 375px;
    }

    .bl-workabout_item a {
        flex-direction: column;
        align-items: center;
    }

    .bl-workabout_img {
        margin-top: 10px;
        width: 60%;
        text-align: center;
    }

    .bl-workabout_txt h3 {
        font-size: 2rem;
        text-align: center;
    }

    .bl-workabout_txt span {
        margin-left: auto;
        margin-right: auto;
        display: block;
        text-align: center;
        width: 100px;
    }
}

/* 特徴 */
.bl-icon-2col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bl-icon-2col_item {
    display: flex;
    margin-bottom: 4%;
    flex-direction: column;
}

.bl-icon-2col img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.bl-icon-2col p:first-of-type img {}

.bl-icon-2col h3 {
    width: 100%;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.bl-icon-2col p:nth-of-type(2) {
    font-size: 1.6rem;
    font-weight: 100;
}

@media screen and (max-width:768px) {
    .bl-icon-2col {
        justify-content: center;
    }

    .bl-icon-2col_item.col-half {
        width: 100%;
        max-width: 500px;
        margin-bottom: 40px;
    }

    .bl-icon-2col h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

/* 1日の流れ */

.bl-workflow_item {
    margin-bottom: 20px;
}

.bl-workflow_item:last-of-type .bl-workflow_txt {
    border: none;
}

.bl-workflow_time {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.bl-workflow_time span:nth-of-type(1) {
    width: 100px;
    text-align: right;
}

.bl-workflow_time span:nth-of-type(2) {
    width: 40px;
    text-align: center;
}

.bl-workflow_txt {
    margin-left: 120px;
    border-left: 1px solid var(--main-color);
    padding-left: 20px;
}

.bl-workflow_txt img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
}

@media screen and (max-width:768px) {
    .bl-workflow_time span:nth-of-type(1) {
        width: 65px;
    }

    .bl-workflow_time span:nth-of-type(2) {
        width: 30px;
        font-size: 1.3rem;
    }

    .bl-workflow_txt {
        margin-left: 32px;
    }
}

/* 先輩の声 */
.bl-workVoice .el-iconNtxt_txt {
    gap: 8px
}


/*
プライバシーポリシー
—————————————————*/

@media screen and (min-width: 770px) {
    .page-privacy .wrap {
        width: 900px;
        margin: 0 auto;
    }
}

.page-privacy .kv {
    background: url(../img/common/key_visual.png) no-repeat center center;
    background-size: cover;
}

.page-privacy .content__ttl {
    padding: 45px 0 30px;
    text-align: center;
    font-size: 30px;
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 0.12em;
}

.policy_content {
    padding-bottom: 35px;
}

.policy_content h2 {
    margin-bottom: 10px;
    border-bottom: 2px solid #b8b8b8;
    padding: 25px 0 10px 0;
    font-weight: 500;
    font-size: 22px;
}

.policy_content p {
    font-size: 15px;
    padding: 5px 0;
}

.policy_content .policy_list {
    padding: 10px 0;
}

.policy_content .policy_list h3 {
    font-size: 16px;
    border-bottom: 1px solid #cccccc;
    padding: 10px 0;
    margin-bottom: 8px;
}

.policy_content .policy_list ol.number_ol,
.policy_content .policy_list ol.number_ol li {
    list-style-type: auto;
    font-size: 15px;
    margin-left: 1.3em;
    line-height: 1.75;
    letter-spacing: 1px;
}

.policy_content .policy_list ul.s_list,
.policy_content .policy_list ol.re_number_ol li ul.s_list li {
    list-style-type: disc;
    font-size: 15px;
    margin-left: 1.2em;
    line-height: 1.6;
    letter-spacing: 1px;
    padding: 6px;
}

.policy_content .policy_list ul.s_list li,
.policy_content .policy_list ol.number_ol li ul.s_list li {
    list-style-type: disc;
}

.policy_content .policy_list ul.s_list li,
.policy_content .policy_list ol.re_number_ol li ul.s_list li {
    padding: 0;
    font-size: 15px;
}

.policy_content .policy_list ul.s_list li:before {
    display: none;
}

.policy_content .policy_list ol.re_number_ol {
    counter-reset: count 0;
    font-size: 15px;
    margin-left: 1.2em;
    line-height: 1.6;
    letter-spacing: 1px;
}

.policy_content .policy_list ol.re_number_ol li {
    position: relative;
    padding: 0 0 12px 8px;
    font-size: 15px;
}

.policy_content .policy_list ol.re_number_ol li:before {
    content: "("counter(count)")";
    counter-increment: count 1;
    left: -20px;
    top: 0;
    position: absolute;
}

.policy_content .policy_list ol.re_number_ol li p,
.policy_content .policy_list p {
    padding: 0;
    margin-bottom: 4px !important;
    line-height: 1.7;
}

.policy_content .policy_list ol.re_number_ol li p.addr_txt {
    padding: 10px 0;
}

.policy_content .policy_list a {
    color: #3081be;
}

.policy_content p.addr {
    padding: 10px 0 !important;
}

.policy_content .privacy h3 {
    font-size: 17px;
    border-bottom: 1px solid rgb(233, 225, 202);
    margin: 0px 0px 3px;
    padding: 15px 0px 7px;
}

@media screen and (max-width: 769px) {
    .page-privacy .wrap {
        width: auto;
        margin: 0 5%;
    }

    .page-privacy .content__ttl {
        padding: 15px 0;
        font-size: 20px;
        font-size: 2rem;
    }

    .policy_content h2 {
        font-size: 18px;
    }

    .policy_content .policy_list h3 {
        font-size: 15px !important;
    }

    .policy_content p,
    .policy_content .policy_list ol.number_ol,
    .policy_content .policy_list ol.number_ol li,
    .policy_content .policy_list ul.s_list,
    .policy_content .policy_list ul.s_list li,
    .policy_content .policy_list ol.re_number_ol,
    .policy_content .policy_list ol.re_number_ol li,
    .policy_content .policy_list ol.re_number_ol li ul.s_list li {
        font-size: 13px;
    }
}

.privacy_link {
    text-align: center;
    padding: 13px 0;
}

.privacy_link a {
    font-size: 14px;
    color: #50acd3;
}

/*
お知らせ一覧 .sec-allnews
———————————*/

.sec-allnews{
    padding: 60px 0 100px;
}


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

}
/*
お知らせ詳細 .bl_single
———————————*/

.sec-single {
    padding-top: 80px;
    font-size: 1.6rem;
    line-height: 1.8;
}



.bl_single_item {
    padding: 0 0 30px;
    border-bottom: 1px solid var(--main-color);
}

.bl_single_date {
    font-size: 1.6rem;
    font-weight: 600;
}

.bl_single_title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5vw;
    letter-spacing: 0.5px;
}

@media screen and (max-width:768px) {
    .sec-news.sec-newsSingle {
        width: 100%;
        padding-top: 100px;
    }
}

.bl_single_title {
    margin-bottom: 40px;
}
}

/* 記事内スタイル */
.bl_single_txt {
    width: 100%;
}

.bl_single_txt h4 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 3px solid var(--main-color);
    padding-left: 12px;
    line-height: 1;
    letter-spacing: 0.5px;
}

.bl_single_txt h5 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.bl_single_txt p {
    margin-bottom: 30px;
    line-height: 2;
    text-align: justify;
    letter-spacing: 0.5px;
}

.bl_single_txt strong {
    font-weight: 600;
}

.bl_single_txt img {
    height: auto;
}

.bl_single_txt h6 {
    font-size: 1.4rem;
    margin-top: -30px;
    margin-bottom: 30px;
}

@media screen and (max-width:768px) {
    .bl_single_txt h4 {
        font-size: 2rem;
    }

    .bl_single_txt h5 {
        font-size: 1.7rem;
    }

    .bl_single_txt p {
        font-size: 1.5rem;
    }

    .bl_single_txt h6 {
        font-size: 1.3rem;
    }

}

/* ページャー */
.el_pager_wrap {}

.el_pager {
    padding: 5% 0px;
}

.el_pager_PREV {
    width: 15%;
}

.el_pager a {
    color: var(--dark-color);
}

.el_pager_ALL {
    width: 70%;
    text-align: center;
}
.el_pager_ALL a{
    border:1px solid var(--main-color);
    padding: 10px 20px;
    border-radius: 8px;
}
.el_pager_NEXT {
    width: 15%;
}

/* スマホ */
@media screen and (max-width: 768px) {
    .el_pager {
        padding: 6vw 0px;
    }

    .el_pager_PREV {
        width: 25%;
    }

    .el_pager_ALL {
        width: 50%;
        text-align: center;
    }

    .el_pager_NEXT {
        width: 25%;
    }
}

/*———————————
フッター
———————————*/

.ly-footer {

    padding-top: 40px;

}


.ly-footer .bl-address {
    text-align: left;
    font-size: 1.45rem;
}

.ly-footer_info {
    flex-direction: column;

}

.ly-footer_info .bl-logo {
    margin-bottom: 20px;
    margin-right: 0;
}

.ly-footer-link {
    flex-wrap: wrap;
    gap: 20px 40px;
}



/* 仕切り線余白 */
.ly-footer_inner .st-separate {
    margin: 0 50px;
}


@media screen and (max-width:950px) {
    .ly-footer-link {
        gap: 15px;
    }

    .ly-footer_inner .st-separate {
        margin: 0 20px;
    }
}

@media screen and (max-width:768px) {
    .ly-footer {
        padding-bottom: 120px;
    }

    .ly-footer_inner {
        flex-direction: column;
    }

    .ly-footer_info {
        justify-content: center;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .ly-footer_info .bl-logo {
        margin-bottom: 0;
    }

    .ly-footer_info .bl-logo img {
        max-width: 200px;
    }

    .ly-footer_info .bl-address {
        font-size: 1.4rem;
        text-align: center;
    }

    .ly-footer_info .bl-address br:last-of-type {
        display: none;
    }

    .ly-footer_inner .st-separate {
        display: none;
    }

    .ly-footer-link {
        display: none;
    }
}



.el-alllink {
    font-size: 1.6rem;
}

.el-alllink > li {
    display: flex;
    flex-direction: column;
}

.el-alllink > li > a {
    margin-bottom: 5px;
    width: 100%;
}

/* aタグが並んだときの下余白 */
.el-alllink > li > a:has(+a) {
    margin-bottom: 20px;
}

.el-alllink > li > a.el-alllink_homecare {
    margin-bottom: 5px;
    color: var(--dark-color);
}

/* ページ内リンクネスト */

.el-alllink_nest {
    margin-bottom: 20px;
}

.el-alllink_nest li {}

.el-alllink_nest a {
    color: var(--dark-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.el-alllink_nest a::before {
    content: "—";
    padding-right: 5px;
    font-size: 12px;
    font-weight: bold;
    /* 文字との高さ揃え */
    padding-left: 2px;

}

/* 最後のネストmargin消す */
.el-alllink > li .el-alllink_nest:last-of-type {
    margin-bottom: 0;
}

/*
リンク
———————————*/


.bl-copy {
    background-color: var(--pale-color);
    text-align: center;
    padding: 10px;
    width: 100%;
}


/*——————————
SP時フロートメニュー
———————————*/

.sec-floatmenu {
    display: none;
    transition: all 0.5s ease 0s;
}

@media screen and (max-width:768px) {
    .sec-floatmenu {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        border-top: 1px solid var(--main-color);
        z-index: 999;
        background-color: #fff;
        flex-direction: column;

    }
}

/* 上段 */
@media screen and (max-width:768px) {

    .sec-floatmenu_01 {
        padding: 12px 8px;
        background-color: #fff;
        align-items: center;
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        justify-content: space-between;
        font-size: 1.8rem;
        height: 60px;
    }

    .sec-floatmenu_01 a {
        color: var(--dark-color);
    }

    .float-logo {
        width: 150px;
    }

    .float-tel {
        background-color: var(--main-color);
        color: #fff;
        text-align: center;
        padding: 6px 8px;
        border-radius: 4px;
        /* ロゴ横幅+余白30px */
        width: calc(100% - 150px);
    }

    .float-tel a {
        display: flex;
        color: #fff;
        justify-content: center;
        align-items: center;
        line-height: 1;
    }

    .float-tel a img {
        margin-right: 6px;
        width: 18px;
    }

    .sec-floatmenu_01 li br {
        display: none;
    }
}

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


    .sec-floatmenu_01 {
        font-size: 1.4rem;
        max-width: 400px;
        padding: 10px;
    }

    .float-logo {
        width: 120px;
    }

    .float-tel a {
        font-size: 1.6rem;
    }

    .sec-floatmenu_01 li br {
        display: block;
    }

    .sec-floatmenu_01 li {
        line-height: 1.0;
    }
}


/* 下段 */
@media screen and (max-width:768px) {
    .sec-floatmenu_02 {
        width: 100%;
        background-color: var(--pale-color);
        height: 60px;
    }

    .sec-floatmenu_02inner {
        padding: 8px;
        max-width: 600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;

        justify-content: space-evenly;
        align-items: flex-end;
    }

    .sec-floatmenu_02 li {
        border-right: 1px solid var(--main-color);
        width: 100%;
        height: 43px;
    }

    .sec-floatmenu_02 li:last-of-type {
        border-right: none;
        justify-content: center;
    }

    .sec-floatmenu_02 a {
        flex-direction: column;
        color: var(--dark-color);
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
    }

    .sec-floatmenu_02 p {
        height: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 5px;
    }

    .sec-floatmenu_02 span {
        height: 10px;
    }
}

/*
閉じるボタン———————————*/
@media screen and (max-width:768px) {
    .openbtn {
        position: relative;
        z-index: 9999;
        cursor: pointer;

        align-items: flex-end;
    }


    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 0px;
        height: 2px;
        border-radius: 2px;
        background-color: var(--main-color);
        width: 100%;
    }

    .openbtn span:nth-of-type(1) {
        top: 4px;
    }

    .openbtn span:nth-of-type(2) {
        top: calc(28px / 2);
    }

    .openbtn span:nth-of-type(3) {
        top: 24px;
    }

    .openbtn div {
        line-height: 1;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 0px;
        left: 0px;
        transform: translateY(14px) rotate(-45deg);
        width: 90%;
    }

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

    .openbtn.active span:nth-of-type(3) {
        top: 20px;
        left: 0px;
        transform: translateY(-6px) rotate(45deg);
        width: 90%;
    }
}

/* ドロップアップメニュー */
.sec-floatmenu_03 {
    overflow: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.5s ease 0s;
    color: var(--dark-color);
    font-size: 1.8rem;
}


.panelactive .sec-floatmenu_03 {
    opacity: 1;
    display: flex;
    flex-wrap: wrap;
    transition: all 0.5s ease 0s;
    overflow: visible;
    height: 60vh;
    padding: 20px;
    align-content: flex-start;
}

/*
ドロップアップメニュー 装飾 */
.sec-floatmenu_03 a {}

.sec-floatmenu_03 > li {
    margin-bottom: 20px;
    font-size: 2rem;
    margin-right: 20px;
    position: relative;
}

.sec-floatmenu_03 > li > a {
    position: relative;
    padding-left: 14px;
    display: flex;
    align-items: center;
}

/* ページ内リンク */
.sec-floatmenu_03 > li:has(a + .fmenu03-nest) {
    width: 100%;
}

.fmenu03-nest {
    margin-top: 5px;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
}

.fmenu03-nest > li {
    margin-right: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1.6rem;
}

.fmenu03-nest li:after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--main-color);
    transition: 0.5s;
}

/* メニュードロップアップ時の黒背景 */
.sec-bkcover {
    transition: all 0.5s ease 0s;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sec-bkcover:has(~ .panelactive) {
    position: fixed;
    /* ブラウザの定位置に固定 */
    background: rgba(0, 0, 0, .2);
    /* 背景色を半透明の黒色に */

    opacity: 1;
    /* 要素をコンテンツより前面に（要調整） */
    ;
}

.el-alllink {}

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

    /* masonryレイアウト */
    .sec-floatmenu_03 .el-alllink {
        opacity: 1;
        max-height: 100%;
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        gap: 20px 0;
        transition: all 0.1s ease 0s;

    }

    .sec-floatmenu_03 .el-alllink > li {
        transition: all 0.1s ease 0s;
    }

    .sec-floatmenu_03 .el-alllink > li:nth-of-type(1) {
        order: 1;
        width: 45%;
        transition: all 0.1s ease 0s;
    }

    .sec-floatmenu_03 .el-alllink > li:nth-of-type(2) {
        order: 3;
        width: 55%;
        transition: all 0.1s ease 0s;
    }

    .sec-floatmenu_03 .el-alllink > li:nth-of-type(3) {
        order: 2;
        width: 45%;
        transition: all 0.1s ease 0s;
    }
}
