/************ 下層ページ *****/
/****** 記事詳細 *****/
/* header */
header.inner {
	margin-bottom: 60px;
	height: 156px;
}
/* header */
header.inner::after {
	content: "※当WEBサイトの運営を支えるため、一部のページには広告が表示される場合があります。";
	font-size: 11px;
display: block;
max-width: 1320px;
margin-right: auto;
margin-left: auto;
padding-right: var(--bs-gutter-x,.75rem);
padding-left: var(--bs-gutter-x,.75rem);
}

header.inner.care {
	background-color: #F7B7C6;
}

header.inner.money {
	background: #FFD150;
}

header.inner.establishment {
	background: #1FA2E5;
}

header.inner.system {
	background: #B89CFF;
}

header.inner.rehabili {
	background: #59BEA4;
}

header.inner.other {
	background: #D1D721;
}

header.inner .h_wrap {
	height: 156px;
}

header.inner .h_wrap.thum img {
	max-width: 100%;
	height: 100%;
}

header.inner.no_space {
	/*margin-bottom: 0;*/
}

.insta_box img {
	max-height: 245px;
	object-fit: cover;
}

/* h */
.h1_ttl_inner {
	position: relative;
	padding-left: 80px;
	font-weight: bold;
}

.h1_ttl_inner::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url(/images/icon_h1.svg?c91fbd9a9bbc1950a4bbab8964fcbacf);
	background-size: contain;
	background-repeat: no-repeat;
	width: 65px;
	height: 68px;
	opacity: .5;
}

.h3_ttl_article {
	background-color: #F7F8CD;
	padding: 10px 15px;
	border-radius: 5px;
}

.h4_ttl_article, .h5_ttl_article {
	position: relative;
	padding-left: 25px;
}

.h4_ttl_article::before {
	position: absolute;
	content: "";
	background-color: #D1D721;
	width: 15px;
	height: 15px;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.h5_ttl_article::before {
	position: absolute;
	content: "";
	background-color: #D1D721;
	width: 15px;
	height: 2px;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/* list */
.listType {
	background-color: #F7F9FA;
	border-radius: 20px;
	padding: 20px;
}

.listType ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 15px;
}

.listType ul li::before {
	content: "";
	position: absolute;
	background-color: #D1D721;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	top: 10px;
	left: 0;
}

.listType ol {
	counter-reset: count 0;
}

.listType ol li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.listType ol li::before {
	content: counter(count);
	counter-increment: count 1;
	background-color: #D1D721;
	color: #fff;
	font-size: 14px;
	width: 24px;
	height: 24px;
	display: block;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

.listType ul li:last-child, .listType ol li:last-child {
	margin-bottom: 0;
}

/* table */
table.tableArea_article {
	border-collapse: collapse;
}

table.tableArea_article tr, table.tableArea_article td, table.tableArea_article th {
	border-width: 1px;
	border-color: #D1D721;
}

table.tableArea_article td, table.tableArea_article th {
	padding: 10px;
}

table.tableArea_article th {
	background-color: #ffffee;
	font-weight: 600;
	width: 30%;
}

/* 引用 */
blockquote {
	counter-reset: blockquote_num;
}

blockquote ul li {
	position: relative;
	padding-left: 30px;
}

blockquote ul li::before {
	counter-increment: blockquote_num;
	content: "※"counter(blockquote_num);
	position: absolute;
	left: 0;
}

blockquote a {
	color: #EA6C6C;
	text-decoration: underline;
}

blockquote a:hover {
	color: #EA6C6C;
	text-decoration: none;
}

/* 広告 */
.adArea ul {
	display: flex;
	flex-wrap: wrap;
}

.adArea ul li {
	width: 50%;
}

.adArea ul li a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 15px;
	border-radius: 5px;
	margin-right: 0px;
	margin-bottom: 10px;
}

.adArea ul li a.amazon {
	background-color: #FF9900;
}

.adArea ul li a.rakuten {
	background-color: #BF0000;
}

.adArea ul li a.yahoo {
	background-color: #FF0033;
}

/* 質問エリア */
.questionArea .box {
	padding: 45px;
	min-height: 218px;
}

.questionArea .box ul.tag {
	display: flex;
	flex-wrap: wrap;
}

.questionArea .box ul.tag li {
	margin-right: 15px;
	margin-bottom: 5px;
}

.questionArea .box ul.tag span {
	display: block;
	background: #fff;
	border: 1px solid #EA6C6C;
	padding: 1px 10px 0px;
	border-radius: 50px;
	color: #EA6C6C;
}
/* 目次 */
.post-toc ol {
}
.post-toc li {
    margin-bottom: 5px;
}

.post-toc .toc-level-3 {
    margin-left: 0; /* h3を最上位にするのでインデントなし */
}

.post-toc .toc-level-4 {
    margin-left: 20px; /* h4はh3からさらに20pxインデント */
}

.post-toc a {
    color: #007bff;
    text-decoration: none;
}

.post-toc a:hover {
    text-decoration: underline;
}

/* 動画広告 */
.video-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /*16:9の比率*/
  }
  .video-wrapper .video-js {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
  }

.box .date, .article_ListArea .date, .box .update {
	position: relative;
	padding-left: 20px;
}

.box .date::before, .article_ListArea .date::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	background-image: url(/images/icon_date.svg?459f6319353385b888107d395b0d643a);
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	height: 14px;
	opacity: .5;
}

.box .update::before, .article_ListArea .update::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	background-image: url(/images/icon_update.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	height: 14px;
	opacity: .5;
}

.questionArea .box .txt {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 2px solid #fff;
}

.fav_btn a {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 5px;
	margin-left: auto;
}

