@charset "utf-8";
/* CSS Document */

h2{
	background-image:url(../img/index/title.jpg);
	background-repeat:no-repeat;
	background-size: cover;
	margin:0;
	padding:80px 0 80px 0;
	text-shadow:
    2px 2px 0 #4A8220,
    -2px 2px 0 #4A8220,
    -2px -2px 0 #4A8220,
    2px -2px 0 #4A8220;
}


h3{
	font-size:16px;
	margin-bottom:5px;
}


h4 {
    width: 100%;
    color: #333; /* 文字色を濃いグレーにして、落ち着いた印象に */
    padding: 0.5em 1.2em; /* 左右のパディングを少し増やしてゆとりを持たせる */
    line-height: 1.5; /* 行高を少し上げて読みやすく */
    background: #FFFFFF; /* 背景色は白にして清潔感を出す */
    border-left: 6px solid #5E9E25; /* 左側にベースカラーの縦線でアクセント */
    vertical-align: middle; /* 上下中央寄せはそのまま */
    border-radius: 4px; /* 全体の角丸を控えめに */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); /* 影をより薄くして目立ちすぎないように */
    margin-top: 25px; /* 上部に少し余白を追加 */
    margin-bottom: 15px; /* 下部にも余白 */
    font-size: 1.15em; /* フォントサイズを微調整して、他のテキストとのバランスを取る */
    text-align: left; /* テキストは左揃えに戻す */
}

h4:before {
    content: ''; /* 装飾要素は引き続きなしで、シンプルに */
}




div#yane{
	margin-bottom:20px;
}

#yane p{
	line-height:160%;
	font-size:18px;
}


div.price {
    /*margin-bottom: 20px;*/
	margin:60px 0;
}

div.price table {
    width: 100%;
    margin: 20px auto; /* 中央寄せ */
    border-collapse: collapse; /* ボーダーを重ねる */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 軽い影で立体感を出す */
    border-radius: 8px; /* 角を丸くする */
    overflow: hidden; /* 角丸で内容がはみ出ないように */
}

div.price th,
div.price td {
    font-size: 15px; /* フォントサイズを少し調整 */
    line-height: 1.6; /* 行の高さを調整して読みやすく */
    padding: 12px 15px; /* パディングを増やす */
    text-align: left;
    border-bottom: 1px solid #e0e0e0; /* 薄いグレーのボーダー */
}

div.price th {
    background-color: #5E9E25; /* ベースカラーを適用 */
    color: #fff; /* 白い文字色 */
    font-weight: bold; /* 項目名を強調 */
    width: 35%; /* 項目名の列幅を調整（必要に応じて変更） */
    white-space: nowrap; /* 項目名が改行しないように */
}

div.price td {
    background-color: #FFFFFF; /* 白い背景 */
    color: #333; /* 濃いグレーの文字色 */
}

/* 最初のヘッダー行のスタイル */
div.price th.koumoku {
    background-color: #5E9E25; /* ベースカラーに統一 */
    text-align: center;
    font-size: 18px; /* タイトルを少し大きく */
    padding: 15px;
    border-bottom: none; /* タイトル下のボーダーは不要 */
}

/* 最終行のボーダーを削除 */
div.price tr:last-child th,
div.price tr:last-child td {
    border-bottom: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    div.price table {
        display: block; /* テーブルをブロック要素に */
        width: 100%;
        overflow-x: auto; /* 横スクロールを可能に */
        white-space: nowrap; /* テキストが折り返さないように */
    }

    div.price thead,
    div.price tbody,
    div.price th,
    div.price td,
    div.price tr {
        display: block; /* 全てのテーブル要素をブロックに */
    }

    div.price th.koumoku {
        white-space: normal; /* タイトルは通常通り折り返す */
		color:#fff;
    }

    div.price th {
        width: auto; /* 幅指定を解除 */
        background-color: #E6F0E6; /* スマホでの背景色をライトグリーンに */
        color: #333;
        padding: 8px 15px;
        position: relative;
        font-weight: bold; /* スマホでも項目名を強調 */
    }

    div.price td {
        padding: 8px 15px;
        position: relative;
        left: 0;
        transform: none;
        padding-left: 15px; /* 通常のパディングに戻す */
        white-space: normal;
    }

    /* td::before で見出しを再表示 (data-label属性をHTMLに追加していないため、このCSSは機能しません) */
    div.price td::before {
        content: attr(data-label); /* data-label属性の値を表示 */
        position: absolute;
        left: 15px;
        font-weight: bold;
        color: #555;
    }

    /* スマホで横並びにする代わりに、thとtdを縦に並べる例 */
    div.price tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }

    div.price th,
    div.price td {
        border-bottom: none; /* 個々のボーダーを削除 */
        border-top: 1px solid #eee; /* 各項目間に薄い線 */
    }

    div.price th:first-child {
        border-top: none;
    }

    div.price tr:first-child th {
        border-top: none; /* 最初のタイトルはボーダーなし */
    }

    div.price tr:last-child th,
    div.price tr:last-child td {
        border-bottom: none;
    }
}

div.price .imgArea {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-pack: justify;
    display: -webkit-flex; /* safari */
    display: -ms-flexbox; /* IE */
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;

    margin: 20px 0;
}

div.price .imgArea .imgWaku {
    -webkit-flex: 120px;
    flex: 120px;
    padding: 0 1% 10px;
}

div.price .imgArea .imgWaku2 {
    -webkit-flex: 250px;
    flex: 250px;
    padding: 0 1% 10px;
}

div.price .imgArea .imgWaku img,
div.price .imgArea .imgWaku2 img {
    width: 100%;
}

div.price .imgArea .imgWaku p,
div.price .imgArea .imgWaku2 p {
    margin: 0;
    font-size: 14px;
    line-height: 120%;
    color: #333;
}

div.price .red {
    color: #FF3300;
    font-weight: bold;
}

div.price .koumoku {
    background-color: #5E9E25; /* ベースカラーに統一 */
}








div.lightImgArea{
	width:670px;
}

div.lightImgArea img{
	-webkit-box-shadow: 3px 3px 3px #C0C0C0;
	-moz-box-shadow: 3px 3px 3px #C0C0C0;
	box-shadow: 3px 3px 3px #C0C0C0;

}

div.lightImgArea .imgWaku{
	float:left;
	margin-bottom:10px;
	width:163px;
	overflow:hidden;
}

div.lightImgArea .imgWaku p{
	margin:0;
	padding:0;
	font-size:13px;
	line-height:130%;
}


@media only screen and (max-width:650px){
	/*div#yanePrice th, div#yanePrice td{
		display: block;
		width:100%;
	}*/
}

@media only screen and (max-width:600px){

}

@media only screen and (max-width:450px){
	/*div.priceWaku .dataArea{
		float:none;
		width:100%;
	}

	div.priceWaku .imgArea{
		float:none;
		width:100%;
	}
	
	div.priceWaku .imgArea img{
		width:100%;
	}*/
}