/* CSS Document */
*,*::before,*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/* -----共通項目----- */
html {
	font-size: 62.5%;
}
body {
    background-color: #fff;
    color: #000;
    font-family:  游ゴシック,"ヒラギノ角ゴ ProN W3", HiraKakuProN-W3,  "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	vertical-align: bottom;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.wrapper {
    max-width: 1600px;
    margin:  0 auto;
}
.uppercase {
    text-transform: uppercase;
}
select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}
ul {
    list-style-type: none;
}
.center {
    text-align: center;
}
.emphasis {
    font-weight:bold;
    color:#000;
}

.subtitle {
    text-align: center;
    line-height: 1.4;
    margin: 20px auto 10px;
    font-weight: 500;
    font-size: 2.4rem;
}
.subtitle_under {
    display: block;
    color: #2dabea;
    font-size: 1.2rem;
}
.subtitle_border {
    padding-bottom: 0.25em;
    border-bottom: 1px solid #ccc;
}
.index_title {
    color: #2dabea;
    font-weight: 500;
    font-size: 2rem;
}

.subtitle_01 {
    width: fit-content;
    display: block;
    margin: 0.5em auto 0;
    padding: 0 0.25em;
    background: url(../images/diagonal.jpg) repeat-x center bottom;
    background-size: 0.5em;
    color: #444;
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
    line-height: 1.6;
    font-size: 2rem;
}

.basic_wrapper {
    width: 90%;
    margin: 20px auto;
}
.basic_image {
    text-align: center;
}
.basic_image img {
    width: 80%;
    max-width: 600px;
    margin-bottom: 10px;
}
.basic_sentence {
    width: fit-content;
    margin: 0 auto;
    font-size: 1.2rem;
}
.link_text {
    border-bottom: 1px solid #f18e31;
    font-weight: 500;
    color: #f18e31; 
}

/* ----- ヘッダー ----- */
.header_subtitle {
    color: #48E0C2;
    line-height: 1.2em;
    font-size: 1.2rem;
}
.sp_header {
    height: 50px;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 6fr 1fr;
    background-color: rgba(255,255,255,0.9);
    align-items: center;
}
.sp_header img {
    width: 85%;
    
}
.sp_header_inner {
    display: flex;
    align-items: flex-end;
}
.insta_icon img {
    width: 28px;
    margin-bottom: 5px;
}
.pc_header {
    /* width: 90%;
    max-width: 1500px; */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 0 auto;
    padding: 12px 12px 12px 8px;
}
.h1_pc {
    z-index: 9999;
    position: absolute;
    top: 0;
}
.h1_pc img {
    max-width: 200px;
}
.pc_header_right {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: flex-end;
}
.pc_header_right img {
    height: 100px;
}
.phr_text {
    margin-right: 20px;
    line-height: 1.3;
    color: #666;
    font-weight: 500;
    font-size: 1.8rem;
}
.phc_tell {
    margin: 0;
    color: #ff9d26;
    font-weight: bold;
}
.m0 {
    margin: 0;
}

/* ----- ヘッダーイラストナビ ----- */
.phr_list {
    display: flex;
    justify-content: flex-end;
}
.phr_list img {
    max-width: 100px;
}
.phr_list a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.phr_item {
    margin-left: 10px;
}

/* -----ハンバーガーメニュー----- */
/*　ハンバーガーボタン　*/
.hamburger {
    z-index: 9999;
	display : block;
	position: fixed;
	right : 15px;
	top   : 8px;
	width : 42px;
	height: 36px;
	cursor: pointer;
	text-align: center;
    background-color: #2dabea;
}
.hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 3px ;
    left    : 6px;
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 8px;
}
.hamburger span:nth-child(2) {
    top: 16px;
}
.hamburger span:nth-child(3) {
    top: 24px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}
nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #000;
    /* background: #fff; */
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    font-size: 1.6rem;
}
nav.globalMenuSp ul {
    background-color: rgba(0,0,0,0.8);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #ccc;
}
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
nav.globalMenuSp ul li:hover{
    background :#ddd;
}
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 2em 0;
    text-decoration :none;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

.slide_padding {
	padding-top: 5px;
}

