/*
Theme Name:		 wordpress-child
Description:		
Author:				 wordpress
Template:			 wordpress

(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
*/


/* ------------------------- 
 *	全体
 *---------------------------- */

html {
	overflow:auto;
	overflow-x: hidden;
}


/* ------------------------------------
 *	 全ページのヘッダー下に境界＋白い影を表示
 *------------------------------------ */
header#header {
	border-bottom: 2px solid #e6e6e6; /* ↓ 区切り線（薄いグレー） */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* ↓ 柔らかい白影 */
	margin-bottom: 0; /* ↓ 本文との間隔 */
	background: #fff; /* ← 念のためヘッダー背景を白固定に */
	position: relative;
	z-index: 10; /* ← メインスライダーなどより上に出す */
}

	.head_pc {
		margin-top:-28px;
	}



/* -------------------------------------------------------
 * ロゴを左端
 * ------------------------------------------------------- */
.header-inner {
	display: flex;										 /* 横並び配置 */
	align-items: center;							 /* 垂直方向センター揃え */
	justify-content: flex-start;			 /* 左寄せ（ロゴを左端） */
	position: relative;								/* メニュー中央寄せ用に基準を作る */
	max-width: 1080px;
	margin: 0 auto;
	padding: 30px 20px;
	flex-wrap: nowrap;
}

.logo {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.logo img {
	height: 94px;				/* 表示したい高さに変更（例） */
	width: auto !important;
	max-width: none !important; /* 小さい画像に縮められるのを防ぐ */
	image-rendering: -webkit-optimize-contrast; /* ぼけ防止 */
	image-rendering: crisp-edges;
}

@media only screen and (min-width: 640px) and (max-width: 999px) {
	.header-inner {
		margin: 10px 0;
		padding: 20px 15px;
		display: flex;
		justify-content: center;	 /* 水平方向中央 */
		align-items: center;			 /* 高さ中央 */
	}

	.logo img {
		max-width: 100%;
	}

	.logo {
		flex-shrink: 1; /* ← はみ出し防止に必須 */
		min-width: 0;	 /* ← flex 要素の収まり改善 */
	}
}


@media (max-width: 768px) {
	.header-inner {
		margin: 10px 0;
		padding: 20px 15px;
		display: flex;
		justify-content: center;	 /* 水平方向中央 */
		align-items: center;			 /* 高さ中央 */
	}

	.logo img {
		height: 80px; /* スマホ用に縮小 */
		max-width: 100%;
	}

	.logo {
		flex-shrink: 1; /* ← はみ出し防止に必須 */
		min-width: 0;	 /* ← flex 要素の収まり改善 */
	}
}


/* -------------------------------------------------------
 * メニューを中央寄せ・高さを揃える
 * ------------------------------------------------------- */

/* メニューを中央に配置 */
#nav {
	position: relative;
	width: 100%;
	background: transparent !important;
	z-index: 10;
}



/* ナビメニュー内の整列 */
header .nav-inner {
		margin: 0;
}

.nav-menu {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
		gap: 25px;
		justify-content: center;
		align-items: center;
}

.nav-menu li a {
		position: relative;							 /* 擬似要素用 */
		color: #111;
		text-decoration: none;
		padding: 2px 0;			/* 上下の余白を減らす */
		display: block;
		line-height: 1.4;								 /* 高さを固定 */
		border-bottom: 2px solid transparent; /* 普段は透明な線で高さを確保 */
		transition: color 0.3s, border-color 0.3s;
}

.nav-menu li a:hover,
.nav-menu .current-menu-item a {
		color: #2a4b8d;
		border-bottom-color: #2a4b8d;		 /* 高さは変えずに色だけ変える */
}

/* スマホ用: ヘッダー内限定 */
@media (max-width: 960px) {
		header .header-inner {
				flex-direction: column;
				align-items: center;
				padding: 10px;
		}

		header #nav {
				position: static;
				transform: none;
				margin-top: 10px;
		}

		.nav-menu {
				flex-direction: column;
				gap: 10px;
		}
}


/* -------------------------
 * #nav（スクロール追従）用スタイル
 * ------------------------- */

/* 通常時（固定されていない） */
#nav {
	position: relative;
	width: 100%;
	z-index: 10;
	background-color: transparent;
	transition: all 0.3s ease;
}

/* スクロールして固定された状態 */
#nav.fixed {
	position: fixed;
	top: 0;
	left: 50%;								 /* 画面中央基準に配置 */
	transform: translateX(-50%); /* 完全に中央に寄せる */
	width: 1080px;						 /* .header-inner と同じ幅に固定 */
	max-width: 100%;					 /* スマホでは100%幅に戻す */
	z-index: 99999 !important; 
	background: #fff !important;
	opacity: 1 !important;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

/* スマホ時（全幅固定） */
@media (max-width: 960px) {
	#nav.fixed {
		left: 0;
		transform: none;
		width: 100%;
	}
}



/* ------------------------- 
*	メイン
---------------------------- */

body {
	margin:0;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size:1.15em;
	background: #fff;
	line-height: 190%;
	word-wrap:break-word;
	overflow-wrap:break-word;
	overflow-x: hidden;
}

body:not(.home) .wrapper {
	margin: auto; 
	max-width: 1000px;
	padding: 0 5px 60px 5px;
}



/*---------------------------------
	2カラムに
---------------------------------*/

.two-column {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 10px 0;
}

.two-column .col {
	flex: 1 1 calc(50% - 40px);
	min-width: 280px;
}

/* スマホでは1列 */
@media (max-width: 768px) {
	.two-column {
		flex-direction: column;
	}
	.two-column .col {
		flex: 1 1 100%;
	margin:top:0px !important;
	}
}


/* -----------------------------
	 3つの特徴
----------------------------- */

.features {
  display: flex;
  align-items: center; /* 縦位置を中央に */
  gap: 12px;           /* 画像と文字の間隔 */
}

.crown img {
  display: block;      /* 余計な隙間防止 */
}


/* 文字だけを少し下げる */
.benefit-title {
	font-size:1.28em;
	font-weight: bold;
	flex: 1;
}

/* 下側 */
.benefit-text {
	display: flex;
	margin:-60px 0 -30px;
	align-items: center;
	gap: 20px;
}

.benefit-image {
	flex-shrink: 0;
	width: 360px;
	text-align: right;
}

.benefit-image img {
	width: 100%;
	height: auto;
	display: block;
}


/* =============================
   スマホ対応（768px以下）
============================= */
@media screen and (max-width: 768px) {


  /* 説明＋画像部分 */
  .benefit-text {
    flex-direction: column; /* 縦並び */
    margin-top: 0; /* -60px を無効化 */
    gap: 12px;
  }

  .benefit-image {
    width: 100%;
    text-align: center;
  }

  .benefit-image img {
    max-width: 90%;
    margin: 0 auto;
  }
}


/* -----------------------------
	 お手伝いできること
----------------------------- */

ul.font_awesome4 {
	margin:30px 0;
	list-style: none;
}

ul.font_awesome4 li {
	position: relative;
	padding-top:18px !important;
	padding-left: 1.5em !important;
}

ul.font_awesome4 li::before {
	font-family: "Font Awesome 5 Free";
	content: '\f075';
	font-weight: 900;
	position: absolute;
	padding-top:18px !important;
	top: -3px;
	left: 0;
	color:#f90;
}

ul.font_awesome4 li::before {
	content: '\f044';
	color:#47B455;
}

.waku_green{					
	margin: -15px 0 20px;
	padding: 12px 15px 18px 20px;
	border: solid 1px #47B455;
	overflow: hidden;
}







/* パンくず
---------------------------- */

