html {
    font-size: 16px;
}

/* 背景全体 */
body {
  margin: 0;
  padding: 0;
  background-color: #F3F3F3;
  font-family: "Noto Sans JP", sans-serif;
  min-height: 100vh;
}

/* 中央のコンテナ */
main {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 10px 50px;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin: 10px auto;
  align-items: center;
}

img {
  width: 100%;
}

/************** ①タイトルセクション *************/
.title-section {
  height: 125px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
  gap: 90px;
  margin-top: 100px;
  margin-bottom: 120px;
}

/* ロゴ画像のサイズ制限（最大675px） */
.logo {
  max-width: 675px;
  width: 56.25%;
  height: auto;
}

/* キャッチコピー */
.tagline {
  font-size: 1.875rem;
  color: #333;
  font-weight: bold;
  white-space: nowrap;
  margin-top: 35px;
}

/************** ②プロダクトイメージセクション *************/
.product-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0px;
}

/* キャッチコピー */
.product-heading {
  text-align: center;
  font-size: 1.750rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  white-space: nowrap;
}

/* トップ画像の表示 */
.product-image {
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0px;
}

/* トップの動画の表示 */
.main-visual-video {
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* プロダクト説明文 */
.product-description {
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
  font-size: 1.625rem;
  color: #893D9F;
  font-weight: bold;
}

/************** ③ キャラクター画像セクション *************/
/* セクション全体の並び */
.image-pair-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* 下位ブレイクポイント用 */
  margin-top: 120px;
}

/* 各画像スタイル */
.responsive-image {
  max-width: 480px;
  object-fit: cover;
  border-radius: 8px;
}

/* プロダクト説明文 */
.product-desctitle {
  margin-top: 20px;
  text-align: center;
  line-height: 1.2;
  font-size: 1.625rem;
  color: #893D9F;
  font-weight: bold;
}

/* プロダクト説明文 */
.product-description2 {
  margin-top: 15px;
  padding: 0 10px 0 10px;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
}

.highlight {
  color: #E349A0;
  font-weight: bold;
}



/************** ブレイクポイント 1,200px 一般的なスマホやタブレット向け *************/
@media screen and (max-width: 1220px) {

/************** ①タイトルセクション *************/
  .title-section {
    gap: 60px;
  }
  .tagline {
    font-size: 1.500rem;
  }

/************** ②プロダクトイメージセクション *************/
  .product-image {
    max-width: 640px;
  }

  .main-visual-video {
    max-width: 640px;
  }

  .product-heading {
    font-size: 1.562rem;
    white-space: normal;
  }

  .product-description {
    font-size: 1.375rem;
  }

/************** ③ キャラクター画像セクション *************/
  .image-pair-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .responsive-image {
    max-width: 400px;
  }

  .responsive-image:nth-child(1) {
    margin-left: -10%;
  }

  .responsive-image:nth-child(2) {
    margin-left: 10%;
  }

  .product-desctitle {
    font-size: 1.2rem;
  }

  .product-description2 {
    font-size: 0.8rem;
  }
}



/************** ブレイクポイント 820px *************/
/************** ①タイトルセクション *************/

@media screen and (max-width: 820px) {
  .title-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    height: auto;
    margin-top: 50px;
    margin-bottom: 60px;
  }

  .logo {
    width: 100%;
    max-width: 500px;
  }

  .tagline {
    font-size: 1.500rem;
    margin-top: 0;
  }

  .product-image {
    max-width: 560px;
  }

  .main-visual-video {
    max-width: 560px;
    width: 100%;
  }

  .product-heading {
    /*font-size: 1.375rem;*/
    font-size: calc(14px + (22 - 14) * ((100vw - 300px) / (820 - 300)));
    word-break: keep-all;
  }
  .product-description {
    /*font-size: 1.125rem;*/
    font-size: calc(8px + (18 - 8) * ((100vw - 300px) / (820 - 300)));
    word-break: keep-all;
  }

  .responsive-image {
    margin-left: 0 !important;
  }

  .product-desctitle {
    /*font-size: 1.2rem;*/
    font-size: calc(11px + (19 - 11) * ((100vw - 300px) / (820 - 300)));
    word-break: keep-all;
  }

  .product-description2 {
    /*font-size: 0.8rem;*/
    font-size: calc(12px + (13 - 9) * ((100vw - 300px) / (820 - 300)));
    word-break: keep-all;
  }
}


/************** ⑤フッターセクション *************/
/* フッターセクション全体 */
.footer-section {
  text-align: center;
  margin-top: 100px;
  padding: 20px 20px;
  color: #333;
}

/* 見出し CONTACT */
.footer-heading {
  font-size: 2.125rem;
  font-weight: bold;
  color: #893D9F;
}

/* ロゴ画像 */
.footer-logo {
  margin-top: -20px;
  max-width: 175px;
  width: 100%;
  height: auto;
}

/* 問い合わせ情報 */
.footer-contact {
  font-size: 1.000rem;
  line-height: 1.5;
}

/* メールリンクのスタイル */
.email-link {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.email-link:hover {
  text-decoration: underline;
}

/* フッター最下部の著作権表示 */
.copyright {
  margin: 20px auto;
  text-align: center;
  color: #999999;  /* #F3F3F3 より少し濃いグレー */
  font-size: 0.750rem;
  background-color: #F3F3F3;
}