.top_image {
    width: 100%;
    text-align: center;
}
.top_image img {
    width: 100%;
    max-width: 1400px;
}

/* ----- SPアイコンナビ ----- */
.top_list {
    position: sticky;
    margin-top: calc(60% + 100px);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    padding: 0 20px;
    text-align: center;
}
.top_list img {
    width: 100%;
}
.top_item a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.recruit_icon {
    text-align: center;
    margin-top: 20px;
}
.recruit_icon img {
    width: 90%;
}

.contents_wrapper {
    position: relative;
    width: 100%;
    margin: 0px auto;
    background-color: #fff;
}

/* ----- サービス一覧 ----- */
.service_block_wrapper {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin: 10px auto 20px;
}
.service_block_wrapper a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.service_block {
    padding: 6px 8px;
    border: 1px solid #eee;
    box-shadow: 2px 2px 2px #ccc;
}
.service_block_wrapper img {
    width: 100%;
}
.sb_title {
    border-bottom: 1px solid #ffdeb6;
    padding-bottom: 0.1em;
    color: #ff9d26;
    font-weight: bold;
    font-size: 1.6rem;
}
.sb_text {
    margin-top: 0.25em;
    font-size: 1.2rem;
}

/* ----- トップメッセージ ----- */
.top_message {
    margin: 0 auto 0;
}

.tm_title {
    margin-bottom: 0.2em;
    color: #2dabea;
    font-weight: bold;
    font-size: 1.6rem;
}
.tm_text {
    font-size: 1.4rem;
}
.tm_image {
    margin: 10px auto;
}
.tm_image img {
    width: 50%;
}

/* ----- お知らせ ----- */
/* お知らせ */
.news_list {
    box-sizing: border-box;
	margin: 0;
	padding: 0;

    width: 90%;
    max-width: 700px;
    height: 130px;
    overflow-y: scroll;
    margin: 10px auto;
    padding: 0 10px;
    font-size: 14px;
}
.news_over {
    display: flex;
    margin-bottom: 5px;
    align-items: baseline;
    line-height: 1.3;
}
.news_date {
    margin-right: 1.5em;
}
.news_category {
    padding: 0.2em 0.5em;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 1.3rem;
}
.nc_news {
    background-color: #72bd01;
}
.nc_recruit {
    background-color: #2dabea;
}
.news_item {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #72bd01;
    color: #444;
    font-weight: 500;
}
.news_item a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.ni_link {
    border-bottom: 1px solid #523210;
}
/* スクロールバー */
.news_list::-webkit-scrollbar {
    width: 14px;
}
.news_list::-webkit-scrollbar-track {
    background-color: #EFEFEF;
    border-radius: 10px;
}
.news_list::-webkit-scrollbar-thumb {
    background-color: #c9c9c9;
    /* background-image: linear-gradient(
        135deg, rgb(255, 186, 115), #ffb2b2); */
    border-radius: 10px;
}

.blog_list {
    max-width: 750px;
    /* height: 400px; */
    margin: 10px auto 0;
    /* overflow-y: scroll; */
}
.blog_item {
    max-width: 800px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 10px;
    margin-bottom: 8px;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #c9edf7;
    box-shadow: 2px 2px 2px #c1e2eb;
}
.blog_item:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.blog_item img {
    width: 100%;
}
.icon_mini {
    z-index: 1000;
    position: absolute;
    top: 12px;
    right: 12px;
    /* top: 50%;
    transform: translate(0, -50%); */
}
.icon_mini img {
    width: 30px;
}
.icon_pdf {
    top: 10px;
    right: 16px;
}
.icon_pdf img {
    width: 28px;
}
.bi_date {
    color: #2dabea;
    font-size: 1.6rem;
}
.bi_title {
    line-height: 1.5;
    font-size: 1.6rem;
}
.blog_detail {
    width: 60%;
    margin: 0.5em auto 0;
    text-align: center;
    background-color: #2dabea;
    color: #fff;
    font-size: 1.2rem;
}
.list_link {
    display: block;
    width: fit-content;
    margin: 0 0 0 auto;
    color: #444;
    border-bottom: 1px dashed #999;
    font-size: 1.2rem;
}
.list_link:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* ----- 施設内装 ----- */
.gallery_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 6px 12px;
    margin: 5px auto 0;
    text-align: center;
}
.gallery_grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 2px #ddd;
}
.gallery_grid img:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.gallery_index {
    margin-top: 0.25em;
    /* color: #3eb4eb; */
    color: #72bd01;
    font-weight: bold;
    font-size: 1.4rem;
}