.pankuzu_arrow{
		display:inline-block;
		width: 0;
		height: 0;
		color: #0073e6;
		border-style: solid;
		border-width: 6px 0 6px 10.4px;
		border-color: transparent transparent transparent #69A4DB;
}

.breadcrumbs > span{
		margin-right:12px;
}

.breadcrumbs-inner {
	width: 1000px; /* テキストの最大幅 1カラム940px 2カラム1040px */
	margin: auto;
	padding:5px;
}



/* パンくずリスト内のリンクのスタイル */
.breadcrumbs a {
		text-decoration: none;
		color: #0073e6;
}

.breadcrumbs a:hover {
		text-decoration: underline;
}

.breadcrumbs a {
		text-decoration: none;
		color: #0073e6;
}

.breadcrumbs a:hover {
		text-decoration: underline;
}

/* トップページだけ非表示 */
.home .breadcrumbs-inner {
	display: none !important; /** パンくずエリアを完全に隠す **/
}



/* -------------------------
*	ページタイトル
---------------------------- */

.pagetitle {
	display:none;
}


/* Pタグ ul li ol li
---------------------------- */

p, ul li, ol li{
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
	margin:0;
	padding: 15px 0;
	font-size:1.15em;
	line-height: 2;
	color: #111;
}

/* Pリンク
---------------------------- */

