@charset "utf-8";

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1;
    width: 100%;
    -webkit-text-size-adjust: 100%; /*スマホのブラウザでのフォントサイズの自動調整を無効化*/
    -webkit-font-smoothing: antialiased; /*フォントのスムージング*/
    -moz-osx-font-smoothing: grayscale; /*フォントのスムージング*/
    display: block; /*IE6のインラインブロック要素の余白のバグを解消*/
}
* {
    box-sizing: border-box; /*要素の幅と高さにborderとpaddingを含める*/
}
ol, ul {
    list-style: none;
}
/*ブロッククオート(転載・引用元)*/
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}
.container-sl {
    width: 95%;
    max-width: 620px;
    margin: 0 auto;
}

/*画像のフルード化*/
img {
    max-width: 100%;
    height: auto;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #F15A24;
    position: relative;
    padding-bottom: 0.7em;
    line-height: 1.5em;
}
h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background: #F15A24;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.h2-span-text {
    display: block;
    color: #F15A24;
    margin-top: 1.37rem;
    margin-bottom: 1.75rem;
}
h3 {
    font-weight: 700;
}
p {
    line-height: 1.8em;
}

/*マージン（top）*/
.mt-0 {
    margin-top: 0;
}
.mt-10 {
    margin-top: 0.625rem;
}
.mt-20 {
    margin-top: 1.25rem;
}
.mt-30 {
    margin-top: 1.875rem;
}
.mt-40 {
    margin-top: 2.5rem;
}
.mt-50 {
    margin-top: 3.125rem;
}
.mt-60 {
    margin-top: 3.75rem;
}
.mt-70 {
    margin-top: 4.375rem;
}
.mt-80 {
    margin-top: 5rem;
}
/*マージン（bottom）*/
.mb-0 {
    margin-bottom: 0;
}
.mb-10 {
    margin-bottom: 0.625rem;
}
.mb-20 {
    margin-bottom: 1.25rem;
}
.mb-30 {
    margin-bottom: 1.875rem;
}
.mb-40 {
    margin-bottom: 2.5rem;
}
.mb-50 {
    margin-bottom: 3.125rem;
}
.mb-60 {
    margin-bottom: 3.75rem;
}
.mb-70 {
    margin-bottom: 4.375rem;
}
.mb-80 {
    margin-bottom: 5rem;
}

/*テキスト*/
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}

/*リンク共通*/
.link-btn {
    text-align: center;
}
.link-btn a {
    color: #F15A24;
    border: 1px solid #F15A24;
    border-radius: 30px;
    padding: 0.8em 2em;
    font-size: 0.875rem;
    position: relative;
    display: inline-block;
}
.link-btn a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../images/weui_arrow.svg") no-repeat center center;
    background-size: contain;
    margin-left: 0.05em;
    vertical-align: middle;
}
.link-btn a:hover {
    background-color: #fff8f5;
    transition: .5s all;
}

/*ヘッダー*/
.site-title {
    text-align: center;
    padding: 2rem;
}
.site-title > a {
    display: inline-block;
}
.site-title > a:hover {
    opacity: 0.8;
    transition: .5s all;
}
.site-title > span {
    display: block;
    color: #F15A24;
    margin-top: 0.8125rem;
}

@media (max-width: 599px) {
    .site-title {
        text-align: left;
        padding: 2rem 4rem 2rem 0;
    }
}

/*ナビゲーション（PC）*/
.nav-wrapper {
    background-color: #FFF2ED;
}
nav > ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
}
nav > ul li a {
    display: inline-block;
    color: #F15A24;
    line-height: 1.5em;
    padding: 1.3rem 0;
}
nav > ul li a:hover {
    opacity: 0.8;
    transition: .5s all;
}

@media (max-width: 780px) {
    /*スマホボタン*/
    /*ボタンのためのCSS*/
    .open-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    /*xに変化*/
    .open-btn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #F15A24;
        width: 45%;
    }
    .open-btn span:nth-of-type(1) {
        top: 15px;
    }
    .open-btn span:nth-of-type(2) {
        top: 23px;
    }
    .open-btn span:nth-of-type(3) {
        top: 31px;
    }
    .open-btn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .open-btn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .open-btn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    #g-nav ul {
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    nav ul {
        list-style: none;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    nav ul li a {
        display: inline-block;
        text-decoration: none;
        color: #F15A24;
        padding: 0rem;
    }
    
    #g-nav {
        position: fixed;
        z-index: 999;
        top: 0;
        right: -120%;
        width: 100%;
        height: 100vh;
        background: #ffe9e2;
        transition: all .6s;
    }
    #g-nav.panelactive {
        right: 0;
    }
}

