/* ==========================================================================
  settings
============================================================================*/
/* -------------------------------
  responsive
------------------------------- */
/* -------------------------------
  animation keyframe
------------------------------- */
@-webkit-keyframes scrollArrowMove {
  0% {
    bottom: 4px;
  }
  50% {
    bottom: -4px;
  }
  100% {
    bottom: -4px;
  }
}
@keyframes scrollArrowMove {
  0% {
    bottom: 4px;
  }
  50% {
    bottom: -4px;
  }
  100% {
    bottom: -4px;
  }
}
@-webkit-keyframes scrollArrowOpacity {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0.9;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollArrowOpacity {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0.9;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ==========================================================================
  common settings
============================================================================*/
/*! destyle.css v1.0.13 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Document
     ========================================================================== */
/**
   * 1. Correct the line height in all browsers.
   * 2. Prevent adjustments of font size after orientation changes in iOS.
   * 3. Remove gray overlay on links for iOS.
   */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

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

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/* Vertical rhythm
     ========================================================================== */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings
     ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration)
     ========================================================================== */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition)
     ========================================================================== */
dt {
  font-weight: inherit;
}

dd {
  margin-left: 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

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

/**
   * 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: inherit;
  /* 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;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms
     ========================================================================== */
/**
   * Reset form fields to make them styleable
   * 1. Reset radio and checkbox to preserve their look in iOS.
   */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  /* 1 */
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  /* 1 */
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
   * 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] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

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

/**
   * Remove padding
   */
option {
  padding: 0;
}

/**
   * Reset to invisible
   */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
   * 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 {
  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. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  padding: 0;
  /* 1 */
}

/**
   * 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 outline style in Safari.
   */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

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

/**
   * Clickable labels
   */
label[for] {
  cursor: pointer;
}

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

/* Table
     ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

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

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

/*==================================
csc base
====================================*/
html {
  font-size: 62.5%;
}
html.is-fixed, html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

body {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.63;
  color: #333;
  /* text-transform: uppercase; */
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow-x: hidden;
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
  }
}
body.show {
  opacity: 1;
}

main {
  position: relative;
  margin-top: 95px;
}
@media screen and (max-width: 1099px) {
  main {
    margin-top: 60px;
  }
}

a {
  color: #333;
}

img {
  width: 100%;
  height: auto;
}

.test {
  outline: 2px solid red !important;
}

.l-img {
  display: block;
  position: relative;
}
.l-img::before {
  content: "";
  display: block;
}
.l-img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  font-family: "object-fit: cover;";
}

.w930 {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1099px) {
  .w930 {
    width: calc(100% - 20px);
  }
}

