@charset "utf-8";


/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #454545;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 150%;		/*行間*/
	background-repeat: repeat-x;
	background: #eef5fc;	/*背景色*/
	background-image: url(../images/common/bg_res.gif); 
	-webkit-text-size-adjust: none;
	background-position:center;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;}
a img:hover {opacity: 0.7;}/*マウスオン時に画像を半透明にする設定。0.7は70%の透明度の意味。*/
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #619704;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #4deaf3;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #000;	/*背景色*/
	text-align:  center;	/*中身をセンタリング*/
	padding: 10px 0px 0px 0px;	/*上下、左右への余白*/

    top: 0; 
}
/*ロゴ画像*/
header #logo {
	width: 350px;	/*ロゴ画像の幅*/
	margin: 0 auto;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar,
#menubar-s {
	overflow: hidden;
	background: #47494e;	/*背景色（古いブラウザ用）*/
	background: -webkit-linear-gradient(#333, #55555 20px);	/*グラデーション*/
	background: linear-gradient(#333, #414349 20px);			/*同上*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 15px 0px;	/*上下・左右への余白*/
	margin-bottom: 20px;
	-webkit-box-shadow: 0px 5px 15px rgba(0,0,0,0.2);	/*影の設定。右へ・下へ・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 5px 15px rgba(0,0,0,0.2);			/*同上*/
}
/*メニューブロック（トップページ用）*/
#top #menubar {
	padding-bottom: 15px;	/*メイン画像を重ねる分、ここを調整する*/
	margin-bottom: 0px;
}
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	display: inline;
	letter-spacing: 0.4em;	/*文字間隔を広くとる設定*/
}
#menubar li a,
#menubar-s li a {
	text-decoration: none;
	color: #fff;	/*文字色*/
	padding: 10px 20px;	/*上下・左右にあける余白*/
	text-shadow: 1px 1px rgba(0,0,0,0.4);	/*テキストの影。下へ・右へ・色(rgba)の設定。*/
}
/*マウスオン時*/
#menubar li a:hover {
	background: #4deaf3;	/*背景色*/
	border-radius: 4px;		/*角丸のサイズ*/
	color: #fff;	/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*メインイメージ
---------------------------------------------------------------------------*/
#mainimg {
	margin: 0 auto;
	background-color:#FFF;
	width: 1000px;	/*幅*/
	margin-top: 15px;
	margin-bottom: 25px;
}
#mainimg img {
	vertical-align: bottom;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	width: 1000px;	/*幅*/
	margin: 0 auto;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	
	width: 700px;	/*幅*/
	overflow: hidden;
	margin-top:5px;
}
/*１カラム時のmainコンテンツ*/
.c1 #main {
	float: none;
	width: 100%;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	color: #FFF;		/*文字色*/
	padding: 5px 15px;	/*上下、左右への余白*/
	background: #0f1033;	/*背景色（古いブラウザ用）*/
}
/*mainコンテンツのh2タグの１文字目への設定*/
#main h2::first-letter {
	border-left: 3px solid #4deaf3;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #c9d8f0;
	padding-top:2px;
	padding-bottom:2px;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 10px 14px;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}

#main h4 {
	font-size:20px;
	line-height:26px;
	color:#FFF;
	font-weight:bold;
	padding: 5px 0px 0px 0px;
	line-height:24px;
}

#main h5:before {
	content:"\002714\00a0";
	color:#cf0c0c;
}


