@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 13px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	overflow-x: hidden;
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
	-webkit-text-size-adjust: none;
	letter-spacing: 0.05em;
	background: #fff;	/*背景色*/
	color: #555;		/*全体の文字色*/
	font-weight: bold;
	line-height: 2;		/*行間*/
	font-weight: bold;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #555;	/*文字色*/
	transition: 0.3s;
}


/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section,
main > article {
	margin: 0 auto;
	padding: 5%;		/*ボックス内の余白*/
}


/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
}

/*c2内のh2見出し*/
.c2 h2 {
	font-size: 2em;
}

/*小さい端末で見た場合（１カラムになった際）に、画像を常に先頭に持ってくる*/
.c2 .image {
	order: -1;
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	background: #ffffff;			/*背景色*/
	position: fixed; z-index: 1;	/*スクロールしても動かないようにする指定*/
	width: 100%;
	padding: 0 3%;					/*上下、左右へのヘッダー内の余白*/
	height: 60px;					/*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
}

/*ヘッダーのリンクテキストの文字色*/
header a {
	color: #555;
}

/*ロゴ*/
header #logo {
	margin: 0;
	font-size: 20px;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	width: 250px;	/*幅*/
}

/*ロゴ画像*/
header #logo img {
	max-height: 60px;	/*ヘッダーの高さ60pxに収まるように*/
	height: auto;
	width: auto;
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#mainimg {
	width: 100%;
	height: 0;
	padding: 0;
	padding-top: 56.25%;
	margin-bottom: 2%;
	position: relative;
	top: 60px;	/*headerのheightの数値と合わせて下さい。*/
	overflow: hidden;
	background: #ffffff url(http://eight-link.net/wp-content/uploads/2025/06/24232596_s-pica.png) no-repeat center center / 100%;	/*背景色、背景画像の読み込み、最後の100%は画像幅。*/
	color: #555;	/*文字色*/
}

/*テキストブロック*/
#mainimg #text {
	position: absolute;
	left: 3%;		/*mainimgに対して左からの配置場所指定*/
	top: 0px;		/*mainimgに対して上からの配置場所指定*/
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
	width: 100%;	/*幅*/
	height: 100%;	/*高さ*/
	display: flex;			/*flexボックスを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
}

.br-smartphone {
    display: none;
}

/*h2見出し*/
#mainimg #text h2 {
	margin: -130px 0 0;
	font-weight: 500;	/*文字の太さ。数値が大きいほど太くなります。*/
	font-size: 30px;	/*文字サイズ。画面幅に対する単位です。*/
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
}

.jc {
	color: rgba(12,21,101,0.76);
	font-weight: 500;	/*文字の太さ。数値が大きいほど太くなります。*/
	font-size: 3.8vw;	/*文字サイズ。画面幅に対する単位です。*/
}

.am {
	color: rgba(48,16,249,0.71);
	font-weight: 500;	/*文字の太さ。数値が大きいほど太くなります。*/
	font-size: 3.8vw;	/*文字サイズ。画面幅に対する単位です。*/
}

.linestyle {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*pタグ。小文字の説明文。*/
#mainimg #text p.text {
	font-size: 20px;		/*文字サイズ*/
	margin: 0 250px 0px 0px;	/*上、左右、下へのpタグ内の余白*/
	color: rgba(0,0,0,0.76);
}

#mainimg #text p.text span {
	font-weight: 500;
	font-size: 3.8vw;
	margin: 0px 0px 0px -10px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	color: rgba(48,16,249,0.71);
}


/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;}

/*メニューを非表示にしておく*/
#menubar {display: none;}

/*開閉用のスタイル*/
#menubar.db {display: block;}
#menubar.dn {display: none;}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block;text-decoration: none;
	text-align: center;		/*テキストを中央に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	padding: 10px;			/*メニュー内の余白*/
}


/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 70px 20px;	/*上下、左右へのブロック内の余白*/
	background: rgba(0,0,0,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
	text-align: center;	/*内容をセンタリング*/
	color: #fff;		/*文字色*/
}
.s #menubar.db a {
	display: block;
	color: #fff;	/*リンクテキストの文字色*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 5px;			/*右からの配置場所指定*/
	top: 48px;			/*上からの配置場所指定*/
	padding: 16px 14px;	/*上下、左右への余白*/
	width: 46px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: rgba(0,0,0,0.5);	/*背景色*/
	border-radius: 50%;				/*円形にする*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	padding-top: 50px;
}

/*mainブロック内のh2タグ*/
main h2 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	line-height: 1.5;		/*行間を少し狭く*/
	font-size: 3em;			/*文字サイズ。3倍。*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる設定*/
	color: #555;			/*文字色*/
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 400;		/*文字の太さ*/
}

/*h2内のsupanタグ。小文字部分です。*/
main h2 span {
	display: block;
	font-weight: normal;
	color: #555;		/*文字色*/
	font-size: 13px;	/*文字サイズ*/
}

/*mainブロック内のh3タグ*/
main h3 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	color: #555;			/*文字色*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}
main p + p {margin-top: -15px;}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.7rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	background: #111;		/*背景色*/
	color: #fff;			/*文字色*/
}

/*リンクテキスト*/
footer a {text-decoration: none;color: #fff;}

/*著作部分*/
footer .pr {display: block;}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #333;	/*背景色*/
	color: #999;		/*文字色*/
	font-size: 0.5em;	/*文字サイズ*/
	padding: 10px;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #999;	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #ccc;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
	padding-left: 10px;
}

#footermenu ul li {
	padding-left: 10px; /* 適切な間隔を指定 */
  }