p a{
	color:#111 !important;
	text-decoration: underline;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

p a:visited {
	color:#111 !important;
	text-decoration: underline;
}

p a:hover{
	color:#111 !important;
	text-decoration: underline;
}

p a:active {
	color:#111 !important;
	text-decoration: underline;
} 

p a:active, a:focus {
	outline: 0;
	text-decoration: underline;
}



/* -------------------------
*	sticky(HOMEのみ)
---------------------------- */

.sticky {
	width: 100%;
	margin:0;
	padding:0;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.w_title{
	margin:0 auto;
	padding: 5px 10px 20px;
	max-width: 1180px;
	overflow: hidden;
}

.w_title_sp{
	margin:0 auto;
	padding: 0 10px;
	max-width: 1180px;
	overflow: hidden;
}

.sticky-one {
	background: #fff;
	margin-top:0;
}

.sticky-two {
	background: #ffeaca;
}

.sticky-three {
	background: #fff;
	margin-top:-50px;
}

.sticky-four {
	background: #111;
}

.sticky-five {
	background: #fff;
}

.pc_w1600, .pc_w1180, .pc_w960{
	margin:30px auto 0;
	padding: 10px 10px 10px;
	max-width: 1600px;
	overflow: hidden;
}

.pc_w1180{
	max-width: 1180px;
}

.pc_w960{
	max-width: 1080px;
}





/* スライダー　slider
---------------------------- */

.content {
	width: 320px;
	height: 300px;
}
.content:nth-child(1) {
	background: #fff;
}
.content:nth-child(2) {
	background: #fff;
}
.content:nth-child(3) {
	background: #fff;
}
.content:nth-child(4) {
	background: #fff;
}

.content:nth-child(5) {
  background: #fff;
}
/* スライドレールの枠 */
.wrap {
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 340px;
	margin-bottom: 10px;
}
/* content4つをまとめたスライドブロック */
.slideshow {
	display: flex;
	-webkit-animation: loop-slide 60s infinite linear 1s both;
	animation: loop-slide 60s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}


/* 画像横並び
---------------------------- */

[class^="img-flex-"] {
	margin-bottom: 20px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/* -----------------------------
	section-titleタイトル
----------------------------- */

.section-title1 img {
	margin:30px 0 0;
}

@media screen and (max-width: 768px) {

	.section-title1 img {
		margin: -20px 0 -30px;;
	}
}

/* section-title2
---------------------------- */

.section-title2 img {
	margin:30px 0 0;
}

@media screen and (max-width: 768px) {

	.section-title2 img {
		margin-top: -20px;
	}
}


/* -----------------------------
	features-section
----------------------------- */

.features-section {
	margin:50px 0 30px;
	background: #f9f7ee;
	padding: 0 20px;
	border-top: 2px solid #006837;
	border-bottom: 2px solid #006837;
}

.section-title3 img {
	margin:10px 0 0;
	padding: 0;
}

@media screen and (max-width: 768px) {

	.features-section {
		margin: 30px 0 20px;
		padding: 0 15px;
	}

	.section-title3 img {
		margin-top: -45px;
		width:90%;
		max-width: 100%;
		height: auto;
	}
}


/* -----------------------------
	h 見出し タイトル
----------------------------- */

h1.standard01{
	clear:both;
		position: relative;
		margin: 60px 0 20px;
		padding: 0.5em 0.5em 0.5em 2.0em;
	color:#111;
	font-size:1.25em;
		font-weight: bold;
		border-bottom: 2px solid #111;
}

h2 {
	clear:both;
		margin: 30px 0 0;
	padding: 0;
	color:#111;
	font-size:1.25em;
	font-weight:bold;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}


/* 共通スタイル */
.stylish-title {
		font-size: 1.3em;
		font-weight: bold;
		line-height: 1.6;
		position: relative;
		text-align:center;
		margin: 20px 0 0;
}


h2.standard01 {
	position: relative;
	margin: 50px 0 30px;
	padding: 20px 20px 20px 50px;
	font-size: 1.3em;
	font-weight: 700;
	color: #333;
	background: rgba(255, 255, 255, 0.95); /* 軽やかな白 */
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

h2.standard01::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";/* フォント指定が必須 */
	font-weight: 900;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4em;
	color: #7fa58c;
}

h2.standard02 {
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
	font-size: 1.4em;
	margin:30px 0 -15px;
	padding: 0.25em 0.5em;
	background: transparent;
	border-left: solid 7px #006837;
}

h2.standard03{
	position: relative;
	margin:30px 0;
	padding: 0.5em 0.5em;
	color:#fff;
	background: #7cb3fc;
	border-left: solid 2em #006837;
}

h2.standard03:before {
	font-family: "Font Awesome 5 Free";
	content: "\f303";
	position: absolute;
	padding: 0 0 40px;
	color: white;
	font-weight: 900;
	font-size:1.25em;
	left: -1.35em;
	top: 50%;
	-webkit-transform: translateY(-30%);
	transform: translateY(-20%);
}

h2.standard04 {
	position: relative;
	padding: 10px 0;
	font-size:2em;
	text-align: center;
	margin: 30px 0;
}


h3 {
	clear:both;
 	margin: 30px 0;
	padding: 0;
	color:#111;
	font-size:1.3em;
	font-weight:bold;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

h3 a:link, a:visited, a:hover, a:active {
				text-decoration:none;
}

h3.standard01 {
	margin:30px 0 5px;
	padding: 0.25em 0.5em;
	border-left: solid 7px #006837;
}

h3.standard02 {
		margin: 60px 0 60px;
		padding: 16px 0;
		font-size: 24px;
		font-weight: 600;
		color: #006837 !important;
		letter-spacing: 0.12em;
		text-align: center;
		position: relative;
}

/* ▼ 下地：両端が細いライン	*/
h3.standard02::before,
h3.standard02::after {
		content: "";
		position: absolute;
		left: 50%;
		width: 70%;							 /* 長いライン（細い部分） */
		height: 1px;							/* 細いライン */
		background: #006837; 
		transform: translateX(-50%);
		opacity: 0.4;
}

/* 上位置 */
h3.standard02::before { top: 0; }
/* 下位置 */
h3.standard02::after	{ bottom: 0; }

/* ▼ 中央（太いライン） */
h3.standard02::before,
h3.standard02::after {
		z-index: 1;
}

/* 太い中央ライン（before に重ねる） */
h3.standard02::before {
		box-shadow: 0 0 0 0; /* 初期化 */
}
h3.standard02::after {
		box-shadow: 0 0 0 0;
}

/* ▼ スマホ（～599px）ではライン幅を80%に */
@media screen and (max-width: 599px) {
	h3.standard02::before,
	h3.standard02::after {
			width: 100%;
	}
}


h3.standard03 {
	margin:0 0 20px;
	padding: 0.25em 0.5em;
	background: transparent;
	border-left: solid 5px #006837;
}

h3.standard04 {
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
		margin: 20px 0 20px;
		padding: 0.6em 1em;
		background: #006837;
		border-left: 6px solid #006837;
		border-radius: 4px;
		font-size: 1.1em;
		font-weight: 600;
	color:#fff;
}

h3.standard05{
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
	position: relative;
	margin:30px 0;
	padding: 0.5em 0.5em;
	background: #fff;
	border-left: solid 2em #3A7442;
}

h3.standard05:before {
	font-family: "Font Awesome 5 Free";
	content: "\f303";
	position: absolute;
	padding: 0 0 40px;
	color: white;
	font-weight: 900;
	font-size:1.25em;
	left: -1.35em;
	top: 50%;
	-webkit-transform: translateY(-30%);
	transform: translateY(-20%);
}

h3.standard06 {
		margin: 60px 0 30px;;
		padding: 22px 0;
		font-size: 35px;
		font-weight: bold;
	line-height: 1.4;
		letter-spacing: 0.12em;
		text-align: center;
		position: relative;
}

/* ▼ 下地：両端が細いライン	*/
h3.standard06::before,
h3.standard06::after {
		content: "";
		position: absolute;
		left: 50%;
		width: 70%;							 /* 長いライン（細い部分） */
		height: 3px;							/* 細いライン */
		background: #000; 
		transform: translateX(-50%);

}

/* 上位置 */
h3.standard06::before { top: 0; }
/* 下位置 */
h3.standard06::after	{ bottom: 0; }

/* ▼ 中央（太いライン） */
h3.standard06::before,
h3.standard06::after {
		z-index: 1;
}

/* 太い中央ライン（before に重ねる） */
h3.standard06::before {
		box-shadow: 0 0 0 0; /* 初期化 */
}
h3.standard06::after {
		box-shadow: 0 0 0 0;
}

/* ▼ スマホ（～599px）ではライン幅を80%に */
@media screen and (max-width: 599px) {
	h3.standard06::before,
	h3.standard06::after {
			width: 100%;
	}
}

h3.standard07{
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
	margin: 50px 0 20px;
	padding: 0 0 5px 32px; 
	font-size: 1.25em;
	font-weight:bold;
	background-image: url("../../../images/yajirushi01.png");
	background-repeat: no-repeat;
	background-size: 26px;
	background-position: left 6px; /* ← ここがポイント */
	border-bottom: 2.6px solid #006837;
}

h3.grant-catch {
	font-size:1.7em;
	font-weight:bold;
	line-height: 1.6;
	color: #006837;
	margin:30px 0 10px;
	border-bottom: 1px solid #006837;
}

.fa-icon {
	font-family: "Font Awesome 5 Free"; /* or 6 Free */
	font-weight: 900; /* solid 必須 */
	margin-right: 0.4em;
}




h4 {
 	margin: 30px 0 0;
	padding: 0;
	border: 0;
	outline: 0;
	color:#f36;
	font-size:1.3em;
	font-weight:500;
	vertical-align: baseline;
	background: transparent;
}

h5 {
	margin: 30px 0 0;
	font-size:19px;
	line-height: 1.4em;
}


h6 {
	margin: 30px 0 0;
	font-size:18px;
	line-height: 1.4em;
}



/* -----------------------------
　　　table　テーブル
----------------------------- */

.content table, table {
	max-width: 100%;
	border:1px solid #ccc;
	margin: 5px 0 10px;
	text-align: left;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 2px;
	font-size: 80%;
	line-height: 141.7%;
	table-layout:fixed;
	empty-cells: show;
}

.content table th, table th {
	width: 30%;
	border:1px solid #ccc;
	vertical-align: middle;
	text-align:center;
}

.content table td, table td {
	padding: 20px 0px;
	border:1px solid #ccc;
	vertical-align: middle;
}

@media only screen and (max-width: 767px) {
	.content table th, table th {
		width:38%;
	}
}


/* -----------------------------
　table　枠線あり
----------------------------- */

table.entry-content{
	margin:30px 0 20px 0;
}

table.entry-content th, table.entry-content td {
	padding:0 10px;
	line-height:300%;
	border: 1px solid #a7d05f;
	vertical-align: middle;
	background:#fff;
}

table.entry-content th {
	background:#eee;
}

table.table.entry-content td {
	text-align:left;
}


/* -----------------------------
　table　スマホスクロール
----------------------------- */

.tbl-r07, .tbl-r08 {
	width:100%;
	margin: 0 0 50px;
	padding:10px 20px;
	border-bottom: solid 1px #ccc;
}

.tbl-r07 th, .tbl-r08 th {
	padding:10px 20px;
	text-align:center;
	border-bottom: solid 1px #ccc;
	background-color:#e0e0e0;
}

.tbl-r07 td, .tbl-r08 td {
	padding:10px 20px;
	text-align:right;
	border-bottom: solid 1px #ccc;
}

@media only screen and (max-width: 768px) {
	.scroll {
		overflow-x: auto;
	}

	.tbl-r07, .tbl-r08 {
		min-width: 640px;
		margin: 0 10px 50px;
		padding:10px 20px;
		font-size:90%;
		border-bottom: solid 1px #ccc;
	}

	.tbl-r07 th, .tbl-r08 th {
		padding:10px 20px;
		text-align:center;
		font-size:90%;
		border-bottom: solid 1px #ccc;
	}

	.tbl-r07 td, .tbl-r08 td {
		padding:10px 20px;
		text-align:right;
		font-size:90%;
		border-bottom: solid 1px #ccc;
	}
}

/* -----------------------------
	チェック幅
----------------------------- */

.wpcf7-list-item-label{
	margin:0 20px 0 0;
	line-height:2em;
}

span.wpcf7-list-item {
	display: block!important;
}


/* -----------------------------
　　　フォーム
----------------------------- */

input[type="text"], 
input[type="password"],
input[type="email"],
input[type="url"],
input[type="phone"],
input[type="tel"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="color"],
input[type="time"],
input[type="search"],
input[type="datetime-local"] {
	font-size: 0.95em;
		border:1px solid #ccc;
	box-shadow: none;
	padding: 0.3em 0.35em;
	line-height: 1.65em;
	border-radius: 0;
	outline: none;
}

input[type="number"]{
	text-align:center;
	font-size: 0.95em;
		border:1px solid #ccc;
	box-shadow: none;
	padding: 0.3em 0.35em;
	width:50px;
	line-height: 1.65em;
	border-radius: 0;
	outline: none;
}


.wpcf7-checkbox input[type=checkbox] {
	margin-right:10px;
	width:			18px;
	height:			18px;
	-moz-transform:		scale(1.4);
	-webkit-transform:	scale(1.4);
	transform:		scale(1.4);
}

.wpcf7-textarea{
		border:1px solid #ccc !important;
	width:100%;
	font-size: 0.95em;
	box-shadow: none;
	padding: 0.3em 0.35em;
	line-height: 1.65em;
	border-radius: 0;
	outline: none;
}

.wpcf7-select{
	padding:3px;
	border: 1px solid #ddd;
	font-size:0.9em !important;
}


/* -----------------------------
　　　ラジオボタン radio
----------------------------- */

input[type="radio"] {
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #000;
	border-radius: 50%;
	vertical-align: -2px;
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
}

input[type="radio"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #000;
	content: '';
}


/* -----------------------------
　　　textbox
----------------------------- */

/*送信ボタン*/
#main .wpcf7-form input[type=submit]{ 
	 background-color: #006837;	 /* 背景色（オレンジ） */
		color: #fff;							/* 文字色（白） */
		border: none;						 /* 枠線なし */
		border-radius: 5px;			 /* 角を丸める */
		padding: 15px 30px;			 /* 内側余白（上下15px・左右30px） */
		font-size: 1.1em;				 /* 文字サイズを少し大きめに */
		cursor: pointer;					/* カーソルをポインタ（手の形）にする */
		transition: background-color 0.3s ease; /* ホバー時の色変化をなめらかに */
		margin-top: 1em;					/* 上に余白をとる */
}

.form-width{ 
		max-width: 90%;
}


/* -------------------------
*	複数フォーム対応・途中入力保存
---------------------------- */

/* 送信ボタン */
.wpcf7 input[type="submit"] {
		background-color: #f90;	 /* 背景色（オレンジ） */
		color: #fff;							/* 文字色（白） */
		border: none;						 /* 枠線なし */
		border-radius: 5px;			 /* 角を丸める */
		padding: 15px 30px;			 /* 内側余白（上下15px・左右30px） */
		font-size: 1.1em;				 /* 文字サイズを少し大きめに */
		cursor: pointer;					/* カーソルをポインタ（手の形）にする */
		transition: background-color 0.3s ease; /* ホバー時の色変化をなめらかに */
		margin-top: 1em;					/* 上に余白をとる */
}
.wpcf7 input[type="submit"]:hover {
		background-color: #e07b00;	/* ホバー時に少し濃いオレンジに変化 */
}

/* スマホ対応（画面幅600px以下） */
@media screen and (max-width: 600px) {
		.wpcf7 input[type="submit"] {
		margin-right:-5px !important;
		}
		.wpcf7 input[type="submit"] {
				width: 100%;			/* 送信ボタンも幅100% */
		}
}



/* 一時保存ボタン */
.wpcf7 .cf7-save-draft-btn {
		background-color: #28a745;	 /* 背景色（グリーン） */
		color: #fff;								 /* 文字色（白） */
		border: none;								/* 枠線なし */
		border-radius: 5px;					/* 角を丸める */
		padding: 15px 30px;					/* 内側余白（上下15px・左右30px） */
		font-size: 1.1em;						/* 文字サイズを送信ボタンと同じに */
		cursor: pointer;						 /* カーソルをポインタにする */
		transition: background-color 0.3s ease; /* ホバー時の色変化をなめらかに */
		margin-top: 1em;						 /* 上に余白をとる */
		margin-right: 10px;			 /* 送信ボタンとの間に横スペースを入れる */
		display: inline-block;			 /* 横並びで配置できるようにする */
}
.wpcf7 .cf7-save-draft-btn:hover {
		background-color: #218838;	 /* ホバー時に少し濃いグリーンに変化 */
}
		
/* スマホ対応（画面幅600px以下） */
@media screen and (max-width: 600px) {
		.cf7-save-draft-btn {
				display: block;	 /* 横並び解除 */
				width: 100%;			/* 幅100% */
				margin-right: 0;	/* 右マージン解除 */
				margin-bottom: 10px; /* 下に余白 */
		margin-left:5px !important;
		}
		.wpcf7 input[type="submit"] {
				width: 100%;			/* 送信ボタンも幅100% */
		}
}
		


/* pagenavi
---------------------------- */

div.wp-pagenavi{
	margin:50px auto;
}


/* ブログタイトル
---------------------------- */

.blog-title {
	margin:30px 0 20px;
	padding: 0.5em;
	color: #fff;
	font-size:1.2em;
	text-align:left !important;
	background: #006837;
}

.single-contents h2{
	position: relative;
	padding: 0.25em 0.5em;
	background: #f1f8ff;
	font-size:1.2em !important;
	font-weight: normal;
	border-left: solid 2em #a7d05f;
}
 
.single-contents h2:before{
	font-family: "Font Awesome 5 Free";
	content: "\f303";
	position: absolute;
	padding: 0;
	color: white;
	font-weight: 900;
	left: -1.6em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.single-contents h3{
	margin:30px 0;
	padding: 0.25em 0.5em;
	font-size:1.2em;
	background: transparent;
	border-left: solid 5px #a7d05f;
}

.single-contents h4 {
	display: inline-block;
	margin:20px 0 50px !important;
	padding: 0.25em 0;
	font-size:1.15em !important;
	border-bottom: solid 2em #a7d05f;
}

.single-contents h5 {
	display: inline-block;
	margin:20px 0 50px !important;
	padding: 0.25em 0;
	font-size:1.10em !important;
}

.single-contents h6 {
	display: inline-block;
	margin:20px 0 50px !important;
	padding: 0.25em 0;
	font-size:1.05em !important;
}


/* HOME新着ブログ　h2
---------------------------- */

.pt-cv-title{
	font-size:18px;
}

.pt-cv-content{
	color:#111;
}


/* ブログ記事
---------------------------- */

.single-contents {
	margin: 0 0 70px;
}

.single-contents p {
	font-size: 1.2em; 
	color: #111;
	line-height: 190%;
	padding: 15px 0;
}

.single-contents p a {
	color:#111;
	text-decoration:none;
	transition: 0.5s;
	text-decoration: underline;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.single-contents img{
	padding:30px 0;
}

.single-contents .gazou_haichi{
	text-align:center;
	font-size:70%;
}


/* ブログ最新記事
---------------------------- */

h2.su-post-title a {
	color:#111 !important;
}

h2.su-post-title a:visited {
	color:#111 !important;
}

h2.su-post-title a:hover {
	color:#00f !important;
}

h2.su-post-title a:active {
	color:#111 !important;
}

.su-post-comments-link{		/*コメントなしの文字を削除*/
	display:none;
}


/* 続きを読むボタン
---------------------------- */

.more-link {
	border: 1px #028cd4 solid;
	padding: 12px 24px;
	line-height: 26px;
	box-sizing: border-box;
	clear: both;
	color: #444;
	font-size: 14px;
}

.more-link:hover {
	background: #028cd4;
	color: #fff !important;
	text-decoration: none;
}

@media screen and (max-width: 991px) {
	.more-link {
		display: block;
			margin: 0 auto 24px;
			width: 50%;
			text-align: center;
	}
}

body.color01 .more-link {
	border: 1px #444 solid;
	color: #028cd4;
}

body.color01 .more-link:hover {
	background: #444;
	color: #fff;
}

body.color02 .more-link {
	border: 1px #444 solid;
	color: #028cd4;
}

body.color02 .more-link:hover {
	background: #444;
	color: #fff;
}

body.color03 .more-link {
	border: 1px #444 solid;
	color: #028cd4;
}

body.color03 .more-link:hover {
	background: #444;
	color: #fff;
}

body.color04 .more-link {
	border: 1px #444 solid;
	color: #028cd4;
}

body.color04 .more-link:hover {
	background: #444;
	color: #fff;
}



/* -----------------------------
　サイド side
----------------------------- */

.option{
	text-decoration: none;
}

.grid_second{
	margin:0 auto !important;
}


/* -----------------------------
　カテゴリー、アーカイブページ
----------------------------- */

h2.archive-title a{
	display:block;
	margin:30px 0 20px;
	padding: 0.5em;
	color: #fff;
	font-size:1.05em;
	text-align:left !important;
	background: #a7d05f;
	text-decoration: none;
}

.archive-date {
	margin:10px 0 0;;
	padding:0;
	font-size: 0.9em;
	color: #ccc;
}

.archive-cat {
	padding: 0;
	margin: 0 0 10px;
	max-height: 65px;
	font-size: 0.9em;
	line-height:1em;
	overflow:hidden;
}

.archive-text {
	margin:10px 0 5px;
	font-size: 0.95em;
	line-height: 170%;
	overflow:hidden;
}


/* -------------------------
*	ウィジット
---------------------------- */

/* ウィジェットメニュー全体の文字サイズ */
.widget_nav_menu {
		font-size: 1em !important;
}

/* タイトルのスタイル */
.widget-title,
.sidebox .widget-title {
		position: relative;
		margin: 20px 0 1.5em;
		padding: 0.5em 0.5em 0.5em 0;	/* 左パディングを0にしてアイコンと文字を左揃え */
		font-size: 1.25em !important;
		font-weight: bold;
		border-top: none;
		border-bottom: 1px solid #006837;
}

/* タイトル前の四角アイコン */
.widget-title:before,
.sidebox .widget-title:before {
		content: "";
		display: inline-block;
		width: 20px;										 /* アイコンの幅 */
		height: 20px;										/* アイコンの高さ */
		margin-right: 8px;							 /* アイコンと文字の間隔 */
		background-color: #006837;			 /* アイコンの色 */
		border-radius: 0;								/* 四角 */
		position: relative;
		top: 2px;												/* 文字との縦位置を微調整 */
		transform: none;									/* 回転なし */
}


.post-date {
	font-size: 89%;
	padding: 0 0 0 10px;
}


.sidebox ul li a{
	margin:0;
	font-size: 1em !important;
}

.sidebox li{
	margin:0;
	padding: 7px 0;
	list-style: none;
	border-bottom:1px dotted #ddd;
}


/* ブログ数
---------------------------- */

.widget ul li, 
.sidebar ul li, 
.widget ul li, 
.wp_rp_content ul li{
	font-size: 90%;
}

.widget_archive{
	font-size: 1em !important;
}


/* -------------------------
*	フッター footer
---------------------------- */	

#footer {
	clear: both;
	margin: 0 auto;
	width: 100%;
	font-size: 95% !important;
	color: #111;
	background: #fff;
}

.foot-wrap {
	margin: 0 auto;
	max-width: 1000px; /* widthをmax-widthに変更 */
	background: #fff !important;
	overflow: hidden; /* クリアフィックスを追加 */
}

/*フッターメニューの左、中、右*/
.menu-left,
.menu-center,
.menu-right {
	float: left; /* display: inline-blockからfloatに変更 */
	box-sizing: border-box; /* ボーダーボックスモデルを使用 */
	padding-right: 30px;
	width: 100%;
}

.menu-left {
	padding-top: 30px !important; /* 正の値に変更 */
}

.menu-center,
.menu-right {
	padding-top: 30px !important;
}

/* モバイル用のスタイル */
@media (max-width: 768px) {
	.menu-left,
	.menu-center,
	.menu-right {
		width: 95%; 
			float: none; 
			padding: 0 10px;
			box-sizing: border-box; 
	}
}


#copyright {
	position: relative;
	margin: 0;
	padding: 10px;
	font-size: 15px;
	line-height: 110%;
	color: #fff;
	text-align: center;
	background: #006837 !important;
}

#footer #copyright a {
	color:#fff;
}

#footer #copyright a:visited {
	color:#fff;
}

.footer-blog {
	clear:both;
	font-size:75%;
	text-align: left;
	margin: 0 0 50px;
	font-weight:normal;
	border-bottom:0px dotted #ccc;
}



/* フッターcall to action
---------------------------- */

.footer_fixed{
	position:fixed;
	display:flex;
	width:100%;
	bottom:0;
	left:0;
	z-index:999;
}

.footer_fixed a{
	color: #fff;
	text-decoration: none;
}

.footer_tel{
	width:50%;
	background:#006837;
	text-align:center;
	padding:10px 0;
}

.footer_contact{
	padding:10px 0;
	text-align:center;
	width:50%;
	background:#efe;
}

.footer_contact a{
	color: #000;
}

@media(min-width:700px){
	.footer_fixed{
		display: none;
	}

	.menu-footer-container.ul li{
		list-style:square;
	}
}


/* フッターメニュー footer menu
---------------------------- */

#footer ul li.menu-item{
	margin-left:20px !important;
	list-style:square !important;
	font-size:99% !important;
		line-height: 0.5em !important;
}







