@charset "UTF-8";

/* SP のみ表示する改行 */
.phishing-sp-br { display: none; }
@media (max-width: 939px) {
  .phishing-sp-br { display: inline; }
}

body.--phishing {
  background: #fff;
  margin: 0;
  overflow-x: clip;
  padding-top: 0 !important;
}

body.--phishing .global-header-reserve {
  height: 48px !important;
}

@media screen and (min-width: 940px) {
  body.--phishing .global-header-reserve {
    height: 106px !important;
  }
}

/* ===== Hero ===== */
body.--phishing .ta-hero__title {
  font-size: min(36px, calc((100vw - 72px) / 28));
  white-space: nowrap;
  max-width: none;
  overflow: visible;
}

@media screen and (max-width: 939px) {
  body.--phishing .ta-hero {
    min-height: unset;
    padding: 24px 20px;
  }
  body.--phishing .ta-hero__title {
    font-size: clamp(20px, calc((100vw - 40px) / 12), 28px);
    white-space: normal;
  }
}

/* ===== Content inner ===== */
/* ===== Intro card ===== */
body.--phishing .ta-content > div:first-child {
  background: #fff;
  border: 1px solid #ebf3fc;
  border-radius: 6px;
  box-shadow: 0 4px 7px rgba(235, 243, 252, .48);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
}

body.--phishing .ta-content > div:first-child p {
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.7;
  margin: 0;
}

/* ===== Section spacing ===== */
body.--phishing .ta-content > section {
  margin-top: var(--ta-space-2xl);
}

@media (min-width: 940px) {
  body.--phishing .ta-content > section {
    margin-top: var(--ta-space-4xl);
  }
}

body.--phishing .ta-section-heading {
  margin-top: 0;
}

/* ===== Section body ===== */
body.--phishing .ta-content > section > div:not(.ta-section-heading) {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ===== Closing (sectionの外の締め文) ===== */
body.--phishing .ta-content > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.--phishing .ta-content > div:last-child p {
  margin: 0;
}

body.--phishing .ta-content > div:last-child p:first-child {
  margin-top: 40px;
}

body.--phishing .ta-content > section p:not([class*="ta-"]) {
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.7;
  margin: 0;
}

/* ===== Item h3 の下 gap ===== */
/* ta-h4 クラスは margin:0 のため、ページ内の h3 には明示的に下余白を追加 */
body.--phishing .ta-content h3.ta-h4 {
  margin-bottom: 16px;
}

/* ===== Link list (dl grid) ===== */
body.--phishing .ta-content dl {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  row-gap: 8px;
  column-gap: 18px;
  margin: 0;
}

body.--phishing .ta-content dl > div {
  display: contents;
}

body.--phishing .ta-content dl dt,
body.--phishing .ta-content dl dd {
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.7;
  margin: 0;
  align-self: baseline;
}

body.--phishing .ta-content dl .--note-mark {
  grid-column: 1 / -1;
}

/* ===== List ===== */
body.--phishing .ta-content ul {
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.7;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.--phishing .ta-content ul li {
  padding-left: 1.2em;
  position: relative;
}

body.--phishing .ta-content ul li::before {
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}

/* ===== Links ===== */
body.--phishing .ta-content a {
  color: var(--ta-color-primary-light);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (max-width: 939px) {
  body.--phishing .ta-content > section > div:not(.ta-section-heading) {
    gap: 28px;
  }

  body.--phishing .ta-content dl {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }

  /* アイテム間に gap：dd の後に余白、dt→dd 間は 0 */
  body.--phishing .ta-content dl dd {
    margin-bottom: 8px;
  }

  body.--phishing .ta-content dl .--note-mark {
    margin-bottom: 0;
  }
}