/*title*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #ccc;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}
li.title {
	display: flex;
}
.footer-menu {
	display: flex;
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}


/*listブロック
---------------------------------------------------------------------------*/
.list-container .list {
	margin-bottom: 30px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #999;			/*文字色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	position: relative;
}

/*ボックス内のh4タグ*/
.list-container .list h4 {
	margin: 0;
	color: #666;	/*文字色*/
}
.list-container .list h4 a {
	color: #666;	/*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list-container .list p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
}

/*list内のNEWマーク*/
.list-container .list .new {
	font-size: 0.6em;		/*文字サイズ*/
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*角丸のサイズ。円形になります。*/
	text-align: center;		/*テキストをセンタリング*/
	position: absolute;
	left: -10px;			/*listブロックに対して左からの配置場所の指定*/
	top: -10px;				/*listブロックに対して上からの配置場所の指定*/
	transform: rotate(-30deg);	/*回転。まっすぐ表示させたいならこの１行を削除。*/
}


/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	display: flex;	/*flexボックスを使う指定*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 25px 0;	/*上下、左右へのボックス内の余白*/
}

.list2 div {
	flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.list2:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.list2 figure {
	width: 20%;			/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
	margin: 0;				/*デフォルトマージンを一旦リセット*/
	margin-bottom: 10px;	/*下に少し余白を作る*/
	color: #555;			/*文字色*/
}

.list2 h4 a {
	color: #555;			/*リンクテキストの文字色*/
}

.list2 h4 a:hover {
	color: #555;			/*マウスオン時の文字色*/
}

/*ボックス内のpタグ*/
.list2 p {
	margin: 0;
	font-size: 0.7em;		/*文字サイズを70%に。*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.line {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	font-size: 0.7em;	/*文字サイズを70%に。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*左右のボックス*/
dl.line dt, dl.line dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 0 5px;					/*上下、左右へのボックス内の余白*/
}

/*左のボックス*/
dl.line dt {
	width: 8em;				/*幅。8文字(em)分。*/
	background: #f0f0f0;	/*背景色*/
}
/*右のボックス*/
dl.line dd {
	width: calc(100% - 8em);	/*「8em」は上の「dl.line dt」のwidthの値です。*/
}

/*list2ブロック内でのline設定*/
.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: none;
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*画像１枚あたりの設定*/
.list-slide .list {
	margin: 10px;	/*画像の外側に空けるスペース*/
}


/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

.faq h3{
	font-size: 2em;
	text-align:center;
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
}

.cstm {
	display: flex;
	text-align: center;
}

.td {
	width: 80%;
	text-align: left;
}

dd.csimage {
	width: 20%;
	margin: 0 auto;
	padding: 0 ;
}

.csimage img {
    height: 45%; /* 画像を親要素（.csimage）の幅に合わせる */
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	border: 1px solid #e4e2d7;		/*枠線の幅、線種、色*/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq dt span {text-indent: 0;}


/*icon
---------------------------------------------------------------------------*/
.icon {
	display: inline-block;
	margin: 1px;
	line-height: 1.5;
	padding: 0px 10px;
	border: 1px solid #999;
	color: #999;
	font-weight: normal;
	font-size: 0.8em;
}
.icon.newicon {
	border-color: transparent;
	background: #f00;
	color: #fff;
}
.icon.upicon {
	border-color: transparent;
	background: #54b1ff;
	color: #fff;
}

/*btnの設定
---------------------------------------------------------------------------*/
a.btn1, a.btn2 {
	display: inline-block;
	text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 5px 30px;
	font-size: 1.2em;
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
}
a.btn1 {
	background: #ffce2b;
	color: #444;
}
a.btn2 {
	background: linear-gradient(135deg, #007acc 0%, #005fa3 100%);
	color: white;
}
.radius {
	border-radius: 100px !important;
}
a.btn1 i, a.btn2 i {
	margin-left: 20px;
}
a:hover.btn1, a:hover.btn2 {
	transform: scale(1.03);
	filter: brightness(1.1);
}
.block-2 {
	width: 80%;
}

.wpcf7-submit{
	border: unset;
	background: #308396;
	color: #fff;
	border-radius: 100px !important;
	display: inline-block;
	text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 5px 30px;
	font-size: 1.2em;
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
	cursor: pointer;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/

.cf1 {
    margin: 0 auto;
    padding: 5%;
}

.cf1 h2 {
	line-height: 1.5;		/*行間を少し狭く*/
	font-size: 3em;			/*文字サイズ。3倍。*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる設定*/
	color: #555;			/*文字色*/
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 400;
}

.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #eee;		/*背景色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
	text-align: center;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
	text-align: center;
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
	text-align: center;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: center;	/*左よせにする*/
}


/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
	background: #ffffff;
}
.bg2 {
	background: #ffffff;
}
.bg3 {
	background: #ffffff;
}
.bg3 h2 {
	color: #555;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5em;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.l {text-align: center; /* 画像を中央に配置するスタイル */  }
.t {text-align: left;}
.customer {width: 80%;text-align: left;margin: 0 auto;}
.customer-1{width: 90%;text-align: left;margin: 0 auto;}
.text-image {width: 70%;margin-bottom: 20px;}
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #4d770b !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee; border: 1px solid #ccc; border-radius: 3px;margin: 2px 0; word-break: break-all;}
.small {font-size: 0.6em; letter-spacing: normal !important;}
.large {font-size: 1.8em !important;}
.block {display: block !important;}
.sh {display: block;}
.hidden {position: absolute; top: -9999px; left: -9999px;}
.privacy .text {text-align:center; width:100% padding: 0 3%;}


/*---------------------------------------------------------------------------
ここから下は画面幅768px未満の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:767px) {

/*ロゴ*/
header #logo {
	margin: 0;
	font-size: 20px;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	width: 200px;	/*幅*/
}

/*ロゴ画像（モバイル版）*/
header #logo img {
	max-height: 35px;	/*モバイルでは少し小さく*/
}
	
section, main > article {
    margin: 0 auto;
    padding: 2%;
}

a.btn1 i, a.btn2 i {
	margin-left: 5px; 
}

#mainimg #text h2 {
    margin: 0;
    font-weight: 500;
    font-size: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#mainimg #text p.text {
	font-size: 11px;
	margin: 0;
	color: rgba(0,0,0,0.76);
}