/* -----------------------------
 * トップへ戻るボタン（フェード時間とスクロール速度を一箇所で調整可能）
 * ----------------------------- */

/* ボタン本体 */
#scrollTopBtn {
		position: fixed;					 /* スクロールしても画面の同じ位置に固定表示 */
		right: 20px;							 /* 画面右端から20px内側に配置 */
		bottom: 20px;							/* 画面下端から20px上に配置 */
		background: #006837;					/* ボタンの背景色を濃いグレーに設定 */
		color: #fff;							 /* 文字色を白に設定 */
		border: none;							/* ボタンの枠線を消す */
		padding: 12px 16px;				/* 上下12px、左右16pxの内側余白を設定 */
		border-radius: 50%;				/* 完全な円形にする */
		font-size: 18px;					 /* 文字サイズを18pxに設定 */
		cursor: pointer;					 /* ホバー時に手のカーソル表示 */
		z-index: 9999;						 /* 前面に表示 */
		opacity: 0;								/* 初期状態は透明 */
		transition: opacity 0.3s;	/* フェードイン/アウトのアニメーション設定 */
}

/* ホバー時の見た目 */
#scrollTopBtn:hover {
		opacity: 0.8;							/* ホバー時に少し透けて押せる感を演出 */
}
		
		










/* -----------------------------
	main ul li
----------------------------- */

