@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=BIZ+UDPMincho&family=Barlow:wght@400&display=swap");
/* ========================================================================== */
/* Normalize */
/* ========================================================================== */
/* Document
 * * ========================================================================== */
/**
 * * Add border box sizing in all browsers (opinionated).
 * */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * * 1. Add text decoration inheritance in all browsers (opinionated).
 * * 2. Add vertical alignment inheritance in all browsers (opinionated).
 * */
::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/**
 * * 1. Use the default cursor in all browsers (opinionated).
 * * 2. Change the line height in all browsers (opinionated).
 * * 3. Use a 4-space tab width in all browsers (opinionated).
 * * 4. Remove the grey highlight on links in iOS (opinionated).
 * * 5. Prevent adjustments of font size after orientation changes in
 * *    IE on Windows Phone and in iOS.
 * * 6. Breaks words to prevent overflow in all browsers (opinionated).
 * */
html {
  cursor: default;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

/* Sections
 * * ========================================================================== */
/**
 * * Remove the margin in all browsers (opinionated).
 * */
body {
  margin: 0;
}

/**
 * * Correct the font size and margin on `h1` elements within `section` and
 * * `article` contexts in Chrome, Edge, Firefox, and Safari.
 * */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * * ========================================================================== */
/**
 * * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 * */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * * Remove the margin on nested lists in Edge 18- and IE.
 * */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * * 1. Add the correct sizing in Firefox.
 * * 2. Show the overflow in Edge 18- and IE.
 * */
hr {
  height: 0;
  overflow: visible;
}

/**
 * * Add the correct display in IE.
 * */
main {
  display: block;
}

/**
 * * Remove the list style on navigation lists in all browsers (opinionated).
 * */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * * 1. Correct the inheritance and scaling of font size in all browsers.
 * * 2. Correct the odd `em` font sizing in all browsers.
 * */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
 * * ========================================================================== */
/**
 * * Remove the gray background on active links in IE 10.
 * */
a {
  background-color: transparent;
}

/**
 * * Add the correct text decoration in Edge 18-, IE, and Safari.
 * */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * * Add the correct font weight in Chrome, Edge, and Safari.
 * */
b,
strong {
  font-weight: bolder;
}

/**
 * * 1. Correct the inheritance and scaling of font size in all browsers.
 * * 2. Correct the odd `em` font sizing in all browsers.
 * */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * * Add the correct font size in all browsers.
 * */
small {
  font-size: 80%;
}

/* Embedded content
 * * ========================================================================== */
/* * Change the alignment on media elements in all browsers (opinionated).
 * */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * * Add the correct display in IE 9-.
 * */
audio,
video {
  display: inline-block;
}

/**
 * * Add the correct display in iOS 4-7.
 * */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * * Remove the border on iframes in all browsers (opinionated).
 * */
iframe {
  border-style: none;
}

/**
 * * Remove the border on images within links in IE 10-.
 * */
img {
  border-style: none;
}

/**
 * * Change the fill color to match the text color in all browsers (opinionated).
 * */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * * Hide the overflow in IE.
 * */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * * ========================================================================== */
/**
 * * Collapse border spacing in all browsers (opinionated).
 * */
table {
  border-collapse: collapse;
}

/* Forms
 * * ========================================================================== */
/**
 * * Remove the margin on controls in Safari.
 * */
button,
input,
select {
  margin: 0;
}

/**
 * * 1. Show the overflow in IE.
 * * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 * */
button {
  overflow: visible;
  text-transform: none;
}

/**
 * * Correct the inability to style buttons in iOS and Safari.
 * */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * * 1. Change the inconsistent appearance in all browsers (opinionated).
 * * 2. Correct the padding in Firefox.
 * */
fieldset {
  border: 1px solid #a0a0a0;
  padding: 0.35em 0.75em 0.625em;
}

/**
 * * Show the overflow in Edge 18- and IE.
 * */
input {
  overflow: visible;
}

/**
 * * 1. Correct the text wrapping in Edge 18- and IE.
 * * 2. Correct the color inheritance from `fieldset` elements in IE.
 * */
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

/**
 * * 1. Add the correct display in Edge 18- and IE.
 * * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 * */
progress {
  display: inline-block;
  vertical-align: baseline;
}

/**
 * * Remove the inheritance of text transform in Firefox.
 * */
select {
  text-transform: none;
}

/**
 * * 1. Remove the margin in Firefox and Safari.
 * * 2. Remove the default vertical scrollbar in IE.
 * * 3. Change the resize direction in all browsers (opinionated).
 * */
textarea {
  margin: 0;
  overflow: auto;
  resize: vertical;
}

/**
 * * Remove the padding in IE 10-.
 * */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * * 2. Correct the outline style in Safari.
 * */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * * Correct the cursor style of increment and decrement buttons in Safari.
 * */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * * Correct the text style of placeholders in Chrome, Edge, and Safari.
 * */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 * */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * * 1. Correct the inability to style upload buttons in iOS and Safari.
 * * 2. Change font properties to `inherit` in Safari.
 * */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/**
 * * Remove the inner border and padding of focus outlines in Firefox.
 * */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * * Restore the focus outline styles unset by the previous rule in Firefox.
 * */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * * Remove the additional :invalid styles in Firefox.
 * */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * * ========================================================================== */
/* * Add the correct display in Edge 18- and IE.
 * */
details {
  display: block;
}

/* * Add the correct styles in Edge 18-, IE, and Safari.
 * */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/* * Add the correct display in all browsers.
 * */
summary {
  display: list-item;
}

/* Scripting
 * * ========================================================================== */
/**
 * * Add the correct display in IE 9-.
 * */
canvas {
  display: inline-block;
}

/**
 * * Add the correct display in IE.
 * */
template {
  display: none;
}

/* User interaction
 * * ========================================================================== */
/* * 1. Remove the tapping delay in IE 10.
 * * 2. Remove the tapping delay on clickable elements
 *    in all browsers (opinionated).
 * */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/**
 * * Add the correct display in IE 10-.
 * */
[hidden] {
  display: none;
}

/* Accessibility
 * * ========================================================================== */
/**
 * * Change the cursor on busy elements in all browsers (opinionated).
 * */
[aria-busy=true] {
  cursor: progress;
}

/* * Change the cursor on control elements in all browsers (opinionated).
 * */
[aria-controls] {
  cursor: pointer;
}

/* * Change the cursor on disabled, not-editable, or otherwise
 * * inoperable elements in all browsers (opinionated).
 * */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/* * Change the display on visually hidden accessible elements
 * * in all browsers (opinionated).
 * */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* ========================================================================== */
/* iniize */
/* ========================================================================== */
/* initialize: base */
/* -------------------------------------------------------------------------- */
body {
  position: relative;
  padding-top: 5em;
  background-color: #ffffff;
  font-family: "BIZ UDPMincho", sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  font-size: 1vw;
  line-height: 1.6;
  color: #000000;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body {
    font-size: 3vw;
  }
}
@media print {
  body {
    zoom: 0.64;
    padding-top: 0;
    -webkit-print-color-adjust: exact;
  }
}
body.navi-open {
  overflow: hidden;
}

::selection {
  background-color: #264653;
  color: #ffffff;
}

/* initialize: divider */
/* -------------------------------------------------------------------------- */
hr {
  margin: 0;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

/* initialize: blockquote */
/* -------------------------------------------------------------------------- */
blockquote {
  margin: 0;
}

/* initialize: link */
/* -------------------------------------------------------------------------- */
a {
  font-family: "BIZ UDPGothic", sans-serif;
  color: #000000;
}

.isnt-touch a:focus, .isnt-touch a:hover {
  color: #009e42;
}

/* initialize: list */
/* -------------------------------------------------------------------------- */
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

dl {
  margin-top: 0;
}
dl dt {
  font-weight: 700;
}
dl dd {
  margin-left: 0;
}

/* initialize: media */
/* -------------------------------------------------------------------------- */
figure {
  margin: 0;
}
figure figcaption {
  margin-top: 1em;
}

audio,
canvas,
iframe,
img,
svg,
video {
  width: 100%;
  height: auto;
}

/* initialize: spacing */
/* -------------------------------------------------------------------------- */
button,
dd,
dt,
li {
  margin-bottom: 0.5em;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1em;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 1.5em;
}

/* initialize: table */
/* -------------------------------------------------------------------------- */
table th,
table td {
  text-align: left;
  vertical-align: top;
}
table th {
  font-weight: 400;
}

/* initialize: typography */
/* -------------------------------------------------------------------------- */
em {
  font-style: normal;
  font-weight: 400;
  color: #264653;
}

address {
  font-style: normal;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1em;
}

h1 {
  font-size: 2em;
  line-height: 1.1;
}

h2 {
  font-size: 1.75em;
  line-height: 1.2;
}

h3 {
  font-size: 1.5em;
  line-height: 1.2;
}

h4 {
  font-size: 1.25em;
  line-height: 1.3;
}

h5 {
  font-size: 1.125em;
  line-height: 1.4;
}

h6 {
  font-size: 1em;
  line-height: 1.6;
}

/* ========================================================================== */
/* Elements */
/* ========================================================================== */
/* elements: button */
/* -------------------------------------------------------------------------- */
.button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-width: 10em;
  margin-bottom: 0;
  padding: 1.5em 1em;
  appearance: none;
  outline: none;
  border: 0;
  background-color: transparent;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;
}
.button::after {
  content: "";
  display: block;
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 0.25em;
  background-color: #000000;
}
.button__text {
  display: inline-flex;
  width: 100%;
}
.button__text.icon--after::after {
  margin-left: auto;
}

.isnt-touch .button {
  transition: color 0.2s ease-out;
}
.isnt-touch .button::after {
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 0.2s ease-out, background-color 0.2s ease-out;
}
.isnt-touch .button:focus::after, .isnt-touch .button:hover::after {
  transform: scaleY(0.5);
  background-color: #009e42;
}

/* elements: color */
/* -------------------------------------------------------------------------- */
.c-ini {
  color: #ffffff !important;
}

.c-pri {
  color: #000000 !important;
}

.c-sec {
  color: #009e42 !important;
}

.c-ter {
  color: #264653 !important;
}

.c-qua {
  color: #ef454a !important;
}

.c-fp-pri {
  color: #ff9b00 !important;
}

.c-fp-sec {
  color: #c50000 !important;
}

.c-cs-pri {
  color: #ef7497 !important;
}

.c-cs-sec {
  color: #5d0082 !important;
}

.c-pf-pri {
  color: #2cc8b7 !important;
}

.c-pf-sec {
  color: #003685 !important;
}

.c-ip-pri {
  color: #68ced7 !important;
}

.c-ip-sec {
  color: #036c34 !important;
}

.c-g2 {
  color: #050505 !important;
}

.c-g4 {
  color: #0a0a0a !important;
}

.c-g6 {
  color: #0f0f0f !important;
}

.c-g8 {
  color: #141414 !important;
}

.c-g10 {
  color: #1a1a1a !important;
}

.c-g12 {
  color: #1f1f1f !important;
}

.c-g14 {
  color: #242424 !important;
}

.c-g16 {
  color: #292929 !important;
}

.c-g18 {
  color: #2e2e2e !important;
}

.c-g20 {
  color: #333333 !important;
}

.c-g22 {
  color: #383838 !important;
}

.c-g24 {
  color: #3d3d3d !important;
}

.c-g26 {
  color: #424242 !important;
}

.c-g28 {
  color: #474747 !important;
}

.c-g30 {
  color: #4d4d4d !important;
}

.c-g32 {
  color: #525252 !important;
}

.c-g34 {
  color: #575757 !important;
}

.c-g36 {
  color: #5c5c5c !important;
}

.c-g38 {
  color: #616161 !important;
}

.c-g40 {
  color: #666666 !important;
}

.c-g42 {
  color: #6b6b6b !important;
}

.c-g44 {
  color: #707070 !important;
}

.c-g46 {
  color: #757575 !important;
}

.c-g48 {
  color: #7a7a7a !important;
}

.c-g50 {
  color: #808080 !important;
}

.c-g52 {
  color: #858585 !important;
}

.c-g54 {
  color: #8a8a8a !important;
}

.c-g56 {
  color: #8f8f8f !important;
}

.c-g58 {
  color: #949494 !important;
}

.c-g60 {
  color: #999999 !important;
}

.c-g62 {
  color: #9e9e9e !important;
}

.c-g64 {
  color: #a3a3a3 !important;
}

.c-g66 {
  color: #a8a8a8 !important;
}

.c-g68 {
  color: #adadad !important;
}

.c-g70 {
  color: #b3b3b3 !important;
}

.c-g72 {
  color: #b8b8b8 !important;
}

.c-g74 {
  color: #bdbdbd !important;
}

.c-g76 {
  color: #c2c2c2 !important;
}

.c-g78 {
  color: #c7c7c7 !important;
}

.c-g80 {
  color: #cccccc !important;
}

.c-g82 {
  color: #d1d1d1 !important;
}

.c-g84 {
  color: #d6d6d6 !important;
}

.c-g86 {
  color: #dbdbdb !important;
}

.c-g88 {
  color: #e0e0e0 !important;
}

.c-g90 {
  color: #e5e5e5 !important;
}

.c-g92 {
  color: #ebebeb !important;
}

.c-g94 {
  color: #f0f0f0 !important;
}

.c-g96 {
  color: #f5f5f5 !important;
}

.c-g98 {
  color: #fafafa !important;
}

/* elements: bg-color */
/* -------------------------------------------------------------------------- */
.bc-ini {
  background-color: #ffffff !important;
}

.bc-pri {
  background-color: #000000 !important;
}

.bc-sec {
  background-color: #009e42 !important;
}

.bc-ter {
  background-color: #264653 !important;
}

.bc-qua {
  background-color: #ef454a !important;
}

.bc-fp-pri {
  background-color: #ff9b00 !important;
}

.bc-fp-sec {
  background-color: #c50000 !important;
}

.bc-cs-pri {
  background-color: #ef7497 !important;
}

.bc-cs-sec {
  background-color: #5d0082 !important;
}

.bc-pf-pri {
  background-color: #2cc8b7 !important;
}

.bc-pf-sec {
  background-color: #003685 !important;
}

.bc-ip-pri {
  background-color: #68ced7 !important;
}

.bc-ip-sec {
  background-color: #036c34 !important;
}

.bc-g2 {
  background-color: #050505 !important;
}

.bc-g4 {
  background-color: #0a0a0a !important;
}

.bc-g6 {
  background-color: #0f0f0f !important;
}

.bc-g8 {
  background-color: #141414 !important;
}

.bc-g10 {
  background-color: #1a1a1a !important;
}

.bc-g12 {
  background-color: #1f1f1f !important;
}

.bc-g14 {
  background-color: #242424 !important;
}

.bc-g16 {
  background-color: #292929 !important;
}

.bc-g18 {
  background-color: #2e2e2e !important;
}

.bc-g20 {
  background-color: #333333 !important;
}

.bc-g22 {
  background-color: #383838 !important;
}

.bc-g24 {
  background-color: #3d3d3d !important;
}

.bc-g26 {
  background-color: #424242 !important;
}

.bc-g28 {
  background-color: #474747 !important;
}

.bc-g30 {
  background-color: #4d4d4d !important;
}

.bc-g32 {
  background-color: #525252 !important;
}

.bc-g34 {
  background-color: #575757 !important;
}

.bc-g36 {
  background-color: #5c5c5c !important;
}

.bc-g38 {
  background-color: #616161 !important;
}

.bc-g40 {
  background-color: #666666 !important;
}

.bc-g42 {
  background-color: #6b6b6b !important;
}

.bc-g44 {
  background-color: #707070 !important;
}

.bc-g46 {
  background-color: #757575 !important;
}

.bc-g48 {
  background-color: #7a7a7a !important;
}

.bc-g50 {
  background-color: #808080 !important;
}

.bc-g52 {
  background-color: #858585 !important;
}

.bc-g54 {
  background-color: #8a8a8a !important;
}

.bc-g56 {
  background-color: #8f8f8f !important;
}

.bc-g58 {
  background-color: #949494 !important;
}

.bc-g60 {
  background-color: #999999 !important;
}

.bc-g62 {
  background-color: #9e9e9e !important;
}

.bc-g64 {
  background-color: #a3a3a3 !important;
}

.bc-g66 {
  background-color: #a8a8a8 !important;
}

.bc-g68 {
  background-color: #adadad !important;
}

.bc-g70 {
  background-color: #b3b3b3 !important;
}

.bc-g72 {
  background-color: #b8b8b8 !important;
}

.bc-g74 {
  background-color: #bdbdbd !important;
}

.bc-g76 {
  background-color: #c2c2c2 !important;
}

.bc-g78 {
  background-color: #c7c7c7 !important;
}

.bc-g80 {
  background-color: #cccccc !important;
}

.bc-g82 {
  background-color: #d1d1d1 !important;
}

.bc-g84 {
  background-color: #d6d6d6 !important;
}

.bc-g86 {
  background-color: #dbdbdb !important;
}

.bc-g88 {
  background-color: #e0e0e0 !important;
}

.bc-g90 {
  background-color: #e5e5e5 !important;
}

.bc-g92 {
  background-color: #ebebeb !important;
}

.bc-g94 {
  background-color: #f0f0f0 !important;
}

.bc-g96 {
  background-color: #f5f5f5 !important;
}

.bc-g98 {
  background-color: #fafafa !important;
}

/* display */
/* -------------------------------------------------------------------------- */
.d-i-pc {
  display: inline;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-i-pc {
    display: none;
  }
}

.d-i-sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-i-sp {
    display: inline;
  }
}

.d-b-pc {
  display: block;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-b-pc {
    display: none;
  }
}

.d-b-sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-b-sp {
    display: block;
  }
}

.d-flex-pc {
  display: flex;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-flex-pc {
    display: none;
  }
}

.d-flex-sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-flex-sp {
    display: flex;
  }
}

/* elements: form-control */
/* -------------------------------------------------------------------------- */
.form-control {
  appearance: none;
  margin-bottom: 0;
}
.form-control::-ms-expand {
  display: none;
}

/* elements: text */
/* -------------------------------------------------------------------------- */
.form-control[type=text], .form-control[type=email], .form-control[type=password], .form-control[type=search], .form-control[type=tel], .form-control[type=url], .form-control[type=number], .form-control[type=month], .form-control[type=week] {
  width: 100%;
  padding: 1em 1.5em;
  border: 2px solid #e0e0e0;
  border-radius: 0.25em;
  background-color: #ffffff;
  font-size: 1.25em;
}
.form-control[type=text][readonly], .form-control[type=email][readonly], .form-control[type=password][readonly], .form-control[type=search][readonly], .form-control[type=tel][readonly], .form-control[type=url][readonly], .form-control[type=number][readonly], .form-control[type=month][readonly], .form-control[type=week][readonly] {
  padding-right: 3em;
  border-color: #ebebeb;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%233b383d' stroke-miterlimit='10' stroke-width='2'%3E%3Cpath d='m7 10v-4c0-2.761 2.239-5 5-5s5 2.239 5 5v4'/%3E%3Crect height='13' rx='2' width='18' x='3' y='10'/%3E%3Ccircle cx='12' cy='16' r='1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 1em;
}
.form-control[type=text]:focus, .form-control[type=email]:focus, .form-control[type=password]:focus, .form-control[type=search]:focus, .form-control[type=tel]:focus, .form-control[type=url]:focus, .form-control[type=number]:focus, .form-control[type=month]:focus, .form-control[type=week]:focus {
  border-color: #009e42;
  background-color: #ffffff;
  outline: 0;
}
.form-control[type=text]:focus[readonly], .form-control[type=email]:focus[readonly], .form-control[type=password]:focus[readonly], .form-control[type=search]:focus[readonly], .form-control[type=tel]:focus[readonly], .form-control[type=url]:focus[readonly], .form-control[type=number]:focus[readonly], .form-control[type=month]:focus[readonly], .form-control[type=week]:focus[readonly] {
  border-color: #ebebeb;
  background-color: #ffffff;
}
.form-control[type=text]::placeholder, .form-control[type=email]::placeholder, .form-control[type=password]::placeholder, .form-control[type=search]::placeholder, .form-control[type=tel]::placeholder, .form-control[type=url]::placeholder, .form-control[type=number]::placeholder, .form-control[type=month]::placeholder, .form-control[type=week]::placeholder {
  color: #a3a3a3;
}
.form-control__unit {
  display: inline-block;
  margin-left: 0.25em;
  font-size: 1.25em;
  color: #000000;
}
.form-control:placeholder-shown {
  border-color: #ebebeb;
  background-color: #ebebeb;
}

/* elements: radio */
/* -------------------------------------------------------------------------- */
.form-control[type=radio] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.form-control__radio {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 1.25em;
  color: #a3a3a3;
}
.form-control__radio::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5em;
  border-radius: 50%;
  background-color: #ebebeb;
  flex-shrink: 0;
}

.form-control[type=radio]:checked + .form-control__radio {
  color: #000000;
}
.form-control[type=radio]:checked + .form-control__radio::before {
  border: 0.375em solid #009e42;
  background-color: #ffffff;
}

/* elements: checkbox */
/* -------------------------------------------------------------------------- */
.form-control[type=checkbox] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.form-control__checkbox {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 1.25em;
  color: #a3a3a3;
}
.form-control__checkbox::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5em;
  border-radius: 0.25em;
  background-color: #ebebeb;
  flex-shrink: 0;
}

.form-control[type=checkbox]:checked + .form-control__checkbox {
  color: #000000;
}
.form-control[type=checkbox]:checked + .form-control__checkbox::before {
  border: 1px solid #009e42;
  background-color: #009e42;
}
.form-control[type=checkbox]:checked + .form-control__checkbox::after {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0.3em;
  border: solid #fff;
  border-width: 0 0.125em 0.125em 0;
  width: 0.375em;
  height: 0.75em;
  transform: translateY(0) rotate(45deg);
  margin: auto;
}

/* elements: select */
/* -------------------------------------------------------------------------- */
.form-select {
  position: relative;
  display: inline-block;
}
.form-select::before {
  content: "";
  position: absolute;
  top: -0.25em;
  bottom: 0;
  right: 0.75em;
  width: 0.5em;
  height: 0.5em;
  margin: auto;
  border-top: 0.125em solid #000000;
  border-right: 0.125em solid #000000;
  transform: rotate(135deg);
  pointer-events: none;
}
.form-select:has(select.form-control:invalid)::before {
  border-color: #a3a3a3;
}
.form-select select.form-control {
  width: 100%;
  height: 2.4em;
  padding: 0 2em 0 1em;
  border: 2px solid #009e42;
  border-radius: 0.25em;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 1.25em;
  color: #000000;
}
.form-select select.form-control:invalid {
  border-color: #ebebeb;
  background-color: #ebebeb;
  color: #a3a3a3;
}
.form-select select.form-control:focus {
  outline: 0;
  border: 2px solid #009e42;
  background-color: #ffffff;
}

/* elements: textarea */
/* -------------------------------------------------------------------------- */
textarea.form-control {
  display: block;
  width: 100%;
  min-height: 16em;
  padding: 1.5em;
  border: 2px solid #e0e0e0;
  border-radius: 0.25em;
  background-color: #ffffff;
  resize: vertical;
  font-size: 1.25em;
}
textarea.form-control:focus {
  border: 2px solid #009e42;
  background-color: #ffffff;
  outline: 0;
}
textarea.form-control::placeholder {
  color: #a3a3a3;
}
textarea.form-control:placeholder-shown {
  border-color: #ebebeb;
  background-color: #ebebeb;
}

