@charset "utf-8";

:root {
	--mvtext: YakuHanRP, 'Quicksand', 'Zen Maru Gothic', sans-serif;
}

.grecaptcha-badge {
	visibility: hidden;
}

/*=============== 共通 ===============*/
body {
    color: #222;
	background:url(../img/bg-body.png) repeat;
	background-color:#fff;
    font-weight:300;
	font-family: YakuHanRP, 'Quicksand', 'Zen Maru Gothic', sans-serif;
}
h1, h2, h3, h4, h5, h6, .c-site-branding__title {
	font-feature-settings: "palt" 1;
}
.c-entry__body a{
	text-decoration:none;
	font-weight:500;
}
.c-entry__body a:hover{
	opacity:.7;
}
.c-widget .wp-block-group>h2:before,
.c-widget .wp-block-group>h2:after{
	background-color:#999;
}
.c-entries--text{
	border-top:1px dotted #999;
}
.c-entries--text .c-entries__item{
	border-bottom:1px dotted #999;
}
.c-entry-summary__meta {
    justify-content: flex-start;
    font-weight: 400;
}
.c-entries--rich-media .c-entry-summary__figure {
    border-radius: 20px;
}
.c-entry-summary__term{
	border-radius:0 20px 0 20px;
}
.bg{
	background:url(../img/bg-body.png) repeat;
}

.speech-bubble {
	position: relative;
	background-color: var(--accent-color);
	color: white;
	border-radius: 50px;
	padding: 10px 30px;
	width: fit-content;
	font-weight:bold;
}
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--accent-color);
}
.speech-bubble-green {
	position: relative;
	background-color: #5fcc3f;
	color: white;
	border-radius: 50px;
	padding: 10px 30px;
	width: fit-content;
	font-weight:bold;
}
.speech-bubble-green::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #5fcc3f;
}
.mg_t5{
	margin-top:5px;
}
.p-breadcrumbs-wrapper{
	display:none;
}
body.page-template-default .l-contents__inner{
	margin-top: 0;
}
.c-meta__item.c-meta__item--author, .c-meta__item.c-meta__item--modified {
    display: none;
}
.c-prev-next-nav__item{
	border-radius:20px;
}

@media (max-width:39.9375em) {/*640px以下*/
}
@media (min-width: 40em) {/*640px以上*/
	h2.smb-section__title{
		font-size:2.25rem;
	}
}
@media (max-width: 63.9375em) {/*1023px以下*/
}
@media (min-width: 64em) {/*1024px以上*/
	.p-breadcrumbs-wrapper{
		display:block;
	}
	body.page-template-default .l-contents__inner{
		margin-top: var(--contents--gap);
	}
}
@media (min-width: 78.125em) {/*1250px以上*/
}

