/* 基本設定 */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* セクション共通スタイル */
section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 60px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* セクション内コンテンツ共通 */
section > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 見出し共通スタイル */
.headline {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  padding-top: 20px;
}

.subhead {
  font-size: 1.0rem;
  margin-bottom: 2rem;
}

/* ボタン共通スタイル */
section button {
  font-size: 25px;
  line-height: 1.17648;
  font-weight: 400;
  letter-spacing: -0.022em;
  border: none;
  min-width: 28px;
  padding: 11px 32px;
  margin: 20px auto;
  background: #0071e3;
  color: white;
  border-radius: 1000px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

section button:hover {
  background: #0077ED;
}

/* 画像共通スタイル */
section picture {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

section img {
  width: 100%;
  height: auto;
  object-fit: contain;
    border-radius: 70px;

}

/* Deep-Fried セクション */
#df {
  background-color: black;
  color: white;
  text-align: center;
}

#df .headline {
  font-size: 2.2rem;
  color: #ffffff;
}

#df .subhead {
  font-size: 1.5rem;
  color: #ffffff;
}

#df picture {
  max-width: 600px;
  border-radius: 10%;
}

/* レスポンシブデザイン */
@media screen and (max-width: 767px) {
  section {
    padding: 40px 15px;
  }

  section > * {
    padding: 0 15px;
  }

  .headline {
    font-size: 2rem;
  }

  .subhead {
    font-size: 1rem;
  }

  section button {
    font-size: 20px;
    padding: 8px 24px;
  }

  #df .headline {
    font-size: 2.5rem;
  }

  #df .subhead {
    font-size: 1.5rem;
  }

  #monody .headline {
    font-size: 2.5rem;
  }

  #monody .subhead {
    font-size: 1.5rem;
  }

  section picture {
    max-width: 100%;
  }
}