/*ヒーローイメージ*/
.hero-image-area {
    background-image: url("../images/hero-main-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-area > div img {
    width: 95%;
    max-width: 450px;
}

/*お知らせ欄（トップページ）*/
.container-small {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
}
.information-list dt {
    float: left;
    line-height: 1.5em;
    margin-bottom: 1rem;
}
.information-list dd {
    margin-left: 8rem;
    line-height: 1.5em;
    margin-bottom: 1rem;
}
.information-list dd > a:hover {
    color: #F15A24;
    transition: .5s all;
}

/*グループホーム*/
.home-list-wrapper {
    background-color: #FFF2ED;
    padding: 1.625rem 0;
}
.g-home-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 3.125rem;
}
.g-home-wrapper > div {
    flex: 1;
}
.g-home-title h3 {
    font-size: 1.25rem;
    margin: 1rem 0;
}
@media (max-width: 788px) {
    .g-home-wrapper {
        display: block;
    }
    .g-home-wrapper > div {
        margin-bottom: 3rem;
    }
}

/*採用＆問い合わせボタン*/
.saiyou-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 3.25rem;
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
}
.saiyou-wrapper > div {
    flex: 1;
}
@media (max-width: 788px) {
    .saiyou-wrapper {
        display: block;
    }
    .saiyou-wrapper > div {
        margin-bottom: 3rem;
    }
}
.saiyou-btn {
    background-image: url(../images/syokuin-saitou-btn-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.saiyou-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.saiyou-btn a {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    z-index: 2;
    position: relative;
}
.saiyou-btn a:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}
.contact-btn {
    border: 1px solid #F15A24;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contact-btn h4 {
    margin-bottom: 1rem;
    color: #F15A24;
}
.contact-btn a {
    color: #F15A24;
    font-size: 1.7rem;
    font-weight: bold;
    text-decoration: none;
}
.contact-btn a:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}

/*footer*/
.footer-wrapper {
    border-top: 3px solid #F15A24;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
}
.footer-title-logo a img {
    display: inline-block;
    max-width: 350px;
}
.footer-title-logo > span {
    display: block;
    color: #F15A24;
    margin: 0.8125rem 0 1rem 0;
}
.footer-address > address {
    line-height: 1.5rem;
}
.page-top-btn {
    position: absolute;
    right: 20px;
}
.page-top-btn a:hover {
    opacity: 0.8;
    transition: .5s all;
}

.rinen-text {
    font-size: 1.25rem;
    color: #F15A24;
}
/*番号リスト*/
.number-list {
    list-style: decimal inside;
    padding-left: 1.5em;
}
.number-list li {
    margin-bottom: 1.5em;
}
/*生活援助加算*/
.enjyo-list li {
    margin-bottom: 1em;
}

/*施設詳細ページ*/
.sec-01 {
    display: flex;
    justify-content: space-between;
    gap: 2.9rem;
}
.sec-01 > div {
    flex: 1;
}
.sec-02 h3 {
    color: #F15A24;
    margin: 1.5em 0 1em 0;
}
.sec-02 ul li {
    margin-bottom: 0.7em;
    line-height: 1.5em;
}
.sec-02 ul li > span {
    font-weight: 500;
}
@media (max-width: 788px) {
    .sec-01 {
        display: block;
    }
    .sec-01 > div img {
        margin-bottom: 1rem;
    }
}

/*写真ギャラリー*/
.glly-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.glly-wrapper > div {
    flex: 1;
    text-align: center;
    margin: 1rem 0;
}
@media (max-width: 788px) {
    .glly-wrapper {
        display: block;
    }
    .glly-wrapper > div {
        margin-bottom: 2rem;
    }
}

/*ご利用の流れ*/
.nagare-2 dt {
    color: #F15A24;
    font-size: 1.25rem;
    margin-bottom: 1em;
}
.nagare-2 dt > span {
    margin-right: 2rem;
}
.nagare-2 dd {
    margin-bottom: 3rem;
    line-height: 1.5em;
    margin-left: 5.3rem;
}