/* elements: icon */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: "icon";
  src: url("../fonts/icon.eot?bfvk0i");
  src: url("../fonts/icon.eot?bfvk0i#iefix") format("embedded-opentype"), url("../fonts/icon.ttf?bfvk0i") format("truetype"), url("../fonts/icon.woff?bfvk0i") format("woff"), url("../fonts/icon.svg?bfvk0i#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon::before, .icon::after {
  display: none;
  text-decoration: none;
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  line-height: 1;
}
.icon::before, .icon::after {
  content: "\e900";
}
.icon[target=_blank]::before, .icon[target=_blank]::after {
  transform: rotate(-45deg);
}
.icon[data-fancybox]::before, .icon[data-fancybox]::after {
  content: "\e903";
}
.icon[href^="https://maps.app.goo.gl"]::before, .icon[href^="https://maps.app.goo.gl"]::after {
  content: "\e905";
}
.icon[href^="mailto:"]::before, .icon[href^="mailto:"]::after, .icon[href*="/contact/"]::before, .icon[href*="/contact/"]::after {
  content: "\e906";
}
.icon[href^="tel:"]::before, .icon[href^="tel:"]::after {
  content: "\e907";
}
.icon[href^="https://goo.gl/maps/"]::before, .icon[href^="https://goo.gl/maps/"]::after, .icon[href^="https://www.google.com/maps/"]::before, .icon[href^="https://www.google.com/maps/"]::after {
  content: "\e905";
}
.icon[href$=".pdf"], .icon[href$=".xlsx"], .icon[href$=".xls"], .icon[href$=".docx"], .icon[href$=".doc"], .icon[href$=".pptx"], .icon[href$=".ppt"], .icon[href$=".txt"] {
  content: "\e904";
}
.icon--arrow::before, .icon--arrow::after {
  content: "\e900";
}
.icon--direction::before, .icon--direction::after {
  content: "\e901";
}
.icon--newtab::before, .icon--newtab::after {
  transform: rotate(-45deg);
}
.icon--modal::before, .icon--modal::after {
  content: "\e903";
}
.icon--file::before, .icon--file::after {
  content: "\e904";
}
.icon--pin::before, .icon--pin::after {
  content: "\e905";
}
.icon--email::before, .icon--email::after {
  content: "\e906";
}
.icon--phone::before, .icon--phone::after {
  content: "\e907";
}
.icon--camera::before, .icon--camera::after {
  content: "\e908";
}
.icon--comment::before, .icon--comment::after {
  content: "\e909";
}
.icon--video::before, .icon--video::after {
  content: "\e90a";
}
.icon--download::before, .icon--download::after {
  content: "\e90b";
}
.icon--attention::before, .icon--attention::after {
  content: "\e90c";
}
.icon--search::before, .icon--search::after {
  content: "\e90d";
}
.icon--folder::before, .icon--folder::after {
  content: "\e90e";
}
.icon--global::before, .icon--global::after {
  content: "\e90f";
}
.icon--before::before {
  display: inline-block;
  margin-right: 0.5em;
}
.icon--before::after {
  content: none;
}
.icon--after::after {
  display: inline-block;
  margin-left: 0.5em;
}
.icon--after::before {
  content: none;
}
.icon--disc::before, .icon--disc::after {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  vertical-align: middle;
}
.icon--disc::before {
  margin-right: 1em;
}
.icon--disc::after {
  margin-left: 1em;
}
.icon--r90::before, .icon--r90::after {
  transform: rotate(90deg);
}
.icon--r180::before, .icon--r180::after {
  transform: rotate(180deg);
}
.icon--r270::before, .icon--r270::after {
  transform: rotate(270deg);
}

.isnt-touch .icon--disc::before, .isnt-touch .icon--disc::after {
  transform: scale(1);
  transition-property: background-color, transform;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
.isnt-touch .icon--r90::before, .isnt-touch .icon--r90::after {
  transform: scale(1) rotate(90deg);
}
.isnt-touch .icon--r180::before, .isnt-touch .icon--r180::after {
  transform: scale(1) rotate(180deg);
}
.isnt-touch .icon--r270::before, .isnt-touch .icon--r270::after {
  transform: scale(1) rotate(270deg);
}
.isnt-touch a.icon:focus::before, .isnt-touch a.icon:focus::after, .isnt-touch a.icon:hover::before, .isnt-touch a.icon:hover::after {
  color: #009e42;
}
.isnt-touch a.icon--disc:focus::before, .isnt-touch a.icon--disc:focus::after, .isnt-touch a.icon--disc:hover::before, .isnt-touch a.icon--disc:hover::after {
  background-color: #009e42;
  transform: scale(1.1);
  color: #ffffff;
}
.isnt-touch a.icon--r90:focus::before, .isnt-touch a.icon--r90:focus::after, .isnt-touch a.icon--r90:hover::before, .isnt-touch a.icon--r90:hover::after {
  transform: scale(1.1) rotate(90deg);
}
.isnt-touch a.icon--r180:focus::before, .isnt-touch a.icon--r180:focus::after, .isnt-touch a.icon--r180:hover::before, .isnt-touch a.icon--r180:hover::after {
  transform: scale(1.1) rotate(180deg);
}
.isnt-touch a.icon--r270:focus::before, .isnt-touch a.icon--r270:focus::after, .isnt-touch a.icon--r270:hover::before, .isnt-touch a.icon--r270:hover::after {
  transform: scale(1.1) rotate(270deg);
}

/* elements: label */
/* -------------------------------------------------------------------------- */
.label {
  display: inline-block;
  padding: 0.4em 1em;
  border: 1px solid;
  border-radius: 10em;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}
.label--fp {
  color: #ff9b00;
}
.label--cs {
  color: #ef7497;
}
.label--pf {
  color: #2cc8b7;
}
.label--press {
  color: #009e42;
}
.label--info {
  color: #ef7497;
}
.label--seminar {
  color: #003685;
}
.label--media {
  color: #2cc8b7;
}
.label--regular {
  color: #009e42;
}
.label--free {
  color: #2cc8b7;
}
.label--online {
  color: #5d0082;
}

/* elements: list */
/* ---------------------------------------------------------------- */
ul.list > li {
  position: relative;
  padding-left: 1em;
}
ul.list > li::before {
  content: "●";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: #009e42;
  transform-origin: left center;
  transform: scale(0.5);
}
ul.list > li ul li::before {
  content: "○";
}

ol.list {
  counter-reset: number;
}
ol.list > li {
  position: relative;
  padding-left: 2em;
}
ol.list > li::before {
  display: inline-block;
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  text-align: right;
  color: #009e42;
}

dl.list {
  margin-top: 0;
}
dl.list dt {
  font-weight: 700;
}
dl.list dd {
  margin-left: 1em;
  text-indent: -1em;
}
dl.list dd::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  border-radius: 50%;
  background-color: #009e42;
  transform: translateY(-0.1em);
}

/* elements: logo */
/* -------------------------------------------------------------------------- */
.logo {
  display: flex;
  position: relative;
}
.logo--vertical {
  flex-direction: column;
}
.logo--vertical .logo__typo {
  margin: 16.4% 0 0 0;
}
.logo--horizontal {
  justify-content: space-between;
  align-items: flex-start;
}
.logo--horizontal .logo__symbol {
  width: 20.2%;
}
.logo--horizontal .logo__typo {
  width: 73.7%;
}
.logo--holdings.logo--vertical .logo__typo {
  margin: 16.4% 0 0 0;
}
.logo--holdings.logo--horizontal .logo__symbol {
  width: 23%;
}
.logo--holdings.logo--horizontal .logo__typo {
  width: 71.1%;
}

/* elements: tagline */
/* -------------------------------------------------------------------------- */
.tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.tagline__pri, .tagline__sec {
  font-family: "Barlow", serif;
}
.tagline__ter {
  margin-top: 0.5em;
  font-size: 60%;
  letter-spacing: 0.1em;
}

/* elements: table */
/* -------------------------------------------------------------------------- */
.table th,
.table td {
  vertical-align: top;
}
.table th {
  white-space: nowrap;
}
.table caption {
  margin-bottom: 0.5em;
  text-align: right;
}
.table--va-middle th,
.table--va-middle td {
  vertical-align: middle;
}
.table--va-bottom th,
.table--va-bottom td {
  vertical-align: bottom;
}
.table--pri {
  border-collapse: separate;
  border-spacing: 0 0.125em;
}
.table--pri th,
.table--pri td {
  padding: 1em;
}
.table--pri tbody th {
  background-color: #ebebeb;
}
.table--pri tbody td {
  background-color: #f5f5f5;
}
.table--pri thead th,
.table--pri thead td {
  background-color: #666666;
  font-weight: 500;
  color: #ffffff;
}
.table--sec {
  border-top: 1px solid #ebebeb;
}
.table--sec th,
.table--sec td {
  padding: 1.5em 0;
}
.table--sec tr > * + * {
  padding-left: 1em;
}
.table--sec tbody th {
  border-bottom: 1px solid #ebebeb;
}
.table--sec tbody td {
  border-bottom: 1px solid #ebebeb;
}
.table--sec thead th,
.table--sec thead td {
  border-bottom: 1px solid #000000;
}
.table--ter th,
.table--ter td {
  padding: 0 1em 0.5em 0;
}
.table--ter tr > * + * {
  padding-right: 0;
}
.table--border {
  border-collapse: collapse;
}
.table--border th,
.table--border td {
  border: 1px solid #e0e0e0;
}
.table--border.table--pri {
  border-spacing: 0;
}
.table--border.table--pri tbody td {
  background-color: #ffffff;
}
.table--border.table--sec th,
.table--border.table--sec td {
  padding: 1em;
  border-color: #e0e0e0;
}
.table--border.table--sec thead th,
.table--border.table--sec thead td {
  border-bottom: 1px solid #000000;
}
.table--striped th,
.table--striped td {
  padding: 1em;
}
.table--striped th {
  font-weight: 500;
}
.table--striped thead th,
.table--striped thead td {
  background-color: #999999;
  color: #ffffff;
}
.table--striped tbody tr:nth-of-type(odd) th,
.table--striped tbody tr:nth-of-type(odd) td {
  background-color: #f5f5f5;
}

.isnt-touch .table--striped tbody tr:hover th,
.isnt-touch .table--striped tbody tr:hover td {
  background-color: #ebebeb;
}
.isnt-touch .table--striped tbody tr:hover:nth-of-type(odd) th,
.isnt-touch .table--striped tbody tr:hover:nth-of-type(odd) td {
  background-color: #ebebeb;
}

.js-scrollable .table {
  width: calc(100% - 2px);
}

/* ========================================================================== */
/* Site header */
/* ========================================================================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10;
  width: 100%;
  height: 5em;
  padding: 0 5% 0 2.5%;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-header {
    perspective: 1000vw;
    padding: 0 5em 0 5%;
  }
}
.site-header__title {
  width: 20em;
  margin: 0;
  font-size: 1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-header__navi {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 5em auto auto 0;
    width: 100vw;
    min-height: calc(100lvh - 5em);
    overflow: hidden;
    background-color: #ffffff;
    opacity: 0;
    transform: translateX(100vw);
    transition: opacity 1s ease-out, transform 0s linear 1s;
  }
  .site-header__navi__item {
    opacity: 0;
    filter: blur(1em);
    transform: translateY(-2em);
    transition-property: opacity, filter, transform;
    transition-duration: 1s;
  }
  .site-header__navi__item:nth-of-type(1) {
    transition-delay: 0.1s;
  }
  .site-header__navi__item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  .site-header__navi__item:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  .site-header__navi__item:nth-of-type(4) {
    transition-delay: 0.4s;
  }
  .site-header__navi__item:nth-of-type(5) {
    transition-delay: 0.5s;
  }
  .site-header__navi__item:nth-of-type(6) {
    transition-delay: 0.6s;
  }
}
.site-header__navi__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-header__navi__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5em;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-top: -7.5em;
    font-size: 1.125em;
  }
}
.site-header__navi__anchor {
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.1em;
  line-height: 3;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-header__navi__anchor {
    padding-right: 1em;
    border-right: 0.25em solid;
    letter-spacing: 0.2em;
    line-height: 1.6;
  }
}
.site-header__navi__anchor--disabled {
  font-family: "BIZ UDPGothic", sans-serif;
  color: #cccccc;
}
.site-header__trigger {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-header__trigger {
    display: block;
    position: absolute;
    inset: 0 0 auto auto;
    width: 5em;
    height: 5em;
    cursor: pointer;
  }
}
.site-header__trigger__line {
  display: block;
  position: absolute;
  left: 30%;
  width: 40%;
  height: 1px;
  background-color: #000000;
  transition-property: top, opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
}
.site-header__trigger__line--pri {
  top: calc(45% - 0.5px);
}
.site-header__trigger__line--sec {
  top: calc(55% - 0.5px);
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .navi-open .site-header__navi {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    transition: opacity 1s ease-out, transform 0s linear 0s;
  }
  .navi-open .site-header__navi__item {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  .navi-open .site-header__trigger__line--pri {
    top: calc(50% - 0.5px);
    transform: rotate(-135deg);
  }
  .navi-open .site-header__trigger__line--sec {
    top: calc(50% - 0.5px);
    transform: rotate(135deg);
  }
}
.ambition-page .site-header__navi__item--ambition,
.ambition-page .site-footer__navi__item--ambition {
  position: relative;
}
.ambition-page .site-header__navi__item--ambition .site-header__navi__anchor,
.ambition-page .site-header__navi__item--ambition .site-footer__navi__anchor,
.ambition-page .site-footer__navi__item--ambition .site-header__navi__anchor,
.ambition-page .site-footer__navi__item--ambition .site-footer__navi__anchor {
  color: #009e42;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-page .site-header__navi__item--ambition .site-header__navi__anchor,
  .ambition-page .site-header__navi__item--ambition .site-footer__navi__anchor,
  .ambition-page .site-footer__navi__item--ambition .site-header__navi__anchor,
  .ambition-page .site-footer__navi__item--ambition .site-footer__navi__anchor {
    border-right-color: #009e42;
  }
}

.business-page .site-header__navi__item--business,
.business-page .site-footer__navi__item--business {
  position: relative;
}
.business-page .site-header__navi__item--business .site-header__navi__anchor,
.business-page .site-header__navi__item--business .site-footer__navi__anchor,
.business-page .site-footer__navi__item--business .site-header__navi__anchor,
.business-page .site-footer__navi__item--business .site-footer__navi__anchor {
  color: #009e42;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-page .site-header__navi__item--business .site-header__navi__anchor,
  .business-page .site-header__navi__item--business .site-footer__navi__anchor,
  .business-page .site-footer__navi__item--business .site-header__navi__anchor,
  .business-page .site-footer__navi__item--business .site-footer__navi__anchor {
    border-right-color: #009e42;
  }
}

.work-page .site-header__navi__item--work,
.work-page .site-footer__navi__item--work {
  position: relative;
}
.work-page .site-header__navi__item--work .site-header__navi__anchor,
.work-page .site-header__navi__item--work .site-footer__navi__anchor,
.work-page .site-footer__navi__item--work .site-header__navi__anchor,
.work-page .site-footer__navi__item--work .site-footer__navi__anchor {
  color: #009e42;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .work-page .site-header__navi__item--work .site-header__navi__anchor,
  .work-page .site-header__navi__item--work .site-footer__navi__anchor,
  .work-page .site-footer__navi__item--work .site-header__navi__anchor,
  .work-page .site-footer__navi__item--work .site-footer__navi__anchor {
    border-right-color: #009e42;
  }
}

.interview-page .site-header__navi__item--interview,
.interview-page .site-footer__navi__item--interview {
  position: relative;
}
.interview-page .site-header__navi__item--interview .site-header__navi__anchor,
.interview-page .site-header__navi__item--interview .site-footer__navi__anchor,
.interview-page .site-footer__navi__item--interview .site-header__navi__anchor,
.interview-page .site-footer__navi__item--interview .site-footer__navi__anchor {
  color: #009e42;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page .site-header__navi__item--interview .site-header__navi__anchor,
  .interview-page .site-header__navi__item--interview .site-footer__navi__anchor,
  .interview-page .site-footer__navi__item--interview .site-header__navi__anchor,
  .interview-page .site-footer__navi__item--interview .site-footer__navi__anchor {
    border-right-color: #009e42;
  }
}

.contact-page .site-header__navi__item--contact,
.contact-page .site-footer__navi__item--contact {
  position: relative;
}
.contact-page .site-header__navi__item--contact .site-header__navi__anchor,
.contact-page .site-header__navi__item--contact .site-footer__navi__anchor,
.contact-page .site-footer__navi__item--contact .site-header__navi__anchor,
.contact-page .site-footer__navi__item--contact .site-footer__navi__anchor {
  color: #009e42;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .contact-page .site-header__navi__item--contact .site-header__navi__anchor,
  .contact-page .site-header__navi__item--contact .site-footer__navi__anchor,
  .contact-page .site-footer__navi__item--contact .site-header__navi__anchor,
  .contact-page .site-footer__navi__item--contact .site-footer__navi__anchor {
    border-right-color: #009e42;
  }
}

/* ========================================================================== */
/* Site aside */
/* ========================================================================== */
.site-aside {
  position: relative;
  margin-top: 10em;
}

/* ========================================================================== */
/* Site footer */
/* ========================================================================== */
.site-footer {
  position: relative;
}
.site-footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__wrapper {
    flex-direction: column;
  }
}
.site-footer__wrapper--pri {
  padding: 6em 10%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__wrapper--pri {
    gap: 4em;
    padding: 6em 5%;
  }
}
.site-footer__wrapper--sec {
  padding: 3em 10%;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__wrapper--sec {
    gap: 3em;
    padding: 3em 5%;
  }
}
.site-footer__title {
  width: 20em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__title {
    width: 22em;
  }
}
.site-footer__navi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.site-footer__navi__anchor {
  display: inline-block;
  position: relative;
  padding-right: 1em;
  border-right: 0.25em solid;
  text-decoration: none;
  letter-spacing: 0.2em;
}
.site-footer__navi__anchor--disabled {
  font-family: "BIZ UDPGothic", sans-serif;
  color: #cccccc;
}
.site-footer__link {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  font-size: 0.875em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__link {
    max-width: 25em;
  }
}
.site-footer__link__anchor {
  text-decoration: none;
}
.site-footer__copyright {
  font-family: "Barlow", serif;
  font-size: 0.875em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__copyright {
    text-align: center;
  }
}

/* ========================================================================== */
/* Common */
/* ========================================================================== */
/* loading */
/* -------------------------------------------------------------------------- */
.is-idle:not(.is-splush) {
  opacity: 0;
  transition-property: filter, opacity;
  transition-duration: 1.5s;
  transition-timing-function: ease-out;
}

.is-loaded:not(.is-splush) {
  opacity: 1;
}

/* page-header */
/* -------------------------------------------------------------------------- */
.page-header {
  position: relative;
}

/* page-navi */
/* -------------------------------------------------------------------------- */
.page-navi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5em;
  padding-top: 15em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-navi {
    padding-top: 10em;
  }
}

.iv-item {
  filter: blur(1em);
  opacity: 0;
  transition-property: filter, opacity;
  transition-duration: 1s;
  transition-timing-function: ease-out;
}
.iv-item--active {
  filter: blur(0);
  opacity: 1;
}

/* ========================================================================== */
/* Accordion */
/* ========================================================================== */
.accordion {
  display: flex;
  flex-direction: column;
}
.accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
  padding: 1em 1em 1em 1.5em;
  background-color: #f5f5f5;
  cursor: pointer;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .accordion__trigger {
    padding: 1.5em 1em 1.5em 1.5em;
  }
}
.accordion__title {
  flex: 1;
  margin-bottom: 0;
  font-size: 1.25em;
  line-height: 1.5;
}
.accordion__icon {
  min-width: 1.5em;
  min-height: 1.5em;
  transform: translateX(0);
  transition-property: background-color, transform, color;
  transition-duration: 0.2s;
  font-size: 1.25em;
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 2px;
  background-color: #000000;
  transition-property: transform, width, background-color;
  transition-duration: 0.2s;
}
.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__target {
  padding-top: 1em;
  padding: 1.5em;
  background-color: #f5f5f5;
}
.accordion.is-open .accordion__trigger {
  background-color: #009e42;
  color: #ffffff;
}
.accordion.is-open .accordion__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #ffffff;
}
.accordion.is-open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #ffffff;
}

.accordion__target {
  display: none;
}

.isnt-touch .accordion__trigger {
  transition-property: background-color, color;
  transition-duration: 0.2s;
}
.isnt-touch .accordion__trigger:focus, .isnt-touch .accordion__trigger:hover {
  background-color: #009e42;
  color: #ffffff;
  transform: translateX(0);
  transition-property: background-color, transform, color;
  transition-duration: 0.2s;
}
.isnt-touch .accordion__trigger:focus .accordion__icon::before, .isnt-touch .accordion__trigger:focus .accordion__icon::after, .isnt-touch .accordion__trigger:hover .accordion__icon::before, .isnt-touch .accordion__trigger:hover .accordion__icon::after {
  background-color: #ffffff;
}

/* ========================================================================== */
/* Contact Container */
/* ========================================================================== */
.contact-container {
  padding: 5em 10%;
  background-color: #f5f5f5;
  text-align: center;
  letter-spacing: 0.1em;
}
.contact-container__title {
  font-size: 2em;
}
.contact-container__read {
  font-size: 1.125em;
  line-height: 2;
}
.contact-container__link .button {
  min-width: 15em;
}

/* ========================================================================== */
/* Column Container */
/* ========================================================================== */
/* column: default */
/* -------------------------------------------------------------------------- */
.column {
  display: flex;
  margin-bottom: 0;
}
.column .column__item {
  margin-bottom: 0;
}

/* column: number and width */
/* -------------------------------------------------------------------------- */
.column--col-2 .column__item {
  width: calc(50% - 0.75em);
}
.column--col-3 .column__item {
  width: calc(33.333% - 1em);
}
.column--col-4 .column__item {
  width: calc(25% - 1.125em);
}
.column--col-5 .column__item {
  width: calc(20% - 1.2em);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .column--sp-col-1 .column__item {
    width: 100%;
  }
  .column--sp-col-2 .column__item {
    width: calc(50% - 0.75em);
  }
}

/* column: flex-wrap */
/* -------------------------------------------------------------------------- */
.column--fw-wrap {
  flex-wrap: wrap;
}
.column--fw-nowrap {
  flex-wrap: nowrap;
}
.column--fw-wrap-reverse {
  flex-wrap: wrap-reverse;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .column--sp-fw-wrap {
    flex-wrap: wrap;
  }
  .column--sp-fw-nowrap {
    flex-wrap: nowrap;
  }
  .column--sp-fw-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
}

/* column: flex-direction */
/* -------------------------------------------------------------------------- */
.column--fd-row {
  flex-direction: row;
}
.column--fd-row-reverse {
  flex-direction: row-reverse;
}
.column--fd-column {
  flex-direction: column;
}
.column--fd-column-reverse {
  flex-direction: column-reverse;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .column--sp-fd-row {
    flex-direction: row;
  }
  .column--sp-fd-row-reverse {
    flex-direction: row-reverse;
  }
  .column--sp-fd-column {
    flex-direction: column;
  }
  .column--sp-fd-column-reverse {
    flex-direction: column-reverse;
  }
}

/* column: justify-content */
/* -------------------------------------------------------------------------- */
.column--jc-flex-start {
  justify-content: flex-start;
}
.column--jc-center {
  justify-content: center;
}
.column--jc-flex-end {
  justify-content: flex-end;
}
.column--jc-space-around {
  justify-content: space-around;
}
.column--jc-space-between {
  justify-content: space-between;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .column--sp-jc-flex-start {
    justify-content: flex-start;
  }
  .column--sp-jc-center {
    justify-content: center;
  }
  .column--sp-jc-flex-end {
    justify-content: flex-end;
  }
  .column--sp-jc-space-around {
    justify-content: space-around;
  }
  .column--sp-jc-space-between {
    justify-content: space-between;
  }
}

/* column: align-items */
/* -------------------------------------------------------------------------- */
.column--ai-baseline {
  align-items: baseline;
}
.column--ai-flex-start {
  align-items: flex-start;
}
.column--ai-center {
  align-items: center;
}
.column--ai-flex-end {
  align-items: flex-end;
}
.column--ai-stretch {
  align-items: stretch;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .column--sp-ai-baseline {
    align-items: baseline;
  }
  .column--sp-ai-flex-start {
    align-items: flex-start;
  }
  .column--sp-ai-center {
    align-items: center;
  }
  .column--sp-ai-flex-end {
    align-items: flex-end;
  }
  .column--sp-ai-stretch {
    align-items: stretch;
  }
}

/* column: gap */
/* -------------------------------------------------------------------------- */
.column--g-d5 {
  gap: 0.5em;
}
.column--g-1 {
  gap: 1em;
}
.column--g-1d5 {
  gap: 1.5em;
}
.column--g-2 {
  gap: 2em;
}
.column--g-2d5 {
  gap: 2.5em;
}
.column--g-3 {
  gap: 3em;
}
.column--g-3d5 {
  gap: 3.5em;
}
.column--g-4 {
  gap: 4em;
}
.column--g-3d5 {
  gap: 3.5em;
}
.column--g-5 {
  gap: 5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .column--sp-g-d5 {
    gap: 0.5em;
  }
  .column--sp-g-1 {
    gap: 1em;
  }
  .column--sp-g-1d5 {
    gap: 1.5em;
  }
  .column--sp-g-2 {
    gap: 2em;
  }
  .column--sp-g-2d5 {
    gap: 2.5em;
  }
  .column--sp-g-3 {
    gap: 3em;
  }
  .column--sp-g-3d5 {
    gap: 3.5em;
  }
  .column--sp-g-4 {
    gap: 4em;
  }
  .column--sp-g-4d5 {
    gap: 4.5em;
  }
  .column--sp-g-5 {
    gap: 5em;
  }
}

