/*** レスポンシブテーブルデザイン ***/

*,
*::before,
*::after {
  box-sizing: border-box;
}
#formWrap {
	width:700px;
	margin:0 auto;
	color:#333;
	line-height:120%;
	font-size:90%;
	
}
table.form{
	box-sizing:border-box;
  width:75%;
  margin:0 auto;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* 必要に応じて太さを調整 */
    font-style: normal;
}
 
table.form th{
	box-sizing: border-box;
	width: 35%;
	overflow: hidden;
	color: #222;
	font-style: normal;
	font-size: 90%;
	text-align: left;
	word-break: break-all;
	word-wrap: break-word;
	vertical-align: top;
	letter-spacing: 0.3em;
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 5%;
}
 
table.form td{
	box-sizing: border-box;
	text-align: left;
	vertical-align: top;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 15px;
}
.moji {
	 font-size:14px;
}

.recipe dl,dt,dd {
margin: 0;
padding: 0;
}

.recipe dl {
	overflow: hidden;
	margin-bottom: 10px;
	padding-top:7px;
	border-top:1px dotted #ccc;
}
.recipe dl:nth-child(1) {
	border-top:none;
}
.recipe dl dt {
	box-sizing:border-box;
	font-weight: bold;
	margin-bottom:5px;
}
.recipe dl dd {
	box-sizing:border-box;
	overflow: hidden;
	margin-bottom: 5px;
}

.recipe dl dd .recipe-item {
	float: left;
	width: 35%;
}
.recipe dl dd .recipe-select {
	float: left;
	width: 65%;
}
.req {
	font-size:0.85em;
	color:#ff8093;
}
.req2 {
	font-size:0.85em;
}
.recipe dl dd select {
	font-size: 14px;
	width:50%;
}
.select-img {
	float: left;
	margin:0 40px 10px 0;
}
.select-img img {
	vertical-align: middle;
}
input#button {
	font-size: 1.1em;
	margin-top: 20px;
	margin-bottom: 50px;
	padding-top: 15px;
	padding-right: 40px;
	padding-bottom: 15px;
	padding-left: 40px;
}
.recipe-select select {
	font-size:16px;
	width:100%;
}
textarea::placeholder {
	color:#999;
	font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300; /* 必要に応じて太さを調整 */
    font-style: normal;
}

.sbt_0 {
	border-radius:40px;
}

.sbt_1{
    width:50%;
    height:60px;
	background-color:#fff0f5;
	border:none;
	color:#222;
	font-size:13px;
	font-weight:100;
	text-align:center;
	border-radius:40px;
	border: solid 1px #999999;
}
.sbt_1:hover{
	background-color:#ff8093 !important;
	color:#fff;
	border: solid 1px #ff8093;
}




@media (max-width: 768px) {
#formWrap {
		width:94%;
		margin:0 auto;
		color:#222;
		line-height:120%;
		font-size:90%;
}

table.form{
  width: 100%;
  margin: 0 auto;
}

table.form th,
table.form td{
  display: block;
  width: 100%;
  padding: 8px 0;
}

.recipe {
  width: 100%;
}

.recipe dl dd .recipe-item,
.recipe dl dd .recipe-select {
  float: none;
  width: 100%;
}

.recipe dl dd select {
  width: 100%;   /* ←ここ重要 */
}

.select-img {
  float: none;
  margin: 0 0 10px 0;
}

select,
input,
textarea {
  width: 100%;
  max-width: 100%;
}

.sbt_1 {
  width: 100%;   /* ボタンも100%に */
}

}
