@charset "utf-8";


body {
  background-color: #f5eee1;
 
  /* ソースのような背景を作成 */
  background-color: #f0f5f7;
  /* ベースの色 */
  background-image: radial-gradient(circle, #f3efe9 10%, rgba(16, 66, 172, 0) 60%),
  
}


.mainimg {
  /* リボンの背景画像 */
  background-image: url(../images/takeout-2.webp);
  background-repeat: repeat-y;
  background-size: cover;
  height:auto;
}

.contener {
  width: 100%;
}

.section {
  height: auto;
}
.take {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  width: 95%;
  background-color: #de813f;
  height: auto;
  margin: 0 20px 40px 20px;
  
  /* border: 3px solid #f00; */
}

.takeimg img {
  width: 70vw;
  height: 20vw;
  aspect-ratio: 4 / 3;
  object-fit: cover;


}

h1 {
  font-size: 40px;
   padding: 2vw;

}

h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
padding: 30px;

}

/* 携帯用記述_________________________________________ */
@media screen and (max-width:860px) {
  h2 {
    font-size: 14px;
  }
}
@media screen and (max-width:700px) {

 header img {
  width: 20vh;
  height: 20vh;
 }
 
  h2 {
    font-size: 10px;
    padding: 15px;
  }}
  @media screen and (max-width:500px) {
    h2 {
      padding: 5px;
    }
  }