/*! sanitize.css v8.0.0 | CC0 License | github.com/csstools/sanitize.css */

/* Document
 * ========================================================================== */

/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  background-repeat: no-repeat; /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Use the default user interface font in all browsers (opinionated).
 * 3. Correct the line height in all browsers.
 * 4. Use a 4-space tab width in all browsers (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; /* 1 */
  font-family:
    system-ui,
    /* macOS 10.11-10.12 */ -apple-system,
    /* Windows 6+ */ Segoe UI,
    /* Android 4+ */ Roboto,
    /* Ubuntu 10.10+ */ Ubuntu,
    /* Gnome 3+ */ Cantarell,
    /* KDE Plasma 5+ */ Noto Sans,
    /* fallback */ sans-serif,
    /* macOS emoji */ "Apple Color Emoji",
    /* Windows emoji */ "Segoe UI Emoji",
    /* Windows emoji */ "Segoe UI Symbol",
    /* Linux emoji */ "Noto Color Emoji"; /* 2 */

  line-height: 1.15; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* 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, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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;
}

/**
 * 1. Use the default monospace user interface font
 *    in all browsers (opinionated).
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family:
    /* macOS 10.10+ */ Menlo,
    /* Windows 6+ */ Consolas,
    /* Android 4+ */ Roboto Mono,
    /* Ubuntu 10.10+ */ Ubuntu Monospace,
    /* KDE Plasma 5+ */ Noto Mono,
    /* KDE Plasma 4+ */ Oxygen Mono,
    /* Linux/OpenOffice fallback */ Liberation Mono,
    /* fallback */ monospace; /* 1 */

  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge, IE, Opera, and Safari.
 */

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Use the default monospace user interface font
 *    in all browsers (opinionated).
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family:
    /* macOS 10.10+ */ Menlo,
    /* Windows 6+ */ Consolas,
    /* Android 4+ */ Roboto Mono,
    /* Ubuntu 10.10+ */ Ubuntu Monospace,
    /* KDE Plasma 5+ */ Noto Mono,
    /* KDE Plasma 4+ */ Oxygen Mono,
    /* Linux/OpenOffice fallback */ Liberation Mono,
    /* fallback */ monospace; /* 1 */

  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/*
 * Remove the text shadow on text selections in Firefox 61- (opinionated).
 * 1. Restore the coloring undone by defining the text shadow
 *    in all browsers (opinionated).
 */