/* ----- 地図 ----- */
.access_wrapper {
    width: 90%; 
    max-width: 1000px; 
    margin: 10px auto;
    text-align: center;
}
.access_emphasis {
    padding: 0.5em 0 0.25em;
    color: #724618;
    text-align: left;
    font-weight: bold;
    font-size: 1.4rem;
}
.access_list {
    list-style: square;
    padding: 0 1em 0.5em;
    text-align: left;
    font-size: 1.4rem;
}
.access_block {
    text-align: left;
    font-size: 1.6rem;
}
.access_addess {
    color: #444;
    font-weight: bold;
}
.tel_emphasis {
    color: #ff9d26;
    font-weight: bold;
    font-size: 1.4rem;
}
.map_grid {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 10px;
}
.map_grid img {
    width: 100%; 
    max-width: 500px;
}
.map_left {
    text-align: center;
    color: #00A0E9;
    font-size: 1.2rem;
}
.map_left img {
    margin-bottom: 0.5em ;
}

/* ----- その他 ----- */
.others_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 50px;
}
.others_grid img {
    width: 100%;
    box-shadow: 2px 2px 2px #0682bb;
}

/* ----- フッター ----- */
.footer {
    background-color: #eee;
}
.footer_block {
    padding: 20px;
}
.footer_name {
    font-size: 2.4rem;
}
.footer_text {
    font-size: 1.4rem;
}
.footer_nav {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
    font-size: 1.2rem;
}
.copy {
    margin-top: 1em;
    text-align: center;
}


/* ----- 形態別 ----- */
.space_block {
    height: 100px;
}

.basic_top_image {
    position: relative;
    text-align: center;
}
.basic_top_image img {
    z-index: 1000;
    width: 90%;
}
.basic_top_block {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgba(255,255,255,0.9);
    border: 1px solid #43D256;
    text-align: center;
    place-items: center;
}
.basic_main_title {
    font-weight: normal;
    font-size: 2.4rem;
}
.basic_about {
    position: relative;
    margin-top: 20px;
    padding: 1em;
    border: solid 2px #43D256;
    border-radius: 3px 0 3px 0;
    line-height: 1.8;
    font-size: 1.6rem;
}
.basic_about:before, .basic_about:after {
    content: '';
    position: absolute;
    width:12px;
    height: 12px;
    border: solid 2px #43D256;
    border-radius: 50%;
}
.basic_about:after {
    top:-10px;
    left:-10px;
}
.basic_about:before {
    bottom:-10px;
    right:-10px;
}

.basic_table {
    margin: 20px auto;
    font-size: 1.4rem;
}
.ht_th {
    width: 100px;
    padding: 6px;
    border: 1px solid #ddd;
    border-left: none;
    background-color: #E9FFEC;
}
.ht_td {
    padding: 6px;
    border: 1px solid #ddd;
    border-right: none;
}

/* 一日の流れ */
.schedule_grid {
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 3fr;
    margin: 0 auto;
    padding: 10px 10px 0;
    color: #444;
    font-weight: 500;
    font-size: 1.4rem;
}

.sg_time {
    display: block;
    /* margin: -1px 0 0 -1px; */
    padding: 0.5em 1em 0.5em 0;
    text-align: right;
}
.sg_action {
    position: relative;
    display: block;
    border-left: 1px solid #8ecae7;
    /* margin: -1px 0 0 -1px; */
    padding: 0.5em 1em 0.5em 1em;
}

.sg_action::before {
    position: absolute;
    content: "";
    left: -6px;
    top: 12px;
    width: 11px;
    height: 11px;
    background-color: #8ecae7;
    border-radius: 50%;
}

