@charset "utf-8";
/* ====================
     PC + SP
==================== */
#container .wrapper {
	
}


/* ====================
	 PC
==================== */
@media screen and (min-width: 768px) {
	#container .wrapper {
		
	}	
}


/* ====================
	 SP
==================== */
@media screen and (max-width: 767px) {
	#container .wrapper {
		
	}
}

@media screen and (min-width: 769px) {
  .report-main .report_hdg:not([class*="-no"]) {
    padding-left: 8%;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .report-main .report_hdg:not([class*="-no"]) {
    padding-left: 8%;
    text-align: left;
  }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.container {
  max-width:100%;
  margin: auto;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.report_box{
  margin-top: 15%;
  margin-left: -8%;
}


img {
  width: 100%;
  height: auto;
  max-width:800px;
  display: block;
  margin: 0 auto; 
}

.text {
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  max-width:70%;
}

.head_date {
  color: #000000;
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: justify;
  max-width: 600px;
}

.profile-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #cccccc;
  border-radius: 10px;
  padding: 10px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fefefe;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-text {
  flex: 1;
  min-width: 167px;
}

.profile-text h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #404040;
}

.profile-text p {
  color: #404040;
  line-height: 1.6;
}

.profile-image img {
  width: 150px;
  /*height: 150px;*/
  object-fit: cover;
  object-fit: contain;
  border: 0px;
}

.product-box {
  background-color: #ffe4e1; /* ピンク */
  max-width: 90%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
}

.product-title {
  background-color: #ffffff;
  border: 2px solid red;
  color: #c00c00;
  font-size: 2rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.product-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.product-description {
  margin-top: 15px;
  color: #000000;
  line-height: 1.6;
  text-align: left;
}

.product-box2 {
  background-color: #f3e8d5; /* 茶 */
  max-width: 90%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
}

.product-title2 {
  background-color: #ffffff;
  border: 2px solid #694718;
  color: #694718;
  font-size: 2rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.product-description2 {
  margin-top: 15px;
  color: #000000;
  line-height: 1.6;
  text-align: left;
}

.recipe-container {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff8f4;
  border: 1px solid #f0ccc2;
  border-radius: 10px;
  font-family: sans-serif;
  color: #404040;
}



.recipe-container h5 {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #c44c44;
  border-bottom: 2px solid #f0ccc2;
  padding-bottom: 5px;
}

.ingredients ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.ingredients li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted #cccccc;
}

.item {
  flex: 1;
}

.amount {
  flex: 0 0 auto;
  margin-left: 20px;
}

.steps ol {
  padding-left: 20px;
  margin-top: 15px;
}

.steps li {
  margin-bottom: 10px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .product-title, .product-title2 {
    font-size: 4.3vw;
  }
  .profile-image img {
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 840px) {
  .product-title, .product-title2 {
    font-size: 2.3vw;
  }
  .profile-image img {
    width: 90%;
  }
}
