/*
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: 50px;				/* 表示したい高さに変更（例） */
	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: 40px; /* スマホ用に縮小 */
		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.2em;
	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;
	}
}



/* ------------------------------------------- 
 * ワイドCTA
 * ----------------------------------------- */

.wide-wrap{ /* 全幅表示のための外枠 */
	position:relative; /* 相対位置指定 */
	padding: 30px; /* 内側の余白 */
	margin:0 calc(50% - 50vw) !important; /* ブラウザ幅全体に広げる計算式 */
	overflow:hidden; /* はみ出し防止 */
}

.sticky-title { /* 背景画像つきの横幅いっぱいタイトルブロック */
		padding: 40px 0 40px; /* 上下余白 */
	width: 100%; /* ブロック幅100％ */
	margin:30px; /* 外側余白 */
	justify-content: center; /* 中身の中央寄せ */
	overflow: hidden; /* はみ出し防止 */
		display: flex; /* 横並びにする */
		align-items: center; /* 縦方向中央寄せ */
		background-image: url("https://landc.net/images/offer03.jpg"); /* 背景画像 */
		background-size: cover; /* 全体を覆う */
		background-position: center; /* 画像中央配置 */
		background-repeat: no-repeat; /* 繰り返しなし */
}

.eyecatch { /* 左右2カラムの中身コンテナ */
		display: flex; /* 横並び */
		justify-content: space-between; /* 左右に配置 */
		align-items: center; /* 縦中央 */
		width: 100%; /* 幅100% */
		max-width: 960px; /* 最大幅を制限 */
		margin: 0 auto; /* 中央に */
		color: #fff; /* 文字色白 */
}

.eyecatch-left { /* 左側カラム */
		width: 50%; /* 幅50% */
}

.eyecatch-title { /* タイトル文字 */
		font-size: 1.8em; /* フォントサイズ */
		font-weight: bold; /* 太字 */
		margin-bottom: 20px; /* 下余白 */
	color:#111; /* 文字色 */
		line-height: 1.3; /* 行間 */
}

.eyecatch-left p { /* 左カラムの本文 */
		line-height: 1.7; /* 行間 */
		font-size: 1em; /* フォントサイズ */
	color:#111; /* 文字色 */
}

.eyecatch-right { /* 右側のCTAブロック */
		width: 40%; /* 幅40% */
		text-align: center; /* 中央寄せ */
	background: #033B86; /* 背景色 */
		padding: 25px 20px; /* 内側余白 */
		border-radius: 10px; /* 角丸 */
}

.cta-label { /* CTA上部ラベル */
		font-size: 1.2em; /* フォントサイズ */
		font-weight: bold; /* 太字 */
		margin-bottom: 20px; /* 下余白 */
}

.cta-btn { /* CTAボタン */
		display: inline-block; /* インラインブロック */
		padding: 15px 25px; /* 余白 */
		font-size: 1.2em; /* フォントサイズ */
		font-weight: bold; /* 太字 */
		background: #ff9800; /* ボタン色 */
		color: #fff; /* 文字白 */
		text-decoration: none; /* 下線なし */
		border-radius: 8px; /* 角丸 */
		box-shadow: 2px 2px 7px rgba(0,0,0,0.4); /* 影 */
}

.cta-btn:hover { /* ホバー時 */
		opacity: 0.9; /* 少し透明に */
}

@media screen and (max-width: 1050px) { /* 1050px以下のスマホ・タブレット向け */
		.wide-wrap { /* 外枠調整 */
				margin: 0 0 30px;						/* 全幅解除 */ 
				padding: 20px;				/* 左右余白 */ 
		}

		.sticky-title { /* 背景ブロックの余白調整 */
				margin: 0; /* 外側ゼロ */
				padding: 30px 20px; /* 内側余白調整 */
		}

		.eyecatch { /* カラムを縦並びに変更 */
				flex-direction: column; /* 縦並び */
				gap: 30px; /* 上下の隙間 */
				align-items: center; /* 中央寄せ */
				text-align: center;	/* テキスト中央 */
				width: 100%; /* 幅100% */
				padding: 0 20px; /* 左右余白 */
				box-sizing: border-box; /* 余白を含めて幅計算 */
		}

	.eyecatch-title { /* タイトル文字 */
			font-size: 1.4em; /* フォントサイズ */
			font-weight: bold; /* 太字 */
			margin-bottom: 20px; /* 下余白 */
		color:#111; /* 文字色 */
			line-height: 1.3; /* 行間 */
	}

		.eyecatch-left,
		.eyecatch-right { /* 2つのカラムを100%幅に */
				width: 100%; /* 全幅 */
		}
}



/*---------------------------------
薬局経営の悩みセクション
---------------------------------*/

.problem-list {
	list-style: none;
	padding: 0;

	max-width: 1000px;
}

