
html {
    scroll-padding-top: var(--header-height);
    /* overflow-x: hidden; */
}

body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    color: #46423A;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

[id] {
    scroll-margin-top: 100px;
}

.block-1024,
.block-768,
.block-450 {
    display: none;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ボタン */
.btn-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FF4444;
    color: #fff;
    border: 2px solid transparent;
    font-size: 24px;
    font-weight: 700;
    border-radius: 20px;
    width: 300px;
    height: 60px;
    position: relative;
    padding-right: 20px;
    box-sizing: border-box;
}

/* .btn--external span {
    border-bottom: 1px solid #fff;
} */

.btn__icon {
    width: 10px;
    height: auto;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.btn__icon--default {
    filter: brightness(0) invert(1);
}

.btn__icon--hover {
    display: none;
}

.btn:hover {
    background: #fff;
    color: #FF4444;
    border: 2px solid #FF4444;
}

.btn:hover .btn__icon--default {
    display: none;
}

.btn:hover .btn__icon--hover {
    display: block;
}



/* ===========================================
ヘッダー
============================================ */
.header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 97%;
    margin: 0 auto;
    height: 100px;
}

main {
    margin-top: 100px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* サイト名 */
.header__branding {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header__category {
    font-size: 14px;
    font-weight: 600;
}

.header__title {
    font-size: 30px;
    font-weight: 700;
    color: #FF4444;
}

/* PCナビ */
.header__nav .header__nav-list {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.header__nav .header__nav-link {
    color: #46423A;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
}

.header__nav .header__nav-link:hover {
    color: #E97F28;
}

/* 電話番号 */
.header__tel {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header__tel-link {
    font-size: 34px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #FF4444;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__tel-link img {
    width: 23px;
    height: auto;
}

.header__tel-time {
    font-size: 12px;
    font-weight: 600;
    padding-left: 12px;
}

/* CTAボタン */
.header__cta {
    display: flex;
    gap: 20px;
}

.header__btn {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid transparent;
}

.header__btn--red {
    background: #FF4444;
}

.header__btn--red:hover {
    border: 1px solid #FF4444;
    background-color: #fff;
    color: #FF4444;
}

.header__btn--orange {
    background: #FF8400;
}

.header__btn--orange:hover {
    border: 1px solid #FF8400;
    background-color: #fff;
    color: #FF8400;
}

/* ハンバーガー */
.header__hamburger {
    display: none;
}

/* ドロワー */
.drawer {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.4s ease, visibility 0.4s ease;
    visibility: hidden;
}

.drawer.is-open {
    transform: translateY(0);
    visibility: visible;
}

.drawer__overlay {
    visibility: hidden;
    position: fixed;
    inset: 0;
    z-index: 98;
}

.drawer__overlay.is-open {
    visibility: visible;
}



/* ===========================================
CTA
============================================ */
.cta {
    padding: 60px 0 70px;
    background: url(../img/cta__bg.jpg) center / cover no-repeat;
    position: relative;
}

.cta__deco {
    position: absolute;
}

.cta__deco--left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: auto;
}

.cta__deco--right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: auto;
}

.cta__lead {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 60px;
}

.cta__box {
    background: #fff;
    border: 2px solid #FF8400;
    border-radius: 16px;
    padding: 20px 0 55px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.cta__box-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cta__chara--left,
.cta__chara--right {
    height: auto;
}

.cta__chara--left {
    width: 63px;
}

.cta__chara--right {
    width: 72px;
}

.cta__title {
    font-size: 36px;
    font-weight: 700;
    color: #FF4444;
    line-height: 1.4;
}

.cta__text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.cta__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    border: 2px solid transparent;
    font-weight: 700;
    border-radius: 20px;
    width: 430px;
    height: 90px;
    position: relative;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
}

.cta__btn--tel {
    font-size: 38px;
    background-color: #FF8400;
}

.cta__btn-tel-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}

.cta__btn--tel img {
    width: 35px;
    height: auto;
    filter: brightness(0) invert(1);
}

.cta__btn--tel small {
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 0;
}

.cta__btn--contact {
    font-size: 24px;
    background: #FF4444;
}



/* ===========================================
フッター
============================================ */

.footer {
    width: 100%;
}

.footer__inner {
    /* padding: 60px 20px 40px; */
    padding: 80px 0;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer__name {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__address {
    font-size: 20px;
    /* font-weight: 500; */
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 16px;
}

.footer__tel-wrap {
    gap: 6px;
    width: fit-content;
    margin: 0 auto 50px;
}

.footer__tel {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #FF4444;
    display: flex;
    align-items: center;
    line-height: 1;
    letter-spacing: 0.05em;
}

.footer__tel+.footer__tel {
    margin-top: 14px;
}

.footer__tel-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 5px;
}

.footer__tel-label {
    font-size: 14px;
    /* font-weight: 500; */
    display: block;
}

.footer__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0 0 50px;
}

.footer__sns-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer__nav-list {
    display: flex;
    justify-content: space-between;
}

.footer__nav-link {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #46423A;
}

.footer__nav-link:hover {
    text-decoration: underline;
}

.footer__copy {
    background-color: #FF4444;
    padding: 16px 0;
    text-align: center;
}

.footer__copy p {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}



/* ===========================================
トップページ
============================================ */

/* ===============================
ファーストビュー
================================ */
.fv {
    position: relative;
    width: 100%;
    aspect-ratio: 1200 / 340;
    overflow: hidden;
    background: url('../img/fv__bg.jpg') center/cover no-repeat;
}

.fv__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('../img/fv__img.png') center/cover no-repeat;
}