/*=============== ボタン ===============*/
.handwriting_border .smb-btn,
.handwriting_border .wp-block-button__link {
    padding: 1.2rem 5rem 1.2rem 2.4rem !important;
    position: relative;
    border-radius: 100px;
    background-image: linear-gradient(105deg, rgba(247, 228, 143, 1), rgba(242, 133, 0, 1)) !important;
    color: #fff !important;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}
.handwriting_border .smb-btn::after,
.handwriting_border .wp-block-button__link::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_right_solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    z-index: 2;
}
/* グラデーションボーダー用の疑似要素 - 通常時は非表示 */
.handwriting_border .smb-btn::before,
.handwriting_border .wp-block-button__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px; /* ボーダーの太さ */
    background: linear-gradient(130deg, rgba(247, 228, 143, 1), rgba(242, 133, 0, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.handwriting_border .smb-btn:hover,
.handwriting_border .wp-block-button__link:hover {
    background-color: #fff !important;
    background-image: none !important;
    color: var(--accent-color) !important;
    filter: brightness(1);
}
/* ホバー時にグラデーションボーダーを表示 */
.handwriting_border .smb-btn:hover::before,
.handwriting_border .wp-block-button__link:hover::before {
    opacity: 1;
}
.handwriting_border .smb-btn:hover::after,
.handwriting_border .wp-block-button__link:hover::after {
    background-image: url(../img/icon_right_solid_orange.svg);
}

.handwriting_border_green .smb-btn,
.handwriting_border_green .wp-block-button__link {
    padding: 1.2rem 5rem 1.2rem 2.4rem !important;
    position: relative;
    border-radius: 100px;
    background-color: transparent !important; /* 追加 */
    background-image: linear-gradient(105deg, rgba(188, 234, 167, 1), rgba(95, 204, 63, 1)) !important;
    color: #fff !important;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}
.handwriting_border_green .smb-btn::after,
.handwriting_border_green .wp-block-button__link::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_right_solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    z-index: 2;
}
/* グラデーションボーダー用の疑似要素 - 通常時は非表示 */
.handwriting_border_green .smb-btn::before,
.handwriting_border_green .wp-block-button__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(130deg, rgba(188, 234, 167, 1), rgba(95, 204, 63, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.handwriting_border_green .smb-btn:hover,
.handwriting_border_green .wp-block-button__link:hover {
    background-color: #fff !important;
    background-image: none !important;
    color: #5fcc3f !important;
    filter: brightness(1) !important; /* !important 追加 */
}
/* ホバー時にグラデーションボーダーを表示 */
.handwriting_border_green .smb-btn:hover::before,
.handwriting_border_green .wp-block-button__link:hover::before {
    opacity: 1;
}
.handwriting_border_green .smb-btn:hover::after,
.handwriting_border_green .wp-block-button__link:hover::after {
    background-image: url(../img/icon_right_solid_green.svg);
}


/* 採用ページCTAボタン - SnowMonkey Blocks対応版（濃いグラデーション） */
.recruit-cta-button .smb-btn,
.recruit-cta-button .wp-block-button__link {
    padding: 2rem 6rem 2rem 5rem !important;
    position: relative;
    border-radius: 100px !important;
    background-color: transparent !important;
    background-image: linear-gradient(105deg, rgba(188, 234, 167, 1), rgba(56, 163, 30, 1)) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    border: none !important;
    font-size: 1.25rem !important;
    font-weight: bold !important;
    text-decoration: none !important;
    cursor: pointer;
    width: auto !important;
    min-width: auto !important;
}

/* 矢印アイコン */
.recruit-cta-button .smb-btn::after,
.recruit-cta-button .wp-block-button__link::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(../img/icon_right_solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    z-index: 2;
}

/* グラデーションボーダー用の疑似要素 */
.recruit-cta-button .smb-btn::before,
.recruit-cta-button .wp-block-button__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 3px;
    background: linear-gradient(130deg, rgba(188, 234, 167, 1), rgba(56, 163, 30, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* ホバー時のアニメーション */
.recruit-cta-button .smb-btn:hover,
.recruit-cta-button .wp-block-button__link:hover {
    background-color: #fff !important;
    background-image: none !important;
    color: #38a31e !important;
    filter: brightness(1) !important;
}

.recruit-cta-button .smb-btn:hover::before,
.recruit-cta-button .wp-block-button__link:hover::before {
    opacity: 1;
}

.recruit-cta-button .smb-btn:hover::after,
.recruit-cta-button .wp-block-button__link:hover::after {
    background-image: url(../img/icon_right_solid_green.svg);
    right: 25px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .recruit-cta-button .smb-btn,
    .recruit-cta-button .wp-block-button__link {
        padding: 1.5rem 4.5rem 1.5rem 2.5rem !important;
        font-size: 1.1rem !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .recruit-cta-button .smb-btn::after,
    .recruit-cta-button .wp-block-button__link::after {
        right: 25px;
        width: 20px;
        height: 20px;
    }
}

/* アクティブ時 */
.recruit-cta-button .smb-btn:active,
.recruit-cta-button .wp-block-button__link:active {
    transform: translateY(0) !important;
    box-shadow: 0 6px 15px rgba(56, 163, 30, 0.4) !important;
}


/*.handwriting_border .smb-btn,
.handwriting_border .wp-block-button__link {
    padding: 1.2rem 5rem 1.2rem 2rem !important;
    position: relative;
    border-radius: 100px;
    background-image: linear-gradient(90deg, rgba(242, 133, 0, 1), rgba(247, 228, 143, 1));
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}
.handwriting_border .smb-btn::after,
.handwriting_border .wp-block-button__link::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_right_solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    z-index: 2;
}
.handwriting_border .smb-btn::before,
.handwriting_border .wp-block-button__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px; 
    background: linear-gradient(90deg, rgba(242, 133, 0, 1), rgba(247, 228, 143, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.handwriting_border .smb-btn:hover,
.handwriting_border .wp-block-button__link:hover {
    background-color: #fff !important;
    background-image: none !important;
    color: var(--accent-color) !important;
    filter: brightness(1);
}
.handwriting_border .smb-btn:hover::before,
.handwriting_border .wp-block-button__link:hover::before {
    opacity: 1;
}
.handwriting_border .smb-btn:hover::after,
.handwriting_border .wp-block-button__link:hover::after {
    background-image: url(../img/icon_right_solid_orange.svg);
}*/


/* 既存の右向き矢印ボタン（handwriting_border_green）はそのまま */

/* 下向き矢印ボタン用 - mask-imageを回転 */
.handwriting_border_green_down .smb-btn::after,
.handwriting_border_green_down .wp-block-button__link::after {
    transform: rotate(90deg) !important;
}

.handwriting_border_green_down .smb-btn:hover::after,
.handwriting_border_green_down .wp-block-button__link:hover::after {
    transform: rotate(90deg) !important;
}
/*=============== ヘッダー ===============*/
.l-header {
    background:url(../img/bg-body.png) repeat;
}
/*.l-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 34px;
    background-image: url(../img/header_clip.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    pointer-events: none;
}*/
h1.c-site-branding__title,
.c-site-branding__title{
	font-weight: 500;
	font-size:1.2rem;
}
.l-center-header__row:last-child{
	margin-top:20px !important;
	margin-bottom:20px !important;
}
h1.c-site-branding__title:after,
.c-site-branding__title:after{
	content:"(りんか)";
	font-size:1rem;
}
.header_sub {
    display: flex;
    justify-content: flex-start;
    width: 360px;
    align-items: center;
}
.h_tel a span{
    font-size: 1.5rem;
    font-weight: 700;
	position: relative;
}
.h_tel a{
	text-decoration:none;
}
.h_tel a span::before{
    content: "";
    background:url(../img/tell.png) no-repeat;
    width: 23px;
    height: 23px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
	background-size:cover;
}
.p-header-content{
	display:none;
}
@media (max-width:39.9375em) {/*640px以下*/
	/*h1.c-site-branding__title:after,
	.c-site-branding__title:after{
		display:none;
	}*/
}
@media (min-width: 78.125em) {/*1250px以上*/
	.p-header-content{
		display:block;
	}
	h1.c-site-branding__title,
	.c-site-branding__title{
		font-weight: 500;
		font-size:2.2rem;
	}
}

/*=============== ヘッダー　事業所情報 ===============*/


/* 事業所情報 */
.facility-info {
    text-align: center;
    padding: 10px 0;
    width: 100%;
}
.facility-info h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}
/* ヘッダー全体を縦並びに（PC表示のみ） */
@media (min-width: 1024px) {
    .l-2row-header__row:first-child .c-row {
        flex-direction: column;
        align-items: center;
    }

    /* ロゴエリアを全幅・中央寄せ */
    .l-2row-header__row:first-child .c-row__col--auto {
        width: 100%;
        text-align: center;
    }

    /* ウィジェットエリアを全幅・中央寄せ */
    .l-2row-header__row:first-child .c-row__col--fit {
        width: 100%;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .facility-info h2 {
        font-size: 12px;
    }
}

/*=============== グローバルナビゲーション ===============*/
.p-global-nav .c-navbar__item > a {
	padding: .85rem 2.4rem!important;
}

.p-global-nav .c-navbar__item > a > span {
	align-items: center;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.p-global-nav .c-navbar__item > a > span::before {
	content: "";
	width: 60px;
	height: 40px;
	display: block;
}

.p-global-nav .menu-item:nth-child(1) > a > span::before {
	background: url(../img/utsukushinosato.png) no-repeat center center;
	background-size: contain;
}
.p-global-nav .menu-item:nth-child(2) > a > span::before {
	background: url(../img/office.png) no-repeat center center;
	background-size: contain;
}
.p-global-nav .menu-item:nth-child(3) > a > span::before {
	background: url(../img/topics.png) no-repeat center center;
	background-size: contain;
}
.p-global-nav .menu-item:nth-child(4) > a > span::before {
	background: url(../img/recruit.png) no-repeat center center;
	background-size: contain;
}
.p-global-nav .menu-item:nth-child(5) > a > span::before {
	background: url(../img/access.png) no-repeat center center;
	background-size: contain;
}
.p-global-nav .menu-item:nth-child(6) > a > span::before {
	background: url(../img/contact.png) no-repeat center center;
	background-size: contain;
}

/* スクロール時に画像を小さくする */
[data-scrolled="true"] .p-global-nav .c-navbar__item > a > span::before {
	width: 35px;
	height: 25px;
	transition: all 0.3s ease;
}
.p-global-nav .c-navbar__submenu[aria-hidden=false]{
	border-radius:30px;
	padding:15px;
}
.p-global-nav .c-navbar__subitem{
	font-weight:500;
	border-bottom:1px dashed #FFF;
}
.p-global-nav .c-navbar__subitem:last-child{
	border-bottom:none;
}
.p-global-nav .c-navbar__subitem>a{
	padding:var(--_padding-2) 5px;
}

/* グローバルナビゲーションを中央寄せ */
.l-2row-header__row:nth-child(2) {
    display: flex;
    justify-content: center;
}

.p-global-nav {
    width: auto; /* 自動幅に */
}

.c-navbar {
    justify-content: center; /* メニュー項目を中央寄せ */
}

/*=============== ドロワー ===============*/
.c-hamburger-btn__label{
	display:none;
}
.c-hamburger-btn__bars{
	width:28px;
	height:13px;
}
.c-hamburger-btn__bar{
	height:2px;
}
.l-header .c-hamburger-btn__bar{
	background-color:var(--accent-color);
}
.c-drawer__menu li:first-child{
	border-top:1px solid #FFF;
}
.c-drawer__menu li{
	border-bottom:1px solid #FFF;
}
.c-drawer__sub-nav .c-drawer__menu	{
	margin-top:0px;
}
.c-drawer__sub-nav .c-drawer__menu li:first-child{
	border-top:none;
}
.c-drawer__sub-nav .c-drawer__menu li{
	border-bottom:none;
}
.c-drawer__submenu li:last-child{
	border-bottom:none;
}
/*=============== コンテンツ ===============*/
.c-page-header {
	background-color:#FFF;
	padding-top:20px;
	padding-bottom:20px;
}
.c-page-header__title{
	font-size:1.5rem;
	font-weight:700;
}
body:not(.home) .l-contents__body {
    background-color: #FFF;
    padding: 20px 0;
}
body.home .l-contents__body {
    background-color: transparent;
    padding: 0px 0;
}

@media (min-width: 64em) {
	.c-page-header {
		padding-top:var(--_padding2);
		padding-bottom: var(--_padding2);
	}
	.c-page-header__title{
		font-size:1.875rem;
	}
}

/*=============== トップページ／メインビジュアル ===============*/
.mainvisual-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: #FFF;
}
.mainvisual-section .splide {
    overflow: visible !important;
    max-width: 1280px;
    margin: 0 auto;
}
.mainvisual-section .splide__track {
    overflow: visible !important;
    padding: 1rem 0;
}
.mainvisual-section .splide__list {
    display: flex;
    align-items: center;
}
/* スライド */
.mainvisual-section .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}
/* アクティブなスライド */
.mainvisual-section .splide__slide.is-active {
    opacity: 1;
}
/* スライド画像のラッパー */
.mainvisual-section .slide-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
/* 画像にマスクを適用 - 基本スタイルのみ */
.mainvisual-section .splide__slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
/* 各スライドに異なるSVGマスクを適用 */
.mainvisual-section .splide__slide .slide-1 {
    -webkit-mask-image: url(../img/mv_clip_1.svg);
    mask-image: url(../img/mv_clip_1.svg);
    -webkit-mask-size: 100% !important;
    mask-size: 100% !important;
}
.mainvisual-section .splide__slide .slide-2 {
    -webkit-mask-image: url(../img/mv_clip_2.svg);
    mask-image: url(../img/mv_clip_2.svg);
    -webkit-mask-size: 78% !important;
    mask-size: 78% !important;
}
.mainvisual-section .splide__slide .slide-3 {
    -webkit-mask-image: url(../img/mv_clip_3.svg);
    mask-image: url(../img/mv_clip_3.svg);
    -webkit-mask-size: 78% !important;
    mask-size: 78% !important;
}
/* 矢印ボタン - モバイル */
.splide__arrow {
    width: 32px !important;
    height: 32px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
    border: none !important;
    opacity: 1 !important;
}
.splide__arrow svg {
    display: none !important;
}
.splide__arrow--next {
    right: 0rem !important;
    background-image: url(../img/arrow-right.png) !important;
}
.splide__arrow--prev {
    left: 0rem !important;
    background-image: url(../img/arrow-left.png) !important;
}
/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
    .splide__arrow--next {
        right: 2em !important;
    }
    .splide__arrow--prev {
        left: 2em !important;
    }
}
/* デスクトップ以上 */
@media (min-width: 78.125em) {/*1250px以上*/
    .splide__arrow--next {
        right: -1em !important;
    }
    .splide__arrow--prev {
        left: -1em !important;
    }
	.splide__arrow {
		width: 40px !important;
		height: 40px !important;
	}
	.splide__arrow--next {
		right: -0.5rem !important;
		background-image: url(../img/arrow-right.png) !important;
	}
	.splide__arrow--prev {
		left: -0.5rem !important;
		background-image: url(../img/arrow-left.png) !important;
	}
}


/* メインビジュアルのテキスト - 縦書き配置 */
.mainvisual-section .mainvisual-text {
    position: absolute;
    top: 1rem;
    left: 2.4rem;
    z-index: 10;
    padding: 0;
    background-color: transparent;
    margin: 0;
}
.mainvisual-section .mainvisual-text h2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: .6rem;
    margin: 0;
    padding: 0;
    font-size: .875rem;
    line-height: 1.4;
}
.mainvisual-section .mainvisual-text .text-line {
    display: inline-block;
    writing-mode: vertical-rl;
    padding: 0.2rem 0.2rem;
    background-image: url(../img/bg-body.png);
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    border-radius: 5px;
    flex-shrink: 0;
}
/* 2行目だけ下に移動 */
.mainvisual-section .mainvisual-text .text-line:nth-child(2) {
    margin-top: 3rem;
}
.mainvisual-section .mainvisual-text .emphasis {
    font-weight: bold;
    color: var(--accent-color);
}
/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
	.mainvisual-section .mainvisual-text {
		left: 8rem;
	}
	.mainvisual-section .mainvisual-text h2 {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		gap: 1rem;
		margin: 0;
		padding: 0;
		font-size: 1.6rem;
		line-height: 1.8;
	}
}
/* デスクトップ以上 */
@media (min-width: 78.125em) {/*1250px以上*/
	.mainvisual-section .mainvisual-text {
		position: absolute;
		top: 3rem;
		left: 3rem;
		z-index: 10;
		padding: 0;
		background-color: transparent;
		margin: 0;
	}
	.mainvisual-section .mainvisual-text h2 {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		gap: 1.8rem;
		margin: 0;
		padding: 0;
		font-size: 1.8rem;
		line-height: 1.8;
	}
	.mainvisual-section .mainvisual-text .text-line {
		padding: 0.8rem 0.3rem;
	}
}

/* 装飾要素のコンテナ */
.mv-decorations {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* 基本スタイル */
.mv-decorations .deco {
    position: absolute;
    opacity: 0.8;
}

/* カーブ装飾 */
.deco-curve {
    width: 50px;
    height: auto;
}

.deco-curve-1 {
    bottom: 5%;
    right: 0px;
    animation: float-curve-1 8s ease-in-out infinite;
}

.deco-curve-2 {
    bottom: 20%;
    left: 10px;
    transform: rotate(180deg);
    animation: float-curve-2 10s ease-in-out infinite;
}

/* ドット装飾（オレンジ） */
.deco-dots {
    width: 40px;
    height: auto;
}

.deco-dots-1 {
    left: -10px;
    top: 10%;
    animation: float-dots-1 7s ease-in-out infinite;
}
.deco-dots-2 {
    top: 10%;
    right: 0px;
    animation: float-dots-2 9s ease-in-out infinite;
}
.deco-dots-3 {
    top: 5%;
	left:0;
    animation: float-dots-3 9s ease-in-out infinite;
}

/* ドット装飾（黄緑） - スマホでは非表示 */
.deco-dots-4 {
    display: none;
}
/* 花装飾 */
/*.deco-hana-left {
    left: -30px;
    bottom: -80px;
    width: 130px;
    opacity: 1 !important;
    filter: drop-shadow(1px 1px 3px #ddd);
    animation: tree-sway 6s ease-in-out infinite;
}
.deco-hana-right {
    opacity: 1 !important;
}*/

/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
    .mainvisual-section .splide__track {
        padding: 0;
    }
    .deco-curve {
        width: 70px;
    }    
    .deco-dots {
        width: 60px;
    }    
    .deco-curve-1 {
        bottom: 10%;
        right: 50px;
        top: auto;
    }
    .deco-curve-2 {
        bottom: 15%;
        left: 50px;
    }
    .deco-dots-1 {
        top: 10%;
        left: -30px;
    }    
    .deco-dots-2 {
        top: 10%;
        right: 0px;
    }    
    .deco-dots-3 {
        display: block;
        top: 5%;
        left: -30px;
        animation: float-dots-3 6s ease-in-out infinite;
    }    
    .deco-dots-4 {
        display: block;
        bottom: 30%;
        right: 30px;
        animation: float-dots-4 8s ease-in-out infinite;
    }
	/*.deco-hana-left {
		left: -30px;
        bottom: -40px;
        width: 200px;
		opacity: 1 !important;
		filter: drop-shadow(1px 1px 3px #ddd);
		animation: tree-sway 6s ease-in-out infinite;
	}*/
}

/* デスクトップ以上 */
@media (min-width: 80.0625em) { /* 1281px以上 */
    .mainvisual-section .slide-wrapper {
        width: 1280px;
    }
    .mv-decorations {
        width: 1280px;
    }    
    .deco-curve {
        width: 100px;
    }    
    .deco-dots {
        width: 90px;
    }    
    .deco-curve-1 {
        bottom: 10%;
        right: 0;
    }    
    .deco-curve-2 {
        bottom: 15%;
        left: 60px;
    }    
    .deco-dots-1 {
        top: 10%;
        right: 0;
        left: auto;
    }    
    .deco-dots-2 {
        top: 10%;
        right: -40px;
    }
	/*.deco-hana-left {
		left: -60px;
		bottom: -100px;
		width: 400px;
		opacity: 1 !important;
		filter: drop-shadow(1px 1px 3px #ddd);
		animation: tree-sway 6s ease-in-out infinite;
	}*/
	/*.mv-decorations {
		width: 95%;
	}*/
}



/* 梨の木の枝が揺れるアニメーション */
@keyframes tree-sway {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    30% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    70% {
        transform: translateY(5px) rotate(-0.4deg);
    }
}

/* アニメーション定義 */
@keyframes float-curve-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, -20px) rotate(5deg);
    }
}
@keyframes float-curve-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(180deg);
    }
    50% {
        transform: translate(-10px, 20px) rotate(185deg);
    }
}
@keyframes float-dots-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-15px, 15px) scale(1.1);
    }
}
@keyframes float-dots-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, -15px) rotate(10deg);
    }
}
@keyframes float-dots-3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(8px, 20px);
    }
}
@keyframes float-dots-4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -10px) rotate(15deg);
    }
}