.ls025em {
    letter-spacing: 0.25em;
}
.ls03em {
    letter-spacing: calc(1em / 2);
}
.ls05em {
    letter-spacing: 0.5em;
}
.ls06em {
    letter-spacing: 0.6em;
}
.ls08em {
    letter-spacing: 0.8em;
}
.ls11em {
    letter-spacing: 1.1em;
}



.button_grid {
    display: grid;
    grid-gap: 20px;
}
.charge_button {
    display: block;
    width: 220px;
    margin: 0 auto;
    color: #ff9d26;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ff9d26;
    border-radius: 20px;
    box-shadow: 2px 2px 2px #dd871e;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.4rem;
}
.charge_button a {
    display: block;
}
.charge_button:hover {
    color: #fff;
    background-color: #ff9d26;
    transition: 0.2s;
}
.charge_button:hover {
    opacity: 0.8;
    transition: 0.2s;
}
/* ジャンプボタン（別ver.） */
.charge_button_ano {
    width: 300px;
    border-radius: 0px;
}


/* ----- ショートステイ ----- */
.fit_content .ht_th {
    width: fit-content;
}
.or_emphasis {
    color: #ff9d26;
    font-weight: bold;
}

/* ----- デイサービス ----- */
.bs_pc {
    margin: 20px auto;
}
.flowchart {
    text-align: center;
}
.flowchart img {
    width: 80%;
}
.rec_title {
    color: #6ec495;
    font-weight: bold;
    font-size: 1.4rem;
}
.rec_list {
    width: fit-content;
    margin: 0.5em auto 1em;
}
.rec_item {
    border-bottom: 1px dotted #6ec495;
    line-height: 2rem;
    font-size: 1.2rem;
}
/* ----- 居宅 ----- */
.basic_tel_emphasis {
    font-size: 1.8rem;
}
.basic_news_button {
    border: 1px solid #ff9d26;
}


/* ----- 問い合わせページ ----- */
.inq_title {
    margin-bottom: 0.5em;
    text-align: center;
    color: #43D256;
    font-weight: bold;
    font-size: 2.4rem;
}

.inq_subtitle {
    z-index: 100;
    display: block;
    width: fit-content;
    position: relative;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;

    border-bottom: double 5px #FFC778;
}
.inq_subtitle2 {
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
}

/* ご利用までの流れ */
.at_ano {
    display: block;
    color: #43D256;
}
.application_wrapper {
    max-width: 1000px;
    margin: 0 auto 50px;
}
.application_grid {
    display: grid;
    grid-template-columns: 1fr 5fr;
    padding-top: 8px;
}
.ag_left {
    margin-top: 10px;
    background-image: url(../images/dotted.png);
    background-size: contain;
    background-repeat: repeat-y;
    text-align: center;
}
.ag_left img {
    width: 80%;
}
.ag_right {
    
}
.application_title {
    padding: 15px 0 10px 10px ;
    border-top: 1px dashed #2dabea;
    /* font-weight: bold; */
    font-size: 2rem;
}
.application_image {
    text-align: center;
}
.application_image img {
    width: 90%;
}
.application_block {
    padding: 0 0 12px;
}
.application_sentence {
    padding: 0 0 0 10px ;
    font-size: 14px;
}
.application_sentence a {
    border-bottom: 1px solid #333;
}
.application_sentence a:hover {
    opacity: 0.7;
    transition: 0.2s;
}
.sb_pd {
    padding: 0;
}
.border_none {
    border: none;
}
.application_grid_period {
    padding: 0;
}
.agl_period {
    margin: 0;
}
.agl_period img {
    width: 30%;
}
.application_add_text {
    width: 100%;
    padding-left: 0.25em;
    text-align: left;
    color: #444;
    font-weight: 500;
}

/* サイトマップ */
.sitemap_title {
    font-size: 2.4rem;
}
.sitemap_list {
    width: fit-content;
    margin: 50px auto;
    font-size: 2rem;
}
.sitemap_item {
    margin-bottom: 8px;
    border-bottom: 1px dotted #000;
}
.sitemap_item a:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* 個人情報保護方針 */
.privacy_title {
    font-size: 2.4rem;
}
.privacy_sentence {
    margin: 2em 0 0 0;
    font-size: 1.4rem;
}
.privacy_list {
    margin: 1em 0 0 1em;
}
.privacy_item {
    margin-bottom: 0.5em;
}
.privacy_space {
    margin: 1em 0 0.5em 0;
}