/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの共通設定*/
#main section.list {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f5f5f5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #f5f5f5);										/*同上*/
	background: linear-gradient(#FFF, #f5f5f5);												/*同上*/
	position: relative;
	overflow: hidden;
}
#main section.list a {
	padding: 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;		/*写真の右側に空ける余白*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-bottom: 0.5em;		
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main section.list h4::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*マウスオン時のボックス*/
#main section.list a:hover {
	background: #fff;	/*背景色*/
}
/*コンパクトタイプの設定*/
#main section.list.compact {
	width: 23%;	/*compactタイプの幅*/
	float: left;
	margin-left: 1.3%;
}
#main section.list.compact a {
	height: 220px;	/*compactタイプの高さ*/
}
/*コンパクトタイプの段落タグ設定*/
#main section.list.compact p {
	margin: 0;
	font-size: 11px;	/*compactタイプの文字サイズ*/
	line-height: 1.4;
	margin-bottom: 5px;
}
/*コンパクトタイプの写真設定*/
#main section.list.compact figure img {
	float: none;
	width: 90%;
	margin: 0;
}
#main section.list.compact figure {
	text-align: center;
}
/*コンパクトタイプのh4タグ設定*/
#main section.list.compact h4 {
	font-size: 12px;
	border: none;
	line-height: 1.2;
}
/*コンパクトタイプのh4タグの１文字目への設定*/
#main section.list.compact h4::first-letter {
	border: none;
	padding: 0;
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	font-size: 12px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	width: 75%;
	margin-bottom: 5px;
}
#main section.list table,
#main section.list table td,
#main section.list table th{
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
#main section.list table td,
#main section.list table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main section.list table th{
	width: 18%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #dfe0c8;	/*背景色*/
}
/*白い説明用ブロック*/
#main section.list table td {
	width: 31%;	/*幅*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*左に回り込み*/
	width: 250px;	/*幅*/
}
/*１カラム時のsubコンテンツ*/
.c1 #sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	background: #070161;	/*背景色*/
	text-align: center;	/*文字をセンタリング*/
	color: #fff;	/*文字色*/
	margin: 0px;
	padding: 5px 0px;	/*上下、左右への余白*/
	border-radius: 0px 0px 0px 0px;	/*左上、右上、右下、左下への角丸設定*/
}
#sub h3 {
	font-size: 100%;
	background: #999;	/*背景色*/
	text-align: center;	/*文字をセンタリング*/
	color: #fff;	/*文字色*/
	margin: 2px 10px;
	padding: 0px 0px;	/*上下、左右への余白*/
	border-radius: 0px 0px 0px 0px;	/*左上、右上、右下、左下への角丸設定*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
    border-bottom: 1px solid #b0c5e1;	/*下線の幅、線種、色*/
	text-align: center;
}
#sub ul.submenu li:first-child {
	border-top: 1px solid #b0c5e1;	/*上の幅の、線種、色*/
}
#sub ul.submenu li a {
	text-decoration: none;
	color:#333;
	display: block;
	padding: 15px 20px;	/*メニュー内の余白。上下、左右への設定。*/
	background: #f1f6fd;	/*背景色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #ffffff;		/*背景色*/
}
/*box1内のh2タグ*/
#sub .box1 h2 {
	margin: 0px 0px 10px;	/*上、左右、下への余白*/
	border-radius: 0px;		/*角丸のサイズ*/
	-webkit-box-shadow: 0px 5px 5px rgba(0,0,0,0.1);	/*影の設定。右へ・下へ・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 5px 5px rgba(0,0,0,0.1);			/*同上*/
}
/*box1内のpタグ*/
#sub .box1 p {
	padding: 5px 10px 10px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	font-size:14px;
	padding: 10px 0px;
	background: #000;	/*背景色*/
	color: #fff;	/*文字色*/
}
footer a {
	text-decoration: none;
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
	height: 170px;
	overflow: auto;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #e5eef3;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*画像*/
.ta1 img {
	vertical-align: bottom;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #ccc;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 25px;	/*角丸のサイズ*/
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	margin-bottom: 30px;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*FAQ・LINK共通設定
---------------------------------------------------------------------------*/
.faq, 
.link {
	padding: 0px 15px;
}
/*質問（又はサイト名）の設定*/
.faq dt,
.link dt {
	color: #000;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
/*回答（又は説明部分）の設定*/
.faq dd,
.link dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

hr {
   border-width: 1px 0px 0px 0px; /* 太さ1px */
   border-style: dashed; /* 線種を破線に */
   border-color: #60a5e0;
   height: 2px;         /* 高さ(※古いIE用) */
   margin-bottom:20px;
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #ee1d00;}
.fnt22 {font-size:22px;}
.red {
	color:#dc3535;
}
.green{ color:#390;
font-size:22px;
font-weight:bold;
margin-top:10px;}

.gold{ color:#c1ab05;
font-size:22px;
font-weight:bold;
margin-top:10px;}

.green2{ color:#390;
font-size:16px;
margin-top:10px;}
.blue {
	color:#203ec0;
	font-weight:bold;
	font-size:22px;
 line-height:120%;
 font-style:normal;
 text-decoration: underline;
}
.blue2 { color:#5787f4;
font-weight:bold;
font-size:18px;
}
.navy {color: #040483;
       font-weight:bold;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.big5 {font-size: 28px;}
.mini1 {font-size: 14px;}

.bgbk {	
    padding: 10px 20px 10px 0px;
	color:#e9e8f4;
	line-height:36px;
	background-color: #000000;}	
.bgnv {	
    padding: 10px 0px 10px 0px;
	color:#e9e8f4;
	background-color: #006;}	
.bgbu {	
    padding: 10px 20px 10px 0px;
	background-color: #1157bf;
	color:ffffff;}
.bggr {	
    padding: 10px 20px 10px 0px;
	background-color: #057187;
	color:ffffff;}			
.bgor {	
    padding: 10px 20px 10px 0px;
	background-color: #e95d29	;
	color:ffffff;}	
.bgbr {	
    padding: 10px 20px 10px 0px;
	background-color:#0099CC;
	color:ffffff;}		
.spr1{margin-right:20px;}
.spl1{margin-left:20px;}
.tel {
	font-size: 24px;
	font-weight: bold;
	color: #203ec0;
	padding-top: 15px;
}
.taiken_u{ 
background-image:url(../images/common/taiken_u.gif);
background-repeat:no-repeat;
width:670px;
height:90px;
color:#ffffff;
padding-left:40px;
padding-top:20px;
font-size:16px;
font-weight:bold}
.img01{ width:auto;}

/*画面幅800px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar-s {
	padding: 0px;
	margin-bottom: 0px;
}
/*メニューブロック（トップページ用）*/
#top #menubar {
	padding-bottom: 0px;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	display: block;
	float: left;
	width: 50%;
	border-bottom: 1px solid #24244b;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#menubar-s li:nth-child(odd) {
	border-right: 1px solid #24244b;	/*奇数番目のメニューのみ右側に線をいれる*/
}
#menubar-s li a {
	display: block;
	width: 100%;
	padding: 15px 0px;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 10px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*メインイメージ
---------------------------------------------------------------------------*/
#mainimg {
	width: auto;
	margin-top: 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 10px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #0f1033 url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: #0f1033 url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*その他
---------------------------------------------------------------------------*/




/*画面幅480px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 0px;
}
/*ロゴ画像*/
header #logo {
	width: 70%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	width: 100%;
	float: none;
	border-right: none !important;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	position: absolute;
	top: 4px;
	right: 3px;
}

/*メインイメージ
---------------------------------------------------------------------------*/
#mainimg {
	border: none;
	margin-bottom: 10px;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	margin: 10px;
}

/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;
}
/*コンパクトタイプの設定*/
#main section.list.compact {
	width: 48%;
}
/*コンパクトタイプの写真設定*/
#main section.list.compact figure img {
	width: 100%;
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	width: 100%;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
.taiken_u{ 
background-image:url(../images/common/taiken_u.gif);
background-repeat:no-repeat;
width:auto;
height:110px;
color:#ffffff;
padding-left:40px;
padding-top:10px;
font-size:16px;
font-weight:bold}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 90%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}

.testimonial-link {
  color: #007bff;
  text-decoration: none;
}

.testimonial-link:hover {
  text-decoration: underline;
}


.highlight {
  font-size: 18px; /* フォントサイズを大きく */
  font-weight: bold; /* 太字に */
  margin-bottom: 10px; /* 下部のマージンを追加 */
}

.testimonial {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-photo {
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    margin-right: 15px;
    flex-shrink: 0 !important;
}

.testimonial-content {
    max-width: 100%;
}

/* デスクトップ向けスタイル */
@media screen and (min-width: 801px) {
    .testimonial-photo {
        width: 40px; /* デスクトップでも40pxに設定 */
        height: 40px; /* デスクトップでも40pxに設定 */
    }
}

/* モバイル端末向けの調整 */
@media screen and (max-width: 800px) {
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-photo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .testimonial-content {
        text-align: left;
    }
}


/* ======================== 改良CSS：視認性・信頼感向上 ======================== */

/* 全体フォントと行間改善 */
body {
  font-size: 17px;
  line-height: 1.8;
  color: #2a2a2a;
  background: #f6f9fc;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

/* セクション見出し改善 */
#main h2 {
  font-size: 22px;
  color: #fff;
  background: #0f1033;
  padding: 10px 20px;
  margin: 40px 0 20px;
  border-left: 8px solid #4CAF50;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#main h2::first-letter {
  border: none;
  padding: 0;
}

/* h3も強調 */
#main h3 {
  background: #d0e8ff;
  padding: 8px 15px;
  border-left: 6px solid #0f1033;
  font-size: 18px;
  color: #0a0a0a;
}

/* CTAボタン（強調） */
.cta-button {
  background: #e53935;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
  margin-top: 15px;
}
.cta-button:hover {
  background: #c62828;
}

/* 囲みボックス（注目ポイント用） */
.box-note {
  background: #fff8e1;
  border-left: 6px solid #ffb300;
  padding: 12px 15px;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
}

/* testimonial block の強調 */
.testimonial {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.testimonial-content p {
  margin: 0;
  font-size: 15px;
  color: #444;
}

/* 体験者名の見出し */
.testimonial-content .navy {
  font-size: 14px;
  font-weight: bold;
  color: #1a237e;
  margin-bottom: 6px;
  display: block;
}

/* モバイル対応 */
@media screen and (max-width: 800px) {
  body {
    font-size: 15px;
    padding: 10px;
  }
  .cta-button {
    width: 100%;
    text-align: center;
  }
  .testimonial {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-content {
    text-align: left;
  }
}

.impact-section {
  background: #fdfdfd;
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.impact-headline {
  font-size: 26px;
  color: #d32f2f;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}

.impact-lead {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
}

.impact-box {
  background: #fff8e1;
  border-left: 6px solid #ffc107;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.7;
}

.impact-box .highlight-text {
  font-size: 20px;
  font-weight: bold;
  color: #e65100;
  margin-top: 15px;
}

.impact-box .highlight-text span {
  background: #ffe082;
  padding: 2px 6px;
  border-radius: 4px;
}

.impact-strong {
  font-size: 18px;
  color: #0d47a1;
  font-weight: bold;
  margin: 30px 0 15px;
  line-height: 1.6;
}

.impact-tech {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}
.impact-tech span {
  color: #d50000;
  font-weight: bold;
}