.br-smartphone {
    display: block;
    content: "\A"; /* 改行のためのCSSコンテンツ */
    white-space: pre;
}

#mainimg #text p.text span {
    font-weight: 500;
    font-size: 3.8vw;
    margin: 0px 0px 0px 0px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: rgba(48,16,249,0.71);
}

.pc {
	margin: 10px 0;
}

.linestyle {
	font-size: 20px;
	font-weight: bold;
}

 a.btn2 {
    background: linear-gradient(135deg, #007acc 0%, #005fa3 100%);
    color: white;
}
 a.btn1, a.btn2 {
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 3px;
    padding: 0px 5px;
    font-size: 0.8em;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
}

/*c2内のh2見出し*/
.c2 h2 {
	font-size: 1.2em;
}

.text-image {
    width: 100%;
    margin-bottom: 20px;
}
	
.customer {
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.block-2 {
    width: 100%;
}
	
.csimage img {
    height: 30%; /* 画像を親要素（.csimage）の幅に合わせる */
}

.cf1 {
    margin: 0 auto;
    padding: 5% 10%;
}

.cf1 h2 {
	margin-top: 15%;
	line-height: 1.5;		/*行間を少し狭く*/
	font-size: 1.5em;			/*文字サイズ。3倍。*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる設定*/
	color: #000;			/*文字色*/
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
	
.wpcf7-form .ta1 th, .wpcf7-form .ta1 td {
    padding: 10px 5px;
    word-break: break-all;
    display: contents;
}
	
.wpcf7-form .ta1 th {
    text-align: left;
}

}

/*---------------------------------------------------------------------------
ここから下は画面幅600px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:600px) {
	.csimage img {
    height: 25%; /* 画像を親要素（.csimage）の幅に合わせる */
}
	
}

/*---------------------------------------------------------------------------
ここから下は画面幅400px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:400px) {

/*btnの設定
---------------------------------------------------------------------------*/
a.btn1, a.btn2 {
	padding: 0px 15px;
}
a.btn1 i, a.btn2 i {
	margin-left: 10px;
}
	
.csimage img {
    height: 20%; /* 画像を親要素（.csimage）の幅に合わせる */
}


/* ボタンスタイル（全デバイス共通） */
.btn-primary,
.btn-secondary {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 15px 30px !important;
	border-radius: 50px !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	transition: all 0.3s ease !important;
	cursor: pointer !important;
	border: 2px solid transparent !important;
	box-sizing: border-box !important;
}

