﻿@charset "UTF-8";

/***** デフォルトはスマートフォン *****/
/* ｰｰｰｰｰｰｰｰｰｰｰ 共通エリア --------------------- */
:root {
/* グリーン　*/
	--head-color: #65b35b;
	--text-color: #555;
	--btn-color: #329125;
	--bg-color:  #fffff0;
	--footer-bg: #bbeeb5;
/* ピンク */
	--head-color-p: #d96f8f;
	--btn-color-p: #ff88eb;
	--bg-color-p:  #f8f6fa;
}
.pending{
	text-align: center;
	color:red;
	font-size: 2.2rem;
	font-weight: 900;
	padding: 2rem;
	margin: 3rem auto;
	width:95%;
	border: 4px dotted red;
}
.red{
	color: rgb(255, 102, 0);
}
.red_pennding{
	color:red;
	font-size: 2rem;
	font-weight: 900;
}
.c{
	text-align: center;
}

.com_h1{
	font-size: 1rem;
	font-weight: normal;
	color:black;
	padding: 5px 0 0 10px;
}
.com_h3{
	font-size: 1.2rem;
	letter-spacing: 0.2rem;
	color: darkblue;
	margin: 2rem 0 0.3rem 0;
}
.com_h4{
	font-size: 1.1rem;
	letter-spacing: 0.2rem;
	color: #525252;
	margin: 2rem 0 0.3rem 0;
}
.inner{
	width: 98%;
	margin: 0 auto;
}
.com_text{
	width:100%;
	margin: 1rem auto 2rem auto;
}
.hr_dotted{
	border-top: 1px dotted var(--text-color);
	margin: 1.5rem auto;
}
/* ---------　ヘッダー　----------------------- */
.header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	padding: 1rem;
}
.logo img {
	width: 150px;
}
.nav ul {
	list-style: none;
	margin-top: 1rem;
}
.nav li {
	margin-bottom: 0.5rem;
}
.nav a {
	color: var(--text-color);
	font-weight: bold;
}
.header-contact {
	margin-top: 1rem;
	font-size: 0.9rem;
}
/* ハンバーガー */
.hamburger {
	width: 48px;
	height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 150;
}
.hamburger span {
	width: 32px;
	height: 3px;
	margin: auto;
	background: #d97a1d;
	border-radius: 3px;
	transition: .3s;
}
/* ×変形 */
.hamburger.active span:nth-child(1) {
	transform:
		translateY(13px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform:
		translateY(-13px) rotate(-45deg);
}
/* メニュー */
.nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	max-width: 85%;
	height: 100vh;
	background:
		linear-gradient(135deg,
			#fff4e8 0%,
			#ffe3c2 100%);
	transition: .4s;
	z-index: 999;
	padding-top: 90px;
}
.nav.active {
	right: 0;
}
.nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}
.nav li {
	display: block;
	width: 100%;
}
.nav a {
	display: block;
	padding: 18px 30px;
	text-decoration: none;
	color: #555;
	font-size: 1rem;
	font-weight: 600;
	writing-mode: horizontal-tb;
	text-orientation: mixed;
	transition: .3s;
}
.nav a:hover {
	background: rgba(255, 255, 255, .5);
	color: #d97a1d;
	padding-left: 40px;
}
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .4);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 998;
}
.overlay.active {
	opacity: 1;
	visibility: visible;
}
/* header end */
.footer {
	background: var(--footer-bg);	
}
.footer-nav a {
	color: #555;
}
.footer_h3{
	font-size: 1.5rem;
	margin-bottom: 1rem; 
}
.footer_text{
	padding-left: 1rem;
}
.foot_inner{
	width: 98%;
	margin: 0 auto;
	padding: 2rem 1rem;
	display:flex;
	justify-content: space-evenly;
	align-items: flex-start;
}
.footer-nav{
	margin-top: 4rem;
}
.footer-nav a{
	display: block;
}
.foot_copyright{
	font-size: 14px;
	padding: 2rem 0;
}
/* ----------- 法人案内  ------------------------------*/
.abo_tbl ,
.abo_tbl_2{
	min-width: 80%;
}	
.abo_tbl{
	border-collapse: collapse;
	margin: 0 auto;
}
.abo_tbl ,
.abo_tbl th ,
.abo_tbl td{
	border: 1px solid lightgray;
} 
.abo_tbl th ,
.abo_tbl td{
	padding: 0.5rem 1rem;
}
.abo_tbl th {
	background-color: #f5f5f5;
	font-weight: 500;
}
.abo_tbl td{
	background-color: white;
}
.abo_tbl_2{
	border-collapse: collapse;
	margin: 0 auto;
}
.abo_tbl_2 ,
.abo_tbl_2 th ,
.abo_tbl_2 td{
	border: 1px solid lightgray;
} 
.abo_tbl_2 th ,
.abo_tbl_2 td{
	padding: 0.5rem 1rem;
}
.abo_tbl_2 th {
	background-color: #d2f7d2;
	font-weight: 500;
}
.abo_tbl_2 td{
	background-color: white;
}	
.abo_bigtext{
	text-align: center;
	font-size: 1.5rem;
	font-weight:bold;
	color: tomato;
	margin: 2rem auto 1.5rem auto;
}
/* ------------------ 重度訪問介護／シェアハウス ---------------------*/
.dis_img_outer{
	width: 50%;
	margin: 5rem auto 3rem auto;
}
.dis_img_flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 1.5rem auto 2rem auto;
	gap: 1rem 0;
}
.dis_img_flex_item{
	width: 49%;
	position: relative;
}
.dis_img_flex_item img{
	width: 100%;
	display:block;
}
.dis_img_flex_caption{
	position:absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 6px 10px;
  	color: #fff;
  	background: rgba(0, 0, 0, 0.8);
	font-size: 15px;
}
/* ------------------ 地域的取組 ---------------------*/
.sal_big_text{
	margin: 3rem auto;
	text-align: center;
	font-size: 1.2rem;
	width: 98%;
}
/* ------------------ アクセス ---------------------*/
.google_map{
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 450px;
}
.google_map iframe{
	position: absolute;
	top: -85px;
	left: 0;
	width: 100%;
	height: calc(100% + 60px);
}
/* ----------------- お問い合わせ --------------------*/
.con_inner{
	width: 98%;
	margin: 2rem auto;
	text-align: center;
}
.con_note{
	text-align: left;
	padding-left: 0.5rem;
	font-size: 0.8rem;
}
.contact_table{
	border-collapse: collapse;
	width: 100%;
}
.contact_table tr td{
	display: block;
}
.con_head,
.con_detail,
.con_detail_2{
	padding: 10px 20px;
	border: black solid 1px;
}
.con_head{
	border: 1px solid #525252;
	width: 100%;
}
.con_detail,
.con_detail_2{
	border: 1px solid #525252;
	margin-bottom: 0.5rem;
	width: 100%;
	text-align: left;
	margin-top: -1px;
}
.con_head p{
	display: inline-block;
	width: 10rem;
	text-align: left;
}
.con_detail p{
	text-align: left;
}
.con_head{
	background-color: floralwhite;
}
.con_detail{
	min-height: 2.2rem;
}
.con_detail_2{
	height: 10rem;
}
.wpcf7-form-control.full-width {
    width: 100%;
    box-sizing: border-box;
	padding: 10px;
	border: none;
}