/*=============== トップページ／理念 ===============*/
/*.home_rinen {
    position: relative;
}
.home_rinen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background-image: url(../img/illust_nashinohana.png);
    background-repeat: no-repeat;
    background-position: top left;
	background-position: top 0 left -20px;
    background-size: contain;
}
.home_rinen p{
	text-align:center;
	line-height:2;
	font-size:1.6rem;
}*/

/*=============== トップページ／美しの里について ===============*/
.home_read .group_decorations {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1280px;
    max-width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; 
}
.home_read .group_decorations .deco-cloud{
    position: absolute;
    right:-10px;
    top:-40px;
	width:180px;
    z-index:1;
    filter:drop-shadow(1px 1px 3px #eee);
    animation: float-cloud-right 8s ease-in-out infinite;
}
.home_read .group_decorations .deco-cloud-left{
	display:none;
}
.home_read .group_decorations .deco-bird{
    position: absolute;
    right:60px;
    top:0px;
    width:60px;
    z-index:5;
    animation: bird-sway 4s ease-in-out infinite;
}
.home_read .group_decorations .deco-bird img{
	filter:drop-shadow(1px 1px 3px #ddd);
}
.home_read .deco-hana{
    position: absolute;
    left:-30px;
    top:0px;
    width:150px;
    z-index:5;
	animation: tree-sway 6s ease-in-out infinite;
}
.home_read .deco-hana img{
	filter:drop-shadow(1px 1px 3px #ddd);
}
/* 右側の雲のアニメーション */
@keyframes float-cloud-right {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
}

/* 左側の雲のアニメーション */
@keyframes float-cloud-left {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(-8px);
    }
}

/* 鳥のゆらゆら揺れるアニメーション */
@keyframes bird-sway {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) translateX(5px) rotate(3deg);
    }
    50% {
        transform: translateY(-5px) translateX(0) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) translateX(-5px) rotate(-3deg);
    }
}

/*.home_about {
    position: relative;
    padding-top: 62px;
	padding-bottom:0;
}
.home_about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 62px;
    background-image: url(../img/about_top_clip.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    pointer-events: none;
}*/

.home_read {
	position: relative;
	width: 100%;
	padding-top:0;
	margin-left:auto !important;
	margin-right:auto !important;
	min-height:600px;
}
.home_read::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background-image: url(../img/home_read_rinka_bg_scene.png),url(../img/home_read_rinka_bg_sky.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom, center top;
	background-color:#f3fcff;
	z-index: -1;
}
.home_read__inner {
	position: relative;
	z-index:1;
	padding:0;
}

.home_read__inner > * {
  position: relative;
  z-index:1;
}
.t_vertical  {
	padding-top:70px;
	padding-bottom:150px;
	width:100%;
}
.t_vertical p {
	height: auto;
	font-size: .875rem;
	line-height: 1.6;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-top:0;
	margin-left:0;
	margin-bottom:30px;
}

