/* レイアウト */

:root {
  --blue: #002d67;
}

img {
  max-width: 100%;
  height: auto;
}

.l-center {
  text-align: center;
  margin: 0 auto;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .main.main--page-detail-1column section.p-delivery__section {
    padding: 0;
  }
}


/* テキスト */
.c-text-red {
  color: #cc0a00;
}

.c-text-sm {
  font-size: 14px;
}

.c-text-bold {
  font-weight: 700;
}

.p-sumulator__note {
  margin: 0 0 10px;
}

/* 見出し */
.c-title-primary {
  margin: 0 0 20px;
  padding: 14px 18px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  border-radius: 4px;
  box-sizing: border-box;
}

@media (max-width: 599px) {

  .p-title-primary,
  .c-title-primary {
    padding: 12px 14px;
    font-size: 18px;
  }
}

.c-title-secondary {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--blue);
}

@media (max-width: 599px) {

  .c-title-secondary {
    font-size: 18px;
  }
}

/* リスト */
.c-list_txt {
  list-style-type: none;
  text-align: left;
  width: fit-content;
  font-size: 16px;
  padding-left: 1.6rem;
  margin: 0;
}

@media screen and (max-width: 599px) {
  .c-list_txt {
    font-size: 14px;
  }

  .c-list_txt li {
    font-size: 14px;
  }

  .c-list_txt li:before {
    font-size: 14px;
  }
}

.c-list_txt li {
  position: relative;
  line-height: 1.6;
  margin-left: 0;
  margin-bottom: 10px;
}

.c-list_txt li:before {
  content: "";
  position: absolute;
  top: 0.8em;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #666;
  border-radius: 50%;
  margin-left: -1.2rem;
}

/* コンテンツ */

/* 注意ボックス（スクショ風：薄い青背景＋左にアイコン） */
.c-note {
  position: relative;
  margin-top: 14px;
  padding: 14px 16px 14px 80px;
  border-radius: 6px;
  background: #ecf1f8;
  color: #00367c;
  font-size: 14px;
  line-height: 1.7;
  box-sizing: border-box;
}

.c-note::before {
  content: "ご注意";
  position: absolute;
  top: 14px;
  left: 16px;
  font-weight: 700;
}

/* 注意ボックス内のリストは「※」アイコンにする */
.c-note .c-list_txt li:before {
  content: "※";
  top: 0.8em;
  /* 1行目（line-height:1.6）の中央に合わせる */
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  font-weight: 700;
  color: #00367c;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 599px) {
  .c-note {
    padding: 15px;
    font-size: 13px;
  }

  .c-note::before {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    font-size: 14px;


  }
}