/*
News（お知らせ）ページ用スタイル
利用規約ページ（static/terms/**）のデザイントークン・レイアウトを踏襲
- html/body: 14px / line-height 1.7
- #wrap（グレー背景）/ #container（最大 800px 中央寄せ）
*/

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

:root {
  --news-text: #1a1a1a;
  --news-title: #888888;
  --news-page-bg: #f5f5f5;
  --news-rule: #dddddd;
  --news-accent: #1a1a1a;
  --news-link: #1a1a1a;
}

html {
  min-height: 100%;
  font-size: 14px;
  background-color: var(--news-page-bg);
}

body {
  margin: 0;
  font-family:
    Helvetica, "Hiragino Sans", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", "メイリオ", Meiryo,
    "Noto Sans SC", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--news-text);
  background-color: var(--news-page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrap {
  box-sizing: border-box;
  padding: 87px 0 150px;
  min-height: 100vh;
  background-color: var(--news-page-bg);
}

#container {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  background-color: transparent;
}

.section {
  box-sizing: border-box;
  padding: 50px 0;
}

/* ページタイトル */
.news-title {
  padding: 0;
  margin: 0 0 32px;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--news-title);
}

.news-content {
  max-width: 100%;
  width: 100%;
  margin: 0;
  text-align: left;
  overflow-wrap: anywhere;
}

/* 本文段落 */
.news-paragraph {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--news-text);
}

.news-lead {
  margin-bottom: 28px;
}

/* ■ セクション見出し */
.news-heading {
  display: flex;
  align-items: center;
  margin: 44px 0 14px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  color: var(--news-text);
}

.news-heading::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--news-accent);
}

/* 対象サービス等の箇条書き */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.news-list li {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.9;
}
.news-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/* 運営会社情報 */
.news-info {
  border-top: 1px solid var(--news-rule);
  border-bottom: 1px solid var(--news-rule);
  padding: 20px 0;
  margin: 0 0 20px;
}

.news-info__row {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}
.news-info__row:last-child {
  margin-bottom: 0;
}

.news-info__label {
  flex-shrink: 0;
  width: 5em;
  font-weight: 700;
  color: var(--news-text);
}

.news-info__value {
  flex: 1;
  min-width: 0;
}

/* お問い合わせ */
.news-contact {
  margin: 0 0 20px;
}
.news-content a {
  text-decoration: underline;
  color: var(--news-link);
}

/* 発信日・署名 */
.news-signature {
  margin-top: 44px;
  text-align: right;
  line-height: 1.9;
}

@media (max-width: 520px) {
  #wrap {
    padding: 40px 16px 100px;
  }

  .section {
    padding: 36px 0 44px;
  }

  .news-title {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .news-heading {
    margin-top: 36px;
  }

  .news-info__label {
    width: 4.5em;
  }
}