/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
	.t_vertical  {
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		padding-top:60px;
		padding-bottom:250px;
		text-orientation: upright;
		width:55%;
	}
	.t_vertical p {
		height: 410px;
		font-size: 1rem;
		line-height: 1.6;
		text-align: justify;
		text-justify: inter-ideograph;
		margin-top:0;
		margin-left:50px !important;
		margin-bottom:0;
	}
	.home_read {
		position: relative;
		width: 100%;
		padding-top:0;
		margin-left:auto !important;
		margin-right:auto !important;
		min-height:800px;
	}
	.home_read::before {
	  content: '';
	  position: absolute;
	  top: 0;
	  left: 50%;
	  transform: translateX(-50%);
	  width: 100vw;
	  height: 100%;
		background-image: url(../img/home_read_rinka_bg_scene.png),url(../img/home_read_rinka_bg_sky.png);
	  background-size: contain;
	  background-repeat: no-repeat;
	  background-position: center bottom, center top;
		background-color:#FFF;
	  z-index: -1;
	}
	.home_read .group_decorations .deco-cloud-left{
		display:block;
		position: absolute;
		left:-100px;
		top:100px;
		width:140px;
		z-index:1;
		filter:drop-shadow(1px 1px 3px #eee);
		animation: float-cloud-right 8s ease-in-out infinite;
	}
	.home_read .group_decorations .deco-bird{
		position: absolute;
		right:60px;
		top:50px;
		width:60px;
		z-index:5;
		animation: bird-sway 4s ease-in-out infinite;
	}
}
/* デスクトップ以上 */
@media (min-width: 80.0625em) { /* 1281px以上 */
	.t_vertical  {
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		padding-top:60px;
		padding-bottom:450px;
		text-orientation: upright;
		width:55%;
	}
	.t_vertical p {
		height: 410px;
		font-size: 1.125rem;
		line-height: 2.2;
		text-align: justify;
		text-justify: inter-ideograph;
		margin-top:0;
		margin-left:50px;
		margin-bottom:0;
	}
	.home_read {
		position: relative;
		width: 100%;
		padding-top:0;
		margin-left:auto !important;
		margin-right:auto !important;
		min-height:1000px;
	}
	.home_read::before {
	  content: '';
	  position: absolute;
	  top: 0;
	  left: 50%;
	  transform: translateX(-50%);
	  width: 100vw;
	  height: 100%;
	  background-image: url(../img/home_read_rinka_bg_scene.png),url(../img/home_read_rinka_bg_sky.png);
	  background-size: contain;
	  background-repeat: no-repeat;
	  background-position: center bottom, center top;
		background-color:#FFF;
	  z-index: -1;
	}
	.home_read .group_decorations .deco-cloud-left{
		position: absolute;
		left:-40px;
		top:100px;
		z-index:1;
		filter:drop-shadow(1px 1px 3px #eee);
		animation: float-cloud-left 6s ease-in-out infinite;
		display:block;
	}
	.home_read .group_decorations .deco-cloud{
		position: absolute;
		right:-140px;
		top:-20px;
		width:300px;
		z-index:1;
		filter:drop-shadow(1px 1px 3px #eee);
		animation: float-cloud-right 8s ease-in-out infinite;
	}
	.home_read .group_decorations .deco-bird{
		position: absolute;
		right:40px;
		top:80px;
		width:100px;
		z-index:5;
		animation: bird-sway 4s ease-in-out infinite;
	}
	.home_read .deco-hana{
		position: absolute;
		left:-60px;
		top:-150px;
		width:400px;
		z-index:5;
		animation: tree-sway 6s ease-in-out infinite;
	}
}

/*=============== トップページ／理事長メッセージリンク ===============*/
.home_message{
	margin: auto;
	padding-top:0;
	width: 100vw;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}
.message_l_group{
	position:relative;
	bottom:auto;
	left:auto;
}
/*.home_message_tree{
	padding-top:100px;
	background-image: url(../img/tree.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 12% bottom;
}
.home_message .wp-block-column:nth-child(1){
	flex-basis: auto;
}
.home_message .wp-block-column:nth-child(2){
	flex-basis: auto;
}
.home_message .wp-block-column:nth-child(3){
	flex-basis: auto;		
}
.home_message h3{
	font-size:1rem;
	white-space: nowrap;
}
.home_message .message_tree{
	width:180px;
	left:-20px;
}
.home_message .message_photo{
	width:70px;
	left:70px;
	z-index:5;
}
.home_message .message_text_btn{
    position: relative;
    top: -80px;
    left: -20px;	
}
.home_message_tree .wp-block-column:last-child{
	text-align:center;
}
.home_message_tree .wp-block-column:last-child .wp-block-snow-monkey-blocks-buttons{
	justify-content:center;
}*/
/* タブレット以上（1024px以上） */
@media (min-width: 64em) {
	.home_message .wp-block-column:nth-child(1){
		flex-basis: 35%;
	}
	.home_message .wp-block-column:nth-child(2){
		flex-basis: 20%;
	}
	.home_message .wp-block-column:nth-child(3){
		flex-basis: 45%;		
	}
}

/* デスクトップ以上 */
@media (min-width: 80.0625em) { /* 1281px以上 */
	.home_message{
		margin: auto !important;
		width: 62%;
		padding-top:0
	}
	.home_message h3{
		font-size:var(--_fluid-font-size);
	}
	.message_l_group{
		position:relative;
		bottom:-120px;
		left:140px;
	}
	.message_text{
		margin-bottom:50px;
	}
	.message_btn_pc{
	}
	.home_message .wp-block-column:nth-child(1){
		flex-basis: 35%;
	}
	.home_message .wp-block-column:nth-child(2){
		flex-basis: 20%;
	}
	.home_message .wp-block-column:nth-child(3){
		flex-basis: 45%;		
	}
	.home_message .message_tree{
		width:380px;
		left:30px;
	}
	.home_message .message_photo{
		width:150px;
		left:120px;
		z-index:5
	}
	.home_message .message_text_btn{
		position: relative;
		top: -160px;
		left: 120px;
	}
	.home_message_tree .wp-block-group{
		margin-left:50px;
	}
	.home_message_tree .wp-block-column:last-child{
		text-align:inherit;
	}
	.home_message_tree .wp-block-column:last-child .wp-block-snow-monkey-blocks-buttons{
		justify-content:inherit;
	}
}
/*.home_message .smb-panels__item{
	border-radius:60px;
	box-shadow:none;
}
.home_message .smb-panels__item__body{
	padding:0 var(--_padding1);
}
.greeting-panel {
    position: relative;
    overflow: visible !important;
    transition: all 0.3s ease;
}
.greeting-panel .greeting-image {
    position: relative;
    margin-top: -60px;
    padding-right: 20px;
	padding-left:20px;
}
.greeting-panel .greeting-image img {
    max-width: 100%;
    height: auto;
    display: block;
}
.greeting-panel .wp-block-columns {
    align-items: center;
    margin-bottom: 0 !important;
}
.greeting-panel .wp-block-column:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.greeting-panel h3 {
    margin-top: 0;
	font-size:1.6rem;
}
.greeting-panel p {
	font-size:1.1rem;
}*/

@media (max-width: 781px) {
  .column_order {
    display: flex;
    flex-direction: column-reverse;
  }
}


/*=============== トップページ／事業所の案内 ===============*/
.home_jigyou_read{
	text-align:left;
}
.home_jigyou_read br{
	display:none;
}
.jigyou_group{
	margin:0px auto 0;
	position:relative;
	background-color:#FFF;
	border-radius:40px;
	padding:40px 10px;
	box-shadow: 0 0 10px 10px rgba(255, 255, 255, 1);
}
.jigyoushomei_green,
.jigyoushomei_orange{
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.jigyoushomei_green::after {
    content: "";
    flex: 1;
    height: 30px;
    background-image: url(../img/home_h2_bg_green.png);
    background-repeat: repeat-x;
    background-position: left;
    background-size: auto 8px;
}
.jigyoushomei_orange::after {
    content: "";
    flex: 1;
    height: 30px;
    background-image: url(../img/home_h2_bg_orange.png);
    background-repeat: repeat-x;
    background-position: left;
    background-size: auto 8px;
}
.jigyoushomei_green::before,
.jigyoushomei_orange::before{ margin-right: 10px; }
.jigyoushomei_green::after,
.jigyoushomei_orange::after{ margin-left: 10px; }

.jigyoushomei_green span,
.jigyoushomei_orange span{
    font-size: 1.6rem;
    padding-left: 10px;
}
.home_jigyou_tokuyou,
.home_jigyou_kyotaku,
.home_jigyou_group{
	border-radius: 20px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	gap: 20px;
	overflow: visible;
	position: relative;
}

/* 開設日表示ブロック */
.opening_date {
	position: absolute;
	padding: 40px 24px;
	margin-left: 20px;
	margin-bottom: 10px;
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	height:110px;
	left:-10px;
	top:-60px;
}
/* 開設日表示ブロック 下層　事業所　詳細ページ*/
.opening_date.details {
	top:-30px;
}
.opening_date.kaisetu_green {
	background-image: url(../img/kaisetu_bg-sp.png);
}
.opening_date.kaisetu_orange {
	background-image: url(../img/kaisetu_bgo-sp.png);
}
.opening_date p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.opening_date p span{
	font-size: 1.4rem;
	font-weight: bold;
	display:inline;
	padding-left:5px;
}
.opening_date + * {
  clear: both;
}
/* タブレット以上（1024px以上） */
@media (min-width: 64em) {
	.opening_date {
	  position: absolute;
	  padding: 48px 24px;
	  margin-left: 20px;
	  margin-bottom: 10px;
	  background-size: contain;
		background-repeat:no-repeat;
	  background-position: center;
		height:160px;
		left:-10px;
		top:-60px;
	}
	.opening_date.kaisetu_green {
	  background-image: url(../img/kaisetu_bg-green.png);
	}
	.opening_date.kaisetu_orange {
	  background-image: url(../img/kaisetu_bg-orange.png);
	}
	.opening_date p {
	  position: relative;
	  z-index: 2;
	  margin: 0;
	  color: #ffffff;
	  font-size: 1.2rem;
	  font-weight: bold;
	  line-height: 1.4;
	  text-align: center;
	}
	.opening_date p span{
		font-size: 2rem;
		font-weight: bold;
		display:block;
		padding-left:0;
	}
	.jigyoushomei_green::after {
		background-size: auto 18px;
	}
	.jigyoushomei_orange::after {
		background-size: auto 18px;
	}
}


.home_jigyou .jigyou_icon_image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0 !important;
	filter: drop-shadow(1px 1px 5px #ddd);
}
.home_jigyou .wp-block-column .br_small img{
	border-radius:30px;
}
.home_jigyou .wp-block-column .br_large img{
	border-radius:50px;
}
.home_jigyou .jigyou_radius img{
	border-radius:30px;
}
.home_jigyou .jigyou_column{
	display:flex;
}

/* 事業所イラスト　SP */
.jigyou_icon_tokuyou,
.jigyou_icon_short,
.jigyou_icon_kyotaku,
.jigyou_icon_shoukibo,
.jigyou_icon_group{
	width: 100%;
	margin:40px auto 0;
}
.home_jigyou_tokuyou .jigyou_tokuyou_text{
	display: flex;
	flex-direction: column;
}
.home_jigyou .jigyou_column_group{
	width:120%;
}
.home_jigyou .jigyou_column_group .jigyou_radius{
	width:50%;
}
.home_jigyou .jigyou_column_group .jigyou_clip_1,
.home_jigyou .jigyou_column_group .jigyou_clip_2,
.home_jigyou .jigyou_column_group .jigyou_clip_3,
.home_jigyou .jigyou_column_group .jigyou_clip_4,
.home_jigyou .jigyou_column_group .jigyou_clip_5,
.home_jigyou .jigyou_column_group .jigyou_clip_6,
.home_jigyou .jigyou_column_group .jigyou_clip_7,
.home_jigyou .jigyou_column_group .jigyou_clip_8{
	width:40%;
}
.home_jigyou .jigyou_clip_1{
	-webkit-mask-image: url(../img/jigyou_clip_1.svg);
	mask-image: url(../img/jigyou_clip_1.svg);
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	left:-60px;
	bottom:-60px;
	position:relative;
}
.home_jigyou .wp-block-column .jigyou_clip_2 img{
	-webkit-mask-image: url(../img/jigyou_clip_2.svg);
	mask-image: url(../img/jigyou_clip_2.svg);
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	left:20px;
	bottom:-60px;
	position:relative;
	z-index:1;
}
.home_jigyou .wp-block-column .jigyou_clip_3 img{
	-webkit-mask-image: url(../img/jigyou_clip_3.svg);
	mask-image: url(../img/jigyou_clip_3.svg);
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	left:-60px;
	bottom:-60px;
	position:relative;
}
.home_jigyou .wp-block-column .jigyou_clip_4 img{
	-webkit-mask-image: url(../img/jigyou_clip_4.svg);
	mask-image: url(../img/jigyou_clip_4.svg);
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	left:-20px;
	bottom:-60px;
	position:relative;
	z-index:1;
}
.home_jigyou .wp-block-column .jigyou_clip_5 img{
	-webkit-mask-image: url(../img/jigyou_clip_5.svg);
	mask-image: url(../img/jigyou_clip_5.svg);
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	left:-60px;
	bottom:-60px;
	position:relative;
}
.home_jigyou .wp-block-column .jigyou_clip_6 img{
	-webkit-mask-image: url(../img/jigyou_clip_6.svg);
	mask-image: url(../img/jigyou_clip_6.svg);
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	left:-60px;
	bottom:-60px;
	position:relative;
}
.home_jigyou .wp-block-column .jigyou_clip_7 img{
	-webkit-mask-image: url(../img/mv_clip_2.svg);
	mask-image: url(../img/mv_clip_2.svg);
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	left:-60px;
	bottom:-60px;
	position:relative;
}
.home_jigyou .wp-block-column .jigyou_clip_8 img{
	-webkit-mask-image: url(../img/mv_clip_3.svg);
	mask-image: url(../img/mv_clip_3.svg);
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	left:-60px;
	bottom:-60px;
	position:relative;
	z-index:1;
}
.home_jigyou .wp-block-column .jigyou_clip_9 img{
	left:-80px;
	position:relative;
}

/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
	.home_jigyou_read br{
		display:block;
	}
	.home_jigyou_read{
		text-align:center;
	}
}
/* デスクトップ以上 */
@media (min-width: 80.0625em) { /* 1281px以上 */
	.home_jigyou_read br{
		display:block;
	}
	.jigyou_group p.mt_50{
		margin-top:50px;
	}
	.jigyoushomei_orange,
	.jigyoushomei_green{
		font-size:2.0rem;
	}
	.jigyoushomei_orange span,
	.jigyoushomei_green span{
		font-size:2.6rem;
		padding-left:10px;
	}
	.jigyoushomei_orange,
	.jigyoushomei_green{
		font-size:2rem;
	}
	.jigyou_group{
		margin:0 auto;
		padding-left:5%;
		padding-right:5%;
		background-color:#FFF;
		border-radius:50px;
		padding:50px;
		box-shadow: 0 0 10px 10px rgba(255, 255, 255, 1);
	}
	.jigyou_group p{
		font-size:1.125rem;
	}
	.home_jigyou .jigyou_icon_image {
		/*position: absolute;
		top: -20px;*/
		margin: 0;
		z-index: 10;
	}
	.home_jigyou{
		padding-bottom:0;
	}
	.home_jigyou .wp-block-columns{
		margin-top:90px;
	}
	
	/*.home_jigyou_tokuyou,
	.home_jigyou_kyotaku,
	.home_jigyou_group{
		border-radius: 40px;
		padding: 60px 0px 60px 60px;
		display: flex;
		align-items: center;
		gap: 20px;
		overflow: visible;
		position: relative;
	}
	.home_jigyou .home_jigyou_tokuyou .wp-block-column.jigyou_tokuyou_text,
	.home_jigyou .home_jigyou_kyotaku .wp-block-column.jigyou_kyotaku_text,
	.home_jigyou .home_jigyou_group .wp-block-column.jigyou_group_text{
		padding: 50px;
		border-radius: 60px;
		z-index: 1;
	}
	.home_jigyou .home_jigyou_tokuyou .wp-block-column.jigyou_tokuyou_photo_left,
	.home_jigyou .home_jigyou_kyotaku .wp-block-column.jigyou_kyotaku_photo_left,
	.home_jigyou .home_jigyou_group .wp-block-column.jigyou_group_photo_left{
		position: relative;
		margin-top: 20px;
		transform: translateX(-50px);
		z-index: 2;
		flex: 0.7;
	}
	.home_jigyou .home_jigyou_tokuyou .wp-block-column.jigyou_tokuyou_photo_right,
	.home_jigyou .home_jigyou_kyotaku .wp-block-column.jigyou_kyotaku_photo_right,
	.home_jigyou .home_jigyou_group .wp-block-column.jigyou_group_photo_right{
		position: relative;
		margin-top: 180px;
		transform: translateX(-110px);
		z-index: 3;
		flex: 1.3;
	}*/

	.home_jigyou_short,
	.home_jigyou_shoukibo{
		border-radius: 60px;
		padding: 60px 60px 60px 0px;
		display: flex;
		align-items: center;
		gap: 20px;
		overflow: visible;
		position: relative;
	}
	.home_jigyou .home_jigyou_short .wp-block-column.jigyou_short_text,
	.home_jigyou .home_jigyou_shoukibo .wp-block-column.jigyou_shoukibo_text{
		padding: 50px;
		border-radius: 60px;
		max-height: 300px;
		z-index: 1;
		transform:translateX(40px);
	}
	.home_jigyou .home_jigyou_short .wp-block-column.jigyou_short_photo_left,
	.home_jigyou .home_jigyou_shoukibo .wp-block-column.jigyou_shoukibo_photo_left{
		position: relative;
		margin-top: 20px;
		transform: translateX(50px);
		z-index: 2;
		flex: 0.7;
	}
	.home_jigyou .home_jigyou_short .wp-block-column.jigyou_short_photo_right,
	.home_jigyou .home_jigyou_shoukibo .wp-block-column.jigyou_shoukibo_photo_right{
		position: relative;
		margin-top: 160px;
		transform: translateX(-20px);
		z-index: 3;
		flex: 1.3;
		margin-right: -160px; 
	}
	.home_jigyou .wp-block-column img{
		width: 100%;
	}
	.home_jigyou .wp-block-column .jigyou_clip_1{
		-webkit-mask-image: url(../img/jigyou_clip_1.svg);
		mask-image: url(../img/jigyou_clip_1.svg);
		height: auto;
		display: block;
		object-fit: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		left:-60px;
		bottom:-60px;
		position:relative;
	}
	.home_jigyou .wp-block-column .jigyou_clip_2 img{
		-webkit-mask-image: url(../img/jigyou_clip_2.svg);
		mask-image: url(../img/jigyou_clip_2.svg);
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}
	.home_jigyou .wp-block-column .jigyou_clip_3 img{
		-webkit-mask-image: url(../img/jigyou_clip_3.svg);
		mask-image: url(../img/jigyou_clip_3.svg);
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}
	.home_jigyou .wp-block-column .jigyou_clip_4 img{
		-webkit-mask-image: url(../img/jigyou_clip_4.svg);
		mask-image: url(../img/jigyou_clip_4.svg);
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}
	.home_jigyou .wp-block-column .jigyou_clip_5 img{
		-webkit-mask-image: url(../img/jigyou_clip_5.svg);
		mask-image: url(../img/jigyou_clip_5.svg);
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}
	.home_jigyou .wp-block-column .jigyou_clip_6 img{
		-webkit-mask-image: url(../img/jigyou_clip_6.svg);
		mask-image: url(../img/jigyou_clip_6.svg);
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}
	.home_jigyou .wp-block-column .jigyou_clip_7 img{
		-webkit-mask-image: url(../img/mv_clip_7.svg);
		mask-image: url(../img/mv_clip_7.svg);
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}
	.home_jigyou .wp-block-column .jigyou_clip_8 img{
		-webkit-mask-image: url(../img/mv_clip_8.svg);
		mask-image: url(../img/mv_clip_8.svg);
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}
	.home_jigyou .home_jigyou_tokuyou .wp-block-column.jigyou_tokuyou_photo_right img,
	.home_jigyou .home_jigyou_short .wp-block-column.jigyou_short_photo_right img,
	.home_jigyou .home_jigyou_kyotaku .wp-block-column.jigyou_kyotaku_photo_right img,
	.home_jigyou .home_jigyou_shoukibo .wp-block-column.jigyou_shoukibo_photo_right img,
	.home_jigyou .home_jigyou_group .wp-block-column.jigyou_group_photo_right img{
		width:80%;
	}

	/* テキストエリアを相対配置の基準に */
	.home_jigyou .home_jigyou_tokuyou .wp-block-column.jigyou_tokuyou_text,
	.home_jigyou .home_jigyou_kyotaku .wp-block-column.jigyou_kyotaku_text,
	.home_jigyou .home_jigyou_group .wp-block-column.jigyou_group_text,
	.home_jigyou .home_jigyou_short .wp-block-column.jigyou_short_text,
	.home_jigyou .home_jigyou_shoukibo .wp-block-column.jigyou_shoukibo_text {
	  position: relative;
	}

	.home_jigyou .jigyou_radius img{
		margin-top:-50px;
		border-radius:50px;
	}

	/* 特別養護老人ホーム用イラスト */
	.jigyou_icon_tokuyou {
		width: 75%;
		/*width:60%;
		right: 40px;
		width: 340px;
		height: auto;
		bottom:-300px;
		top:40px;*/
	}
	/* ショートステイ用イラスト */
	.jigyou_icon_short {
		width:100%;
		/*right: 0px;
		width: 480px;
		height: auto;
		bottom:-340px;*/
	}

	/* 居宅介護支援事業所用イラスト */
	.jigyou_icon_kyotaku {
		width:80%;
		/*right: 20px;
		width: 360px;
		height: auto;
		bottom:-300px;*/
	}

	/* 小規模多機能用イラスト */
	.jigyou_icon_shoukibo {
		width:100%;
		/*right: -60px;
		width: 480px;
		height: auto;
		bottom:-300px;*/
	}

	/* グループホーム用イラスト */
	.jigyou_icon_group {
		width:85%;
		/*right: 10px;
		width: 440px;
		height: auto;
		bottom:-300px;*/
	}
}

body.page .home_jigyou{
	padding-top:0;
}



/*=============== トップページ／オートスライドショー ===============*/
.home_autoslide{
    position: relative;
    background-color: transparent;
	margin:0px 0 0 0;
	padding:0;
}
/*.home_autoslide::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url(../img/header_clip.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    pointer-events: none;
	z-index:10;
}*/
/*.home_autoslide .smb-section__inner{
	padding-top:120px;
}*/

.home_splide .splide__track .splide__list .splide__slide img {
 	border-radius:0px;
	height:240px;
	width:auto;
}
.home_splide{
	position:relative;
	margin:0px auto;
	padding-top:0;
	width: 90%;
}
.home_splide.c-infinite-scroll:not(.splide) ul{
    display: flex;
    justify-content: center;
}
.home_splide.c-infinite-scroll:not(.splide) ul li{
    margin: 0.5rem 0;
}
.home_splide .splide__track {
    overflow: hidden;
    border-radius: 40px 40px 0 0;
	height:240px;
}
@media (min-width: 64em) {/*1024px以上*/
	.home_splide{
		position:relative;
		margin:0px auto;
		padding-top:0;
		width: 1280px;
	}
	.home_splide .splide__track {
		overflow: hidden;
		border-radius: 100px 100px 0 0;
		height:520px;
	}
	.home_splide .splide__track .splide__list .splide__slide img {
		border-radius:0px;
		height:520px;
		width:auto;
	}
}

/*=============== トップページ／お知らせ ===============*/
.home_information .c-entries--text{
	border-top:3px dotted #f6b852;
}
.home_information .c-entries--text .c-entries__item{
	border-bottom:3px dotted #f6b852;
}
.smb-buttons.is-content-justification-right{
	justify-content: center;
}
.c-meta__item:not(:last-child){
    margin-bottom: 5px;
    margin-top: 5px;
}
.home_information_column{
	gap:10px !important;
}
.home_information_blog {
	margin-top:0 !important;
}
.home_information_blog_sp ul.c-entries{
	display:block;
}
.home_information_blog_sp ul.c-entries li{
	max-width:100%;
}
.home_information_blog_sp .c-entry-summary__figure{
	margin-bottom:10px;
}
.home_information_blog_sp .c-entry-summary__header,
.home_information_blog_sp .c-entry-summary__meta{
	margin-bottom:0;
}
@media (min-width: 640px) {
  .home_information .c-entries--text .c-entry-summary {
    display: flex;
  }
}
.home_information{
    position: relative;
    background-color: transparent;
	padding-top:0;
	padding-bottom:0;
}
/*.home_information::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background-image: url(../img/header_clip.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    pointer-events: none;
}*/
.home_information .smb-section__inner{
	background-color:#FFF;
	padding-top:120px;
	padding-bottom:120px;
}
.home_information .c-entries--text .c-entry-summary__figure {
    display: block;
    margin: 0 2em 0 0;
    flex: 0 0 auto;
    background-color: transparent;
}
.home_information .c-entries--text .c-entry-summary__figure img,
.home_information .c-entries--text .c-entry-summary__figure::before {
    display: none;
}
.home_information .c-entries--text .c-entry-summary__figure .c-entry-summary__term {
    position: relative;
    top: 0;
    white-space: nowrap;
	text-align:center;
	width:100px;
	border-radius:6px;
	background-color:#FFFFFF;
	border:1px solid var(--accent-color);
	color:var(--accent-color);
}
.home_information .c-entries--text .c-entry-summary__body{
	align-items:flex-start;
	position:relative;
	top:2px;
}
.home_information h2{
	background:none !important;
	border:none !important;
	padding:0 !important;
	margin:0rem 0 0rem !important;
	font-size:2.2rem;
}
.home_information .home_information_blog .c-entry-summary__figure{
	border-radius:20px;
}
.home_information .home_information_blog .c-entry-summary__figure span{
	border-radius:0 15px;
}
.home_information .home_information_blog .c-entry-summary__meta,
.home_information .home_information_blog .c-entry-summary__title{
	justify-content:left;
	font-weight:400;
}


/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
	.home_information h2{
		background:none !important;
		border:none !important;
		padding:0 !important;
		margin:0rem 0 3rem !important;
		font-size:2.2rem;
	}
	.smb-buttons.is-content-justification-right{
		justify-content: flex-end;
	}	
}

/*=============== トップページ／インスタグラム ===============*/
.home_insta{
    position: relative;
    background-color: transparent;
}
/*.home_insta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../img/about_top_clip.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    pointer-events: none;
}*/
/*.home_insta::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../img/header_clip.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    pointer-events: none;
}*/
.home_insta .smb-section__inner{
	padding-top:80px;
	padding-bottom:30px;
}



/*=============== トップページ／採用 ===============*/
.home_saiyou{
	padding-bottom:0px;
}
.home_saiyou .c-container{
	padding-left:0;
	padding-right:0;
}
.home_saiyou .smb-media-text__title{
	display:none;
}
.home_saiyou_boshu_list{
	display:block;
}

/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
	.home_saiyou .smb-media-text__title{
		display:block;
	}
	.home_saiyou{
		padding-bottom:20px;
		padding-top:0;
	}
}
/* デスクトップ以上 */
@media (min-width: 80.0625em) { /* 1281px以上 */
	.home_saiyou .c-row__col--lg-1-2:first-child{
		width:60%;
	}
	.home_saiyou .c-row__col--lg-1-2:last-child{
		width:40%;
	}
	.home_saiyou_boshu_list{
		display:flex;
		justify-content:space-between;
	}
	.home_saiyou_boshu_list li{
		margin-top:0;
	}
}

