@charset "utf-8";

/* html {
    scroll-behavior: smooth;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-style: normal;
    color: #2A5A77;
    vertical-align: bottom;
    border: none;
}

button {
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    body {
        min-width: 320px;
        max-width: 100%;
    }
}

h1,
h2,
h3,
p,
li,
a,
dt,
dd,
td,
th,
address,
small {
    font-family: "Zen Maru Gothic", "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

p,
li,
a,
dt,
dd,
td,
th {
    font-size: 16px;
}

h1,
h2,
h3 {
    font-weight: 700;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
}

/* ↓ ナビゲーション */
header {
    width: 100%;
    padding: 10px 40px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.70);
}

.logo-img {
    width: clamp(165px, 20vw, 400px);
}

.logo-img img {
    width: 100%;
}

nav {
    display: flex;
    gap: clamp(10px, 3vw, 52px);
}

nav li a {
    color: #40210F;
    font-weight: 700;
}

.header-contact-pc {
    background-color: #F7BE6F;
    border-radius: 80px;
    display: flex;
}

.header-contact-pc a {
    font-weight: 700;
    color: #fff;
    padding: 14px 30px;
}

.on-page {
    color: #F7BE6F;
}

/* ホバーアクション */
.nav-logo,
nav li a,
.header-contact-pc,
.btn,
.footer-privacy {
    transition: 0.3s;
}

.nav-logo:hover,
.header-contact-pc:hover,
.btn:hover,
.footer-privacy:hover {
    opacity: 0.7;
}

nav li a:hover {
    color: #F7BE6F;
}

/* スマホ時電話ボタン */
.sp-header-right {
    display: none;
}

.header-contact-sp a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 15px;
    border-radius: 12px;
    border: 2px solid #F3A3A8;
    background-color: #fff;
    color: #F3A3A8;
    font-weight: 700;
}

.icon-tel-box {
    width: 14px;
    flex-shrink: 0;
}

.icon-tel-box img {
    display: block;
    width: 100%;
}


/* ハンバーガーメニュー */
.navigation {
    display: none;
    background: #fff;
    background-image: url(../images/sp_bottom.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    flex-direction: column;
    gap: 30px;
}

.sp-nav-logo {
    width: 220px;
    margin: 50px auto 10px;
}

.sp-nav-logo img {
    width: 100%;
}

.navigation__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation__list li {
    text-align: start;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {

    .nav-pc,
    .header-contact-pc {
        display: none;
    }

    .sp-header-right {
        display: block;
        display: flex;
        gap: 10px;
    }

    header {
        width: 100%;
        padding: 15px;
        align-items: center;
        position: relative;
        position: fixed;
        z-index: 10;
    }

    .hamburger-menu {
        width: 45px;
        height: 45px;
        background-color: #F7BE6F;
        border-radius: 50px;
        position: relative;
        border: none;
        appearance: none;
        padding: 0;
        cursor: pointer;
        z-index: 9999;
    }

    .hamburger-menu__bar {
        display: inline-block;
        width: 17px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
    }

    .hamburger-menu__bar:first-child {
        top: 11px;
    }

    .hamburger-menu__bar:nth-child(2) {
        top: 17px;
    }

    .hamburger-menu__bar:nth-child(3) {
        top: 23px;
    }

    .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
    }

    .hamburger-menu__text {
        color: #fff;
        font-size: 7px;
        padding-top: 20px;
        font-weight: 700;
    }

    .hamburger-menu--open .hamburger-menu__bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }

    .hamburger-menu--open .hamburger-menu__bar:nth-child(3) {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }

    .hamburger-menu--open .hamburger-menu__bar:nth-child(2),
    .hamburger-menu--open .hamburger-menu__text {
        display: none;
    }

    nav li a {
        font-size: 16px;
        font-weight: 700;
    }
}

/* ↑ ナビゲーションここまで */