.btn-primary {
	background: linear-gradient(135deg, #007acc 0%, #005fa3 100%) !important;
	color: white !important;
	border-color: #007acc !important;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #0066b3 0%, #004a8c 100%) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 25px rgba(0, 122, 204, 0.4) !important;
	color: white !important;
}

.btn-secondary {
	background: white !important;
	color: #007acc !important;
	border-color: #007acc !important;
}

.btn-secondary:hover {
	background: #f0f7ff !important;
	color: #005fa3 !important;
	border-color: #005fa3 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 25px rgba(0, 122, 204, 0.2) !important;
}

/* CTAボタン専用 */
.cta-buttons {
	display: flex !important;
	gap: 20px !important;
	justify-content: center !important;
	flex-wrap: wrap !important;
	margin-top: 30px !important;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
	min-width: 200px !important;
	justify-content: center !important;
}

/* アイコン付きボタン */
.btn-primary i,
.btn-secondary i {
	font-size: 1.1rem !important;
}

/* モバイル対応 */
@media (max-width: 768px) {
	.btn-primary,
	.btn-secondary {
		padding: 12px 25px !important;
		font-size: 0.95rem !important;
		width: 100% !important;
		max-width: 300px !important;
		justify-content: center !important;
	}
	
	.cta-buttons {
		flex-direction: column !important;
		align-items: center !important;
		gap: 15px !important;
	}
}

/* 追加：アイコンとボタンの色・配置強化 */

/* Font Awesomeアイコン色の確実な適用 */
.fas, .fab, .far, .fa,
i.fas, i.fab, i.far, i.fa {
	color: inherit !important;
	font-style: normal !important;
	font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Pro" !important;
}

/* 各セクションのアイコン色強制適用 */
.strength-icon i,
.product-icon i {
	color: white !important;
	font-size: 2rem !important;
}

.service-benefits li i {
	color: #28a745 !important;
	margin-right: 10px !important;
	font-size: 1.1rem !important;
}

.section-heading i,
.service-content h2 i {
	color: #007acc !important;
	font-size: 1.5rem !important;
	margin-right: 10px !important;
}

/* 実績セクションのアイコン */
.stat-item i {
	color: #007acc !important;
	font-size: 1.2rem !important;
	margin-bottom: 5px !important;
}

/* ボタン内のアイコン色 */
.btn-primary i {
	color: white !important;
	font-size: 1.1rem !important;
}

.btn-secondary i {
	color: #007acc !important;
	font-size: 1.1rem !important;
}

/* アイコンコンテナの背景とサイズ強制適用 */
.strength-icon {
	width: 80px !important;
	height: 80px !important;
	background: linear-gradient(135deg, #007acc, #005fa3) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: white !important;
	font-size: 2rem !important;
	margin: 0 auto 20px auto !important;
	position: relative !important;
}

.product-icon {
	width: 80px !important;
	height: 80px !important;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 auto 20px auto !important;
	position: relative !important;
}

/* モバイル専用アイコン調整 */
@media (max-width: 768px) {
	.strength-icon {
		width: 60px !important;
		height: 60px !important;
		font-size: 1.5rem !important;
		margin: 0 auto 15px auto !important;
	}
	
	.product-icon {
		width: 60px !important;
		height: 60px !important;
		margin: 0 auto 15px auto !important;
	}
	
	.product-icon i,
	.strength-icon i {
		font-size: 1.5rem !important;
		color: white !important;
	}
	
	.service-benefits li i {
		color: #28a745 !important;
		font-size: 1rem !important;
	}
	
	.section-heading i,
	.service-content h2 i {
		color: #007acc !important;
		font-size: 1.2rem !important;
	}
}

/* ハイライトタグとバッジの色強化 */
.highlight-tag {
	background: linear-gradient(135deg, #007acc, #005fa3) !important;
	color: white !important;
	border-radius: 20px !important;
	padding: 5px 15px !important;
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	margin: 5px !important;
	display: inline-block !important;
}

.badge.salary {
	background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%) !important;
	color: #155724 !important;
	border: 1px solid #c3e6cb !important;
}

/* 統計数値の色強化 */
.stat-number {
	font-size: 2.5rem !important;
	font-weight: bold !important;
	color: #007acc !important;
	display: block !important;
	margin-bottom: 10px !important;
}

.stat-label {
	font-size: 1rem !important;
	color: #666 !important;
}

/* 会社概要ページの実績セクション */
.company-stats .stats-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 20px !important;
	margin-top: 20px !important;
}

.company-stats .stat-item {
	text-align: center !important;
	padding: 20px !important;
	background: white !important;
	border-radius: 10px !important;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

.company-stats .stat-number {
	font-size: 2rem !important;
	font-weight: bold !important;
	color: #007acc !important;
	display: block !important;
	margin-bottom: 8px !important;
}

.company-stats .stat-label {
	font-size: 0.95rem !important;
	color: #666 !important;
}

/* モバイル用メインビュー修正 */
@media (max-width: 768px) {
	/* 基本的な調整のみ */
	#mainimg {
		background-size: cover !important;
		background-position: center !important;
	}
	
	#mainimg #text {
		left: 5% !important;
		width: 90% !important;
		margin-top: 80px !important;
	}
	
	#mainimg #text h2 {
		margin: -130px 0 0 !important;
		font-size: 3vw !important;
		line-height: 1.5 !important;
	}
	
	#mainimg #text h2 .jc,
	#mainimg #text h2 .am {
		font-size: 3.8vw !important;
	}
	
	#mainimg #text p.text {
		font-size: 3.5vw !important;
		margin: 0 0 20px 0 !important;
		line-height: 1.5 !important;
	}
	
	/* スマートフォン用改行を表示 */
	.br-smartphone {
		display: block !important;
	}
	
	.stat-number {
		font-size: 2rem !important;
	}
	
	.highlight-tag {
		font-size: 0.8rem !important;
		padding: 4px 12px !important;
		margin: 3px !important;
	}
	
	.company-stats .stats-grid {
		grid-template-columns: 1fr !important;
		gap: 15px !important;
	}
	
	.company-stats .stat-item {
		padding: 15px !important;
	}
	
	.company-stats .stat-number {
		font-size: 1.8rem !important;
	}
	
	.company-stats .stat-label {
		font-size: 0.9rem !important;
	}
}

/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}




/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 15px;	/*基準となるフォントサイズの上書き*/
}


/*2カラムブロック
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	flex-direction: row;			/*子要素を横並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	
	margin-left: -6%;
	margin-right: -6%;
}
/*画像ブロック*/
.c2 .image {
	width: 60%;
}

/*テキストブロック*/
.c2 .text {
	width: 40%;
	padding: 0 3%;
}

/*最初(左)に配置*/
.c2 .l {
	order: -1;
}

/*画像を右側に配置する場合の設定*/
.c2 .image.r {
	overflow: hidden;
	/*margin-right: -6%;	画像を画面枠ギリギリまで移動する*/
	border-radius: 100px 0px 0px 100px;	/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

/*画像を左側に配置する場合の設定*/
.c2 .image.l {
	overflow: hidden;
	/*margin-left: -6%;	画像を画面枠ギリギリまで移動する*/
	border-radius: 0px 100px 100px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}
	
.privacy .c2 {
	display: contents;
	text-align: center;
}
	
.tp {
	text-align: left; 
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*テキストブロック*/
#mainimg #text {
	width: 50%;		/*幅*/
}


/*menubarブロック設定
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	font-size: 0.85em;	/*文字サイズを少し小さくする*/
}
#menubar ul {
	display: flex;	/*flexボックスを使う指定*/
}

/*メニュー１個あたりの設定*/
#menubar a {
	padding: 10px 15px;	/*上下、左右への余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.8em;		/*文字サイズを80%に。*/
	text-align: center;		/*文字をセンタリング*/
	margin-right: 1em;		/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。サンプルテンプレートでは「サービス」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #4d770b;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}