/*.home_saiyou {
	position: relative;
	min-height: 600px;
	background-image: url(../img/saiyou_dammy_01.jpg);
	background-size: contain;
	background-position: right top;
	background-repeat:no-repeat;
	background-color:#FFF;
  -webkit-mask-image: url(../img/saiyou_mask.svg);
  mask-image: url(../img/saiyou_mask.svg);  
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  padding:100px 0px;
}
.home_saiyou .smb-section__inner {
  position: relative;
  z-index: 2;
}*/

/*.home_saiyou {
	position: relative;
	padding:0px 0;
	margin:0;
}
.home_saiyou::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../img/saiyou_dammy_01.jpg);
    background-repeat: no-repeat;
    background-position: right center;
	background-size: 960px 960px;
	overflow:hidden;
	-webkit-mask-image: url(../img/mask_wave.svg);
	mask-image: url(../img/mask_wave.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: top center;
	mask-position: top center;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}*/
/*=============== CTA ===============*/
.cta_box{
	width:100%;
	margin:0 auto 0px;
}
.cta_box .wp-block-columns .wp-block-column{
	text-align:center;
}
.cta_phone{
	font-size:2rem;
	font-weight:500;
	margin-top:0 !important;
	line-height:1;
}
.cta_phone a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.cta_phone a span {
    padding-left: 45px;
    background-image: url(../img/tell.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 35px auto;
}
.cta_btn .smb-btn,
.cta_btn .wp-block-button__link {
    padding: 1.2rem 1rem !important;
    position: relative;
    border-radius: 100px;
    background-image: linear-gradient(105deg, rgba(247, 228, 143, 1), rgba(242, 133, 0, 1));
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    text-align: center;
    font-size:1.2rem;
}
.cta_btn .smb-btn::before,
.cta_btn .wp-block-button__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px; 
    background: linear-gradient(105deg, rgba(247, 228, 143, 1), rgba(242, 133, 0, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.cta_btn .smb-btn:hover,
.cta_btn .wp-block-button__link:hover {
    background-color: #fff !important;
    background-image: none !important;
    color: var(--accent-color) !important;
    filter: brightness(1);
}
.cta_btn .smb-btn:hover::before,
.cta_btn .wp-block-button__link:hover::before {
    opacity: 1;
}
.cta_sp .wp-block-column p:first-child{
	padding-bottom:10px;
}
/*
.cta_btn .smb-btn,
.cta_btn .wp-block-button__link {
    padding: 1.2rem 3rem !important;
    position: relative;
    border-radius: 100px;
    background-image: linear-gradient(90deg, rgba(242, 133, 0, 1), rgba(247, 228, 143, 1));
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    text-align: center;
	font-size:1.2rem;
}
.cta_btn .smb-btn::before,
.cta_btn .wp-block-button__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px; 
    background: linear-gradient(90deg, rgba(242, 133, 0, 1), rgba(247, 228, 143, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.cta_btn .smb-btn:hover,
.cta_btn .wp-block-button__link:hover {
    background-color: #fff !important;
    background-image: none !important;
    color: var(--accent-color) !important;
    filter: brightness(1);
}
.cta_btn .smb-btn:hover::before,
.cta_btn .wp-block-button__link:hover::before {
    opacity: 1;
}
*/

/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
	.cta_box{
		width:70%;
		margin:0 auto 50px;
	}
}
/* デスクトップ以上 */
@media (min-width: 80.0625em) { /* 1281px以上 */
	.cta_phone{
		font-size:2.8rem;
		font-weight:500;
		margin-top:0 !important;
		line-height:1;
	}
	.cta_btn .smb-btn,
	.cta_btn .wp-block-button__link {
		padding: 1.2rem 3rem !important;
		position: relative;
		border-radius: 100px;
		background-image: linear-gradient(105deg, rgba(247, 228, 143, 1), rgba(242, 133, 0, 1));
		color: #fff;
		transition: all 0.3s ease;
		display: inline-block;
		border: none;
		text-align: center;
		font-size:1.2rem;
	}
}

/*=============== フッター ===============*/
.c-page-top{
	border-radius:50px;
	margin-right:10px;
	margin-bottom:10px;
}
.l-footer{
	border-top:none;
	position:relative;
}

/*.l-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 62px;
    background-image: url(../img/about_top_clip.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    pointer-events: none;
}*/
.home .l-footer::before {
  content: none !important;
}
.c-copyright {
	display: none;
}
.p-footer-sub-nav {
	padding-bottom: var(--_padding2);
}
.p-footer-sub-nav .c-container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.p-footer-sub-nav li{
	margin-right:20px !important;
}
#menu-footer_bottom {
	display:none;
	padding-top: 0;
	padding-bottom: 0;
}

.l-footer-widget-area__item #block-11 .is-layout-flex{
	justify-content:space-around;
}
.widget_nav_menu .sub-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
  height: auto !important;
  margin-top: 0.5em;
	border:none;
}
.widget_nav_menu .children-expander {
  display: none !important;
}
.widget_nav_menu .sub-menu li {
  margin-bottom: 0.5em;
}
.l-footer-widget-area #block-11 .widget_nav_menu .sub-menu li {
    display: flex;
    align-items: center;
}
.l-footer-widget-area #block-11 .widget_nav_menu .sub-menu li::before {
    content: "";
    width: 12px;
    height: 10px;
    margin-right: 5px;
    background: url(../img/icon_right_footer_orange.svg) no-repeat 50% 50% / 100%;
    display: block;
}
.widget_nav_menu .menu a:hover,
.widget_nav_menu .sub-menu a:hover,
.p-footer-sub-nav .menu-item a:hover{
	color:var(--accent-color);
	text-decoration:none;
}
.l-footer-widget-area #block-16 h2{
	font-size:1.25rem;
}
.l-footer-widget-area #block-16 h2:after,
.l-footer-widget-area #block-16 h2:before{
	height:0;
}