.c-hideText {
  position: relative;
}
.c-hideText__txt {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

@media screen and (max-width: 599px) {
  .c-hideText--sp {
    position: relative;
  }
  .c-hideText--sp__txt {
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
  }
}

@media screen and (max-width: 599px) {
  .c-pageTop {
    position: fixed;
    /* bottom: 195px; */
    right: 10px;
    display: none;
    -webkit-transition: bottom 0.3s;
    transition: bottom 0.3s;
  }
  .c-pageTop a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid rgba(204, 204, 204, 0.86);
    position: relative;
  }
  .c-pageTop a::before {
    display: block;
    content: "";
    width: 1.3px;
    height: 12.6px;
    background-color: #808080;
    position: absolute;
    top: calc(50% + 4px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .c-pageTop a::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 2.5px 9.8px 2.5px;
    border-color: transparent transparent #808080 transparent;
    position: absolute;
    top: calc(50% - 5px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.l-header {
  z-index: 999;
}

.l-navigation__pc,
.l-navigation__sp {
  z-index: 998;
}

.c-pageTop {
  z-index: 990;
}

.l-footer__contact {
  z-index: 980;
}

@-webkit-keyframes marquee-right {
  from {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  to {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}

@keyframes marquee-right {
  from {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  to {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}
@-webkit-keyframes marquee-left {
  from {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  to {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
}
@keyframes marquee-left {
  from {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  to {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
}
@-webkit-keyframes fluffy {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes fluffy {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@-webkit-keyframes pulse01 {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  2% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
  }
  3% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  6% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
  }
  9% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulse01 {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  2% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
  }
  3% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  6% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
  }
  9% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes pulse02 {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  10% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: translate(-50%, -50%) scale(0.91);
            transform: translate(-50%, -50%) scale(0.91);
  }
  17% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: translate(-50%, -50%) scale(0.98);
            transform: translate(-50%, -50%) scale(0.98);
  }
  33% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: translate(-50%, -50%) scale(0.87);
            transform: translate(-50%, -50%) scale(0.87);
  }
  45% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes pulse02 {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  10% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: translate(-50%, -50%) scale(0.91);
            transform: translate(-50%, -50%) scale(0.91);
  }
  17% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: translate(-50%, -50%) scale(0.98);
            transform: translate(-50%, -50%) scale(0.98);
  }
  33% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: translate(-50%, -50%) scale(0.87);
            transform: translate(-50%, -50%) scale(0.87);
  }
  45% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@-webkit-keyframes pulse03 {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  10% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
  }
  17% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  33% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
  }
  45% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulse03 {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  10% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
  }
  17% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  33% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
  }
  45% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes jello {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes jello {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes tobig {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(1);
              transform: rotate(12deg) scale(1);
    }
  }
  2% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: rotate(0) scale(0.6);
            transform: rotate(0) scale(0.6);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(0.6);
              transform: rotate(12deg) scale(0.6);
    }
  }
  3% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(0.6);
            transform: rotate(0) scale(0.6);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(0.6);
              transform: rotate(12deg) scale(0.6);
    }
  }
  7% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: rotate(0) scale(1.24);
            transform: rotate(0) scale(1.24);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(0.6);
              transform: rotate(12deg) scale(0.6);
    }
  }
  17% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(1.24);
            transform: rotate(0) scale(1.24);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(1.24);
              transform: rotate(12deg) scale(1.24);
    }
  }
  19% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(1);
              transform: rotate(12deg) scale(1);
    }
  }
  100% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(1);
              transform: rotate(12deg) scale(1);
    }
  }
}
@keyframes tobig {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(1);
              transform: rotate(12deg) scale(1);
    }
  }
  2% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: rotate(0) scale(0.6);
            transform: rotate(0) scale(0.6);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(0.6);
              transform: rotate(12deg) scale(0.6);
    }
  }
  3% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(0.6);
            transform: rotate(0) scale(0.6);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(0.6);
              transform: rotate(12deg) scale(0.6);
    }
  }
  7% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: rotate(0) scale(1.24);
            transform: rotate(0) scale(1.24);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(0.6);
              transform: rotate(12deg) scale(0.6);
    }
  }
  17% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(1.24);
            transform: rotate(0) scale(1.24);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(1.24);
              transform: rotate(12deg) scale(1.24);
    }
  }
  19% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(1);
              transform: rotate(12deg) scale(1);
    }
  }
  100% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    @media screen and (max-width: 599px) {
      -webkit-transform: rotate(12deg) scale(1);
              transform: rotate(12deg) scale(1);
    }
  }
}
@-webkit-keyframes topcatchtitleActive {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes topcatchtitleActive {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes topcatchtitlebackActive {
  0% {
    height: 0;
  }
  70% {
    height: 100%;
  }
  100% {
    height: 100%;
  }
}
@keyframes topcatchtitlebackActive {
  0% {
    height: 0;
  }
  70% {
    height: 100%;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes blink {
  0%, 5%, 10% {
    opacity: 1;
  }
  2.5%, 7.5% {
    opacity: 0;
  }
}
@keyframes blink {
  0%, 5%, 10% {
    opacity: 1;
  }
  2.5%, 7.5% {
    opacity: 0;
  }
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
            transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
            transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
            transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
            transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
            transform: translate(0, 0) rotate(3deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(3deg);
            transform: translate(0, 0) rotate(3deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
            transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
            transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
            transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
            transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
            transform: translate(0, 0) rotate(3deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(3deg);
            transform: translate(0, 0) rotate(3deg);
  }
}
.pagenation-hidden {
  visibility: hidden;
}

.se-only {
  display: none;
}
@media screen and (max-width: 320px) {
  .se-only {
    display: block;
  }
}

.sp-only-notse {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-only-notse {
    display: block;
  }
}
@media screen and (max-width: 320px) {
  .sp-only-notse {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-only {
    display: block;
  }
}

.tab-under {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tab-under {
    display: block;
  }
}

.tab-upper {
  display: block;
}
@media screen and (max-width: 1023px) {
  .tab-upper {
    display: none !important;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 599px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only-inline {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-only-inline {
    display: inline;
  }
}

.pc-only-inline {
  display: inline;
}
@media screen and (max-width: 599px) {
  .pc-only-inline {
    display: none !important;
  }
}

.sp-only-flex {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-only-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pc-only-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .pc-only-flex {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .u-mr10-pc {
    margin-right: 10px;
  }
}

@media screen and (min-width: 600px) {
  .u-mt10-pc {
    margin-top: 10px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb120-pc {
    margin-bottom: 120px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb110-pc {
    margin-bottom: 110px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb100-pc {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb90-pc {
    margin-bottom: 90px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb80-pc {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb70-pc {
    margin-bottom: 70px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb60-pc {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb50-pc {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb40-pc {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb30-pc {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb20-pc {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 600px) {
  .u-mb10-pc {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb100-sp {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb90-sp {
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb80-sp {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb70-sp {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb60-sp {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb50-sp {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb40-sp {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb30-sp {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb20-sp {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb15-sp {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb10-sp {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  .u-mb5-sp {
    margin-bottom: 5px;
  }
}

.u-ff-serif {
  font-family: "Noto Serif JP", serif;
}

.u-fw-bold {
  font-weight: 700;
}

.u-fw-semibold {
  font-weight: 600;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-regular {
  font-weight: 400;
}

.u-fw-light {
  font-weight: 300;
}

.u-fc-darkblue {
  color: #3771d7;
}

.u-tar {
  text-align: right;
}

@media screen and (min-width: 600px) {
  .u-fs10-pc {
    font-size: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs11-pc {
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs12-pc {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs13-pc {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs14-pc {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs15-pc {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs16-pc {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs17-pc {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs18-pc {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs19-pc {
    font-size: 1.9rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs20-pc {
    font-size: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs21-pc {
    font-size: 2.1rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs22-pc {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs23-pc {
    font-size: 2.3rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs24-pc {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs25-pc {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs26-pc {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs27-pc {
    font-size: 2.7rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs28-pc {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs29-pc {
    font-size: 2.9rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs30-pc {
    font-size: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs31-pc {
    font-size: 3.1rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs32-pc {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs33-pc {
    font-size: 3.3rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs34-pc {
    font-size: 3.4rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs35-pc {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs36-pc {
    font-size: 3.6rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs37-pc {
    font-size: 3.7rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs38-pc {
    font-size: 3.8rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs39-pc {
    font-size: 3.9rem;
  }
}

@media screen and (min-width: 600px) {
  .u-fs40-pc {
    font-size: 4rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs10-sp {
    font-size: 1rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs11-sp {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs12-sp {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs13-sp {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs14-sp {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs15-sp {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs16-sp {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs17-sp {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs18-sp {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs19-sp {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs20-sp {
    font-size: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs21-sp {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs22-sp {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs23-sp {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs24-sp {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs25-sp {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs26-sp {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs27-sp {
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs28-sp {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs29-sp {
    font-size: 2.9rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs30-sp {
    font-size: 3rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs31-sp {
    font-size: 3.1rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs32-sp {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs33-sp {
    font-size: 3.3rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs34-sp {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs35-sp {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs36-sp {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs37-sp {
    font-size: 3.7rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs38-sp {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs39-sp {
    font-size: 3.9rem;
  }
}

@media screen and (max-width: 599px) {
  .u-fs40-sp {
    font-size: 4rem;
  }
}