/*アクセス*/
.acc-map {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.acc-map > div {
    flex: 1;
}
.acc-map > div h3 {
    color: #F15A24;
    font-size: 1.25rem;
    line-height: 1.5em;
    margin-bottom: 0.5em;
}
.acc-map > div p {
    line-height: 1.5em;
    margin-bottom: 1rem;
}
@media (max-width: 788px) {
    .acc-map {
        display: block;
    }
    .acc-map > div {
        margin-bottom: 50px;
    }
}

/* お問い合わせフォーム */
.h3-title {
    color: #F15A24;
    font-size: 1.25rem;
    margin-bottom: 0.7em;
}
.tel-text {
    font-size: 2rem;
}
.contact-form {
    border-radius: 10px;
    max-width: 500px;
}
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}
.contact-form label {
    margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
    padding: 0.7em 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #F15A24;
    outline: none;
}
.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-form button[type="submit"] {
    background: #F15A24;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8em 2.5em;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
}
.contact-form button[type="submit"]:hover {
    background: #d94c1a;
}

/*アーカイブ*/
.arc-title dt {
    margin-bottom: 1rem;
}
.arc-title dd {
    color: #F15A24;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #F15A24;
    margin-bottom: 2rem;
}
.arc-title dd a:hover {
    opacity: 0.8;
    transition: .5s all;
}

/*お知らせ詳細*/
.text-con p {
    margin-bottom: 1rem;
    line-height: 1.7em;
}
.text-con h3 {
    color: #F15A24;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.text-con h4 {
    color: #F15A24;
    border-left: 5px;
}
.text-con a {
    color: #d94c1a;
    text-decoration: underline;
}
.text-con a:hover {
    opacity: 0.8;
    transition: .5s all;
}

/*パンくず*/
/*パンくず*/
.pankuzu a {
    color: #d94c1a;
    display: inline-block;
    text-decoration: underline;
    line-height: 1.5em;
    margin: 5px 0 10px 0;
}
.pankuzu a:hover {
    opacity: 0.8;
    transition: all .5s;
}

/* MW WP Form用のボタンスタイル */
.mw_wp_form .mw_wp_form_confirm,
.mw_wp_form .mw_wp_form_submit,
.mw_wp_form input[type="submit"],
.mw_wp_form button[type="submit"],
.mw_wp_form .submit-button {
    background: #F15A24;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8em 2.5em;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.mw_wp_form .mw_wp_form_confirm:hover,
.mw_wp_form .mw_wp_form_submit:hover,
.mw_wp_form input[type="submit"]:hover,
.mw_wp_form button[type="submit"]:hover,
.mw_wp_form .submit-button:hover {
    background: #d94c1a;
}

/* MW WP Formのフォーム全体のスタイル調整 */
.mw_wp_form {
    border-radius: 10px;
    max-width: 500px;
}
.mw_wp_form .form-group,
.mw_wp_form dl {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}
.mw_wp_form dt,
.mw_wp_form label {
    margin-bottom: 0.5rem;
}
.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form textarea {
    padding: 0.7em 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s;
}
.mw_wp_form input[type="text"]:focus,
.mw_wp_form input[type="email"]:focus,
.mw_wp_form input[type="tel"]:focus,
.mw_wp_form textarea:focus {
    border-color: #F15A24;
    outline: none;
}
.mw_wp_form textarea {
    resize: vertical;
    min-height: 100px;
}

/* MW WP Formのボタンエリアを中央寄せ */
.mw_wp_form .mw-wp-form-submit,
.mw_wp_form .mw-wp-form-confirm-area {
    text-align: center;
}

/*株式会社エスティーリンクボタン*/
.st-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}
.st-link-wrapper > div {
    flex: 1;
}
.st-link-wrapper > div:first-child {
    text-align: center;
}
.st-link-wrapper > div:last-child {
    text-align: left;
}
.st-link-wrapper img {
    height: auto;
}
.st-link-wrapper p {
    line-height: 1.8em;
    margin-bottom: 1rem;
}
.st-link-wrapper a {
    color: #F15A24;
    text-decoration: underline;
}
.st-link-wrapper a:hover {
    opacity: 0.8;
    transition: .5s all;
}

@media (max-width: 788px) {
    .st-link-wrapper {
        display: block;
    }
    .st-link-wrapper > div {
        margin-bottom: 2rem;
        text-align: center;
    }
    .st-link-wrapper > div:last-child {
        text-align: center;
    }
}