#block-17 .cta_box{
	padding:10px;
}

/* タブレット以上 */
@media (min-width: 48.0625em) { /* 769px以上 */
	#menu-footer_bottom{
		display:block;
	}
	.p-footer-sub-nav .c-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}
/* デスクトップ以上 */
@media (min-width: 80.0625em) { /* 1281px以上 */
	#menu-footer_bottom	{
		display:flex;
	}
}

/*=============== フッター固定ナビゲーション（モバイル用）のカスタマイズ ===============*/
.p-footer-sticky-nav {
    background-color: var(--accent-color);
}
.p-footer-sticky-nav ul{
	border-bottom:1px solid #FFF;
}
.p-footer-sticky-nav ul li:first-child {
    border-right: 1px solid #FFF;
}
.p-footer-sticky-nav ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    color: #FFF !important;
    font-weight: bold;
    font-size: 0.875rem;
    padding: 10px 0;
}
.p-footer-sticky-nav ul li a::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.p-footer-sticky-nav ul li:first-child a::before {
    background-image: url(../img/recruit-2.png);
}
.p-footer-sticky-nav ul li:last-child a::before {
    background-image: url(../img/contact.png);
}

/*=============== 下層ページ ===============*/
.concept_doctor .smb-section{
	margin-left:0 !important;
}
.concept_doctor .smb-section .c-container{
	padding:0 !important;
}
.content_fit .c-container{
	padding:0 !important;
}
.content_fit .smb-information__body>*+*	{
	margin-top:15px;
}
.content_fit{
	background-color:#FFF6E4;
	border-radius:20px;
	padding:40px 20px;
}
.nyusatu_smb-information .c-row__col--md-1-4{
	--_item-width: 15%;
}
.nyusatu_smb-information .smb-information__item{
	border-bottom:1px solid #ffebc3;
	padding-bottom:20px;
}