/*ページネーション*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* 適切なマージンを指定してください */
}

.pagination a {
    text-decoration: none;
    color: rgba(48,16,249,0.71); /* リンクの色を指定してください */
    margin: 0 10px; /* ページ番号間のスペースを指定してください */
    font-weight: bold;
    font-size: 16px;
}

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

.pagination .current {
    color: #333; /* 現在のページ番号の色を指定してください */
}
/*ページネーション終了*/

/*ニュースコンテンツ*/

.cf2 {
    margin: 0 auto; 
    padding: 5% 5% 0 5%;
}

.cf2 h2 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	line-height: 1.5;		/*行間を少し狭く*/
	font-size: 3em;			/*文字サイズ。3倍。*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる設定*/
	color: #555;			/*文字色*/
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 400;		/*文字の太さ*/
}

.news_content{
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #F2F1F6;
}

.news_content_list{
    margin-top: 40px;
    background-color: #F2F1F6; 
}

.news_content_list h2{
    font-size: 20px;
    padding: 20px 0;
}

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

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

.news_content p{
    text-align: left;
    padding: 20px;
    letter-spacing: 3px;
    font-size: 20px;
}

.news_content_list p{
    text-align: left;
    padding: 20px 20px 0 20px;
    text-align: center;
    letter-spacing: 3px;
    font-size: 20px;
}

.button-container {
    text-align: center;
}

.button-container button {
    margin: 0 20px;
}

.news_content button {
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    margin-bottom: 40px;
    background: #28acca; /* 色を#308396に変更 */
    color: #fff; /* テキスト色を白に変更 */
	border-radius: 100px !important;
    width: 125px;
    height: 40px;
    border: none;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.news_content button:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.news_content_list button{
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 30px;
    background: #308396;
    text-decoration-color: #555;
    border-radius: 7px;
    width: 135px;
    height: 40px;
    border: none;
}

.news_content a{
    color: #555;
    text-decoration: none;
}

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

/*ニュースコンテンツ終了*/

/*リターンボタン*/
.cf3 {
    margin: 0 auto; 
    padding: 0 5% 5%;
}

.return{
    text-align: right;
}

.return a{
    color: #fff;
    text-decoration: none;
}
/*リターンボタン終了*/

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8em;	/*文字サイズ*/
	padding: 20px 50px;	/*上下、左右へのボックス内の余白*/
}


/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
}

/*１個あたりのボックス設定*/
.list-container .list {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 32%;						/*幅。３列になります。*/
	margin-right: 2%;
}

.list-container .list:nth-of-type(3n) {
	margin-right: 0;
}

/*ボックス内のtextブロック*/
.list-container .list .text {
	flex: 1;
}


/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	padding-left: 10px;	/*ボックス内の左側にだけ余白を作る*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*list2ブロック内でのline設定*/
.list2 dl.line dd {
	width: calc(50% - 8em - 10px);	/*大きな端末向けの再設定。２列にしたいので、100%でなく半分の50%から引いています。*/
	margin-right: 10px;				/*２列になった際の間のスペース*/
}

.list2 dl.line {border-top: none;}

.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: 1px solid #ccc;
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}
.sh {display: none;}
.pc {display: inline-block;}
.privacy .text {text-align:center; width:100% padding: 0 3%;}

/*新しいデザインシステム
---------------------------------------------------------------------------*/
/* 共通設定の上書き */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
	color: #333 !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ヘッダー */
.main-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 70px;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

.nav-menu li a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	padding: 10px 0;
	position: relative;
}

.nav-menu li a:hover {
	color: #007acc;
}

.nav-menu li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #007acc;
	transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
	width: 100%;
}

/* ヒーローセクション */
#hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	margin-top: 70px;
	color: white;
	text-align: center;
	overflow: hidden;
}

#hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(http://eight-link.net/wp-content/uploads/2025/06/24232596_s-pica.png) no-repeat center center / cover;
	opacity: 0.2;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 20px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.highlight-1 {
	color: #ffce2b;
}

.highlight-2 {
	color: #54b1ff;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 400;
	opacity: 0.9;
}

.hero-description {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.8;
}

.hero-emphasis {
	font-weight: 700;
	color: #ffce2b;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ボタン */
.btn-primary,
.btn-secondary,
.btn-more {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
	text-align: center;
	min-width: 200px;
}

.btn-primary {
	background: linear-gradient(135deg, #007acc 0%, #005fa3 100%);
	color: white;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 122, 204, 0.4);
	background: linear-gradient(135deg, #005fa3 0%, #007acc 100%);
}

.btn-secondary {
	background: white;
	color: #007acc;
	border-color: #007acc;
}

.btn-secondary:hover {
	background: #007acc;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 122, 204, 0.2);
}

.btn-more {
	background: linear-gradient(135deg, #ffce2b 0%, #fdb813 100%);
	color: #333;
}

.btn-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(253, 184, 19, 0.4);
	background: linear-gradient(135deg, #fdb813 0%, #ffce2b 100%);
}

/* セクション */
main {
}

.page-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
	padding: 100px 0;
	margin-top: 0;
}

.page-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.page-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	font-weight: 400;
}

.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #333;
	font-weight: 700;
}

.section-heading {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #333;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-heading i {
	color: #007acc;
}

