@media screen and (min-width: 768px) {
  /* CB_の列数によってTextBoxの高さを変える
  ------------------------------------------ */
  .Col2_ .HeightM_ { min-height: 170px; }
  .Col3_ .HeightM_ { min-height: 240px; }
  .Col4_ .HeightM_ { min-height: 300px; }
  .HeightM_ { min-height: 135px; }

  .Col2_ .HeightS_ { min-height: 120px; }
  .Col3_ .HeightS_ { min-height: 170px; }
  .Col4_ .HeightS_ { min-height: 200px; }
  .HeightS_ { min-height: 70px; }
}

/* ///// 見出し /////////////////////////////// */
@media screen and (min-width: 768px) {
  .HeadingBox_ h1 {
    font-size: 30px;
    font-weight: bold;
  }
  .HeadingBox_ h2 {
    font-size: 25px;
    font-weight: bold;
  }
  .HeadingBox_ h3 {
    font-size: 20px;
    font-weight: bold;
  }
  .HeadingBox_ h4,.HeadingBox_ h5,.HeadingBox_ h6 {
    font-size: 18px;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .HeadingBox_ h1 {
    font-size: 20px;
    font-weight: bold;
  }
  .HeadingBox_ h2,.HeadingBox_ h3,.HeadingBox_ h4,
  .HeadingBox_ h5,.HeadingBox_ h6 {
    font-size: 18px;
    font-weight: bold;
  }
}

/* --- Preset Style ---*/
.HdgStyleA_ {
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
  border-bottom: 3px var(--main-color) solid;
  background-color: #f0f7ff;
}
.HdgStyleB_ {
  text-align: center;
}
.HdgStyleB_ h2{
  line-height: 1.5em;
  font-size: 48px;
}
.HdgStyleB_ h2 strong{
  color: pink;
  color: green;
  color: var(--main-color);
}

/* ///// ボタン /////////////////////////////// */
.ButtonBox_ a {
  display: table;
  box-sizing: border-box;
  margin: 0 auto;
  width: 280px;
  width: 300px;
  padding: 10px 30px;
  text-align: center;
  text-decoration:none;
}

/* Preset Style */
a.BtnStyleA_ {
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  background: #35aaff;
  color: #fff;
}
a.BtnStyleA_:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transform: scale(1.05);
}
a.BtnStyleA_::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg) translateY(-50%);
}

/* ///// テーブル ///////////////////////////// */
.TableBox_ table caption { font-weight: bold; }

/* Preset Style */
table.TblStyleA_ th {
  border: 1px #ccc solid;
  width: 30%;
  background-color: #f5f5f5;
  text-align: left;
}
table.TblStyleA_ td {
  border: 1px #ccc solid;
  background-color: #fff;
}

/* ///// その他 /////////////////////////////// */
/* フォントカラー */
.FntColorA_ { color: #444 !important; }
.FntColorB_ { color: #7aae49 !important; }
.FntColorC_ { color: #fc5755 !important; }
.FntColorD_ { color: #fff !important; }

.FntStyleA_ { letter-spacing: 5px; font-family: 'Lora', serif; }

/* 背景色 */
.BgColorA_ { background-color: #f0f0f0 !important; }
.BgColorB_ { background-color: #fdfdf8 !important; }
.BgColorC_ { background-color: #e0f1ff !important; }
.BgColorD_ { background-color: #ffffff !important; }

/* BOXの影 */
.ShadowA_ { box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1); }

/* 線の色 */
.Bdr_,.BdrT_,.BdrB_,.BdrTB_,.BdrL_,.BdrR_,.BdrLR_ { border-color: #ccc; }
.Dotted_ { border-color: gray; }
.Dashed_ { border-color: #ccc; }

.BdrColorA_ {
  border-color: #40b5f2;
}

/* ///// STYLES /////////////////////////////// */

.Marker {
  background-image: linear-gradient(transparent 60%, #e3fafe 40%);
}

/* ページのキャッチコピー */
.CatchCopy {
  text-align: center;
  line-height: 1.5em;
  font-size: 48px;
  font-weight: bold;
  @media (max-width: 768px){
    font-size: 24px;
  }
}
.CatchCopy strong{
  color: green;
  color: var(--main-color);
}

/* 販売サイトの画像とテキスト */
.suzuri-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: inherit;
  @media (max-width: 767px) {
    flex-direction: column;
    gap: 0.3em;
  }
}
.suzuri-link img {
  height: 73px;
  vertical-align: middle;
}