.about_info .smb-information__body {
    padding-top: calc(var(--_space, 1.8rem)* .5* var(--_margin-scale, 1));
    border-top: 1px solid var(--accent-color);
}
.about_info .smb-information__item {
    padding-bottom: calc(var(--_space, 1.8rem)* .5* var(--_margin-scale, 1));
    border-bottom: 1px solid var(--accent-color);
}
.about_info .smb-information__item__label{
	font-weight:bold;
}
.about_info_bordernone .smb-information__body {
    padding-top: calc(var(--_space, 1.8rem)* .5* var(--_margin-scale, 1));
}
.about_info_bordernone .smb-information__item {
    padding-bottom: calc(var(--_space, 1.8rem)* .5* var(--_margin-scale, 1));
}
.about_info_bordernone .smb-information__item__label{
	font-weight:bold;
}
.map_wrap {
  border-radius: 20px;
  overflow: hidden;
}
.wp-block-embed iframe,
.wp-block-video video {
	border-radius: 20px;
	overflow: hidden;
}
@media (min-width: 64em) {
	.content_fit{
		background-color:#FFF6E4;
		border-radius:30px;
		padding:80px;
	}
	.concept_doctor .smb-section{
		margin-left: var(--wp--preset--spacing--40) !important;
	}
	.concept_doctor .smb-section .c-container{
		padding-left: var(--_container-margin-left) !important;
		padding-right: var(--_container-margin-right) !important;
	}
	.content_fit .c-container{
		padding-left: var(--_container-margin-left) !important;
		padding-right: var(--_container-margin-right) !important;
	}
}

/*=============== 下層ページ 採用情報 ===============*/
body.page-recruit .l-contents__inner	{
	padding-bottom:0;
}
body.page-recruit .l-contents__body{
	padding-bottom:0;
	/*border-bottom:1px solid #FFF;*/
}
.recruit_top .smb-section-break-the-grid__content{
	background:url(../img/bg-body.png) repeat;
	border-radius:20px;
	color:#222;
}
.recruit_top img{
	border-radius:20px;
	padding:10px;
}
.recruit_top .smb-section-break-the-grid__content--p-l{
	padding:20px;
}
.recruit_kodawari .c-container{
	padding:0;
}
.recruit_boshu .c-container,
.recruit_boshu .smb-panels__item__body{
	padding:0;
}
.recruit_opening_date {
	position: absolute;
	padding: 48px 24px;
	margin-left: 20px;
	margin-bottom: 10px;
	background-size: 160px;
	background-repeat:no-repeat;
	background-position: center;
	height:180px;
	width:180px;
	right:-20px;
	top:-120px;
}
.recruit_opening_date.kaisetu_green {
	background-image: url(../img/kaisetu_bg-green.png);
}
.recruit_opening_date p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.recruit_opening_date p span{
	font-size: 1.4rem;
	font-weight: bold;
	display:inline;
	padding-left:5px;
}
.recruit_opening_date + * {
  clear: both;
}
.recruit_kodawari .wp-block-columns{
	border-bottom:1px solid var(--accent-color);
	margin-bottom:10px;
	padding-bottom:10px;
}
.recruit_kodawari_suji{
	font-family: YakuHanJP, 'Quicksand', sans-serif;
	font-size:4rem;
	font-weight:bold;
	line-height:100%;
	color:var(--accent-color);
	text-align:center;
}
/*.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col.no1,
.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col.no2,
.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col.no3,
.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col.no4	{
	position:relative;
}
.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col::before {
	display: block;
	z-index: 3;
	font-size: 3rem;
	font-family: YakuHanJP, 'Quicksand', sans-serif;
	font-weight: bold;
	position: absolute;
	top: -55px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	color: #fff;
	background-image: url(../img/kaisetu_bg-orange.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col.no1:before {
	content: "1";
}
.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col.no2:before {
	content: "2";
}
.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col.no3:before {
	content: "3";
}
.recruit_kodawari_block .wp-block-snow-monkey-blocks-items-item-free.c-row__col.no4:before {
	content: "4";
}*/
.recruit_kodawari_block .smb-box{
	min-height:150px;
	margin-bottom:50px;
	background:url(../img/bg-body.png) repeat;
}
.recruit_kodawari_block .smb-box__body{
	margin-top:20px;
	font-size:1.15rem;
}

