@charset "UTF-8";
/* # =================================================================
# normalize
# ================================================================= */
/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* # =================================================================
# base
# ================================================================= */
@font-face {
  font-display: swap;
  font-family: "Maax";
  font-style: normal;
  font-weight: 400;
  src:
    url(../font/Maax-Regular.woff2) format("woff2"),
    url(../font/Maax-Regular.woff) format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Maax";
  font-style: italic;
  font-weight: 400;
  font-weight: 300 400;
  src:
    url(../font/Maax-Italic.woff2) format("woff2"),
    url(../font/Maax-Italic.woff) format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Maax";
  font-style: normal;
  font-weight: 500;
  src:
    url(../font/Maax-Medium.woff2) format("woff2"),
    url(../font/Maax-Medium.woff) format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Maax";
  font-style: italic;
  font-weight: 500;
  src:
    url(../font/Maax-Medium_Italic.woff2) format("woff2"),
    url(../font/Maax-Medium_Italic.woff) format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Maax";
  font-style: normal;
  font-weight: 700;
  font-weight: 600 700;
  src:
    url(../font/Maax-Bold.woff2) format("woff2"),
    url(../font/Maax-Bold.woff) format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Maax";
  font-style: italic;
  font-weight: 700;
  font-weight: 600 700;
  src:
    url(../font/Maax-BoldItalic.woff2) format("woff2"),
    url(../font/Maax-BoldItalic.woff) format("woff");
}

@use "sass:string";
:root {
  --color-white: #fff;
  --color-gray-light: #f2f2f2;
  --color-gray-mid: #ddd;
  --color-gray-dark: #757575;
  --color-black: #000;
  --color-red: #f5333f;
  --color-blue: #3cc8e1;
  --color-orange: #ff9f37;
  --color-purple: #c964cf;
  --color-green: #14bfa1;
  --color-pink: #f67599;
  --color-navy: #001a70;
  --color-yellow: #ffe600;
  --color-blue-rgb: 60, 200, 225;
  --color-green-rgb: 20, 191, 161;
  --color-navy-rgb: 0, 26, 112;
  --color-orange-rgb: 255, 159, 55;
  --color-pink-rgb: 246, 117, 153;
  --color-purple-rgb: 201, 100, 207;
  --color-red-rgb: 245, 51, 63;
  --color-yellow-rgb: 255, 230, 0;
  --color-background: var(--color-white);
  --color-background-2: var(--color-gray-light);
  --color-background-3: var(--color-gray-mid);
  --color-text: var(--color-black);
  --color-text-2: var(--color-gray-dark);
  --color-line: var(--color-black);
  --color-line-2: var(--color-gray-dark);
  --color-line-3: var(--color-gray-mid);
  --measure: 80ch;
  --line-height: 1.3;
  --line-height-heading: 1.1667;
  --font-family-sans-serif: "Maax", "Century Gothic", "Futura", helvetica, arial, sans-serif;
  --font-family-serif: "Galaxie Copernicus", "Palatino Linotype", "Book Antiqua", "Palatino", serif;
  --font-family-monospace: "Courier 10 Pitch", courier, monospace;
  --font-family-code: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  --type-scale: 1.125;
  --font-size-01: calc(var(--font-size-02) / var(--type-scale));
  --font-size-02: calc(var(--font-size-03) / var(--type-scale));
  --font-size-03: calc(var(--font-size-04) / var(--type-scale));
  --font-size-04: 1rem;
  --font-size-05: calc(var(--font-size-04) * var(--type-scale));
  --font-size-06: calc(var(--font-size-05) * var(--type-scale));
  --font-size-07: calc(var(--font-size-06) * var(--type-scale));
  --font-size-08: calc(var(--font-size-07) * var(--type-scale));
  --font-size-09: calc(var(--font-size-08) * var(--type-scale));
  --font-size-10: calc(var(--font-size-09) * var(--type-scale));
  --font-size-11: calc(var(--font-size-10) * var(--type-scale));
  --font-size-12: calc(var(--font-size-11) * var(--type-scale));
  --font-size-13: calc(var(--font-size-12) * var(--type-scale));
  --font-size-14: calc(var(--font-size-13) * var(--type-scale));
  --font-size-15: calc(var(--font-size-14) * var(--type-scale));
  --font-size-16: calc(var(--font-size-15) * var(--type-scale));
  --font-size-17: calc(var(--font-size-16) * var(--type-scale));
  --font-size-18: calc(var(--font-size-17) * var(--type-scale));
  --font-size-xxx-smaller: calc(var(--font-size-xx-smaller) / var(--type-scale));
  --font-size-xx-smaller: calc(var(--font-size-x-smaller) / var(--type-scale));
  --font-size-x-smaller: calc(var(--font-size-smaller) / var(--type-scale));
  --font-size-smaller: calc(1em / var(--type-scale));
  --font-size-icon-default: 2.375rem;
  --space-01: calc(var(--space-02) / 2);
  --space-02: calc(var(--space-03) / 2);
  --space-03: calc(var(--space-04) / 2);
  --space-04: calc(var(--space-05) / 2);
  --space-05: calc(var(--font-size-05) * var(--line-height));
  --space-06: calc(var(--space-05) * 2);
  --space-07: calc(var(--space-06) * 2);
  --space-08: calc(var(--space-07) * 2);
  --space-line: calc(var(--font-size-04) * var(--line-height));
  --border-width-sm: 0.09375rem;
  --border-width-md: 0.125rem;
  --border-width-lg: 0.25rem;
  --box-shadow-md: 0.125rem 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.2);
  --focus-shadow-size: var(--border-width-lg);
  --site-header-bump: calc(4.0625rem + var(--space-04) + var(--space-05));
  --flow-gap-default: var(--space-05);
  --flow-gap: var(--flow-gap-default);
  --flow-gap-all: initial;
  --site-top-bump: 10rem;
}