.problem-list li {
	background: #fff;
	border-left: 6px solid #033B86;
	padding: 15px 20px;
	margin-bottom: 16px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	line-height: 1.7;
	text-align:left;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-list li:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.problem-list strong {
	color: #033B86;
	margin-right: 6px;
}


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

.company-header {
	text-align: center;
	margin: 30px 0;
}

/* キャッチコピー（大きな文字） */
.company-header .main-title, .company-header .main-title2, .company-header .main-title3 {
	font-size: 2.7em; 
	font-weight: 700;
	color: #033B86;
	margin:0;			/* 下の文字との間隔 */
	letter-spacing: 0.02em;
	line-height:1.5em;
}

.company-header .main-title2{
	font-size: 3.3em;
}



/* サブタイトル（小さく控えめ） */
.company-header .sub-title, .company-header .sub-title2 {
	font-size: 1.7rem;				/* メインより小さく */
	color: #033B86;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.05em;
}


/* ---------------------------------
	会社概要タイトルスマホ（大）タブレット縦
--------------------------------- */

@media only screen and (min-width: 769px) and (max-width: 1000px) {
 .company-header .main-title3{
		font-size: 2.2rem;
 }
}

@media only screen and (min-width: 501px) and (max-width: 768px) {
	.company-header .main-title, .company-header .main-title2, .company-header .main-title3 {
		font-size: 2.2rem;
		line-height: 1.3;
		letter-spacing: 0.01em;
		margin-bottom: 6px;
		text-align: center;
	}

	.company-header .main-title2{
		font-size: 3rem;			 /* 大きめ */
	}

	.company-header .sub-title,.company-header .sub-title2 {
		font-size: 1.2rem;
		line-height: 1.4;
		letter-spacing: 0.02em;
		text-align: center;
	}

	.company-header .sub-title2{
		font-size: 1.3rem;
	}

}

/* ---------------------------------
	会社概要タイトルスマホ（小）
--------------------------------- */
@media only screen and (min-width: 341px) and (max-width: 500px) {
	.company-header .main-title, .company-header .main-title2, .company-header .main-title3 {
		font-size: 1.5rem;
		line-height: 1.3;
		letter-spacing: 0.01em;
		margin-bottom: 6px;
		text-align: center;
	}

	.company-header .main-title2{
		font-size: 2.3rem;
	}

	.company-header .main-title3{
		font-size: 1.5rem;
	}



	.company-header .sub-title, .company-header .sub-title2 {
		font-size: 1rem;
		line-height: 1.4;
		letter-spacing: 0.02em;
		text-align: center;
	}
}


@media only screen and (max-width: 340px) {
	.company-header .main-title, .company-header .main-title2, .company-header .main-title3 {
		font-size: 1.5rem;
		line-height: 1.3;
		letter-spacing: 0.01em;
		margin-bottom: 6px;
		text-align: center;
	}

	.company-header .main-title2{
		font-size: 1.7rem;
	}

	.company-header .main-title3{
		font-size: 1.2rem;
	}


	.company-header .sub-title, .company-header .sub-title2 {
		font-size: 0.8rem;
		line-height: 1.4;
		letter-spacing: 0.02em;
		text-align: center;
	}
}



/* -----------------------------
　　　セミナータイトル
----------------------------- */

.seminar-header {
	text-align: center;
	margin: 30px 0 0;
}

/* キャッチコピー（大きな文字） */
.seminar-header .main-title, .seminar-header .main-title2, .seminar-header .main-title3 {
	font-size: 2.7em; 
	font-weight: 700;
	color: #033B86;
	margin:0;			/* 下の文字との間隔 */
	letter-spacing: 0.02em;
	line-height:1.5em;
}

.seminar-header .main-title2{
	font-size: 3.3em;
}

/* サブタイトル（小さく控えめ） */
.seminar-header .sub-title, .seminar-header .sub-title2 {
	font-size: 1.7rem;				/* メインより小さく */
	color: #033B86;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.05em;
}


/* ---------------------------------
	セミナータイトルスマホ（大）タブレット縦
--------------------------------- */

@media only screen and (min-width: 769px) and (max-width: 1000px) {
 .seminar-header .main-title3{
		font-size: 2.2rem;
 }
}

@media only screen and (min-width: 501px) and (max-width: 768px) {
	.seminar-header .main-title, .seminar-header .main-title2, .seminar-header .main-title3 {
		font-size: 2.2rem;
		line-height: 1.3;
		letter-spacing: 0.01em;
		margin-bottom: 6px;
		text-align: center;
	}

	.seminar-header .main-title2{
		font-size: 3rem;			 /* 大きめ */
	}

	.seminar-header .sub-title,.seminar-header .sub-title2 {
		font-size: 1.2rem;
		line-height: 1.4;
		letter-spacing: 0.02em;
		text-align: center;
	}

	.seminar-header .sub-title2{
		font-size: 1.3rem;
	}

}

/* ---------------------------------
	セミナータイトルスマホ（小）
--------------------------------- */
@media only screen and (min-width: 341px) and (max-width: 500px) {
	.seminar-header .main-title, .seminar-header .main-title2, .seminar-header .main-title3 {
		font-size: 1.5rem;
		line-height: 1.3;
		letter-spacing: 0.01em;
		margin-bottom: 6px;
		text-align: center;
	}

	.seminar-header .main-title2{
		font-size: 2.3rem;
	}

	.seminar-header .main-title3{
		font-size: 1.5rem;
	}



	.seminar-header .sub-title, .seminar-header .sub-title2 {
		font-size: 1rem;
		line-height: 1.4;
		letter-spacing: 0.02em;
		text-align: center;
	}
}


@media only screen and (max-width: 340px) {
	.seminar-header .main-title, .seminar-header .main-title2, .seminar-header .main-title3 {
		font-size: 1.5rem;
		line-height: 1.3;
		letter-spacing: 0.01em;
		margin-bottom: 6px;
		text-align: center;
	}

	.seminar-header .main-title2{
		font-size: 1.7rem;
	}

	.seminar-header .main-title3{
		font-size: 1.2rem;
	}


	.seminar-header .sub-title, .seminar-header .sub-title2 {
		font-size: 0.8rem;
		line-height: 1.4;
		letter-spacing: 0.02em;
		text-align: center;
	}
}



/* -----------------------------
	 セミナー概要 レイアウト
----------------------------- */

/* 全体 */
.lp-feature {
	display: flex;
	margin: 10px 0;
}

/* 左：テキスト */
.lp-feature-text {
	width: 70%;
}

.lp-feature-text p {
	line-height: 1.9;
	color: #444;
}

/* -----------------------------
	 セミナーの概要 レイアウト　スマホ対応
----------------------------- */
@media screen and (max-width: 768px) {

	.lp-feature {
		flex-direction: column;
		align-items: center;
	}

	/* テキスト */
	.lp-feature-text {
		width: 100%;
	}

	.lp-feature-text p {
		margin-bottom: -18px; /* ← ここを小さく */
	}

	/* スマホ用画像を表示 */
	.m_off2 {
		display: block;
		width: 100%;
		margin-top: 12px;
	}

	.m_off2 img {
		width: 100%;
		height: auto;
	}
}

/* -----------------------------
	 こんな方におすすめです
----------------------------- */

.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: #deecfe;
	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: #033B86;
	font-weight: bold;
}


/* -----------------------------
	 参加3大特典
----------------------------- */

.seminar-benefits {
	list-style: none;
	padding: 0;
	margin: 32px 0;
}