.recruit_tokuyou_block{
	/*background:url(../img/bg-body.png) repeat;*/
	box-shadow:none;
	padding:20px;
}
.recruit_boshu_block .smb-panels__item{
	background:url(../img/bg-body.png) repeat;
	border-radius:30px;
	box-shadow:none;
}
.recruit_boshu_block .smb-panels__item p{
	margin-top:10px;
}
.recruit_boshu_block .wp-block-group{
	margin-top:0;
}
.recruit_boshu_block_1{
	width:100%;
	margin:0 auto;
}

.recruit_youkou_opening_date {
	position: absolute;
	padding: 34px 24px;
	margin-left: 20px;
	margin-bottom: 10px;
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	height:110px;
	left:-10px;
	top:-60px;
}
.recruit_youkou_opening_date.kaisetu_green {
	background-image: url(../img/kaisetu_bg-sp.png);
}
.recruit_youkou_opening_date p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.recruit_youkou_opening_date p span{
	font-size: 1.4rem;
	font-weight: bold;
	display:inline;
	padding-left:5px;
}
.recruit_boshu_block h2{
	margin-top:0 !important;
}

.recruit_op_staff {
	background: url(../img/bg-body_lg.png) repeat;
	position: relative;
}

.recruit_op_staff .smb-section__subtitle{
	--_font-size-level:1;
	color:#222;
}
.recruit_op_staff .smb-section__title:after {
    background-color: #5fcc3f;
}

/* 画像ブロック共通設定 */
.recruit_op_staff [class*="staff_clip_"] {
	position: absolute;
	display: block;
}

.recruit_op_staff [class*="staff_clip_"] img {
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

/* 各画像の個別設定 */
.recruit_op_staff .staff_clip_1 {
	width: 220px;
	right: 0px;
	top: -120px;
}
.recruit_op_staff .staff_clip_1 img {
	-webkit-mask-image: url(../img/jigyou_clip_1.svg);
	mask-image: url(../img/jigyou_clip_1.svg);
}
.recruit_op_staff .staff_clip_2 {
	width: 220px;
	left: -100px;
	top: 40px;
}
.recruit_op_staff .staff_clip_2 img {
	-webkit-mask-image: url(../img/jigyou_clip_2.svg);
	mask-image: url(../img/jigyou_clip_2.svg);
}
.recruit_op_staff .staff_clip_3 {
	width: 220px;
	left: -120px;
	top: 750px;
}
.recruit_op_staff .staff_clip_3 img {
	-webkit-mask-image: url(../img/jigyou_clip_6.svg);
	mask-image: url(../img/jigyou_clip_6.svg);
}
.recruit_op_staff .staff_clip_4 {
	width: 220px;
	right: -120px;
	top: 480px;
}
.recruit_op_staff .staff_clip_4 img {
	-webkit-mask-image: url(../img/jigyou_clip_3svg);
	mask-image: url(../img/jigyou_clip_3.svg);
}
.recruit_op_staff .staff_clip_5 {
	width: 220px;
	right: -120px;
	bottom: 500px;
}
.recruit_op_staff .staff_clip_5 img {
	-webkit-mask-image: url(../img/jigyou_clip_4svg);
	mask-image: url(../img/jigyou_clip_4.svg);
}
.recruit_op_staff ul.wp-block-list li a{
	color:#56B239;
}
.recruit_group_btn .smb-btn,
.recruit_tokuyou_btn .smb-btn{
	text-align:left;
}
.recruit_tokuyou_staff{
	background: url(../img/bg-body_lo.png) repeat;
	position: relative;	
}
.recruit_tokuyou_staff .smb-section__subtitle{
	--_font-size-level:1;
	color:#222;
}
.recruit_tokuyou_staff [class*="staff_tokuyou_clip_"] {
	position: absolute;
	display: block;
}
.recruit_tokuyou_staff [class*="staff_tokuyou_clip_"] img {
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}
.recruit_tokuyou_staff .staff_tokuyou_clip_1 {
	width: 220px;
	left: 0px;
	top: 100px;
}
.recruit_tokuyou_staff .staff_tokuyou_clip_1 img {
	-webkit-mask-image: url(../img/jigyou_clip_1.svg);
	mask-image: url(../img/jigyou_clip_1.svg);
}
.recruit_tokuyou_staff .staff_tokuyou_clip_2 {
	width: 200px;
	right: -50px;
	top: 0px;
}
.recruit_tokuyou_staff .staff_tokuyou_clip_2 img {
	-webkit-mask-image: url(../img/jigyou_clip_2.svg);
	mask-image: url(../img/jigyou_clip_2.svg);
}
.recruit_tokuyou_staff .staff_tokuyou_clip_3 {
	width: 240px;
	right: -30px;
	top: 480px;
}
.recruit_tokuyou_staff .staff_tokuyou_clip_3 img {
	-webkit-mask-image: url(../img/jigyou_clip_6.svg);
	mask-image: url(../img/jigyou_clip_6.svg);
}
.recruit_tokuyou_staff .staff_tokuyou_clip_4 {
	width: 220px;
	right: -120px;
	top: 480px;
}
.recruit_tokuyou_staff .staff_tokuyou_clip_4 img {
	-webkit-mask-image: url(../img/jigyou_clip_3svg);
	mask-image: url(../img/jigyou_clip_3.svg);
}
@media (min-width: 64em) {
	.recruit_top img{
		padding:0;
	}
	.recruit_top .smb-section-break-the-grid__content{
		right:0 !important;
	}
	.recruit_top .smb-section-break-the-grid__content--p-l{
		padding:var(--_padding2);
	}
	.recruit_boshu_block_1{
		width:60%;
		margin:0 auto;
	}
	.recruit_tokuyou_block{
		padding:80px;
	}
	.recruit_op_staff .smb-section__subtitle{
		--_font-size-level:4;
		color:#222;
	}
	.recruit_tokuyou_staff .smb-section__subtitle{
		--_font-size-level:4;
		color:#222;
	}
	.recruit_youkou_opening_date {
		position: absolute;
		padding: 48px 24px;
		margin-left: 20px;
		margin-bottom: 10px;
		background-size: 160px;
		background-repeat:no-repeat;
		background-position: center;
		height:180px;
		width:180px;
		right:-450px;
		top:-100px;
	}
	.recruit_youkou_opening_date.kaisetu_green {
	  background-image: url(../img/kaisetu_bg-green.png);
	}
	.recruit_youkou_opening_date p {
	  position: relative;
	  z-index: 2;
	  margin: 0;
	  color: #ffffff;
	  font-size: 1rem;
	  font-weight: bold;
	  line-height: 1.2;
	  text-align: center;
	}
	.recruit_youkou_opening_date p span{
		font-size: 2rem;
		font-weight: bold;
		display:block;
		padding-left:0;
	}
	.recruit_youkou_opening_date + * {
	  clear: both;
	}
}


/*=============== 下層ページ 事業所詳細 ===============*/
@media (max-width: 781px) {
  .sp-section-compact .c-container {
	  padding:0 !important;
  }
	.sp-section-compact .wp-block-snow-monkey-blocks-section{
		padding:0 !important;
	}
}
.c-entry__content .sm_section_inner{
	padding-left: var(--_container-margin-left);
    padding-right: var(--_container-margin-right);	
}
.bg .wp-block-snow-monkey-blocks-section{
	margin-right:auto !important;
	margin-left:auto !important;
}
.bg .smb-section__contents-wrapper>*+*{
	margin-top:0;
}
.media-rounded-20 .smb-media-text__figure img {
  border-radius: 20px;
}
.entry_content_h2{
	padding-top:50px;
}

.about_service_tokutyo h2{
	line-height:60px;
	height:40px;
	text-align:center;
}
.about_service_tokutyo .wp-block-columns{
	margin-bottom:10px;
	padding-bottom:20px;
	padding-left: var(--_container-margin-left);
    padding-right: var(--_container-margin-right);	
}
.service_tokutyo_suji{
	font-family: YakuHanJP, 'Quicksand', sans-serif;
	font-size:4rem;
	font-weight:bold;
	line-height:100%;
	color:#e5783e;
	text-align:center;
}
.about_block_01 .smb-section-break-the-grid__content,
.about_block_01 .smb-section-break-the-grid__figure img{
	border-radius:20px;
}
.columns-center-80 {
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.stage_slide img{
	border-radius:20px;
}
.stage_slide .wp-block-snow-monkey-blocks-section-break-the-grid.smb-section {
	padding-top: 30px;
	padding-bottom: 30px;
}
.stage_slide .smb-section-break-the-grid__content--w-10 {
	margin-bottom:30px;
}

.items-equal-height .smb-items {
	display: flex;
	align-items: stretch;
}
.items-equal-height .smb-items__item {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius:20px;
}
.items-equal-height .smb-items__item h3{
	text-align:center;
}
.items-equal-height .smb-items__item > * {
	flex: 0 0 auto;
}
.items-equal-height .smb-items__item > *:last-child {
	flex: 1 0 auto;
}
.items-equal-height .smb-items__item img{
	border-radius:20px;
}
@media (min-width: 64em) {/*1024px以上*/
	.stage_slide .smb-items__item__figure{
		margin:auto;
	}
	.stage_slide .spider__arrow{
		background-color:var(--accent-color);
	}
	.about_service_tokutyo h2{
		text-align:left;
	}
	.entry_content_h2{
		font-size:2rem;
		padding-top:0;
	}
	.office_2column .smb-box{
		min-height:180px;
	}

}


