@charset "utf-8";
body{
/* ソースのような背景を作成 */
  background-color: #eccd93; /* パスタのベースの色 */
  background-image: radial-gradient(circle, #ff9800 10%, rgba(255, 153, 0, 0) 60%), /* ソースの色と広がり */
                    radial-gradient(circle, #f44336 5%, rgba(244, 67, 36, 0) 50%); /* 別のソースの色と広がり */
  background-size: 200% 300%; /* グラデーションのサイズを大きくする */
  animation: source-spread 8s ease-in-out infinite alternate; /* アニメーションを適用 */

/* アニメーションの定義 */
@keyframes source-spread {
  0% {
    background-position: 0% 0%; /* 開始位置 */
  }
    20% {
    background-position: 25% 25%; /* 開始位置 */
  }
  50% {
    background-position: 100% 100%; /* 中間位置 */
  }
  100% {
    background-position: 0% 100%; /* 終了位置 */
  }
}
}

.mainimg {
    /* パスタの背景画像 */
    background-image: url(../images/pasta-1.svg);
    background-repeat: repeat-y;
    height:auto;
}
.menu {
    background-color: rgba(224, 227, 236, 0.767);
    width: 55vw;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    
     
}
.menuText {
background: rgb(236, 229, 190);
    color: #000;
    display: inline-block;
    padding: 1rem 1rem;
    margin: 5%;
    border-radius: 10%;
    line-height: 1.6;
    text-align: left;
  
    
}

.menu img {
    width: 30vw;
    height: 30vw;
    /* aspect-ratio: 4 / 3; */
    object-fit: cover;
    border-radius: 50%;
    padding: 20px;
    margin: 0 auto;
}

h2 {
    margin: 30px 0;
    font-size: 40px;
}

h3 {
    margin-top: 6px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 20px;
}
 
@media screen and (max-width:680px) {
  body,.mainimg {
    height: auto;
  }
  img {
    max-width: 100%;
  }
 header img {
  width: 20vh;
  height: 20vh;

 }
  h2 {
    font-size: 16px;
  }
  p {
    font-size: 12px;
  }
h3 {
  font-size: 14px;
  padding: 0;
}
#top {
  height: 200px;
 }
 .menu img {
  width: 45vw;
  height: 45vw;
  padding: 20px;
 
 }
footer li {
  font-size: 10px;
}
.useradress {
  width: 70%;
}
footer nav {
  width: 100%;
}
nav.footernav {
  width: 100%;
}
    .navcontener {
  width: 100%;
}
.icon {
  width: 80%;
}
.icons a {
  padding: 10px;
}
}
  footer {
    width: 100%;
    background-color: #f5eee1;
  }

