/* 全体 */
/* 通常のスタイル */

/* スマートフォン向けスタイル */
@media screen and (max-width: 768px) {
  /* 画像の幅 */
  img {
    max-width: 100%;
    height: auto;
  }
/* スマートフォン向けスタイル */
@media screen and (max-width: 768px) {
  button[type="submit"] {
    font-size: 20px; /* ボタンのフォントサイズを大きくする */
    padding: 15px 30px; /* ボタンの余白を大きくする */
  }
}

/* 共通スタイル */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step {
  display: flex;
  margin-bottom: 20px;
}

.step-image {
  max-width: 100%;
  height: auto;
  margin-right: 20px;
}

.step-content {
  text-align: left;
}

.step-content h2 {
  margin-bottom: 10px;
}

.step-content p {
  line-height: 1.6;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* スマートフォン向けスタイル */
@media screen and (max-width: 768px) {
  .step {
    flex-direction: column;
  }

  .step-image {
    margin-bottom: 10px;
  }
}


  /* レイアウト */
  .main-image-container {
    flex-direction: column; /* 縦方向に並べる */
  }

  .main-image-container img {
    margin-bottom: 20px; /* 画像間のマージン */
  }

  /* その他のスタイル */
  /* 必要に応じて、他の要素のスタイルも調整する */
}
body {
  font-family: 游ゴシック, YuGothic, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* ヘッダー */
header {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

header img {
  max-width: 100%;
  height: auto;
}

/* ナビゲーション */
nav {
  background-color: #fff;
  padding: 10px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
}

/* メインコンテンツ */
main {
  padding: 20px;
}

/* セクション */
.section {
  margin-bottom: 30px;
}

.section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.section p {
  line-height: 1.6;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
}

/* サービス */
.section-services ul {
  list-style: disc;
  padding-left: 20px;
}

/* 料金プラン */
.section-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.plan {
  width: calc(50% - 20px);
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.plan h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.plan ul {
  list-style: none;
  padding: 0;
}

.plan li {
  margin-bottom: 5px;
}

/* ブログ */
.section-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.post {
  width: calc(33% - 20px);
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.post img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.post h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

/* お問い合わせ */
.section-contact {
  text-align: center;
}

.section-contact p {
  margin-bottom: 20px;
}

.section-contact form {
  width: 50%;
  margin: 0 auto;
}

.section-contact label {
  display: block;
  margin-bottom: 5px;
}

.section-contact input,
.section-contact textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* 共通スタイル */
.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.price-table {
  margin-bottom: 20px;
}

.price-table-image {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.legal-info {
  margin-top: 20px;
}

.legal-image {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* 拡大スタイル */
.zoom-2 {
  transform: scale(2);
}

form {
  transform: scale(2);
  font-size: 2em; /* フォントサイズを2倍に */
}

form label {
  font-size: 1.5em; /* ラベルのフォントサイズを1.5倍に */
}

form button {
  font-size: 1.5em; /* ボタンのフォントサイズを1.5倍に */
  padding: 1em 2em; /* ボタンのパディングを1em 2emに */
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  /* スマートフォン向けスタイル */
  .main-image-container img {