.fav_btn a span {
	position: relative;
}

.fav_btn a span::before {
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	display: inline;
	padding-right: 30px;
}

.fav_btn a.success {
	border: 1px solid #FFD033;
	background: #fff;
}

.fav_btn a.success span::before {
	background-image: url(/images/icon_fav.svg?5baab832d73401ac8c46fcf2651ce38e);
}

.fav_btn a.secondary {
	border: 1px solid #707070;
	background: #707070;
	color: #fff;
}

.fav_btn a.secondary span::before {
	background-image: url(/images/icon_favnone.svg?c633baf4d57793dcf04473ad4e099cb7);
}

/* 回答エリア */
.answerArea {
	margin-bottom: 60px;
}

.answerArea img {
	height: auto;
}

.answerArea .box .ttl {
	display: table;
	margin-right: auto;
	margin-left: auto;
	background-color: #D1D721;
	padding: 8px 80px;
	border-radius: 0 0 10px 10px;
}

.answerArea .box .inner {
	padding: 45px;
}

.answerArea .box .inner .comment_txt {
	padding-bottom: 40px;
	border-bottom: 2px solid #D1D721;
	margin-bottom: 40px;
}

.answerArea .box .inner .comment_txt img {
	width: 95px;
	height: 95px;
	margin-right: 25px;
}

.answerArea .box .ttl.supervision {
	background-color: #EA6C6C;
}

/* Youtube */
.frame_wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.frame_wrap .arrow,
.frame_wrap .arrow::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
}

.frame_wrap .arrow {
	width: 56px;
	height: 56px;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, .8);
	pointer-events: none;
}

.frame_wrap .arrow::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #222;
}

.frame_wrap img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: auto;
	transform: translateY(-50%);
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* 特集詳細エリア */
.pickup_article {
	margin-bottom: 60px;
}

.pickup_article .box {
	padding: 45px;
}

/* sns共有 */
.copy_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 10px;
	margin-right: auto;
	margin-left: auto;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	max-width: 340px;
	border: 1px solid #333;
	transition: .5s;
}

.copy_btn span {
	position: relative;
	padding-left: 30px;
}