@-webkit-keyframes reveal-down {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  90% {
    opacity: 1;
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes reveal-down {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  90% {
    opacity: 1;
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes slide-in {
  0% {
    -webkit-transform: translateX(-125%);
    transform: translateX(-125%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slide-in {
  0% {
    -webkit-transform: translateX(-125%);
    transform: translateX(-125%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade-out-spin {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(0.5turn);
    transform: rotate(0.5turn);
  }
}

@keyframes fade-out-spin {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(0.5turn);
    transform: rotate(0.5turn);
  }
}

@-webkit-keyframes fade-in-spin {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0.5turn);
    transform: rotate(0.5turn);
  }
  50% {
    opacity: 0;
    -webkit-transform: rotate(0.5turn);
    transform: rotate(0.5turn);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes fade-in-spin {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0.5turn);
    transform: rotate(0.5turn);
  }
  50% {
    opacity: 0;
    -webkit-transform: rotate(0.5turn);
    transform: rotate(0.5turn);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  -webkit-box-sizing: initial;
  box-sizing: initial;
  height: 0;
  overflow: visible;
}

pre {
  font-size: 1em;
}

a {
  background-color: initial;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 0.88889em;
  font-size: var(--font-size-smaller);
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: initial;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: initial;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

details > *,
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  --flow-gap: var(--flow-gap-all, var(--flow-gap-default));
  margin-bottom: 0;
  margin-top: 0;
  -webkit-transition:
    background-color 125ms ease-out,
    border-color 125ms ease-out,
    color 125ms ease-out,
    opacity 125ms ease-out,
    -webkit-box-shadow 125ms ease-out,
    -webkit-filter 125ms ease-out,
    -webkit-text-decoration-color 125ms ease-out;
  transition:
    background-color 125ms ease-out,
    border-color 125ms ease-out,
    color 125ms ease-out,
    opacity 125ms ease-out,
    -webkit-box-shadow 125ms ease-out,
    -webkit-filter 125ms ease-out,
    -webkit-text-decoration-color 125ms ease-out;
  transition:
    background-color 125ms ease-out,
    border-color 125ms ease-out,
    box-shadow 125ms ease-out,
    color 125ms ease-out,
    filter 125ms ease-out,
    opacity 125ms ease-out,
    text-decoration-color 125ms ease-out;
  transition:
    background-color 125ms ease-out,
    border-color 125ms ease-out,
    box-shadow 125ms ease-out,
    color 125ms ease-out,
    filter 125ms ease-out,
    opacity 125ms ease-out,
    text-decoration-color 125ms ease-out,
    -webkit-box-shadow 125ms ease-out,
    -webkit-filter 125ms ease-out,
    -webkit-text-decoration-color 125ms ease-out;
}

* + * {
  margin-top: 1.4625rem;
  margin-top: var(--flow-gap);
}

html {
  font-family:
    "Maax",
    Century Gothic,
    Futura,
    helvetica,
    arial,
    sans-serif;
  font-family: var(--font-family-sans-serif);
  font-size: 1rem;
  font-size: var(--font-size-04);
  letter-spacing: -0.03ch;
  line-height: 1.3;
  line-height: var(--line-height);
}

dialog-box {
  display: none;
  -webkit-animation: fade-in 0.2s ease-in-out;
  animation: fade-in 0.2s ease-in-out;
}

dialog-box:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

dialog-box[open] {
  display: block;
  outline: none;
}

only-script {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

only-script[loaded] {
  opacity: 1;
}

.site {
  --site-top-bump: calc(var(--wpadminbar-height) + var(--site-header-bump));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10rem;
  margin-top: var(--site-top-bump);
  min-height: 100vh;
  min-height: calc(100vh - 10rem);
  min-height: calc(100vh - var(--site-top-bump));
}

.is-ie .site {
  display: block;
}

.site > :nth-last-child(2) {
  margin-bottom: auto;
}

.site-main {
  --site-gutter: var(--space-04);
  --flow-gap: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 100%;
}

.site-main > * {
  --flow-gap: var(--space-07);
}

body,
button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  max-width: 80ch;
  max-width: var(--measure);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: 500;
  letter-spacing: -0.03ch;
  line-height: 1.1667;
  line-height: var(--line-height-heading);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  display: block;
}

h1 {
  font-size: 2.56578rem;
  font-size: var(--font-size-12);
}

h2 {
  font-size: 1.60181rem;
  font-size: var(--font-size-08);
}

h3,
h4,
h5,
h6 {
  font-size: 1.125rem;
  font-size: var(--font-size-05);
}

h4,
h5,
h6 {
  font-weight: 500;
}

cite,
dfn,
em,
i {
  font-style: italic;
}

blockquote {
  margin-left: 1.5em;
  margin-right: 1.5em;
}

pre {
  background: #f2f2f2;
  background: var(--color-background-2);
  font-family:
    Courier\10 Pitch,
    courier,
    monospace;
  font-family: var(--font-family-monospace);
  line-height: 1.6;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family:
    monaco,
    consolas,
    Andale Mono,
    DejaVu Sans Mono,
    monospace;
  font-family: var(--font-family-code);
}

abbr,
acronym {
  border-bottom: 0.125rem dotted #757575;
  border-bottom: var(--border-width-md) dotted var(--color-line-2);
  cursor: help;
}

ins,
mark {
  background: #f2f2f2;
  background: var(--color-background-2);
  text-decoration: none;
}

big {
  font-size: 125%;
}

br {
  margin: 0;
}

body {
  --wpadminbar-height: 0rem;
  background: #fff;
  background: var(--color-background);
  color: #000;
  color: var(--color-text);
  overflow-x: hidden;
}

body.admin-bar {
  --wpadminbar-height: 32px;
}

body * {
  scrollbar-color: #000 transparent;
  scrollbar-color: var(--color-line) transparent;
  scrollbar-width: thin;
}

body ::-webkit-scrollbar {
  height: 0.25rem;
  height: var(--border-width-lg);
  width: 0.25rem;
  width: var(--border-width-lg);
}

body ::-webkit-scrollbar-track {
  background-color: initial;
}

body ::-webkit-scrollbar-thumb {
  background-color: #000;
  background-color: var(--color-line);
}

hr {
  background-color: #000;
  background-color: var(--color-line);
  border: 0;
  height: 0.125rem;
  height: var(--border-width-md);
}

ol[class],
ul[class] {
  list-style: none;
  max-width: none;
  padding-left: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

[role="term"] {
  font-size: 1.125rem;
  font-size: var(--font-size-05);
  font-weight: 500;
}

[role="term"]:after {
  content: ":";
}

[role="definition"] {
  margin-left: 0;
}

embed,
iframe,
img,
object {
  max-width: 100%;
}

img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

img,
picture {
  display: block;
}

picture > * {
  --flow-gap: 0;
}

a {
  color: inherit;
  -webkit-text-decoration-color: #757575;
  text-decoration-color: #757575;
  -webkit-text-decoration-color: var(--color-text-2);
  text-decoration-color: var(--color-text-2);
  text-decoration-thickness: 0.125rem;
  text-decoration-thickness: var(--border-width-md);
  text-underline-offset: 0.15em;
}

a:focus {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}

a:active {
  background: #000;
  background: var(--color-text);
  color: #fff;
  color: var(--color-background);
  -webkit-text-decoration-color: #000;
  text-decoration-color: #000;
  -webkit-text-decoration-color: var(--color-text);
  text-decoration-color: var(--color-text);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

button {
  background: #f2f2f2;
  background: var(--color-background-2);
  border: 0;
  border-radius: 0;
  font-size: 0.9rem;
  font-size: calc(var(--font-size-05) * 0.8);
  font-weight: 500;
  letter-spacing: 0.16ch;
  text-transform: uppercase;
}

fieldset {
  border: 0;
  padding: 0;
}

input,
select,
textarea {
  --focus-shadow-size: var(--border-width-md);
}

input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
  background: #fff;
  background: var(--color-background);
  border: 0.125rem solid #000;
  border: var(--border-width-md) solid var(--color-line);
  padding: 0.36563rem;
  padding: var(--space-03);
  width: 100%;
}

input:invalid:not(:focus) {
  -webkit-box-shadow: none;
  box-shadow: none;
}

select {
  font-size: 0.71111rem;
  font-size: calc(var(--font-size-03) * 0.8);
  font-weight: 500;
  letter-spacing: 0.16ch;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0.125rem solid;
  border: var(--border-width-md) solid;
  border-radius: 0;
  color: currentColor;
  display: block;
  padding: 0.36563rem 0.73125rem;
  padding: var(--space-03) var(--space-04);
  text-decoration: none;
  width: 100%;
  background: none;
  background-image: url(assets/triangle-down.ff76deba.svg);
  background-size: 1rem;
  background-size: var(--font-size-04);
  background-position: right 0.73125rem center;
  background-position: right var(--space-04) center;
  background-repeat: no-repeat;
}

select:hover {
  background-color: #f2f2f2;
  background-color: var(--color-background-2);
}

select:active {
  border-color: currentColor;
}

label + select {
  --flow-gap: var(--space-04);
}

[type="checkbox"] {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  width: 1.4em;
  height: 1.4em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  background: var(--color-background);
  border: 0.125rem solid;
  border: var(--border-width-md) solid;
  -webkit-transition:
    background-color 0ms,
    border-width 125ms ease-out;
  transition:
    background-color 0ms,
    border-width 125ms ease-out;
}

[type="checkbox"]:checked {
  background: currentColor;
  border-width: 0.7em;
  -webkit-transition:
    border-width 125ms ease-in,
    background-color 0ms 125ms;
  transition:
    border-width 125ms ease-in,
    background-color 0ms 125ms;
}

[type="checkbox"] + label {
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 0.16ch;
  text-transform: uppercase;
}

textarea {
  width: 100%;
}

.l-box {
  --l-box__gutter: var(--space-05);
  --l-box__gutter-block: var(--l-box__gutter);
  --l-box__gutter-inline: var(--l-box__gutter);
  padding: 1.4625rem;
  padding: var(--l-box__gutter-block) var(--l-box__gutter-inline);
  outline: 0.125rem transparent;
  outline: var(--border-width-md) transparent;
}

.l-center {
  --l-center__max-size: calc(var(--measure) * 1.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-center > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 140ch;
  max-width: calc(var(--measure) * 1.75);
  max-width: var(--l-center__max-size);
}

.l-cluster {
  --l-cluster__gap: var(--space-05);
  --l-cluster__gap-block: var(--l-cluster__gap);
  --l-cluster__gap-inline: var(--l-cluster__gap);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1.4625rem;
  margin-left: calc(var(--l-cluster__gap-inline) * -1);
  margin-bottom: -1.4625rem;
  margin-bottom: calc(var(--l-cluster__gap-block) * -1);
}

.l-cluster > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 0 0 0 1.4625rem;
  margin-left: var(--l-cluster__gap-inline);
  margin-bottom: 1.4625rem;
  margin-bottom: var(--l-cluster__gap-block);
}

.l-cluster--spread {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-cluster--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.l-cluster--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-cluster--center-vertical {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-cluster--end-vertical {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.l-cluster--baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.l-frame {
  --l-frame__aspect-ratio: 1/1;
  --l-frame__aspect-ratio-wrapped: (var(--l-frame__aspect-ratio));
  overflow: hidden;
  padding-bottom: 100%;
  padding-bottom: calc(100% / var(--l-frame__aspect-ratio-wrapped));
  position: relative;
}

.l-frame > * {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.l-switcher {
  --l-switcher__breakpoint: var(--measure);
  --l-switcher__gap: var(--space-05);
  --l-switcher__gap-block: var(--l-switcher__gap);
  --l-switcher__gap-inline: var(--l-switcher__gap);
  --l-switcher__line-color: var(--color-line);
  --l-switcher__line-width: var(--border-width-md);
  --l-switcher__size: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1.4625rem;
  margin-left: calc(var(--l-switcher__gap-inline) * -1);
  margin-bottom: -1.4625rem;
  margin-bottom: calc(var(--l-switcher__gap-block) * -1);
}

.l-switcher > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  -ms-flex-preferred-size: calc(var(--measure) * 9999 - 999900%);
  flex-basis: calc(var(--measure) * 9999 - 999900%);
  -webkit-box-flex: var(--l-switcher__size);
  -ms-flex: var(--l-switcher__size) 1 calc(var(--l-switcher__breakpoint) * 9999 - 999900%);
  flex: var(--l-switcher__size) 1 calc(var(--l-switcher__breakpoint) * 9999 - 999900%);
  margin-left: 1.4625rem;
  margin-left: var(--l-switcher__gap-inline);
  margin-bottom: 1.4625rem;
  margin-bottom: var(--l-switcher__gap-block);
  margin-top: 0;
}

.l-sidebar {
  --l-sidebar__main-min-size: 50%;
  --l-sidebar__size: auto;
  --l-sidebar__gap: var(--space-05);
  --l-sidebar__gap-block: var(--l-sidebar__gap);
  --l-sidebar__gap-inline: var(--l-sidebar__gap);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1.4625rem;
  margin-left: calc(var(--l-sidebar__gap-inline) * -1);
  margin-bottom: -1.4625rem;
  margin-bottom: calc(var(--l-sidebar__gap-block) * -1);
}

.l-sidebar--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-sidebar--start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-sidebar--end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.l-sidebar--baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.l-sidebar > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex: 1 1 var(--l-sidebar__size);
  flex: 1 1 var(--l-sidebar__size);
  margin: 0 0 0 1.4625rem;
  margin-left: var(--l-sidebar__gap-inline);
  margin-bottom: 1.4625rem;
  margin-bottom: var(--l-sidebar__gap-block);
  max-width: none;
  min-width: 0;
}

.l-sidebar > .l-sidebar__main {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 9999;
  -ms-flex-positive: 9999;
  flex-grow: 9999;
  min-width: calc(50% - var(--space-05));
  min-width: calc(var(--l-sidebar__main-min-size) - var(--l-sidebar__gap-inline));
}

.l-sidebar > .l-sidebar__main,
.l-sidebar > .l-sidebar__main _:-ms-lang(x) {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.title {
  line-height: 1.05;
}

.title--page {
  font-size: 2.56578rem;
  font-size: var(--font-size-12);
  font-weight: 700;
}

.title--page a {
  background: none;
  color: inherit;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}

@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  .title--page a {
    text-decoration: none;
  }
}

.title--discovery {
  font-size: 1.80203rem;
  font-size: var(--font-size-09);
  font-weight: 700;
}

.title--large-label {
  font-size: 1.60181rem;
  font-size: var(--font-size-08);
  font-weight: 700;
}

.kodansha-logo {
  fill: currentColor;
  height: 1em;
  width: auto;
}

.cta {
  font-size: 0.71111rem;
  font-size: calc(var(--font-size-03) * 0.8);
  font-weight: 500;
  letter-spacing: 0.16ch;
  text-transform: uppercase;
  --flow-gap-all: 0rem;
  --focus-shadow-size: var(--border-width-md);
  border: 0;
  border-radius: 0;
  color: currentColor;
  padding: 0.49063rem 0.73125rem;
  padding: calc(var(--space-03) + var(--border-width-md)) var(--space-04);
  position: relative;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.125rem;
  text-decoration-thickness: var(--border-width-md);
  background: none;
}

.cta:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0.125rem solid #000;
  border: var(--border-width-md) solid var(--color-text);
}

.cta:active,
.cta:hover {
  background: #000;
  background: var(--color-text);
  color: #fff;
  color: var(--color-background);
}

.cta--secondary {
  --focus-shadow-size: var(--border-width-lg);
}

.cta--secondary:after {
  display: none;
}

.site-header {
  --flow-gap: 0;
  padding: 0.73125rem;
  padding: var(--space-04);
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
  top: var(--wpadminbar-height);
  z-index: 10;
}

.site-header nav a {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-underline-offset: 0.3rem;
  font-weight: 500;
  font-size: 1.26563rem;
  font-size: var(--font-size-06);
  letter-spacing: -0.03ch;
  text-decoration: none;
}

.site-header nav a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.site-header nav a:active,
.site-header nav a:hover {
  background: none;
  color: inherit;
}

.site-header .kodansha-logo {
  font-size: 2.375rem;
}

.site-header .l-sidebar {
  --l-sidebar__main-min-size: max-content;
}

.site-header .search-form {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.site-header .header-submenu {
  --flow-gap: 0;
  display: none;
  max-height: 36rem;
  max-height: 60vh;
  overflow-y: auto;
  border-top: 0;
}

.site-header .header-submenu[open] {
  -webkit-animation: reveal-down 0.2s ease-in;
  animation: reveal-down 0.2s ease-in;
  display: block;
}

.site-header__inner {
  background: #fff;
  background: var(--color-background);
  border: 0.125rem solid;
  border: var(--border-width-md) solid;
  padding: 0.73125rem;
  padding: var(--space-04);
}

.site-header__logo-link {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.site-header__logo-link svg {
  display: block;
}

.site-header__logo-link:active,
.site-header__logo-link:hover {
  background: none;
  color: inherit;
}

.site-header__nav-menu {
  display: none;
}

.site-header__nav-menu a[aria-expanded="true"] {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-decoration-thickness: var(--border-width-md);
}

.site-header__mobile-menu {
  display: none;
}

.site-header__mobile-nav-list {
  outline: none;
}

.site-header__mobile-nav-list > li > a {
  font-size: 1.60181rem;
  font-size: var(--font-size-08);
  font-weight: 500;
  letter-spacing: -0.03ch;
  text-decoration: none;
}

.site-header__mobile-nav-list a:hover {
  background: none;
}
.site-header__mobile-nav-list > li:last-child {
  width: 11.5rem;
  position: relative;
}
.site-header__mobile-nav-list > li:last-child > a {
  background: #000;
  color: #fff;
  width: 100%;
  height: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-header__mobile-nav-list .lang-menu {
  position: static;
}

#main_desktop_nav #primary-menu > li:last-child {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: 1.55rem;
  margin-left: 2.1875rem;
  position: relative;
}

#main_desktop_nav #primary-menu > li:last-child > a {
  background: #000;
  color: #fff;
  width: 7.185rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.09375rem;
  padding: 0 10px 0 0;
}

#main_desktop_nav li:last-child a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.js-lang-toggle {
  position: relative;
}
.js-lang-toggle::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 3px 0 3px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  transition: transform 0.3s;
}
.js-lang-toggle.is-active::before {
  transform: rotate(-180deg);
}

.lang-menu {
  position: absolute;
  list-style: none;
  margin: 0;
  background: #fff;
  width: 100%;
  display: none;
}

.lang-menu li {
  margin: 0;
  border: solid 2px;
  border-top: none;
}

.lang-menu li.is-current a {
  background: #cccccc;
  pointer-events: none;
}

.lang-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-05);
  text-decoration: none;
  line-height: 25px;
}
@media screen and (min-width: 50em) {
  .lang-menu li a {
    font-size: 0.9375rem;
    transition: opacity 0.3s;
  }
}
.site-header__menu-text-close {
  display: none;
}

.mobile-menu-open .site-header {
  background: #fff;
  background: var(--color-background);
  height: 100%;
  overflow: auto;
}

.mobile-menu-open .site-header__inner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.mobile-menu-open .site-header__menu-text-open {
  display: none;
}

.mobile-menu-open .site-header__menu-text-close {
  display: inline;
}

.site-header__mobile-menu-button .cta {
  max-width: 100%;
}

.site-footer > * {
  --flow-gap: 0;
}

.site-footer__title {
  font-size: 1.80203rem;
  font-size: var(--font-size-09);
}

.site-footer__main {
  background: #fff;
  background: var(--color-background);
  color: #000;
  color: var(--color-text);
  padding: 2.9375rem 0.78125rem 6.5625rem;
}

.is-ie .site-footer__main {
  background: #000;
  color: #fff;
}

.site-footer__main a,
.site-footer__main small {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16ch;
  text-transform: uppercase;
}

.site-footer__main a {
  text-decoration: none;
  display: inline-block;
  margin: -0.36562rem -0.73125rem;
  margin: calc(var(--space-03) * -1) calc(var(--space-04) * -1);
  padding: 0.36563rem 0.73125rem;
  padding: var(--space-03) var(--space-04);
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.125rem;
  text-decoration-thickness: var(--border-width-md);
}

.site-footer__main a:active,
.site-footer__main a:hover {
  background: none;
  color: inherit;
}

.site-footer__main small {
  color: #757575;
  color: var(--color-text-2);
  font-size: 0.88889rem;
  font-size: var(--font-size-03);
}

.site-footer__main .kodansha-logo {
  font-size: 3.65324rem;
  font-size: var(--font-size-15);
}

.is-ie .site-footer__main .kodansha-logo {
  width: 58.5px;
}

.site-footer__main .l-sidebar {
  --l-sidebar__main-min-size: 66.667%;
  --l-sidebar__gap-block: var(--space-06);
  --l-sidebar__gap-inline: var(--space-07);
}

.site-footer__main .l-cluster {
  --l-cluster__gap-inline: var(--space-07);
}

.site-footer__info {
  --flow-gap-all: var(--space-04);
}

.site-footer__copyright {
  --flow-gap-all: var(--space-06);
}

.site-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.site-footer__menu li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  margin: 0 0 0.9375rem;
}

.site-footer__menu li:nth-child(2n) {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}

.site-footer__menu li a {
  font-size: 0.8rem;
  text-decoration: none;
}

.site-footer__menu li a .text-transform--none {
  font-size: 0.625rem;
  text-transform: none;
}

.infinite-scroll.neverending .site-footer,
.infinite-scroll .posts-navigation {
  display: none;
}

.infinity-end.neverending .site-footer {
  display: block;
}

.theme-dark {
  --color-background: var(--color-black);
  --color-background-2: var(--color-gray-dark);
  --color-text: var(--color-white);
  --color-text-2: var(--color-gray-light);
  --color-line: var(--color-white);
  --color-line-2: var(--color-gray-light);
  --focus-shadow: 0 0 0 var(--border-width-md) var(--color-line);
  --focus-shadow-inset: 0 0 0 calc(var(--border-width-md) * -1) var(--color-line);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.entry-content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
  width: var(--page-column-width);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #fff;
  background-color: var(--color-background);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #000;
  color: var(--color-text);
  display: block;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 0.73125rem;
  padding: var(--space-04);
  text-decoration: none;
  top: 0.36563rem;
  top: var(--space-03);
  width: auto;
  z-index: 100000;
  font-size: 0.71111rem;
  font-size: calc(var(--font-size-03) * 0.8);
  font-weight: 500;
  letter-spacing: 0.16ch;
  text-transform: uppercase;
}

#primary[tabindex="-1"]:focus {
  outline: 0;
}

/**
 * layout
 */
.for-pc {
  display: none;
}

br.for-pc {
  display: none;
}

/* loading */
.top-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* min-width: 1280px; */
  height: 100%;
  background: #fff;
  z-index: 99;
  margin: 0;
}

.top-loading.is-loading .top-loading__bg {
  width: 0;
  margin: 0;
}

.top-loading.is-loading .top-loading__logo {
  opacity: 0;
  visibility: hidden;
}

.top-loading__logo {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  text-align: center;
  margin: auto;
  -webkit-transition: all 0.8s 1.5s;
  transition: all 0.8s 1.5s;
  z-index: 2;
}

.top-loading__logo svg {
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  margin: auto 20px;
}

.top-loading__images {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin-top: 0;
}

.top-loading__images li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.top-loading__images li.is-now {
  opacity: 1;
  visibility: visible;
}

.top-loading__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: width 0.8s 0.5s;
  transition: width 0.8s 0.5s;
  overflow: hidden;
  z-index: 3;
}

.top-loading__bg.bg-1 {
  background-color: #000;
}

.top-loading__bg.bg-2 {
  background-color: #f67599;
}

.top-loading__bg.bg-3 {
  background-color: #f5333f;
}

.top-loading__bg.bg-4 {
  background-color: #ff9f37;
}

.top-loading__bg.bg-5 {
  background-color: #ffe600;
}

.top-loading__bg.bg-6 {
  background-color: #14bfa1;
}

.top-loading__bg.bg-7 {
  background-color: #3cc8e1;
}

.top-loading__bg.bg-8 {
  background-color: #c964cf;
}

.top-loading__bg svg {
  width: 213.333333vw;
  max-width: inherit;
  position: absolute;
  /* right: -18.571428571%; */
  right: -55vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -15px;
  fill: #fff;
}

.is-tablet .top-loading__bg svg {
  right: -18.571428571vw;
  min-width: 1260px;
}

/*
 */
.hero {
  position: relative;
}

.hero__image {
  opacity: 0;
  margin: 0;
  background-size: cover;
  background-position: center center;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.hero__image.is-now {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.hero__image.is-old {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.hero > .l-frame {
  --l-frame__aspect-ratio: 13/14;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: none;
  width: 100vw;
}

.is-ie .hero > .l-frame {
  padding-bottom: 816px;
}

.is-ie .hero > .l-frame img {
  min-height: 100%;
  min-width: 100%;
  max-width: inherit;
  height: auto;
}

.hero:first-child > .l-frame {
  margin-top: -10rem;
  margin-top: calc(var(--site-top-bump) * -1);
}

.hero__text {
  --flow-gap-all: var(--space-04);
  background: #fff;
  background: var(--color-background);
  border: 0.125rem solid #000;
  border: var(--border-width-md) solid var(--color-line);
  max-width: 100%;
  margin-top: -75px;
  position: relative;
  z-index: 1;
  margin-left: var(--site-gutter);
  margin-right: var(--site-gutter);
  padding: 0.625rem 1.09375rem 0.84375rem;
}

.hero__text .l-cluster {
  --l-cluster__gap: var(--space-04);
}

.hero__text .title {
  font-size: 2.56578rem;
  font-size: var(--font-size-12);
  font-weight: 700;
  margin: 0;
  line-height: 1.05;
}

.hero__text .title + p {
  font-size: 1.26563rem;
  font-size: var(--font-size-06);
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

.home-film {
  position: relative;
  margin: 2.96875rem 0 0;
  color: #fff;
}

.home-film.is-play h2 span {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.home-film.is-play h2 span:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.home-film.is-play h2 span:nth-child(2) {
  margin: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.home-film.is-play .home-film__bg,
.home-film.is-play .home-film__conts {
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0.5s;
  transition: all 0.3s 0.5s;
}

.home-film h2 {
  color: #fff;
  font-size: 8.64933vw;
  line-height: 1.05;
}

.home-film h2 span {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.home-film h2 span:nth-child(1) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.home-film h2 span:nth-child(2) {
  margin: 0;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.home-film h2 + p {
  font-size: 2.93333vw;
  margin-top: 0.46875rem;
}

.home-film__inner {
  position: relative;
}

.home-film__conts {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 2.66667vw 0 1.5rem;
  margin: 0;
  z-index: 1;
  --site-gutter: var(--space-05);
  --flow-gap: 0;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.home-film__bg {
  background: #000;
  height: 100%;
  width: 26vw;
  position: absolute;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.home-film__bg::before {
  content: "";
  display: block;
  width: 32.66667vw;
  height: 100%;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #000)) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #000 50.5%) no-repeat top left/100% 100%;
  position: absolute;
  right: -32.66667vw;
  top: 0;
}

.home-film__btn {
  margin: 1.33333vw 0 0;
  display: inline-block;
  -webkit-transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.home-film__btn p {
  font-weight: 700;
  color: #fff;
  font-size: 4.26667vw;
}

.home-film__btn__icn {
  display: block;
  width: 12.4vw;
  margin: 1.33333vw 0 0;
}

.home-film__movie {
  padding: 56.25% 0 0 0;
  margin: 0;
}

.home-film__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-intro {
  margin-top: 2.34375rem;
  padding-bottom: 3.125rem;
}

.page-intro h2.title {
  margin-bottom: 0.78125rem;
}

.page-intro h2.title img {
  width: 4.34375rem;
  margin: 0 0 0.3125rem;
}

.page-intro h2.title span {
  display: block;
  font-size: 1.26563rem;
  font-size: var(--font-size-06);
  font-weight: 400;
  line-height: inherit;
}

.page-intro > .l-sidebar,
.page-prof > .l-sidebar,
.page-elm .l-sidebar {
  --l-sidebar__size: 25rem;
  --l-sidebar__main-min-size: 66.667%;
  --l-sidebar__gap-inline: var(--space-06);
}

.page-intro__subsection {
  --flow-gap: var(--space-06);
}

.page-intro__subsection p {
  font-size: 1.26563rem;
  font-size: var(--font-size-06);
}

.page-intro__subsection > div {
  margin-top: 0.78125rem;
}

.page-intro--emphasized .page-intro__subsection {
  --flow-gap: var(--flow-gap-default);
}

.page-intro--emphasized:first-child .page-intro__subsection p {
  font-size: 1.26563rem;
  font-size: var(--font-size-06);
}

.is-ie.home .site-main .l-sidebar > .title {
  width: 400px;
}

.is-ie.home .site-main .l-sidebar__main {
  width: 866px;
}

.page-intro--emphasized p > strong:only-child {
  font-size: 1.26563rem;
  font-size: var(--font-size-06);
  font-weight: 500;
}

.page-intro__image .title {
  margin-top: 0.46875rem;
}

.page-intro__image p {
  line-height: 1.05;
}

.page-intro__image p + p {
  margin: 0;
}

.page-intro__image p > strong:only-child {
  font-size: 1.42383rem;
  font-size: var(--font-size-07);
  font-weight: 700;
  line-height: 1.05;
}

.page-elm {
  padding-top: 2.8125rem;
  padding-bottom: 2.8125rem;
  margin-top: 0;
  border-top: solid 2px #000;
}

.page-elm .title {
  margin-bottom: 0.625rem;
}

.page-elm .title img {
  width: 4.34375rem;
  margin: 0 0 0.3125rem;
}

.page-elm a {
  /* text-decoration: none; */
}

.page-elm__col {
  display: none;
}

.page-elm__col figure {
  margin: 0 0.625rem;
}

.page-elm__col__text {
  font-size: 1.26563rem;
  font-size: var(--font-size-06);
}

.page-elm__btn {
  width: 7.84375rem;
}

.page-elm__btn a,
.page-elm__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2.375rem;
  padding: 0 2.34375rem 0 0;
  border: solid 0.125rem #000;
  letter-spacing: 0.016em;
  font-weight: 500;
  font-size: 0.61438rem;
  font-size: var(--font-size-01);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.page-elm__btn a::before,
.page-elm__btn span::before {
  content: "";
  display: block;
  background: url(/img_sustained/icn_arrow_bottom.svg) no-repeat center center;
  background-size: 2.375rem;
  border-left: solid 0.125rem #000;
  width: 2.375rem;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.page-elm__btn.is-active span::before {
  background-image: url(/img_sustained/icn_close.svg);
}

.page-elm__btn:not(.js-toggle-btn) {
  width: 6.03125rem;
}

.page-elm__btn:not(.js-toggle-btn) a::before {
  background-image: url(/img_sustained/icn_arrow_right.svg);
}

.page-elm__btn--blank a::before {
  transform: rotate(-45deg);
  border: none;
  right: -0.125rem;
}

.page-elm__btn--blank a::after {
  content: "";
  display: block;
  width: 0.125rem;
  height: 100%;
  background: #000;
  position: absolute;
  right: 2.125rem;
  top: 0;
}

.purpose figure img {
  width: 80%;
  margin: 0 auto;
}

.purpose__logo {
  text-align: center;
  margin-bottom: 2.25rem;
}

.purpose__logo .kodansha-logo {
  height: 3.90625rem;
}

.page-prof {
  border-top: solid 2px #000;
  padding-top: 2.5rem;
  margin-top: 0;
}

.page-prof .title {
  margin-bottom: 2.5rem;
}

.page-prof__logo {
  text-align: center;
  margin: 0 0 2.25rem;
}

.page-prof__logo .kodansha-logo {
  height: 3.90625rem;
}

.page-prof dl {
  font-size: 1.26563rem;
  font-size: var(--font-size-06);
  border-top: solid 1px #000;
  margin: 0;
  padding: 0.6875rem 0;
}

.page-prof dl.-tel {
  border-top: none;
  padding-top: 0;
}

.page-prof dl:first-of-type {
  padding-top: 0;
  border: none;
}

.page-prof dl dt {
  font-weight: 400;
}

.page-prof dl dd {
  margin: 0;
  font-weight: 500;
}

.page-intro__bnr {
  margin-top: 3.125rem;
}

.history .page-intro {
  padding-bottom: 2.75rem;
  margin-top: 3.75rem;
}

.history .page-intro .l-sidebar__main {
  margin-top: -0.9375rem;
}

.hero--page .hero__image {
  opacity: 1;
}

.hero--page .l-frame {
  padding-bottom: 21.25rem;
}

.history-list {
  margin-top: 0;
}

.history-list dl dt {
  font-weight: 700;
}

.history-list dl dd {
  margin: 0;
}

.history-list dl dd strong {
  font-style: italic;
  font-weight: 400;
}

.is-ie .history-list .l-sidebar > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25rem;
  flex: 1 1 25rem;
}

.is-ie .history-list .l-sidebar > .l-sidebar__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 75rem;
  flex: 1 1 75rem;
}

.history-list__item {
  padding-top: 1.25rem;
  border-top: solid 0.09375rem #000;
  letter-spacing: -0.03em;
}

.history-list__item > .l-sidebar {
  --l-sidebar__size: 25rem;
  --l-sidebar__main-min-size: 66.667%;
  --l-sidebar__gap-inline: var(--space-06);
}

.history-list__img-set {
  background: #e5e5e5;
  padding: 1.25rem 0.625rem 1.40625rem;
}

.history-list__img-set img {
  width: 100%;
}

.history-list__img-set .l-cluster {
  margin-left: -0.625rem;
}

.history-list__img-set li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.625rem;
}

.history-list__img-set--wide {
  padding: 0.625rem;
}

.history-list__img-set--col1 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.history-list__img-set--col1 li {
  max-width: 11.25rem;
}

.is-ie.history .site-main .l-sidebar > .title {
  width: 400px;
}

.is-ie.history .site-main .l-sidebar__main {
  width: 866px;
}

.interview .l-column {
  --site-gutter: var(--space-05);
  --flow-gap: 0;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.interview .l-section {
  position: relative;
}

.interview .l-section::after {
  content: "";
  display: block;
  width: 100vw;
  height: 0.125rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #000;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.interview .l-section:last-child::after {
  display: none;
}

.interview p .c-f-en {
  font-size: 1.1rem;
}

.interview h3 .c-f-en {
  font-size: 1.27188rem;
  font-weight: 500;
}

.interview-hero {
  width: 100vw;
  padding-top: 98.66667vw;
  background: url(/img_sustained/interview/img_mv_sp.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-left: 50%;
}

.interview-hero__copy {
  position: absolute;
}

.interview-top {
  margin: 0;
  padding: 1.125rem 0 5.15625rem;
}

.interview-top h2 {
  margin: 1.25rem 1rem 0 3.3125rem;
}

.interview-top p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 1.25rem;
}

.interview-top p + p {
  margin-top: 1.9375rem;
}

.interview-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interview-headline i {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0.53125rem 0 0;
}

.interview-headline i img {
  width: 2.65625rem;
}

.interview-headline span {
  margin: 0;
  letter-spacing: 0;
}

.interview-headline span img {
  display: block;
  width: 6.40625rem;
  margin: 0.625rem 0 0;
}

.intervew-prof {
  background: #eee;
  padding: 5.3125rem 0 5rem;
  margin: 0;
}

.intervew-prof__col {
  margin: 0;
}

.intervew-prof__item {
  font-size: 0.875rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.intervew-prof__item > img {
  display: block;
  width: 17.1875rem;
  margin: 0 auto;
}

.intervew-prof__item + .intervew-prof__item::before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  background: url(/img_sustained/interview/icn_cross.svg) no-repeat center center;
  background-size: 100% 100%;
  margin: 0 auto 1.25rem;
}

.intervew-prof__name {
  text-align: center;
  margin: 1.25rem 0 0;
  font-size: 1.80203rem;
  font-size: var(--font-size-09);
  font-weight: 700;
}

.intervew-prof__name + p {
  margin-top: 1.09375rem;
}

/* インタビューセクション */
.interview-section {
  margin: 0;
}

.interview-section__top {
  padding: 4.625rem 0 4.96875rem;
  position: relative;
}

.interview-section__top::after {
  content: "";
  display: block;
  width: 100vw;
  height: 0.125rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #000;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.interview-section section {
  padding: 5.3125rem 0 4.96875rem;
}

.interview-section h3 {
  font-size: 1.15625rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 2.65625rem;
}

.interview-block {
  margin: 0;
  padding: 2.65625rem 0 2.5rem;
}

.interview-ttl {
  margin: 0 0 2.6875rem;
  line-height: 0;
}

.interview-ttl img {
  width: 18.8125rem;
}

.interview-ttl--logo {
  text-align: center;
  margin: 0 0 2.25rem;
}

.interview-ttl--logo img {
  width: 16.28125rem;
}

.interview-col {
  position: relative;
}

.interview-col + .interview-col {
  margin: 2.0625rem 0 0;
}

.interview-item {
  margin: 0;
}

.interview-item dl + dl {
  margin: 2.0625rem 0 0;
}

.interview-item dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interview-item dl dt img {
  width: 5rem;
}

.interview-item dl dt span {
  margin: 0 0 0 0.625rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 700;
}

.interview-item dl dt span.thumb-name1 {
  font-size: 0.875rem;
}

.interview-item dl dd {
  margin: 0.71875rem 0 0;
}

.interview-item dl dd p {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.interview-img {
  width: 17.1875rem;
  margin: 2.625rem auto;
}

.interview-img:first-child {
  margin-top: 0;
}

.interview-img span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.7;
  margin-top: 0.9375rem;
}

@media screen and (min-width: 50em) {
  :root {
    --site-header-bump: calc(5.25rem + var(--space-04) + var(--space-05));
  }
  .site-main {
    width: 85rem;
    --site-gutter: var(--space-05);
  }
  h1 {
    font-size: 4.62363rem;
    font-size: var(--font-size-17);
  }
  h2 {
    font-size: 2.88651rem;
    font-size: var(--font-size-13);
  }
  [role="term"] {
    font-size: 1.26563rem;
    font-size: var(--font-size-06);
  }
  .title--page {
    font-size: 4.62363rem;
    font-size: var(--font-size-17);
  }
  .title--discovery {
    font-size: 3.24732rem;
    font-size: var(--font-size-14);
  }
  .site-header {
    font-size: 1.42383rem;
    font-size: var(--font-size-07);
  }
  .site-header .kodansha-logo {
    font-size: 3.5625rem;
    width: 198px;
  }
  .site-header__inner {
    padding-right: 1.4625rem;
    padding-right: var(--space-05);
    padding: 0.53125rem 0.73125rem;
  }
  .site-header--open {
    background: none;
    height: auto;
  }
  .site-header--open .site-header__mobile-menu {
    display: none;
  }
  .site-footer {
    --flow-gap: var(--space-07);
  }
  .is-ie .site-footer {
    margin-top: 5.9375rem;
  }
  .site-footer__title {
    font-size: 2.56578rem;
    font-size: var(--font-size-12);
  }
  .site-footer__main {
    padding: 2.9375rem 1.40625rem 2.71875rem;
  }
  .site-footer__main a,
  .site-footer__main small {
    font-size: 0.8rem;
    padding: 0;
    font-weight: 400;
  }
  .page .entry-content {
    font-size: 1.125rem;
    font-size: var(--font-size-05);
  }
  .page .entry-content > *,
  .page .entry-header + .entry-content {
    --flow-gap: var(--space-07);
  }
  /* loading */
  .top-loading__logo {
    margin: auto;
  }
  .top-loading__logo svg {
    width: 640px;
    height: auto;
    margin: auto;
  }
  .top-loading__bg svg {
    min-height: 100vh;
    width: 125.714285714vw;
    right: -115px;
    margin-top: 0;
  }
  .hero {
    padding-bottom: 8.46875rem;
  }
  .hero__text {
    border-width: 0.1875rem;
    bottom: 0;
    position: absolute;
    max-width: 68.75rem;
    padding: 2.1875rem 2.34375rem 3.125rem;
  }
  .hero__text .title {
    font-size: 4.62363rem;
    font-size: var(--font-size-17);
  }
  .hero__text .title + p {
    font-size: 2.02729rem;
    font-size: var(--font-size-10);
    margin: 0.625rem 0 0;
  }
  .page-intro h2.title img {
    width: 7.71875rem;
    margin: 0 0 0.625rem;
  }
  .page-intro--emphasized:first-child .page-intro__subsection p {
    font-size: 1.42383rem;
    font-size: var(--font-size-07);
  }
  .page-intro--emphasized p > strong:only-child {
    font-size: 1.60181rem;
    font-size: var(--font-size-08);
  }
  .page-intro__image {
    margin-top: 2.8125rem;
  }
  .page-intro__image .title {
    font-size: 1.80203rem;
    font-size: var(--font-size-09);
    margin-top: 0.9375rem;
  }
  .page-intro__image img {
    max-width: 320px;
  }
  .page-elm {
    border: none;
    position: relative;
    padding-top: 5.3125rem;
    padding-bottom: 4.84375rem;
  }
  .page-elm::before {
    content: "";
    display: block;
    width: 100vw;
    height: 0.1875rem;
    background: #000;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .page-elm .l-sidebar__main {
    margin-top: -0.625rem;
  }
  .page-elm .title img {
    width: 7.71875rem;
    margin: 0 0 0.625rem;
  }
  .page-elm__header + .l-sidebar {
    margin-top: 2.9375rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .page-elm__col {
    position: relative;
    margin: 1.5625rem 0 0;
  }
  .page-elm__col figure {
    width: 400px;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0.5s;
    transition: opacity 0.3s 0.5s;
  }
  .page-elm__col figure.is-active {
    opacity: 1;
  }
  .purpose__logo {
    text-align: left;
    margin-bottom: 0.78125rem;
  }
  .purpose__logo .kodansha-logo {
    width: 25.625rem;
    height: 6.65625rem;
  }
  .partnership .title--page {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
  .page-prof {
    border: none;
    padding-top: 5rem;
    position: relative;
  }
  .page-prof::before {
    content: "";
    display: block;
    width: 100vw;
    height: 0.1875rem;
    background: #000;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .page-prof__logo {
    text-align: left;
    margin: 0 0 0.78125rem;
  }
  .page-prof__logo .kodansha-logo {
    width: 25.625rem;
    height: 6.65625rem;
  }
  .page-prof dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    border: none;
    line-height: 1.7;
  }
  .page-prof dl.-overseas {
    margin-top: 1.5625rem;
  }
  .page-prof dl.-overseas dt {
    width: 100%;
  }
  .page-prof dl dt {
    display: inline-block;
  }
  .page-prof dl dt::after {
    content: ":";
    margin: 0 5px 0 0;
  }
  .page-prof dl dd {
    font-weight: 400;
    display: inline-block;
  }
  .page-intro__bnr {
    margin-top: 4.6875rem;
  }
  .page-intro__bnr a {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .page-intro__bnr a:hover {
    opacity: 0.8;
  }
  .hero--page {
    padding-bottom: 0;
  }
  .hero--page .l-frame {
    padding-bottom: 30rem;
  }
  .history-list {
  }
  .history-list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .history-list dl dt {
    font-size: 1.26563rem;
    font-size: var(--font-size-06);
    width: 5.625rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .history-list dl dd {
    font-size: 1.26563rem;
    font-size: var(--font-size-06);
  }
  .history-list__item {
    padding-top: 0;
    border-top: 0;
  }
  .history-list__item > .l-sidebar {
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
  }
  .history-list__item > .l-sidebar > .l-sidebar__main {
    margin-top: -0.3125rem;
    min-width: inherit;
  }
  .history-list__item + .history-list__item > .l-sidebar > .l-sidebar__main {
    margin-top: 0;
    padding-top: 0.9375rem;
    border-top: solid 0.125rem #000;
  }
  .history-list__img {
    min-width: 400px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .history-list__img-set {
    padding: 2.5rem 1.25rem 2.8125rem;
    min-width: 400px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .history-list__img-set .l-cluster {
    margin-left: -1.25rem;
  }
  .history-list__img-set li {
    margin-left: 1.25rem;
  }
  .history-list__img-set--wide {
    padding: 1.25rem 1.25rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  :after,
  :before {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation-duration: 0s !important;
    animation-duration: 0s !important;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    --wpadminbar-height: 46px;
  }
}

@media (any-hover: hover) {
  a:hover {
    background: #f2f2f2;
    background: var(--color-background-2);
  }
  .site-header nav a:hover {
    text-decoration: underline;
  }
  @supports ((-webkit-text-decoration: underline 2px black) or (text-decoration: underline 2px black)) {
    .site-header nav a {
      -webkit-text-decoration: underline 0.125rem transparent;
      text-decoration: underline 0.125rem transparent;
      -webkit-text-decoration: underline var(--border-width-md) transparent;
      text-decoration: underline var(--border-width-md) transparent;
    }
    .site-header nav a:hover {
      -webkit-text-decoration-color: initial;
      text-decoration-color: initial;
      text-decoration-thickness: 0.125rem;
      text-decoration-thickness: var(--border-width-md);
    }
  }
  .site-header__mobile-nav-list a:hover {
    text-decoration: underline;
  }
  @supports ((-webkit-text-decoration: underline 2px black) or (text-decoration: underline 2px black)) {
    .site-header__mobile-nav-list a {
      -webkit-text-decoration: underline 0.125rem transparent;
      text-decoration: underline 0.125rem transparent;
      -webkit-text-decoration: underline var(--border-width-md) transparent;
      text-decoration: underline var(--border-width-md) transparent;
    }
    .site-header__mobile-nav-list a:hover {
      -webkit-text-decoration-color: initial;
      text-decoration-color: initial;
      text-decoration-thickness: 0.125rem;
      text-decoration-thickness: var(--border-width-md);
    }
  }
  @supports ((-webkit-text-decoration: underline 2px black) or (text-decoration: underline 2px black)) {
    .site-footer__main a {
      -webkit-text-decoration: underline 0.125rem transparent;
      text-decoration: underline 0.125rem transparent;
      -webkit-text-decoration: underline var(--border-width-md) transparent;
      text-decoration: underline var(--border-width-md) transparent;
    }
    .site-footer__main a:hover {
      -webkit-text-decoration-color: initial;
      text-decoration-color: initial;
      text-decoration-thickness: 0.125rem;
      text-decoration-thickness: var(--border-width-md);
    }
  }
}

@media screen and (min-width: 22em) {
  .site-header {
    position: fixed;
  }
}

@media screen and (min-width: 71.6875em) {
  .site-header__nav-menu {
    display: block;
  }
  .site-header__mobile-menu-button {
    display: none;
  }
}

@media only screen and (min-width: 50em) {
  .site-footer__menu {
    display: block;
    margin: 0;
    width: auto;
  }
  .site-footer__menu li {
    width: 100%;
    margin: 0 0 1.40625rem;
  }
  .site-footer__menu li:nth-child(2n) {
    width: 100%;
  }
  .site-footer__menu li a {
    border-bottom: solid 0.125rem transparent;
  }
  .site-footer__menu li a:hover {
    border-bottom-color: #fff;
  }
  .for-pc {
    display: block;
  }
  br.for-pc {
    display: inline;
  }
  .for-sp {
    display: none;
  }
  .home-film {
    margin: 4.84375rem 0 0;
  }
  .home-film h2 {
    font-size: 4.62363rem;
    font-size: var(--font-size-17);
  }
  .home-film h2 + p {
    margin-top: 1.4625rem;
    margin-top: var(--flow-gap);
    font-size: 1.125rem;
    font-size: var(--font-size-05);
  }
  .home-film__conts {
    padding: 1.875rem 2.96875rem 13.125rem;
  }
  .home-film__bg {
    width: 9.375rem;
  }
  .home-film__bg::before {
    width: 25rem;
    right: -25rem;
  }
  .home-film__btn {
    margin: 2.8125rem 0 0;
  }
  .home-film__btn p {
    font-size: 2.2807rem;
    font-size: var(--font-size-11);
  }
  .home-film__btn__icn {
    width: 7.65625rem;
    margin: 1.09375rem 0 0;
  }
  .page-intro {
    margin-top: 4.6875rem;
    padding-bottom: 4.84375rem;
  }
  .interview .l-column {
    padding-left: 0;
    padding-right: 0;
  }
  .interview .l-section::after {
    height: 0.1875rem;
  }
  .interview h3 .c-f-en {
    font-size: 1.58125rem;
  }
  .interview-hero {
    height: auto;
    padding-top: 49.63333333%;
    background-image: url(/img_sustained/interview/img_mv_pc.jpg);
  }
  .interview-hero__copy {
    margin-top: 118.5px;
  }
  .interview-hero__copy img {
    width: 14.5rem;
    margin: 0;
  }
  .interview-top {
    padding: 1.40625rem 0 6.375rem;
  }
  .interview-top h2 {
    margin: 2.59375rem 0 0 10.0625rem;
  }
  .interview-top p {
    font-size: 1.4375rem;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    padding-left: 10.0625rem;
    margin-top: 1.5625rem;
    max-width: 69.21875rem;
  }
  .interview-top p + p {
    margin-top: 2.5rem;
  }
  .interview-headline {
    line-height: 1;
  }
  .interview-headline i {
    margin: 1.25rem 2.40625rem 0 0;
  }
  .interview-headline i img {
    width: 7.65625rem;
  }
  .interview-headline span {
    line-height: 1;
    letter-spacing: -0.03ch;
  }
  .interview-headline span img {
    width: 15.25rem;
    margin-top: 0.46875rem;
  }
  .intervew-prof {
    padding: 8.5rem 0 5.9375rem;
  }
  .intervew-prof__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .intervew-prof__item {
    font-size: 1rem;
    width: 25.5rem;
    margin: 0 3.95313rem;
    position: relative;
  }
  .intervew-prof__item > img {
    width: 100%;
  }
  .intervew-prof__item + .intervew-prof__item::before {
    position: absolute;
    left: -5.8125rem;
    top: 6.25rem;
    margin: 0;
  }
  .intervew-prof__name {
    text-align: left;
    font-size: 1.80203rem;
    font-size: var(--font-size-09);
    margin-top: 0.9375rem;
  }
  .intervew-prof__name + p {
    margin-top: 0.625rem;
  }
  .interview-section__top {
    padding: 6.875rem 0 6.5625rem;
  }
  .interview-section__top::after {
    height: 0.1875rem;
  }
  .interview-section section {
    padding: 5rem 0;
  }
  .interview-section section.-company {
    padding: 7rem 0 6.40625rem;
  }
  .interview-section section.-company h3 {
    margin: 0;
    padding: 0;
  }
  .interview-section h3 {
    font-size: 1.4375rem;
    padding: 0 0 0 7.625rem;
    margin: 0 0 1.875rem;
  }
  .interview-block {
    padding: 2.5rem 0;
  }
  .interview-ttl img {
    width: 21.5625rem;
  }
  .interview-ttl--logo {
    position: absolute;
  }
  .interview-ttl--logo img {
    width: 17.84375rem;
  }
  .interview-col + .interview-col {
    margin: 5.15625rem 0 0;
  }
  .interview-item {
    margin: 0 0 0 20.5rem;
  }
  .interview-item--txt {
    padding-left: 7.625rem;
  }
  .interview-item dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .interview-item dl + dl {
    margin: 5.15625rem 0 0;
  }
  .interview-item dl dt {
    display: block;
    width: 5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 2.625rem 0 0;
  }
  .interview-item dl dt span {
    display: block;
    margin: 0.4375rem 0 0;
    text-align: center;
  }
  .interview-item dl dd {
    margin: 0;
  }
  .interview-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 18.03125rem;
    margin: 0;
  }
}

@media screen and (min-width: 1601px) {
  .top-loading__bg svg {
    width: 125.714285714vw;
    right: -7.1875vw;
  }
}

@media screen and (min-width: 40em) {
  .hero > .l-frame {
    --l-frame__aspect-ratio: 5/3;
  }
}

@media screen and (min-width: 84.8125em) {
  .page-elm__col {
    margin: 0;
  }
  .page-elm__col figure {
    position: absolute;
    left: -457px;
  }
}

@media only screen and (min-width: 1440px) {
  .interview-hero__copy {
    margin-top: 118.5px;
  }
}

.page-template .entry-header {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}
.page-template .entry-content p + h2 {
  margin-top: 3rem;
}

.page-template .entry-content ul,
.page-template .entry-content ol {
  margin-left: 2rem;
}

.page-template .entry-content ol[class],
.page-template .entry-content ul[class] {
  margin-top: 1rem;
}

.page-template .entry-content ol.list-style-2 {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.page-template .table-scroll-x {
  overflow-x: auto;
  margin-right: var(--site-gutter);
  margin-left: var(--site-gutter);
  padding-left: 0;
  padding-right: 0;
}

.page-template .table-scroll-x table {
  min-width: 400px;
}

.page-template .table-scroll-x th,
.page-template .table-scroll-x td {
  width: 50%;
  padding: 0.36563rem 0.73125rem;
  padding: var(--space-03) var(--space-04);
  border: 0.125rem solid #000;
  border: var(--border-width-md) solid var(--color-line);
}

.page-template .table-scroll-x td {
  vertical-align: top;
}

@media only screen and (min-width: 50em) {
  .page-template .title {
    font-size: 3.625rem;
    font-size: var(--font-size-15);
  }
  .page-template .entry-content p + h2 {
    margin-top: 6rem;
  }
  .page-template .entry-content h3 {
    font-size: 2rem;
    font-size: var(--font-size-10);
  }
}

/* 下層テンプレ */
.page--tmp .entry-content {
  font-size: 1rem;
  font-size: var(--font-size-03);
}
.page--tmp .entry-content a {
  word-break: break-all;
}

.page--tmp .page-intro {
  padding-bottom: 0;
}
.page--tmp .page-headline {
  font-weight: 700;
  margin-bottom: 0;
}
.page--tmp .page-headline i {
  display: block;
  width: 4.3125rem;
}
.page--tmp .page-content {
  margin-top: 0;
}
.page--tmp .page-content h3 {
  font-size: 1.125rem;
  font-size: var(--font-size-05);
}
.page--tmp .page-figure {
  margin: 0;
}
@media only screen and (max-width: 49em) {
  .page--tmp .page-content {
    padding-bottom: 2.5rem;
  }
  .page--tmp .page-content .title + p {
    margin-top: 1.125rem;
  }
  .page--tmp .page-content h3 {
    margin-top: 3.75rem;
  }
  .page--tmp .page-content h3 + .figure-wrap {
    margin-top: 1.4625rem;
    margin-top: var(--flow-gap);
  }
  .page--tmp .figure-wrap {
    margin-top: 0.75rem;
  }
  .page--tmp .figure-wrap + .figure-wrap {
    margin-top: 1.4625rem;
    margin-top: var(--flow-gap);
  }
  .page--tmp .figure-wrap .page-figure {
    margin-top: 0.75rem;
  }
}

@media only screen and (min-width: 50em) {
  .page--tmp .entry-content {
    font-size: 1.26563rem;
    font-size: var(--font-size-06);
    margin-top: 2.5rem;
  }

  .page--tmp .page-intro {
    float: left;
    margin-top: 1.125rem;
  }
  .page--tmp .page-headline {
    font-weight: 700;
    margin: 0;
  }
  .page--tmp .page-headline i {
    width: 7.65625rem;
  }

  .page--tmp .page-content > * {
    clear: right;
    margin-left: auto;
    margin-right: 0;
    max-width: 65.869631434%;
  }
  .page--tmp .page-content .title {
    font-size: var(--font-size-14);
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  .page--tmp .page-content .title + p {
    margin-top: 0.75rem;
  }
  .page--tmp .page-content h3 {
    font-size: 1.4375rem;
  }
  .page--tmp .page-content h3 + .figure-wrap {
    margin-top: 0.75rem;
  }

  .page--tmp .figure-wrap {
    max-width: inherit;
    overflow: hidden;
  }

  .page--tmp .figure-wrap > p {
    max-width: 65.869631434%;
    margin-left: auto;
    float: right;
  }
  .page--tmp .figure-wrap > p:first-of-type {
    margin-top: 0;
  }

  .page--tmp .page-figure {
    /* float: left; */
    width: 30.459945172%;
    clear: left;
    margin: 0;
  }
}

/* TOP 追加 */
.lead {
  font-size: 1.4015625rem;
  font-weight: 700;
  margin-top: 0;
}
.border {
  margin-top: 2.8125rem;
}

.border + .title {
  margin-top: 2.1rem;
}

.link-title {
  font-size: 1.576875rem;
  font-weight: 700;
}
.link-title + .page-elm__btn {
  margin-top: 0.5rem;
}
.partnership .lead + img {
  margin-top: 0.5rem;
}
.parner-logo01 {
  width: 72%;
}

.partnership .page-elm__col {
  padding-top: 1.125rem;
}

@media only screen and (min-width: 50em) {
  .partnership .lead + img {
    height: 11.25rem;
  }
  .parner-logo01 {
    width: auto;
  }
  .partnership .page-elm__col {
    padding-top: 2.8125rem;
  }

  .partnership .page-elm__col img {
    max-width: 640px;
  }

  .partnership .page-elm__col p + img {
    margin-top: 3.125rem;
  }
}