.fv__text {
    /* -webkit-backdrop-filter: blur(2px); */
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    text-align: center;
}

.fv__catch {
    font-size: 2.3vw;
}

.fv__catch span {
    background-color: rgba(255, 255, 255, 0.8);
    color: #FF4444;
    padding: 0 16px;
    border-radius: 10px;
    margin-right: 5px;
}

.fv__sub {
    font-size: 1.7vw;
    margin-top: 3px;
}

.fv__sub span {
    background-color: rgba(255, 255, 255, 0.8);
    color: #FF8400;
    padding: 0 8px;
    margin: 0 5px;
    border-radius: 10px;
}

.fv__info {
    font-size: 1.2vw;
    margin-top: 7px;
}

/* バッジ */
.fv__badge {
    position: absolute;
    bottom: 20px;
    right: 10%;
}

.fv__badge-circle {
    background-color: #FF4444;
    color: #fff;
    border-radius: 50%;
    width: 11vw;
    height: 11vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.fv__badge-main {
    font-size: 1.7vw;
    color: #FFF500;
    line-height: 1.2;
}

.fv__badge-sub {
    color: #fff;
    font-size: 1.1vw;
    margin-top: 3px;
}


/* ===============================
トップ セクション共通
================================ */
.sec-head {
    text-align: center;
    margin-bottom: 40px;
}

.sec-head__bird {
    width: 80px;
    height: auto;
    margin-bottom: 12px;
    display: block;
    margin: 0 auto 8px;
}

.sec-head__title {
    font-size: 36px;
    font-weight: 700;
    border-bottom: 2px dashed #FF4444;
    display: inline-block;
    padding: 0 20px 10px;
}


/* ===============================
prologue プロローグ
================================ */
.prologue {
    padding: 50px 0 55px;
}

.prologue__lead {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #FF4444;
    margin-bottom: 40px;
}

.prologue__title {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    padding: 12px 0;
    border-top: 2px dashed #FF4444;
    border-bottom: 2px dashed #FF4444;
    width: fit-content;
    margin: 0 auto 40px;
}

.prologue__text {
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.prologue__tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.prologue__tags li {
    background: #51BC00;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 20px;
}


/* ===============================
こんな不安、ありませんか？
================================ */
.worry {
    padding: 65px 0 40px;
    background-color: #FDF5EE;
    background-image: url('../img/bg__texture--beige.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.worry__deco {
    position: absolute;
    z-index: 0;
}

.worry__deco--left {
    bottom: 10%;
    left: 2%;
    width: 260px;
    height: auto;
}

.worry__deco--right {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 520px;
    height: auto;
}

.worry__title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 35px;
}

.worry__box {
    position: relative;
    border: 3px solid #FF4444;
    border-radius: 10px;
    padding: 20px 20px 25px;
    text-align: center;
    margin-bottom: 40px;
    background: #fff;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    box-sizing: border-box;
}

.worry__chara--left,
.worry__chara--right {
    position: absolute;
    bottom: 40px;
}

.worry__chara--left {
    left: -50px;
    width: 90px;
    height: auto;
}

.worry__chara--right {
    right: -50px;
    width: 100px;
    height: auto;
}

.worry__box-title {
    font-size: 30px;
    font-weight: 700;
    color: #FF4444;
    margin-bottom: 16px;
}

.worry__lists {
    list-style: none;
    padding: 0;
    margin: 0;
}

.worry__lists li {
    font-size: 25px;
    font-weight: 700;
}

.worry__lists li+li {
    margin-top: 5px;
}

.worry__catch {
    font-size: 30px;
    font-weight: 700;
    color: #FF4444;
    text-align: center;
    margin-bottom: 20px;
}

.worry__catch::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 40px solid #FF4444;
    margin: 0 auto 30px;
}

.worry__text {
    /* font-size: 15px; */
    line-height: 2.2;
    text-align: center;
}

.worry__em {
    font-size: 22px;
    font-weight: 700;
}


/* ===============================
就労継続支援A型事業所キャンクリエイトとは
================================ */
.about {
    padding: 60px 0 50px;
}

.about__lead {
    background: #51BC00;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 18px 30px;
    border-radius: 22px;
    width: fit-content;
    margin: 0 auto 20px;
    box-sizing: border-box;
}

.about__sub {
    font-size: 24px;
    font-weight: 700;
    color: #51BC00;
    text-align: center;
    margin-bottom: 25px;
}

.about__text {
    text-align: center;
    line-height: 2;
    margin-bottom: 40px;
}

.about__text span {
    font-size: 25px;
    font-weight: 700;
    background-color: #FDEEEE;
    margin-right: 5px;
}

.about__lists {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 0 0 16px;
}

.about__item-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.about__item {
    background: #FF8400;
    border-radius: 8px;
    width: 130px;
    height: 130px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__item-icon {
    width: 45px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 5px;
}

.about__item-wrap--lg .about__item-icon {
    margin: 10px auto 0;
}

.about__item-text {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.5;
}

.about__item-wrap--lg .about__item-text {
    line-height: 1.1;
}

.about__item-note {
    font-size: 16px;
    font-weight: 400;
}

.about__note {
    display: block;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}


/* ===============================
キャンクリエイトが選ばれる4つの強み
================================ */
.strength {
    padding: 60px 0;
    background-color: #FDF5EE;
    background-image: url('../img/bg__texture--beige.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    position: relative;
}

.strength__deco {
    position: absolute;
}

.strength__deco--left {
    left: 2%;
    top: 40%;
    transform: translateY(-50%);
    width: 345px;
    height: auto;
}

.strength__deco--right {
    right: 0;
    bottom: 2%;
    width: 370px;
    height: auto;
}

.strength__box {
    background: #fff;
    border-radius: 16px;
    padding: 60px 0;
    width: 100%;
    max-width: 930px;
    margin: 0 auto 46px;
    box-sizing: border-box;
}

.strength__lists {
    width: fit-content;
    margin: 0 auto;
}

.strength__lists li {
    display: flex;
    align-items: center;
    gap: 25px;
}

.strength__lists li+li {
    margin-top: 40px;
}

.strength__num {
    font-size: 50px;
    font-weight: 700;
    color: #FF4444;
    min-width: 50px;
    border-right: 2px solid #FF4444;
    align-self: center;
    line-height: 1;
    padding: 0 25px 5px 0;
}

.strength__text {
    font-size: 30px;
    font-weight: 700;
}

.strength__text span {
    background-color: #FDEEEE;
    margin: 0 5px;
}


/* ===============================
ここで働く"リアルな仕事"
================================ */
.works {
    padding: 60px 0;
}

.works__lead {
    text-align: center;
    line-height: 2;
    margin-bottom: 60px;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.works__img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.works__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.works__voice {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    padding: 8px 14px;
    box-sizing: border-box;
    width: 280px;
    margin-bottom: 20px;
}

.works__name {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    background-color: #FFF0E2;
    padding: 10px;
    border-radius: 10px;
}


/* ===============================
利用までの流れ
================================ */
.flow {
    padding: 60px 0;
}

.flow__lead {
    text-align: center;
    margin-bottom: 48px;
}

.flow__lists {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 46px;
}

.flow__lists li {
    display: flex;
    align-items: center;
}

.flow__lists li+li::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 30px solid #FF8400;
    margin: 0 20px;
}

.flow__circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #FFF0E2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

.flow__circle small {
    font-size: 16px;
    display: block;
}



/* ===========================================
下層ページ共通
============================================ */
/* FV */
.page-fv {
    width: 100%;
    height: 370px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
    box-sizing: border-box;
    overflow: hidden;
}

.page-about .page-fv {
    background-image: url(../img/page-fv__about.jpg);
}

.page-works .page-fv {
    background-image: url(../img/page-fv__works.jpg);
}

.page-guide .page-fv {
    background-image: url(../img/page-fv__guide.jpg);
}

.page-join-us .page-fv {
    background-image: url(../img/page-fv__join-us.jpg);
}

.page-contact .page-fv {
    background-image: url(../img/page-fv__contact.jpg);
}

.page-blog .page-fv {
    background-image: url(../img/page-fv__blog.jpg);
}

.page-fv__box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 445px;
    height: 110px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.page-fv__en {
    font-size: 20px;
    font-weight: 700;
    color: #FF4444;
    letter-spacing: 0.03em;
}

.page-fv__title {
    font-size: 30px;
    font-weight: 700;
}

.page-fv__box img {
    width: 94px;
    height: auto;
    position: absolute;
    top: -25px;
    right: 10px;
}

.page-fv__deco {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
}

/* 見出しタイトル */
.page-title {
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 2px dashed #FF4444;
    margin-bottom: 32px;
    padding: 0 20px 10px;
    width: fit-content;
    margin: 0 auto 40px;
    text-align: center;
    box-sizing: border-box;
}


/* ===============================
お問い合わせCTA（共通）
================================ */
.contact-cta {
    padding: 40px 0 50px;
    background: #FFEEEE;
}

.contact-cta__title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px dashed #FF4444;
    width: fit-content;
    margin: 0 auto 30px;
}

.contact-cta__btn {
    display: block;
    background: #fff;
    border-radius: 14px;
    color: #46423A;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    padding: 24px;
    max-width: 610px;
    margin: 0 auto;
    box-shadow: 10px 10px 0 #FF4444;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
            box-sizing: border-box;
}

.contact-cta__btn:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 #FF4444;
}



/* ===========================================
事業所について
============================================ */

/* ===============================
就労継続支援A型事業所キャンクリエイトとは
================================ */
.about-intro {
    padding: 100px 0 0;
}

.about-intro__lead {
    background: #51BC00;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 18px 30px;
    border-radius: 22px;
    width: fit-content;
    margin: 0 auto 20px;
    box-sizing: border-box;
}

.about-intro__sub {
    font-size: 24px;
    font-weight: 700;
    color: #51BC00;
    text-align: center;
    margin-bottom: 25px;
}

.about-intro__text {
    text-align: center;
    line-height: 2;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 700;
}

.about-intro__lists {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro__lists li {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #FDF5EE;
    background-image: url(../img/bg__texture--beige.png);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    border-radius: 10px;
    padding: 36px 50px 40px;
}

.about-intro__list-icon {
    width: 112px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro__list-icon img{
    width: 100%;
    height: 100%;
}

.about-intro__item-title {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #FF4444;
    margin-bottom: 10px;
}

.about-intro__item-title span {
    font-size: 20px;
}

.about-intro__item-text {
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
}


/* ===============================
施設紹介
================================ */
.about-facility {
    padding: 90px 0;
}

.about-facility__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    margin-bottom: 50px;
}

.about-facility__item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.about-facility__caption {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin-top: 16px;
    background-color: #FFF0E2;
    border-radius: 10px;
    padding: 5px 0;
}

.about-facility__note {
    font-size: 24px;
    font-weight: 700;
    color: #FF4444;
    text-align: center;
    margin-bottom: 36px;
}


/* ===============================
キャンクリエイトの理念
================================ */
.about-philosophy {
    padding: 70px 0 75px;
    background-color: #FFEEEE;
    background-image: url(../img/bg__texture--beige.png);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.about-philosophy .page-title {
    color: #FF4444;
    border-bottom: none;
    margin-bottom: 25px;
}

.about-philosophy__box {
    border: 3px solid #FF4444;
    border-radius: 10px;
    background: #fff;
    padding: 20px 80px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.about-philosophy__img {
    width: 170px;
    height: auto;
    margin-bottom: 20px;
}

.about-philosophy__catch {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #FF4444;
}

.about-philosophy__text {
    font-size: 20px;
    line-height: 2.2;
    text-align: center;
}


/* ===============================
代表メッセージ
================================ */
.about-message {
    padding: 90px 0;
}

.about-message__wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-message__img {
    width: 310px;
    height: auto;
    flex-shrink: 0;
    border-radius: 10px;
    margin-top: 90px;
}

.about-message__body {
    flex: 1;
}

.page-title--left {
    text-align: left;
    display: block;
    width: 100%;
    border-bottom: 2px dashed #FF4444;
    margin-bottom: 24px;
    padding: 0 0 10px;
}

.about-message__catch {
    font-size: 26px;
    font-weight: 700;
    color: #FF4444;
    margin-bottom: 26px;
}

.about-message__text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.2;
    margin-bottom: 40px;
}

.about-message__sign {
    text-align: right;
}

.about-message__sign span {
    font-size: 26px;
    font-weight: 700;
    margin-left: 30px;
}


/* ===============================
スタッフの想い
================================ */
.about-staff {
    padding: 90px 0 100px;
    background-color: #FDF5EE;
    background-image: url(../img/bg__texture--beige.png);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.about-staff__lists {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 70px;
}

.about-staff__item {
    background: #fff;
    border-radius: 10px;
    padding: 60px 65px 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-staff__profile {
    flex-shrink: 0;
    width: 240px;
    text-align: center;
}

.about-staff__img {
    width: 240px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 12px;
}

.about-staff__role {
    display: inline-block;
    background: #FF4444;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
    width: 100%;
    box-sizing: border-box;
}

.about-staff__name {
    font-size: 22px;
    font-weight: 700;
}

.about-staff__name span {
    font-size: 14px;
    /* font-weight: 400; */
}

.about-staff__text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
}

.about-staff__note {
    font-size: 30px;
    font-weight: 700;
    line-height: 2.0;
    text-align: center;
}

.about-staff__note-span--orange {
    color: #FF8400;
    font-weight: 700;
}

.about-staff__note-span--red {
    color: #FF4444;
    font-weight: 700;
}


/* ===============================
事業所概要
================================ */
.about-overview {
    padding: 110px 0 0;
}

/* テーブル ピンク */
.dl-table {
    font-family: 'Noto Sans JP', sans-serif;
}

.dl-table__row {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #FF4444;
}

.dl-table__row:last-child {
    border-bottom: 1px solid #FF4444;
}

.dl-table__term {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 24px 20px;
    width: 380px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF7F7;
    box-sizing: border-box;
}

.dl-table__desc {
    font-size: 20px;
    padding: 24px 32px;
    line-height: 2;
}

.dl-table__desc a {
    color: #46423A;
}


.about-overview__note {
    font-size: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    margin-top: 36px;
    line-height: 1.8;
}

.about-overview__note a {
    color: #FF4444;
    font-weight: 700;
}


/* ===============================
アクセス
================================ */
.about-access {
    padding: 80px 0 120px;
}

.about-access__address {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
    text-align: center;
    font-style: normal;
    margin-bottom: 30px;
}

.about-access__map {
    width: 100%;
    /* aspect-ratio: 16 / 6; */
    height: 420px;
    margin-bottom: 40px;
}

.about-access__map iframe {
    width: 100%;
    height: 100%;
}

.about-access__text {
    font-size: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
}



/* ===========================================
仕事内容（就労継続支援A型）
============================================ */

/* ===============================
ここで働く"リアルな仕事"
================================ */
.works-list {
    padding: 100px 0 0;
}

.works-list__tags {
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
}

.works-list__tags li {
    background: #51BC00;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 0;
    border-radius: 16px;
    width: 31%;
    text-align: center;
}

.works-list__lead {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}

.works-list__items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.works-list__item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background-color: #FDF5EE;
    background-image: url(../img/bg__texture--beige.png);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    border-radius: 10px;
    padding: 60px 50px;
    overflow: hidden;
}

.works-list__item--reverse {
    flex-direction: row-reverse;
    background-color: #FFF6E8;
}

.works-list__img {
    width: 460px;
    height: auto;
    border-radius: 10px;
}

.works-list__body {
    flex: 1;
}

.works-list__title {
    font-size: 26px;
    font-weight: 700;
    color: #FF4444;
    padding-left: 12px;
    margin-bottom: 12px;
    position: relative;
}

.works-list__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: #FF4444;
    border-radius: 2px;
}

.works-list__item--reverse .works-list__title {
    color: #FF8400;
}

.works-list__item--reverse .works-list__title::before {
    background: #FF8400;
}

.works-list__sub {
    font-size: 22px;
    font-weight: 700;
    color: #FF4444;
    margin-bottom: 14px;
}

.works-list__item--reverse .works-list__sub {
    color: #FF8400;
}

.works-list__text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
    margin-bottom: 20px;
}

.works-list__text a {
    color: #46423A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.works-list__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FF4444;
    color: #FF4444;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    background-color: #fff;
    width: 275px;
    height: 60px;
}

.works-list__btn:hover {
    background: #FF4444;
    color: #fff;
    border: 2px solid transparent;
}

.works-list__item--reverse .works-list__btn {
    border: 2px solid #FF8400;
    color: #FF8400;
}

.works-list__item--reverse .works-list__btn:hover {
    background: #FF8400;
    color: #fff;
    border: 2px solid transparent;
}


/* ===============================
1日の流れ
================================ */
.works-flow {
    padding: 90px 0 0;
}

.works-flow__timeline {
    max-width: 810px;
    margin: 0 auto 50px;
}

.works-flow__item {
    display: grid;
    grid-template-columns: 45px 20px 1fr;
    gap: 0 30px;
    align-items: center;
}

.works-flow__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.works-flow__line::before,
.works-flow__line::after {
    content: '';
    width: 3px;
    flex: 1;
    background: #FF4444;
}

.works-flow__item:first-child .works-flow__line::before,
.works-flow__item--last .works-flow__line::after {
    background: transparent;
}

.works-flow__time {
    font-size: 20px;
    font-weight: 700;
    color: #FF4444;
}

.works-flow__dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #FF4444;
    flex-shrink: 0;
}