.seminar-benefits li {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 0;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.7;
	border-bottom: 2px solid #e6edf6;
}

.seminar-benefits li:last-child {
	border-bottom: none;
}

/* 王冠（数字画像） */
.seminar-benefits .crown {
	flex-shrink: 0;
	width: 80px;
	text-align: center;
}

.seminar-benefits .crown img {
	width: 140px;
	height: auto;
	display: block;
	margin-top: 2px;
}

/* 強調したいキーワードだけ自然に目立たせる */
.seminar-benefits li strong {
	color: #033B86;
	font-weight: 700;
}

.seminar-benefits li {
	display: flex;
	align-items: center; /* 冠数字は常に縦中央 */
}

/* 文字だけを少し下げる */
.benefit-text {
	margin-left:-10px;
	flex: 1;
}

/* 右側イメージ */
.benefit-image {
	flex-shrink: 0;
	width: 220px;
	text-align: right;
}

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


/* =============================
   スマホ用（参加特典レイアウト）
============================= */
@media screen and (max-width: 768px) {

	/* li をグリッド化 */
	.seminar-benefits li {
		display: grid;
		grid-template-columns: 64px 1fr;
		grid-template-rows: auto auto;
		column-gap: 18px;  /* ← 10px → 18px に変更 */
		padding: 16px 0;
		font-size: 1em;
	}

	/* 王冠数字：左上 */
	.seminar-benefits .crown {
		grid-column: 1;
		grid-row: 1;
	}

	.seminar-benefits .crown img {
		width: 64px;
		height: auto;
		display: block;
	}

	/* 文字：王冠の右 */
	.benefit-text {
		grid-column: 2;
		grid-row: 1;
		line-height: 1.6;
	}

	/* 画像：下段で横幅100% */
	.benefit-image {
		grid-column: 1 / -1;
		width: 100%;
		margin-top: -44px; 
	}

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


/* -----------------------------
	開催形式について　枠
----------------------------- */

.seminar-held {
	margin:30px 0;
	padding: 10px 20px;
	background: #f9f7ee;
	border-top: 4px solid #033B86;
	border-bottom: 4px solid #033B86;
}




/* -----------------------------
	 1on1の開催方式による7つのメリット
----------------------------- */

div.standard02_1, div.standard02_2, div.standard02_3, div.standard02_4, div.standard02_5, div.standard02_6, div.standard02_7 {
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
	position: relative;
	margin:20px 0 !important;
	padding: 2px 5px 2px 40px;
}

div.standard02_1:before, div.standard02_2:before, div.standard02_3:before, div.standard02_4:before, div.standard02_5:before, div.standard02_6:before, div.standard02_7:before {
	content: "１";
	display: inline-block;
	line-height: 40px;
	position: absolute;
	padding: 0em;
	color: white;
	background: #033B86;
	font-weight: normal;
	width: 40px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	left: -0.5em;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border: solid 3px white; 
	border-radius: 50%;
}

div.standard02_2:before{
	content: "２";
}

div.standard02_3:before{
	content: "３";
}

div.standard02_4:before{
	content: "４";
}

div.standard02_5:before{
	content: "５";
}

div.standard02_6:before{
	content: "６";
}

div.standard02_7:before{
	content: "７";
}


/* -----------------------------
	 参加方法について
----------------------------- */

ul.font_awesome1 {
	margin: 20px 0;
	list-style: none;
}

ul.font_awesome1 li {
	position: relative;
	padding-left: 1.6em !important;
	padding-top: 4px !important;	 /* ← 大幅に減らす */
	padding-bottom: 4px;
	line-height: 1.4;							/* ← 行間を締める */
}

ul.font_awesome1 li::before {
	font-family: "Font Awesome 5 Free";
	content: '\f06c';							/* ← 最後の指定だけでOK */
	font-weight: 900;
	position: absolute;
	top: 0.2em;										/* ← 文字基準で揃える */
	left: 0;
	color: #47B455;
	font-size: 1.3em;
}












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

.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:1em;
	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: #deecfe;
	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: 960px;
}





/* スライダー　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;
}
/* スライドレールの枠 */
.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;
}






/* -----------------------------
	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, .stylish-title2, .stylish-title3 {
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
		font-size: 2em;
		font-weight: 700;
		color: #033B86;
		text-align: center;
		line-height: 1.4;
		position: relative;
		margin: 40px 0 10px;
}

/* 個別調整 */
.stylish-title { 
	margin-top: 30px;
}					/* 必要なら調整 */

/* スマホ用 */
@media (max-width: 800px) {
	.stylish-title, .stylish-title2, .stylish-title3 {
		font-size: 1.4em;
	}
	.stylish-title {
	 margin-top:10px;
		font-size: 1.3em;
	}
}

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 Awesome の Unicode */
	font-family: "Font Awesome 5 Free";/* フォント指定が必須 */
	font-weight: 900;									/* Solid アイコンの場合 */
	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 #033B86;
}

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

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.25em;
	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 {
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
	font-size: 1.4em;
	margin:30px 0 5px;
	padding: 0.25em 0.5em;
	background: transparent;
	border-left: solid 7px #033B86;
}

h3.standard02 {
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
		margin: 60px 0 60px;
		padding: 16px 0;
		font-size: 24px;
		font-weight: 600;
		color: #033B86 !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: #033B86; 
		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 {
		font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
								 "Yu Mincho", "YuMincho", 
								 "MS PMincho", serif;
	margin:40px 0 20px;
	padding: 0.25em 0.5em;
	background: transparent;
	border-left: double 20px #fff;
}

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: #033B86;
		border-left: 6px solid #033B86;
		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 #033B86;
}

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;
	font-size:1.2em;
	border-bottom: solid 1px #ccc;
}

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

.tbl-r07 td, .tbl-r08 td {
	padding:10px 20px;
	text-align:right !important;
	font-size:0.9em;
	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 !important;
		font-size:90%;
		border-bottom: solid 1px #ccc;
	}

	.tbl-r07 td, .tbl-r08 td {
		padding:10px 20px;
		text-align:right !important;
		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: #033B86;	 /* 背景色（オレンジ） */
		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: #033b86;
}