/* 証言カード */
.testimonial-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.testimonial-header {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.customer-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.customer-info h4 {
	margin-bottom: 0.5rem;
	color: #333;
}

.customer-details {
	color: #666;
	margin-bottom: 1rem;
}

.success-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.badge {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

.badge.salary {
	background: #e8f5e8;
	color: #2e7d32;
}

.badge.location {
	background: #e3f2fd;
	color: #1976d2;
}

.badge.position {
	background: #fff3e0;
	color: #f57c00;
}

.testimonial-content blockquote {
	font-style: italic;
	margin: 0 0 1rem;
	padding: 0;
	border-left: 4px solid #007acc;
	padding-left: 20px;
	color: #555;
}

/* 統計 */
.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #007acc;
	margin-bottom: 0.5rem;
}

.stat-label {
	display: block;
	color: #666;
	font-size: 0.9rem;
}

.testimonial-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 40px 0;
}

/* サービスグリッド */
.services-grid,
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.service-card,
.product-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	text-align: center;
}

.service-card:hover,
.product-card:hover {
	transform: translateY(-5px);
}

.product-icon {
	margin-bottom: 1rem;
}

.product-icon i {
	font-size: 3rem;
	color: #007acc;
}

.product-card h4 {
	margin-bottom: 1rem;
	color: #333;
}

/* サービス分割レイアウト */
.service-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin: 60px 0;
}

.service-split.reverse {
	direction: rtl;
}

.service-split.reverse > * {
	direction: ltr;
}

.service-content h2 {
	text-align: left;
	margin-bottom: 1rem;
}

.service-content h3 {
	color: #333;
	margin-bottom: 1rem;
}

.service-benefits ul {
	list-style: none;
	padding: 0;
}