div#main ul.check {
	margin: 30px 0 20px;
	list-style: none;
	padding: 0;
}

div#main ul.check li {
	display: flex;
	align-items: center; /* ← アイコンと文字を縦中央揃え */
	padding-left: 40px; /* ← アイコン分の余白 */
	line-height: 2.4em;
	font-size: 1.2em;
	background: url(../../../images/check01.png) no-repeat left center; /* ← 中央揃え */
	background-size: 28px auto;
}

@media only screen and (max-width: 768px) {
	div#main ul.check li {
		padding-bottom:20px;
		padding-left: 26px;
		line-height: 1.8em;
		font-size: 1em;
		background: url(../../../images/check01.png) left 0px top 9px no-repeat;
		background-size: 23px auto;
	}
}

div#main ol.check {
	margin: 60px 0 30px;
	list-style: none;
	padding: 0;
}

div#main ol.check1 li {
	padding-left: 56px;
	line-height: 1.4em;
	font-size: 1.4em;
	font-weight:bold;
	background: url(../../../images/1.png) left 0px top 9px no-repeat;
	background-size: 40px auto;
}

div#main ol.check2 li {
	margin-top:40px;
	padding-left: 56px;
	line-height: 1.4em;
	font-size: 1.4em;
	font-weight:bold;
	background: url(../../../images/2.png) left 0px top 9px no-repeat;
	background-size: 40px auto;
}

@media only screen and (max-width: 769px) {
	div#main ol.check1 li, div#main ol.check2 li {
		font-size: 1.1em;
	}
}



/* -------------------------------------------------- */
/*	ボックス（チェック）													 */
/* -------------------------------------------------- */

.consult-box {
	margin:0;
	padding: 20px 25px;
	border-radius: 8px;
	box-sizing: border-box;
	color: #333;
}

/* リスト全体 */
.consult-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* 各項目 */
.consult-box ul li {
	position: relative;
	padding: 12px 16px 12px 36px; /* 左にアイコンスペース */
	margin-bottom: 12px;
	border: 1px solid #006837;			 /* 枠線 */
	border-radius: 6px;					 /* 角丸 */
	line-height: 1.5;
	font-weight: 500;
	background: #fff;					 /* わずかに背景を付けて落ち着き */
}