/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {
background-color: #007BFF; /* ブルー */
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
border: none;
padding: 10px;
border-radius: 5px;
}

.wpcf7-form input[type="submit"]:hover {
background-color: #0056b3; /* 濃いブルー */
}
.wpcf7-spinner{
	display: none !important;
	width: 0;
}
.wpcf7-list-item{
	display: block;
	width: 100%;
}
/*  pagenavi  */
/*wp-pagenavi 04*/
.wp-pagenavi {
	clear: both;
	text-align:center;

}
.wp-pagenavi a, .wp-pagenavi span {
	color: #66852F;
	background-color: #E5DE56;
	border: 1px dashed #E9C436;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
}
.wp-pagenavi a:hover{
	color: #FFF;
	background-color: #FFB500;
	border: 1px dashed #E9C436;
}
.wp-pagenavi span.current{
	color: #fff;
	background-color: #A0C364;
	border: 1px dashed #E9C436;
	font-weight: bold;
}
/**==================================================**/
/**=          画面サイズ768px以上の指定 　             **/
/**==================================================**/
@media screen and (min-width:768px) {
	.nb{
		display: none;
	}
	.com_text{
		width: 80%;
	}
	.header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.nav ul {
		display: flex;
		gap: 1rem;
		margin-top: 0;
	}
	/* header start */
	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 320px;
		max-width: 85%;
		height: 100vh;
		background:
			linear-gradient(135deg,
				#fff4e8 0%,
				#ffe3c2 100%);
		transition: .4s;
		z-index: 999;
		padding-top: 90px;
	}
	.nav.active {
		right: 0;
	}
	.nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: block;
	}
	.nav li {
		display: block;
		width: 100%;
	}
	.nav a {
		display: block;
		padding: 18px 30px;
		text-decoration: none;
		color: #555;
		font-size: 1rem;
		font-weight: 600;
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		transition: .3s;
	}
	.nav a:hover {
		background: rgba(255, 255, 255, .5);
		color: #d97a1d;
		padding-left: 40px;
	}
	/* header end */
	/* ------------------ 地域的取組 ---------------------*/
	.sal_big_text{
		font-size: 1.7rem;
		width: 80%;
	}
	/* ----------------- お問い合わせ --------------------*/
	.con_inner{
		width: 80%;
	}
}
/**==================================================**/
/**=          画面サイズ960px以上の指定              **/
/**==================================================**/
@media screen and (min-width:960px) {
	.inner{
		width: 98%;
		max-width: 1200px;
	}
	.foot_inner{
		width: 90vw;
	}
	/* ----------------- お問い合わせ --------------------*/
	.con_inner{
		width: 700px;
	}

}