/* ========================================================================== */
/* Entry banner */
/* ========================================================================== */
.entry-banner {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  position: relative;
  margin-bottom: 3em;
}
.entry-banner__anchor {
  display: inline-block;
  width: 100%;
  background-color: transparent;
  padding: 1em;
  border: 0.15em #009e42 solid;
  text-decoration: none;
  text-align: center;
  font-size: 1.25em;
  color: #009e42;
}
.entry-banner__anchor--disable {
  border-color: #a3a3a3;
  color: #a3a3a3;
}
.entry-banner__notice {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 0.875em;
  line-height: 2;
}

.isnt-touch a.entry-banner__anchor {
  transition-property: background-color, color;
  transition-duration: 0.3s;
}
.isnt-touch a.entry-banner__anchor:focus, .isnt-touch a.entry-banner__anchor:hover {
  background-color: #009e42;
  color: #ffffff;
}
.isnt-touch a.entry-banner__anchor:focus.icon--after::after, .isnt-touch a.entry-banner__anchor:hover.icon--after::after {
  color: #ffffff;
}

/* ========================================================================== */
/* Gallery */
/* ========================================================================== */
@media screen and (max-width: 768px) and (orientation: portrait) {
  .gallery__item img {
    aspect-ratio: 1;
    object-fit: cover;
  }
}

/* ========================================================================== */
/* Flex */
/* ========================================================================== */
/* flex: default */
/* -------------------------------------------------------------------------- */
.flex {
  display: flex;
}
.flex--fd-row {
  flex-direction: row;
}
.flex--fd-row-reverse {
  flex-direction: row-reverse;
}
.flex--fd-column {
  flex-direction: column;
}
.flex--fd-column-reverse {
  flex-direction: column-reverse;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-fd-row {
    flex-direction: row;
  }
  .flex--sp-fd-row-reverse {
    flex-direction: row-reverse;
  }
  .flex--sp-fd-column {
    flex-direction: column;
  }
  .flex--sp-fd-column-reverse {
    flex-direction: column-reverse;
  }
}
.flex--jc-flex-start {
  justify-content: flex-start;
}
.flex--jc-flex-end {
  justify-content: flex-end;
}
.flex--jc-center {
  justify-content: center;
}
.flex--jc-space-around {
  justify-content: space-around;
}
.flex--jc-space-between {
  justify-content: space-between;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-jc-flex-start {
    justify-content: flex-start;
  }
  .flex--sp-jc-flex-end {
    justify-content: flex-end;
  }
  .flex--sp-jc-center {
    justify-content: center;
  }
  .flex--sp-jc-space-around {
    justify-content: space-around;
  }
  .flex--sp-jc-space-between {
    justify-content: space-between;
  }
}
.flex--ai-flex-start {
  align-items: flex-start;
}
.flex--ai-flex-end {
  align-items: flex-end;
}
.flex--ai-center {
  align-items: center;
}
.flex--ai-stretch {
  align-items: stretch;
}
.flex--ai-baseline {
  align-items: baseline;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-ai-flex-start {
    align-items: flex-start;
  }
  .flex--sp-ai-flex-end {
    align-items: flex-end;
  }
  .flex--sp-ai-center {
    align-items: center;
  }
  .flex--sp-ai-stretch {
    align-items: stretch;
  }
  .flex--sp-ai-baseline {
    align-items: baseline;
  }
}
.flex--fw-wrap {
  flex-wrap: wrap;
}
.flex--fw-nowrap {
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-fw-wrap {
    flex-wrap: wrap;
  }
  .flex--sp-fw-nowrap {
    flex-wrap: nowrap;
  }
}
.flex--g-0 {
  gap: 0;
}
.flex--g-d5 {
  gap: 0.5em;
}
.flex--g-1 {
  gap: 1em;
}
.flex--g-1d5 {
  gap: 1.5em;
}
.flex--g-2 {
  gap: 2em;
}
.flex--g-2d5 {
  gap: 2.5em;
}
.flex--g-3 {
  gap: 3em;
}
.flex--g-3d5 {
  gap: 3.5em;
}
.flex--g-4 {
  gap: 4em;
}
.flex--g-4d5 {
  gap: 4.5em;
}
.flex--g-5 {
  gap: 5em;
}
.flex--g-5d5 {
  gap: 5.5em;
}
.flex--g-6 {
  gap: 6em;
}
.flex--g-7d5 {
  gap: 7.5em;
}
.flex--g-8 {
  gap: 8em;
}
.flex--g-8d5 {
  gap: 8.5em;
}
.flex--g-9 {
  gap: 9em;
}
.flex--g-9d5 {
  gap: 9.5em;
}
.flex--g-10 {
  gap: 10em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-g-0 {
    gap: 0;
  }
  .flex--sp-g-d5 {
    gap: 0.5em;
  }
  .flex--sp-g-1 {
    gap: 1em;
  }
  .flex--sp-g-1d5 {
    gap: 1.5em;
  }
  .flex--sp-g-2 {
    gap: 2em;
  }
  .flex--sp-g-2d5 {
    gap: 2.5em;
  }
  .flex--sp-g-3 {
    gap: 3em;
  }
  .flex--sp-g-3d5 {
    gap: 3.5em;
  }
  .flex--sp-g-4 {
    gap: 4em;
  }
  .flex--sp-g-4d5 {
    gap: 4.5em;
  }
  .flex--sp-g-5 {
    gap: 5em;
  }
  .flex--sp-g-5d5 {
    gap: 5.5em;
  }
  .flex--sp-g-6 {
    gap: 6em;
  }
  .flex--sp-g-7d5 {
    gap: 7.5em;
  }
  .flex--sp-g-8 {
    gap: 8em;
  }
  .flex--sp-g-8d5 {
    gap: 8.5em;
  }
  .flex--sp-g-9 {
    gap: 9em;
  }
  .flex--sp-g-9d5 {
    gap: 9.5em;
  }
  .flex--sp-g-10 {
    gap: 10;
  }
}

/* ========================================================================== */
/* Form process */
/* ========================================================================== */
.form-process {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .form-process {
    gap: 6em;
  }
}
.form-process__number {
  width: 3em;
  height: 3em;
  border-radius: 0.25em;
  background-color: #ebebeb;
  font-family: "Barlow", serif;
  font-size: 1.25em;
  line-height: 3;
  color: #a3a3a3;
}
.form-process__label {
  font-weight: 500;
}
.form-process__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  position: relative;
  margin-bottom: 0;
  text-align: center;
  line-height: 1;
}
.form-process__item::after {
  content: "";
  display: block;
  position: absolute;
  inset: 1.875em auto auto calc(100% + 1em);
  width: 6em;
  height: 0;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .form-process__item::after {
    width: 4em;
  }
}
.form-process__item:last-of-type::after {
  content: none;
}
.form-process__item--active .form-process__number {
  background-color: #009e42;
  color: #ffffff;
}

/* ========================================================================== */
/* Form */
/* ========================================================================== */
.form {
  margin-bottom: 0;
}
.form__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5em;
  padding: 3em 0;
  border-top: 1px solid #ebebeb;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .form__row {
    flex-direction: column;
  }
}
.form__col {
  width: calc(50% - 0.75em);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .form__col {
    width: 100%;
    margin-bottom: 1.5em;
  }
  .form__col:last-of-type {
    margin-bottom: 0;
  }
}
.form__title {
  margin-bottom: 1em;
  font-size: 1.25em !important;
  line-height: 1.6;
}
.form__title.title-icon > * {
  text-indent: 0;
}
.form__error {
  font-weight: 500;
  margin-top: 0.5em;
  color: #ef454a;
}
.form__value {
  padding-left: 1em;
  font-size: 1.25em;
  color: #333333;
}
.form__group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1em;
}
.form__group__title {
  width: 100%;
}
.form__group--ai-center {
  align-items: center;
}
.form__label + .form__label {
  margin-left: 1em;
}
.form__required, .form__any {
  display: inline-block;
  transform: translateY(-0.125em);
  margin-left: 1em;
  padding: 0.125em 1em;
  border-radius: 5em;
  font-size: 0.75em;
}
.form__required {
  background-color: #009e42;
  font-family: "BIZ UDPGothic", sans-serif;
  color: #ffffff;
}
.form__any {
  background-color: #a3a3a3;
  color: #ffffff;
}
.form .form-control[type=text], .form .form-control[type=email], .form .form-control[type=password], .form .form-control[type=search], .form .form-control[type=tel], .form .form-control[type=url], .form .form-control[type=number], .form .form-control[type=month], .form .form-control[type=week] {
  width: 100%;
}
.form__notice {
  margin-top: 0.25em;
  font-size: 0.875em;
}
.form__row--center {
  justify-content: center;
  align-items: center;
}
.form__col--narrow {
  width: calc(25% - 0.75em);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .form__col--narrow {
    width: 100%;
  }
}
.form__col--middle {
  width: calc(33.333% - 0.75em);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .form__col--middle {
    width: 100%;
  }
}
.form__col--wide {
  width: calc(75% - 0.75em);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .form__col--wide {
    width: 100%;
  }
}
.form__col--full {
  width: 100%;
}
.form__col--bottom {
  text-align: center;
}
.form__group--column {
  flex-direction: column;
}
.form__group--column .form__item {
  margin-right: 0;
  margin-bottom: 0.5em;
}
.form__group--column .form__item:last-of-type {
  margin-bottom: 0;
}
.form__error--base {
  width: 100%;
  padding: 1em;
  border-radius: 0.5em;
  background-color: #ef454a;
  text-align: center;
  color: #ffffff;
}
.form__error--banner {
  position: fixed;
  inset: auto auto 0 0;
  z-index: 11;
  border-radius: 0;
}
.form__error--banner .form__error__close {
  display: block;
  position: absolute;
  inset: calc(50% - 1em) 0.25em auto auto;
  width: 2em;
  height: 2em;
  font-size: 1.5em;
  line-height: 2;
}
.form__error--banner .form__error__close::before {
  content: "×";
  display: block;
}
.form__captcha-img {
  max-width: 14em;
  border-radius: 0.25em;
}
.form button,
.form .button {
  font-size: 1em;
}

ul.form__value {
  margin-bottom: 0;
}
ul.form__value li:last-of-type {
  margin-bottom: 0;
}

/* ========================================================================== */
/* Interview Index */
/* ========================================================================== */
.interview-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 7.5em 5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-index {
    flex-wrap: wrap;
    gap: 5em 2.5em;
  }
}
.interview-index__item {
  position: relative;
  width: calc(33.333% - 3.333em);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-index__item {
    width: calc(50% - 1.25em);
  }
}
.interview-index__anchor {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}
.interview-index__wrapper {
  display: inline-block;
  position: relative;
}
.interview-index__wrapper--pri {
  padding-bottom: 12%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-index__wrapper--pri {
    padding-bottom: 1.7em;
  }
}
.interview-index__wrapper--sec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}
.interview-index__image {
  display: inline-block;
}
.interview-index__title {
  display: inline-block;
  position: absolute;
  inset: auto 0.5em 0 auto;
  padding-top: 0.25em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background-color: #fff;
  font-family: "BIZ UDPMincho", sans-serif;
  font-size: 2em;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-index__title {
    font-size: 1.75em;
  }
}
.interview-index__name {
  font-family: "BIZ UDPMincho", sans-serif;
  font-size: 1.5em;
}
.interview-index__status {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 0.875em;
}
.isnt-touch .interview-index__anchor {
  transition: color 0.3s ease-out;
}
.isnt-touch .interview-index__image {
  overflow: hidden;
}
.isnt-touch .interview-index__image img {
  transform: scale(1);
  transition: transform 0.3s ease-out;
}
.isnt-touch .interview-index__anchor:focus .interview-index__image img, .isnt-touch .interview-index__anchor:hover .interview-index__image img {
  transform: scale(1.1);
}

.interview-page.tokyo-page .interview-index__item--tokyo::after {
  content: "";
  display: inline-block;
  position: absolute;
  inset: -1.5em auto auto calc(50% - 1.5em);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #000;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%2012.2c1.461-2.736%204.383-2.791%205.619-1.228s2.36%204.299%202.472%205.583c3.235-6.844%208.69-12.825%2014.37-16.118%201.535-.89%202.144-.316.787.782-5.75%204.651-9.772%2010.822-12.829%2019.409-.806%202.264-3.226%204.804-4.069%202.403s-3.709-10.384-6.35-10.831z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 33.333%;
}
.interview-page.fukuoka-page .interview-index__item--fukuoka::after {
  content: "";
  display: inline-block;
  position: absolute;
  inset: -1.5em auto auto calc(50% - 1.5em);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #000;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%2012.2c1.461-2.736%204.383-2.791%205.619-1.228s2.36%204.299%202.472%205.583c3.235-6.844%208.69-12.825%2014.37-16.118%201.535-.89%202.144-.316.787.782-5.75%204.651-9.772%2010.822-12.829%2019.409-.806%202.264-3.226%204.804-4.069%202.403s-3.709-10.384-6.35-10.831z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 33.333%;
}
.interview-page.kochi-page .interview-index__item--kochi::after {
  content: "";
  display: inline-block;
  position: absolute;
  inset: -1.5em auto auto calc(50% - 1.5em);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #000;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%2012.2c1.461-2.736%204.383-2.791%205.619-1.228s2.36%204.299%202.472%205.583c3.235-6.844%208.69-12.825%2014.37-16.118%201.535-.89%202.144-.316.787.782-5.75%204.651-9.772%2010.822-12.829%2019.409-.806%202.264-3.226%204.804-4.069%202.403s-3.709-10.384-6.35-10.831z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 33.333%;
}

/* ========================================================================== */
/* News List */
/* ========================================================================== */
.news-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  border-top: 1px solid #e0e0e0;
}
.news-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: 0;
  padding: 1.5em 0 1em 2em;
  border-bottom: 1px solid #e0e0e0;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-list__item {
    flex-direction: column;
  }
}
.news-list__item.hidden {
  overflow: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
}
.news-list__date {
  display: inline-block;
  white-space: nowrap;
  font-family: "Barlow", serif;
  font-size: 0.875em;
  color: #a3a3a3;
}
.news-list__anchor {
  display: inline-block;
  position: relative;
  font-family: "BIZ UDPGothic", sans-serif;
  text-decoration: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-list__anchor {
    width: 100%;
  }
}
.news-list__anchor.icon--before::before {
  position: absolute;
  inset: 0.5em auto auto -2em;
  margin: 0;
}
.news-list__notice {
  margin-top: 1em;
  font-family: "BIZ UDPGothic", sans-serif;
}
.news-list__link {
  margin-top: 3em;
  text-align: right;
  font-size: 0.75em;
}

/* ========================================================================== */
/* Pagenation */
/* ========================================================================== */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 0;
}
.pagination__item {
  margin-bottom: 0;
}
.pagination__anchor {
  display: inline-block;
  width: 3em;
  height: 3em;
  border-bottom: 0;
  border-radius: 50%;
  background-color: #ebebeb;
  text-decoration: none;
  text-align: center;
  line-height: 3;
  color: #a3a3a3;
}
.pagination__item--active .pagination__anchor {
  background-color: #009e42;
  color: #ffffff;
}

.isnt-touch .pagination__anchor:focus, .isnt-touch .pagination__anchor:hover {
  background-color: #009e42;
  color: #ffffff;
}

/* ========================================================================== */
/* Scroll Assist */
/* ========================================================================== */
.scroll-assist {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 8em;
  z-index: 1;
  line-height: 1;
}
.scroll-assist__title {
  white-space: nowrap;
  writing-mode: vertical-rl;
  font-family: "Barlow", serif;
  font-weight: 500;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  color: #000000;
}
.scroll-assist__line {
  position: relative;
  width: 1px;
  height: 4em;
  overflow: hidden;
}
.scroll-assist__line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000000;
  animation: scroll-assist_line 2s ease-in-out infinite;
}

@keyframes scroll-assist_line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
/* ========================================================================== */
/* Swiper */
/* ========================================================================== */
:root {
  --swiper-theme-color: #403c44;
  --swiper-navigation-sides-offset: 1em;
  --swiper-navigation-size: 2em;
  --swiper-pagination-color: #ffc627;
  --swiper-pagination-bottom: 1em;
  --swiper-pagination-bullet-size: .5em;
  --swiper-pagination-bullet-horizontal-gap: .5em;
  --swiper-pagination-bullet-vertical-gap: .5em;
  --swiper-pagination-progressbar-size: .25em;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
  bottom: 1.5em;
  width: 3em;
  height: 3em;
  border-radius: 50%;
}

.swiper-button-prev {
  left: auto;
  right: 5em;
}

.swiper-button-next {
  right: 1.5em;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: auto;
  bottom: 0;
}

/* circle-pagination */
/* -------------------------------------------------------------------------- */
.circle-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 3em;
  height: 3em;
  margin: 0 !important;
  background-color: transparent;
  text-align: center;
  font-family: "Barlow", serif;
  line-height: 1;
  opacity: 1;
  cursor: pointer;
}
.circle-pagination__number {
  position: relative;
  color: #000000;
}
.circle-pagination__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.circle-pagination__base-circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}
.circle-pagination__progress-circle {
  fill: none;
  stroke: #009e42;
  stroke-width: 2;
  animation: circle 5s linear forwards;
}

.isnt-touch .circle-pagination__number {
  transition: color 0.2s;
}
.isnt-touch .circle-pagination:focus .circle-pagination__number, .isnt-touch .circle-pagination:hover .circle-pagination__number {
  color: #009e42;
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 69;
  }
  99.9%, to {
    stroke-dasharray: 69 69;
  }
}
.swiper-pagination-bullet.swiper-pagination-bullet-active .circle-pagination__number {
  color: #009e42;
}

.circle-pagination:not(.swiper-pagination-bullet-active) .circle-pagination__progress-circle {
  /* 非アクティブ時なサークルのsvgは非表示に */
  display: none;
}

/* ========================================================================== */
/* Title */
/* ========================================================================== */
/* multi-title */
/* -------------------------------------------------------------------------- */
.multi-title {
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25em;
  line-height: 1.4;
}
.multi-title__pri {
  font-size: 150%;
}
.multi-title__sec {
  font-size: 75%;
}
.multi-title--center {
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  text-align: center;
}
.multi-title--right {
  align-items: flex-end;
}
.multi-title--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 1.5em;
}

a.multi-title {
  display: inline-flex;
  text-decoration: none;
}

/* ix-titl */
/* -------------------------------------------------------------------------- */
.fix-title {
  position: fixed;
  inset: 15em auto auto 1.5em;
  writing-mode: vertical-rl;
  font-family: "Barlow", serif;
  opacity: 0;
}

/* vb-title */
/* -------------------------------------------------------------------------- */
.vb-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.vb-title__tl {
  display: inline-block;
  padding-right: 1em;
  border-right: 0.25em solid;
}

/* be1-title */
/* -------------------------------------------------------------------------- */
.be1-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.be1-title__pri {
  transform: translateY(-0.15em);
  font-family: "Barlow", serif;
  line-height: 1;
}
.be1-title__sec {
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1em;
}

/* title-icon */
/* -------------------------------------------------------------------------- */
.title-icon {
  position: relative;
  line-height: 1.4;
}
.title-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  text-decoration: none;
  background-image: none;
  background-color: #264653;
}
.title-icon--bar {
  padding-left: 0.75em;
}
.title-icon--bar::before {
  top: 0;
  left: 0;
  width: 0.25em;
  height: 1.4em;
}
.title-icon--circle {
  padding-left: 1.25em;
}
.title-icon--circle::before {
  top: 0.367em;
  left: 0;
  width: 0.666em;
  height: 0.666em;
  aspect-ratio: 1;
  border: 0.2em solid #264653;
  border-radius: 50%;
  background-color: transparent;
}
.title-icon--circle.multi-title::before {
  top: 0.666em;
}
.title-icon--circle.multi-title:has(.multi-title__sec.ff-libre)::before {
  top: 0.8em;
}
.title-icon--dot {
  padding-left: 1em;
}
.title-icon--dot::before {
  top: 0.65em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-image: none;
  transform: translateY(-0.075em);
}

/* ========================================================================== */
/* Home Page */
/* ========================================================================== */
/* home-business */
/* -------------------------------------------------------------------------- */
.splush {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100vw;
  height: 100svh;
  margin-bottom: 10vh;
  animation: fadeout 1.5s linear 7.1s forwards;
}
.splush__skip {
  position: absolute;
  inset: auto 1.5em 1em auto;
  font-family: "Barlow", serif;
  cursor: pointer;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .splush__skip {
    inset: auto 1.5em 1.5em auto;
  }
}
.splush__item {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
  line-height: 2em;
  writing-mode: vertical-rl;
  white-space: nowrap;
  filter: blur(0);
  opacity: 1;
  transition-property: filter, opacity;
  transition-timing-function: ease-out;
  transition-duration: 1.5s;
}
.splush__item--pri {
  transition-delay: 3.5s;
}
.splush__item--sec {
  transition-delay: 8s;
}
.splush__item__tl {
  margin: 0;
  transform: translateY(-1em);
  filter: blur(0.5em);
  opacity: 0;
  font-size: 1.5em;
  line-height: 2.5;
  transition-property: transform, filter, opacity;
  transition-timing-function: ease-out;
  transition-duration: 1.5s;
}
.splush__item__tl--1 {
  transition-delay: 0.5s;
}
.splush__item__tl--2 {
  transition-delay: 1s;
}
.splush__item__tl--3 {
  transition-delay: 4.5s;
}
.splush__item__tl--4 {
  transition-delay: 5s;
}

.is-loaded .splush__item {
  filter: blur(0.5em);
  opacity: 0;
}
.is-loaded .splush__item__tl {
  transform: translateY(0);
  filter: blur(0);
  opacity: 1;
}

.home-page .site-header,
.home-page .site-footer,
.home-page .site-aside,
.home-page .page-section,
.home-page .gallery,
.home-page .scroll-assist {
  opacity: 0;
  filter: blur(1em);
  transition-property: filter, opacity;
  transition-duration: 1.5s;
  transition-timing-function: ease-out;
  transition-delay: 2s;
}
.home-page .home-header__logo {
  transform: scale(1.05);
  opacity: 0;
  filter: blur(1em);
  transition-property: transform, filter, opacity;
  transition-duration: 1.5s;
  transition-timing-function: ease-out;
  transition-delay: 1.5s;
}
.home-page .home-header__catch {
  transform: translateY(-3em);
  opacity: 0;
  filter: blur(1em);
  transition-property: transform, filter, opacity;
  transition-duration: 1.5s;
  transition-timing-function: ease-out;
}
.home-page.is-hush .site-header,
.home-page.is-hush .site-footer,
.home-page.is-hush .site-aside,
.home-page.is-hush .page-section,
.home-page.is-hush .gallery,
.home-page.is-hush .scroll-assist,
.home-page.is-hush .home-header__logo {
  transition-delay: 0s;
}

.home-page:not(.is-splush) {
  overflow: visible;
}
.home-page:not(.is-splush) .site-header,
.home-page:not(.is-splush) .site-footer,
.home-page:not(.is-splush) .site-aside,
.home-page:not(.is-splush) .page-section,
.home-page:not(.is-splush) .gallery,
.home-page:not(.is-splush) .scroll-assist {
  filter: blur(0);
  opacity: 1;
}
.home-page:not(.is-splush) .home-header__logo {
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
}
.home-page:not(.is-splush) .home-header__catch {
  transform: translateY(0);
  filter: blur(0);
  opacity: 1;
}
.home-page:not(.is-splush) .splush {
  display: none;
}

/* home-header */
/* -------------------------------------------------------------------------- */
.home-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5em 1em 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-header {
    flex-direction: column-reverse;
    align-items: flex-end;
    padding: 5em 10% 10em 5%;
  }
}
.home-header__logo {
  width: 65em;
  margin-bottom: 0;
  font-size: 1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-header__logo {
    width: 100%;
    margin-top: -2.5em;
  }
}
.home-header__catch {
  margin-right: 6.5em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.5em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-header__catch {
    margin-right: 3.5em;
  }
}
.home-header .scroll-assist {
  position: absolute;
  inset: auto 2.5% 0 auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-header .scroll-assist {
    inset: auto calc(50% - 0.5em) 0 auto;
  }
}