::-moz-selection {
  background-color: #b3d4fc; /* 1 */
  color: #000; /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* 1 */
  color: #000; /* 1 */
  text-shadow: none;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browers (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 images inside 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
 * ========================================================================== */

/**
 * Inherit styling in all browsers (opinionated).
 */

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

/**
 * Remove the margin in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Correct the padding in Firefox.
 */

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

/**
 * Show the overflow in Edge and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge and IE.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * 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 on textareas in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

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

/**
 * 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 and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * 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;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge, 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; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * 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]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquotebefore,
blockquoteafter,
qbefore,
qafter {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1;
  text-align: left;
  color: #333;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.09em;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
a {
  text-decoration: none;
}
a:link {
  color: #333;
}
a:hover {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
a:hover img {
  opacity: 0.7;
}
a:active {
  color: #333;
}
a:visited {
  color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-size: 1rem;
}
sub {
  vertical-align: 0;
  font-size: 60%;
}
sup {
  vertical-align: 4px;
  font-size: 60%;
}
img {
  max-width: 100%;
}
@media (max-width: 960px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
body {
  padding-top: 100px;
}
#l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  background-color: #fff;
}
#l-header > .logo {
  width: 300px;
  margin: 0 auto;
  padding: 24px 0;
}
#btn-menu {
  position: absolute;
  top: 42px;
  right: 42px;
  width: 38px;
  height: 15px;
  cursor: pointer;
}
#btn-menu .line {
  display: block;
  position: absolute;
  width: 38px;
  height: 1px;
  background-color: #1a1a1a;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#btn-menu .line:nth-child(1) {
  top: 0;
}
#btn-menu .line:nth-child(2) {
  top: 7px;
}
#btn-menu .line:nth-child(3) {
  top: 14px;
}
#btn-menu.-open .line {
  width: 42px;
}
#btn-menu.-open .line:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#btn-menu.-open .line:nth-child(2) {
  opacity: 0;
}
#btn-menu.-open .line:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#l-menu {
  display: none;
}
#l-menu > .inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 0 77px;
}
#l-menu .list-link {
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 295px;
  margin: 0 auto 36px;
  padding-bottom: 7px;
  border-bottom: 1px solid #333;
  font-size: 1.6rem;
  background: url("../img/common/icon-arrow_01.svg") no-repeat right 2px top 3px/7px auto;
}
#l-menu .list-link > .item:not(:last-child)::after {
  display: inline-block;
  content: '';
  width: 1px;
  height: 100%;
  margin: 0 7px 0 7px;
  background-color: #333;
}
#l-menu .list-link > .item a:hover {
  opacity: 0.6;
}
#l-menu .list-course {
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 56px;
}
#l-menu .list-course > .item {
  width: 18.75%;
}
#l-menu .list-course > .item + .item {
  margin-left: 1.56%;
}
#l-menu .list-course > .item > a:hover {
  opacity: 0.3;
}
#l-menu .list-course > .item .fig {
  margin-bottom: 10px;
  line-height: 0;
}
#l-menu .list-course > .item .logo {
  margin-bottom: 7px;
  text-align: center;
}
#l-menu .list-course > .item .logo > img {
  width: 50px;
}
#l-menu .list-course > .item .name {
  text-align: center;
  line-height: 1.33;
}
#l-menu .list-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#l-menu .list-language > .item + .item {
  margin-left: 3em;
}
#l-menu .list-language > .item > a:hover {
  opacity: 0.6;
}
#l-mv {
  margin-bottom: 45px;
}
#l-mv .img {
  width: 100%;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#l-footer {
  padding: 70px 0;
  color: #fff;
  background-color: #333;
}
#l-footer a {
  color: #fff;
}
#l-footer a:hover {
  opacity: 0.3;
}
#l-footer > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1270px;
  margin: 0 auto;
}
#l-footer > .inner + .inner {
  margin-top: 17px;
}
#l-footer .nav-foot {
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.05em;
}
#l-footer .nav-foot > .list-nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#l-footer .nav-foot > .list-nav > .item > a {
  display: block;
  position: relative;
  padding-left: 38px;
  line-height: 1.4;
}
#l-footer .nav-foot > .list-nav > .item > a::before {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  content: '';
  width: 10px;
  height: 1px;
  background-color: #fff;
}
#l-footer .nav-foot > ul.list-nav {
  margin-right: 14%;
}
#l-footer .nav-foot > ul.list-nav > .item + .item {
  margin-top: 11px;
}
#l-footer .nav-foot > dl.list-nav > .headline {
  margin-bottom: 20px;
  color: #c1c1c1;
}
#l-footer .nav-foot > dl.list-nav > .item {
  font-size: 1.3rem;
}
#l-footer .nav-foot > dl.list-nav > .item + .item {
  margin-top: 10px;
}
#l-footer .nav-foot-sub > .list-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 36px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
#l-footer .nav-foot-sub > .list-nav > .item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#l-footer .nav-foot-sub > .list-nav > .item + .item {
  margin-left: 3em;
}
#l-footer .nav-foot-sub > .list-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#l-footer .nav-foot-sub > .list-sns > .headline {
  white-space: nowrap;
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
#l-footer .nav-foot-sub > .list-sns > .item {
  margin-left: 1.5em;
}
#l-footer .logo .img {
  width: 380px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#l-footer .copyright {
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  padding-top: 30px;
  letter-spacing: 0.035em;
  font-size: 1.3rem;
}
#btn-retop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 48px;
  cursor: pointer;
}
#btn-retop:hover {
  opacity: 0.6;
}
#layer-black {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  width: 100%;
  height: 100svh;
  background-color: rgba(0,0,0,0.7);
}
@media (max-width: 960px) {
  body {
    padding-top: 45px;
  }
  #l-header > .logo {
    width: 163px;
    padding: 8px 0;
  }
  #btn-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 17px;
    height: 7px;
  }
  #btn-menu .line {
    width: 17px;
    height: 1px;
  }
  #btn-menu .line:nth-child(1) {
    top: 0;
  }
  #btn-menu .line:nth-child(2) {
    top: 3px;
  }
  #btn-menu .line:nth-child(3) {
    top: 6px;
  }
  #btn-menu.-open .line {
    width: 20px;
  }
  #btn-menu.-open .line:nth-child(1) {
    top: 2px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #btn-menu.-open .line:nth-child(2) {
    opacity: 0;
  }
  #btn-menu.-open .line:nth-child(3) {
    top: 2px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #l-menu > .inner {
    margin: 0;
    padding: 27px 6.67% 40px;
  }
  #l-menu .list-link {
    width: 270px;
    margin: 0 auto 30px;
    font-size: 1.4rem;
  }
  #l-menu .list-course {
    display: block;
    margin-bottom: 37px;
  }
  #l-menu .list-course > .item {
    width: 100%;
  }
  #l-menu .list-course > .item + .item {
    margin: 11px 0 0;
  }
  #l-menu .list-course > .item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url("../img/common/icon-arrow_01.svg") no-repeat right center/7px auto;
  }
  #l-menu .list-course > .item .fig {
    width: 30.91%;
    margin: 0;
  }
  #l-menu .list-course > .item .logo {
    width: 16.97%;
    margin: 0;
  }
  #l-menu .list-course > .item .logo > img {
    width: 35px;
  }
  #l-menu .list-course > .item .name {
    text-align: left;
    font-size: 1.3rem;
  }
  #l-menu .list-language {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  #l-mv {
    margin-bottom: 25px;
  }
  #l-mv .img {
    height: 166px;
  }
  #l-footer {
    padding: 50px 6.67% 37px;
  }
  #l-footer > .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #l-footer > .inner + .inner {
    margin-top: 40px;
  }
  #l-footer .nav-foot {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;
  }
  #l-footer .nav-foot > .list-nav {
    width: 48%;
    letter-spacing: 0.025em;
  }
  #l-footer .nav-foot > .list-nav > .item > a {
    padding-left: 34px;
  }
  #l-footer .nav-foot > .list-nav > .item > a::before {
    top: 7px;
  }
  #l-footer .nav-foot > ul.list-nav {
    margin: 0 0 29px;
    font-size: 1.3rem;
  }
  #l-footer .nav-foot > ul.list-nav > .item + .item {
    margin-top: 13px;
  }
  #l-footer .nav-foot > dl.list-nav > .headline {
    margin-bottom: 21px;
    font-size: 1.3rem;
  }
  #l-footer .nav-foot > dl.list-nav > .item {
    font-size: 1.1rem;
  }
  #l-footer .nav-foot > dl.list-nav > .item + .item {
    margin-top: 13px;
  }
  #l-footer .nav-foot-sub > .list-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 22px;
    font-size: 1.2rem;
  }
  #l-footer .nav-foot-sub > .list-nav > .item + .item {
    margin-left: 3em;
  }
  #l-footer .nav-foot-sub > .list-sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #l-footer .nav-foot-sub > .list-sns > .item {
    margin-left: 7%;
  }
  #l-footer .nav-foot-sub > .list-sns > .item .icon {
    width: 28px;
  }
  #l-footer .logo {
    text-align: center;
  }
  #l-footer .logo .img {
    width: 239px;
  }
  #l-footer .copyright {
    padding-top: 9px;
    letter-spacing: 0.035em;
    text-align: center;
    line-height: 1.5;
    font-size: 1rem;
  }
}
@media (max-width: 450px) {
  #l-footer .nav-foot {
    display: block;
  }
  #l-footer .nav-foot > .list-nav {
    width: 100%;
  }
}
.headline-typeA {
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  text-align: center;
  font-size: 3.8rem;
}
.headline-typeB {
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  position: relative;
  text-align: center;
  font-size: 3.6rem;
}
.headline-typeC {
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 2.4rem;
}
.headline-typeD {
  font-family: "Bodoni Moda", YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 2.8rem;
  letter-spacing: 0.01em;
}
.col2-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.col2-box.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.col3-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 960px) {
  .headline-typeA {
    font-size: 2.4rem;
  }
  .headline-typeB {
    font-size: 2.4rem;
  }
  .headline-typeC {
    font-size: 1.6rem;
  }
  .headline-typeD {
    font-size: 2rem;
  }
  .scroll-warp {
    overflow-x: scroll;
    width: 100%;
  }
}
@media (max-width: 450px) {
  .headline-typeB {
    line-height: 1.42;
  }
  .col2-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .col3-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
._mincho {
  font-family: font-mincho;
}
._pcView {
  display: block;
}
._tabletView {
  display: none;
}
._spView {
  display: none;
}
._small {
  font-size: 0.8em;
}
._bold {
  font-weight: bold;
}
._red {
  color: #e21e30;
}
._txt {
  line-height: 1.75;
}
._txt + ._txt {
  margin-top: 20px;
}
._cfix {
  zoom: 1;
}
._cfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}
@media (max-width: 960px) {
  ._pcView {
    display: none;
  }
  ._tabletView {
    display: block;
  }
}
@media (max-width: 450px) {
  ._spView {
    display: block;
  }
  ._spNone {
    display: none;
  }
  ._pcViewIB {
    display: none;
  }
  ._txt {
    line-height: 1.5;
    font-size: 1.4rem;
  }
  ._txt + ._txt {
    margin-top: 10px;
  }
}
.js-inview01 {
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.js-inview01.-active {
  opacity: 1;
}
.js-inview02 {
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.js-inview02.-active {
  opacity: 1;
}
.js-inview03 {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 1s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.js-inview03.-active {
  -webkit-transform: scaleX(100%);
          transform: scaleX(100%);
}
.js-inview04 {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.js-inview04.-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-inview05 {
  opacity: 0;
  -webkit-transition: opacity 1s 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 1s 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.js-inview05.-active {
  opacity: 1;
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
