@charset "UTF-8";
/* --------------------------------------------------

[ユーザースタイリング設定]

ある程度の見た目設定はCSS変数を変更することで対応可能です。

-------------------------------------------------- */

:root {

/* ============================== */
/* 全体設定 */
/* ============================== */
--tpl-font-jp: "Noto Sans JP", 'Hiragino Kaku Gothic Pro', sans-serif;
--tpl-font-en: 'Helvetica Neue', sans-serif;

/* ============================== */
/* ベースエリア設定 */
/* ============================== */

/* 背景色 */
--tpl-base-backgroundColor: #F3F3F3;
/* 文字色 */
--tpl-base-fontColor: #333;

--tpl-theme: green;

/* ============================== */
/* フォームエリア設定 */
/* ============================== */


/* ============================== */
/* フォント設定 */
/* ============================== */


/* ============================== */
/* その他の色設定 */
/* ============================== */



}

.tpl-attention{
  display: flex;
  flex-direction: column;
  margin-top: 3.2rem;
  background: rgba(187, 34, 34, 0.03);
  overflow: hidden;
  padding: 2rem;
    gap: 1rem;
}
@media screen and (max-width: 768px){
  .tpl-attention{
    font-size: 1.6rem;
    padding: 1.6rem;
    gap: 1rem;
  }
}

.tpl-attention__head{
  color: #ad0404;
  font-family: var(--tpl-font-jp);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.tpl-attention-list__wrap{
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .tpl-attention-list__wrap{
    gap: 0.4rem;
  }
}

.tpl-attention-list__wrap li{
  position: relative;
  padding-left: 1.6rem;
  text-align: left;
  font-size: clamp(1.3rem, 1.274rem + 0.11vw, 1.4rem);
  line-height: 1.8;
}

.tpl-attention-list__wrap li::before{
  content: "";
  width: 0.6rem;
  aspect-ratio: 1 / 1;
  display: block;
  position: absolute;
  top: calc(0.5em + 0.1lh);
  left: 0px;
  background:#ad0404;
  border-radius: 0.4rem;
}