/* home-mission */
/* -------------------------------------------------------------------------- */
.home-mission {
  display: flex;
  flex-direction: row-reverse;
  gap: 13.75em;
  padding: 5em 10% 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-mission {
    flex-direction: column;
    align-items: center;
    gap: 5em;
  }
}
.home-mission__header {
  display: flex;
  flex-direction: row-reverse;
  gap: 3em;
  align-items: flex-start;
  white-space: nowrap;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-mission__header {
    transform: translateX(2.75em);
  }
}
.home-mission__title {
  margin: 0;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.home-mission__catch {
  margin: 0;
  font-size: 3em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-mission__catch {
    font-size: 2.5em;
  }
}
.home-mission__content {
  padding-top: 2em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  line-height: 2.1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-mission__content {
    padding-top: 0;
    font-size: 1.25em;
  }
}
.home-mission__read {
  margin: 0 0 0 1.5em;
}
.home-mission__read:last-of-type {
  margin: 0;
}

/* home-ambition */
/* -------------------------------------------------------------------------- */
.home-ambition {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 7.5em 5% 0 10%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-ambition {
    flex-direction: column;
    align-items: center;
    gap: 5em;
    padding: 10em 5% 0;
  }
}
.home-ambition__image {
  width: 60em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-ambition__image {
    width: 100%;
  }
}
.home-ambition__content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 17.5em;
  padding-top: 8em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-ambition__content {
    padding-top: 0;
  }
}
.home-ambition__header {
  position: relative;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
.home-ambition__title {
  position: absolute;
  inset: 0 0 auto auto;
  margin: 0;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.home-ambition__catch {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-ambition__catch {
    font-size: 1.75em;
  }
}
.home-ambition__read {
  text-align: justify;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-ambition__read {
    font-size: 1.125em;
  }
}
.home-ambition__read:last-of-type {
  margin-bottom: 0;
}
.home-ambition__link .button {
  width: 100%;
  font-family: "Barlow", serif;
}

/* home-business */
/* -------------------------------------------------------------------------- */
.home-business {
  display: flex;
  position: relative;
  padding: 15em 0 0 35%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-business {
    flex-direction: column;
    align-items: center;
    gap: 5em;
    padding: 38.5em 0 0;
  }
}
.home-business__image {
  position: absolute;
}
.home-business__image--pri {
  inset: 10em auto auto 15%;
  width: 15em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-business__image--pri {
    inset: 10em auto auto 15%;
    width: 10em;
  }
}
.home-business__image--sec {
  inset: 15em auto auto 60%;
  width: 30em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-business__image--sec {
    inset: 20em auto auto 30%;
    width: 20em;
  }
}
.home-business__content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 17.5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-business__content {
    padding-top: 0;
  }
}
.home-business__header {
  position: relative;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
.home-business__title {
  position: absolute;
  inset: 0 0 auto auto;
  margin: 0;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.home-business__catch {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-business__catch {
    font-size: 1.75em;
  }
}
.home-business__read {
  text-align: justify;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-business__read {
    font-size: 1.125em;
  }
}
.home-business__read:last-of-type {
  margin-bottom: 0;
}
.home-business__link .button {
  width: 100%;
  font-family: "Barlow", serif;
}

/* home-interview */
/* -------------------------------------------------------------------------- */
.home-interview {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6em;
  padding: 10em 5% 15em 10%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-interview {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
}
.home-interview__header {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 2em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-interview__header {
    transform: translateX(3.25em);
  }
}
.home-interview__title {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.home-interview__catch {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-interview__catch {
    font-size: 1.75em;
  }
}

/* home-news */
/* -------------------------------------------------------------------------- */
.home-news {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10em 10% 0 20%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-news {
    padding: 10em 5% 0;
  }
}
.home-news__title {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2em;
  letter-spacing: 0.1em;
}
.home-news__content {
  width: 55em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .home-news__content {
    width: 80%;
  }
}

/* ========================================================================== */
/* Ambition Page */
/* ========================================================================== */
/* ambition-header */
/* -------------------------------------------------------------------------- */
.ambition-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding-top: 10em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-header {
    padding-top: 5em;
  }
}
.ambition-header__content {
  display: flex;
  flex-direction: row-reverse;
  gap: 2em;
  position: relative;
  white-space: nowrap;
  transform: translateX(2.375em);
}
.ambition-header__title {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ambition-header__catch {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-header__catch {
    font-size: 1.75em;
  }
}
.ambition-header__image {
  margin-top: -9em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-header__image {
    aspect-ratio: 1;
    overflow: hidden;
  }
}
.ambition-header__image img {
  aspect-ratio: 2.5/1;
  object-fit: cover;
  object-position: bottom;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-header__image img {
    aspect-ratio: 1;
    transform-origin: bottom;
    transform: scale(1.5);
  }
}

/* ambition-mission */
/* -------------------------------------------------------------------------- */
.ambition-mission {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.5em;
  position: relative;
  padding-top: 15em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission {
    gap: 5em;
    padding-top: 7.5em;
  }
}
.ambition-mission__header {
  display: flex;
  flex-direction: row-reverse;
  gap: 3em;
  align-items: flex-start;
  white-space: nowrap;
  position: absolute;
  inset: 15em 5% auto auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission__header {
    position: relative;
    inset: auto;
    transform: translateX(2.25em);
  }
}
.ambition-mission__title {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ambition-mission__title__pri {
  font-family: "Barlow", serif;
  font-size: 1.5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission__title__pri {
    font-size: 1.375em;
  }
}
.ambition-mission__title__sec {
  padding-right: 0.5em;
  border-right: 0.125em solid;
  font-size: 2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission__title__sec {
    font-size: 1.75em;
  }
}
.ambition-mission__catch {
  position: absolute;
  inset: 0 0 auto auto;
  margin: 0;
  white-space: nowrap;
  font-size: 3em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission__catch {
    font-size: 2.5em;
  }
}
.ambition-mission__content {
  position: relative;
  padding-top: 2em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  line-height: 2.1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission__content {
    font-size: 1.25em;
    line-height: 2;
  }
}
.ambition-mission__wrapper {
  width: 60%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission__wrapper {
    width: 90%;
  }
}
.ambition-mission__wrapper--pri {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission__wrapper--pri {
    padding-right: 5em;
  }
}
.ambition-mission__wrapper--pri .ambition-mission__read {
  margin: 0 0 0 1.5em;
}
.ambition-mission__wrapper--sec .ambition-mission__read {
  text-align: justify;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  line-height: 2;
}
.ambition-mission__read:last-of-type {
  margin: 0;
}
.ambition-mission__image {
  width: 90%;
}
.ambition-mission__image img {
  aspect-ratio: 2.5/1;
  object-fit: cover;
  object-position: center 80%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-mission__image img {
    aspect-ratio: 3/2;
  }
}

/* ambition-value */
/* -------------------------------------------------------------------------- */
.ambition-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.5em;
  position: relative;
  padding-top: 15em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value {
    gap: 5em;
    padding-top: 7.5em;
  }
}
.ambition-value__header {
  display: flex;
  flex-direction: row-reverse;
  gap: 3em;
  align-items: flex-start;
  white-space: nowrap;
  position: absolute;
  inset: 15em 5% auto auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__header {
    position: relative;
    inset: auto;
    transform: translateX(2.25em);
  }
}
.ambition-value__title {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ambition-value__title__pri {
  font-family: "Barlow", serif;
  font-size: 1.5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__title__pri {
    font-size: 1.375em;
  }
}
.ambition-value__title__sec {
  padding-right: 0.5em;
  border-right: 0.125em solid;
  font-size: 2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__title__sec {
    font-size: 1.75em;
  }
}
.ambition-value__wrapper {
  position: relative;
  width: 60%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__wrapper {
    width: 90%;
  }
}
.ambition-value__divider {
  margin: 4em 0;
}
.ambition-value__read {
  text-align: justify;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  line-height: 2;
}
.ambition-value__read:last-of-type {
  margin: 0;
}
.ambition-value__subtitle {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
  font-size: 1em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__subtitle {
    flex-direction: column;
    gap: 2em;
    text-align: center;
  }
}
.ambition-value__subtitle__pri {
  width: 2.5em;
  font-family: "Barlow", serif;
  font-size: 2.5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__subtitle__pri {
    width: fit-content;
  }
}
.ambition-value__subtitle__sec {
  font-size: 1.75em;
  letter-spacing: 0.1em;
}
.ambition-value__content {
  position: relative;
}
.ambition-value__section--pri .ambition-value__content {
  padding-left: 10em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__section--pri .ambition-value__content {
    padding-left: 0;
  }
}
.ambition-value__section--pri .ambition-value__image {
  position: absolute;
  inset: 0 auto auto -15em;
  width: 20em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__section--pri .ambition-value__image {
    position: relative;
    inset: auto;
    margin: 0 auto 3em;
  }
}
.ambition-value__section--sec {
  padding-top: 6em;
}
.ambition-value__section--sec .ambition-value__content {
  padding-right: 15em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__section--sec .ambition-value__content {
    padding-right: 0;
  }
}
.ambition-value__section--sec .ambition-value__image {
  position: absolute;
  inset: 0 -15em auto auto;
  width: 25em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__section--sec .ambition-value__image {
    position: relative;
    inset: auto;
    margin: 0 auto 3em;
    width: 20em;
  }
}
.ambition-value__section--ter {
  padding-top: 6em;
}
.ambition-value__section--ter .ambition-value__content {
  display: flex;
  flex-direction: column-reverse;
  padding-right: 15em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__section--ter .ambition-value__content {
    flex-direction: column;
    padding-right: 0;
  }
}
.ambition-value__section--ter .ambition-value__image {
  width: 17.5em;
  margin-top: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-value__section--ter .ambition-value__image {
    position: relative;
    inset: auto;
    margin: 0 auto 3em;
    width: 20em;
  }
}

/* ambition-symbol */
/* -------------------------------------------------------------------------- */
.ambition-symbol {
  position: relative;
  padding: 10em 20% 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-symbol {
    padding: 7.5em 5% 0;
  }
}
.ambition-symbol__title {
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.ambition-symbol__read {
  text-align: center;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  line-height: 2;
}
.ambition-symbol__read:last-of-type {
  margin: 0;
}
.ambition-symbol__image {
  margin: 5em 0;
}
.ambition-symbol__image img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-symbol__image img {
    aspect-ratio: 1;
  }
}
.ambition-symbol__profile {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3em;
  margin-top: 7.5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-symbol__profile {
    flex-direction: column;
    align-items: center;
  }
}
.ambition-symbol__profile__image {
  width: calc(33.333% - 1.5em);
  margin: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-symbol__profile__image {
    width: 50%;
  }
}
.ambition-symbol__profile__content {
  width: calc(66.666% - 1.5em);
  margin: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-symbol__profile__content {
    width: 100%;
  }
}
.ambition-symbol__profile__name {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 2em;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .ambition-symbol__profile__name {
    flex-direction: column;
    gap: 0;
  }
}
.ambition-symbol__profile__name__sec {
  font-size: 50%;
}
.ambition-symbol__profile__title {
  font-size: 1.5em;
}
.ambition-symbol__profile__read {
  text-align: justify;
  font-size: 1.125em;
  line-height: 2;
  letter-spacing: 0.1em;
}
.ambition-symbol__header .ambition-symbol__read {
  text-align: left;
}

/* ========================================================================== */
/* Business Page */
/* ========================================================================== */
/* business-header */
/* -------------------------------------------------------------------------- */
.business-header {
  display: flex;
  justify-content: space-between;
  padding-top: 10em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-header {
    padding-top: 5em;
  }
}
.business-header__content {
  display: flex;
  flex-direction: row-reverse;
  gap: 2em;
  position: relative;
  padding-right: 5%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-header__content {
    width: 50%;
  }
}
.business-header__title {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.business-header__catch {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-header__catch {
    font-size: 1.75em;
  }
}
.business-header__image {
  width: 70%;
  margin-top: 10em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-header__image {
    width: 60%;
    margin-top: 7.5em;
  }
  .business-header__image img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

/* business-container */
/* -------------------------------------------------------------------------- */
.business-container {
  position: relative;
  padding: 10em 30% 0 20%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container {
    padding: 7.5em 5% 0 5%;
  }
}
.business-container__header {
  margin-bottom: 5em;
}
.business-container__title {
  font-size: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__title {
    font-size: 1.75em;
  }
}
.business-container__subtitle {
  position: relative;
  padding-left: 0.75em;
  font-size: 1.5em;
  line-height: 1.5;
}
.business-container__subtitle::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0.25em auto auto 0;
  width: 0.125em;
  height: 1em;
  border-radius: 0.15em;
  background-color: #009e42;
}
.business-container__catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75em;
  position: absolute;
  inset: 5em 15% auto auto;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__catch {
    inset: 5em 5% auto auto;
    font-size: 1.5em;
  }
}
.business-container__catch__tl {
  padding-right: 0.75em;
  border-right: 0.125em solid;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__content {
    padding-right: 30%;
  }
}
.business-container__profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3em;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__profile {
    flex-direction: column-reverse;
  }
}
.business-container__profile__name {
  font-size: 1.75em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__profile__name {
    font-size: 1.5em;
  }
}
.business-container__profile__status {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 2;
}
.business-container__profile__status:last-of-type {
  margin: 0;
}
.business-container__profile__image {
  width: 20em;
  margin-top: -7.5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__profile__image {
    width: 16.666em;
    margin-top: 0;
  }
}
.business-container__read {
  text-align: justify;
  font-size: 1.25em;
  letter-spacing: 0.1em;
  line-height: 2;
}
.business-container__read:last-of-type {
  margin: 0;
}
.business-container__table {
  margin-top: 3em;
  padding: 3em 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__table {
    width: 90vw;
  }
}
.business-container__table .table {
  margin-bottom: 0;
}
.business-container__table .table th,
.business-container__table .table td {
  padding: 1em 0;
}
.business-container__table .table th {
  padding-right: 3em;
}
.business-container__structure {
  margin-top: 3em;
}
.business-container__structure img {
  width: 60vw;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__structure img {
    width: 100vw;
    margin-left: -5vw;
  }
}
.business-container__link {
  width: 60vw;
  text-align: center;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__link {
    width: auto;
  }
}
.business-container__image {
  position: absolute;
  inset: 0 auto auto calc(100% + 5em);
  width: 17.5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__image {
    position: relative;
    inset: auto;
    margin: 3em auto;
  }
}
.business-container__image img {
  aspect-ratio: 2/3;
  object-fit: cover;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business-container__image img {
    aspect-ratio: 3/2;
  }
}

.chart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 6em 2em;
  margin-top: 6em;
}
.chart__item {
  flex: 1 1 24em;
  max-width: 24em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .chart__item {
    max-width: 80%;
  }
  .chart__item:last-of-type {
    max-width: inherit;
  }
}
.chart__figure {
  margin-bottom: 0;
}

.style-table {
  width: 100%;
}
.style-table th, .style-table td {
  padding: 0.5em 1em;
  border: 1px solid #e0e0e0;
}
.style-table thead {
  background-color: #f5f5f5;
}

/* section */
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--chief .business-container__read,
  .page-section--leader .business-container__read {
    width: 90vw;
  }
  .page-section--features .business-container__read:nth-of-type(n+2) {
    width: 90vw;
  }
  .page-section--fields .business-container__content,
  .page-section--style .business-container__content,
  .page-section--support .business-container__content,
  .page-section--status .business-container__content {
    padding-right: 0;
  }
}
/* ========================================================================== */
/* Interview Page */
/* ========================================================================== */
/* interview-page */
/* -------------------------------------------------------------------------- */
.interview-page.sec-page .interview-index {
  padding: 5em 15% 0;
}
.interview-page.ter-page .interview-index {
  padding: 0 20%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.ter-page .interview-index {
    padding: 0 10%;
  }
}

/* interview-header */
/* -------------------------------------------------------------------------- */
.interview-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 10em;
}
.interview-header__wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 0 10%;
}
.interview-header__wrapper--pri {
  min-height: 15em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-header__wrapper--pri {
    min-height: 12.5em;
  }
}
.interview-header__wrapper--sec {
  align-items: flex-end;
  gap: 5em;
  padding: 5em 10% 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-header__wrapper--sec {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.interview-header__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2em;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1em;
}
.interview-header__title__pri {
  position: relative;
  font-family: "BIZ UDPGothic", sans-serif;
}
.interview-header__title__sec {
  font-size: 2em;
}
.interview-header__title:has(.interview-header__title__sec) {
  transform: translate(2.15em);
}
.interview-header__image img {
  aspect-ratio: 2/1;
  object-fit: cover;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-header__image img {
    aspect-ratio: 1;
  }
}
.interview-header__catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25em;
  margin: 0;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "BIZ UDPMincho", sans-serif;
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-header__catch {
    font-size: 1.75em;
  }
}
.interview-header__profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1em;
}
.interview-header__profile__name {
  position: relative;
  font-size: 2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-header__profile__name {
    font-size: svw(3.2);
  }
}
.interview-header__profile__name::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 -0.325em auto auto;
  width: 0.15em;
  height: 100%;
  background-color: black;
}
.interview-header__profile__status {
  font-family: "BIZ UDPGothic", sans-serif;
}
.interview-header__read {
  width: 30vw;
  margin-right: auto;
  text-align: justify;
  font-family: "BIZ UDPMincho", sans-serif;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-header__read {
    width: 100%;
    font-size: svw(2);
  }
}
.interview-header__read:last-of-type {
  margin-bottom: 0;
}

/* interview-container */
/* -------------------------------------------------------------------------- */
.interview-container {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 4em;
  padding: 0 10%;
}
.interview-container__header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-top: 10em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__header {
    flex-direction: column;
    align-items: center;
    gap: 2.5em;
  }
}
.interview-container__header__title {
  position: relative;
  margin: 0;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__header__title {
    font-size: 1.75em;
  }
}
.interview-container__header__caption {
  position: absolute;
  inset: 0 -5em auto auto;
  text-orientation: mixed;
  font-family: "Barlow", serif;
  font-size: 50%;
}
.interview-container__header__image {
  width: 60vw;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__header__image {
    width: 90vw;
  }
  .interview-container__header__image img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}
.interview-container__section {
  display: inline-block;
  height: 36em;
  padding-top: 5em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__section {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__section--column {
    column-count: 2;
    column-rule: solid 1px #e5e5e5;
    column-gap: 4em;
    height: 76em;
  }
}
.interview-container__title {
  position: relative;
  margin: 0 0 0 2em;
  text-align: justify;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.25em;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__title {
    line-height: 1.8;
  }
}
.interview-container__title::before {
  content: "";
  display: block;
  position: absolute;
  inset: -3em 1em auto auto;
  width: 1px;
  height: 2em;
  background: #000;
}
.interview-container__read {
  margin: 0 0 0 2em;
  font-family: "BIZ UDPMincho", sans-serif;
  text-align: justify;
  font-size: 1.25em;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__read {
    line-height: 1.8;
  }
}
.interview-container__read:last-of-type {
  margin-left: 0;
}
.interview-container__image--pc {
  display: inline-block;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__image--pc {
    display: none;
  }
}
.interview-container__image--sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-container__image--sp {
    display: inline-block;
  }
}

.interview-page .page-section--column {
  position: relative;
  margin-top: 10em;
}
.interview-page .page-section--column::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto auto 5%;
  width: 90%;
  height: 0;
  border-top: 1px solid;
}

.interview-page.wakayama-page .interview-container--pri .interview-container__image {
  width: 22.5vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.wakayama-page .interview-container--pri .interview-container__image {
    width: 64vw;
    margin: 0 auto;
  }
}
.interview-page.wakayama-page .interview-container--sec .interview-container__image {
  width: 20vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.wakayama-page .interview-container--sec .interview-container__image {
    width: 48vw;
    margin: 0 auto;
  }
}
.interview-page.wakayama-page .interview-container--ter .interview-container__image {
  width: 40vw;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.wakayama-page .interview-container--ter .interview-container__image {
    width: 80vw;
    margin: 0 auto;
  }
}

.interview-page.fukuoka-page .interview-container--pri .interview-container__image {
  width: 18vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.fukuoka-page .interview-container--pri .interview-container__image {
    width: 48vw;
    margin: 0 auto;
  }
}
.interview-page.fukuoka-page .interview-container--sec .interview-container__image {
  width: 28vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.fukuoka-page .interview-container--sec .interview-container__image {
    width: 64vw;
    margin: 0 auto;
  }
}
.interview-page.fukuoka-page .interview-container--ter .interview-container__image {
  width: 30vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.fukuoka-page .interview-container--ter .interview-container__image {
    width: 72vw;
    margin: 0 auto;
  }
}
.interview-page.fukuoka-page .interview-container--column {
  gap: 2em;
}
.interview-page.fukuoka-page .interview-container--column .interview-container__image {
  width: 40vw;
  margin-top: 4em;
  margin-right: auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.fukuoka-page .interview-container--column .interview-container__image {
    width: 80vw;
    margin: 4em auto 0;
  }
}

.interview-page.kochi-page .interview-container--pri .interview-container__image {
  width: 32vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.kochi-page .interview-container--pri .interview-container__image {
    width: 64vw;
    margin: 0 auto;
  }
}
.interview-page.kochi-page .interview-container--pri .interview-container__image {
  width: 32vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.kochi-page .interview-container--pri .interview-container__image {
    width: 64vw;
    margin: 0 auto;
  }
}
.interview-page.kochi-page .interview-container--sec .interview-container__image {
  width: 20vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.kochi-page .interview-container--sec .interview-container__image {
    width: 48vw;
    margin: 0 auto;
  }
}
.interview-page.kochi-page .interview-container--ter .interview-container__image--pri {
  width: 24vw;
  margin-top: 15em;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.kochi-page .interview-container--ter .interview-container__image--pri {
    width: 56vw;
    margin: 0 auto;
  }
}
.interview-page.kochi-page .interview-container--ter .interview-container__image--sec {
  width: 32vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.kochi-page .interview-container--ter .interview-container__image--sec {
    width: 64vw;
    margin: 0 auto;
  }
}
.interview-page.kochi-page .interview-container--ter .interview-container__image--ter {
  width: 40vw;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.kochi-page .interview-container--ter .interview-container__image--ter {
    width: 80vw;
    margin: 0 auto;
  }
}

.interview-page.tokyo-page .interview-header__image img {
  object-position: center 90%;
}
.interview-page.tokyo-page .interview-container--pri .interview-container__image {
  width: 20vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.tokyo-page .interview-container--pri .interview-container__image {
    width: 50vw;
    margin: 0 auto;
  }
}
.interview-page.tokyo-page .interview-container--sec .interview-container__image {
  width: 30vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.tokyo-page .interview-container--sec .interview-container__image {
    width: 60vw;
    margin: 0 auto;
  }
}
.interview-page.tokyo-page .interview-container--ter .interview-container__image {
  width: 20vw;
  margin-right: 4em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.tokyo-page .interview-container--ter .interview-container__image {
    width: 50vw;
    margin: 0 auto;
  }
}
.interview-page.tokyo-page .interview-container--column {
  gap: 2em;
}
.interview-page.tokyo-page .interview-container--column .interview-container__image {
  width: 40vw;
  margin-top: 4em;
  margin-right: auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-page.tokyo-page .interview-container--column .interview-container__image {
    width: 80vw;
    margin: 4em auto 0;
  }
}

/* ========================================================================== */
/* Contact Page */
/* ========================================================================== */
/* contact-page section */
/* -------------------------------------------------------------------------- */
.contact-page .page-header {
  display: flex;
  justify-content: center;
  padding-top: 7.5em;
}
.contact-page .page-section--contact {
  position: relative;
  padding: 5em 20% 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .contact-page .page-section--contact {
    padding: 5em 5% 0;
  }
}
.contact-page .site-footer {
  margin-top: 6em;
  border-top: 1px solid #e0e0e0;
}

/* ========================================================================== */
/* Documents Page */
/* ========================================================================== */
/* ========================================================================== */
/* Layout */
/* ========================================================================== */
/* layout: padding */
/* -------------------------------------------------------------------------- */
.p-0 {
  padding: 0 !important;
}

.p-d5 {
  padding: 0.5em !important;
}

.p-1 {
  padding: 1em !important;
}

.p-1d5 {
  padding: 1.5em !important;
}

.p-2 {
  padding: 2em !important;
}

.p-2d5 {
  padding: 2.5em !important;
}

.p-3 {
  padding: 3em !important;
}

.p-3s5 {
  padding: 3.5em !important;
}

.p-4 {
  padding: 4em !important;
}

.p-4s5 {
  padding: 4.5em !important;
}

.p-5 {
  padding: 5em !important;
}

.p-6 {
  padding: 6em !important;
}

.p-7 {
  padding: 7em !important;
}

.p-8 {
  padding: 8em !important;
}

.p-9 {
  padding: 9em !important;
}

.p-10 {
  padding: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-p-0 {
    padding: 0 !important;
  }
  .sp-p-d5 {
    padding: 0.5em !important;
  }
  .sp-p-1 {
    padding: 1em !important;
  }
  .sp-p-1d5 {
    padding: 1.5em !important;
  }
  .sp-p-2 {
    padding: 2em !important;
  }
  .sp-p-2d5 {
    padding: 2.5em !important;
  }
  .sp-p-3 {
    padding: 3em !important;
  }
  .sp-p-3d5 {
    padding: 3.5em !important;
  }
  .sp-p-4 {
    padding: 4em !important;
  }
  .sp-p-4d5 {
    padding: 4.5em !important;
  }
  .sp-p-5 {
    padding: 5em !important;
  }
  .sp-p-6 {
    padding: 6em !important;
  }
  .sp-p-7 {
    padding: 7em !important;
  }
  .sp-p-8 {
    padding: 8em !important;
  }
  .sp-p-9 {
    padding: 9em !important;
  }
  .sp-p-10 {
    padding: 10em !important;
  }
}
/* layout: padding top */
/* -------------------------------------------------------------------------- */
.pt-0 {
  padding-top: 0 !important;
}

