.phra-box {
	margin-bottom: 30px;
}

.phra-box .recommend .recommend-box {
	background: url('temp_img/bar_700.jpg') no-repeat left bottom;
	clear: left;
}

.phra-box .recommend .recommend-box p {
	padding-top: 22px;
	padding-left: 17px;
	float: left;
	padding-bottom: 15px;
}

.phra-box .recommend .recommend-box dl {
	float: left;
	padding-top: 22px;
}

.phra-box .recommend .recommend-box dl dt {
	font-size: 13px;
	color: #663300;
	padding-left: 30px;
	padding-top: 7px;
	padding-bottom: 13px;
}

.phra-box .recommend .recommend-box dl dd {
	line-height: 120%;
	padding-left: 38px;
	width: 413px;
}

.phra-box .customer {
	clear: left;
}

.phra-box .customer .title-1 {
	font-size: 14px;
	font-weight: bold;
	color: #663300;
	background: url('temp_img/bar_700.jpg') no-repeat left bottom;
	padding-bottom: 5px;
}

.phra-box .customer .text-box-customer {
	width: 698px;
	border: 1px solid #BBB;
	margin-top: 15px;
	padding-bottom: 13px;
}

.phra-box .customer .text-box-customer p {
	padding-top: 13px;
	padding-left: 23px;
	padding-right: 23px;
	line-height: 140%;
}

.phra-box .type .img-type {
	margin-bottom: 22px;
	padding-left: 0;
}

.phra-box .type p {
	padding-left: 17px;
}

.phra-box .type table {
	width: 700px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.phra-box .type table tr {
	width: 698px;
	height: 29px;
}

.phra-box .type table tr th {
	width: 149px;
	border: 1px solid #BBB;
	background: #EEE no-repeat;
	text-align: center;
}

.phra-box .type table tr td {
	width: 519px;
	border: 1px solid #BBB;
	padding-left: 30px;
}

.phra-box .title-tenpbox .bg-title {
	background: url('temp_img/bg_title.jpg') no-repeat left top;
	height: 25px;
	width: 660px;
	font-size: 13px;
	font-weight: bold;
	color: #FFF;
	padding-top: 9px;
	padding-left: 40px;
}

.phra-box .title-tenpbox p {
	width: 661px;
	padding-left: 17px;
	padding-bottom: 20px;
}

.phra-box .description dl dt {
	padding-bottom: 19px;
}

.phra-box .description dl dd {
	width: 637px;
	padding-bottom: 40px;
	padding-left: 22px;
}

.phra-box .delivery-kiri {
	background: url('temp_img/bg_kiri_f1.jpg') no-repeat left top;
	height: 221px;
	width: 700px;
}

.phra-box .delivery-kiri p {
	padding-top: 165px;
	padding-left: 282px;
}

.phra-box .delivery-kami {
	height: 221px;
	width: 700px;
	background: url('temp_img/bg_kami_f1.jpg') no-repeat left top;
}

.phra-box .delivery-kami p {
	padding-top: 165px;
	padding-left: 282px;
}
  /* モーダルウィンドウの基本スタイル */
  .modal {
	display: none; /* デフォルトでは非表示に設定 */
	position: fixed; /* モーダルがページ全体に固定されるように設定 */
	top: 0; /* ページの最上部からスタート */
	left: 0; /* ページの最左端からスタート */
	width: 100%; /* モーダルが画面全体の幅を占める */
	height: 100%; /* モーダルが画面全体の高さを占める */
	background-color: rgba(0, 0, 0, 0.4); /* 背景を半透明の黒に設定（モーダルの背後が見えるように） */
	z-index: 100;
  }

  .modal-content {
	position: fixed; /* モーダル内容が画面上に固定されるように設定 */
	top: 50%; /* 縦方向の中央に配置 */
	left: 50%; /* 横方向の中央に配置 */
	transform: translate(-50%, -50%); /* 完全に中央に配置するための補正 */
	padding: 50px 30px; /* モーダル内の余白を設定 */
	width: 500px; /* モーダルの幅 */
	background-color: #fefefe; /* モーダルの背景色を白に設定 */
	border: 1px solid #888; /* 境界線の色を薄いグレーに設定 */
	border-radius: 10px; /* モーダルの角を丸くするための半径 */
  }

  /* モーダルを閉じるボタン（×）のスタイル */
  .closeModal {
	position: absolute; /* モーダル内で絶対位置に配置 */
	display: flex; /* ボタン内のテキストが中央に配置されるようにフレックスボックスを使用 */
	align-items: center; /* ボタン内のテキストを縦方向に中央揃え */
	justify-content: center; /* ボタン内のテキストを横方向に中央揃え */
	top: -5%; /* モーダル内容の上部から離れた位置に配置 */
	right: -5%; /* モーダル内容の右端から離れた位置に配置 */
	font-size: 28px; /* 閉じるボタンのフォントサイズ */
	font-weight: bold; /* 閉じるボタンのフォントを太字に設定 */
	cursor: pointer; /* ホバー時にポインタが表示されるように設定 */
	color: #FFF; /* 閉じるボタンのテキストカラーを白に設定 */
	width: 40px; /* ボタンの幅 */
	height: 40px; /* ボタンの高さ */
	background-color: #333; /* ボタンの背景色をダークグレーに設定 */
	border: #333; /* ボタンの境界線を背景と同じ色に設定 */
	border-radius: 50%; /* ボタンを丸くするための半径 */
  }
@media all and (max-width: 767px) {
	.modal-content {
		width: 90%;
	}
	.phra-box .recommend .recommend-box dl dd {
		width: 100%;
	}
}
