/* # base
----------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Yu Gothic";
  font-weight: 100;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: "Yu Gothic";
  font-weight: 200;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: "Yu Gothic";
  font-weight: 300;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: "Yu Gothic";
  font-weight: 400;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: "Yu Gothic";
  font-weight: bold;
  src: local("Yu Gothic Bold");
}
body {
  /*overflow: hidden;*/
  width: auto;
  min-width: inherit;
  background-color: #fff;
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media all and (-ms-high-contrast: active) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media only screen and (max-width: 736px) {
  body {
    min-width: 100%;
  }
}
html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (max-width: 736px) {
  html {
    font-size: 14px;
  }
}
html,
body {
  height: 100%;
}

img {
  vertical-align: middle;
}

@media only screen and (max-width: 736px) {
  img {
    max-width: 100%;
  }
}
ul {
  list-style: none;
}

/* # web font
----------------------------------- */
.font-hiraginosans {
  font-family: Hiragino Sans, sans-serif !important;
}

/* # link style
----------------------------------- */
a {
  color: #444;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* # hover alpha
----------------------------------- */
.u-hover {
  transition: 0.2s ease-in-out;
}
.u-hover:hover {
  opacity: 0.85;
  filter: alpha(opacity=85);
  transition: 0.3s ease-in-out;
}

a img.u-hover {
  transition: 0.2s ease-in-out;
}
a img.u-hover:hover {
  opacity: 0.85;
  filter: alpha(opacity=85);
  transition: 0.3s ease-in-out;
}

/* # clear fix
----------------------------------- */
.u-cfx {
  *zoom: 1;
}
.u-cfx:before, .u-cfx:after {
  content: "";
  display: table;
}
.u-cfx:after {
  clear: both;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
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 box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-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 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/* # reset
----------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

ul, ol {
  list-style: none;
  list-style-type: none;
}

p, li, dt, dd, th, td, pre {
  line-break: strict;
  word-break: break-strict;
}

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

img {
  border: none;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 100%;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

@media only screen and (min-width: 737px) {
  .u-pc-mt0 {
    margin-top: 0 !important;
  }

  .u-pc-mt5 {
    margin-top: 5px !important;
  }

  .u-pc-mt10 {
    margin-top: 10px !important;
  }

  .u-pc-mt15 {
    margin-top: 15px !important;
  }

  .u-pc-mt20 {
    margin-top: 20px !important;
  }

  .u-pc-mt30 {
    margin-top: 30px !important;
  }

  .u-pc-mt40 {
    margin-top: 40px !important;
  }

  .u-pc-mt50 {
    margin-top: 50px !important;
  }

  .u-pc-mt60 {
    margin-top: 60px !important;
  }

  .u-pc-mt70 {
    margin-top: 70px !important;
  }

  .u-pc-mt80 {
    margin-top: 80px !important;
  }

  .u-pc-mt90 {
    margin-top: 90px !important;
  }

  .u-pc-mt100 {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 736px) {
  .u-sp-mt0 {
    margin-top: 0 !important;
  }

  .u-sp-mt5 {
    margin-top: 5px !important;
  }

  .u-sp-mt10 {
    margin-top: 10px !important;
  }

  .u-sp-mt15 {
    margin-top: 15px !important;
  }

  .u-sp-mt20 {
    margin-top: 20px !important;
  }

  .u-sp-mt30 {
    margin-top: 30px !important;
  }

  .u-sp-mt40 {
    margin-top: 40px !important;
  }

  .u-sp-mt50 {
    margin-top: 50px !important;
  }

  .u-sp-mt60 {
    margin-top: 60px !important;
  }

  .u-sp-mt70 {
    margin-top: 70px !important;
  }

  .u-sp-mt80 {
    margin-top: 80px !important;
  }

  .u-sp-mt90 {
    margin-top: 90px !important;
  }
}
.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

@media only screen and (min-width: 737px) {
  .u-pc-mb0 {
    margin-bottom: 0 !important;
  }

  .u-pc-mb5 {
    margin-bottom: 5px !important;
  }

  .u-pc-mb10 {
    margin-bottom: 10px !important;
  }

  .u-pc-mb15 {
    margin-bottom: 15px !important;
  }

  .u-pc-mb20 {
    margin-bottom: 20px !important;
  }

  .u-pc-mb30 {
    margin-bottom: 30px !important;
  }

  .u-pc-mb40 {
    margin-bottom: 40px !important;
  }

  .u-pc-mb50 {
    margin-bottom: 50px !important;
  }

  .u-pc-mb60 {
    margin-bottom: 60px !important;
  }

  .u-pc-mb70 {
    margin-bottom: 70px !important;
  }

  .u-pc-mb80 {
    margin-bottom: 80px !important;
  }

  .u-pc-mb90 {
    margin-bottom: 90px !important;
  }

  .u-pc-mb100 {
    margin-bottom: 100px !important;
  }
}
@media only screen and (max-width: 736px) {
  .u-sp-mb0 {
    margin-bottom: 0 !important;
  }

  .u-sp-mb5 {
    margin-bottom: 5px !important;
  }

  .u-sp-mb10 {
    margin-bottom: 10px !important;
  }

  .u-sp-mb15 {
    margin-bottom: 15px !important;
  }

  .u-sp-mb20 {
    margin-bottom: 20px !important;
  }

  .u-sp-mb30 {
    margin-bottom: 30px !important;
  }

  .u-sp-mb40 {
    margin-bottom: 40px !important;
  }

  .u-sp-mb50 {
    margin-bottom: 50px !important;
  }

  .u-sp-mb60 {
    margin-bottom: 60px !important;
  }

  .u-sp-mb70 {
    margin-bottom: 70px !important;
  }

  .u-sp-mb80 {
    margin-bottom: 80px !important;
  }

  .u-sp-mb90 {
    margin-bottom: 90px !important;
  }

  .u-sp-mb100 {
    margin-bottom: 100px !important;
  }
}
.u-pt0 {
  padding-top: 0 !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

@media only screen and (min-width: 737px) {
  .u-pc-pt0 {
    padding-top: 0 !important;
  }

  .u-pc-pt5 {
    padding-top: 5px !important;
  }

  .u-pc-pt10 {
    padding-top: 10px !important;
  }

  .u-pc-pt15 {
    padding-top: 15px !important;
  }

  .u-pc-pt20 {
    padding-top: 20px !important;
  }

  .u-pc-pt30 {
    padding-top: 30px !important;
  }

  .u-pc-pt40 {
    padding-top: 40px !important;
  }

  .u-pc-pt50 {
    padding-top: 50px !important;
  }

  .u-pc-pt60 {
    padding-top: 60px !important;
  }

  .u-pc-pt70 {
    padding-top: 70px !important;
  }

  .u-pc-pt80 {
    padding-top: 80px !important;
  }

  .u-pc-pt90 {
    padding-top: 90px !important;
  }

  .u-pc-pt100 {
    padding-top: 100px !important;
  }
}
@media only screen and (max-width: 736px) {
  .u-sp-pt0 {
    padding-top: 0 !important;
  }

  .u-sp-pt5 {
    padding-top: 5px !important;
  }

  .u-sp-pt10 {
    padding-top: 10px !important;
  }

  .u-sp-pt15 {
    padding-top: 15px !important;
  }

  .u-sp-pt20 {
    padding-top: 20px !important;
  }

  .u-sp-pt30 {
    padding-top: 30px !important;
  }

  .u-sp-pt40 {
    padding-top: 40px !important;
  }

  .u-sp-pt50 {
    padding-top: 50px !important;
  }

  .u-sp-pt60 {
    padding-top: 60px !important;
  }

  .u-sp-pt70 {
    padding-top: 70px !important;
  }

  .u-sp-pt80 {
    padding-top: 80px !important;
  }

  .u-sp-pt90 {
    padding-top: 90px !important;
  }

  .u-sp-pt100 {
    padding-top: 100px !important;
  }
}
.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

@media only screen and (min-width: 737px) {
  .u-pc-pb0 {
    padding-bottom: 0 !important;
  }

  .u-pc-pb5 {
    padding-bottom: 5px !important;
  }

  .u-pc-pb10 {
    padding-bottom: 10px !important;
  }

  .u-pc-pb15 {
    padding-bottom: 15px !important;
  }

  .u-pc-pb20 {
    padding-bottom: 20px !important;
  }

  .u-pc-pb30 {
    padding-bottom: 30px !important;
  }

  .u-pc-pb40 {
    padding-bottom: 40px !important;
  }

  .u-pc-pb50 {
    padding-bottom: 50px !important;
  }

  .u-pc-pb60 {
    padding-bottom: 60px !important;
  }

  .u-pc-pb70 {
    padding-bottom: 70px !important;
  }

  .u-pc-pb80 {
    padding-bottom: 80px !important;
  }

  .u-pc-pb90 {
    padding-bottom: 90px !important;
  }

  .u-pc-pb100 {
    padding-bottom: 100px !important;
  }
}
@media only screen and (max-width: 736px) {
  .u-sp-pb0 {
    padding-bottom: 0 !important;
  }

  .u-sp-pb5 {
    padding-bottom: 5px !important;
  }

  .u-sp-pb10 {
    padding-bottom: 10px !important;
  }

  .u-sp-pb15 {
    padding-bottom: 15px !important;
  }

  .u-sp-pb20 {
    padding-bottom: 20px !important;
  }

  .u-sp-pb30 {
    padding-bottom: 30px !important;
  }

  .u-sp-pb40 {
    padding-bottom: 40px !important;
  }

  .u-sp-pb50 {
    padding-bottom: 50px !important;
  }

  .u-sp-pb60 {
    padding-bottom: 60px !important;
  }

  .u-sp-pb70 {
    padding-bottom: 70px !important;
  }

  .u-sp-pb80 {
    padding-bottom: 80px !important;
  }

  .u-sp-pb90 {
    padding-bottom: 90px !important;
  }

  .u-sp-pb100 {
    padding-bottom: 100px !important;
  }
}
.u-ta-c {
  text-align: center !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-va-t {
  vertical-align: top !important;
}

.u-va-m {
  vertical-align: middle !important;
}

.u-va-b {
  vertical-align: bottom !important;
}

.u-pos-r {
  position: relative !important;
}

.u-pos-a {
  position: absolute !important;
}

.u-show {
  display: block !important;
}

.u-hide {
  display: none !important;
}

.u-visible {
  visibility: visible !important;
}

.u-invisible {
  visibility: hidden !important;
}

@media only screen and (min-width: 737px) {
  .u-pc-inner, .u-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 80px 120px;
  }
  .u-pc-inner--narrow, .u-inner--narrow {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 80px 120px;
  }
  .u-pc-inner--wide, .u-inner--wide {
    width: 100%;
    padding: 80px 0 120px;
  }
  .u-pc-inner--vertical, .u-inner--vertical {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 0;
  }
  .u-pc-inner--horizontal, .u-inner--horizontal {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 80px;
  }
}

@media only screen and (max-width: 736px) {
  .u-sp-inner, .u-inner--wide, .u-inner--narrow, .u-inner {
    padding: 50px 5% 60px;
  }
  .u-sp-inner--vertical, .u-inner--vertical {
    padding: 40px 0;
  }
  .u-sp-inner--horizontal, .u-inner--horizontal {
    padding: 0 5%;
  }
}

@media only screen and (min-width: 737px) {
  .u-pc-none {
    display: none !important;
  }
}
@media only screen and (max-width: 736px) {
  .u-sp-none {
    display: none !important;
  }
}
.u-hr {
  height: 1px;
  border: none;
  background-color: #eee;
}

.u-hr--black {
  height: 1px;
  border: none;
  background-color: #ccc;
}

/* =========================================================
	layout footer
========================================================= */
.l-footer__notfound {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: auto;
  padding: 40px 50px;
  background-color: #000;
}

.l-footer__notfound-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 736px) {
  .l-footer__notfound-nav {
    flex-direction: column;
    gap: 40px;
    justify-content: center;
  }
}

.l-footer__notfound-logo {
  width: 240px;
  height: auto;
}

.l-footer__notfound-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.l-footer__notfound-list-item-inner {
  transition: all 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .l-footer__notfound-list-item-inner:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}

.l-footer__notfound-list-item-image {
  width: 48px;
  height: auto;
}

.l-footer__notfound-copyright {
  font-size: 12px;
  color: #CCC;
}

/* =========================================================
	layout header
========================================================= */
.l-header__notfound {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 1020px;
  height: 75px;
  padding: 0 50px;
  z-index: 1000;
}
@media only screen and (max-width: 736px) {
  .l-header__notfound {
    display: none;
  }
}

.l-header__notfound-logo {
  display: block;
  width: auto;
  height: 16px;
}

/* =========================================================
  layout contents
========================================================= */
.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.c-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 20px;
  border: solid 1px #000;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  text-align: center;
  transition: 0.3s;
}
@media only screen and (max-width: 736px) {
  .c-text-button {
    font-size: 14px;
  }
}
.c-text-button:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #000;
}
.c-text-button--external {
  justify-content: space-between;
}
.c-text-button--external:after {
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4yLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i44Os44Kk44Ok44O8XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCINCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2IDE2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDpub25lO3N0cm9rZTojRkZGRkZGO3N0cm9rZS13aWR0aDoyO30NCgkuc3Qxe2ZpbGw6bm9uZTtzdHJva2U6I0ZGRkZGRjtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpzcXVhcmU7fQ0KPC9zdHlsZT4NCjxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPg0KPGcgaWQ9IlBhZ2UtMSI+DQoJPGcgaWQ9ImNodXJyb3NfUEMzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjk1LjAwMDAwMCwgLTEzMjkuMDAwMDAwKSI+DQoJCTxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMTAuMDAwMDAwLCAxMzEyLjAwMDAwMCkiPg0KCQkJPGcgaWQ9ImljX2V4dGVybmFsX2xpbmsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg2LjAwMDAwMCwgMTguMDAwMDAwKSI+DQoJCQkJPGcgaWQ9Imljb24iPg0KCQkJCQk8cG9seWxpbmUgaWQ9IlBhdGgiIGNsYXNzPSJzdDAiIHBvaW50cz0iMTQsMTEuNCAxNCwxNCAxNCwxNCAwLDE0IDAsMCAzLjEsMCAJCQkJCSIvPg0KCQkJCQk8cG9seWxpbmUgaWQ9IlBhdGhfMV8iIGNsYXNzPSJzdDAiIHBvaW50cz0iNywwIDE0LDAgMTQsNyAxNCw3IAkJCQkJIi8+DQoJCQkJCTxwYXRoIGlkPSJMaW5lIiBjbGFzcz0ic3QxIiBkPSJNMTIuNywxLjNMNC44LDkuMiIvPg0KCQkJCTwvZz4NCgkJCTwvZz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjwvc3ZnPg0K);
  content: "";
}
.c-text-button--external:hover:after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNi4wLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i44Os44Kk44Ok44O8XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCINCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2IDE2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDpub25lO3N0cm9rZTojMDAwMDAwO3N0cm9rZS13aWR0aDoyO30NCgkuc3Qxe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpzcXVhcmU7fQ0KPC9zdHlsZT4NCjxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPg0KPGcgaWQ9IlBhZ2UtMSI+DQoJPGcgaWQ9ImNodXJyb3NfUEMzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjk1LjAwMDAwMCwgLTEzMjkuMDAwMDAwKSI+DQoJCTxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMTAuMDAwMDAwLCAxMzEyLjAwMDAwMCkiPg0KCQkJPGcgaWQ9ImljX2V4dGVybmFsX2xpbmsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg2LjAwMDAwMCwgMTguMDAwMDAwKSI+DQoJCQkJPGcgaWQ9Imljb24iPg0KCQkJCQk8cG9seWxpbmUgaWQ9IlBhdGgiIGNsYXNzPSJzdDAiIHBvaW50cz0iMTQsMTEuNCAxNCwxNCAxNCwxNCAwLDE0IDAsMCAzLjEsMCAJCQkJCSIvPg0KCQkJCQk8cG9seWxpbmUgaWQ9IlBhdGhfMV8iIGNsYXNzPSJzdDAiIHBvaW50cz0iNywwIDE0LDAgMTQsNyAxNCw3IAkJCQkJIi8+DQoJCQkJCTxwYXRoIGlkPSJMaW5lIiBjbGFzcz0ic3QxIiBkPSJNMTIuNywxLjNMNC44LDkuMiIvPg0KCQkJCTwvZz4NCgkJCTwvZz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjwvc3ZnPg0K);
}
.c-text-button--disabled {
  opacity: 0.2;
}
.c-text-button--disabled:hover {
  background-color: #000;
  color: #fff;
}
.c-text-button--disabled.c-text-btn--external:hover::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4yLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i44Os44Kk44Ok44O8XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCINCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2IDE2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDpub25lO3N0cm9rZTojRkZGRkZGO3N0cm9rZS13aWR0aDoyO30NCgkuc3Qxe2ZpbGw6bm9uZTtzdHJva2U6I0ZGRkZGRjtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpzcXVhcmU7fQ0KPC9zdHlsZT4NCjxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPg0KPGcgaWQ9IlBhZ2UtMSI+DQoJPGcgaWQ9ImNodXJyb3NfUEMzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjk1LjAwMDAwMCwgLTEzMjkuMDAwMDAwKSI+DQoJCTxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMTAuMDAwMDAwLCAxMzEyLjAwMDAwMCkiPg0KCQkJPGcgaWQ9ImljX2V4dGVybmFsX2xpbmsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg2LjAwMDAwMCwgMTguMDAwMDAwKSI+DQoJCQkJPGcgaWQ9Imljb24iPg0KCQkJCQk8cG9seWxpbmUgaWQ9IlBhdGgiIGNsYXNzPSJzdDAiIHBvaW50cz0iMTQsMTEuNCAxNCwxNCAxNCwxNCAwLDE0IDAsMCAzLjEsMCAJCQkJCSIvPg0KCQkJCQk8cG9seWxpbmUgaWQ9IlBhdGhfMV8iIGNsYXNzPSJzdDAiIHBvaW50cz0iNywwIDE0LDAgMTQsNyAxNCw3IAkJCQkJIi8+DQoJCQkJCTxwYXRoIGlkPSJMaW5lIiBjbGFzcz0ic3QxIiBkPSJNMTIuNywxLjNMNC44LDkuMiIvPg0KCQkJCTwvZz4NCgkJCTwvZz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjwvc3ZnPg0K);
}

.p-notfound {
  padding: 120px 80px;
}
@media only screen and (max-width: 736px) {
  .p-notfound {
    padding: 100px 20px;
  }
}

.p-notfound__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media only screen and (max-width: 736px) {
  .p-notfound__inner {
    gap: 40px;
  }
}

.p-notfound__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.p-notfound__title-main {
  font-size: 120px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #444;
}
@media only screen and (max-width: 736px) {
  .p-notfound__title-main {
    font-size: 96px;
  }
}

.p-notfound__title-sub {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #444;
}
@media only screen and (max-width: 736px) {
  .p-notfound__title-sub {
    font-size: 20px;
  }
}

.p-notfound__text {
  font-size: 16px;
  text-align: center;
  color: #666;
  line-height: 2;
}
@media only screen and (max-width: 736px) {
  .p-notfound__text {
    font-size: 14px;
  }
}