/* ↓ ページタイトルと画像 */
.h1_area {
    background-image: url(../images/h2-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.h1_area_blank {
    width: 100%;
    height: 74px;
}

.h1-wrapper {
    width: 100%;
    height: 224px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .h1_area {
        background-image: url(../images/h2_sp.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .h1-wrapper {
        height: 136px;
    }
}

/* ↑ ページタイトルと画像ここまで */

/* ↓ コンテンツベース */
.section {
    display: flex;
    padding: 50px 15px;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    align-self: stretch;
}

.blue-section {
    background: #F0FBFF;
}

.h2-wrapper {
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: center;
}

h2 {
    z-index: 5;
}

.h2-underline {
    width: 110%;
    height: 7px;
    background-color: #CFF2FF;
    border-radius: 10px;
    margin-top: -8px;
}

.text-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1000px;
}

.btn {
    display: flex;
    border-radius: 40px;
    background: #F7BE6F;
}

.btn a {
    color: #FFF;
    padding: 10px 20px;
    font-weight: 700;
}

.link-btn a::after {
    content: url(../images/link.svg);
    margin-left: 10px;
    vertical-align: -2px;
}

.tab-btn a::after {
    content: url(../images/tab.svg);
    margin-left: 10px;
    vertical-align: -2px;
}

/* ↑コンテンツベース */

/* ↓フッター */
.water-image-box {
    width: 100%;
    height: 46px;
    background-image: url(../images/footer-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer-blue-box {
    width: 100%;
    padding: 20px 15px;
    background: #2A5A77;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.footer-privacy {
    display: inline-block;
    text-align: center;
    color: #FFF;
    text-decoration: underline;
}

.copy {
    display: inline-block;
    color: #fff;
    font-size: 12px;
}

/* ↑フッターここまで */

/* ↓表 */
.overview-table {
    border-spacing: 0;
}

.overview-tr {
    background-color: #F0FBFF;
}

.overview-th {
    min-width: 130px;
    max-width: 250px;
    font-weight: 700;
    padding: 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 5px solid #fff;
}

.overview-td {
    min-width: 210px;
    padding: 20px;
    border-bottom: 5px solid #fff;
}

.small-span {
    font-size: 12px;
}

@media screen and (max-width:768px) {}

/* ↑表 */

/* ↓トップページ */
/* ↓ファーストビュー */
.fv-area {
    background-image: url(../images/firstview_image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 0 15px;
}

.fv-area-blank {
    width: 100%;
    height: 74px;
}

.fv-h1-wrapper {
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5%;
}

.index-h1-img-box {
    max-width: 230px;
}

.index-h1-img-box img {
    width: 100%;
}

.main-copy {
    font-size: 32px;
    font-weight: 700;
    text-align: start;
}

.sp-br {
    display: none;
}

/* ↑ファーストビュー */

/* ↓topあいさつ */
.greeting-section {
    padding-top: 35px;
}

.greeting-section p {
    text-align: center;
}

.voices-wrapper-pc {
    display: flex;
    gap: 30px;

}

.voice-img-box01 {
    width: 190px;
}

.voice-img-box02 {
    width: 192px;
}

.voice-img-box03 {
    width: 195px;
}

.voice-img-box01 img,
.voice-img-box02 img,
.voice-img-box03 img {
    width: 100%;
}

.voices-wrapper-sp {
    display: none;
}

/* ↑topあいさつ */

/* ↓topご利用の流れ */
.index-card-box {
    list-style: none;
    counter-reset: li;
}

.index-service-card {
    width: 134px;
    height: 134px;
    padding: 5px;
    border-radius: 15px;
    background-color: #fff;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.index-service-card::before {
    counter-increment: li;
    content: counter(li);
    position: absolute;
    left: 5px;
    top: 5px;
    /* 数字のY軸線上の位置を調整 */
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2A5A77;
    font-size: 16px;
    color: #fff;
    line-height: 20px;
    text-align: center;
}

.index-text-box {
    text-align: center;
}

/* ↑topご利用の流れ */

dl {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

dt {
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .fv-area {
        background-image: url(../images/firstview_sp.jpg);
        background-size: cover;
        background-position: center;
    }

    .fv-h1-wrapper {
        height: 90vh;
    }

    .main-copy {
        font-size: 24px;
        min-width: 227px;
    }

    .sp-br {
        display: block;
    }

    .greeting-section p {
        text-align: start;
    }

    .voices-wrapper-pc {
        display: none;
    }

    .voices-wrapper-sp {
        display: block;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .voice-img-box04 {
        width: 300px;
    }

    .voice-img-box05 {
        width: 265px;
    }

    .voice-img-box06 {
        width: 285px;
    }

    .voice-img-box04 img,
    .voice-img-box05 img,
    .voice-img-box06 img {
        width: 100%;
    }

    .index-text-box {
        text-align: start;
    }

    dl {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .fv-h1-wrapper {
        height: 65vh;
        flex-direction: column-reverse;
        gap: 30px;
    }
    .index-h1-img-box {
        width: 150px;
    }

}

/* ↑トップページ */

/* ↓居宅介護支援とはページ */
.text-box-690 {
    max-width: 690px;
}

.card-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.card {
    border-radius: 15px;
    background: #FFF;
    padding: 25px 20px;
}

.service-card {
    display: flex;
    width: 336px;
    height: 409px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.h3-border-left {
    font-size: 16px;
    font-weight: 700;
    padding-left: 22px;
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
}

.h3-border-left::before {
    position: absolute;
    background-color: #2A5A77;
    border-radius: 1em;
    content: "";
    left: 0%;
    top: 5%;
    bottom: 10%;
    width: 12px;
    height: 48px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list-item {
    list-style-type: disc;
    margin-left: 1.5em;
}

/* ↑居宅介護支援とはページ */

/* ↓ご利用の流れ */
.prime {
    font-size: 26px;
    padding-left: 6px;
    vertical-align: -1px;
}

.flow-card-box {
    list-style: none;
    counter-reset: li;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.flow-card {
    display: flex;
    width: 300px;
    height: 395px;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 15px;
    background-color: #fff;
    position: relative;
}

.flow-card::before {
    counter-increment: li;
    content: counter(li);
    position: absolute;
    left: 20px;
    top: 20px;
    /* 数字のY軸線上の位置を調整 */
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2A5A77;
    font-size: 16px;
    color: #fff;
    line-height: 20px;
    text-align: center;
}

.flow-card-title {
    font-weight: 700;
    padding-left: 2rem;
    margin-top: -2px;
}

/* ↑ご利用の流れ */

/* ↓事業所概要 */
.btn-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

/* ↑事業所概要 */

/* ↓お問い合わせ */
.text-box_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.tel_contact {
    font-weight: 700;
    font-size: 40px;
}

.tel_contact::before {
    content: url(../images/tel-icon_contact.svg);
    vertical-align: -2px;
}

address {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ↑お問い合わせ */

/* ↓プライバシーポリシー */
.privacy h1,
.privacy article h2,
.privacy article h3,
.privacy article p,
.privacy article ul li {
    font-family: "Zen Old Mincho", serif;
    color: #333;
}

.privacy h1 {
    margin: 130px 15px 30px;
    text-align: center;
}

.privacy article {
    max-width: 680px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

.privacy article ul li {
    list-style-type: disc;
    margin-left: 2em;
}

.privacy article h2 {
    padding-top: 25px;
    margin-bottom: 5px;
}

.privacy article h3 {
    font-size: 16px;
    margin-left: 1em;
    padding-top: 10px;
    padding-bottom: 3px;
}
/* ↑プライバシーポリシー */

/* JS */
.fadein {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 0.6s;
}

.fadein.active {
    opacity: 1;
    transform: translate(0, 0);
}

.faidein-page,
.logo_fadein h1,
.logo_fadein p {
    display: none;
}