.works-flow__text {
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    padding: 24px 0;
}

.works-flow__box {
    border: 3px solid #FF4444;
    border-radius: 10px;
    background: #FFEEEE;
    padding: 16px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.works-flow__box-img {
    width: 122px;
    height: auto;
    margin-bottom: 10px;
}

.works-flow__box-text {
    font-size: 26px;
    font-weight: 700;
}


/* ===============================
スライダー
================================ */
.works-slider {
    padding: 110px 0;
    overflow: hidden;
}

.works-slider__track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: slider-loop 40s linear infinite;
}

.works-slider__track img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    flex-shrink: 0;
}

@keyframes slider-loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* ===========================================
見学から利用開始まで GUIDE
============================================ */

/* ===============================
利用までの流れ
================================ */
.guide-flow {
    padding: 100px 0 80px;
    background-color: #FDF5EE;
    background-image: url(../img/bg__texture--beige.png);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.guide-flow__steps {
    max-width: 850px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-flow__step {
    display: flex;
    gap: 45px;
    align-items: center;
    min-height: 165px;
}

.guide-flow__step:first-child .guide-flow__step-body {
    padding-top: 0;
}

.guide-flow__step-body {
    flex: 1;
}

.guide-flow__step-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.guide-flow__arrow {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 32px solid #FF4444;
    align-self: flex-start;
    margin-left: 64px;
}

.guide-flow__circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #FF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.guide-flow__circle-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.guide-flow__circle-title span {
    display: block;
    font-size: 16px;
}

.guide-flow__step-body {
    flex: 1;
}

.guide-flow__step:first-child .guide-flow__step-body {
    padding-top: 0;
}

.guide-flow__text {
    line-height: 2.0;
}

.guide-flow__em {
    color: #FF4444;
}

.guide-flow__btn {
    width: 300px;
    height: 60px;
    font-size: 24px;
    border-radius: 10px;
    margin-top: 20px;
}

.guide-flow__btn .btn__icon {
    right: 15px;
}

.guide-flow__box {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px 40px;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.guide-flow__box-title {
    font-size: 20px;
    font-weight: 700;
    color: #FF4444;
    margin-bottom: 20px;
}

.guide-flow__box-text {
    line-height: 2;
}

.guide-flow__box-text span {
    background: linear-gradient(transparent 40%, #FDEEEE 40%);
}


/* ===============================
利用条件・待遇
================================ */
.guide-terms {
    padding-top: 100px;
    position: relative;
}

.guide-terms__deco {
    position: absolute;
}

.guide-terms__deco--left {
    bottom: 22%;
    left: 2%;
    width: 260px;
    height: auto;
}

.guide-terms__deco--right {
    bottom: 26%;
    right: 0;
    width: 342px;
    height: auto;
}

.guide-terms__lists {
    margin-top: 40px;
}

.guide-terms__lists li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.guide-terms__lists li+li {
    margin-top: 8px;
}

.guide-terms__lists li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

.guide-terms__text {
    line-height: 2;
}

.guide-terms__imgs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto 60px;
}

.guide-terms__imgs img {
    width: 32%;
    height: auto;
    display: block;
    border-radius: 10px;
}


/* ===============================
よくある質問
================================ */
.guide-faq {
    padding: 100px 0 90px;
    position: relative;
}

.guide-faq__deco {
    position: absolute;
}

.guide-faq__deco--right {
    top: -80px;
    right: 20px;
    width: 290px;
    height: auto;
}

.faq__lists {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq__item {
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 20px 24px;
    background: #FDF5EE;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq__q {
    font-size: 36px;
    font-weight: 700;
    color: #FF4444;
    flex-shrink: 0;
    width: 40px;
}

.faq__a {
    font-size: 36px;
    font-weight: 700;
    flex-shrink: 0;
    width: 40px;
}

.faq__question-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    color: #FF4444;
    flex: 1;
}

.faq__icon {
    font-size: 36px;
    font-weight: 700;
    color: #FF4444;
    flex-shrink: 0;
}

.faq__answer {
    display: none;
    align-items: center;
    gap: 60px;
    padding: 20px 24px;
    background: #F8F8F8;
}

.faq__answer p {
    font-size: 18px;
    line-height: 2;
    flex: 1;
}

.faq__item.is-open .faq__answer {
    display: flex;
}


/* ===============================
相談支援専門員の方へ
================================ */
.guide-supporter {
    padding: 0 0 100px;
}

.guide-supporter__box {
    border: 3px solid #58B70F;
    background-color: #FAFFF7;
    border-radius: 10px;
    padding: 30px 30px 50px;
    text-align: center;
    position: relative;
}

.guide-supporter__img {
    position: absolute;
    top: 38px;
    right: 13%;
    width: 107px;
    height: auto;
}

.guide-supporter__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #51BC00;
    display: inline-block;
}

.guide-supporter__catch {
    font-size: 26px;
    font-weight: 700;
    color: #51BC00;
    margin-bottom: 20px;
}

.guide-supporter__text {
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
}

.guide-supporter__text a {
    color: #FF4444;
}



/* ===========================================
利用者さん募集
============================================ */

/* ===============================
川崎市でA型事業所をお探しの方へ
================================ */
.join-intro {
    padding: 100px 0 0;
}

.join-intro__text {
    text-align: center;
    line-height: 2;
    font-family: 'Noto Sans JP', sans-serif;
}

.join-intro__img {
    display: block;
    margin: 20px auto 0;
    width: 100%;
    height: auto;
    max-width: 610px;
}

.join-intro__catch {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    margin: 30px 0 40px;
}

.join-intro__catch span {
    color: #FF4444;
}


/* ===============================
キャンクリエイト幸区事業所のイイトコロ
================================ */
.join-merit {
    padding: 90px 0 60px;
}

.join-merit__lists {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    list-style: none;
}

.join-merit__item {
    position: relative;
    background: #FDF5EE;
    border-radius: 10px;
    padding: 30px 20px;
    width: 30%;
    text-align: center;
    box-sizing: border-box;
}

.join-merit__num {
    position: absolute;
    top: 0;
    left: 0;
    background: #FF4444;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 0;
}

.join-merit__item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.join-merit__icon {
    width: 130px;
    height: auto;
}

.join-merit__label {
    font-size: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #FF4444;
}

.join-merit__text {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 45px;
}

.join-merit__text span {
    background: #FDEEEE;
    padding: 0 5px;
}

.join-merit__box {
    border: 3px solid #FF4444;
    border-radius: 30px;
    max-width: 710px;
    margin: 0 auto;
    background: #fff;
    padding: 26px 0 35px;
    display: flex;
    justify-content: center;
}

.join-merit__box-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.join-merit__box-lists {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.join-merit__box-row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.join-merit__box-term {
    font-size: 24px;
    font-weight: 700;
    color: #FF4444;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 265px;
}

.join-merit__box-term::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF4444;
    flex-shrink: 0;
}

.join-merit__box-desc {
    font-size: 20px;
    font-weight: 700;
}


/* ===============================
障害者手帳がなくても大丈夫です
================================ */
.join-target {
    padding: 90px 0 80px;
}

.join-target__text {
    text-align: center;
    line-height: 2;
    margin-bottom: 30px;
    font-family: 'Noto Sans JP', sans-serif;
}

.join-target__cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.join-target__card {
    background: #51BC00;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 20px;
    text-align: center;
    width: 320px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.join-target__box {
    background-color: #FDF5EE;
    background-image: url(../img/bg__texture--beige.png);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    border-radius: 20px;
    padding: 45px 20px;
    box-sizing: border-box;
    margin: 0 auto 40px;
    text-align: center;
}

.join-target__box-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.join-target__types {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
}

.join-target__types span {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.join-target__box-lists {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.join-target__box-lists li {
    background: #FF8400;
    color: #fff;
    font-size: 21px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    line-height: 1.6;
    width: 200px;
    height: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.join-target__box-text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
}


/* ===============================
移動が難しい方へ
================================ */
.join-orihime {
    background: url(../img/join-orihime__bg.jpg) center / cover no-repeat;
}

.join-orihime__box {
    background: url(../img/join-orihime__box-bg.png) center / cover no-repeat;
    padding: 50px 30px;
    box-sizing: border-box;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.join-orihime .page-title {
    font-size: 26px;
}

.join-orihime__under {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    display: inline-block;
    border-bottom: 1px solid currentColor;
}

.join-orihime__text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
    margin: 10px auto 26px;
}

.join-orihime__btns {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.join-orihime__btns .btn {
    width: 314px;
}

.join-orihime__btns .btn__icon {
    right: 15px;
}


/* ===============================
動画・資料
================================ */
.join-media {
    padding: 90px 0 120px;
    position: relative;
}

.join-media__deco {
    position: absolute;
}

.join-media__deco--left {
    top: 32%;
    left: 40px;
    width: 260px;
    height: auto;
}

.join-media__deco--right--1 {
    top: 18%;
    right: 0;
    width: 342px;
    height: auto;
}

.join-media__deco--right--2 {
    bottom: 10%;
    right: 20px;
    width: 286px;
    height: auto;
}

.join-media__videos {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 20px;
    margin-bottom: 80px;
    justify-content: flex-start;
}

.join-media__video-item {
    width: calc(50% - 10px);
}

.join-media__video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.join-media__video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.join-media__caption {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    color: #46423A;
}

.join-media__pdfs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.join-media__pdf-item {
    width: calc(50% - 10px);
}

.join-media__pdf-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}


/* ===============================
キャンクリエイトが選ばれる4つの強み
================================ */
.join-beige-bg {
    background-color: #FDF5EE;
    background-image: url('../img/bg__texture--beige.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.join-strength {
    padding: 90px 0 0;
}

.join-strength__box {
    background: #fff;
    border-radius: 50px;
    padding: 70px 135px;
}

.join-strength__item+.join-strength__item {
    margin-top: 60px;
}

.join-strength__title {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #FF4444;
    margin-bottom: 20px;
}

.join-strength__text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
}


/* ===============================
利用者さんの声
================================ */
.join-voice {
    padding: 60px 0 100px;
}

.join-voice__lists {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.join-voice__item {
    background: #fff;
    border-radius: 10px;
    padding: 40px 80px 50px;
    display: flex;
    align-items: center;
    gap: 100px;
}

.join-voice__img {
    width: 240px;
    height: 240px;
}

.join-voice__body {
    flex: 1;
}

.join-voice__name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.join-voice__dl {
    font-family: 'Noto Sans JP', sans-serif;
}

.join-voice__before,
.join-voice__after {
    margin-bottom: 10px;
    font-weight: 700;
}

.join-voice__after {
    color: #FF4444;
    margin-top: 16px;
}

.join-voice__before-text,
.join-voice__after-text {
    line-height: 1.8;
}

.join-voice__after-text {
    color: #FF4444;
}

.join-voice__text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #FF4444;
}

.join-voice__closing {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #FF4444;
}



/* ===========================================
見学・相談のお問い合わせ CONTACT
============================================ */
.contact-lead {
    padding: 60px 0 70px;
    background-color: #FDF5EE;
    background: url(../img/contact-lead__bg.jpg) center / cover no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.contact-lead__text {
    text-align: center;
    line-height: 2.2;
    font-size: 30px;
    font-weight: 700;
}

.contact-form {
    padding: 50px 0 20px;
}

.contact-form__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form__tel-box {
    background: #F5F5F5;
    border-radius: 33px;
    padding: 20px 20px 16px;
    box-sizing: border-box;
    margin-bottom: 48px;
    width: 100%;
    max-width: 710px;
    margin: 0 auto 60px;
}

.contact-form__tel-lead {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.contact-form__tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: #51BC00;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.contact-form__tel-link img {
    width: 35px;
    height: auto;
}

.contact-form__tel-text {
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-form__tel-num {
    font-size: 38px;
}

.contact-form__tel-time {
    font-size: 13px;
}

.contact-form__tel-note {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

/* フォーム */
.contact-form__body {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.cf7-field {
    margin-bottom: 60px;
}

.cf7-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.cf7-required {
    background: #FF4444;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 13px;
    border-radius: 20px;
}

.cf7-optional {
    background: #46423A;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 13px;
    border-radius: 20px;
}

/* ラジオボタン */
.wpcf7-list-item {
    margin: 0;
}

.wpcf7-radio .wpcf7-list-item {
    margin-right: 20px;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

/* テキスト・メール・電話 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"] {
    width: 100%;
    border: 1px solid #FF4444;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 18px;
    line-height: 1.8;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border: 2px solid #FF4444;
    /* line-height: 1.8; */
}

.wpcf7-form input:-webkit-autofill,
.wpcf7-form input:-webkit-autofill:hover,
.wpcf7-form input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #F5F5F5 inset;
    box-shadow: 0 0 0px 1000px #F5F5F5 inset;
}

/* テキストエリア */
.wpcf7-form textarea {
    width: 100%;
    border: 1px solid #FF4444;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 18px;
    box-sizing: border-box;
    height: 210px;
    resize: vertical;
    line-height: 1.8;
}

/* プライバシー */
.cf7-privacy {
    text-align: center;
    margin-bottom: 70px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

.cf7-privacy a {
    color: #46423A;
    text-decoration: none;
    border-bottom: 1px solid #46423A;
}

/* チェックボックス */
.wpcf7-acceptance input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border: 1px solid #FF4444;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    vertical-align: middle;
    flex-shrink: 0;
    margin-right: 12px;
}

.wpcf7-acceptance input[type="checkbox"]:checked {
    background: #FF4444;
}

.wpcf7-acceptance input[type="checkbox"]:checked {
    background: #FF4444;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter' d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* cloudflare */
.cf7-cf-turnstile {
    display: flex;
    justify-content: center;
    margin-bottom: 30px !important;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
    display: block;
    width: 540px;
    height: 90px;
    margin: 0 auto;
    background: #FF4444;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-family: inherit;
}

.wpcf7-form input[type="submit"]:hover {
    opacity: 0.8;
}


/* ===========================================
お問い合わせ完了サンクスページ
============================================ */
.thanks {
    padding: 90px 0 200px;
}

.thanks__title {
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 2px dashed #FF4444;
    padding: 0 20px 10px;
    width: fit-content;
    margin: 0 auto 80px;
    text-align: center;
}



/* ===========================================
ブログ一覧ページ
============================================ */
.blog-list {
    padding: 100px 0 150px;
}

/* タブ */
.blog__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    gap: 20px;
}

.blog__tab {
    border: 1px solid #707070;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #46423A;
    width: 250px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog__tab.is-active {
    background: #46423A;
    border-color: #46423A;
    color: #fff;
}

.blog__tab:hover {
    background: #46423A;
    border-color: #46423A;
    color: #fff;
}

/* 記事一覧 */
.blog__lists {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 115px;
}

.blog__item {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.blog__item:hover {
    opacity: 0.7;
}

.blog__img-wrap {
    width: 320px;
    aspect-ratio: 8 / 5;
    border-radius: 30px;
    overflow: hidden;
}

.blog__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog__body {
    flex: 1;
}

.blog__cat {
    display: inline-block;
    background-color: #F8F8F8;
    color: #46423A;
    font-size: 18px;
    font-weight: 700;
    padding: 2px 26px;
    border-radius: 10px;
    border: 1px solid #707070;
    margin-bottom: 16px;
}

.blog__title {
    font-size: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #46423A;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog__date {
    font-size: 20px;
    color: #46423A;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ページネーション */
.blog__pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.blog__pagination .page-numbers {
    width: 65px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 40px;
    font-weight: 700;
    color: #46423A;
    background-color: #FFEEEE;
}

.blog__pagination .page-numbers.current {
    background: #FF4444;
    color: #fff;
    font-weight: 700;
}

.blog__pagination .page-numbers:hover {
    background: #FF4444;
    color: #fff;
}

.blog__pagination .page-numbers.dots {
    background: none;
    color: #46423A;
    cursor: default;
}

.blog__pagination .page-numbers.dots:hover {
    background: none;
    color: #46423A;
}

/* アーカイブページ */
.blog__archive-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #46423A;
    text-align: center;
}



/* ===========================================
ブログ投稿ページ
============================================ */
.post-single {
    padding: 100px 0 90px;
}

.post-single__wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* メインコンテンツ */
.post-single__main {
    flex: 1;
    min-width: 0;
}

.post-single__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.post-single__cat {
    display: inline-block;
    background: #F8F8F8;
    color: #46423A;
    font-size: 22px;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid #707070;
    width: 250px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-single__date {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.post-single__title {
    font-size: 36px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* 本文 */
.post-single__content {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
    margin-bottom: 60px;
}

.post-single__content h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.post-single__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 32px 0 12px;
}

.post-single__content p {
    margin-bottom: 16px;
}

.post-single__content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 16px 0;
}

.post-single__content a {
    color: #FF4444;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* 著者 */
.post-single__author {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 2px dashed #FF4444;
}

.post-single__author-img-wrap {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.post-single__author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-single__author-label {
    font-size: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 4px;
}

.post-single__author-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.post-single__author-bio {
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #46423A;
}

/* サイドバー */
.post-single__sidebar {
    width: 240px;
    flex-shrink: 0;
}

.post-single__sidebar-block {
    background: #FDF5EE;
    border-radius: 10px;
    padding: 40px 30px 50px;
}

.post-single__sidebar-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.post-single__sidebar-lists {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 40px;
}

.post-single__sidebar-link {
    display: block;
    background: #F8F8F8;
    border-radius: 10px;
    border: 1px solid #707070;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    color: #46423A;
    text-align: center;
}

.post-single__sidebar-link:hover {
    background: #46423A;
    color: #fff;
}

/* アーカイブ */
.post-single__sidebar-lists--archive {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-single__sidebar-link--archive {
    background: none;
    border: none;
    text-align: left;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    padding: 0 0 0 24px !important;
}

.post-single__sidebar-link--archive::before {
    content: '▼';
    position: absolute;
    left: 0;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF4444;
}

.post-single__sidebar-link--archive:hover {
    background: none;
    color: #FF4444;
}



/* ===========================================
プライバシーポリシー
============================================ */
.privacy {
    padding: 90px 0 160px;
}

.privacy__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #FF4444;
}

.privacy__lead {
    margin-bottom: 40px;
    line-height: 2;
    font-family: 'Noto Sans JP', sans-serif;
}

.privacy__item {
    margin-bottom: 45px;
}

.privacy__item-title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #FF4444;
    margin-bottom: 12px;
}

.privacy__item p {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
}

.privacy__item p a {
    color: #46423A;
}

.privacy__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.privacy__list li {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.2;
    padding-left: 1em;
    position: relative;
}

.privacy__list li::before {
    content: '・';
    position: absolute;
    left: 0;
}