/* スマホ用fixedボタン */
.fixed_nav {
    width: 100%;
    /* max-width: 1400px; */
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 50%;
	transform: translateX(-50%) translateY(0);
}

/* ----- 施設案内 ----- */
.philosophy {
    font-size: 1.2rem;
}
.philosophy_emphasis {
    color: #444;
    font-weight: bold;
    font-size: 1.4rem;
}
.floor_map {
    width: 98%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin: 10px auto;
}
.floor_map img {
    width: 100%;
    max-width: 800px;
    text-align: center;
}
.floor_map_block {
    margin: 0 auto;
}
.floor_map_block a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.floor_map_title {
    font-weight: bold;
    font-size: 1.6rem;
}
.overview_table {
    min-width: 320px;
    margin: 10px auto;
    font-size: 1.2rem;
}
.overview_table th, .overview_table td {
    border: 1px solid  rgb(196, 225, 240);
    padding: 4px;
}
.overview_table th {
    background-color: #f6fcff;
    color: #444;
    font-weight: 500;
}

.deta_list {
    list-style-type: disc;
    margin: 10px 0 0 20px;
}
.deta_item {
    width: fit-content;
    position: relative;
    margin-bottom: 1em;
    font-size: 1.6rem;
}
.deta_item a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.border_hover {
    border-bottom: 1px solid #fff;
}
.border_hover:hover {
    border-bottom: 1px solid #666;
    transition: 0.2s;
}
.deta_item img {
    width: 30px;
}
.pdf_icon {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateX(0) translateY(-50%);
}

/* サービス紹介 */
.conditions_wrapper {
    position: relative;
    width: fit-content;
    margin: 0 auto 30px;
    padding: 20px 20px 20px 20px;
    border: 1px solid #ff9d26;
}
.conditions_title {
    position: absolute;
    top: -15px;
    left: 20px;
    color: #ff9d26;
    font-weight: 500;
    font-size: 1.6rem;
}
.ct_space {
    padding: 0.5em;
    background-color: #fff;
}
.conditions_sentence {
    line-height: 1.8;
    font-size: 1.2rem;
}
.conditions_emphasis {
    color: #ff9d26;
    font-weight: bold;
}
.blocksp_add_margin {
    margin: 20px auto 40px;
}
.blockpc_add_margin {
    margin: 30px auto 80px;
}
.conditions_list {
    list-style-type: disc;
    margin-left: 1em;
}
.thanks_wrapper {
    margin: 20px auto;
    text-align: center;
}

.thanks_title {
    font-weight: bold;
    font-size: 2rem;
}
.thanks_sentence {
    margin-top: 20px;
    font-size: 1.4rem;
}

/* ----- お知らせ 個別 ----- */
.individual_news_wrapper {
    width: 97%;
    max-width: 1000px;
}
.individual_news_title {
    margin-top: 1em;
    font-weight: bold;
    font-size: 2rem;
}
.individual_news_date {
    font-size: 1.2rem;
    margin-bottom: 1em;
}
.individual_news_text {
    font-size: 1.2rem;
}
.individual_index {
    font-weight: bold;
    font-size: 1.6rem;
}
.rules_list {
    list-style: disc;
    margin-bottom: 1em;
}
.rules_item {
    margin: 0.5em 0 0 1.5em;
}
.rules_emphasis {
    color: #fc7e00;
    font-weight: 500;
}
.food_list {
    width: fit-content;
    margin: 0.5em auto;
    padding: 0.5em;
    border: 1px dashed #dd0101;
}
.food_item {
    list-style: square;
    margin-left: 1em;
    font-weight: 500;
}

