@charset "UTF-8";

:root {
  --pink: #ff6994;
  --pink-band: #f1bac3;
  --gray-dark: #4d545a;
  --gray: #78828b;
  --gray-light: #bbc0c5;
  --blue-light: #f4f7fa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--gray-dark);
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

ul { list-style: none; margin: 0; padding: 0; }

a { color: var(--pink); text-decoration: underline; }
a:hover { opacity: 0.7; }

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid var(--gray-light);
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--gray-dark);
  text-decoration: none;
}

.site-header__nav ul {
  display: flex;
  gap: 2em;
  font-size: 13px;
}

.site-header__nav a {
  color: var(--gray-dark);
  text-decoration: none;
}

.site-header__icons {
  display: flex;
  gap: 1.5em;
  font-size: 11px;
  color: var(--gray-dark);
  letter-spacing: 0.05em;
}

/* ---------- Breadcrumb ---------- */

.cmn-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

nav.breadcrumb {
  padding-top: 24px;
  margin-bottom: 40px;
  font-size: 13px;
  color: var(--gray);
}

nav.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

nav.breadcrumb li:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin: 0 1em;
}

nav.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
}

/* ---------- Terms content ---------- */

#terms {
  padding-bottom: 100px;
}

#terms h1 {
  padding-top: 100px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: normal;
  color: var(--pink);
  margin: 0 0 28px;
}

#terms > .cmn-inner > p.lead {
  margin-bottom: 8px;
}

.published {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 64px;
}

#terms section {
  margin-top: 64px;
  margin-bottom: 64px;
}

#terms h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}

#terms h3.sub-ttl {
  font-size: 16px;
  font-weight: bold;
  color: var(--gray-dark);
  margin: 32px 0 12px;
}

#terms p { margin: 0 0 20px; }

#terms p.note {
  font-size: 13px;
  color: var(--gray);
}

#terms ul.list-bracketed,
#terms ul.list-circled {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px;
}

#terms ul.list-bracketed {
  counter-reset: bracketed;
}

#terms ul.list-bracketed > li {
  counter-increment: bracketed;
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 12px;
}

#terms ul.list-bracketed > li::before {
  content: "(" counter(bracketed) ")";
  position: absolute;
  left: 0;
}

#terms ul.list-circled {
  counter-reset: circled;
}

#terms ul.list-circled > li {
  counter-increment: circled;
  position: relative;
  padding-left: 2em;
  margin-bottom: 12px;
}

#terms ul.list-circled > li:nth-of-type(1)::before { content: "①"; }
#terms ul.list-circled > li:nth-of-type(2)::before { content: "②"; }
#terms ul.list-circled > li:nth-of-type(3)::before { content: "③"; }
#terms ul.list-circled > li:nth-of-type(4)::before { content: "④"; }
#terms ul.list-circled > li:nth-of-type(5)::before { content: "⑤"; }
#terms ul.list-circled > li:nth-of-type(6)::before { content: "⑥"; }

#terms ul.list-circled > li::before {
  position: absolute;
  left: 0;
}

#terms table.rule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 15px;
}

#terms table.rule-table th,
#terms table.rule-table td {
  border: 1px solid var(--gray-light);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

#terms table.rule-table th {
  background: var(--blue-light);
  font-weight: bold;
  width: 25%;
  white-space: nowrap;
}

#terms table.rule-table th.th-pink {
  color: var(--pink);
}

/* ---------- Footer ---------- */

.site-footer__inner {
  padding: 3em 20px 1em;
  color: #fff;
  background: var(--pink-band);
}

.site-footer__links {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  font-size: 13px;
}

.site-footer__links > div > p {
  font-weight: bold;
  margin-bottom: 1em;
}

.site-footer__links ul li {
  margin-bottom: 0.6em;
  font-size: 12px;
}

.site-footer__links a {
  color: #fff;
  text-decoration: none;
}

.site-footer__sns {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin: 3em 0;
  font-size: 12px;
}

.site-footer__sns a {
  color: #fff;
  text-decoration: none;
}

.site-footer__company {
  text-align: center;
  margin-bottom: 2em;
}

.site-footer__company a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.site-footer__textlinks {
  text-align: center;
  font-size: 12px;
  margin-bottom: 1em;
}

.site-footer__textlinks li {
  display: inline-block;
}

.site-footer__textlinks li a {
  color: #fff;
  text-decoration: none;
}

.site-footer__textlinks li:not(:first-child)::before {
  content: "|";
  margin: 0 1em;
  opacity: 0.7;
}

.site-footer__copyright {
  text-align: right;
  font-size: 12px;
  opacity: 0.8;
  margin: 0;
}

.site-footer__brands {
  background: #fff;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
}