/* チェックアイコン */
.consult-box ul li::before {
	content: "\2714";						 /* チェックマーク */
	color: #006837;							 /* アイコンの色 */
	font-weight: bold;
	position: absolute;
	left: 12px;									 /* 枠内の左端に配置 */
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1em;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.consult-box {
		padding: 16px 12px;
	}
	.consult-box ul li {
		font-size: 0.95em;
		padding: 10px 12px 10px 36px;
	}
}





/* -----------------------------
	main dl dt dd
----------------------------- */

div #main dd {
	margin-left: 1em;
}



/* ------------------------------------------------
 * 丸いプロフィール画像＋影＋枠
 * ---------------------------------------------- */

.profile-wrapper {
		text-align: center;				 /* 画像全体を中央寄せにする */
		margin: 40px 0 0;						 /* 上下の余白を確保してデザインの間隔を取る */
}
.profile-wrapper img {
		width: 300px;							 /* 画像の横幅を200pxに指定 */
		height: 300px;							/* 高さも200pxにして正方形→円形にするため */
		object-fit: cover;					/* 画像を切り抜いて、枠いっぱいにきれいに収める */
		border-radius: 50%;				 /* 完全な円にするための設定 */
		box-shadow: 0 6px 16px rgba(0,0,0,0.16); /* ふわっと浮く柔らかい影を付ける */
}




/* ------------------------- 
 * 会社概要スタイル
 *---------------------------- */

/* dl全体の余白とパディングをリセット */
div.company-profile dl {
		margin:0;		/* 上下左右の余白を0にする */
		padding:0;	 /* 内側の余白を0にする */
}

/* 各行をflexで横並びにする */
div.company-profile dl div {
		display:flex;								 /* dtとddを横並びにする */
		border-bottom:1px solid #ccc; /* 行ごとに下線を引く */
		background:#fff;							/* 背景色を白に設定 */
}

/* dt（項目名）の設定 */
div.company-profile dl dt {
		flex: 0 0 13em; /* 横幅を13emに固定、縮めたり伸ばしたりしない */
		font-weight:normal; /* 太字にせず標準の文字ウェイト */
}

/* dd（内容）の設定 */
div.company-profile dl dd {
		flex:1; /* dt以外の残り幅を自動で使用 */
}

/* dtとdd共通の設定 */
div.company-profile dl dt,
div.company-profile dl dd {
		padding:12px 20px;	 /* 上下12px、左右20pxの内側余白 */
		line-height:1.5;		 /* 行間を設定して上下のバランスを均等に */
		margin:0;						/* 外側余白をリセット */
		color:#111;					/* 文字色を濃いグレーに設定 */
}

/* -------------------------
 * スマホ・タブレット用（幅767px以下）
 *---------------------------- */

@media only screen and (max-width: 767px) {
		/* 各行はflexのまま、折り返しで縦並びになる */
		div.company-profile dl div {
				flex-wrap: wrap; /* dtとddが狭い画面で縦に回る */
		}

		/* dtとdd共通の調整 */
		div.company-profile dl dt,
		div.company-profile dl dd {
				flex: 1 1 100%;	 /* 狭い画面で幅100%に */
				box-sizing: border-box; /* padding込みで幅を計算 */
		}

		/* dtは少し目立たせる */
		div.company-profile dl dt {
				font-weight: bold;
		}

		/* ddの余白調整 */
		div.company-profile dl dd {
				padding-top: 5px;	 /* dtとddの間に少しスペース */
				padding-bottom: 12px;
		}


		div.company-profile {
				border: 1px solid #ccc;
				border-radius: 5px;
				overflow: hidden;
		}
}





/* ビジョンセクション、ストーリーセクション、サポートセクション */
.vision-section, .story-section, .support-section {
	background: #fdf5f4;
	padding: 10px 30px;
	border-radius: 20px;					 /* 角丸 */
}

.vision-section{
	margin-top:10px;
}



/* ストーリーセクション */
.story-section {
	margin:30px 0;
	background: rgba(127,165,140,0.08); /* 背景を淡く色付け */
}

/* サポートセクション */
.support-section {
	background: rgba(233,148,19,0.08);
}



.vision-list {
	list-style: none;
	padding-left: 0;
	margin: 10px 0;
}

.vision-list li {
	padding: 12px 20px;
	margin-bottom: 10px;
	background: #fff;
	border-left: 5px solid #e99413; /* アクセントライン */
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.vision-list li:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* -----------------------------
	 私たちがお手伝いできること
----------------------------- */

.target-list {
	list-style: none;
	padding: 0;
	margin: 40px 0;
	font-weight: 500;
}

.target-list li {
	position: relative;
	padding: 18px 20px 18px 52px;
	margin-bottom: 16px;
	background: #efe;
	border-radius: 14px;
	line-height: 1.7;
}

.target-list li::before {
	content: "\25B6";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #006837;
	font-weight: bold;
}


/* -------------------------
 * プライバシーポリシー
---------------------------- */

.privacy-section {
	background: #f5f5f5;
	padding: 60px 30px;
	font-family: "Noto Sans JP", sans-serif;
}

.section-title {
	font-size: 1.6em;
	font-weight: 700;
	padding-left: 15px;
	margin-bottom: 30px;
	color: #006837;
}

.privacy-box h3 {
	font-weight: 700;
	color: #006837;
	border-left: 5px solid #006837;
	padding-left: 12px;
	margin-top: 30px;
	margin-bottom: 15px;
}

.privacy-box p {
	font-size: 1em;
	line-height: 1.8;
	margin-bottom: 15px;
	color: #111;
}

.privacy-box ul.privacy-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 20px;
}

.privacy-box ul.privacy-list li {
	font-size: 1em;
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	line-height: 1.6;
}

.privacy-box ul.privacy-list li::before {
	content: "\25CF"; /* 黒丸 */
	position: absolute;
	left: 0;
	color: #006837; 
	font-weight: bold;
	font-size: 1em;
}
.privacy-box li i {
	margin-right: 6px;
	color: #222; /* 電話・メールアイコン色 */
}

@media only screen and (max-width: 768px) {
	.section-title {
		font-size: 1.2em;
	}
}



/* -------------------------
 * 無料相談ページセクション
---------------------------- */

.consult-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 30px 0 20px;
}

.consult-list li {
	position: relative;
	padding-left: 46px;	 /* ← チェック分の領域 */
	margin-bottom: 8px;
	font-size: 1em;
	line-height: 1.4;
}

.consult-list li::before {
	content: "\2714";
	position: absolute;
	top: 0.7em;
	color: #006837;
	font-weight: bold;
}

/* -------------------------
 * 無料相談ページセクション スマホ用
---------------------------- */

.consult-list2 {
	list-style: none;
	padding-left: 0;
	margin-bottom: 30px;
}

.consult-list2 li {
	position: relative;
	margin-bottom: 8px;
	font-size: 1em;
	line-height: 1.4;
}

.consult-list2 li::before {
	content: "\2714";
	position: absolute;
	top: 0.7em;
	color: #006837;
	font-weight: bold;
}


/* -----------------------------
	google-maps
----------------------------- */

.google-maps {
	position: relative;
	margin:40px 0;
	padding-bottom: 75%; 
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


/* YouTube embed
---------------------------- */

.youtube {
	clear:both;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-top: 60px;
	margin-bottom: 20px;
}
.youtube iframe,
.youtube object,
.youtube embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* -------------------------
*	wp-responsive-menu
---------------------------- */	

div.menu_title {
	color:#fff;
}

div.menu_title a{
	color:#fff;
	text-decoration: none ;
}

/* スマホ用メニューの行間を詰める */
#wprmenu_menu_ul li a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  line-height: 0.2 !important;
}

/* -----------------------------
	改行
----------------------------- */

.hidden {
	display: none;
}