/* ジャンプボタン */
.jump_button {
    display: block;
    width: 250px;
    margin: 15px auto 25px;
    color: #ff9d26;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ff9d26;
    box-shadow: 2px 2px 2px #dd871e;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.4rem;
}
.jump_button a {
    display: block;
}
.jump_button:hover {
    color: #fff;
    background-color: #ff9d26;
    transition: 0.2s;
}
.jump_button:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* 電話ブロック*/
.tel_block {
    position: relative;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 20px;
    border: 1px solid #ff9d26;
    box-shadow: 2px 2px 2px #dd871e
}
.tb_space {
    padding: 0.5em;
}
.tb_number {
    letter-spacing: 0.2rem;
    color: #ff9d26;
    border-bottom: 2px solid #ff9d26;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}
.tb_number a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.tb_sentence {
    margin-top: 5px;
    text-align: center;
    font-size: 1.6rem;
}


@media screen and (max-width: 599px) {
    .sp_hidden {
        display: none;
    }
    .access_wrapper {
        max-width: 350px;
    }
    .schedule_grid_under {
        padding-top: 0;
    }
}

@media screen and (min-width: 600px) {
    .pc_hidden {
        display: none;
    }
    .subtitle {
        line-height: 1.5;
        font-size: 3.6rem;
    }
    .subtitle_under {
        font-size: 1.6rem;
    }
    .index_title {
        font-size: 3rem;
    }
    .basic_wrapper {
        margin: 40px auto;
    }
    .basic_image img {
        margin-bottom: 20px;
    }
    .basic_sentence {
        font-size: 2rem;
    }

    .subtitle_01 {
        line-height: 1.2;
        font-size: 3.6rem;
    }
    

    /* ヘッダー */
    .header_subtitle {
        font-size: 1.6rem;
    }
    .title {
        font-size: 3.6rem;
    }

    .nav_item {
        margin: 20px 0;
        font-size: 2rem;
    }
    .phr_list {
        margin: 0 0 0 auto;
    }

    .top_image img {
        width: 90%;
    }

    /* ----- ナビブロック ----- */
    .mainnav {
        z-index: 9000;
        width: 100%;
        max-width: 1400px;
        height: 150px;
        position: absolute;
        top: -150px;
        left: 50%;
        transform: translate(-50%, 0);
        background-color: #fff;
    }
    .mainnav_list {
        max-width: 1400px;
        display: flex;
        margin: 0 auto;
    }
    .mainnav_item {
        width: 25%;
        background-color: #fafeff;
        line-height: 50px;
        text-align: center;
        line-height: 1.5;
        font-weight: 500;
        font-size: 2rem;
    }
    .mainnav_item:hover {
        transition: 0.2s;
        background-color: #2dabea;
        color: #fff;
    }
    .mainnav_selected {
        position: relative;
        background-color: #2dabea;
        color: #fff;
    }
    .mainnav_selected::after {
        content: "▼";
        color: #2dabea;
        font-size: 20px;
        position: absolute;
        bottom: -22px;
        left: 45%;
    }
    .mainnav_item:nth-child(n + 2) {
        border-left: 1px solid #ccc;
    }
    .mainnav_item a {
        display: block;
        padding: 15px 0;
    }
    .mainnav_eng {
        display: block;
        font-size: 1.4rem;
    }

    .service_block_wrapper {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px 15px;
        margin: 30px auto 50px;
    }
    .sb_title {
        padding-bottom: 0.1em;
        font-size: 2rem;
    }
    .sb_text {
        margin-top: 0.5em;
        font-size: 1.4rem;
    }

    /* ----- トップメッセージ ----- */
    .top_message {
        max-width: 1000px;
        display: grid;
        grid-template-columns: 9fr 4fr;
        grid-gap: 50px;
        margin: 0 auto 0;
        align-items: center;
    }
    .tm_title {
        font-size: 2.4rem;
    }
    .tm_block {
        margin: 20px auto;
    }
    .tm_text {
        font-size: 2rem;
    }
    .tm_image img {
        width: 100%;
    }

    /* お知らせ */
    .news_list {
        height: 150px;
        padding-right: 20px;
        font-size: 1.8rem;
    }
    .news_item {
        display: grid;
        grid-template-columns: 5fr 9fr;
        grid-gap: 20px;
        align-items: center;
    }
    .news_category {
        font-size: 1.6rem;
    }
        
    .contents_wrapper {
        width: 95%;
        margin: 20px auto 40px;
        padding-top: 10px;
    }
    .blog_list {
        /* height: 500px; */
        margin: 20px auto 0;
        /* padding-right: 10px; */
    }
    .blog_item {
        grid-template-columns: 1fr 5fr;
        grid-gap: 20px;
        margin: 0 auto 16px;
        padding: 12px ;
        font-size: 2rem;
    }
    .icon_mini img {
        width: 40px;
    }
    .bi_date {
        font-size: 2rem;
    }
    .bi_title {
        font-size: 2.4rem;
    }
    .blog_detail {
        width: 200px;
        margin: 0.5em auto 0;
        font-size: 2rem;
    }
    .list_link {
        font-size: 1.6rem;
    }

    /* 地図 */
    .access_wrapper {
        margin: 30px auto;
    }
    .access_emphasis {
        font-size: 2rem;
    }
    .access_list {
        font-size: 2rem;
    }
    .access_block {
        font-size: 2rem;
    }
    /* .pc_width90 {
        width: 90%;
        margin: 0 auto;
    } */
    .tel_emphasis {
        font-size: 2rem;
    }

    .map_grid {
        width: 100%;
        grid-template-columns: 4fr 5fr;
        grid-gap: 40px;
        margin: 20px auto 10px;
    }
    .map_left {
        font-size: 1.6rem;
    }

    /*  施設内装  */
    .gallery_grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px 10px;
        margin: 10px auto 0;
    }
    .gallery_grid img {
        width: 100%;
    }
    .gallery_index {
        font-size: 1.8rem;
    }

    

    /* フッター */
    .footer_block {
        padding: 40px;
    }
    .footer_name {
        font-size: 3rem;
    }
    .footer_text {
        font-size: 2rem;
    }
    .footer_nav {
        width: 50%;
        font-size: 1.4rem;
    }

    /* デイサービス */
    .flow_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .flowchart img {
        width: 50%;
    }
    .rec_title {
        font-size: 2rem;
    }
    .rec_item {
        line-height: 2;
        font-size:2rem;
    }
    /* 居宅 */
    .basic_tel_emphasis {
        font-size: 2.6rem;
    }
    .basic_news_button {
        min-width: 500px;
        border: 1px solid #ff9d26;
        font-size: 2rem;
    }

    /* サイトマップ */
    .sitemap_title {
        font-size: 3rem;
    }
    .sitemap_list {
        margin: 100px auto;
        font-size: 3rem;
    }
    .sitemap_item {
        margin-bottom: 16px;
    }
    /* 個人情報保護方針 */
    .privacy_title {
        font-size: 3rem;
    }
    .privacy_sentence {
        font-size: 2rem;
    }
    /* ----- 問い合わせページ ----- */
    .inq_title {
        margin-bottom: 0.5em;
        font-size: 3.6rem;
    }
    .inq_subtitle,.inq_subtitle2 {
        font-size: 3rem;
    }
    /* タイトル装飾 */
    .tour01 {
        z-index: -100;
        top: -30px;
        left: -80px;
        transform: rotate(-25deg);
    }
    .tour01 img {
        width: 100px;
    }

    .meal01 {
        top: -10px;
        left: -120px;
    }
    .meal01 img {
        width: 90px;
    }
    .meal02 {
        top: -10px;
        right: -120px;
    }
    .meal02 img {
        width: 90px;
    }

    .service01 {
        z-index: -100;
        top: -30%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .service01 img {
        width: 500px;
    }

    /* ----- 施設案内 ----- */
    .philosophy {
        /* text-align: center; */
        line-height: 2;
        font-size: 2rem;
    }
    .philosophy_emphasis {
        font-size: 2rem;
    }
    .floor_map {
        grid-gap: 40px;
        margin: 20px auto;
    }
    .floor_map_title {
        font-weight: bold;
        font-size: 3rem;
    }
    .overview_table {
        width: 600px;
        margin: 10px auto;
        font-size: 1.6rem;
    }
    .overview_table th, .overview_table td {
        padding: 8px 12px;
    }
    .deta_list {
        margin: 10px 0 0 20px;
    }
    .deta_item {
        font-size: 2rem;
    }
    .deta_item img {
        width: 40px;
    }
    .pdf_icon {
        top: 50%;
        right: -50px;
        transform: translateX(0) translateY(-50%);
    }

    /* 一日の流れ */
    .schedule_grid_wrapper {
        max-width: 1000px;
        display: flex;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
        margin: 0 auto;
    }
    .schedule_grid {
        grid-template-columns: 1fr 4fr;
        padding: 20px 0 0 0;
        font-size: 2rem;
    }
    .sg_time {
        padding: 0.5em 1em 2em 0;
        text-align: right;
    }
    .sg_action::before {
        left: -7px;
        top: 20px;
        width: 13px;
        height: 13px;
    }

    /* ご利用までの流れ */
    .application_grid {
        grid-template-columns: 1fr 7fr;
    }
    .ag_left img {
        width: 50%;
    }
    .application_image {
        margin: 20px 0;
    }
    .step_title {
        font-size: 30px;
    }
    .application_title{
        line-height: 38px;
        padding: 20px 0;
        font-size: 30px;
    }
    .reversal {
        line-height: 3rem;
        margin-right: 0.1em;
        padding: 3px;
    }
    .accordion_topick {
        font-size: 28px;
    }
    .step_number {
        line-height: 28px;
    }
    .another_at {
        font-size: 28px;
    }
    .another_sn {
        line-height: 28px;
    }
    .another_img {
        width: 30px;
        top: 50%;
        right: 16px;
    }
    .application_sentence {
        font-size: 20px;
    }
    .agl_period img {
        width: 30%;
    }
    /* fixedボタン */
    .fixed_button {
        right: 50px;
        bottom: 30px;
    }
    .fixed_button img {
        width: 100px;
    }

    /* 入居条件 */
    .conditions_wrapper {
        margin: 0 auto 60px;
        padding: 25px 30px 30px 30px;
    }
    .conditions_title {
        top: -20px;
        left: 20px;
        font-size: 2.4rem;
    }
    .conditions_sentence {
        font-size: 2rem;
    }
    .conditions_list {
        margin-left: 2em;
    }

    /* ----- 料金表ボタン ----- */
    /* .charge_button {
        padding: 0.5em 1em;
        font-size: 3rem;
    }
    .charge_button_flex img {
        width: 60px;
        margin-left: 0.5em;
    } */
    .button_flex {
        max-width: 700px;
        display: flex;
        margin: 0 auto;
    }
    /* ジャンプボタン */
    .button_grid {
        max-width: 700px;
        grid-template-columns: 1fr 1fr;
    }
    .charge_button {
        width: 310px;
        margin: 0 auto;
        border-radius: 40px;
        box-shadow: 3px 3px 3px #dd871e;
        line-height: 50px;
        font-size: 2rem;
    }
    .charge_button_ano {
        width: 400px;
        padding: 0;
        border-radius: 0;
    }
    .charge_button_ano a {
        line-height: 66px;
    }

    /* ----- お知らせ 個別 ----- */
    .individual_news_wrapper {
        width: 90%;
    }
    .individual_news_title {
        font-size: 3.2rem;
    }
    .individual_news_date {
        font-size: 2rem;
    }
    .individual_news_text {
        font-size: 2rem;
    }
    .individual_index {
        font-size: 2rem;
    }
    .rules_list {
        margin-bottom: 2em;
    }
    .rules_item {
        margin: 1em 0 0 1.5em;
    }

    /* ジャンプボタン */
    .jump_button {
        width: 350px;
        margin: 40px auto 60px;
        box-shadow: 3px 3px 3px #dd871e;
        line-height: 50px;
        font-size: 2rem;
    }
    .jump_button_ano a {
        line-height: 66px;
    }

    /* 電話ブロック*/
    .tel_block {
        margin: 30px auto 0;
        padding: 20px 30px;
        border: 1px solid #ff9d26;
        box-shadow: 2px 2px 2px #dd871e
    }
    .tb_space {
        padding: 0.5em;
    }
    .tb_number {
        letter-spacing: 0.2rem;
        border-bottom: 2px solid #ff9d26;
        text-align: center;
        font-weight: bold;
        font-size: 3rem;
    }
    .tb_sentence {
        margin-top: 5px;
        text-align: center;
        font-size: 2rem;
    }
}