.pt-d5 {
  padding-top: 0.5em !important;
}

.pt-1 {
  padding-top: 1em !important;
}

.pt-1d5 {
  padding-top: 1.5em !important;
}

.pt-2 {
  padding-top: 2em !important;
}

.pt-2d5 {
  padding-top: 2.5em !important;
}

.pt-3 {
  padding-top: 3em !important;
}

.pt-3d5 {
  padding-top: 3.5em !important;
}

.pt-4 {
  padding-top: 4em !important;
}

.pt-4d5 {
  padding-top: 4.5em !important;
}

.pt-5 {
  padding-top: 5em !important;
}

.pt-6 {
  padding-top: 6em !important;
}

.pt-7 {
  padding-top: 7em !important;
}

.pt-8 {
  padding-top: 8em !important;
}

.pt-9 {
  padding-top: 9em !important;
}

.pt-10 {
  padding-top: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-pt-0 {
    padding-top: 0 !important;
  }
  .sp-pt-d5 {
    padding-top: 0.5em !important;
  }
  .sp-pt-1 {
    padding-top: 1em !important;
  }
  .sp-pt-1d5 {
    padding-top: 1.5em !important;
  }
  .sp-pt-2 {
    padding-top: 2em !important;
  }
  .sp-pt-2d5 {
    padding-top: 2.5em !important;
  }
  .sp-pt-3 {
    padding-top: 3em !important;
  }
  .sp-pt-3d5 {
    padding-top: 3.5em !important;
  }
  .sp-pt-4 {
    padding-top: 4em !important;
  }
  .sp-pt-4d5 {
    padding-top: 4.5em !important;
  }
  .sp-pt-5 {
    padding-top: 5em !important;
  }
  .sp-pt-6 {
    padding-top: 6em !important;
  }
  .sp-pt-7 {
    padding-top: 7em !important;
  }
  .sp-pt-8 {
    padding-top: 8em !important;
  }
  .sp-pt-9 {
    padding-top: 9em !important;
  }
  .sp-pt-10 {
    padding-top: 10em !important;
  }
}
/* layout: padding right */
/* -------------------------------------------------------------------------- */
.pr-0 {
  padding-right: 0em !important;
}

.pr-d5 {
  padding-right: 0.5em !important;
}

.pr-1 {
  padding-right: 1em !important;
}

.pr-1d5 {
  padding-right: 1.5em !important;
}

.pr-2 {
  padding-right: 2em !important;
}

.pr-2d5 {
  padding-right: 2.5em !important;
}

.pr-3 {
  padding-right: 3em !important;
}

.pr-3d5 {
  padding-right: 3.5em !important;
}

.pr-4 {
  padding-right: 4em !important;
}

.pr-4d5 {
  padding-right: 4.5em !important;
}

.pr-5 {
  padding-right: 5em !important;
}

.pr-6 {
  padding-right: 6em !important;
}

.pr-7 {
  padding-right: 7em !important;
}

.pr-8 {
  padding-right: 8em !important;
}

.pr-9 {
  padding-right: 9em !important;
}

.pr-10 {
  padding-right: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-pr-0 {
    padding-right: 0em !important;
  }
  .sp-pr-d5 {
    padding-right: 0.5em !important;
  }
  .sp-pr-1 {
    padding-right: 1em !important;
  }
  .sp-pr-1d5 {
    padding-right: 1.5em !important;
  }
  .sp-pr-2 {
    padding-right: 2em !important;
  }
  .sp-pr-2d5 {
    padding-right: 2.5em !important;
  }
  .sp-pr-3 {
    padding-right: 3em !important;
  }
  .sp-pr-3d5 {
    padding-right: 3.5em !important;
  }
  .sp-pr-4 {
    padding-right: 4em !important;
  }
  .sp-pr-4d5 {
    padding-right: 4.5em !important;
  }
  .sp-pr-5 {
    padding-right: 5em !important;
  }
  .sp-pr-6 {
    padding-right: 6em !important;
  }
  .sp-pr-7 {
    padding-right: 7em !important;
  }
  .sp-pr-8 {
    padding-right: 8em !important;
  }
  .sp-pr-9 {
    padding-right: 9em !important;
  }
  .sp-pr-10 {
    padding-right: 10em !important;
  }
}
/* layout: padding bottom */
/* -------------------------------------------------------------------------- */
.pb-0 {
  padding-bottom: 0em !important;
}

.pb-d5 {
  padding-bottom: 0.5em !important;
}

.pb-1 {
  padding-bottom: 1em !important;
}

.pb-1d5 {
  padding-bottom: 1.5em !important;
}

.pb-2 {
  padding-bottom: 2em !important;
}

.pb-2d5 {
  padding-bottom: 2.5em !important;
}

.pb-3 {
  padding-bottom: 3em !important;
}

.pb-3d5 {
  padding-bottom: 3.5em !important;
}

.pb-4 {
  padding-bottom: 4em !important;
}

.pb-4d5 {
  padding-bottom: 4.5em !important;
}

.pb-5 {
  padding-bottom: 5em !important;
}

.pb-6 {
  padding-bottom: 6em !important;
}

.pb-7 {
  padding-bottom: 7em !important;
}

.pb-8 {
  padding-bottom: 8em !important;
}

.pb-9 {
  padding-bottom: 9em !important;
}

.pb-10 {
  padding-bottom: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-pb-0 {
    padding-bottom: 0em !important;
  }
  .sp-pb-d5 {
    padding-bottom: 0.5em !important;
  }
  .sp-pb-1 {
    padding-bottom: 1em !important;
  }
  .sp-pb-1d5 {
    padding-bottom: 1.5em !important;
  }
  .sp-pb-2 {
    padding-bottom: 2em !important;
  }
  .sp-pb-2d5 {
    padding-bottom: 2.5em !important;
  }
  .sp-pb-3 {
    padding-bottom: 3em !important;
  }
  .sp-pb-3d5 {
    padding-bottom: 3.5em !important;
  }
  .sp-pb-4 {
    padding-bottom: 4em !important;
  }
  .sp-pb-4d5 {
    padding-bottom: 4.5em !important;
  }
  .sp-pb-5 {
    padding-bottom: 5em !important;
  }
  .sp-pb-6 {
    padding-bottom: 6em !important;
  }
  .sp-pb-7 {
    padding-bottom: 7em !important;
  }
  .sp-pb-8 {
    padding-bottom: 8em !important;
  }
  .sp-pb-9 {
    padding-bottom: 9em !important;
  }
  .sp-pb-10 {
    padding-bottom: 10em !important;
  }
}
/* layout: padding left */
/* -------------------------------------------------------------------------- */
.pl-0 {
  padding-left: 0em !important;
}

.pl-d5 {
  padding-left: 0.5em !important;
}

.pl-1 {
  padding-left: 1em !important;
}

.pl-1d5 {
  padding-left: 1.5em !important;
}

.pl-2 {
  padding-left: 2em !important;
}

.pl-2d5 {
  padding-left: 2.5em !important;
}

.pl-3 {
  padding-left: 3em !important;
}

.pl-3d5 {
  padding-left: 3.5em !important;
}

.pl-4 {
  padding-left: 4em !important;
}

.pl-4d5 {
  padding-left: 4.5em !important;
}

.pl-5 {
  padding-left: 5em !important;
}

.pl-6 {
  padding-left: 6em !important;
}

.pl-7 {
  padding-left: 7em !important;
}

.pl-8 {
  padding-left: 8em !important;
}

.pl-9 {
  padding-left: 9em !important;
}

.pl-10 {
  padding-left: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-pl-0 {
    padding-left: 0em !important;
  }
  .sp-pl-d5 {
    padding-left: 0.5em !important;
  }
  .sp-pl-1 {
    padding-left: 1em !important;
  }
  .sp-pl-1d5 {
    padding-left: 1.5em !important;
  }
  .sp-pl-2 {
    padding-left: 2em !important;
  }
  .sp-pl-2d5 {
    padding-left: 2.5em !important;
  }
  .sp-pl-3 {
    padding-left: 3em !important;
  }
  .sp-pl-3d5 {
    padding-left: 3.5em !important;
  }
  .sp-pl-4 {
    padding-left: 4em !important;
  }
  .sp-pl-4d5 {
    padding-left: 4.5em !important;
  }
  .sp-pl-5 {
    padding-left: 5em !important;
  }
  .sp-pl-6 {
    padding-left: 6em !important;
  }
  .sp-pl-7 {
    padding-left: 7em !important;
  }
  .sp-pl-8 {
    padding-left: 8em !important;
  }
  .sp-pl-9 {
    padding-left: 9em !important;
  }
  .sp-pl-10 {
    padding-left: 10em !important;
  }
}
/* layout: margin auto */
/* -------------------------------------------------------------------------- */
.m-auto {
  margin: 0 auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-m-auto {
    margin: 0 auto !important;
  }
  .sp-mr-auto {
    margin-right: auto !important;
  }
  .sp-ml-auto {
    margin-left: auto !important;
  }
}
/* layout: margin top */
/* -------------------------------------------------------------------------- */
.mt-0 {
  margin-top: 0 !important;
}