.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 #033B86;
}

/* タイトル前の四角アイコン */
.widget-title:before,
.sidebox .widget-title:before {
		content: "";
		display: inline-block;
		width: 20px;										 /* アイコンの幅 */
		height: 20px;										/* アイコンの高さ */
		margin-right: 8px;							 /* アイコンと文字の間隔 */
		background-color: #033B86;			 /* アイコンの色 */
		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: #033B86 !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:#033B86;
	text-align:center;
	padding:10px 0;
}

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

@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: #033B86;					/* ボタンの背景色を濃いグレーに設定 */
		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 #033B86;			 /* 枠線 */
	border-radius: 6px;					 /* 角丸 */
	line-height: 1.5;
	font-weight: 500;
	background: #fff;					 /* わずかに背景を付けて落ち着き */
}

/* チェックアイコン */
.consult-box ul li::before {
	content: "\2714";						 /* チェックマーク */
	color: #033B86;							 /* アイコンの色 */
	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);
}




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

.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: #033B86;
}

.privacy-box h3 {
	font-weight: 700;
	color: #033B86;
	border-left: 5px solid #033B86;
	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: #033B86; 
	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: #033B86;
	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: #033B86;
	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_ccc{
	margin: 20px 0 30px;
	padding: 15px 15px 20px 25px;
	border: solid 1px #ccc;
	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;
}

.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 #033B86;
	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%);
}


/* -----------------------------
	cta
----------------------------- */

.cta100 img {
		width: 640px !important;
		max-width: 640px !important;
		height: auto !important;
	margin:0 auto;
}






/* -----------------------------
	①②③
----------------------------- */

.stylish-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.stylish-list li {
	position: relative;
	padding: 18px 20px 18px 60px;
	margin-bottom: 18px;
	background: #deecfe;
	border-radius: 12px;
	font-size: 16px;
	line-height: 1.6;
	border-left: 4px solid #033B86;
	transition: all .2s ease;
}

.stylish-list li span {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	background: #033B86;
	color: #fff;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 15px;
}



/* -----------------------------
	経歴１
----------------------------- */

.advice-box-modern {
	background: #f9f9f9;
	border-radius: 12px;
	margin:30px 0;
	padding: 24px;
	font-family: "Yu Gothic","Hiragino Kaku Gothic Pro","メイリオ",sans-serif;
	color: #222;
}

/* 見出し */
.advice-box-modern h3 {
	font-weight: 700;
	margin-bottom: 20px;
	border-bottom: 2px solid #ccc;
	padding-bottom: 8px;
}

/* リスト */
.advice-box-modern ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* 共通の li ベース */
.advice-box-modern ul li {
	padding: 14px 20px;
	margin-bottom: 12px;
	background: #fbf5f4;			 /* デフォルト（1つ目用） */
	border-left: 4px solid #7cb3fc; /* デフォルトのアクセントカラー */
	border-radius: 6px;
	font-weight: 500;
	line-height: 1.6;
	transition: all 0.28s ease;
}

/* 1つ目：既存の色（そのまま） */
.advice-box-modern:nth-of-type(1) ul li {
	background: #deecfe;
	border-left-color: #7cb3fc;
	box-shadow: 0 2px 8px rgba(124, 179, 252, 0.1);
}

/* 2つ目：#7fa58c（茶色系） */
.advice-box-modern:nth-of-type(2) ul li {
	background: rgba(255, 140, 60, 0.08);
	border-left-color: #fc6;
	box-shadow: 0 2px 8px rgba(127,165,140,0.08);
}

/* 3つ目：#80ac95（緑系） */
.advice-box-modern:nth-of-type(3) ul li {
	background: rgba(127, 165, 140, 0.08);
	border-left-color: #80AC95;
	box-shadow: 0 2px 8px rgba(233,148,19,0.08);
}

/* ホバーで少し浮き感 */
.advice-box-modern ul li:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}







/* ------------------------------------
 * 2カラムCTAセクション
 * ------------------------------------ */

/** CTAセクション全体 **/
.cta-section { /** セクション全体の設定 **/
	/** 背景を上下グラデーションに設定 **/
	background: linear-gradient(180deg, #ffe5c3 0%, #fff1e0 100%);
	/** セクション内の余白を確保 **/
	padding: 50px 20px;
	/** テキストを中央寄せに **/
	text-align: center;
}

/** コンテナ：PCで横並び **/
.cta-container { /** CTAボックスを横並びに配置 **/
	display: flex; /** 横方向レイアウト **/
	justify-content: center; /** 中央寄せ配置 **/
	align-items: stretch; /** 高さを揃える **/
	flex-wrap: wrap; /** 幅が狭いときは折り返す **/
	gap: 40px; /** ボックス間の間隔を設定 **/
	max-width: 960px; /** 最大幅を指定 **/
	margin: 0 auto; /** 中央寄せ配置 **/
}

/** 各ボックス **/
.cta-box { /** 各CTAカード全体 **/
	background: #fff; /** 白背景 **/
	border-radius: 12px; /** 角を丸くする **/
	box-shadow: 0 4px 12px rgba(0,0,0,0.1); /** 柔らかい影を付与 **/
	padding: 30px 20px; /** 内側の余白を設定 **/
	width: 420px; /** 各カードの幅 **/
	box-sizing: border-box; /** 幅計算にpaddingを含める **/
	transition: transform 0.3s ease, box-shadow 0.3s ease; /** ホバー時のアニメーションを設定 **/
}

/** ホバー時の浮き上がり効果 **/
.cta-box:hover {
	transform: translateY(-4px); /** 少し上に浮かせる **/
	box-shadow: 0 8px 16px rgba(0,0,0,0.15); /** 影を強調 **/
}

/** 画像 **/
.cta-box img {
	max-width: 80%; /** 画像の最大幅を制限 **/
	height: auto; /** アスペクト比を維持 **/
	margin-bottom: 15px; /** 下に余白を設定 **/
	border-radius: 8px; /** 角丸を追加（ボックスと調和） **/
	box-shadow: 0 2px 6px rgba(0,0,0,0.1); /** （任意）軽い影で立体感 **/
}

/** テキスト **/
.cta-text {
	font-size: 1.1rem; /** 少し大きめの文字サイズ **/
	font-weight: 600; /** 太字 **/
	color: #444; /** ダークグレー文字 **/
	margin-bottom: 20px; /** 下余白 **/
}

/** ボタン共通 **/
.cta-btn {
	display: inline-block; /** インラインブロックで配置 **/
	padding: 12px 28px; /** 内側余白 **/
	border-radius: 40px; /** 丸みを帯びたボタン **/
	font-weight: 700; /** 太字 **/
	font-size: 1rem; /** 標準的なサイズ **/
	text-decoration: none; /** 下線を消す **/
	transition: background 0.3s ease, transform 0.2s ease; /** ホバー時の動きを滑らかに **/
}

/** オレンジボタン **/
.cta-orange {
	background: #ff8c42; /** 濃いオレンジ背景 **/
	color: #fff; /** 白文字 **/
}
.cta-orange:hover {
	background: #ff9f66; /** 少し明るいオレンジに変化 **/
	transform: scale(1.05); /** 拡大してクリック感を演出 **/
}

/** 青ボタン **/
.cta-blue {
	background: #2a7de1; /** 鮮やかなブルー背景 **/
	color: #fff; /** 白文字 **/
}
.cta-blue:hover {
	background: #4999f0; /** 明るいブルーに変化 **/
	color: #003366; /** 文字色を濃い青に変更してコントラストUP **/
	transform: scale(1.05); /** 拡大して動きを出す **/
}

/** スマホ対応 **/
@media screen and (max-width: 768px) {
	.cta-container {
		flex-direction: column; /** 縦方向に並べる **/
		align-items: center; /** 中央寄せ **/
	}
	.cta-box {
		width: 100%; /** 幅を全体に広げる **/
		max-width: 420px; /** 最大幅を維持 **/
	}
}
		













/* -----------------------------------------------------
 * ステップカード
 * ----------------------------------------------------- */

/* セクション全体 */
.services { /* 背景と余白設定 */
	background: #f7fafc; /* 薄いグレーの背景 */
	padding: 60px 20px; /* 上下60px、左右20pxの余白 */
	text-align: center; /* 見出しを中央揃え */
}

/* カードのグリッド配置 */
.service-grid { /* レスポンシブな自動調整グリッド */
	display: grid; /* グリッドレイアウト */
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* カードを横並びに自動調整 */
	gap: 20px; /* カード間の余白 */
	max-width: 900px; /* 最大幅を900pxに制限 */
	margin: 0 auto; /* 中央寄せ */
}

/* 各カード */
.service-card { /* ステップカードの基本スタイル */
	background: #fff; /* 白背景 */
	border-radius: 10px; /* カードの角を丸く */
	padding: 20px; /* 内側余白 */
	box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 柔らかな影 */
	text-align: left; /* テキストを左揃え */
	font-size: 1rem; /* 読みやすい文字サイズ */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* ホバー時のアニメーション */
}

/* ホバー時の効果 */
.service-card:hover { /* カードに浮き上がり効果 */
	transform: translateY(-4px); /* 少し上に浮かせる */
	box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* 影を強調 */
}

/* ステップ番号 */
.service-card span { /* ステップ番号部分 */
	color: #2a4b8d; /* 青系の強調色 */
	font-weight: bold; /* 太字 */
	margin-right: 6px; /* 番号と文字の間に余白 */
	font-size: 1.2rem; /* やや大きく強調 */
}


/* -------------------------------------------
*	カードレイアウト　ミッションカード群
*------------------------------------------- */

/* ベースデザイン（共通） */
.card-wrap {
	margin-top:30px;
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 4列 */
	gap: 24px;
}

.card h4{
	margin-top:-55px;
	padding-left:10px;
		z-index:1;
		 background: rgba(3, 59, 134, 0.9); /* #033B86 の透明度90% */
		color: #fff !important; /* 文字が見えるように白にするのが推奨 */
		display: inline-block; /* 背景をh4テキスト部分だけにしたい場合 */
}

.card p {
	margin-top:-10px;
	padding-left:10px;
}


/* -------------------------------------------
カードデザイン
------------------------------------------- */
.card {
	border: none; /* 枠線 */
/*3列
	width: calc(33.333% - 16px); /* 3列 */
*/
	width: calc(25% - 18px); /* 4列に変更、gapに応じて微調整 */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	border-radius: 8px; /* 角丸 */
	padding: 0;
	transition: all 0.35s ease;
}

.card-img {
	width: 100%;
	display: block;
	margin: 0 0 12px;
	border-radius: 8px 8px 0 0;
}


/* -------------------------------------------
テキストとアイコン
------------------------------------------- */

.card h4 {
	font-size: 1.25rem;
	color: #033B86;
	margin-bottom: 12px;
	font-weight: 600;
	align-items: center;
	gap: 8px;
}

.card p {
	color: #555;
	line-height: 1.7;
}

/* -------------------------------
レスポンシブ
------------------------------- */

/* スマホ：1列（タブレット含む安全ライン） */
@media (max-width: 1000px) {

	/* grid を1列に */
	.card-wrap {
		grid-template-columns: 1fr !important;
	}

	/* カード幅を強制的に100%に */
	.card {
		width: 100% !important;	/* ← これが絶対必要！ */
	}

	.card h4 {
		margin-top: -65px;
		font-size: 1rem;
	}

	.card p {
	margin-top:10px;
		padding: 0 12px 20px;
	}
}







/*-----------------------------------
 資料請求フォーム
-----------------------------------*/

/* Contact Form 7 全体を中央寄せ＆幅制限 */
.lp-form-wrapper { /* フォーム全体の外枠 */
	max-width: 1200px; /* ← 横幅制限 LPだと1080px～1200px　自由に変えてください 
	margin: 0 auto; /* ← 中央寄せ */
	display: flex; /* 横並びレイアウト */
	flex-wrap: wrap; /* 画面幅が狭い時に折り返し */
	background: #fffbea; /* 明るいクリーム色背景 */
	padding: 30px; /* 内側余白 */
	border-radius: 10px; /* 角丸 */
	justify-content: space-between; /* 左右を均等配置 */
	gap: 30px; /* カラム間の間隔 */
	box-sizing: border-box; /* ← はみ出し防止 */
	width: 100%; /* ← 画面幅にフィット */
} 

/* 左右カラム共通 */
.lp-form-left,
.lp-form-right {
	box-sizing: border-box; /* ← 重要：padding計算含める */
}

/* 左側 */
.lp-form-left {
	flex: 1; /* 親要素内で余白を均等に分配し、右カラムと同じ比率で横幅を伸縮させる */
	min-width: 260px; /* 最小幅を260pxに固定して、狭い画面でも崩れないようにする */
}

/* 左側：特徴リスト */
.lp-features { /* 特徴リスト全体 */
	display: block; /* 縦方向に並べる */
	margin-bottom: 10px; /* 下の余白 */
	padding: 0; /* 内側余白なし */
	list-style: none; /* 「・」マークを削除 */
} /**/

.lp-features li { /* 各特徴の行 */
	margin-bottom: 8px; /* 行間を広げる */
} 

.lp-features li span { /* 各特徴の装飾ボックス */
	display: inline-block; /* インラインボックスとして表示 */
	background: #fff; /* 白背景 */
	border: 2px solid #ff6f00; /* オレンジの枠線 */
	color: #ff6f00; /* 文字色をオレンジ */
	font-weight: bold; /* 太字 */
	border-radius: 6px; /* 角丸 */
	padding: 6px 12px; /* 内側余白（上下・左右） */
	font-size: 0.9rem; /* 少し小さめの文字 */
} 

/* 右側エリア（フォーム本体） */
.lp-form-right { /* フォーム部分の枠 */
	flex: 1; /* 幅を均等に分配 */
	min-width: 300px; /* 最小幅を確保 */
	background: #fff; /* 背景を白に */
	border-radius: 10px; /* 角丸 */
	padding: 25px; /* 内側余白 */
	box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* うっすら影を付ける */
} 

.lp-form-right h3 { /* 見出しタイトル */
	font-size: 1.2rem; /* 文字サイズ */
	font-weight: 700; /* 太字 */
	margin-bottom: 20px; /* 下余白 */
} 

.lp-form-right label { /* 各ラベル */
	display: block; /* ブロック表示 */
	margin-bottom: 15px; /* 下余白 */
	font-weight: 600; /* 少し太字 */
	color: #333; /* 濃いグレー文字 */
} 

.lp-form-right input,
.lp-form-right select { /* 入力欄とセレクトボックス */
	width: 100%; /* 幅を100%に */
	padding: 10px; /* 内側余白 */
	border: 1px solid #ddd; /* 薄い枠線 */
	border-radius: 6px; /* 角丸 */
	font-size: 1rem; /* 標準文字サイズ */
}

/* 必須マーク */
.required { /* 「必須」ラベル */
	color: #f00; /* 赤文字 */
	font-size: 0.9rem; /* 小さめ文字 */
	margin-left: 4px; /* 左に少し余白 */
} 

/* 送信ボタン */
.submit-area { /* ボタンの外枠 */
	text-align: center; /* 中央寄せ */
	margin-top: 20px; /* 上余白 */
}

.lp-form-right input[type="submit"] { /* 送信ボタン */
	background: #ff6f00; /* オレンジ背景 */
	color: #fff; /* 白文字 */
	border: none; /* 枠線なし */
	border-radius: 6px; /* 角丸 */
	padding: 12px 25px; /* 内側余白（上下・左右） */
	font-size: 1.1rem; /* 少し大きめの文字 */
	font-weight: bold; /* 太字 */
	cursor: pointer; /* カーソルをポインタに */
	transition: background 0.3s ease; /* 背景色のフェード効果 */
} 

.lp-form-right input[type="submit"]:hover { /* ホバー時 */
	background: #e65a00; /* 少し濃いオレンジに */
} 

/* スマホ対応 */
@media (max-width: 768px) { /* 768px以下の画面 */
	.lp-form-wrapper { /* 全体を縦並びに */
		flex-direction: column; /* カラムを縦方向に変更 */
		padding: 20px; /* 内側余白を調整 */
	}

	.lp-form-left,
	.lp-form-right {
		width: 100%; /* ← 100%幅で確実に収まる */
		min-width: auto; /* ← 不要な最小幅を解除 */
		max-width: 100%; /* ← 右カラムの上限も解除 */
	}

	.lp-form-right {
		padding: 20px;
		box-shadow: none; /* スマホでは影を軽くする */
	}
}















/* -----------------------------------------
 * カードをふわっと表示するアニメーションを追加
 * -------------------------------------- */

/* カード全体を包むコンテナ */
.card_item {
	max-width: 1200x; /* ← 横幅制限 LPだと1080px～1200px　自由に変えてください */
	margin:0 auto;
	padding: 20px; /** 内側余白 **/
	display: flex; /** 横並び配置 **/
	flex-wrap: wrap; /** 折り返しを許可 **/
	justify-content: center; /** 中央寄せ **/
	align-items: flex-start; /** 上揃え **/
	gap: 30px; /** ★ 横間隔を30pxに調整 **/
	background: #fff; /** 背景色を白に **/
	box-sizing: border-box; /** ボックス計算をborder込みに **/
}

/* カード（figure） */
.card_item figure.card_item_block {
	margin: 0; /** 外側余白リセット **/
	padding: 0; /** 内側余白リセット **/
	float: none !important; /** float解除 **/
	display: flex; /** フレックス表示 **/
	justify-content: center; /** 中央寄せ **/
	box-sizing: border-box; /** 幅計算をborder込みに **/
	width: calc((100% - 60px) / 3); /** gap(30×2)を除いた3等分幅 **/
	min-width: 260px; /** 最小幅指定で崩れ防止 **/
}

/* スマホ（～960px）：1列表示 */
@media screen and (max-width: 960px) {
	.card_item {
		justify-content: center; /** 中央寄せ **/
		gap: 25px; /** スマホ時の隙間調整 **/
	}
	.card_item figure.card_item_block {
		width: 90%; /** 幅を広げて1列表示 **/
	}
}

/* 中のカード */
.service-card {
	width: 100%; /** カード幅100％ **/
	background: #fff; /** 背景白 **/
	border-radius: 10px; /** 角丸 **/
	box-shadow: 0 4px 10px rgba(0,0,0,0.1); /** 軽い影 **/
	padding: 15px; /** 内側余白 **/
	box-sizing: border-box; /** 枠込み計算 **/
	transition: transform 0.3s ease; /** ホバー時アニメーション **/
}
.service-card:hover {
	transform: translateY(-5px); /** ホバーで少し浮く **/
}

/* オーバーレイ（半透明レイヤー） */
.service-card::after {
	position: relative; /* この要素を基準にして、子要素（position:absolute）や ::after の位置を決めるための基準点を作る */
	content: ""; /** 擬似要素生成 **/
	position: absolute; /** カード全体に重ねる **/
	inset: 0; /** 全方向0指定 **/
	background: rgba(173, 216, 230, 0); /** 初期は透明 **/
	transition: background 0.3s ease; /** 色変化を滑らかに **/
	border-radius: 12px; /** 角丸を維持 **/
	z-index: 2; /** 画像の上・テキストの下に配置 **/
	pointer-events: none; /** クリック無効化 **/
}

/* ホバー時に水色オーバーレイを表示 */
.service-card {
	transition: background 0.3s ease; /** 背景変更アニメーション **/
}
.service-card:hover {
	background: #eeffff; /** 水色に変化 **/
}

/* 画像をレスポンシブ対応 */
.service-card img {
	width: 100%; /** 横幅いっぱい **/
	height: auto; /** 縦横比を維持 **/
	border-radius: 5px; /** 画像角を丸める **/
}

/* テキスト類を画像より上に表示 */
.service-card h3,
.service-card ul,
.service-card a {
	position: relative; /** テキスト層を独立化 **/
	z-index: 3; /** 画像上に配置 **/
}

/* リスト（黒丸非表示） */
.service-card ul {
	list-style: none; /** 黒丸削除 **/
	padding: 0; /** 内側余白削除 **/
	margin: 0; /** 外側余白削除 **/
}
.service-card ul li {
	font-size: 0.9rem; /** 小さめ文字 **/
	color: #333; /** 文字色 **/
	line-height: 1.6; /** 行間広め **/
	margin-bottom: 5px; /** 下余白 **/
}

/* 下からふわっと */
.card_item figure.card_item_block {
	opacity: 0; /** 初期は透明 **/
	transform: translateY(40px); /** 下にずらす **/
	transition: opacity 0.8s ease, transform 0.8s ease; /** 表示アニメーション **/
}

.card_item figure.card_item_block.is-visible {
	opacity: 1 !important; /** 表示時に完全表示 **/
	transform: translateY(0); /** 元位置に戻す **/
}

/* 遅延アニメーション設定（figureに指定） */ /** 表示タイミングをずらす **/
.card_item figure.card_item_block:nth-child(1) {
	transition-delay: 0s; /** 最初すぐ表示 **/
}
.card_item figure.card_item_block:nth-child(2) {
	transition-delay: 0.2s; /** 2番目遅延0.2秒 **/
}
.card_item figure.card_item_block:nth-child(3) {
	transition-delay: 0.4s; /** 3番目遅延0.4秒 **/
}

/* 続きを読むボタン */
.card_item .more-link {
	display: block; /** ブロック表示 **/
	border: 1px #028cd4 solid; /** 青枠 **/
	padding: 12px 24px; /** 内側余白 **/
	line-height: 26px; /** 行の高さ **/
	margin: 30px 0 64px; /** 上下の余白調整 **/
	box-sizing: border-box; /** 枠込み計算 **/
	clear: both; /** 回り込み解除 **/
	color: #444; /** テキスト色 **/
	font-size: 14px; /** フォントサイズ **/
	border-radius: 10px; /** 角丸ボタン **/
	text-align: center; /** 中央寄せ **/
	width:100%; /** 幅いっぱい **/
}

.card_item .more-link:hover {
	background: #028cd4; /** 背景青 **/
	color: #fff !important; /** テキスト白 **/
	text-decoration: none; /** 下線除去 **/
}


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

.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: #033B86;
	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: #033B86;			 /* アイコンの色 */
	margin-right: 8px;		/* 番号との間隔 */
	font-size: 1em;			 /* アイコンサイズ */
}

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

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



/* -----------------------------
	thanksページ
----------------------------- */


.thanks-box {
	margin: 0 auto;
	background: #fff;
	padding: 40px 50px;
	border-radius: 14px;
	border: 1px solid #d9e3df;
	box-shadow: 0 6px 20px rgba(0,0,0,0.06);
	position: relative;
}

/* タイトル */
.thanks-title {
	font-size: 1.6em;
	text-align: center;
	margin-bottom: 30px;
	font-weight: 700;
	color: #365046;
}

/* スマホ（?480px） */
@media (max-width: 480px) {
	.thanks-title {
		font-size: 1.35em; /* 少しだけ小さく */
		margin-bottom: 24px;
		line-height: 1.4;
	}
}

/* 本文 */
.thanks-box p {
	line-height: 1.8;
	margin-bottom: 22px;
	font-size: 1.05em;
	color: #333;
}

/* ワンポイントアイコン */
.thanks-icon {
	position: absolute;
	top: -20px;
	right: 20px;
	background: #7fa58c;
	color: #fff;
	border-radius: 50%;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: bold;
	box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}









/* -------------------------
*	 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%;
	}


	h2, h2.standard01, h2.standard02, h2.standard03, h2.standard05, h2.standard06, h2.standard07, h2.standard08, h2.standard09, h2.standard10, h2.standard11, h2.standard12, h2.standard13, h2.standard14, h2.standard15, h2.standard16, h2.standard17, h2.standard18, h2.standard19, h2.standard20,
		h3, h3.standard01, h3.standard02, h3.standard03, h3.standard04, h3.standard04_green, h3.standard05, h3.standard06, h3.standard07, h3.standard08, h3.standard09, h3.standard10, h3.standard10_1, h3.standard10_2, h3.standard10_3, h3.standard10_4, h3.standard10_5, h3.standard10_6, h3.standard11, h3.standard12, h3.standard12_bluesky, h3.standard13, h3.standard14, h3.standard15 ,h3.yubi, 
	h4, h4.standard01, h4.standard02, h4.standard03, h4.standard04, h4.standard05, h4.standard06, h4.standard07, h4.standard08, h4.standard09, h4.standard10, h4.yubi, .card h4, .cp_qa h4,
	h5, 
	h6,
	div.standard01, 
	div.standard02, div.standard02_1, div.standard02_2, div.standard02_3, div.standard02_4, div.standard02_5, div.standard02_6, div.standard02_7, div.standard02_8, div.standard02_9, div.standard02_10, 
	div.standard03_1, div.standard03_2, div.standard03_3, div.standard03_4, 
	p.yubi, 
	dl.standard01 dt {
		font-size:99%;
	}

	h2.standard04{
		font-size:1.5em;
	}

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

	h3.standard07{
		font-size:1.1em;
	}


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

}


/* 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%;
	}

	h2, h2.standard01, h2.standard02, h2.standard03, h2.standard05, h2.standard06, h2.standard07, h2.standard08, h2.standard09, h2.standard10, h2.standard11, h2.standard12, h2.standard13, h2.standard14, h2.standard15, h2.standard16, h2.standard17, h2.standard18, h2.standard19, h2.standard20,
		h3, h3.standard01, h3.standard02, h3.standard03, h3.standard04, h3.standard04_green, h3.standard05, h3.standard06, h3.standard07, h3.standard08, h3.standard09, h3.standard10, h3.standard10_1, h3.standard10_2, h3.standard10_3, h3.standard10_4, h3.standard10_5, h3.standard10_6, h3.standard11, h3.standard12, h3.standard12_bluesky, h3.standard13, h3.standard14, h3.standard15 ,h3.yubi, 
	h4, h4.standard01, h4.standard02, h4.standard03, h4.standard04, h4.standard05, h4.standard06, h4.standard07, h4.standard08, h4.standard09, h4.standard10, h4.yubi, .card h4, .cp_qa h4,
	h5, 
	h6,
	div.standard01, 
	div.standard02, div.standard02_1, div.standard02_2, div.standard02_3, div.standard02_4, div.standard02_5, div.standard02_6, div.standard02_7, div.standard02_8, div.standard02_9, div.standard02_10, 
	div.standard03_1, div.standard03_2, div.standard03_3, div.standard03_4, 
	p.yubi, 
	dl.standard01 dt {
		font-size:99%;
	}

	h2.standard04{
		font-size:1.4em;
	}

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

	h3.standard07{
		font-size:1.05em;
	}

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


/* 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%;
	}

	h2, h2.standard01, h2.standard02, h2.standard03, h2.standard05, h2.standard06, h2.standard07, h2.standard08, h2.standard09, h2.standard10, h2.standard11, h2.standard12, h2.standard13, h2.standard14, h2.standard15, h2.standard16, h2.standard17, h2.standard18, h2.standard19, h2.standard20,
		h3, h3.standard01, h3.standard02, h3.standard03, h3.standard04, h3.standard04_green, h3.standard05, h3.standard06, h3.standard07, h3.standard08, h3.standard09, h3.standard10, h3.standard10_1, h3.standard10_2, h3.standard10_3, h3.standard10_4, h3.standard10_5, h3.standard10_6, h3.standard11, h3.standard12, h3.standard12_bluesky, h3.standard13, h3.standard14, h3.standard15 ,h3.yubi, 
	h4, h4.standard01, h4.standard02, h4.standard03, h4.standard04, h4.standard05, h4.standard06, h4.standard07, h4.standard08, h4.standard09, h4.standard10, h4.yubi, .card h4, .cp_qa h4,
	h5, 
	h6,
	div.standard01, 
	div.standard02, div.standard02_1, div.standard02_2, div.standard02_3, div.standard02_4, div.standard02_5, div.standard02_6, div.standard02_7, div.standard02_8, div.standard02_9, div.standard02_10, 
	div.standard03_1, div.standard03_2, div.standard03_3, div.standard03_4, 
	p.yubi, 
	dl.standard01 dt {
		font-size:99%;
	}

	h2.standard04{
		font-size:1.3em;
	}

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

	h3.standard07{
		font-size:1em;
	}


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


/* ～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%;
	}


	h2, h2.standard01, h2.standard02, h2.standard03, h2.standard05, h2.standard06, h2.standard07, h2.standard08, h2.standard09, h2.standard10, h2.standard11, h2.standard12, h2.standard13, h2.standard14, h2.standard15, h2.standard16, h2.standard17, h2.standard18, h2.standard19, h2.standard20,
		h3, h3.standard01, h3.standard02, h3.standard03, h3.standard04, h3.standard04_green, h3.standard05, h3.standard06, h3.standard07, h3.standard08, h3.standard09, h3.standard10, h3.standard10_1, h3.standard10_2, h3.standard10_3, h3.standard10_4, h3.standard10_5, h3.standard10_6, h3.standard11, h3.standard12, h3.standard12_bluesky, h3.standard13, h3.standard14, h3.standard15 ,h3.yubi, 
	h4, h4.standard01, h4.standard02, h4.standard03, h4.standard04, h4.standard05, h4.standard06, h4.standard07, h4.standard08, h4.standard09, h4.standard10, h4.yubi, .card h4, .cp_qa h4,
	h5, 
	h6,
	div.standard01, 
	div.standard02, div.standard02_1, div.standard02_2, div.standard02_3, div.standard02_4, div.standard02_5, div.standard02_6, div.standard02_7, div.standard02_8, div.standard02_9, div.standard02_10, 
	div.standard03_1, div.standard03_2, div.standard03_3, div.standard03_4, 
	p.yubi, 
	dl.standard01 dt {
		font-size:99%;
	}

	h2.standard04{
		font-size:1.2em;
	}

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

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


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


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

.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:#033B86;
}




























/* ------------------------- 
 * フローティングバナー
 * 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; /* 小さい画面では非表示にする */
	}
}