.service-benefits li {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-benefits i {
	color: #28a745;
	width: 16px;
}

.service-image img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA */
.cta-section {
	text-align: center;
	padding: 60px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 15px;
	margin-top: 60px;
}

.cta-content h2,
.cta-content h3,
.cta-section h3 {
	color: white;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 2rem;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* フッター */
.main-footer {
	background: #2c3e50;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	color: white;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.footer-section h4 {
	color: #bdc3c7;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 500;
}

.footer-description {
	color: #bdc3c7;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.footer-contact p {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-contact i {
	color: #3498db;
	width: 16px;
}

.footer-contact a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact a:hover {
	color: #3498db;
}

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

.footer-menu li {
	margin-bottom: 0.5rem;
}

.footer-menu a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-menu a:hover {
	color: #3498db;
}

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

.services-list li {
	color: #bdc3c7;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #34495e;
	color: #bdc3c7;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-links a:hover {
	background: #3498db;
	color: white;
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid #34495e;
	padding-top: 20px;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom small {
	color: #95a5a6;
	font-size: 0.9rem;
}

.footer-bottom a {
	color: #bdc3c7;
	text-decoration: none;
}

.footer-bottom a:hover {
	color: #3498db;
}

.footer-links {
	display: flex;
	gap: 20px;
}

.footer-links a {
	color: #95a5a6;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #3498db;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}
	
	.page-hero {
		padding: 80px 0;
	}
	
	.page-title {
		font-size: 2.2rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.section-heading {
		font-size: 1.5rem;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-primary,
	.btn-secondary,
	.btn-more {
		min-width: auto;
		width: 100%;
		padding: 12px 25px;
	}
	
	.testimonial-header {
		flex-direction: column;
		text-align: center;
	}
	
	.service-split {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.services-grid,
	.products-grid {
		grid-template-columns: 1fr;
	}
	
	.testimonial-stats {
		flex-direction: column;
		gap: 20px;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-links {
		flex-direction: column;
		gap: 10px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

/* プライバシーポリシーページのスタイル */
.policy-section h2 {
	text-align: left;
}

/* 事業紹介ページのカードレイアウト */
.service-intro-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	margin-bottom: 40px;
}

.info-cards-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.info-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
	color: #007acc;
	margin-bottom: 20px;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.stat-item {
	text-align: center;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 10px;
}

.stat-number {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	color: #007acc;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
}

.strengths-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.strength-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.strength-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #007acc, #005fa3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.strength-content h4 {
	margin: 0 0 8px 0;
	color: #333;
	font-size: 1.1rem;
}

.strength-content p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

.success-content p {
	margin-bottom: 15px;
	line-height: 1.7;
}

.success-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.highlight-tag {
	background: linear-gradient(135deg, #007acc, #005fa3);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

/* お問い合わせページのフォーム調整 */
.contact-form-section {
	margin: 40px 0;
}

.contact-form-section .wpcf7 {
	max-width: 100%;
}

.contact-form-section .wpcf7-form {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-section .wpcf7-form-control {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.contact-form-section input[type="text"],
.contact-form-section input[type="email"],
.contact-form-section input[type="tel"],
.contact-form-section textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	box-sizing: border-box;
	margin-bottom: 15px;
}

.contact-form-section textarea {
	min-height: 120px;
	resize: vertical;
}

.contact-form-section input[type="submit"] {
	background: linear-gradient(135deg, #007acc 0%, #005fa3 100%);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact-form-section input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 122, 204, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.info-cards-section {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.strength-item {
		flex-direction: column;
		text-align: center;
	}
	
	.success-highlights {
		justify-content: center;
	}
	
	.contact-form-section .wpcf7-form {
		padding: 20px;
	}
	
	.contact-cards-section {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* お問い合わせカードレイアウト */
.contact-cards-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 40px 0;
}

.contact-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card i {
	font-size: 2.5rem;
	color: #007acc;
	margin-bottom: 20px;
	display: block;
}

.contact-card h4 {
	color: #333;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.contact-card p {
	margin: 8px 0;
	color: #666;
}

.contact-card a {
	color: #007acc;
	text-decoration: none;
	font-weight: 600;
}

.contact-card a:hover {
	text-decoration: underline;
}

/* ページ専用CSS */
.page-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
	color: white !important;
	text-align: center !important;
	padding: 80px 0 60px !important;
	margin: 0 !important;
}

.page-hero .page-title {
	font-size: 2.5rem !important;
	margin-bottom: 15px !important;
	color: white !important;
	font-weight: 700 !important;
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", sans-serif !important;
}

.page-hero .page-subtitle {
	font-size: 1.2rem !important;
	opacity: 0.9 !important;
	color: white !important;
	margin: 0 !important;
	font-weight: 400 !important;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.company-overview,
.customer-testimonials,
.introduction-content {
	padding: 60px 0;
}

.company-info-grid,
.testimonials-section,
.service-overview {
	margin: 40px 0;
}

.info-card,
.testimonial-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
}

.company-table th,
.company-table td {
	padding: 12px;
	border-bottom: 1px solid #eee;
	text-align: left;
}

.company-table th {
	background: #f8f9fa;
	font-weight: 600;
	width: 30%;
}

.testimonial-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 40px 0;
}

.stat-item {
	text-align: center;
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: #007acc;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
}

.success-badges {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.badge {
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.badge.salary {
	background: #e8f5e8;
	color: #2d5a2d;
}

.badge.location {
	background: #e3f2fd;
	color: #1565c0;
}

.section-heading {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* お客様の声プレミアムスタイル（全デバイス共通） */
.testimonial-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
	border: 1px solid #e9ecef;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #007acc, #005fa3);
}

.testimonial-header {
	padding: 30px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-bottom: 1px solid #e9ecef;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.customer-avatar {
	position: relative;
	flex-shrink: 0;
}

.customer-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid #007acc;
	box-shadow: 0 4px 12px rgba(0, 122, 204, 0.3);
	object-fit: cover;
}

.customer-avatar::after {
	content: '✓';
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 28px;
	height: 28px;
	background: #28a745;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	border: 3px solid white;
}

.customer-info {
	flex: 1;
	min-width: 0;
}

.customer-info h4 {
	font-size: 1.4rem;
	margin-bottom: 10px;
	color: #333;
	font-weight: 700;
	line-height: 1.3;
}

.customer-details {
	font-size: 1rem;
	margin-bottom: 15px;
	color: #666;
	font-weight: 500;
}

.success-badges {
	display: flex;
	gap: 10px;
	margin-top: 15px;
	flex-wrap: wrap;
}

.badge {
	padding: 8px 16px;
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.badge.salary {
	background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
	color: #155724;
	border: 1px solid #c3e6cb;
}

.badge.location {
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	color: #0d47a1;
	border: 1px solid #90caf9;
}

.badge.position {
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	color: #856404;
	border: 1px solid #ffd93d;
}

.badge.property {
	background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
	color: #4a148c;
	border: 1px solid #ce93d8;
}

.badge.income {
	background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
	color: #155724;
	border: 1px solid #c3e6cb;
}

.badge.benefit {
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	color: #856404;
	border: 1px solid #ffd93d;
}

.badge.investment {
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	color: #0d47a1;
	border: 1px solid #90caf9;
}

.badge.growth {
	background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
	color: #155724;
	border: 1px solid #c3e6cb;
}

.testimonial-content {
	padding: 30px;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #555;
	position: relative;
}

.testimonial-content::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: #007acc;
	opacity: 0.3;
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-content blockquote {
	margin: 0 0 20px 30px;
	padding: 0;
	font-style: italic;
	position: relative;
	z-index: 1;
}

.testimonial-content p {
	margin: 0;
	padding-left: 30px;
	position: relative;
	z-index: 1;
}

.cta-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
	padding: 60px 40px;
	border-radius: 20px;
	margin-top: 60px;
}

.cta-section h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: white;
}

.cta-section p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* アイコンスタイル（グローバル） */
.fas, .fab, .far, .fa {
	color: inherit !important;
}

.strength-icon i,
.product-icon i,
.service-benefits i {
	color: inherit !important;
}

/* 統合されたモバイルレスポンシブ対応 */
@media (max-width: 768px) {
	/* 基本レイアウト */
	.container {
		padding: 0 15px !important;
	}
	
	/* ページヒーロー */
	.page-hero {
		padding: 60px 0 40px !important;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
		color: white !important;
		text-align: center !important;
		margin: 0 !important;
	}
	
	.page-hero .page-title {
		font-size: 2rem !important;
		line-height: 1.3 !important;
		color: white !important;
		font-weight: 700 !important;
		margin-bottom: 15px !important;
		font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", sans-serif !important;
	}
	
	.page-hero .page-subtitle {
		font-size: 1rem !important;
		line-height: 1.5 !important;
		color: white !important;
		opacity: 0.9 !important;
		margin: 0 !important;
		font-weight: 400 !important;
	}
	
	/* セクション */
	.company-overview,
	.customer-testimonials,
	.introduction-content {
		padding: 40px 0 !important;
	}
	
	/* 統計とテーブル */
	.testimonial-stats {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
		margin: 30px 0 !important;
	}
	
	.stat-item {
		padding: 20px !important;
	}
	
	.stat-number {
		font-size: 1.8rem !important;
	}
	
	.company-table {
		font-size: 0.9rem !important;
		display: block !important;
		width: 100% !important;
		overflow-x: auto !important;
		white-space: nowrap !important;
	}
	
	.company-table th,
	.company-table td {
		padding: 10px 8px !important;
		vertical-align: top !important;
		white-space: normal !important;
	}
	
	.company-table th {
		width: 35% !important;
		min-width: 100px !important;
	}
	
	/* カードとバッジ */
	.info-card,
	.testimonial-card {
		padding: 25px 20px !important;
		margin-bottom: 20px !important;
		background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
		border: 2px solid #e9ecef !important;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
		border-radius: 20px !important;
		overflow: hidden !important;
		position: relative !important;
	}
	
	.testimonial-card::before {
		content: '' !important;
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		height: 4px !important;
		background: linear-gradient(90deg, #007acc, #005fa3) !important;
		z-index: 2 !important;
	}
	
	.success-badges {
		flex-direction: row !important;
		flex-wrap: wrap !important;
		gap: 6px !important;
		justify-content: flex-start !important;
	}
	
	.badge {
		padding: 6px 12px !important;
		font-size: 0.75rem !important;
		border-radius: 15px !important;
		text-align: center !important;
		font-weight: 700 !important;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
		border: 1px solid !important;
	}
	
	.badge.salary {
		background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%) !important;
		color: #155724 !important;
		border-color: #c3e6cb !important;
	}
	
	.badge.location {
		background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
		color: #0d47a1 !important;
		border-color: #90caf9 !important;
	}
	
	.badge.position {
		background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%) !important;
		color: #856404 !important;
		border-color: #ffd93d !important;
	}
	
	.badge.property {
		background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%) !important;
		color: #4a148c !important;
		border-color: #ce93d8 !important;
	}
	
	.badge.income {
		background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%) !important;
		color: #155724 !important;
		border-color: #c3e6cb !important;
	}
	
	.badge.benefit {
		background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%) !important;
		color: #856404 !important;
		border-color: #ffd93d !important;
	}
	
	.badge.investment {
		background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
		color: #0d47a1 !important;
		border-color: #90caf9 !important;
	}
	
	.badge.growth {
		background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%) !important;
		color: #155724 !important;
		border-color: #c3e6cb !important;
	}
	
	/* 見出しとテキスト */
	.section-heading {
		font-size: 1.3rem !important;
		margin-bottom: 25px !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 5px !important;
		color: #333 !important;
		display: flex !important;
	}
	
	.section-heading i {
		font-size: 1.5rem !important;
		color: #007acc !important;
		margin-right: 10px !important;
	}
	
	.company-intro h2,
	.intro-section h2 {
		font-size: 1.8rem !important;
		margin-bottom: 20px !important;
		text-align: center !important;
	}
	
	.company-message,
	.intro-text {
		font-size: 1rem !important;
		line-height: 1.7 !important;
		margin-bottom: 25px !important;
	}
	
	/* 事業紹介ページ */
	.service-split {
		display: block !important;
	}
	
	.service-content,
	.service-image {
		width: 100% !important;
		margin-bottom: 30px !important;
	}
	
	.service-benefits ul {
		padding-left: 20px !important;
	}
	
	.service-benefits li {
		margin-bottom: 10px !important;
		font-size: 0.95rem !important;
	}
	
	/* お客様の声 */
	.testimonial-header {
		padding: 25px 20px 15px !important;
		gap: 15px !important;
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
		border-bottom: 1px solid #e9ecef !important;
	}
	
	.customer-avatar img {
		width: 70px !important;
		height: 70px !important;
		border-radius: 50% !important;
		border: 3px solid #007acc !important;
		box-shadow: 0 4px 12px rgba(0, 122, 204, 0.3) !important;
	}
	
	.customer-avatar::after {
		content: '✓' !important;
		position: absolute !important;
		bottom: -2px !important;
		right: -2px !important;
		width: 24px !important;
		height: 24px !important;
		font-size: 12px !important;
		border: 2px solid white !important;
		background: #28a745 !important;
		color: white !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-weight: bold !important;
		z-index: 3 !important;
	}
	
	.customer-info h4 {
		font-size: 1.2rem !important;
		margin-bottom: 8px !important;
		color: #333 !important;
		font-weight: 700 !important;
	}
	
	.customer-details {
		font-size: 0.9rem !important;
		margin-bottom: 12px !important;
		color: #666 !important;
	}
	
	.testimonial-content {
		padding: 20px !important;
		font-size: 1rem !important;
		line-height: 1.7 !important;
		color: #555 !important;
		position: relative !important;
	}
	
	.testimonial-content::before {
		content: '"' !important;
		position: absolute !important;
		top: -5px !important;
		left: 15px !important;
		font-size: 3rem !important;
		color: #007acc !important;
		opacity: 0.3 !important;
		font-family: Georgia, serif !important;
		line-height: 1 !important;
	}
	
	.testimonial-content blockquote {
		margin: 0 0 15px 25px !important;
		padding: 0 !important;
		font-style: italic !important;
		position: relative !important;
		z-index: 1 !important;
	}
	
	.testimonial-content p {
		margin: 0 !important;
		padding-left: 25px !important;
		position: relative !important;
		z-index: 1 !important;
	}
	
	/* CTA セクション */
	.cta-section {
		padding: 40px 20px !important;
		margin-top: 40px !important;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
		color: white !important;
		text-align: center !important;
		border-radius: 20px !important;
	}
	
	.cta-section h3 {
		font-size: 1.6rem !important;
		color: white !important;
		margin-bottom: 20px !important;
	}
	
	.cta-section p {
		font-size: 1rem !important;
		color: white !important;
		opacity: 0.9 !important;
		margin-bottom: 40px !important;
	}
	
	.cta-buttons {
		flex-direction: column !important;
		align-items: center !important;
		gap: 15px !important;
	}
}