.hidden.pcBlock {
	display: inline;
}

@media screen and (max-width: 800px) {
	.hidden.pcBlock {
		display: none;
	}

	.hidden.spBlock {
		display: inline;
	}
}


/* -------------------------
*	 画像改行
---------------------------- */

@media screen and (max-width: 800px) {
	.spbr {
		float:none;
		margin:0 auto;
		max-width: 100%;
	}
}

@media screen and (max-width: 640px) {
	.spbr {
		float:none;
		text-align:center;
	}
}

/*スマホcenter⇒left*/
@media screen and (max-width: 800px) {
	.mobile-left {
		text-align:left !important;
	}
}



/* -----------------------------
	waku 枠　box ボックス
----------------------------- */

.waku1_green{
	margin: 20px 0 30px;
	padding: 15px 15px 0 15px;
	border: solid 1px #006837;
	overflow: hidden;
}

.waku2{
	background: #f9f9f9;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	padding: 40px 20px 0;
	margin: 20px 0;
	font-family: "Noto Sans JP", sans-serif;
	color: #333;
}

.waku3 {
		border: 1px solid #7cb3fc;
	margin:30px 0 30px;
		padding: 20px;
		border-radius: 8px;
		background: #deecfe;
		line-height: 1.7;
		box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.waku3 ul {
		padding-left: 25px; /* ← これが一番効く */
		margin: 0;
}

.waku3 li {
		padding-left: 2px; /* マーカーと文字の間も少し余裕 */
}


.waku4{
	margin: 20px auto 0;
	padding: 20px 20px 0;
	border: solid 1px #ccc;
	background:#fff;
	overflow: hidden;
}

@media only screen and (max-width: 599px) {
	.waku4 ul li{
		font-size:79% !important;
	}
}

.waku5{
	margin: 0 0 20px;
	padding: 20px 30px;
	background: #deecfe;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	overflow: hidden;
}

.waku6 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 5px #f00;
}

.waku6 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 1.2em;
    background: #fff;
    color: #000;
    font-weight: bold;
}


.waku8{
	margin: 50px 0 30px;
	padding: 20px 0 0 20px;
	border: solid 1px #ccc;
	overflow: hidden;
}

.waku9 {
		margin: 2em 0;
		background: #dcefff;
}
.waku9 .box-title {
		font-size: 1.2em;
		background: #5fb3f5;
		padding: 4px;
		text-align: center;
		color: #FFF;
		font-weight: bold;
		letter-spacing: 0.05em;
}
.waku9 p {
		padding: 15px 20px;
		margin: 0;
}




.waku10{						/*otoiawase*/
	margin:0 10px;
	padding:0 5px;
	background-color:#f00;
	font-size:80%;
	color:#fff;
}


/* -------------------------
*	 汎用
---------------------------- */

img {
	margin:0;
	padding:0;
	border-style:none;
	-webkit-backface-visibility: hidden;
}



.img-rounded {
	margin:0;
	padding:0;
		border-radius: 10px;				/* 角丸 */
}


.clear {
		clear:both;
}

.floatL{
	float:left;
	margin-right: 15px;
}

.floatL img {
	margin:0;
	padding:0;
}

.floatR{
	float:right;
	margin-left: 15px
}

.floatR img {
	margin:0;
	padding:0;
}

.center{
	text-align:center;
}

.right{
	text-align:right;
}

.left{
	text-align:left;
}

.underline {
		text-decoration:underline;
}

strong {
	font-weight:bold;
}

em {
	font-weight:bold;
}

.font-bold {
	font-weight:bold;
}

.font-normal {
	font-weight:normal;
}

.double_line {
	display: inline-block;
	padding-bottom:1px;
	border-bottom: 5px double #f90;
}

.indent1{
	text-indent: 1em;
}

hr.fef {
	margin:0 auto 20px;
	border: 1px solid #006837;
	width:96%;
}


/* -----------------------------
	文字装飾
----------------------------- */

.yellow_underline{
	background: linear-gradient(transparent 50%, yellow 50%);
}

.skyblue_underline{
	background: linear-gradient(transparent 50%, skyblue 50%);
}

.orange_underline{
	background: linear-gradient(transparent 50%, orange 50%);
}


/* -----------------------------
	両端にline
----------------------------- */

.line01{
  display: flex;
  align-items: center;
  gap: 20px;
}

.line01::before,
.line01::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}





/* -----------------------------
	文字のスタイリッシュ
----------------------------- */

.headline.icon-badge {
	position: relative;
	padding-left: 55px;
	font-size: 1.5em;
	font-weight: 700;
}

.headline.icon-badge::before {
	content: "\f4ff"; /* Font Awesome question-circle */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #006837;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1em;
	box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* スマホ（768px） */
@media (max-width: 768px) {

	.headline.icon-badge {
		font-size: 1.2em;				/* 1.5em → 少し小さく */
		padding-left: 45px;			/* アイコンとの余白も調整 */
		line-height: 1.3; /* または 1.2 / 1.1 など */
	}

	.headline.icon-badge::before {
		width: 32px;						 /* アイコン円を小さく */
		height: 32px;
		font-size: 0.9em;				/* アイコンの中身も縮小 */
	}

	/* m_off2（スマホ用）が更に大きく見える場合のリセット */
	.m_off2 {
		margin-bottom: 16px !important;
	}
}


/* -----------------------------
	アイコン
----------------------------- */

p i.fa-phone {
	color: #006837;			 /* アイコンの色 */
	margin-right: 8px;		/* 番号との間隔 */
	font-size: 1em;			 /* アイコンサイズ */
}

p i.fa-envelope {
	color: #006837;			 /* アイコンの色 */
	margin-right: 8px;		/* テキストとの間隔 */
	font-size: 1em;			 /* アイコンサイズ */
}

p i.fa-file-lines {
	color: #006837;			 /* アイコンの色 */
	margin-right: 8px;		/* テキストとの間隔 */
	font-size: 1em;			 /* アイコンサイズ */
}

p i.fa-fax {
	color: #006837;			 /* アイコンの色 */
	margin-right: 8px;		/* テキストとの間隔 */
	font-size: 1em;			 /* アイコンサイズ */
}

p i.fa-globe {
	color: #006837;			 /* アイコンの色 */
	margin-right: 8px;		/* テキストとの間隔 */
	font-size: 1em;			 /* アイコンサイズ */
}



/* -------------------------
*	 mobile　スマホ モバイル
---------------------------- */


/*	スマホ横揺れ防止
---------------------------- */

*{box-sizing:border-box}


/* 電話番号クリック
---------------------------- */

@media(min-width: 768px){
	a[href^="tel:"]{
			pointer-events: none;
	}
}

/* headに記述も忘れずに
<!--電話リンクsafariやEdgg無効-->
<meta name="format-detection" content="telephone=no">
*/


/* 1281px～
---------------------------- */

@media only screen and (min-width: 1281px) {

	.m_off2 {
		display: none;
	}

	.sidebar {
		width: 300px;
	}

	.head_mobile {
		display: none;
	}
}


/* 1000px～1280px
---------------------------- */

@media only screen and (min-width: 1000px) and (max-width: 1280px) {

	.pc_w1600, .pc_w1180, .pc_w960{
		max-width: 95%;
	}

	.m_off2 {
		display: none;
	}

	.sidebar {
		width: 300px;
	}

	.head_mobile {
		display: none;
	}
}

/* 769px～999px
---------------------------- */

@media only screen and (min-width: 769px) and (max-width: 999px) {

	.pc_w1600, .pc_w1180, .pc_w960{
		margin:0 auto;
		max-width: 95%;
	}

	.m_off2 {
		display: none;
	}

	#nav {
		display: none;
	}

	.head_mobile {
		display: none;
	}
}


/* 600px～768px
---------------------------- */

@media only screen and (min-width: 600px) and (max-width: 768px) {

	.pc_w1600, .pc_w1180, .pc_w960{
		margin:0 auto;
		max-width: 95%;
		overflow-x: hidden;
	}

	.m_off {
		display: none;
	}

	.head_pc {
		display: none;
	}

	#nav {
		display: none;
	}

	.head_mobile {
		max-width: 100%;
	}

	p{
		font-size:99%;
	}

	.column {
		flex: 100%;
	}

	dl.standard01 dd {
		font-size:95%;
	}

	#main ul li, #main ol li{
		font-size:98%;
	}


	.waku3 .box-title, .waku4 .box-title, .waku4-2 .box-title, .waku5 .box-title, .waku9 .box-title, .box-title11 {
		font-size:90%;
	}

	h3.grant-catch {
		font-size:1.1em;
	}

	.benefit-title{
		font-size:1.1em;
	}
}


/* 480px～599px
---------------------------- */

@media only screen and (min-width: 480px) and (max-width: 599px) {

	.pc_w1600, .pc_w1180, .pc_w960{
		margin:0 auto;
		max-width: 95%;
		overflow-x: hidden;
	}

	.m_off {
		display: none;
	}

	.contact {
		display: none;
	}
	
	.head_pc {
		display: none;
	}

	#nav {
		display: none;
	}

	.head_mobile {
		max-width: 100%;
	}

	h2.top01 {
		margin:-40px 0 0;
	}

	p{
		font-size:99%;
	}

	.column {
		flex: 100%;
	}

	dl.standard01 dd {
		font-size:95%;
	}

	#main ul li, #main ol li{
		font-size:98%;
	}

	.waku3 .box-title, .waku4 .box-title, .waku4-2 .box-title, .waku5 .box-title, .waku9 .box-title, .box-title11 {
		font-size:90%;
	}

	h3.grant-catch {
		font-size:1.1em;
	}

	h3.standard03 {
		font-size:99%;
	}

	.benefit-title{
		font-size:1.1em;
	}
}


/* 375px～479px
---------------------------- */

@media only screen and (min-width: 375px) and (max-width: 479px) {

	.pc_w1600, .pc_w1180, .pc_w960{
		margin:0 auto;
		max-width: 95%;
		overflow-x: hidden;
	}

	.m_off {
		display: none;
	}

	.contact {
		display: none;
	}
	
	.head_pc {
		display: none;
	}

	#nav {
		display: none;
	}

	.head_mobile {
		max-width: 100%;
	}

	h2.top01 {
		margin-right:40px;
		margin:-40px 0 0;
	}

	p{
		font-size:98%;
	}

	.column {
		flex: 100%;
	}

	dl.standard01 dd {
		font-size:95%;
	}

	#main ul li, #main ol li{
		font-size:98%;
	}


	.waku3 .box-title, .waku4 .box-title, .waku4-2 .box-title, .waku5 .box-title, .waku9 .box-title, .box-title11 {
		font-size:90%;
	}

	h3.grant-catch {
		font-size:1.05em;
	}

	h3.standard03 {
		font-size:99%;
	}

	.benefit-title{
		font-size:1.1em;
	}
}


/* ～374px
---------------------------- */

@media only screen and (max-width: 374px) {

	.pc_w1600, .pc_w1180, .pc_w960{
		margin:0 auto;
		max-width: 95%;
		overflow-x: hidden;
	}

	.m_off {
		display: none;
	}

	.contact {
		display: none;
	}
	
	.head_pc {
		display: none;
	}

	.head_mobile {
		max-width: 100%;
	}

	#nav {
		display: none;
	}

	#header h1, #header .logo {
		float: none;
		margin-bottom: 0px;
	}

	table.entry-content{
		font-size:60%;
	}

	table.similar-text img {
		width: 100px;
	}

	table.similar-text th {
		width: 100px;
	}

	.pagedate {
		margin: 40px 0 0;
	}

	.pager {
		margin: 80px 0;
	}

	.mobile-display-none {
		display: none;
	}

	.single-contents br {
		display: none;
	}

	.page-contents {
		margin: 0 0 50px;
	}

	p{
		font-size:98%;
	}

	.column {
		flex: 100%;
	}

	dl.standard01 dd {
		font-size:95%;
	}

	#main ul li, #main ol li{
		font-size:95%;
	}

	.waku3 .box-title, .waku4 .box-title, .waku4-2 .box-title, .waku5 .box-title, .waku9 .box-title, .box-title11 {
		font-size:90%;
	}

	h3.grant-catch {
		font-size:1em;
	}

	h3.standard03 {
		font-size:95%;
	}

	.benefit-title{
		font-size:1em;
	}
}


/* -----------------------------
	文字装飾
----------------------------- */

.yellow_underline{
	background: linear-gradient(transparent 50%, yellow 50%);
}

.skyblue_underline{
	background: linear-gradient(transparent 50%, skyblue 50%);
}

.orange_underline{
	background: linear-gradient(transparent 50%, orange 50%);
}


/* -----------------------------
	文字サイズ
----------------------------- */

.font-150 {
	font-size:150%;
	letter-spacing:.1em;
}

.font-140 {
	font-size:140%;
	letter-spacing:.1em;
}

.font-130 {
	font-size:130%;
	letter-spacing:.1em;
}

.font-120 {
	font-size:120%;
}

.font-110 {
	font-size:110%;
}

.font-100 {
	font-size:100%;
}

.font-98 {
	font-size:98%;
}

.font-97 {
	font-size:97%;
}

.font-95 {
	font-size:95%;
}

.font-90 {
	font-size:90%;
}

.font-85 {
	font-size:85%;
}

.font-80 {
	font-size:80%;
}

.font-75 {
	font-size:75%;
}

.font-70 {
	font-size:70%;
}

.font-60 {
	font-size:60%;
}


/* -----------------------------
	文字色
----------------------------- */

.color-000 {
	color:#000;
}

.color-333 {
	color:#333;
}

.color-666 {
	color:#666;
}

.color-999 {
	color:#999;
}

.color-fff {
	color:#fff;
}

.color-f00 {
	color:#f00;
}

.color-00f {
	color:#00f;
}

.color-ff0 {
	color:#ff0;
}

.color-033B86 {
	color:#006837;
}




























/* ------------------------- 
 * フローティングバナー
 * 1920px以上の大画面では右端に固定表示
 * それ未満では非表示にする
---------------------------- */

/* 1920px以上（大画面PCなど） */
@media only screen and (min-width: 1920px) {

	.fixed_btn1 { 
		position: fixed; /* 画面に固定配置 */
		top: -5px; /* 上端から -5px（少し上にずらす） */
		right: 0; /* 画面右端に固定 **/
		padding: 6px 0; /* 上下の余白 **/
		z-index: 99999; /* 最前面に表示（他要素より優先） */
	}

	.fixed_btn1 img {
		width: 150px; /* ここを絶対指定 */
		height: auto;
	}


	.fixed_btn_tel { 
		position: fixed; /* 画面右下付近に固定配置 */
		bottom: 350px; /* 下から350pxの位置 */
		right: 0; /* 右端に固定 */
		padding: 6px 0; /* 上下余白 */
		z-index: 99999; /* バナーが他要素に隠れないようにする */
	}
}

/* 特定ページ（例：page-id-4053, page-id-4055）では非表示にする */
.page-id-4053 .fixed_btn1,
.page-id-4055 .fixed_btn1 {
	display: none; /* 該当ページで非表示 */
}

/* 1919px以下（ノートPC・タブレット・スマホ）では非表示 */
@media only screen and (max-width: 1919px) {
	.fixed_btn1,
	.fixed_btn_tel { 
		display: none; /* 小さい画面では非表示にする */
	}
}