.copy_btn span::before {
	position: absolute;
	content: "";
	background-image: url(/images/icon_copy.svg?13a57b7e11aa6930a07fb4db2b12c8ba);
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 24px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.copy_btn.copied {
	background-color: #333;
	color: #fff;
	border: 1px solid #333;
}

/* 関連記事 */
.related_article .box {
	display: flex;
	padding: 12px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.related_article .box .imgArea {
	min-width: 120px;
	padding-right: 15px;
}

.related_article .box .cat {
	color: #fff;
	background-color: #8A99A3;
	padding: 2px 10px 0px;
	min-width: 150px;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
}

.related_article .box .ttl {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	height: 52px;
}

/****** お知らせ *****/
.notice_area ul.news_list li a {
	padding: 15px 30px 15px 15px;
	border-top: 1px solid #E4E8EB;
	position: relative;
	display: block;
}

.notice_area ul.news_list li:last-child a {
	border-bottom: 1px solid #E4E8EB;
}

.notice_area ul.news_list li a::after {
	content: "";
	position: absolute;
	right: 15px;
	width: 11px;
	height: 11px;
	border-top: 2px solid #8A99A3;
	border-right: 2px solid #8A99A3;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transition: .5s;
}

.notice_area ul.news_list li a:hover::after {
	right: 5px;
}

.notice_area ul.news_list li .ttl {
	font-weight: bold;
}

/****** ケアポケとは *****/
.about_h_img {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.about_h_img img {
	max-width: 320px;
}

.about__h2_ttl {
	line-height: 3;
}

.about__h2_ttl span {
	border-bottom: 3px dotted #D1D721;
	padding-bottom: 8px;
}

.about__h3_ttl {
	padding: 15px 0;
}

.about__h3_ttl span {
	position: relative;
	padding: 0 14px;
	z-index: 9;
	font-size: 30px;
}

.about__h3_ttl span::before {
	content: "";
	position: absolute;
	top: 49%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: #D1D721;
	border-radius: 10px;
	width: 50px;
	height: 50px;
	z-index: -1;
}

.about__h3_ttl span:first-child {
	margin-left: 5px;
}

.about_area01 .green_bg {
	padding: 0 45px 45px 45px;
}

.about_area01 .bg-white {
	padding: 35px;
}

.about_area01 .bg-white .txt span {
	position: relative;
	z-index: 9;
}

.about_area01 .bg-white .txt span::before {
	content: "";
	position: absolute;
	background-color: #D1D721;
	height: 8px;
	width: 102%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: -1;
}

.about_area02 .box_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}

.about_area02 .box_wrap .num {
	width: 120px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about_area02 .box_wrap .txt {
	width: 55%;
}

/****** 会員プラン *****/
.plan_area table.plan_table {
	width: 100%;
}

.plan_area table.plan_table th, .plan_area table.plan_table td {
	border: 2px solid #D1D721;
	padding: 25px 10px;
}

.plan_area table.plan_table thead th:first-child {
	border: none;
	width: 33%;
}

.plan_area table.plan_table thead th:nth-child(2) {
	background: #F7F8CD;
	width: 33%;
}

.plan_area table.plan_table thead th:nth-child(3) {
	background: #EA6C6C;
	position: relative;
	color: #fff;
	border: 2px solid #EA6C6C;
	width: 33%;
}

.plan_area table.plan_table thead th:nth-child(3)::before {
	position: absolute;
	content: "";
	background-color: #EA6C6C;
	width: calc(100% + 2px);
	height: 15px;
	top: -15px;
	left: 0px;
}

.plan_area table.plan_table .t_txt {
	position: relative;
	text-align: left;
	padding-left: 16px;
}

.plan_area table.plan_table .t_txt::before {
	position: absolute;
	left: 0;
	content: "";
	background-color: #D1D721;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	top: 14%;
}

.plan__h3_ttl span {
	position: relative;
	z-index: 9;
	margin-left: 10px;
}

.plan__h3_ttl span::before {
	content: "";
	position: absolute;
	background-color: #D1D721;
	height: 8px;
	width: 102%;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: -1;
}

/****** よくある質問 *****/
.faqArea ul.q_list li {
	margin-bottom: 10px;
}

.faqArea ul.q_list a {
	display: block;
	background-color: #F7F9FA;
	border-radius: 10px;
	padding: 15px 40px;
	position: relative;
}

.faqArea ul.q_list a::before {
	content: "Q.";
	position: absolute;
	left: 15px;
	color: #D1D721;
	font-weight: bold;
	margin-right: 10px;
}

.faqArea ul.q_list a::after {
	position: absolute;
	content: "";
	top: 50%;
	right: 15px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: translateY(-50%) rotate(135deg);
	-webkit-transform: translateY(-50%) rotate(135deg);
	-ms-transform: translateY(-50%) rotate(135deg);
}

.faqArea .qa_box {
	padding: 30px 0;
	border-bottom: 1px solid #F7F9FA;
}

.faqArea .qa_box .q_ttl {
	margin-bottom: 15px;
	font-weight: bold;
	position: relative;
	padding-left: 45px;
}

.faqArea .qa_box .q_ttl::before {
	content: "Q";
	position: absolute;
	left: 0;
	background-color: #D1D721;
	color: #fff;
	font-weight: bold;
	padding: 1px 8px;
	border-radius: 5px;
}

/****** 新規会員登録 *****/
/* 入力画面 */
table.form_table {
	width: 100%;
}

table.form_table select, table.form_table label {
	cursor: pointer;
}

table.form_table .form-control.error_form, table.form_table .form-select.error_form {
	background: rgba(255, 0, 0, 0.1);
	border-color: #FF0000;
}

table.form_table .form-control, table.form_table .form-select {
	padding: 0.6rem 0.75rem;
}

table.form_table .form-check-input {
	vertical-align: baseline;
}

table.form_table .form-select-wrap {
	display: flex;
	align-items: flex-end;
}

table.form_table .form-select-wrap select {
	margin-right: 10px;
}

table.form_table .required::after {
	content: "必須";
	background: #FF0000;
	color: #fff;
	font-weight: normal;
	font-size: 12px;
	padding: 2px 4px 0px;
	display: inline-block;
	right: 20px;
	margin-left: 5px;
}

table.form_table td {
	vertical-align: top;
}

table.form_table th {
	text-align: right;
	width: 240px;
}

table.form_table th, table.form_table td {
	padding-bottom: 20px;
	padding-right: 20px;
}

table.form_table td:last-child {
	padding-right: 0;
}

table.form_table.contant_table th {
	width: 28%;
}

/* 確認画面 */
table.form_check_table {
	width: 100%;
}

table.form_check_table th, table.form_check_table td {
	padding-top: 20px;
	padding-bottom: 20px;
}

table.form_check_table tr:first-child th, table.form_check_table tr:first-child td {
	padding-top: 0;
}

table.form_check_table tr:last-child th, table.form_check_table tr:last-child td {
	padding-bottom: 0;
}

table.form_check_table th {
	font-weight: bold;
	text-align: right;
	width: 30%;
	padding-right: 20px;
}

table.form_check_table tr {
	border-bottom: 1px solid #E4E8EB;
}

table.form_check_table tr:last-child {
	border-bottom: none;
}

/****** 規約関連 *****/
.term_ttl {
	font-weight: bold;
	padding-bottom: 15px;
	border-bottom: 1px solid #E4E8EB;
	margin-bottom: 15px;
}

.count_reset {
	counter-reset: title;
}

ul.index2 {
	padding-left: 20px;
	counter-reset: section;
}

ul.index1 li, ul.index2 li {
	position: relative;
}

ul.index1 li {
	padding-left: 22px;
}

ul.index2 li {
	padding-left: 50px;
}

ul.index3 li {
	padding-left: 70px;
}

ul.index1 li::before {
	counter-increment: title;
	content: counter(title) ".";
	position: absolute;
	left: 0;
}

ul.index2 li::before {
	counter-increment: section;
	content: "（"counter(section) "）";
	position: absolute;
	left: 0;
}

/****** 脳トレ *****/
.noutoreArea .read_txt {
	display: flex;
	justify-content: center;
	align-items: center;
}

.noutoreArea .read_txt p {
	order: 1;
}

.noutoreArea .read_txt img {
	order: 2;
	max-width: 200px;
}

.noutoreArea .link_box {
	display: block;
}

.noutoreArea .link_box .txt_area p {
	position: relative;
	padding-left: 35px;
	display: table;
	margin: auto;
}

.noutoreArea .link_box .txt_area p::before {
	content: "";
	position: absolute;
	background-image: url(../img/noutore/arr.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 26px;
	height: 26px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.noutoreArea a.dl_box {
	display: block;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .2);
	position: relative;
}

.noutoreArea a.dl_box.new::after {
	content: "NEW";
	position: absolute;
	background-color: #EA6C6C;
	color: #fff;
	padding: 3px 12px;
	border-radius: 100px;
	right: 15px;
	top: 15px;
}

.noutoreArea a.dl_box img {
	padding: 10px;
}

.noutoreArea a.dl_box img {
	width: auto;
	max-height: 192px;
	display: block;
	margin: auto;
}

.noutoreArea a.dl_box .txt {
	aspect-ratio: 3/1;
	width: 87%;
	margin: 0 auto;
	position: relative;
	border-top: 1px solid #EDEDED;
	transition: .5s;
}

.noutoreArea a.dl_box .txt::after {
	content: "";
	background-image: url(../img/icon/icon_download02.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 35px;
	height: 30px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.noutoreArea a.dl_box .txt h4 {
	position: relative;
	padding-left: 18px;
	display: inline-block;
	font-weight: bold;
	line-height: 1.5;
	width: 85%;
}

.noutoreArea a.dl_box .txt h4::before {
	content: "";
	background-color: #D1D721;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 8px;
}

.noutoreArea .calendar img {
	opacity: .3;
}

.noutoreArea .calendar a img {
	opacity: 1;
}

/************ はじめての介護 *****/
.beginner_wrap header .inner {
	background-image: url(../img/beginner/kv_bg1.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 60px;
	position: relative;
	z-index: 9;
}

.beginner_wrap header {
	position: relative;
	overflow: hidden;
	z-index: 9;
}

.beginner_wrap header::before, .beginner_wrap header::after {
	content: "";
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	width: 340px;
	height: 285px;
	z-index: 0;
}

.beginner_wrap header::before {
	background-image: url(../img/beginner/kv_bg2.svg);
	left: -100px;
	bottom: 0;
}

.beginner_wrap header::after {
	background-image: url(../img/beginner/kv_bg3.svg);
	right: -80px;
	top: -50px;
}

.beginner_wrap .col_box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.beginner_wrap.max_wrap {
	max-width: 1400px;
	margin: auto;
}

.beginner_wrap ul.anker_btn {
	display: flex;
	justify-content: center;
}

.beginner_wrap ul.anker_btn li a {
	display: block;
	background-color: #FBE1E1;
	border-radius: 10px;
	padding: 15px 0 25px;
	width: 255px;
	text-align: center;
	margin: 0 10px;
	position: relative;
}

.beginner_wrap ul.anker_btn li a::after {
	content: "";
	position: absolute;
	bottom: 10px;
	right: 50%;
	width: 12px;
	height: 12px;
	border-top: 2px solid #EA6C6C;
	border-right: 2px solid #EA6C6C;
	-webkit-transform: rotate(135deg) translateX(-50%);
	transform: rotate(135deg) translateX(-50%);
	transition: .3s;
}

.beginner_wrap ul.anker_btn li a:hover::after {
	bottom: 5px;
}

.beginner_wrap .point {
	position: relative;
	margin-bottom: 70px;
}

.beginner_wrap .point .bg_img {
	position: absolute;
	top: 0;
	max-width: 50vw;
	z-index: -1;
}

.beginner_wrap .point.no1 .bg_img {
	left: 0;
}

.beginner_wrap .point.no2 .bg_img {
	right: 0;
}

.beginner_wrap .point .inner_box {
	height: 580px;
}

.beginner_wrap .point .inner_box .beginner_h3_ttl span {
	background-color: #EA6C6C;
	padding: 5px 10px;
	color: #fff;
	margin-bottom: 10px;
	display: inline-block;
	font-weight: 500;
}

.beginner_wrap .point .inner_box .check_list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.beginner_wrap .point .inner_box .check_list li::before {
	content: "";
	position: absolute;
	background-image: url(../img/icon/icon_check.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	left: 0;
	top: 3px;
}

.beginner_wrap .advice_box {
	border: 4px solid #FBE1E1;
	border-radius: 20px;
	padding: 20px;
	position: relative;
	display: flex;
}

.beginner_wrap .advice_box p {
	padding-left: 20px;
}

.beginner_wrap .advice_box .ttl {
	position: absolute;
	top: -15px;
	left: 30px;
}

/* 記事一覧 カテゴリーカラー反映 */
.article_ListArea a.box.care .cat, .related_article .box.care .cat {
	background-color: #F7B7C6;
}

.article_ListArea a.box.money .cat, .related_article .box.money .cat {
	background-color: #FFD150;
}

.article_ListArea a.box.establishment .cat, .related_article .box.establishment .cat {
	background-color: #1FA2E5;
}

.article_ListArea a.box.system .cat, .related_article .box.system .cat {
	background-color: #B89CFF;
}

.article_ListArea a.box.rehabili .cat, .related_article .box.rehabili .cat {
	background-color: #59BEA4;
}

/****** 天気 *****/
.weather_bg {}

/* gpsボタン */
.gps_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 10px;
	margin-right: auto;
	margin-left: auto;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	max-width: 340px;
	border: 1px solid #333;
	transition: .5s;
}

.gps_btn span {
	position: relative;
	padding-left: 34px;
}

.gps_btn span::before {
	position: absolute;
	content: "";
	background-image: url(/images/icon_gps.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 32px;
	height: 32px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/* 晴れ */
.w_sunny {
	background-image: linear-gradient(to bottom, #17A3FE, #AEDBFA);
}

/* 曇り */
.w_cloud {
	background-image: linear-gradient(to bottom, #353E42, #AAB2B5);
	position: relative;
	z-index: -1;
}

.cloud {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/img/weather/clouds.png');
	background-size: cover;
	opacity: 0.6;
	animation: cloud 240s linear infinite;
}

.cloud:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/img/weather/clouds.png');
	background-size: cover;
	opacity: 0.3;
	animation: cloud-reverse 480s linear infinite;
}

@keyframes cloud {
	0% {
		background-position: 0px;
	}

	100% {
		background-position: 5440px;
	}
}

@keyframes cloud-reverse {
	0% {
		background-position: 5440px;
	}

	100% {
		background-position: 0px;
	}
}

/* 雨 */
.w_rain {
	background-image: linear-gradient(to bottom, #353E42, #AAB2B5);
}

.w_rain .rain {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
}

.w_rain .drop {
	width: 2px;
	height: 0vh;
	background: rgba(200, 200, 200, 0.1);
	animation: falldown .5s infinite;
}

.w_rain .drop:nth-child(2n+0) {
	animation-delay: .1s;
	width: 0.25px;
}

.w_rain .drop:nth-child(3n+0) {
	animation-delay: .3s;
}

.w_rain .drop:nth-child(4n+0) {
	animation-delay: .4s;
}

.w_rain .drop:nth-child(5n+0) {
	animation-delay: .2s;
	width: 1.5px;
}

.w_rain .drop:nth-child(6n+0) {
	animation-delay: .5s;
}

.w_rain .drop:nth-child(7n+0) {
	animation-delay: .6s;
	width: 2px;
}

.w_rain .drop:nth-child(8n+0) {
	animation-delay: .7s;
}

.w_rain .drop:nth-child(9n+0) {
	animation-delay: .8s;
}

.w_rain .drop:nth-child(10n+0) {
	animation-delay: .9s;
}

@keyframes falldown {
	0% {
		margin-top: 0vh;
		height: 10vh;
	}

	50% {
		height: 20vh;
	}

	100% {
		height: 0vh;
		margin-top: 100vh;
	}
}

/* 雪 */
.w_snow {
	background-image: linear-gradient(to bottom, #353E42, #AAB2B5);
}

.snow {
	color: snow;
	font-size: 6px;
	position: fixed;
	top: -5%;
	text-shadow:
		5vw -100px 2px, 10vw -400px 3px, 20vw -500px 4px, 30vw -580px 1px, 39vw -250px 2px, 42vw -340px 5px, 56vw -150px 2px, 63vw -180px 0, 78vw -220px 4px, 86vw -320px 9px, 94vw -170px 7px;
	animation: anim 20s linear infinite;
}

.snow::after {
	content: "●";
	color: snow;
	font-size: 6px;
	position: fixed;
	top: -5%;
	text-shadow:
		5vw -100px 2px, 10vw -400px 3px, 20vw -500px 4px, 30vw -580px 1px, 39vw -250px 2px, 42vw -340px 5px, 56vw -150px 2px, 63vw -180px 0, 78vw -220px 4px, 86vw -320px 9px, 94vw -170px 7px;
	animation: anim 33s linear infinite;
}

@keyframes anim {
	100% {
		color: transparent;
		top: 200%;
	}
}


/****** 事業所検索一覧 *****/
/* ヘッダー */
header.o-search_area {
	position: relative;
	overflow: hidden;
}

header.o-search_area::before,
header.o-search_area::after {
	content: "";
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	width: 340px;
	height: 285px;
	z-index: 9;
}

header.o-search_area::after {
	background-image: url(../img/beginner/kv_bg2.svg);
	left: -100px;
	top: -20px;
}

header.o-search_area::before {
	background-image: url(../img/beginner/kv_bg3.svg);
	right: -80px;
	bottom: 0;
}

/* サイドメニュー */
form.search_detail_inner .form-select {
	background-color: #fff;
}

form.search_detail_inner input.form-check-input {
	width: 18px !important;
	height: 18px !important;
}

form.search_detail_inner .ac_btn {
	cursor: pointer;
	position: relative;
}

form.search_detail_inner .ac_btn::before {
	content: "";
	position: absolute;
	top: 43%;
	right: 20px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #1D4382;
	border-right: 1px solid #1D4382;
	-webkit-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
	transition: .5s;
}

form.search_detail_inner .ac_btn.active::before {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	top: 50%;
}

form.search_detail_inner .ac_inner label {
	text-indent: -17px;
	padding-left: 17px;
}

form.search_detail_inner button,
.o-search_area .search_pop_btn a {
	display: block;
	background-color: #D1D721;
	width: 100%;
	max-width: 90%;
	padding: 15px;
	border: none;
	border-radius: 50px;
	text-align: center;
	margin: auto;
}

form.search_detail_inner button span,
.o-search_area .search_pop_btn a span {
	position: relative;
	padding-left: 18px;
}

form.search_detail_inner button span::before,
.o-search_area .search_pop_btn a span::before {
	content: "";
	background-image: url(../img/o-search/icon_search.svg);
	background-size: contain;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/* メインコンテンツ */
.o-search_area .ad_area a {
	display: flex;
	width: 48%;
}

.o-search_area .ad_area a img {
	width: 100%;
}

.o-search_area .search_result_area .box_wrap {
	display: flex;
	background-color: #fff;
	border-bottom: 2px solid #eeece4;
	transition: .4s;
	pointer-events: none;
}

.o-search_area .search_result_area .box_wrap .thumbnail {
	pointer-events: auto;
}

.o-search_area .search_result_area .box_wrap:hover {
	background-color: #fffafa;

}

.o-search_area .search_result_area .box_wrap .gray_bg {
	transition: .4s;
}

.o-search_area .search_result_area .box_wrap:hover .gray_bg {
	background-color: #fff;
}

.o-search_area .search_result_area a.link_box {
	display: block;
	padding: 10px 0 65px 15px;
	pointer-events: auto;
}

.o-search_area .search_result_area a.link_box h2 {
	transition: .2s;
}

.o-search_area .search_result_area a.link_box:hover h2 {
	color: #EA6C6C;
}

.o-search_area .search_result_area a.link_box h2.approval {
	position: relative;
	padding-left: 22px;
}

.o-search_area .search_result_area a.link_box h2.approval::before {
	content: "";
	background-image: url(../img/icon/icon_approval.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 6px;
}

.o-search_area .search_result_area a.link_box .cat_tag {
	color: #fff;
	background-color: #EA6C6C;
	text-align: center;
	display: table;
	padding: 3px 10px;
	line-height: 1;
}

.o-search_area .search_result_area a.link_box ul.feature_tag li {
	color: #EA6C6C;
	display: inline-block;
	border: 1px solid #EA6C6C;
	border-radius: 50px;
	padding: 2px 10px;
	line-height: 1;
	margin: 2px;
}

.o-search_area .search_result_area a.link_box ul.feature_tag li::before {
	content: "#";
}

.o-search_area .search_result_area .box_wrap .img_area {
	width: 210px;
	padding-top: 10px;
}

.o-search_area .search_result_area .box_wrap .img_area .slider-img img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	padding-bottom: 2px;
	background: #fff;
}

.o-search_area .search_result_area .box_wrap .img_area ul.thumbnail li img {
	width: 100%;
	height: 50px;
	object-fit: cover;
	padding-left: 2px;
	cursor: pointer;
	background: #fff;
}

.o-search_area .search_result_area .box_wrap .img_area ul.thumbnail li:first-child img {
	padding-left: 0;
}




















.o-search_area .search_h2_ttl {
	background-color: #FBFCDB;
	font-weight: 600;
	padding: 10px 20px 10px 35px;
	position: relative;
}

.o-search_area .search_h2_ttl::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-color: #D1D721;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.o-search_area .search_h2_ttl.s_top {
	background-color: rgba(245, 202, 195, 0.52);
	font-weight: 600;
	padding: 10px 20px 10px 35px;
	position: relative;
}

.o-search_area .search_h2_ttl.s_top::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-color: #EA6C6C;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.o-search_inner .link_area a {
	display: block;
	border: 2px solid #EA6C6C;
	padding: 15px;
	width: 250px;
	border-radius: 50px;
	text-align: center;
	font-weight: 600;
}

.o-search_area .link_area a.cta_btn {
	width: 200px;
	border-radius: 50px;
	padding: 10px;
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: 0;
	background-color: #EA6C6C;
	color: #fff;
	font-weight: 600;
	right: 15px;
	bottom: 10px;
	z-index: 2;
	pointer-events: auto;
}

.o-search_area .link_area a.cta_btn span,
.o-search_inner .link_area a.cta_btn span {
	position: relative;
	padding-left: 24px;
}

.o-search_area .link_area a.cta_btn span::before,
.o-search_inner .link_area a.cta_btn span::before {
	content: "";
	background-image: url(../img/o-search/icon_mail.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 17px;
	height: 16px;
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.o-search_area .link_area a.detail_btn {
	margin-left: 10px;
	color: #EA6C6C;
}

/****** 事業所検索詳細 *****/
/* ヘッダー */
header.o-search_inner .h1_sub {
	background-color: #EA6C6C;
	padding: 0 10px;
	min-width: 150px;
	text-align: center;
	color: #fff;
	display: table;
	margin: auto;
}

header.o-search_inner .upd8 {
	position: relative;
	display: table;
	margin-right: 0;
	margin-left: auto;
	padding-left: 20px;
}

header.o-search_inner .upd8::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	background-image: url(/img/icon/icon_date2.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	height: 14px;
	opacity: .5;
}

header.o-search_inner .slider {
	position: relative;
}

header.o-search_inner .slider .slider-img {
	height: 500px;
	background: #fff;
}

header.o-search_inner .slider img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

header.o-search_inner .slider {
	background-color: #000;
	margin-bottom: 20px;
}

header.o-search_inner .slider .slick-slide:not(.slick-center) {
	opacity: .5;
	transition: 0.2s linear;
}

header.o-search_inner .thumbnail .thumbnail-img {
	padding: 0 10px;
	margin: 0 2px;
	cursor: pointer;
}

header.o-search_inner .thumbnail img {
	width: 100%;
	height: 70px;
	object-fit: cover;
}

/* コンテンツ */
.o-search_inner .h2_ttl {
	position: relative;
	padding-left: 20px;
}

.o-search_inner .h2_ttl::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-color: #D1D721;
	width: 10px;
	height: 10px;
}

.o-search_inner table.teble_area {
	width: 100%;
}

.o-search_inner table.teble_area tr td,
.o-search_inner table.teble_area tr th {
	padding: 15px 0;
	border-bottom: 1px solid rgba(206, 212, 218, 0.44);
}

.o-search_inner table.teble_area tr:first-child td,
.o-search_inner table.teble_area tr:first-child th {
	border-top: 1px solid rgba(206, 212, 218, 0.44);
}

.o-search_inner table.teble_area tr th {
	color: #EA6C6C;
	font-weight: 600;
	padding-right: 20px;
	width: 150px;
}

.o-search_inner .map_area iframe {
	width: 100%;
	aspect-ratio: 46/17;
}

.o-search_inner .link_area a {
	padding: 15px;
	max-width: 350px;
	width: 90%;
	border-radius: 50px;
	text-align: center;
	font-weight: 600;
	margin-right: auto;
	margin-left: auto;
	color: #EA6C6C;
}

.o-search_inner .link_area a.cta_btn {
	background-color: #EA6C6C;
	color: #fff;
}

.o-search_inner .list_area {
	background-color: #EFF3F5;
	border-radius: 10px;
	padding: 20px;
}

.o-search_inner .list_area ul li {
	position: relative;
	padding-left: 25px;
}

.o-search_inner .list_area ul li::before {
	content: "";
	background-image: url(/img/icon/icon_check2.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 15px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 8%;
}

.o-search_inner .list_area ul.w_half {
	display: flex;
	flex-wrap: wrap;
}

.o-search_inner .list_area ul.w_half li {
	width: 50%;
}


/****** キャンペーン一覧 *****/
.campaign_list a {
	display: block;
	background-color: #fff;
	transition: .6s;
}

.campaign_list a:hover {
	background-color: #D1D721;
}

.campaign_list a p {
	display: inline-block;
	padding: 0 10px;
	border-radius: 50px;

}

.campaign_list a .end {
	background-color: #EFF3F5;
	color: #333;
}

@media (max-width: 991px) {

	/************ 下層ページ *****/
	/****** 記事詳細 *****/
	/* header */
	header.inner {
		margin-bottom: 50px;
		height: 115px;
	}

	header.inner .h_wrap {
		height: 115px;
	}

	/* h */
	.h1_ttl_inner {
		padding-left: 43px;
	}

	.h1_ttl_inner::before {
		width: 35px;
		height: 36px;
	}

	.h3_ttl_article {
		padding: 8px 10px;
	}

	.h4_ttl_article, .h5_ttl_article {
		padding-left: 20px;
	}

	.h4_ttl_article::before {
		width: 10px;
		height: 10px;
	}

	.h5_ttl_article::before {
		width: 10px;
	}

.box .date::before, .article_ListArea .date::before {
  top: 2px;
}
.box .update::before, .article_ListArea .update::before {
  top: 2px;
}

	/* list */
	.listType {
		padding: 15px;
	}

	.listType ul li {
		margin-bottom: 5px;
	}

	/* table */
	table.tableArea_article td, table.tableArea_article th {
		padding: 8px;
	}

	/* 広告 */
	.adArea ul li {
		width: 100%;
	}

	/* お気に入り */
	.fav_btn a span::before {
		padding-right: 14px;
	}

	/* 質問エリア */
	.questionArea .box {
		padding: 20px;
		min-height: auto;
	}

	.questionArea .box .txt {
		margin-top: 15px;
		padding-top: 15px;
	}

	.questionArea .box ul.tag li {
		margin-right: 7px;
	}

	.listType ol li {
		padding-left: 27px;
	}

	.listType ol li::before {
		font-size: 12px;
		width: 20px;
		height: 20px;
	}

	/* 回答エリア */
	.answerArea {
		margin-bottom: 30px;
	}

	.answerArea .box .inner {
		padding: 20px;
	}

	.answerArea .box .ttl {
		padding: 4px 35px;
	}

	.answerArea .box .inner .comment_txt img {
		float: left;
		width: 60px;
		height: auto;
		margin-right: 15px;
	}

	.answerArea .box .inner .comment_txt {
		padding-bottom: 15px;
		margin-bottom: 20px;
	}

	/* 特集詳細エリア */
	.pickup_article {
		margin-bottom: 30px;
	}

	.pickup_article .box {
		padding: 20px;
	}

	/* sns共有 */
	.copy_btn span {
		padding-left: 23px;
	}

	.copy_btn span::before {
		width: 15px;
		height: 20px;
	}

	/* 関連記事 */
	.related_article .box .ttl {
		height: 10.5vh;
	}

.related_article .box .imgArea {
	max-width: 155px;
	min-width: 155px;
}
	/****** ケアポケとは *****/
	.about_h_img img {
		max-width: 100%;
		padding-top: 20px;
	}

	.about_area01 .green_bg {
		padding: 0 25px 25px 25px;
	}

	.about_area01 .bg-white {
		padding: 15px;
	}

	.about__h2_ttl {
		line-height: 2.8;
	}

	.about__h2_ttl.fontL {
		font-size: 2.6vw;
	}

	.about__h2_ttl span {
		padding-bottom: 5px;
	}

	.about__h3_ttl span {
		padding: 0 10px;
		font-size: 3.7vw;
	}

	.about__h3_ttl span::before {
		width: 35px;
		height: 35px;
	}

	.about__h3_ttl span:first-child {
		margin-left: 0;
	}

	.about_area02 .box_wrap {
		flex-wrap: wrap;
		justify-content: center;
		padding: 20px 0;
	}

	.about_area02 .box_wrap .num {
		display: none;
	}

	.about_area02 .box_wrap .txt {
		width: 100%;
	}

	.about_area02 .box_wrap .img {
		max-width: 50%;
	}

	.about_area02 .gray_bg3 .box_wrap .img {
		order: 2;
	}

	.about_area02 .gray_bg3 .box_wrap .txt {
		order: 1;
	}

	/****** 会員プラン *****/
	.plan_area .img_box img {
		max-width: 40%;
	}

	.plan_area table.plan_table .t_txt {
		padding-left: 12px;
	}

	.plan_area table.plan_table .t_txt::before {
		top: 8.5%;
	}

	.plan_area table.plan_table img {
		width: 25%;
	}

	.plan_area table.plan_table th, .plan_area table.plan_table td {
		padding: 15px 10px;
	}

	/****** 新規会員登録 *****/
	/* 入力画面 */
	table.form_table th, table.form_table td {
		display: block;
	}

	table.form_table th {
		text-align: left;
		padding-bottom: 10px;
		width: auto;
	}

	table.form_table.contant_table th {
		width: 100%;
	}

	/* 確認画面 */
	table.form_check_table th {
		padding-right: 16px;
		width: 30vw;
	}

	table.form_check_table th, table.form_check_table td {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	/************ はじめての介護 *****/
	.beginner_wrap header .inner {
		background-image: url(../img/beginner/kv_bg1_sp.svg);
		margin-top: 20px;
	}

	.beginner_wrap header::before, .beginner_wrap header::after {
		width: 179px;
		height: 150px;
	}

	.beginner_wrap header::after {
		right: -20px;
		top: -20px;
	}

	.beginner_wrap header::before {
		left: -40px;
	}

	.beginner_wrap .col_box {
		flex-wrap: wrap;
	}

	.beginner_wrap .col_box img {
		width: 45%;
	}

	.beginner_wrap .ex_img img {
		width: 45%;
	}

	.beginner_wrap ul.anker_btn li a {
		padding: 15px 20px 25px;
		width: auto;
	}

	.beginner_wrap .point .bg_img {
		max-width: 100%;
	}

	.beginner_wrap .point .inner_box {
		padding-top: 40vh;
		height: auto;
	}
	

	.beginner_wrap .advice_box {
		display: block;
		text-align: center;
	}

	.beginner_wrap .advice_box p {
		text-align: left;
		padding-top: 20px;
		padding-left: 0;
	}

	.beginner_wrap .advice_box .ttl {
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	/* 天気 */
	.gps_btn span {
		padding-left: 27px;
	}

	.gps_btn span::before {
		width: 22px;
		height: 22px;
	}

	/****** 脳トレ *****/
	.noutoreArea .img_area {
		width: 70%;
		margin: auto;
	}

	.noutoreArea a.dl_box img {
		max-height: inherit;
	}

	.noutoreArea a.dl_box .txt h4::before {
		content:none;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	.noutoreArea a.dl_box .txt h4{
		width: 100%;
		padding-left: 0;
	}
	.noutoreArea a.dl_box .txt::after{
		content:none;
	}

	.noutoreArea a.dl_box .txt {
		aspect-ratio: 4/1;
	}

	/****** 事業所検索一覧 *****/
	/* ヘッダー */
	header.o-search_inner .slider .slider-img {
		height: 300px;
	}

	header.o-search_inner .slider img {
		height: 300px;
	}

	header.o-search_inner .thumbnail {
		display: none;
	}

	header.o-search_inner .slide-dots {
		background-color: #EFF3F5;
		display: flex;
		justify-content: center;
	}

	header.o-search_inner .slide-dots li button {
		position: relative;
		text-indent: -9999px;
		background: none;
		border: none;
		outline: none;
		padding: 0 7px;
	}

	header.o-search_inner .slide-dots li button::before {
		background-color: #333;
		content: "";
		cursor: pointer;
		height: 13px;
		width: 13px;
		left: 0;
		margin: auto;
		position: absolute;
		right: 0;
		top: 24px;
	}

	/* サイドメニュー */
	form.search_detail_inner {
		margin: 50px 10px 20px;
	}

	/* メインコンテンツ */
	.o-search_area .ad_area a {
		width: 100%;
		margin-bottom: 10px;
	}

	.o-search_area .link_area {
		display: block;
	}

	.o-search_area .link_area a.cta_btn {
		margin-right: auto;
		margin-left: auto;
		width: 75%;
		left: 0;
		right: 0;
	}

	.o-search_area #search_detail {
		display: none;
	}

	.o-search_area .search_result_area a.link_box {
		padding-left: 0;
	}

	.o-search_area .search_result_area .box_wrap .img_area {
		width: 100%;
	}

	.o-search_area .search_result_area .box_wrap .img_area.slider-wrap {
		display: none;
	}

	.o-search_area .search_result_area .box_wrap .img_area li {
		width: 33.33333%;
		/* 未対応ブラウザ用フォールバック */
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
		margin-right: 1px;
	}

	.o-search_area .search_result_area .box_wrap .img_area li:last-child {
		margin-right: 0;
	}

	.o-search_area .search_result_area .box_wrap .img_area img {
		width: 100%;
		height: 110px;
		object-fit: cover;
	}

	.o-search_inner .fontS {
		font-size: 3.4vw;
	}

	.o-search_inner .map_area iframe {
		aspect-ratio: 1.6/1;
	}


}

@media (max-width: 560px) {

	/************ 下層ページ *****/
	/****** 記事詳細 *****/
	/* header */
	header.inner {
		height: 80px;
	}

	header.inner .h_wrap {
		height: 80px;
	}

	/****** 記事一覧 *****/
	.article_ListArea a.box .thum {
		padding-right: 15px;
		max-width: 25vw;
	}

	.article_ListArea a.box .thum img {
		width: 100%;
		height: 12vh;
		max-height: 80px;
	}

	.article_ListArea a.box .fontMM {
		font-size: 3.7vw;
	}

	/****** ケアポケとは *****/
	.about__h3_ttl span {
		font-size: 5.5vw;
	}

	.about__h2_ttl.fontL {
		font-size: 3.5vw;
	}

	/****** 会員プラン *****/
	.plan_area table.plan_table .t_txt::before {
		top: 8.5%;
	}

	/****** 新規会員登録 *****/
	/* 入力画面 */
	table.form_table .form-control, table.form_table .form-select {
		font-size: 16px;
	}

	/* 確認画面 */
	table.form_check_table th {
		text-align: left;
	}

	/****** 脳トレ *****/

	.noutoreArea .read_txt {
		display: block;
	}

	.noutoreArea .read_txt p {
		padding-top: 20px;
	}

	.noutoreArea .link_box .txt_area p::before {
		width: 20px;
		height: 20px;
		top: 41%;
	}

	/****** 事業所検索詳細 *****/
	/* コンテンツ */
	.o-search_inner .list_area ul li::before {
		top: 2%;
	}

}