.mt-d5 {
  margin-top: 0.5em !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mt-1d5 {
  margin-top: 1.5em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mt-2d5 {
  margin-top: 2.5em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mt-3d5 {
  margin-top: 3.5em !important;
}

.mt-4 {
  margin-top: 4em !important;
}

.mt-4d5 {
  margin-top: 4.5em !important;
}

.mt-5 {
  margin-top: 5em !important;
}

.mt-6 {
  margin-top: 6em !important;
}

.mt-7 {
  margin-top: 7em !important;
}

.mt-8 {
  margin-top: 8em !important;
}

.mt-9 {
  margin-top: 9em !important;
}

.mt-10 {
  margin-top: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-mt-0 {
    margin-top: 0 !important;
  }
  .sp-mt-d5 {
    margin-top: 0.5em !important;
  }
  .sp-mt-1 {
    margin-top: 1em !important;
  }
  .sp-mt-1d5 {
    margin-top: 1.5em !important;
  }
  .sp-mt-2 {
    margin-top: 2em !important;
  }
  .sp-mt-2d5 {
    margin-top: 2.5em !important;
  }
  .sp-mt-3 {
    margin-top: 3em !important;
  }
  .sp-mt-3d5 {
    margin-top: 3.5em !important;
  }
  .sp-mt-4 {
    margin-top: 4em !important;
  }
  .sp-mt-4d5 {
    margin-top: 4.5em !important;
  }
  .sp-mt-5 {
    margin-top: 5em !important;
  }
  .sp-mt-6 {
    margin-top: 6em !important;
  }
  .sp-mt-7 {
    margin-top: 7em !important;
  }
  .sp-mt-8 {
    margin-top: 8em !important;
  }
  .sp-mt-9 {
    margin-top: 9em !important;
  }
  .sp-mt-10 {
    margin-top: 10em !important;
  }
}
/* layout: margin right */
/* -------------------------------------------------------------------------- */
.mr-0 {
  margin-right: 0 !important;
}

.mr-d5 {
  margin-right: 0.5em !important;
}

.mr-1 {
  margin-right: 1em !important;
}

.mr-1d5 {
  margin-right: 1.5em !important;
}

.mr-2 {
  margin-right: 2em !important;
}

.mr-2d5 {
  margin-right: 2.5em !important;
}

.mr-3 {
  margin-right: 3em !important;
}

.mr-3d5 {
  margin-right: 3.5em !important;
}

.mr-4 {
  margin-right: 4em !important;
}

.mr-4d5 {
  margin-right: 4.5em !important;
}

.mr-5 {
  margin-right: 5em !important;
}

.mr-6 {
  margin-right: 6em !important;
}

.mr-7 {
  margin-right: 7em !important;
}

.mr-8 {
  margin-right: 8em !important;
}

.mr-9 {
  margin-right: 9em !important;
}

.mr-10 {
  margin-right: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-mr-0 {
    margin-right: 0 !important;
  }
  .sp-mr-d5 {
    margin-right: 0.5em !important;
  }
  .sp-mr-1 {
    margin-right: 1em !important;
  }
  .sp-mr-1d5 {
    margin-right: 1.5em !important;
  }
  .sp-mr-2 {
    margin-right: 2em !important;
  }
  .sp-mr-2d5 {
    margin-right: 2.5em !important;
  }
  .sp-mr-3 {
    margin-right: 3em !important;
  }
  .sp-mr-3d5 {
    margin-right: 3.5em !important;
  }
  .sp-mr-4 {
    margin-right: 4em !important;
  }
  .sp-mr-4d5 {
    margin-right: 4.5em !important;
  }
  .sp-mr-5 {
    margin-right: 5em !important;
  }
  .sp-mr-6 {
    margin-right: 6em !important;
  }
  .sp-mr-7 {
    margin-right: 7em !important;
  }
  .sp-mr-8 {
    margin-right: 8em !important;
  }
  .sp-mr-9 {
    margin-right: 9em !important;
  }
  .sp-mr-10 {
    margin-right: 10em !important;
  }
}
/* layout: margin bottom */
/* -------------------------------------------------------------------------- */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-d5 {
  margin-bottom: 0.5em !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.mb-1d5 {
  margin-bottom: 1.5em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.mb-2d5 {
  margin-bottom: 2.5em !important;
}

.mb-3 {
  margin-bottom: 3em !important;
}

.mb-3d5 {
  margin-bottom: 3.5em !important;
}

.mb-4 {
  margin-bottom: 4em !important;
}

.mb-4d5 {
  margin-bottom: 4.5em !important;
}

.mb-5 {
  margin-bottom: 5em !important;
}

.mb-6 {
  margin-bottom: 6em !important;
}

.mb-7 {
  margin-bottom: 7em !important;
}

.mb-8 {
  margin-bottom: 8em !important;
}

.mb-9 {
  margin-bottom: 9em !important;
}

.mb-10 {
  margin-bottom: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .sp-mb-d5 {
    margin-bottom: 0.5em !important;
  }
  .sp-mb-1 {
    margin-bottom: 1em !important;
  }
  .sp-mb-1d5 {
    margin-bottom: 1.5em !important;
  }
  .sp-mb-2 {
    margin-bottom: 2em !important;
  }
  .sp-mb-2d5 {
    margin-bottom: 2.5em !important;
  }
  .sp-mb-3 {
    margin-bottom: 3em !important;
  }
  .sp-mb-3d5 {
    margin-bottom: 3.5em !important;
  }
  .sp-mb-4 {
    margin-bottom: 4em !important;
  }
  .sp-mb-4d5 {
    margin-bottom: 4.5em !important;
  }
  .sp-mb-5 {
    margin-bottom: 5em !important;
  }
  .sp-mb-6 {
    margin-bottom: 6em !important;
  }
  .sp-mb-7 {
    margin-bottom: 7em !important;
  }
  .sp-mb-8 {
    margin-bottom: 8em !important;
  }
  .sp-mb-9 {
    margin-bottom: 9em !important;
  }
  .sp-mb-10 {
    margin-bottom: 10em !important;
  }
}
/* layout: margin left */
/* -------------------------------------------------------------------------- */
.ml-0 {
  margin-left: 0 !important;
}

.ml-d5 {
  margin-left: 0.5em !important;
}

.ml-1 {
  margin-left: 1em !important;
}

.ml-1d5 {
  margin-left: 1.5em !important;
}

.ml-2 {
  margin-left: 2em !important;
}

.ml-2d5 {
  margin-left: 2.5em !important;
}

.ml-3 {
  margin-left: 3em !important;
}

.ml-3d5 {
  margin-left: 3.5em !important;
}

.ml-4 {
  margin-left: 4em !important;
}

.ml-4d5 {
  margin-left: 4.5em !important;
}

.ml-5 {
  margin-left: 5em !important;
}

.ml-6 {
  margin-left: 6em !important;
}

.ml-7 {
  margin-left: 7em !important;
}

.ml-8 {
  margin-left: 8em !important;
}

.ml-9 {
  margin-left: 9em !important;
}

.ml-10 {
  margin-left: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-ml-0 {
    margin-left: 0 !important;
  }
  .sp-ml-d5 {
    margin-left: 0.5em !important;
  }
  .sp-ml-1 {
    margin-left: 1em !important;
  }
  .sp-ml-1d5 {
    margin-left: 1.5em !important;
  }
  .sp-ml-2 {
    margin-left: 2em !important;
  }
  .sp-ml-2d5 {
    margin-left: 2.5em !important;
  }
  .sp-ml-3 {
    margin-left: 3em !important;
  }
  .sp-ml-3d5 {
    margin-left: 3.5em !important;
  }
  .sp-ml-4 {
    margin-left: 4em !important;
  }
  .sp-ml-4d5 {
    margin-left: 4.5em !important;
  }
  .sp-ml-5 {
    margin-left: 5em !important;
  }
  .sp-ml-6 {
    margin-left: 6em !important;
  }
  .sp-ml-7 {
    margin-left: 7em !important;
  }
  .sp-ml-8 {
    margin-left: 8em !important;
  }
  .sp-ml-9 {
    margin-left: 9em !important;
  }
  .sp-ml-10 {
    margin-left: 10em !important;
  }
}
/* layout: percentage width */
/* -------------------------------------------------------------------------- */
.w-100p {
  width: 100% !important;
}

.w-95p {
  width: 95% !important;
}

.w-90p {
  width: 90% !important;
}

.w-85p {
  width: 85% !important;
}

.w-80p {
  width: 80% !important;
}

.w-75p {
  width: 75% !important;
}

.w-70p {
  width: 70% !important;
}

.w-65p {
  width: 65% !important;
}

.w-60p {
  width: 60% !important;
}

.w-55p {
  width: 55% !important;
}

.w-50p {
  width: 50% !important;
}

.w-45p {
  width: 45% !important;
}

.w-40p {
  width: 40% !important;
}

.w-35p {
  width: 35% !important;
}

.w-30p {
  width: 30% !important;
}

.w-25p {
  width: 25% !important;
}

.w-20p {
  width: 20% !important;
}

.w-15p {
  width: 15% !important;
}

.w-10p {
  width: 10% !important;
}

.w-5p {
  width: 5% !important;
}

.w-auto {
  width: auto !important;
}

.w-small {
  width: 33.333% !important;
}

.w-middle {
  width: 66.666% !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-w-100p {
    width: 100% !important;
  }
  .sp-w-95p {
    width: 95% !important;
  }
  .sp-w-90p {
    width: 90% !important;
  }
  .sp-w-85p {
    width: 85% !important;
  }
  .sp-w-80p {
    width: 80% !important;
  }
  .sp-w-75p {
    width: 75% !important;
  }
  .sp-w-70p {
    width: 70% !important;
  }
  .sp-w-65p {
    width: 65% !important;
  }
  .sp-w-60p {
    width: 60% !important;
  }
  .sp-w-55p {
    width: 55% !important;
  }
  .sp-w-50p {
    width: 50% !important;
  }
  .sp-w-45p {
    width: 45% !important;
  }
  .sp-w-40p {
    width: 40% !important;
  }
  .sp-w-35p {
    width: 35% !important;
  }
  .sp-w-30p {
    width: 30% !important;
  }
  .sp-w-25p {
    width: 25% !important;
  }
  .sp-w-20p {
    width: 20% !important;
  }
  .sp-w-15p {
    width: 15% !important;
  }
  .sp-w-10p {
    width: 10% !important;
  }
  .sp-w-5p {
    width: 5% !important;
  }
  .sp-w-auto {
    width: auto !important;
  }
  .sp-w-small {
    width: 33.333% !important;
  }
  .sp-w-middle {
    width: 66.666% !important;
  }
}
/* layout: em width */
/* -------------------------------------------------------------------------- */
.w-d5e {
  width: 0.5em !important;
}

.w-1e {
  width: 1em !important;
}

.w-1d5e {
  width: 1.5em !important;
}

.w-2e {
  width: 2em !important;
}

.w-2d5e {
  width: 2.5em !important;
}

.w-3e {
  width: 3em !important;
}

.w-3d5e {
  width: 3.5em !important;
}

.w-4e {
  width: 4em !important;
}

.w-4d5e {
  width: 4.5em !important;
}

.w-5e {
  width: 5em !important;
}

.w-5d5e {
  width: 5.5em !important;
}

.w-6e {
  width: 6em !important;
}

.w-6d5e {
  width: 6.5em !important;
}

.w-7e {
  width: 7em !important;
}

.w-7d5e {
  width: 7.5em !important;
}

.w-8e {
  width: 8em !important;
}

.w-8d5e {
  width: 8.5em !important;
}

.w-9e {
  width: 9em !important;
}

.w-9d5e {
  width: 9.5em !important;
}

.w-10e {
  width: 10em !important;
}

.w-11e {
  width: 11em !important;
}

.w-12e {
  width: 12em !important;
}

.w-13e {
  width: 13em !important;
}

.w-14e {
  width: 14em !important;
}

.w-15e {
  width: 15em !important;
}

.w-16e {
  width: 16em !important;
}

.w-17e {
  width: 17em !important;
}

.w-18e {
  width: 18em !important;
}

.w-19e {
  width: 19em !important;
}

.w-20e {
  width: 20em !important;
}

.w-21e {
  width: 21em !important;
}

.w-22e {
  width: 22em !important;
}

.w-23e {
  width: 23em !important;
}

.w-24e {
  width: 24em !important;
}

.w-25e {
  width: 25em !important;
}

.w-26e {
  width: 26em !important;
}

.w-27e {
  width: 27em !important;
}

.w-28e {
  width: 28em !important;
}

.w-29e {
  width: 29em !important;
}

.w-30e {
  width: 30em !important;
}

.w-31e {
  width: 31em !important;
}

.w-32e {
  width: 32em !important;
}

.w-33e {
  width: 33em !important;
}

.w-34e {
  width: 34em !important;
}

.w-35e {
  width: 35em !important;
}

.w-36e {
  width: 36em !important;
}

.w-37e {
  width: 37em !important;
}

.w-38e {
  width: 38em !important;
}

.w-39e {
  width: 39em !important;
}

.w-40e {
  width: 40em !important;
}

.w-41e {
  width: 41em !important;
}

.w-42e {
  width: 42em !important;
}

.w-43e {
  width: 43em !important;
}

.w-44e {
  width: 44em !important;
}

.w-45e {
  width: 45em !important;
}

.w-46e {
  width: 46em !important;
}

.w-47e {
  width: 47em !important;
}

.w-48e {
  width: 48em !important;
}

.w-49e {
  width: 49em !important;
}

.w-50e {
  width: 50em !important;
}

.w-51e {
  width: 51em !important;
}

.w-52e {
  width: 52em !important;
}

.w-53e {
  width: 53em !important;
}

.w-54e {
  width: 54em !important;
}

.w-55e {
  width: 55em !important;
}

.w-56e {
  width: 56em !important;
}

.w-57e {
  width: 57em !important;
}

.w-58e {
  width: 58em !important;
}

.w-59e {
  width: 59em !important;
}

.w-60e {
  width: 60em !important;
}

.w-61e {
  width: 61em !important;
}

.w-62e {
  width: 62em !important;
}

.w-63e {
  width: 63em !important;
}

.w-64e {
  width: 64em !important;
}

.w-65e {
  width: 65em !important;
}

.w-66e {
  width: 66em !important;
}

.w-67e {
  width: 67em !important;
}

.w-68e {
  width: 68em !important;
}

.w-69e {
  width: 69em !important;
}

.w-70e {
  width: 70em !important;
}

.w-71e {
  width: 71em !important;
}

.w-72e {
  width: 72em !important;
}

.w-73e {
  width: 73em !important;
}

.w-74e {
  width: 74em !important;
}

.w-75e {
  width: 75em !important;
}

.w-76e {
  width: 76em !important;
}

.w-77e {
  width: 77em !important;
}

.w-78e {
  width: 78em !important;
}

.w-79e {
  width: 79em !important;
}

.w-80e {
  width: 80em !important;
}

.w-81e {
  width: 81em !important;
}

.w-82e {
  width: 82em !important;
}

.w-83e {
  width: 83em !important;
}

.w-84e {
  width: 84em !important;
}

.w-85e {
  width: 85em !important;
}

.w-86e {
  width: 86em !important;
}

.w-87e {
  width: 87em !important;
}

.w-88e {
  width: 88em !important;
}

.w-89e {
  width: 89em !important;
}

.w-90e {
  width: 90em !important;
}

.w-91e {
  width: 91em !important;
}

.w-92e {
  width: 92em !important;
}

.w-93e {
  width: 93em !important;
}

.w-94e {
  width: 94em !important;
}

.w-95e {
  width: 95em !important;
}

.w-96e {
  width: 96em !important;
}

.w-97e {
  width: 97em !important;
}

.w-98e {
  width: 98em !important;
}

.w-99e {
  width: 99em !important;
}

.w-100e {
  width: 100em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-w-d5e {
    width: 0.5em !important;
  }
  .sp-w-1e {
    width: 1em !important;
  }
  .sp-w-1d5e {
    width: 1.5em !important;
  }
  .sp-w-2e {
    width: 2em !important;
  }
  .sp-w-2d5e {
    width: 2.5em !important;
  }
  .sp-w-3e {
    width: 3em !important;
  }
  .sp-w-3d5e {
    width: 3.5em !important;
  }
  .sp-w-4e {
    width: 4em !important;
  }
  .sp-w-4d5e {
    width: 4.5em !important;
  }
  .sp-w-5e {
    width: 5em !important;
  }
  .sp-w-5d5e {
    width: 5.5em !important;
  }
  .sp-w-6e {
    width: 6em !important;
  }
  .sp-w-6d5e {
    width: 6.5em !important;
  }
  .sp-w-7e {
    width: 7em !important;
  }
  .sp-w-7d5e {
    width: 7.5em !important;
  }
  .sp-w-8e {
    width: 8em !important;
  }
  .sp-w-8d5e {
    width: 8.5em !important;
  }
  .sp-w-9e {
    width: 9em !important;
  }
  .sp-w-9d5e {
    width: 9.5em !important;
  }
  .sp-w-10e {
    width: 10em !important;
  }
  .sp-w-11e {
    width: 11em !important;
  }
  .sp-w-12e {
    width: 12em !important;
  }
  .sp-w-13e {
    width: 13em !important;
  }
  .sp-w-14e {
    width: 14em !important;
  }
  .sp-w-15e {
    width: 15em !important;
  }
  .sp-w-16e {
    width: 16em !important;
  }
  .sp-w-17e {
    width: 17em !important;
  }
  .sp-w-18e {
    width: 18em !important;
  }
  .sp-w-19e {
    width: 19em !important;
  }
  .sp-w-20e {
    width: 20em !important;
  }
  .sp-w-21e {
    width: 21em !important;
  }
  .sp-w-22e {
    width: 22em !important;
  }
  .sp-w-23e {
    width: 23em !important;
  }
  .sp-w-24e {
    width: 24em !important;
  }
  .sp-w-25e {
    width: 25em !important;
  }
  .sp-w-26e {
    width: 26em !important;
  }
  .sp-w-27e {
    width: 27em !important;
  }
  .sp-w-28e {
    width: 28em !important;
  }
  .sp-w-29e {
    width: 29em !important;
  }
  .sp-w-30e {
    width: 30em !important;
  }
  .sp-w-31e {
    width: 31em !important;
  }
  .sp-w-32e {
    width: 32em !important;
  }
  .sp-w-33e {
    width: 33em !important;
  }
  .sp-w-34e {
    width: 34em !important;
  }
  .sp-w-35e {
    width: 35em !important;
  }
  .sp-w-36e {
    width: 36em !important;
  }
  .sp-w-37e {
    width: 37em !important;
  }
  .sp-w-38e {
    width: 38em !important;
  }
  .sp-w-39e {
    width: 39em !important;
  }
  .sp-w-40e {
    width: 40em !important;
  }
  .sp-w-41e {
    width: 41em !important;
  }
  .sp-w-42e {
    width: 42em !important;
  }
  .sp-w-43e {
    width: 43em !important;
  }
  .sp-w-44e {
    width: 44em !important;
  }
  .sp-w-45e {
    width: 45em !important;
  }
  .sp-w-46e {
    width: 46em !important;
  }
  .sp-w-47e {
    width: 47em !important;
  }
  .sp-w-48e {
    width: 48em !important;
  }
  .sp-w-49e {
    width: 49em !important;
  }
  .sp-w-50e {
    width: 50em !important;
  }
  .sp-w-51e {
    width: 51em !important;
  }
  .sp-w-52e {
    width: 52em !important;
  }
  .sp-w-53e {
    width: 53em !important;
  }
  .sp-w-54e {
    width: 54em !important;
  }
  .sp-w-55e {
    width: 55em !important;
  }
  .sp-w-56e {
    width: 56em !important;
  }
  .sp-w-57e {
    width: 57em !important;
  }
  .sp-w-58e {
    width: 58em !important;
  }
  .sp-w-59e {
    width: 59em !important;
  }
  .sp-w-60e {
    width: 60em !important;
  }
  .sp-w-61e {
    width: 61em !important;
  }
  .sp-w-62e {
    width: 62em !important;
  }
  .sp-w-63e {
    width: 63em !important;
  }
  .sp-w-64e {
    width: 64em !important;
  }
  .sp-w-65e {
    width: 65em !important;
  }
  .sp-w-66e {
    width: 66em !important;
  }
  .sp-w-67e {
    width: 67em !important;
  }
  .sp-w-68e {
    width: 68em !important;
  }
  .sp-w-69e {
    width: 69em !important;
  }
  .sp-w-70e {
    width: 70em !important;
  }
  .sp-w-71e {
    width: 71em !important;
  }
  .sp-w-72e {
    width: 72em !important;
  }
  .sp-w-73e {
    width: 73em !important;
  }
  .sp-w-74e {
    width: 74em !important;
  }
  .sp-w-75e {
    width: 75em !important;
  }
  .sp-w-76e {
    width: 76em !important;
  }
  .sp-w-77e {
    width: 77em !important;
  }
  .sp-w-78e {
    width: 78em !important;
  }
  .sp-w-79e {
    width: 79em !important;
  }
  .sp-w-80e {
    width: 80em !important;
  }
  .sp-w-81e {
    width: 81em !important;
  }
  .sp-w-82e {
    width: 82em !important;
  }
  .sp-w-83e {
    width: 83em !important;
  }
  .sp-w-84e {
    width: 84em !important;
  }
  .sp-w-85e {
    width: 85em !important;
  }
  .sp-w-86e {
    width: 86em !important;
  }
  .sp-w-87e {
    width: 87em !important;
  }
  .sp-w-88e {
    width: 88em !important;
  }
  .sp-w-89e {
    width: 89em !important;
  }
  .sp-w-90e {
    width: 90em !important;
  }
  .sp-w-91e {
    width: 91em !important;
  }
  .sp-w-92e {
    width: 92em !important;
  }
  .sp-w-93e {
    width: 93em !important;
  }
  .sp-w-94e {
    width: 94em !important;
  }
  .sp-w-95e {
    width: 95em !important;
  }
  .sp-w-96e {
    width: 96em !important;
  }
  .sp-w-97e {
    width: 97em !important;
  }
  .sp-w-98e {
    width: 98em !important;
  }
  .sp-w-99e {
    width: 99em !important;
  }
  .sp-w-100e {
    width: 100em !important;
  }
}
/* layout: em max-width */
/* -------------------------------------------------------------------------- */
.max-w-d5e {
  max-width: 0.5em !important;
}

.max-w-1e {
  max-width: 1em !important;
}

.max-w-1d5e {
  max-width: 1.5em !important;
}

.max-w-2e {
  max-width: 2em !important;
}

.max-w-2d5e {
  max-width: 2.5em !important;
}

.max-w-3e {
  max-width: 3em !important;
}

.max-w-3d5e {
  max-width: 3.5em !important;
}

.max-w-4e {
  max-width: 4em !important;
}

.max-w-4d5e {
  max-width: 4.5em !important;
}

.max-w-5e {
  max-width: 5em !important;
}

.max-w-5d5e {
  max-width: 5.5em !important;
}

.max-w-6e {
  max-width: 6em !important;
}

.max-w-6d5e {
  max-width: 6.5em !important;
}

.max-w-7e {
  max-width: 7em !important;
}

.max-w-7d5e {
  max-width: 7.5em !important;
}

.max-w-8e {
  max-width: 8em !important;
}

.max-w-8d5e {
  max-width: 8.5em !important;
}

.max-w-9e {
  max-width: 9em !important;
}

.max-w-9d5e {
  max-width: 9.5em !important;
}

.max-w-10e {
  max-width: 10em !important;
}

.max-w-11e {
  max-width: 11em !important;
}

.max-w-12e {
  max-width: 12em !important;
}

.max-w-13e {
  max-width: 13em !important;
}

.max-w-14e {
  max-width: 14em !important;
}

.max-w-15e {
  max-width: 15em !important;
}

.max-w-16e {
  max-width: 16em !important;
}

.max-w-17e {
  max-width: 17em !important;
}

.max-w-18e {
  max-width: 18em !important;
}

.max-w-19e {
  max-width: 19em !important;
}

.max-w-20e {
  max-width: 20em !important;
}

.max-w-21e {
  max-width: 21em !important;
}

.max-w-22e {
  max-width: 22em !important;
}

.max-w-23e {
  max-width: 23em !important;
}

.max-w-24e {
  max-width: 24em !important;
}

.max-w-25e {
  max-width: 25em !important;
}

.max-w-26e {
  max-width: 26em !important;
}

.max-w-27e {
  max-width: 27em !important;
}

.max-w-28e {
  max-width: 28em !important;
}

.max-w-29e {
  max-width: 29em !important;
}

.max-w-30e {
  max-width: 30em !important;
}

.max-w-31e {
  max-width: 31em !important;
}

.max-w-32e {
  max-width: 32em !important;
}

.max-w-33e {
  max-width: 33em !important;
}

.max-w-34e {
  max-width: 34em !important;
}

.max-w-35e {
  max-width: 35em !important;
}

.max-w-36e {
  max-width: 36em !important;
}

.max-w-37e {
  max-width: 37em !important;
}

.max-w-38e {
  max-width: 38em !important;
}

.max-w-39e {
  max-width: 39em !important;
}

.max-w-40e {
  max-width: 40em !important;
}

.max-w-41e {
  max-width: 41em !important;
}

.max-w-42e {
  max-width: 42em !important;
}

.max-w-43e {
  max-width: 43em !important;
}

.max-w-44e {
  max-width: 44em !important;
}

.max-w-45e {
  max-width: 45em !important;
}

.max-w-46e {
  max-width: 46em !important;
}

.max-w-47e {
  max-width: 47em !important;
}

.max-w-48e {
  max-width: 48em !important;
}

.max-w-49e {
  max-width: 49em !important;
}

.max-w-50e {
  max-width: 50em !important;
}

.max-w-51e {
  max-width: 51em !important;
}

.max-w-52e {
  max-width: 52em !important;
}

.max-w-53e {
  max-width: 53em !important;
}

.max-w-54e {
  max-width: 54em !important;
}

.max-w-55e {
  max-width: 55em !important;
}

.max-w-56e {
  max-width: 56em !important;
}

.max-w-57e {
  max-width: 57em !important;
}

.max-w-58e {
  max-width: 58em !important;
}

.max-w-59e {
  max-width: 59em !important;
}

.max-w-60e {
  max-width: 60em !important;
}

.max-w-61e {
  max-width: 61em !important;
}

.max-w-62e {
  max-width: 62em !important;
}

.max-w-63e {
  max-width: 63em !important;
}

.max-w-64e {
  max-width: 64em !important;
}

.max-w-65e {
  max-width: 65em !important;
}

.max-w-66e {
  max-width: 66em !important;
}

.max-w-67e {
  max-width: 67em !important;
}

.max-w-68e {
  max-width: 68em !important;
}

.max-w-69e {
  max-width: 69em !important;
}

.max-w-70e {
  max-width: 70em !important;
}

.max-w-71e {
  max-width: 71em !important;
}

.max-w-72e {
  max-width: 72em !important;
}

.max-w-73e {
  max-width: 73em !important;
}

.max-w-74e {
  max-width: 74em !important;
}

.max-w-75e {
  max-width: 75em !important;
}

.max-w-76e {
  max-width: 76em !important;
}

.max-w-77e {
  max-width: 77em !important;
}

.max-w-78e {
  max-width: 78em !important;
}

.max-w-79e {
  max-width: 79em !important;
}

.max-w-80e {
  max-width: 80em !important;
}

.max-w-81e {
  max-width: 81em !important;
}

.max-w-82e {
  max-width: 82em !important;
}

.max-w-83e {
  max-width: 83em !important;
}

.max-w-84e {
  max-width: 84em !important;
}

.max-w-85e {
  max-width: 85em !important;
}

.max-w-86e {
  max-width: 86em !important;
}

.max-w-87e {
  max-width: 87em !important;
}

.max-w-88e {
  max-width: 88em !important;
}

.max-w-89e {
  max-width: 89em !important;
}

.max-w-90e {
  max-width: 90em !important;
}

.max-w-91e {
  max-width: 91em !important;
}

.max-w-92e {
  max-width: 92em !important;
}

.max-w-93e {
  max-width: 93em !important;
}

.max-w-94e {
  max-width: 94em !important;
}

.max-w-95e {
  max-width: 95em !important;
}

.max-w-96e {
  max-width: 96em !important;
}

.max-w-97e {
  max-width: 97em !important;
}

.max-w-98e {
  max-width: 98em !important;
}

.max-w-99e {
  max-width: 99em !important;
}

.max-w-100e {
  max-width: 100em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-max-w-d5e {
    max-width: 0.5em !important;
  }
  .sp-max-w-1e {
    max-width: 1em !important;
  }
  .sp-max-w-1d5e {
    max-width: 1.5em !important;
  }
  .sp-max-w-2e {
    max-width: 2em !important;
  }
  .sp-max-w-2d5e {
    max-width: 2.5em !important;
  }
  .sp-max-w-3e {
    max-width: 3em !important;
  }
  .sp-max-w-3d5e {
    max-width: 3.5em !important;
  }
  .sp-max-w-4e {
    max-width: 4em !important;
  }
  .sp-max-w-4d5e {
    max-width: 4.5em !important;
  }
  .sp-max-w-5e {
    max-width: 5em !important;
  }
  .sp-max-w-5d5e {
    max-width: 5.5em !important;
  }
  .sp-max-w-6e {
    max-width: 6em !important;
  }
  .sp-max-w-6d5e {
    max-width: 6.5em !important;
  }
  .sp-max-w-7e {
    max-width: 7em !important;
  }
  .sp-max-w-7d5e {
    max-width: 7.5em !important;
  }
  .sp-max-w-8e {
    max-width: 8em !important;
  }
  .sp-max-w-8d5e {
    max-width: 8.5em !important;
  }
  .sp-max-w-9e {
    max-width: 9em !important;
  }
  .sp-max-w-9d5e {
    max-width: 9.5em !important;
  }
  .sp-max-w-10e {
    max-width: 10em !important;
  }
  .sp-max-w-11e {
    max-width: 11em !important;
  }
  .sp-max-w-12e {
    max-width: 12em !important;
  }
  .sp-max-w-13e {
    max-width: 13em !important;
  }
  .sp-max-w-14e {
    max-width: 14em !important;
  }
  .sp-max-w-15e {
    max-width: 15em !important;
  }
  .sp-max-w-16e {
    max-width: 16em !important;
  }
  .sp-max-w-17e {
    max-width: 17em !important;
  }
  .sp-max-w-18e {
    max-width: 18em !important;
  }
  .sp-max-w-19e {
    max-width: 19em !important;
  }
  .sp-max-w-20e {
    max-width: 20em !important;
  }
  .sp-max-w-21e {
    max-width: 21em !important;
  }
  .sp-max-w-22e {
    max-width: 22em !important;
  }
  .sp-max-w-23e {
    max-width: 23em !important;
  }
  .sp-max-w-24e {
    max-width: 24em !important;
  }
  .sp-max-w-25e {
    max-width: 25em !important;
  }
  .sp-max-w-26e {
    max-width: 26em !important;
  }
  .sp-max-w-27e {
    max-width: 27em !important;
  }
  .sp-max-w-28e {
    max-width: 28em !important;
  }
  .sp-max-w-29e {
    max-width: 29em !important;
  }
  .sp-max-w-30e {
    max-width: 30em !important;
  }
  .sp-max-w-31e {
    max-width: 31em !important;
  }
  .sp-max-w-32e {
    max-width: 32em !important;
  }
  .sp-max-w-33e {
    max-width: 33em !important;
  }
  .sp-max-w-34e {
    max-width: 34em !important;
  }
  .sp-max-w-35e {
    max-width: 35em !important;
  }
  .sp-max-w-36e {
    max-width: 36em !important;
  }
  .sp-max-w-37e {
    max-width: 37em !important;
  }
  .sp-max-w-38e {
    max-width: 38em !important;
  }
  .sp-max-w-39e {
    max-width: 39em !important;
  }
  .sp-max-w-40e {
    max-width: 40em !important;
  }
  .sp-max-w-41e {
    max-width: 41em !important;
  }
  .sp-max-w-42e {
    max-width: 42em !important;
  }
  .sp-max-w-43e {
    max-width: 43em !important;
  }
  .sp-max-w-44e {
    max-width: 44em !important;
  }
  .sp-max-w-45e {
    max-width: 45em !important;
  }
  .sp-max-w-46e {
    max-width: 46em !important;
  }
  .sp-max-w-47e {
    max-width: 47em !important;
  }
  .sp-max-w-48e {
    max-width: 48em !important;
  }
  .sp-max-w-49e {
    max-width: 49em !important;
  }
  .sp-max-w-50e {
    max-width: 50em !important;
  }
  .sp-max-w-51e {
    max-width: 51em !important;
  }
  .sp-max-w-52e {
    max-width: 52em !important;
  }
  .sp-max-w-53e {
    max-width: 53em !important;
  }
  .sp-max-w-54e {
    max-width: 54em !important;
  }
  .sp-max-w-55e {
    max-width: 55em !important;
  }
  .sp-max-w-56e {
    max-width: 56em !important;
  }
  .sp-max-w-57e {
    max-width: 57em !important;
  }
  .sp-max-w-58e {
    max-width: 58em !important;
  }
  .sp-max-w-59e {
    max-width: 59em !important;
  }
  .sp-max-w-60e {
    max-width: 60em !important;
  }
  .sp-max-w-61e {
    max-width: 61em !important;
  }
  .sp-max-w-62e {
    max-width: 62em !important;
  }
  .sp-max-w-63e {
    max-width: 63em !important;
  }
  .sp-max-w-64e {
    max-width: 64em !important;
  }
  .sp-max-w-65e {
    max-width: 65em !important;
  }
  .sp-max-w-66e {
    max-width: 66em !important;
  }
  .sp-max-w-67e {
    max-width: 67em !important;
  }
  .sp-max-w-68e {
    max-width: 68em !important;
  }
  .sp-max-w-69e {
    max-width: 69em !important;
  }
  .sp-max-w-70e {
    max-width: 70em !important;
  }
  .sp-max-w-71e {
    max-width: 71em !important;
  }
  .sp-max-w-72e {
    max-width: 72em !important;
  }
  .sp-max-w-73e {
    max-width: 73em !important;
  }
  .sp-max-w-74e {
    max-width: 74em !important;
  }
  .sp-max-w-75e {
    max-width: 75em !important;
  }
  .sp-max-w-76e {
    max-width: 76em !important;
  }
  .sp-max-w-77e {
    max-width: 77em !important;
  }
  .sp-max-w-78e {
    max-width: 78em !important;
  }
  .sp-max-w-79e {
    max-width: 79em !important;
  }
  .sp-max-w-80e {
    max-width: 80em !important;
  }
  .sp-max-w-81e {
    max-width: 81em !important;
  }
  .sp-max-w-82e {
    max-width: 82em !important;
  }
  .sp-max-w-83e {
    max-width: 83em !important;
  }
  .sp-max-w-84e {
    max-width: 84em !important;
  }
  .sp-max-w-85e {
    max-width: 85em !important;
  }
  .sp-max-w-86e {
    max-width: 86em !important;
  }
  .sp-max-w-87e {
    max-width: 87em !important;
  }
  .sp-max-w-88e {
    max-width: 88em !important;
  }
  .sp-max-w-89e {
    max-width: 89em !important;
  }
  .sp-max-w-90e {
    max-width: 90em !important;
  }
  .sp-max-w-91e {
    max-width: 91em !important;
  }
  .sp-max-w-92e {
    max-width: 92em !important;
  }
  .sp-max-w-93e {
    max-width: 93em !important;
  }
  .sp-max-w-94e {
    max-width: 94em !important;
  }
  .sp-max-w-95e {
    max-width: 95em !important;
  }
  .sp-max-w-96e {
    max-width: 96em !important;
  }
  .sp-max-w-97e {
    max-width: 97em !important;
  }
  .sp-max-w-98e {
    max-width: 98em !important;
  }
  .sp-max-w-99e {
    max-width: 99em !important;
  }
  .sp-max-w-100e {
    max-width: 100em !important;
  }
}
/* layout: em min-width */
/* -------------------------------------------------------------------------- */
.min-w-d5e {
  min-width: 0.5em !important;
}

.min-w-1e {
  min-width: 1em !important;
}

.min-w-1d5e {
  min-width: 1.5em !important;
}

.min-w-2e {
  min-width: 2em !important;
}

.min-w-2d5e {
  min-width: 2.5em !important;
}

.min-w-3e {
  min-width: 3em !important;
}

.min-w-3d5e {
  min-width: 3.5em !important;
}

.min-w-4e {
  min-width: 4em !important;
}

.min-w-4d5e {
  min-width: 4.5em !important;
}

.min-w-5e {
  min-width: 5em !important;
}

.min-w-5d5e {
  min-width: 5.5em !important;
}

.min-w-6e {
  min-width: 6em !important;
}

.min-w-6d5e {
  min-width: 6.5em !important;
}

.min-w-7e {
  min-width: 7em !important;
}

.min-w-7d5e {
  min-width: 7.5em !important;
}

.min-w-8e {
  min-width: 8em !important;
}

.min-w-8d5e {
  min-width: 8.5em !important;
}

.min-w-9e {
  min-width: 9em !important;
}

.min-w-9d5e {
  min-width: 9.5em !important;
}

.min-w-10e {
  min-width: 10em !important;
}

.min-w-11e {
  min-width: 11em !important;
}

.min-w-12e {
  min-width: 12em !important;
}

.min-w-13e {
  min-width: 13em !important;
}

.min-w-14e {
  min-width: 14em !important;
}

.min-w-15e {
  min-width: 15em !important;
}

.min-w-16e {
  min-width: 16em !important;
}

.min-w-17e {
  min-width: 17em !important;
}

.min-w-18e {
  min-width: 18em !important;
}

.min-w-19e {
  min-width: 19em !important;
}

.min-w-20e {
  min-width: 20em !important;
}

.min-w-21e {
  min-width: 21em !important;
}

.min-w-22e {
  min-width: 22em !important;
}

.min-w-23e {
  min-width: 23em !important;
}

.min-w-24e {
  min-width: 24em !important;
}

.min-w-25e {
  min-width: 25em !important;
}

.min-w-26e {
  min-width: 26em !important;
}

.min-w-27e {
  min-width: 27em !important;
}

.min-w-28e {
  min-width: 28em !important;
}

.min-w-29e {
  min-width: 29em !important;
}

.min-w-30e {
  min-width: 30em !important;
}

.min-w-31e {
  min-width: 31em !important;
}

.min-w-32e {
  min-width: 32em !important;
}

.min-w-33e {
  min-width: 33em !important;
}

.min-w-34e {
  min-width: 34em !important;
}

.min-w-35e {
  min-width: 35em !important;
}

.min-w-36e {
  min-width: 36em !important;
}

.min-w-37e {
  min-width: 37em !important;
}

.min-w-38e {
  min-width: 38em !important;
}

.min-w-39e {
  min-width: 39em !important;
}

.min-w-40e {
  min-width: 40em !important;
}

.min-w-41e {
  min-width: 41em !important;
}

.min-w-42e {
  min-width: 42em !important;
}

.min-w-43e {
  min-width: 43em !important;
}

.min-w-44e {
  min-width: 44em !important;
}

.min-w-45e {
  min-width: 45em !important;
}

.min-w-46e {
  min-width: 46em !important;
}

.min-w-47e {
  min-width: 47em !important;
}

.min-w-48e {
  min-width: 48em !important;
}

.min-w-49e {
  min-width: 49em !important;
}

.min-w-50e {
  min-width: 50em !important;
}

.min-w-51e {
  min-width: 51em !important;
}

.min-w-52e {
  min-width: 52em !important;
}

.min-w-53e {
  min-width: 53em !important;
}

.min-w-54e {
  min-width: 54em !important;
}

.min-w-55e {
  min-width: 55em !important;
}

.min-w-56e {
  min-width: 56em !important;
}

.min-w-57e {
  min-width: 57em !important;
}

.min-w-58e {
  min-width: 58em !important;
}

.min-w-59e {
  min-width: 59em !important;
}

.min-w-60e {
  min-width: 60em !important;
}

.min-w-61e {
  min-width: 61em !important;
}

.min-w-62e {
  min-width: 62em !important;
}

.min-w-63e {
  min-width: 63em !important;
}

.min-w-64e {
  min-width: 64em !important;
}

.min-w-65e {
  min-width: 65em !important;
}

.min-w-66e {
  min-width: 66em !important;
}

.min-w-67e {
  min-width: 67em !important;
}

.min-w-68e {
  min-width: 68em !important;
}

.min-w-69e {
  min-width: 69em !important;
}

.min-w-70e {
  min-width: 70em !important;
}

.min-w-71e {
  min-width: 71em !important;
}

.min-w-72e {
  min-width: 72em !important;
}

.min-w-73e {
  min-width: 73em !important;
}

.min-w-74e {
  min-width: 74em !important;
}

.min-w-75e {
  min-width: 75em !important;
}

.min-w-76e {
  min-width: 76em !important;
}

.min-w-77e {
  min-width: 77em !important;
}

.min-w-78e {
  min-width: 78em !important;
}

.min-w-79e {
  min-width: 79em !important;
}

.min-w-80e {
  min-width: 80em !important;
}

.min-w-81e {
  min-width: 81em !important;
}

.min-w-82e {
  min-width: 82em !important;
}

.min-w-83e {
  min-width: 83em !important;
}

.min-w-84e {
  min-width: 84em !important;
}

.min-w-85e {
  min-width: 85em !important;
}

.min-w-86e {
  min-width: 86em !important;
}

.min-w-87e {
  min-width: 87em !important;
}

.min-w-88e {
  min-width: 88em !important;
}

.min-w-89e {
  min-width: 89em !important;
}

.min-w-90e {
  min-width: 90em !important;
}

.min-w-91e {
  min-width: 91em !important;
}

.min-w-92e {
  min-width: 92em !important;
}

.min-w-93e {
  min-width: 93em !important;
}

.min-w-94e {
  min-width: 94em !important;
}

.min-w-95e {
  min-width: 95em !important;
}

.min-w-96e {
  min-width: 96em !important;
}

.min-w-97e {
  min-width: 97em !important;
}

.min-w-98e {
  min-width: 98em !important;
}

.min-w-99e {
  min-width: 99em !important;
}

.min-w-100e {
  min-width: 100em !important;
}

@media screen and (min-min-width: 768px) and (orientation: portrait) {
  .sp-min-w-d5e {
    min-width: 0.5em !important;
  }
  .sp-min-w-1e {
    min-width: 1em !important;
  }
  .sp-min-w-1d5e {
    min-width: 1.5em !important;
  }
  .sp-min-w-2e {
    min-width: 2em !important;
  }
  .sp-min-w-2d5e {
    min-width: 2.5em !important;
  }
  .sp-min-w-3e {
    min-width: 3em !important;
  }
  .sp-min-w-3d5e {
    min-width: 3.5em !important;
  }
  .sp-min-w-4e {
    min-width: 4em !important;
  }
  .sp-min-w-4d5e {
    min-width: 4.5em !important;
  }
  .sp-min-w-5e {
    min-width: 5em !important;
  }
  .sp-min-w-5d5e {
    min-width: 5.5em !important;
  }
  .sp-min-w-6e {
    min-width: 6em !important;
  }
  .sp-min-w-6d5e {
    min-width: 6.5em !important;
  }
  .sp-min-w-7e {
    min-width: 7em !important;
  }
  .sp-min-w-7d5e {
    min-width: 7.5em !important;
  }
  .sp-min-w-8e {
    min-width: 8em !important;
  }
  .sp-min-w-8d5e {
    min-width: 8.5em !important;
  }
  .sp-min-w-9e {
    min-width: 9em !important;
  }
  .sp-min-w-9d5e {
    min-width: 9.5em !important;
  }
  .sp-min-w-10e {
    min-width: 10em !important;
  }
  .sp-min-w-11e {
    min-width: 11em !important;
  }
  .sp-min-w-12e {
    min-width: 12em !important;
  }
  .sp-min-w-13e {
    min-width: 13em !important;
  }
  .sp-min-w-14e {
    min-width: 14em !important;
  }
  .sp-min-w-15e {
    min-width: 15em !important;
  }
  .sp-min-w-16e {
    min-width: 16em !important;
  }
  .sp-min-w-17e {
    min-width: 17em !important;
  }
  .sp-min-w-18e {
    min-width: 18em !important;
  }
  .sp-min-w-19e {
    min-width: 19em !important;
  }
  .sp-min-w-20e {
    min-width: 20em !important;
  }
  .sp-min-w-21e {
    min-width: 21em !important;
  }
  .sp-min-w-22e {
    min-width: 22em !important;
  }
  .sp-min-w-23e {
    min-width: 23em !important;
  }
  .sp-min-w-24e {
    min-width: 24em !important;
  }
  .sp-min-w-25e {
    min-width: 25em !important;
  }
  .sp-min-w-26e {
    min-width: 26em !important;
  }
  .sp-min-w-27e {
    min-width: 27em !important;
  }
  .sp-min-w-28e {
    min-width: 28em !important;
  }
  .sp-min-w-29e {
    min-width: 29em !important;
  }
  .sp-min-w-30e {
    min-width: 30em !important;
  }
  .sp-min-w-31e {
    min-width: 31em !important;
  }
  .sp-min-w-32e {
    min-width: 32em !important;
  }
  .sp-min-w-33e {
    min-width: 33em !important;
  }
  .sp-min-w-34e {
    min-width: 34em !important;
  }
  .sp-min-w-35e {
    min-width: 35em !important;
  }
  .sp-min-w-36e {
    min-width: 36em !important;
  }
  .sp-min-w-37e {
    min-width: 37em !important;
  }
  .sp-min-w-38e {
    min-width: 38em !important;
  }
  .sp-min-w-39e {
    min-width: 39em !important;
  }
  .sp-min-w-40e {
    min-width: 40em !important;
  }
  .sp-min-w-41e {
    min-width: 41em !important;
  }
  .sp-min-w-42e {
    min-width: 42em !important;
  }
  .sp-min-w-43e {
    min-width: 43em !important;
  }
  .sp-min-w-44e {
    min-width: 44em !important;
  }
  .sp-min-w-45e {
    min-width: 45em !important;
  }
  .sp-min-w-46e {
    min-width: 46em !important;
  }
  .sp-min-w-47e {
    min-width: 47em !important;
  }
  .sp-min-w-48e {
    min-width: 48em !important;
  }
  .sp-min-w-49e {
    min-width: 49em !important;
  }
  .sp-min-w-50e {
    min-width: 50em !important;
  }
  .sp-min-w-51e {
    min-width: 51em !important;
  }
  .sp-min-w-52e {
    min-width: 52em !important;
  }
  .sp-min-w-53e {
    min-width: 53em !important;
  }
  .sp-min-w-54e {
    min-width: 54em !important;
  }
  .sp-min-w-55e {
    min-width: 55em !important;
  }
  .sp-min-w-56e {
    min-width: 56em !important;
  }
  .sp-min-w-57e {
    min-width: 57em !important;
  }
  .sp-min-w-58e {
    min-width: 58em !important;
  }
  .sp-min-w-59e {
    min-width: 59em !important;
  }
  .sp-min-w-60e {
    min-width: 60em !important;
  }
  .sp-min-w-61e {
    min-width: 61em !important;
  }
  .sp-min-w-62e {
    min-width: 62em !important;
  }
  .sp-min-w-63e {
    min-width: 63em !important;
  }
  .sp-min-w-64e {
    min-width: 64em !important;
  }
  .sp-min-w-65e {
    min-width: 65em !important;
  }
  .sp-min-w-66e {
    min-width: 66em !important;
  }
  .sp-min-w-67e {
    min-width: 67em !important;
  }
  .sp-min-w-68e {
    min-width: 68em !important;
  }
  .sp-min-w-69e {
    min-width: 69em !important;
  }
  .sp-min-w-70e {
    min-width: 70em !important;
  }
  .sp-min-w-71e {
    min-width: 71em !important;
  }
  .sp-min-w-72e {
    min-width: 72em !important;
  }
  .sp-min-w-73e {
    min-width: 73em !important;
  }
  .sp-min-w-74e {
    min-width: 74em !important;
  }
  .sp-min-w-75e {
    min-width: 75em !important;
  }
  .sp-min-w-76e {
    min-width: 76em !important;
  }
  .sp-min-w-77e {
    min-width: 77em !important;
  }
  .sp-min-w-78e {
    min-width: 78em !important;
  }
  .sp-min-w-79e {
    min-width: 79em !important;
  }
  .sp-min-w-80e {
    min-width: 80em !important;
  }
  .sp-min-w-81e {
    min-width: 81em !important;
  }
  .sp-min-w-82e {
    min-width: 82em !important;
  }
  .sp-min-w-83e {
    min-width: 83em !important;
  }
  .sp-min-w-84e {
    min-width: 84em !important;
  }
  .sp-min-w-85e {
    min-width: 85em !important;
  }
  .sp-min-w-86e {
    min-width: 86em !important;
  }
  .sp-min-w-87e {
    min-width: 87em !important;
  }
  .sp-min-w-88e {
    min-width: 88em !important;
  }
  .sp-min-w-89e {
    min-width: 89em !important;
  }
  .sp-min-w-90e {
    min-width: 90em !important;
  }
  .sp-min-w-91e {
    min-width: 91em !important;
  }
  .sp-min-w-92e {
    min-width: 92em !important;
  }
  .sp-min-w-93e {
    min-width: 93em !important;
  }
  .sp-min-w-94e {
    min-width: 94em !important;
  }
  .sp-min-w-95e {
    min-width: 95em !important;
  }
  .sp-min-w-96e {
    min-width: 96em !important;
  }
  .sp-min-w-97e {
    min-width: 97em !important;
  }
  .sp-min-w-98e {
    min-width: 98em !important;
  }
  .sp-min-w-99e {
    min-width: 99em !important;
  }
  .sp-min-w-100e {
    min-width: 100em !important;
  }
}
/* layout: percentage height */
/* -------------------------------------------------------------------------- */
.h-100p {
  height: 100% !important;
}

.h-90p {
  height: 90% !important;
}

.h-80p {
  height: 80% !important;
}

.h-70p {
  height: 70% !important;
}

.h-60p {
  height: 60% !important;
}

.h-50p {
  height: 50% !important;
}

.h-40p {
  height: 40% !important;
}

.h-30p {
  height: 30% !important;
}

.h-20p {
  height: 20% !important;
}

.h-10p {
  height: 10% !important;
}

.h-auto {
  height: auto !important;
}

.h-small {
  height: 33.333% !important;
}

.h-middle {
  height: 66.666% !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-h-100p {
    height: 100% !important;
  }
  .sp-h-90p {
    height: 90% !important;
  }
  .sp-h-80p {
    height: 80% !important;
  }
  .sp-h-70p {
    height: 70% !important;
  }
  .sp-h-60p {
    height: 60% !important;
  }
  .sp-h-50p {
    height: 50% !important;
  }
  .sp-h-40p {
    height: 40% !important;
  }
  .sp-h-30p {
    height: 30% !important;
  }
  .sp-h-20p {
    height: 20% !important;
  }
  .sp-h-10p {
    height: 10% !important;
  }
  .sp-h-auto {
    height: auto !important;
  }
  .sp-h-small {
    height: 33.333% !important;
  }
  .sp-h-middle {
    height: 66.666% !important;
  }
}
/* layout: em height */
/* -------------------------------------------------------------------------- */
.h-inherit {
  height: inherit !important;
}

.h-d5e {
  height: 0.5em !important;
}

.h-1e {
  height: 1em !important;
}

.h-1d5e {
  height: 1.5em !important;
}

.h-2e {
  height: 2em !important;
}

.h-2d5e {
  height: 2.5em !important;
}

.h-3e {
  height: 3em !important;
}

.h-3d5e {
  height: 3.5em !important;
}

.h-4e {
  height: 4em !important;
}

.h-4d5e {
  height: 4.5em !important;
}

.h-5e {
  height: 5em !important;
}

.h-5d5e {
  height: 5.5em !important;
}

.h-6e {
  height: 6em !important;
}

.h-6d5e {
  height: 6.5em !important;
}

.h-7e {
  height: 7em !important;
}

.h-7d5e {
  height: 7.5em !important;
}

.h-8e {
  height: 8em !important;
}

.h-8d5e {
  height: 8.5em !important;
}

.h-9e {
  height: 9em !important;
}

.h-9d5e {
  height: 9.5em !important;
}

.h-10e {
  height: 10em !important;
}

.h-11e {
  height: 11em !important;
}

.h-12e {
  height: 12em !important;
}

.h-13e {
  height: 13em !important;
}

.h-14e {
  height: 14em !important;
}

.h-15e {
  height: 15em !important;
}

.h-16e {
  height: 16em !important;
}

.h-17e {
  height: 17em !important;
}

.h-18e {
  height: 18em !important;
}

.h-19e {
  height: 19em !important;
}

.h-20e {
  height: 20em !important;
}

.h-21e {
  height: 21em !important;
}

.h-22e {
  height: 22em !important;
}

.h-23e {
  height: 23em !important;
}

.h-24e {
  height: 24em !important;
}

.h-25e {
  height: 25em !important;
}

.h-26e {
  height: 26em !important;
}

.h-27e {
  height: 27em !important;
}

.h-28e {
  height: 28em !important;
}

.h-29e {
  height: 29em !important;
}

.h-30e {
  height: 30em !important;
}

.h-31e {
  height: 31em !important;
}

.h-32e {
  height: 32em !important;
}

.h-33e {
  height: 33em !important;
}

.h-34e {
  height: 34em !important;
}

.h-35e {
  height: 35em !important;
}

.h-36e {
  height: 36em !important;
}

.h-37e {
  height: 37em !important;
}

.h-38e {
  height: 38em !important;
}

.h-39e {
  height: 39em !important;
}

.h-40e {
  height: 40em !important;
}

.h-41e {
  height: 41em !important;
}

.h-42e {
  height: 42em !important;
}

.h-43e {
  height: 43em !important;
}

.h-44e {
  height: 44em !important;
}

.h-45e {
  height: 45em !important;
}

.h-46e {
  height: 46em !important;
}

.h-47e {
  height: 47em !important;
}

.h-48e {
  height: 48em !important;
}

.h-49e {
  height: 49em !important;
}

.h-50e {
  height: 50em !important;
}

.h-51e {
  height: 51em !important;
}

.h-52e {
  height: 52em !important;
}

.h-53e {
  height: 53em !important;
}

.h-54e {
  height: 54em !important;
}

.h-55e {
  height: 55em !important;
}

.h-56e {
  height: 56em !important;
}

.h-57e {
  height: 57em !important;
}

.h-58e {
  height: 58em !important;
}

.h-59e {
  height: 59em !important;
}

.h-60e {
  height: 59em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-h-inherit {
    height: inherit !important;
  }
  .sp-h-d5e {
    height: 0.5em !important;
  }
  .sp-h-1e {
    height: 1em !important;
  }
  .sp-h-1d5e {
    height: 1.5em !important;
  }
  .sp-h-2e {
    height: 2em !important;
  }
  .sp-h-2d5e {
    height: 2.5em !important;
  }
  .sp-h-3e {
    height: 3em !important;
  }
  .sp-h-3d5e {
    height: 3.5em !important;
  }
  .sp-h-4e {
    height: 4em !important;
  }
  .sp-h-4d5e {
    height: 4.5em !important;
  }
  .sp-h-5e {
    height: 5em !important;
  }
  .sp-h-5d5e {
    height: 5.5em !important;
  }
  .sp-h-6e {
    height: 6em !important;
  }
  .sp-h-6d5e {
    height: 6.5em !important;
  }
  .sp-h-7e {
    height: 7em !important;
  }
  .sp-h-7d5e {
    height: 7.5em !important;
  }
  .sp-h-8e {
    height: 8em !important;
  }
  .sp-h-8d5e {
    height: 8.5em !important;
  }
  .sp-h-9e {
    height: 9em !important;
  }
  .sp-h-9d5e {
    height: 9.5em !important;
  }
  .sp-h-10e {
    height: 10em !important;
  }
  .sp-h-11e {
    height: 11em !important;
  }
  .sp-h-12e {
    height: 12em !important;
  }
  .sp-h-13e {
    height: 13em !important;
  }
  .sp-h-14e {
    height: 14em !important;
  }
  .sp-h-15e {
    height: 15em !important;
  }
  .sp-h-16e {
    height: 16em !important;
  }
  .sp-h-17e {
    height: 17em !important;
  }
  .sp-h-18e {
    height: 18em !important;
  }
  .sp-h-19e {
    height: 19em !important;
  }
  .sp-h-20e {
    height: 20em !important;
  }
  .sp-h-21e {
    height: 21em !important;
  }
  .sp-h-22e {
    height: 22em !important;
  }
  .sp-h-23e {
    height: 23em !important;
  }
  .sp-h-24e {
    height: 24em !important;
  }
  .sp-h-25e {
    height: 25em !important;
  }
  .sp-h-26e {
    height: 26em !important;
  }
  .sp-h-27e {
    height: 27em !important;
  }
  .sp-h-28e {
    height: 28em !important;
  }
  .sp-h-29e {
    height: 29em !important;
  }
  .sp-h-30e {
    height: 30em !important;
  }
  .sp-h-31e {
    height: 31em !important;
  }
  .sp-h-32e {
    height: 32em !important;
  }
  .sp-h-33e {
    height: 33em !important;
  }
  .sp-h-34e {
    height: 34em !important;
  }
  .sp-h-35e {
    height: 35em !important;
  }
  .sp-h-36e {
    height: 36em !important;
  }
  .sp-h-37e {
    height: 37em !important;
  }
  .sp-h-38e {
    height: 38em !important;
  }
  .sp-h-39e {
    height: 39em !important;
  }
  .sp-h-40e {
    height: 40em !important;
  }
  .sp-h-41e {
    height: 41em !important;
  }
  .sp-h-42e {
    height: 42em !important;
  }
  .sp-h-43e {
    height: 43em !important;
  }
  .sp-h-44e {
    height: 44em !important;
  }
  .sp-h-45e {
    height: 45em !important;
  }
  .sp-h-46e {
    height: 46em !important;
  }
  .sp-h-47e {
    height: 47em !important;
  }
  .sp-h-48e {
    height: 48em !important;
  }
  .sp-h-49e {
    height: 49em !important;
  }
  .sp-h-50e {
    height: 50em !important;
  }
  .sp-h-51e {
    height: 51em !important;
  }
  .sp-h-52e {
    height: 52em !important;
  }
  .sp-h-53e {
    height: 53em !important;
  }
  .sp-h-54e {
    height: 54em !important;
  }
  .sp-h-55e {
    height: 55em !important;
  }
  .sp-h-56e {
    height: 56em !important;
  }
  .sp-h-57e {
    height: 57em !important;
  }
  .sp-h-58e {
    height: 58em !important;
  }
  .sp-h-59e {
    height: 59em !important;
  }
  .sp-h-60e {
    height: 59em !important;
  }
}
/* layout: em max-height */
/* -------------------------------------------------------------------------- */
.max-h-inherit {
  max-height: inherit !important;
}

.max-h-d5e {
  max-height: 0.5em !important;
}

.max-h-1e {
  max-height: 1em !important;
}

.max-h-1d5e {
  max-height: 1.5em !important;
}

.max-h-2e {
  max-height: 2em !important;
}

.max-h-2d5e {
  max-height: 2.5em !important;
}

.max-h-3e {
  max-height: 3em !important;
}

.max-h-3d5e {
  max-height: 3.5em !important;
}

.max-h-4e {
  max-height: 4em !important;
}

.max-h-4d5e {
  max-height: 4.5em !important;
}

.max-h-5e {
  max-height: 5em !important;
}

.max-h-5d5e {
  max-height: 5.5em !important;
}

.max-h-6e {
  max-height: 6em !important;
}

.max-h-6d5e {
  max-height: 6.5em !important;
}

.max-h-7e {
  max-height: 7em !important;
}

.max-h-7d5e {
  max-height: 7.5em !important;
}

.max-h-8e {
  max-height: 8em !important;
}

.max-h-8d5e {
  max-height: 8.5em !important;
}

.max-h-9e {
  max-height: 9em !important;
}

.max-h-9d5e {
  max-height: 9.5em !important;
}

.max-h-10e {
  max-height: 10em !important;
}

.max-h-11e {
  max-height: 11em !important;
}

.max-h-12e {
  max-height: 12em !important;
}

.max-h-13e {
  max-height: 13em !important;
}

.max-h-14e {
  max-height: 14em !important;
}

.max-h-15e {
  max-height: 15em !important;
}

.max-h-16e {
  max-height: 16em !important;
}

.max-h-17e {
  max-height: 17em !important;
}

.max-h-18e {
  max-height: 18em !important;
}

.max-h-19e {
  max-height: 19em !important;
}

.max-h-20e {
  max-height: 20em !important;
}

.max-h-21e {
  max-height: 21em !important;
}

.max-h-22e {
  max-height: 22em !important;
}

.max-h-23e {
  max-height: 23em !important;
}

.max-h-24e {
  max-height: 24em !important;
}

.max-h-25e {
  max-height: 25em !important;
}

.max-h-26e {
  max-height: 26em !important;
}

.max-h-27e {
  max-height: 27em !important;
}

.max-h-28e {
  max-height: 28em !important;
}

.max-h-29e {
  max-height: 29em !important;
}

.max-h-30e {
  max-height: 30em !important;
}

.max-h-31e {
  max-height: 31em !important;
}

.max-h-32e {
  max-height: 32em !important;
}

.max-h-33e {
  max-height: 33em !important;
}

.max-h-34e {
  max-height: 34em !important;
}

.max-h-35e {
  max-height: 35em !important;
}

.max-h-36e {
  max-height: 36em !important;
}

.max-h-37e {
  max-height: 37em !important;
}

.max-h-38e {
  max-height: 38em !important;
}

.max-h-39e {
  max-height: 39em !important;
}

.max-h-40e {
  max-height: 40em !important;
}

.max-h-41e {
  max-height: 41em !important;
}

.max-h-42e {
  max-height: 42em !important;
}

.max-h-43e {
  max-height: 43em !important;
}

.max-h-44e {
  max-height: 44em !important;
}

.max-h-45e {
  max-height: 45em !important;
}

.max-h-46e {
  max-height: 46em !important;
}

.max-h-47e {
  max-height: 47em !important;
}

.max-h-48e {
  max-height: 48em !important;
}

.max-h-49e {
  max-height: 49em !important;
}

.max-h-50e {
  max-height: 50em !important;
}

.max-h-51e {
  max-height: 51em !important;
}

.max-h-52e {
  max-height: 52em !important;
}

.max-h-53e {
  max-height: 53em !important;
}

.max-h-54e {
  max-height: 54em !important;
}

.max-h-55e {
  max-height: 55em !important;
}

.max-h-56e {
  max-height: 56em !important;
}

.max-h-57e {
  max-height: 57em !important;
}

.max-h-58e {
  max-height: 58em !important;
}

.max-h-59e {
  max-height: 59em !important;
}

.max-h-60e {
  max-height: 59em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-max-h-inherit {
    max-height: inherit !important;
  }
  .sp-max-h-d5e {
    max-height: 0.5em !important;
  }
  .sp-max-h-1e {
    max-height: 1em !important;
  }
  .sp-max-h-1d5e {
    max-height: 1.5em !important;
  }
  .sp-max-h-2e {
    max-height: 2em !important;
  }
  .sp-max-h-2d5e {
    max-height: 2.5em !important;
  }
  .sp-max-h-3e {
    max-height: 3em !important;
  }
  .sp-max-h-3d5e {
    max-height: 3.5em !important;
  }
  .sp-max-h-4e {
    max-height: 4em !important;
  }
  .sp-max-h-4d5e {
    max-height: 4.5em !important;
  }
  .sp-max-h-5e {
    max-height: 5em !important;
  }
  .sp-max-h-5d5e {
    max-height: 5.5em !important;
  }
  .sp-max-h-6e {
    max-height: 6em !important;
  }
  .sp-max-h-6d5e {
    max-height: 6.5em !important;
  }
  .sp-max-h-7e {
    max-height: 7em !important;
  }
  .sp-max-h-7d5e {
    max-height: 7.5em !important;
  }
  .sp-max-h-8e {
    max-height: 8em !important;
  }
  .sp-max-h-8d5e {
    max-height: 8.5em !important;
  }
  .sp-max-h-9e {
    max-height: 9em !important;
  }
  .sp-max-h-9d5e {
    max-height: 9.5em !important;
  }
  .sp-max-h-10e {
    max-height: 10em !important;
  }
  .sp-max-h-11e {
    max-height: 11em !important;
  }
  .sp-max-h-12e {
    max-height: 12em !important;
  }
  .sp-max-h-13e {
    max-height: 13em !important;
  }
  .sp-max-h-14e {
    max-height: 14em !important;
  }
  .sp-max-h-15e {
    max-height: 15em !important;
  }
  .sp-max-h-16e {
    max-height: 16em !important;
  }
  .sp-max-h-17e {
    max-height: 17em !important;
  }
  .sp-max-h-18e {
    max-height: 18em !important;
  }
  .sp-max-h-19e {
    max-height: 19em !important;
  }
  .sp-max-h-20e {
    max-height: 20em !important;
  }
  .sp-max-h-21e {
    max-height: 21em !important;
  }
  .sp-max-h-22e {
    max-height: 22em !important;
  }
  .sp-max-h-23e {
    max-height: 23em !important;
  }
  .sp-max-h-24e {
    max-height: 24em !important;
  }
  .sp-max-h-25e {
    max-height: 25em !important;
  }
  .sp-max-h-26e {
    max-height: 26em !important;
  }
  .sp-max-h-27e {
    max-height: 27em !important;
  }
  .sp-max-h-28e {
    max-height: 28em !important;
  }
  .sp-max-h-29e {
    max-height: 29em !important;
  }
  .sp-max-h-30e {
    max-height: 30em !important;
  }
  .sp-max-h-31e {
    max-height: 31em !important;
  }
  .sp-max-h-32e {
    max-height: 32em !important;
  }
  .sp-max-h-33e {
    max-height: 33em !important;
  }
  .sp-max-h-34e {
    max-height: 34em !important;
  }
  .sp-max-h-35e {
    max-height: 35em !important;
  }
  .sp-max-h-36e {
    max-height: 36em !important;
  }
  .sp-max-h-37e {
    max-height: 37em !important;
  }
  .sp-max-h-38e {
    max-height: 38em !important;
  }
  .sp-max-h-39e {
    max-height: 39em !important;
  }
  .sp-max-h-40e {
    max-height: 40em !important;
  }
  .sp-max-h-41e {
    max-height: 41em !important;
  }
  .sp-max-h-42e {
    max-height: 42em !important;
  }
  .sp-max-h-43e {
    max-height: 43em !important;
  }
  .sp-max-h-44e {
    max-height: 44em !important;
  }
  .sp-max-h-45e {
    max-height: 45em !important;
  }
  .sp-max-h-46e {
    max-height: 46em !important;
  }
  .sp-max-h-47e {
    max-height: 47em !important;
  }
  .sp-max-h-48e {
    max-height: 48em !important;
  }
  .sp-max-h-49e {
    max-height: 49em !important;
  }
  .sp-max-h-50e {
    max-height: 50em !important;
  }
  .sp-max-h-51e {
    max-height: 51em !important;
  }
  .sp-max-h-52e {
    max-height: 52em !important;
  }
  .sp-max-h-53e {
    max-height: 53em !important;
  }
  .sp-max-h-54e {
    max-height: 54em !important;
  }
  .sp-max-h-55e {
    max-height: 55em !important;
  }
  .sp-max-h-56e {
    max-height: 56em !important;
  }
  .sp-max-h-57e {
    max-height: 57em !important;
  }
  .sp-max-h-58e {
    max-height: 58em !important;
  }
  .sp-max-h-59e {
    max-height: 59em !important;
  }
  .sp-max-h-60e {
    max-height: 59em !important;
  }
}
/* layout: em min-height */
/* -------------------------------------------------------------------------- */
.min-h-inherit {
  min-height: inherit !important;
}

.min-h-d5e {
  min-height: 0.5em !important;
}

.min-h-1e {
  min-height: 1em !important;
}

.min-h-1d5e {
  min-height: 1.5em !important;
}

.min-h-2e {
  min-height: 2em !important;
}

.min-h-2d5e {
  min-height: 2.5em !important;
}

.min-h-3e {
  min-height: 3em !important;
}

.min-h-3d5e {
  min-height: 3.5em !important;
}

.min-h-4e {
  min-height: 4em !important;
}

.min-h-4d5e {
  min-height: 4.5em !important;
}

.min-h-5e {
  min-height: 5em !important;
}

.min-h-5d5e {
  min-height: 5.5em !important;
}

.min-h-6e {
  min-height: 6em !important;
}

.min-h-6d5e {
  min-height: 6.5em !important;
}

.min-h-7e {
  min-height: 7em !important;
}

.min-h-7d5e {
  min-height: 7.5em !important;
}

.min-h-8e {
  min-height: 8em !important;
}

.min-h-8d5e {
  min-height: 8.5em !important;
}

.min-h-9e {
  min-height: 9em !important;
}

.min-h-9d5e {
  min-height: 9.5em !important;
}

.min-h-10e {
  min-height: 10em !important;
}

.min-h-11e {
  min-height: 11em !important;
}

.min-h-12e {
  min-height: 12em !important;
}

.min-h-13e {
  min-height: 13em !important;
}

.min-h-14e {
  min-height: 14em !important;
}

.min-h-15e {
  min-height: 15em !important;
}

.min-h-16e {
  min-height: 16em !important;
}

.min-h-17e {
  min-height: 17em !important;
}

.min-h-18e {
  min-height: 18em !important;
}

.min-h-19e {
  min-height: 19em !important;
}

.min-h-20e {
  min-height: 20em !important;
}

.min-h-21e {
  min-height: 21em !important;
}

.min-h-22e {
  min-height: 22em !important;
}

.min-h-23e {
  min-height: 23em !important;
}

.min-h-24e {
  min-height: 24em !important;
}

.min-h-25e {
  min-height: 25em !important;
}

.min-h-26e {
  min-height: 26em !important;
}

.min-h-27e {
  min-height: 27em !important;
}

.min-h-28e {
  min-height: 28em !important;
}

.min-h-29e {
  min-height: 29em !important;
}

.min-h-30e {
  min-height: 30em !important;
}

.min-h-31e {
  min-height: 31em !important;
}

.min-h-32e {
  min-height: 32em !important;
}

.min-h-33e {
  min-height: 33em !important;
}

.min-h-34e {
  min-height: 34em !important;
}

.min-h-35e {
  min-height: 35em !important;
}

.min-h-36e {
  min-height: 36em !important;
}

.min-h-37e {
  min-height: 37em !important;
}

.min-h-38e {
  min-height: 38em !important;
}

.min-h-39e {
  min-height: 39em !important;
}

.min-h-40e {
  min-height: 40em !important;
}

.min-h-41e {
  min-height: 41em !important;
}

.min-h-42e {
  min-height: 42em !important;
}

.min-h-43e {
  min-height: 43em !important;
}

.min-h-44e {
  min-height: 44em !important;
}

.min-h-45e {
  min-height: 45em !important;
}

.min-h-46e {
  min-height: 46em !important;
}

.min-h-47e {
  min-height: 47em !important;
}

.min-h-48e {
  min-height: 48em !important;
}

.min-h-49e {
  min-height: 49em !important;
}

.min-h-50e {
  min-height: 50em !important;
}

.min-h-51e {
  min-height: 51em !important;
}

.min-h-52e {
  min-height: 52em !important;
}

.min-h-53e {
  min-height: 53em !important;
}

.min-h-54e {
  min-height: 54em !important;
}

.min-h-55e {
  min-height: 55em !important;
}

.min-h-56e {
  min-height: 56em !important;
}

.min-h-57e {
  min-height: 57em !important;
}

.min-h-58e {
  min-height: 58em !important;
}

.min-h-59e {
  min-height: 59em !important;
}

.min-h-60e {
  min-height: 59em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-min-h-inherit {
    min-height: inherit !important;
  }
  .sp-min-h-d5e {
    min-height: 0.5em !important;
  }
  .sp-min-h-1e {
    min-height: 1em !important;
  }
  .sp-min-h-1d5e {
    min-height: 1.5em !important;
  }
  .sp-min-h-2e {
    min-height: 2em !important;
  }
  .sp-min-h-2d5e {
    min-height: 2.5em !important;
  }
  .sp-min-h-3e {
    min-height: 3em !important;
  }
  .sp-min-h-3d5e {
    min-height: 3.5em !important;
  }
  .sp-min-h-4e {
    min-height: 4em !important;
  }
  .sp-min-h-4d5e {
    min-height: 4.5em !important;
  }
  .sp-min-h-5e {
    min-height: 5em !important;
  }
  .sp-min-h-5d5e {
    min-height: 5.5em !important;
  }
  .sp-min-h-6e {
    min-height: 6em !important;
  }
  .sp-min-h-6d5e {
    min-height: 6.5em !important;
  }
  .sp-min-h-7e {
    min-height: 7em !important;
  }
  .sp-min-h-7d5e {
    min-height: 7.5em !important;
  }
  .sp-min-h-8e {
    min-height: 8em !important;
  }
  .sp-min-h-8d5e {
    min-height: 8.5em !important;
  }
  .sp-min-h-9e {
    min-height: 9em !important;
  }
  .sp-min-h-9d5e {
    min-height: 9.5em !important;
  }
  .sp-min-h-10e {
    min-height: 10em !important;
  }
  .sp-min-h-11e {
    min-height: 11em !important;
  }
  .sp-min-h-12e {
    min-height: 12em !important;
  }
  .sp-min-h-13e {
    min-height: 13em !important;
  }
  .sp-min-h-14e {
    min-height: 14em !important;
  }
  .sp-min-h-15e {
    min-height: 15em !important;
  }
  .sp-min-h-16e {
    min-height: 16em !important;
  }
  .sp-min-h-17e {
    min-height: 17em !important;
  }
  .sp-min-h-18e {
    min-height: 18em !important;
  }
  .sp-min-h-19e {
    min-height: 19em !important;
  }
  .sp-min-h-20e {
    min-height: 20em !important;
  }
  .sp-min-h-21e {
    min-height: 21em !important;
  }
  .sp-min-h-22e {
    min-height: 22em !important;
  }
  .sp-min-h-23e {
    min-height: 23em !important;
  }
  .sp-min-h-24e {
    min-height: 24em !important;
  }
  .sp-min-h-25e {
    min-height: 25em !important;
  }
  .sp-min-h-26e {
    min-height: 26em !important;
  }
  .sp-min-h-27e {
    min-height: 27em !important;
  }
  .sp-min-h-28e {
    min-height: 28em !important;
  }
  .sp-min-h-29e {
    min-height: 29em !important;
  }
  .sp-min-h-30e {
    min-height: 30em !important;
  }
  .sp-min-h-31e {
    min-height: 31em !important;
  }
  .sp-min-h-32e {
    min-height: 32em !important;
  }
  .sp-min-h-33e {
    min-height: 33em !important;
  }
  .sp-min-h-34e {
    min-height: 34em !important;
  }
  .sp-min-h-35e {
    min-height: 35em !important;
  }
  .sp-min-h-36e {
    min-height: 36em !important;
  }
  .sp-min-h-37e {
    min-height: 37em !important;
  }
  .sp-min-h-38e {
    min-height: 38em !important;
  }
  .sp-min-h-39e {
    min-height: 39em !important;
  }
  .sp-min-h-40e {
    min-height: 40em !important;
  }
  .sp-min-h-41e {
    min-height: 41em !important;
  }
  .sp-min-h-42e {
    min-height: 42em !important;
  }
  .sp-min-h-43e {
    min-height: 43em !important;
  }
  .sp-min-h-44e {
    min-height: 44em !important;
  }
  .sp-min-h-45e {
    min-height: 45em !important;
  }
  .sp-min-h-46e {
    min-height: 46em !important;
  }
  .sp-min-h-47e {
    min-height: 47em !important;
  }
  .sp-min-h-48e {
    min-height: 48em !important;
  }
  .sp-min-h-49e {
    min-height: 49em !important;
  }
  .sp-min-h-50e {
    min-height: 50em !important;
  }
  .sp-min-h-51e {
    min-height: 51em !important;
  }
  .sp-min-h-52e {
    min-height: 52em !important;
  }
  .sp-min-h-53e {
    min-height: 53em !important;
  }
  .sp-min-h-54e {
    min-height: 54em !important;
  }
  .sp-min-h-55e {
    min-height: 55em !important;
  }
  .sp-min-h-56e {
    min-height: 56em !important;
  }
  .sp-min-h-57e {
    min-height: 57em !important;
  }
  .sp-min-h-58e {
    min-height: 58em !important;
  }
  .sp-min-h-59e {
    min-height: 59em !important;
  }
  .sp-min-h-60e {
    min-height: 59em !important;
  }
}
/* layout: float */
/* -------------------------------------------------------------------------- */
.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-float-right {
    float: right;
  }
  .sp-float-left {
    float: left;
  }
  .sp-float-none {
    float: none;
  }
}
/* ========================================================================== */
/* Typography */
/* ========================================================================== */
/* typography: font-family */
/* -------------------------------------------------------------------------- */
.ff-sans {
  font-family: "BIZ UDPGothic", sans-serif !important;
}

.ff-serif {
  font-family: serif !important;
}

.ff-libre {
  font-family: "Barlow", serif !important;
}

/* typography: font-size */
/* -------------------------------------------------------------------------- */
.fz-minimum {
  font-size: 50% !important;
}

.fz-small {
  font-size: 75% !important;
}

.fz-medium {
  font-size: 125% !important;
}

.fz-large {
  font-size: 150% !important;
}

.fz-huge {
  font-size: 200% !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-fz-minimum {
    font-size: 50% !important;
  }
  .sp-fz-small {
    font-size: 75% !important;
  }
  .sp-fz-medium {
    font-size: 125% !important;
  }
  .sp-fz-large {
    font-size: 150% !important;
  }
  .sp-fz-huge {
    font-size: 200% !important;
  }
}
.fz-10 {
  font-size: 0.625em !important;
}

.fz-12 {
  font-size: 0.75em !important;
}

.fz-14 {
  font-size: 0.875em !important;
}

.fz-16 {
  font-size: 1em !important;
}

.fz-18 {
  font-size: 1.125em !important;
}

.fz-20 {
  font-size: 1.25em !important;
}

.fz-22 {
  font-size: 1.375em !important;
}

.fz-24 {
  font-size: 1.5em !important;
}

.fz-28 {
  font-size: 1.75em !important;
}

.fz-32 {
  font-size: 2em !important;
}

.fz-36 {
  font-size: 2.25em !important;
}

.fz-40 {
  font-size: 2.5em !important;
}

.fz-44 {
  font-size: 2.75em !important;
}

.fz-48 {
  font-size: 3em !important;
}

.fz-42 {
  font-size: 3.25em !important;
}

.fz-56 {
  font-size: 3.5em !important;
}

.fz-60 {
  font-size: 3.75em !important;
}

.fz-64 {
  font-size: 4em !important;
}

.fz-68 {
  font-size: 4.25em !important;
}

.fz-72 {
  font-size: 4.5em !important;
}

.fz-76 {
  font-size: 4.75em !important;
}

.fz-80 {
  font-size: 5em !important;
}

.fz-84 {
  font-size: 5.25em !important;
}

.fz-88 {
  font-size: 5.5em !important;
}

.fz-92 {
  font-size: 5.75em !important;
}

.fz-96 {
  font-size: 6em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-fz-10 {
    font-size: 0.625em !important;
  }
  .sp-fz-12 {
    font-size: 0.75em !important;
  }
  .sp-fz-14 {
    font-size: 0.875em !important;
  }
  .sp-fz-16 {
    font-size: 1em !important;
  }
  .sp-fz-18 {
    font-size: 1.125em !important;
  }
  .sp-fz-20 {
    font-size: 1.25em !important;
  }
  .sp-fz-22 {
    font-size: 1.375em !important;
  }
  .sp-fz-24 {
    font-size: 1.5em !important;
  }
  .sp-fz-28 {
    font-size: 1.75em !important;
  }
  .sp-fz-32 {
    font-size: 2em !important;
  }
  .sp-fz-36 {
    font-size: 2.25em !important;
  }
  .sp-fz-40 {
    font-size: 2.5em !important;
  }
  .sp-fz-44 {
    font-size: 2.75em !important;
  }
  .sp-fz-48 {
    font-size: 3em !important;
  }
  .sp-fz-42 {
    font-size: 3.25em !important;
  }
  .sp-fz-56 {
    font-size: 3.5em !important;
  }
  .sp-fz-60 {
    font-size: 3.75em !important;
  }
  .sp-fz-64 {
    font-size: 4em !important;
  }
  .sp-fz-68 {
    font-size: 4.25em !important;
  }
  .sp-fz-72 {
    font-size: 4.5em !important;
  }
  .sp-fz-76 {
    font-size: 4.75em !important;
  }
  .sp-fz-80 {
    font-size: 5em !important;
  }
  .sp-fz-84 {
    font-size: 5.25em !important;
  }
  .sp-fz-88 {
    font-size: 5.5em !important;
  }
  .sp-fz-92 {
    font-size: 5.75em !important;
  }
  .sp-fz-96 {
    font-size: 6 !important;
  }
}
/* typography: font-style */
/* -------------------------------------------------------------------------- */
.fs-normal {
  font-style: normal !important;
}

.fs-italic {
  font-style: italic !important;
}

.fs-italic {
  font-style: oblique !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-fs-normal {
    font-style: normal !important;
  }
  .sp-fs-italic {
    font-style: italic !important;
  }
  .sp-fs-italic {
    font-style: oblique !important;
  }
}
/* typography: font-weight */
/* -------------------------------------------------------------------------- */
.fw-light {
  font-weight: 300 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* typography: letter-spacing */
/* -------------------------------------------------------------------------- */
.ls-0 {
  letter-spacing: 0 !important;
}

.ls-1 {
  letter-spacing: 0.1em !important;
}

.ls-2 {
  letter-spacing: 0.2em !important;
}

.ls-3 {
  letter-spacing: 0.3em !important;
}

.ls-4 {
  letter-spacing: 0.4em !important;
}

.ls-5 {
  letter-spacing: 0.5em !important;
}

.ls-6 {
  letter-spacing: 0.6em !important;
}

.ls-7 {
  letter-spacing: 0.7em !important;
}

.ls-8 {
  letter-spacing: 0.8em !important;
}

.ls-9 {
  letter-spacing: 0.9em !important;
}

.ls-10 {
  letter-spacing: 1em !important;
}

.ls-11 {
  letter-spacing: 1.1em !important;
}

.ls-12 {
  letter-spacing: 1.2em !important;
}

.ls-13 {
  letter-spacing: 1.3em !important;
}

.ls-14 {
  letter-spacing: 1.4em !important;
}

.ls-15 {
  letter-spacing: 1.5em !important;
}

.ls-16 {
  letter-spacing: 1.6em !important;
}

.ls-17 {
  letter-spacing: 1.7em !important;
}

.ls-18 {
  letter-spacing: 1.8em !important;
}

.ls-19 {
  letter-spacing: 1.9em !important;
}

.ls-20 {
  letter-spacing: 2em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-ls-0 {
    letter-spacing: 0 !important;
  }
  .sp-ls-1 {
    letter-spacing: 0.1em !important;
  }
  .sp-ls-2 {
    letter-spacing: 0.2em !important;
  }
  .sp-ls-3 {
    letter-spacing: 0.3em !important;
  }
  .sp-ls-4 {
    letter-spacing: 0.4em !important;
  }
  .sp-ls-5 {
    letter-spacing: 0.5em !important;
  }
  .sp-ls-6 {
    letter-spacing: 0.6em !important;
  }
  .sp-ls-7 {
    letter-spacing: 0.7em !important;
  }
  .sp-ls-8 {
    letter-spacing: 0.8em !important;
  }
  .sp-ls-9 {
    letter-spacing: 0.9em !important;
  }
  .sp-ls-10 {
    letter-spacing: 1em !important;
  }
  .sp-ls-11 {
    letter-spacing: 1.1em !important;
  }
  .sp-ls-12 {
    letter-spacing: 1.2em !important;
  }
  .sp-ls-13 {
    letter-spacing: 1.3em !important;
  }
  .sp-ls-14 {
    letter-spacing: 1.4em !important;
  }
  .sp-ls-15 {
    letter-spacing: 1.5em !important;
  }
  .sp-ls-16 {
    letter-spacing: 1.6em !important;
  }
  .sp-ls-17 {
    letter-spacing: 1.7em !important;
  }
  .sp-ls-18 {
    letter-spacing: 1.8em !important;
  }
  .sp-ls-19 {
    letter-spacing: 1.9em !important;
  }
  .sp-ls-20 {
    letter-spacing: 2em !important;
  }
}
/* typography: br */
/* -------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  br.pc-br {
    display: inline !important;
  }
  br.sp-br {
    display: none !important;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  br.pc-br {
    display: none !important;
  }
  br.sp-br {
    display: inline !important;
  }
}
@media print {
  br.sp-br {
    display: none !important;
  }
}
/* typography: line-height */
/* -------------------------------------------------------------------------- */
.lh-1 {
  line-height: 1 !important;
}

.lh-1d2 {
  line-height: 1.2 !important;
}

.lh-1d4 {
  line-height: 1.4 !important;
}

.lh-1d6 {
  line-height: 1.6 !important;
}

.lh-1d8 {
  line-height: 1.8 !important;
}

.lh-2 {
  line-height: 2 !important;
}

.lh-2d2 {
  line-height: 2.2 !important;
}

.lh-2d4 {
  line-height: 2.4 !important;
}

.lh-2d6 {
  line-height: 2.6 !important;
}

.lh-2d8 {
  line-height: 2.8 !important;
}

.lh-3 {
  line-height: 3 !important;
}

.lh-3d2 {
  line-height: 3.2 !important;
}

.lh-3d4 {
  line-height: 3.4 !important;
}

.lh-3d6 {
  line-height: 3.6 !important;
}

.lh-3d8 {
  line-height: 3.8 !important;
}

.lh-4 {
  line-height: 4 !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-lh-1 {
    line-height: 1 !important;
  }
  .sp-lh-1d2 {
    line-height: 1.2 !important;
  }
  .sp-lh-1d4 {
    line-height: 1.4 !important;
  }
  .sp-lh-1d6 {
    line-height: 1.6 !important;
  }
  .sp-lh-1d8 {
    line-height: 1.8 !important;
  }
  .sp-lh-2 {
    line-height: 2 !important;
  }
  .sp-lh-2d2 {
    line-height: 2.2 !important;
  }
  .sp-lh-2d4 {
    line-height: 2.4 !important;
  }
  .sp-lh-2d6 {
    line-height: 2.6 !important;
  }
  .sp-lh-2d8 {
    line-height: 2.8 !important;
  }
  .sp-lh-3 {
    line-height: 3 !important;
  }
  .sp-lh-3d2 {
    line-height: 3.2 !important;
  }
  .sp-lh-3d4 {
    line-height: 3.4 !important;
  }
  .sp-lh-3d6 {
    line-height: 3.6 !important;
  }
  .sp-lh-3d8 {
    line-height: 3.8 !important;
  }
  .sp-lh-4 {
    line-height: 4 !important;
  }
}
/* typography: text-align */
/* -------------------------------------------------------------------------- */
.ta-left {
  text-align: left !important;
}

.ta-center {
  text-align: center !important;
}

.ta-right {
  text-align: right !important;
}

.ta-justify {
  text-align: justify !important;
}

@media screen and (max-width: 40em) {
  .sp-ta-left {
    text-align: left !important;
  }
  .sp-ta-center {
    text-align: center !important;
  }
  .sp-ta-right {
    text-align: right !important;
  }
  .sp-ta-justify {
    text-align: justify !important;
  }
}
/* typography: decoration */
/* -------------------------------------------------------------------------- */
.td-none {
  text-decoration: none !important;
}

.td-underline {
  text-decoration: underline !important;
}

.td-overline {
  text-decoration: overline !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-td-none {
    text-decoration: none !important;
  }
  .sp-td-underline {
    text-decoration: underline !important;
  }
  .sp-td-overline {
    text-decoration: overline !important;
  }
}
/* typography: decoration */
/* -------------------------------------------------------------------------- */
.ti-1 {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.ti-2 {
  display: inline-block;
  text-indent: -2em;
  padding-left: 2em;
}

.ti-3 {
  display: inline-block;
  text-indent: -3em;
  padding-left: 3em;
}

.ti-4 {
  display: inline-block;
  text-indent: -4em;
  padding-left: 4em;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-ti-1 {
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
  }
  .sp-ti-2 {
    display: inline-block;
    text-indent: -2em;
    padding-left: 2em;
  }
  .sp-ti-3 {
    display: inline-block;
    text-indent: -3em;
    padding-left: 3em;
  }
  .sp-ti-4 {
    display: inline-block;
    text-indent: -4em;
    padding-left: 4em;
  }
}
/* typography: white-space */
/* -------------------------------------------------------------------------- */
.ws-normal {
  white-space: normal !important;
}

.ws-nowrap {
  white-space: nowrap !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-ws-normal {
    white-space: normal !important;
  }
  .sp-ws-nowrap {
    white-space: nowrap !important;
  }
}
/* typography: white-space */
/* -------------------------------------------------------------------------- */
.wm-v-rl {
  -ms-writing-mode: tb-rl !important;
  writing-mode: vertical-rl !important;
}

@media print {
  body {
    zoom: 75%;
  }
  .site-header {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */