@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: inline-block;
}

:root {
  --textColor: #3c3330cc;
  --backgroundColor: #f1f2f2;
  --accentColor: #ec6742;
  --gradient: linear-gradient(30deg, #c660d7 0%, #5d83ce 100%);
  --fillColor: #ffffff88;
  --radiusLarge: 64px;
  --radiusMiddle: 40px;
  --radiusSmall: 24px;
}

body {
  background: var(--backgroundColor);
  color: var(--textColor);
  padding: 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  letter-spacing: 0.02em;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header,
main,
footer {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

main {
  flex: 1 0 auto;
}

a {
  display: inline-block;
  color: var(--textColor);
  text-decoration: none;
}

h2 {
  margin-bottom: 20px;
}

p {
  line-height: 1.4;
}

header {
  position: sticky;
  top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

header img {
  height: 32px;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  padding: 8px;
  margin: 0 8px;
}

nav a:last-child {
  margin: 0 0 0 8px;
}

main > div {
  margin-bottom: 80px;
}

.button {
  padding: 12px 24px;
  background: var(--accentColor);
  border-radius: var(--radiusLarge);
  color: #f1f2f2;
  font-weight: bold;
}

.contents {
  overflow: hidden;
}

.contents-full {
  text-align: center;
  padding: 80px 0;
}

.contents-full h1 {
  margin-bottom: 40px;
}

footer .footer-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

footer .copy {
  text-align: center;
  line-height: 1;
}

footer img {
  height: 32px;
}

article {
  padding: 40px;
  background: var(--fillColor);
  border-radius: var(--radiusMiddle);
  margin-bottom: 40px;
}

article > * {
  margin-bottom: 24px;
}

article > *:last-child {
  margin-bottom: 0;
}

article h2 {
  font-size: 1.3rem;
}

article ul {
  list-style-type: disc;
  padding-left: 1em;
}

article li {
  margin: 8px 0;
  line-height: 1.4;
}

article .bold {
  font-weight: bold;
}

article a {
  text-decoration: underline;
}

@media (max-width: 960px) {
  body {
    padding: 16px;
  }

  article {
    padding: 40px 20px;
  }
}

.lang {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--textColor) 60%, white 40%);
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.lang-btn:hover {
  color: var(--textColor);
  border-color: color-mix(in srgb, var(--textColor) 20%, white 80%);
}

.lang.open .lang-btn {
  color: var(--textColor);
  border-color: color-mix(in srgb, var(--textColor) 20%, white 80%);
  background: #fffdfb;
}

.lang-btn .globe {
  width: 15px;
  height: 15px;
  opacity: 0.85;
}

.lang-btn .chev {
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform 0.2s;
}

.lang.open .lang-btn .chev {
  transform: rotate(-135deg) translate(-1px, 1px);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 20;
  background: #fffdfb;
  border: 1px solid color-mix(in srgb, var(--textColor) 12%, white 88%);
  border-radius: 18px;
  box-shadow: 0 18px 44px #2118111f;
}

.lang.open .lang-menu {
  display: flex;
}

.lang-menu .lang-opt {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--textColor) 60%, white 40%);
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: left;
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.12s, color 0.12s;
}

.lang-menu .lang-opt:hover {
  background: #e2603c12;
  color: var(--textColor);
}

.lang-menu .lang-opt[aria-selected="true"],
.lang-menu .lang-opt[aria-current="true"] {
  color: var(--accentColor);
}

.lang-menu .lang-opt[aria-selected="true"]::after,
.lang-menu .lang-opt[aria-current="true"]::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 3px;
}

#notice-at-collection {
  scroll-margin-top: 80px;
}
