@charset "UTF-8";
/* Slider */
.slick-loading .slick-list {
  background: #fff url("/files/user/assets/images/slickslider/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/files/user/assets/fonts/slickslider/slick.eot");
  src: url("/files/user/assets/fonts/slickslider/slick.eot?#iefix") format("embedded-opentype"), url("/files/user/assets/fonts/slickslider/slick.woff") format("woff"), url("/files/user/assets/fonts/slickslider/slick.ttf") format("truetype"), url("/files/user/assets/fonts/slickslider/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
 * mixin用SCSS
 *
 */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fade-in-flex {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-flex {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: flex;
    opacity: 1;
  }
}

/*! normalize.css v7.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
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.5;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * 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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 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 */
}

/**
 * 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
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 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 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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
   ========================================================================== */
/**
 * 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;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button, html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          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 and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[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 IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * 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;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/********************************************
		Common
********************************************/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.3;
}

dd,
dl,
dt,
label,
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  cursor: pointer;
}

img {
  vertical-align: top;
}

html {
  font-size: 62.5%;
}

body,
html {
  width: 100%;
  height: 100%;
}

body {
  color: #333;
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", sans-serif, Meiryo, "MS PGothic", "MS UI Gothic", Helvetica, Arial;
  font-size: 16px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  line-height: 1.9;
}

body.is-lock.is-tablet {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
}

button,
input,
optgroup,
select,
textarea {
  color: #333;
  font-family: inherit;
  font-size: 16px;
  font-size: 16px;
  font-size: 1.6rem;
}

button,
input[type="button"],
input[type="submit"] {
  border: none;
}

iframe {
  vertical-align: top;
}

.l-bodyInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-container {
  position: relative;
}

.l-container--huge {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto auto;
}

.is-tablet .l-container--huge {
  padding-top: 70px;
}

.l-container--large {
  position: relative;
}

.l-container--middle {
  position: relative;
}

.l-container--single {
  position: relative;
}

.l-container--main {
  position: relative;
}

.l-container--side {
  position: relative;
}

.l-container--wrap {
  padding-right: 20px;
  padding-left: 20px;
}

.l-footer__contact {
  background-color: #f4f6f7;
  letter-spacing: 0;
}

.l-footer__contact__link {
  text-align: center;
}

.l-footer__contact__link::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100%;
  background-color: #fff;
  color: #e00028;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "→";
}

.l-footer__contact__title {
  font-weight: 700;
}

.l-footer__contact__title--sub {
  display: block;
  color: #ff7e00;
  font-size: 13px;
  font-size: 13px;
  font-size: 1.3rem;
}

.l-footer__floor {
  background-color: #fff;
}

.l-footer__nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #e00028;
  font-size: 13px;
  font-size: 13px;
  font-size: 1.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__nav__link::after {
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  background-image: url(/files/user/assets/images/common/symbol-blank.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
}

.l-footer__copyright {
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-size: 13px;
  font-size: 1.3rem;
}

.l-footer__pagetop {
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 52px;
  border: 3px solid #e00028;
  border-radius: 100%;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: .3s opacity, .3s visibility;
  transition: .3s opacity, .3s visibility;
}

.l-footer__pagetop::before {
  display: block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  content: "";
}

.l-footer__pagetop.is-active {
  opacity: 1;
  visibility: visible;
}

.is-tablet .l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-width: 100%;
}

.l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
          box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-tablet .l-header__inner {
  position: relative;
  padding: 10px 4%;
  background-color: #fff;
}

.is-tablet .is-fixed .l-header__inner {
  padding: 10px 4%;
}

.l-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.is-tablet .l-header__logo {
  width: 57%;
  margin-right: auto;
}

.l-header__logo__link {
  display: block;
}

.l-header__logo img {
  max-width: 100%;
}

.is-tablet .l-header__subnav {
  margin-top: 40px;
}

.l-header__subnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-tablet .l-header__subnav__item {
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
}

.is-tablet .l-header__subnav__item + .l-header__subnav__item::before {
  content: none;
}

.is-tablet .l-header__subnav__item:not(:last-child) {
  margin-right: 9%;
}

.is-tablet .l-header__subnav__item.has-item {
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.is-tablet .l-header__subnav__item.has-item:hover {
  margin-bottom: 0;
  padding-bottom: 0;
}

.is-tablet .l-header__nav__outer {
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 100%;
  max-height: 0;
  overflow-y: scroll;
  padding: 30px 8% 40px;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition: .3s opacity ease-in-out, .3s max-height ease-in-out;
  transition: .3s opacity ease-in-out, .3s max-height ease-in-out;
}

.is-tablet .l-header__nav__check:checked + .l-header__nav__outer {
  opacity: 1;
  visibility: visible;
  height: calc(100vh - 100%);
  max-height: calc(100vh - 100%);
}

.is-tablet .l-header__nav {
  width: 100%;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.is-tablet .l-header__nav__list {
  display: block;
}

.l-header__nav__item {
  color: #ccc;
}

.is-tablet .l-header__nav__item {
  border-bottom: 1px solid #dedede;
  background-color: #fff;
}

.is-tablet .l-header__nav__item + .l-header__nav__item {
  margin-left: 0;
}

.is-tablet .l-header__nav__item:first-child {
  border-top: 1px solid #dedede;
}

.is-tablet .l-header__nav__item.has-item {
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.is-tablet .l-header__nav__item.has-item:hover {
  margin-bottom: 0;
  padding-bottom: 0;
}

.l-header__nav__link, .l-header__nav__label {
  color: #121212;
  font-weight: 700;
}

.is-tablet .l-header__nav__link, .is-tablet .l-header__nav__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 6% 15px 0;
  letter-spacing: 0.02em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-header__nav__link.-nolink {
  pointer-events: none;
}

.is-tablet .l-header__nav__link.-nolink {
  padding: 19px 6% 19px 0;
  color: rgba(51, 51, 51, .5);
  font-weight: 500;
  line-height: 1.1;
}

.is-tablet .l-header__nav__link::after {
  margin-left: 20px;
  color: #e00028;
  font-weight: 700;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "→";
}

.is-tablet .l-header__nav__label::after {
  -webkit-transform: none;
          transform: none;
  width: 1em;
  height: 1em;
  margin-left: 0;
  border: none;
  color: #666;
  font-weight: 700;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  content: "＋";
}

.is-tablet .l-header__nav__child__check:checked ~ .l-header__nav__label::after {
  font-size: 24px;
  font-size: 24px;
  font-size: 2.4rem;
  content: "－";
}

.l-header__nav__label.is-active {
  padding-left: 22px;
}

.l-header__nav__label.is-active::before {
  content: '！';
  position: absolute;
  left: 0;
  color: #fff;
  background: #e00028;
  padding: 0;
  display: inline-block;
  font-weight: bold;
  border-radius: 100%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  -webkit-box-shadow: 1px 1px 0 #ff7e00;
          box-shadow: 1px 1px 0 #ff7e00;
}

.is-tablet .l-header__nav__child {
  opacity: 1;
  visibility: visible;
  display: none;
  position: static;
  -webkit-transform: none;
          transform: none;
  width: 100%;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #f4f6f7;
  -webkit-transition: none;
  transition: none;
}

.is-tablet .l-header__nav__child__check:checked ~ .l-header__nav__child {
  display: block;
}

.is-tablet .l-header__nav__child::before {
  content: none;
}

.is-tablet .l-header__nav__child__item {
  border-top: 1px solid #dedede;
}

.l-header__nav__child__item.is-active {
  position: relative;
}

.l-header__nav__child__item.is-active::before {
  content: 'NEW';
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  background: #e00028;
  padding: 3px 5px;
  display: inline-block;
  font-weight: bold;
  border-radius: 6px;
  font-size: 12px;
  -webkit-box-shadow: 1px 1px 0 #ff7e00;
          box-shadow: 1px 1px 0 #ff7e00;
}

.l-header__nav__child__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.is-tablet .l-header__nav__child__link {
  padding: 15px 6%;
  background-color: transparent;
  -webkit-transition: none;
  transition: none;
}

.l-header__nav__child__link::after {
  display: block;
  color: #e00028;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "→";
}

.is-tablet .l-header__nav__child__link::after {
  margin-left: 20px;
  font-weight: 700;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
}

.is-tablet .l-header__nav__child__link:hover {
  background-color: transparent;
  color: inherit;
}

.is-tablet .l-header__nav__logout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 72px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.is-tablet .l-header__nav__logout__button {
  display: block;
  position: relative;
  width: 54%;
  max-width: 240px;
  margin: 0 auto;
  padding: 15px 10px;
  border-radius: 100vw;
  background-color: #e00028;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.1;
  text-align: center;
}

.is-tablet .l-header__nav__logout__button::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 11%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 20px;
  background-image: url(/files/user/assets/images/common/symbol-logout.svg?v=1628129454);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.is-tablet .l-header__button {
  margin-right: 13px;
}

.l-header__button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #e00028;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-tablet .l-header__button__link {
  padding: 12px 10px;
  border-radius: 6px;
  font-size: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-header__button__link::after {
  display: block;
  background-image: url(/files/user/assets/images/common/symbol-logout.svg?v=1628129454);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.is-tablet .l-header__button__link::after {
  width: 29px;
  height: 26px;
  margin-left: 0;
}

.is-tablet .l-header__menu {
  display: block;
  position: relative;
  width: calc(7% + 20px);
  max-width: 5em;
  height: 44px;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.is-tablet .l-header__menu__bar {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  max-width: 3em;
  height: 4px;
  margin-left: 0;
  border-radius: 2px;
  background-color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}

.l-header__menu__bar.-top {
  top: 28%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-header__nav__check:checked ~ .l-header__menu .l-header__menu__bar.-top {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header__nav__check:checked ~ .l-header__menu .l-header__menu__bar.-middle {
  background-color: rgba(255, 255, 255, 0);
}

.l-header__menu__bar.-bottom {
  top: 72%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-header__nav__check:checked ~ .l-header__menu .l-header__menu__bar.-bottom {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.c-anchor__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: #e00028;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.c-anchor__link::before {
  display: block;
  border-radius: 100%;
  background-color: #e00028;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
}

.c-anchor__link::after {
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}

.c-button, .c-button--return, .c-button--large, .p-hubspot .hs-submit .hs-button.primary, .c-button--variable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 20px 50px;
  border: 3px solid #dedede;
  border-radius: 100vw;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.c-button::after, .c-button--return::after, .c-button--large::after, .p-hubspot .hs-submit .hs-button.primary::after, .c-button--variable::after {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #e00028;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  content: "→";
}

.c-button[target="_blank"]::after, .c-button--return[target="_blank"]::after, .c-button--large[target="_blank"]::after, .p-hubspot .hs-submit .hs-button.primary[target="_blank"]::after, .c-button--variable[target="_blank"]::after {
  width: 18px;
  height: 18px;
  background-image: url(/files/user/assets/images/common/symbol-blank.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.-file.c-button::after, .-file.c-button--return::after, .-file.c-button--large::after, .p-hubspot .hs-submit .-file.hs-button.primary::after, .-file.c-button--variable::after {
  width: 20px;
  height: 24px;
  background-image: url(/files/user/assets/images/common/symbol-file.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.c-button__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-button--return::before {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #e00028;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  content: "←";
}

.c-button--return::after {
  content: none;
}

.c-button--large, .p-hubspot .hs-submit .hs-button.primary {
  padding: 24px 50px;
}

.c-button--important, .p-hubspot .hs-submit .hs-button.primary {
  border: none;
  background-color: #e00028;
  color: #fff;
}

.c-button--important::after, .p-hubspot .hs-submit .hs-button.primary::after {
  color: #fff;
}

.c-button--important[target="_blank"]::after, .p-hubspot .hs-submit .hs-button.primary[target="_blank"]::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20664%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%20340%22%20d%3D%22M.707%2010A.708.708%200%20010%209.293v-8.3A.708.708%200%2001.707.286h2.646a.707.707%200%20010%201.414H1.414v6.888h6.888V6.65a.707.707%200%20011.414%200v2.646a.708.708%200%2001-.705.707h-8.3z%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20617%22%20transform%3D%22translate(4.187)%22%20fill%3D%22%23fff%22%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201023%22%20width%3D%226.85%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(-45%205.847%202.422)%22%2F%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201024%22%20width%3D%224.717%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(90%202.623%202.907)%22%2F%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201025%22%20width%3D%224.717%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(180%202.764%20.828)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.c-column-article .c-heading--lv2, .c-column-article .c-article h2, .c-article .c-column-article h2, .c-column-article body.cke_editable h2, body.cke_editable .c-column-article h2, .c-column-article .p-hubspot blockquote h2, .p-hubspot blockquote .c-column-article h2, .c-column-article .p-wysiwyg h2, .p-wysiwyg .c-column-article h2 {
  margin-bottom: 20px;
}

.c-column-article .c-label {
  display: inline-block;
  margin: 0 20px 0 0;
}

.c-column-article .c-text, .c-column-article .p-hubspot .submitted-message > p, .p-hubspot .c-column-article .submitted-message > p, .c-column-article .p-hubspot blockquote div, .p-hubspot blockquote .c-column-article div, .c-column-article .p-wysiwyg, .c-column-article body.cke_editable, .c-column-article .p-wysiwyg p:not([class]), .p-wysiwyg .c-column-article p:not([class]), .c-column-article body.cke_editable p:not([class]), body.cke_editable .c-column-article p:not([class]) {
  display: inline-block;
  margin: 0;
}

.c-faq__item {
  border-radius: 5px;
}

.c-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  background-color: #f4f6f7;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.is-active .c-faq__question {
  border-radius: 5px 5px 0 0;
}

.c-faq__question__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-faq__question__inner::before {
  color: #ff7e00;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 32px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "Q";
}

.c-faq__question::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100%;
  background-color: transparent;
  color: #e00028;
  font-size: 24px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "＋";
}

.is-active .c-faq__question::after {
  padding-bottom: 2px;
  font-size: 30px;
  font-size: 30px;
  font-size: 3rem;
  content: "－";
}

.c-faq__answer {
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.is-active .c-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 3px solid #f4f6f7;
  border-bottom: 3px solid #f4f6f7;
  border-left: 3px solid #f4f6f7;
  border-radius: 0 0 5px 5px;
}

.c-faq__answer::before {
  color: #ff7e00;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  font-size: 32px;
  font-size: 3.2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "A";
}

.c-form__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1.4em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-form__status__item {
  text-align: center;
  min-width: 50px;
}

.c-form__status__item.is-current {
  color: #e00028;
  font-weight: 700;
}

.c-form__status__item.is-passed {
  color: rgba(51, 51, 51, .4);
}

.c-form__status__item:not(:last-child) {
  position: relative;
}

.c-form__status__item:not(:last-child)::after {
  display: block;
  position: absolute;
  top: 25px;
  right: 0;
  height: 2px;
  background-color: #dedede;
  content: "";
}

.is-passed.c-form__status__item:not(:last-child)::after {
  background-color: #f2f2f2;
}

.c-form__status__item__inner {
  position: relative;
}

.c-form__status__item__icon {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
}

.c-form__status__item__icon::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #fff;
  content: "";
}

.is-current .c-form__status__item__icon::before {
  background-color: #ffe5ea;
}

.c-form__status__item__icon::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border: 6px solid #dedede;
  border-radius: 100%;
  content: "";
}

.is-current .c-form__status__item__icon::after {
  width: 19px;
  height: 19px;
  border: none;
  background-color: #e00028;
}

.is-passed .c-form__status__item__icon::after {
  width: 16px;
  height: 16px;
  border: none;
  background-color: #f2f2f2;
}

.c-form__status__item__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.c-form__item, .p-hubspot fieldset {
  width: 100%;
}

.c-form__title, .p-hubspot .hs-form-field span:first-child:not(.hs-form-required) {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
}

.-confirm .c-form__body {
  border-bottom: 1px solid #dedede;
}

.c-form__required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #e00028;
  font-weight: 700;
  font-size: 10px;
  font-size: 10px;
  font-size: 1rem;
  vertical-align: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-form__required::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 100%;
  background-color: #e00028;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
}

.c-form-input, .p-hubspot .hs-input[type="email"], .p-hubspot .hs-input[type="text"], .p-hubspot .hs-input[type="tel"], .p-hubspot .hs-input[type="number"] {
  width: 100%;
  padding: 18px 16px;
  border: 3px solid #edf5fb;
  border-radius: 6px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #edf5fb;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-form-input.error, .p-hubspot .error.hs-input[type="email"], .p-hubspot .error.hs-input[type="text"], .p-hubspot .error.hs-input[type="tel"], .p-hubspot .error.hs-input[type="number"] {
  border-color: #e00028;
  background-color: #ffe5ea;
}

.c-form-textarea, .p-hubspot textarea.hs-input {
  width: 100%;
  min-height: 150px;
  padding: 18px 16px;
  border: 3px solid #edf5fb;
  border-radius: 6px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #edf5fb;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-form-textarea.error, .p-hubspot textarea.error.hs-input {
  border-color: #e00028;
  background-color: #ffe5ea;
}

.c-form-checkbox__outer, .p-hubspot .inputs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-form-checkbox__item:not(:last-child), .p-hubspot .hs-form-checkbox:not(:last-child), .p-hubspot .hs-form-booleancheckbox:not(:last-child) {
  margin-right: 24px;
}

.c-form-checkbox__label, .p-hubspot .hs-form-checkbox-display, .p-hubspot .hs-form-booleancheckbox-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.c-form-checkbox, .p-hubspot .hs-form-checkbox-display .hs-input, .p-hubspot .hs-form-booleancheckbox-display .hs-input {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -1;
}

.c-form-checkbox__title, .p-hubspot .hs-form-checkbox-display span:not(.hs-form-required), .p-hubspot .hs-form-booleancheckbox-display span:not(.hs-form-required) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}

.c-form-checkbox__title::before, .p-hubspot .hs-form-checkbox-display span:not(.hs-form-required)::before, .p-hubspot .hs-form-booleancheckbox-display span:not(.hs-form-required)::before {
  display: block;
  width: 26px;
  height: 26px;
  margin-top: 3px;
  margin-right: 8px;
  border-radius: 6px;
  background-color: #edf5fb;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
}

input:checked + .c-form-checkbox__title::before, .p-hubspot .hs-form-checkbox-display input:checked + span:not(.hs-form-required)::before, .p-hubspot .hs-form-booleancheckbox-display input:checked + span:not(.hs-form-required)::before {
  background-color: #e00028;
}

.c-form-checkbox__title::after, .p-hubspot .hs-form-checkbox-display span:not(.hs-form-required)::after, .p-hubspot .hs-form-booleancheckbox-display span:not(.hs-form-required)::after {
  display: block;
  position: absolute;
  top: 15px;
  left: 6px;
  z-index: -1;
  width: 14px;
  height: 8px;
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  border-radius: 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  content: "";
}

input:checked + .c-form-checkbox__title::after, .p-hubspot .hs-form-checkbox-display input:checked + span:not(.hs-form-required)::after, .p-hubspot .hs-form-booleancheckbox-display input:checked + span:not(.hs-form-required)::after {
  z-index: 2;
}

.c-form-radio__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-form-radio__item:not(:last-child), .p-hubspot .hs-form-radio:not(:last-child) {
  margin-right: 24px;
}

.c-form-radio__label, .p-hubspot .hs-form-radio-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.c-form-radio, .p-hubspot .hs-form-radio-display .hs-input {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -1;
}

.c-form-radio__title, .p-hubspot .hs-form-radio-display span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}

.c-form-radio__title::before, .p-hubspot .hs-form-radio-display span::before {
  display: block;
  width: 26px;
  height: 26px;
  margin-top: 3px;
  margin-right: 8px;
  border: 13px solid #edf5fb;
  border-radius: 100%;
  background-color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
  -webkit-transition: .3s border-width, .3s border-color;
  transition: .3s border-width, .3s border-color;
}

input:checked + .c-form-radio__title::before, .p-hubspot .hs-form-radio-display input:checked + span::before {
  border-width: 8px;
  border-color: #e00028;
}

.c-form-pulldown__outer, .p-hubspot .hs-fieldtype-select .input {
  position: relative;
}

.c-form-pulldown__outer::after, .p-hubspot .hs-fieldtype-select .input::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-right: 4px solid #333;
  border-bottom: 4px solid #333;
  pointer-events: none;
  content: "";
}

.c-form-pulldown, .p-hubspot .hs-fieldtype-select .input select {
  width: 100%;
  border: 3px solid #edf5fb;
  border-radius: 6px;
  background-color: #edf5fb;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-form-pulldown::-ms-expand, .p-hubspot .hs-fieldtype-select .input select::-ms-expand {
  display: none;
}

.c-form-file__outer {
  position: relative;
  border: 3px solid #dedede;
  border-radius: 100vw;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.c-form-file__outer::before {
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  content: "ファイルを選択";
}

.c-form-file {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-form-privacy__box, .p-hubspot blockquote {
  overflow-y: scroll;
  border: 3px solid #dedede;
  border-radius: 6px;
}

.c-form-privacy__check__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-form-privacy__check__label {
  font-weight: 700;
}

.c-form-privacy + .c-button__outer .c-button--important, .c-form-privacy + .c-button__outer .p-hubspot .hs-submit .hs-button.primary, .p-hubspot .hs-submit .c-form-privacy + .c-button__outer .hs-button.primary {
  background-color: #ccc;
  pointer-events: none;
}

.c-form-privacy + .c-button__outer .c-button--important.is-active, .c-form-privacy + .c-button__outer .p-hubspot .hs-submit .is-active.hs-button.primary, .p-hubspot .hs-submit .c-form-privacy + .c-button__outer .is-active.hs-button.primary {
  background-color: #e00028;
  pointer-events: visible;
}

.c-form__thanks {
  text-align: center;
}

.c-heading--lv2, .c-article h2, body.cke_editable h2, .p-hubspot blockquote h2, .p-wysiwyg h2 {
  position: relative;
  color: #121212;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.c-heading--lv2::before, .c-article h2::before, body.cke_editable h2::before, .p-hubspot blockquote h2::before, .p-wysiwyg h2::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 40px;
  height: 5px;
  border-radius: 2px 0 0 2px;
  background-color: #e00028;
  content: "";
}

.c-heading--lv2::after, .c-article h2::after, body.cke_editable h2::after, .p-hubspot blockquote h2::after, .p-wysiwyg h2::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 2px 0 0 2px;
  background-color: #f4f6f7;
  content: "";
}

.c-heading--lv3, .c-article h3, body.cke_editable h3, .p-hubspot blockquote h3, .p-wysiwyg h3 {
  position: relative;
  color: #121212;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.c-heading--lv3::before, .c-article h3::before, body.cke_editable h3::before, .p-hubspot blockquote h3::before, .p-wysiwyg h3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 5px;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#e00028), color-stop(50%, #e00028), color-stop(50%, #ff7e00), to(#ff7e00));
  background-image: linear-gradient(to right, #e00028, #e00028 50%, #ff7e00 50%, #ff7e00);
  content: "";
}

.c-heading--lv4, .c-article h4, body.cke_editable h4, .p-hubspot blockquote strong, .p-hubspot blockquote h4, .p-wysiwyg h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #121212;
  font-weight: bold;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-heading--lv4::before, .c-article h4::before, body.cke_editable h4::before, .p-hubspot blockquote strong::before, .p-hubspot blockquote h4::before, .p-wysiwyg h4::before {
  border-radius: 100%;
  width: 15px;
  height: 15px;
  margin-right: 12px;
  background-color: #ff7e00;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
}

.c-heading--lv5, .c-article h5, body.cke_editable h5, .p-hubspot blockquote em, .p-hubspot blockquote h5, .p-wysiwyg h5 {
  margin: 40px 0 16px;
  color: #121212;
  font-weight: 700;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
}

.c-label__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-label {
  min-width: 114px;
  margin-bottom: 10px;
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #ff9023;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

.c-label:not(:last-child) {
  margin-right: 10px;
}

.c-label.-aqua {
  background-color: #59c6e5;
}

.c-label.-orange {
  background-color: #ff9023;
}

.c-label.-green {
  background-color: #38af4a;
}

.c-label.-red {
  background-color: #eb4446;
}

.c-label.-blue {
  background-color: #447eeb;
}

.c-label.-navy {
  background-color: #5050d5;
}

.c-label.-purple {
  background-color: #a250d5;
}

.c-link, .p-wysiwyg a:not([class]):not([id]), body.cke_editable a:not([class]):not([id]) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #e00028;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
}

.c-link[target="_blank"]::after, .p-wysiwyg a:not([id]):not([class]):not(div.p-hubspot a)[target="_blank"]::after, body.cke_editable a:not([id]):not([class])[target="_blank"]::after {
  display: block;
  margin-right: 6px;
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background-image: url(/files/user/assets/images/common/symbol-blank.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.c-link.-file::after, .p-wysiwyg a.-file:not([id]):not([class])::after, body.cke_editable a.-file:not([id]):not([class])::after {
  display: block;
  margin-right: 6px;
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 15px;
  height: 18px;
  background-image: url(/files/user/assets/images/common/symbol-file.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.c-list--unordered li, .p-wysiwyg ul:not([class]) li, body.cke_editable ul:not([class]) li, .p-wysiwyg ul:not([class]) ul:not([class]) li, body.cke_editable ul:not([class]) ul:not([class]) li {
  position: relative;
  padding-left: 28px;
}

.c-list--unordered li + li, .p-wysiwyg ul:not([class]) li + li, body.cke_editable ul:not([class]) li + li, .p-wysiwyg ul:not([class]) ul:not([class]) li + li, body.cke_editable ul:not([class]) ul:not([class]) li + li {
  margin-top: 6px;
}

.c-list--unordered li::before, .p-wysiwyg ul:not([class]) li::before, body.cke_editable ul:not([class]) li::before, .p-wysiwyg ul:not([class]) ul:not([class]) li::before, body.cke_editable ul:not([class]) ul:not([class]) li::before {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  width: 10px;
  height: 3px;
  background-color: #121212;
  content: "";
}

.c-list--unordered .c-list--unordered, .p-wysiwyg ul:not([class]) .c-list--unordered, body.cke_editable ul:not([class]) .c-list--unordered, .p-wysiwyg ul:not([class]) ul:not([class]) .c-list--unordered, .c-list--unordered .p-wysiwyg ul:not([class]), .p-wysiwyg .c-list--unordered ul:not([class]), .c-list--unordered body.cke_editable ul:not([class]), body.cke_editable .c-list--unordered ul:not([class]), .p-wysiwyg ul:not([class]) ul:not([class]), body.cke_editable ul:not([class]) ul:not([class]) {
  margin-top: 6px;
}

.c-list--unordered .c-list--unordered li::before, .p-wysiwyg ul:not([class]) .c-list--unordered li::before, body.cke_editable ul:not([class]) .c-list--unordered li::before, .c-list--unordered .p-wysiwyg ul:not([class]) li::before, .p-wysiwyg .c-list--unordered ul:not([class]) li::before, .c-list--unordered body.cke_editable ul:not([class]) li::before, body.cke_editable .c-list--unordered ul:not([class]) li::before, .p-wysiwyg ul:not([class]) ul:not([class]) li::before, body.cke_editable ul:not([class]) ul:not([class]) li::before {
  background-color: #666;
}

.c-list--ordered, .p-wysiwyg ol:not([class]), body.cke_editable ol:not([class]), .p-wysiwyg ol:not([class]) ol:not([class]), body.cke_editable ol:not([class]) ol:not([class]) {
  counter-reset: number;
}

.c-list--ordered li, .p-wysiwyg ol:not([class]) li, body.cke_editable ol:not([class]) li, .p-wysiwyg ol:not([class]) ol:not([class]) li, body.cke_editable ol:not([class]) ol:not([class]) li {
  position: relative;
  padding-left: 28px;
}

.c-list--ordered li + li, .p-wysiwyg ol:not([class]) li + li, body.cke_editable ol:not([class]) li + li, .p-wysiwyg ol:not([class]) ol:not([class]) li + li, body.cke_editable ol:not([class]) ol:not([class]) li + li {
  margin-top: 6px;
}

.c-list--ordered li::before, .p-wysiwyg ol:not([class]) li::before, body.cke_editable ol:not([class]) li::before, .p-wysiwyg ol:not([class]) ol:not([class]) li::before, body.cke_editable ol:not([class]) ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #e00028;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 13px;
  font-size: 1.3rem;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
}

.c-list--ordered .c-list--ordered, .p-wysiwyg ol:not([class]) .c-list--ordered, body.cke_editable ol:not([class]) .c-list--ordered, .p-wysiwyg ol:not([class]) ol:not([class]) .c-list--ordered, .c-list--ordered .p-wysiwyg ol:not([class]), .p-wysiwyg .c-list--ordered ol:not([class]), .c-list--ordered body.cke_editable ol:not([class]), body.cke_editable .c-list--ordered ol:not([class]), .p-wysiwyg ol:not([class]) ol:not([class]), body.cke_editable ol:not([class]) ol:not([class]) {
  margin-top: 6px;
}

.c-list--ordered .c-list--ordered li::before, .p-wysiwyg ol:not([class]) .c-list--ordered li::before, body.cke_editable ol:not([class]) .c-list--ordered li::before, .c-list--ordered .p-wysiwyg ol:not([class]) li::before, .p-wysiwyg .c-list--ordered ol:not([class]) li::before, .c-list--ordered body.cke_editable ol:not([class]) li::before, body.cke_editable .c-list--ordered ol:not([class]) li::before, .p-wysiwyg ol:not([class]) ol:not([class]) li::before, body.cke_editable ol:not([class]) ol:not([class]) li::before {
  color: #666;
}

.c-list--notes li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #666;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
}

.c-list--notes li::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "※";
}

.c-media::after {
  clear: both;
  display: block;
  content: "";
}

.c-media__picture img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.c-pageHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fcee92;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-pageHeader__heading {
  color: #121212;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.c-pageHeader__heading--sub {
  display: block;
  color: #ff7e00;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.c-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-pager__item {
  width: 40px;
  height: 40px;
}

.c-pager__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #f4f6f7;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-picture__inner {
  width: 100%;
  min-height: 0%;
  text-align: center;
}

.c-picture img {
  width: 100%;
  border-radius: 6px;
}

.c-picture__caption {
  width: 100%;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
}

.c-picture__caption a {
  color: #e00028;
}

.c-picture__caption a::after {
  font-weight: 700;
  line-height: 1;
  content: "→";
}

.c-section {
  width: 100%;
}

.c-tab, .c-tab-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-tab__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 72px;
  padding: 10px 21px;
  border: 3px solid #dedede;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.c-tab__item:hover, .c-tab__item.is-current {
  border-color: #e00028;
  background-color: #e00028;
  color: #fff;
}

.c-tab-link__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 72px;
  padding: 10px 21px;
  border: 3px solid #dedede;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.c-tab-link__link:hover, .c-tab-link__link.is-current {
  border-color: #e00028;
  background-color: #e00028;
  color: #fff;
}

.c-tab__content {
  display: none;
}

.c-tab__content.is-active {
  display: block;
}

.c-table {
  overflow: hidden;
  margin: 42px 0;
  border: 1px solid #dedede;
  border-radius: 6px;
}

.c-table__item dt {
  background-color: #fcee92;
  font-weight: 700;
}

.c-table--scroll__outer {
  margin: 42px 0;
}

.c-table--scroll {
  border: 1px solid #dedede;
  border-radius: 6px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  table-layout: fixed;
}

.c-table--scroll thead th:first-child {
  border-radius: 6px 0 0 0;
}

.c-table--scroll thead th:last-child {
  border-radius: 0 6px 0 0;
}

.c-table--scroll tbody th {
  border-top: 1px solid #fff;
}

.c-table--scroll tbody td {
  border-top: 1px solid #fff;
}

.c-table--scroll th {
  padding: 24px;
  background-color: #fcee92;
}

.c-table--scroll td {
  padding: 24px;
}

.c-text--bold, .c-article strong, body.cke_editable strong, .c-article em, body.cke_editable em, .p-wysiwyg strong {
  font-weight: 700;
}

.c-text--strike, .p-wysiwyg del, body.cke_editable del {
  text-decoration: line-through;
}

.c-text--italic, .p-wysiwyg em, body.cke_editable em {
  font-style: italic;
}

.c-text--underline, .p-wysiwyg ins, body.cke_editable ins {
  text-decoration: underline;
}

.c-text--quoted, .p-wysiwyg blockquote, body.cke_editable blockquote {
  margin: 42px 0;
  padding-left: 18px;
  border-left: 3px solid #121212;
  color: #666;
}

.c-topics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-topics__date {
  width: 6em;
  margin-right: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-topics__label {
  margin-right: 1em;
  padding: 2px .5em;
  border-radius: 2px;
  background-color: #dedede;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  font-size: 13px;
  font-size: 1.3rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-topics__title__link {
  -webkit-transition: .3s color;
  transition: .3s color;
}

.c-topics__title__link:hover {
  color: #e00028;
  text-decoration: underline;
}

.c-topics-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-topics-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-topics-card__link {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: .3s opacity;
  transition: .3s opacity;
}

.c-topics-card__link:hover {
  opacity: .7;
}

.c-topics-card__picture {
  overflow: hidden;
}

.c-topics-card__picture img {
  max-width: 100%;
}

.c-topics-card__label {
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 2px 1em;
  border-radius: 100vw;
  background-color: #e00028;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  font-size: 13px;
  font-size: 1.3rem;
}

.c-topics-card__contents {
  padding: 8px 16px;
}

.c-topics-card__date {
  display: block;
  margin-bottom: 4px;
  color: #666;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
}

.c-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.c-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.p-app__form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-app__form__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  border: 3px solid #dedede;
  border-radius: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-app__form__link::before {
  display: block;
  width: 58px;
  height: 58px;
  background-image: url(/files/user/assets/images/common/symbol-app.svg?v=1671436173);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
}

.p-app__form__link.icon01::before {
  width: 41px;
  height: 50px;
  background-image: url(/files/user/assets/images/common/symbol01.svg?v=1628129454);
}

.p-app__form__link.icon02::before {
  width: 57px;
  height: 50px;
  background-image: url(/files/user/assets/images/common/symbol02.svg?v=1628129454);
}

.p-app__form__link.icon03::before {
  width: 48px;
  height: 50px;
  background-image: url(/files/user/assets/images/common/symbol03.svg?v=1671437195);
}

.p-app__form__link.icon04::before {
  width: 76px;
  height: 47px;
  background-image: url(/files/user/assets/images/common/symbol04.svg?v=1628129454);
}

.p-app__form__link.icon05::before {
  width: 50px;
  height: 50px;
  background-image: url(/files/user/assets/images/common/symbol05.svg?v=1671437205);
}

.p-app__form__link.icon06::before {
  width: 57px;
  height: 45px;
  background-image: url(/files/user/assets/images/common/symbol06.svg?v=1628129454);
}

.p-app__form__link::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 3px solid #dedede;
  border-left: 3px solid #dedede;
  border-radius: 6px 0 0 0;
  color: #e00028;
  font-weight: 700;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "→";
}

.p-app__form__link[target="_blank"]::after {
  background-image: url(/files/user/assets/images/common/symbol-blank.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 14px;
  content: "";
}

.p-app__form__link.-file::after {
  background-image: url(/files/user/assets/images/common/symbol-file.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 18px;
  content: "";
}

.p-app__form__title {
  font-weight: 700;
  line-height: 1.6;
}

.p-app__form__title--sub {
  display: block;
  font-weight: 500;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-document__button__outer {
  background-color: #fcee92;
}

.p-document__button--download::after {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20928%22%20fill%3D%22%23e00028%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%20411%22%20d%3D%22M22.8%2018.064a1.194%201.194%200%2000-1.2%201.187v2.374H2.4v-2.374a1.2%201.2%200%2000-2.4%200v3.561a1.194%201.194%200%20001.2%201.187h21.6a1.194%201.194%200%20001.2-1.187v-3.561a1.194%201.194%200%2000-1.2-1.187z%22%2F%3E%3Cg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20929%22%20transform%3D%22rotate(90%2010.286%2010.286)%22%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201020%22%20width%3D%2217.459%22%20height%3D%222.952%22%20rx%3D%221.476%22%20transform%3D%22translate(0%207.095)%22%2F%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%20412%22%20d%3D%22M17.032%209.627l-6.4%206.469a1.449%201.449%200%2001-2.065%200%201.488%201.488%200%2001-.004-2.085l6.4-6.47a1.449%201.449%200%20012.065%200%201.488%201.488%200%2001.004%202.086z%22%2F%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%20413%22%20d%3D%22M14.967%209.603l-6.4-6.469a1.488%201.488%200%20010-2.087%201.449%201.449%200%20012.064%200l6.4%206.469a1.488%201.488%200%20010%202.087%201.449%201.449%200%2001-2.064%200z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 18px;
  content: "";
}

.p-document__material {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-document__material__item {
  text-align: center;
  position: relative;
  flex-basis: 22.35%;
  max-width: 22.35%;
}

.p-document__material__picture {
  position: relative;
  border: 3px solid #dedede;
  border-radius: 6px;
  background-color: #fff;
}

.p-document__material__picture::after {
  position: absolute;
  left: 50%;
  bottom: -22px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #ff7e00;
  background-image: url(/files/user/assets/images/common/symbol-download.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 24px;
  content: "";
}

.p-document__material__link.is-active::before {
  z-index: 1;
  content: 'NEW';
  position: absolute;
  top: -5px;
  left: -10px;
  color: #fff;
  background: #e00028;
  padding: 3px 5px;
  display: inline-block;
  font-weight: bold;
  border-radius: 6px;
  font-size: 12px;
  -webkit-box-shadow: 1px 1px 0 #ff7e00;
          box-shadow: 1px 1px 0 #ff7e00;
}

.p-document__material__picture__inner {
  background-color: #f4f6f7;
}

.p-document__material__picture__inner::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  content: "";
}

.p-document__material__picture__inner.-file::before {
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_543%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20543%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.921%22%20height%3D%2224%22%20viewBox%3D%220%200%2019.921%2024%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_336%22%20data-name%3D%22%E3%83%91%E3%82%B9%20336%22%20d%3D%22M130.042%2C60a2.826%2C2.826%2C0%2C0%2C1-2.822-2.823V38.823A2.826%2C2.826%2C0%2C0%2C1%2C130.042%2C36h11.216a.784.784%2C0%2C0%2C1%2C.58.257l5.1%2C5.608a.783.783%2C0%2C0%2C1%2C.2.527V57.177A2.826%2C2.826%2C0%2C0%2C1%2C144.318%2C60Zm0-21.413a.236.236%2C0%2C0%2C0-.236.236V57.177a.236.236%2C0%2C0%2C0%2C.236.236h14.276a.236.236%2C0%2C0%2C0%2C.236-.236V44.7h-4.315a1.805%2C1.805%2C0%2C0%2C1-1.8-1.8V38.587Zm13.536%2C3.531-2.555-2.839v2.839Z%22%20transform%3D%22translate(-127.22%20-36)%22%20fill%3D%22%23dadcdc%22%2F%3E%3C%2Fsvg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.p-document__material__picture img {
  max-width: 100%;
  max-height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.p-document__material__title {
  margin-top: 28px;
}

.p-document__report__heading {
  font-weight: 700;
}

.p-document__report__list {
  margin-top: 20px;
}

.p-document__report__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-document__report__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 5px;
  background-color: #f4f6f7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-document__report__link::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-image: url(/files/user/assets/images/common/symbol-download_red.svg?v=1636107446);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "";
}

.p-document__report__link[href$=".zip"]::after, .p-document__report__link.-file::after {
  background-image: url(/files/user/assets/images/common/symbol-zip.svg?v=1628129454);
}

.p-document__report__link.is-active {
  position: relative;
}

.p-document__report__link.is-active::before {
  z-index: 1;
  content: 'NEW';
  position: absolute;
  top: -5px;
  left: -7px;
  color: #fff;
  background: #e00028;
  padding: 3px 5px;
  display: inline-block;
  font-weight: bold;
  border-radius: 6px;
  font-size: 12px;
  -webkit-box-shadow: 1px 1px 0 #ff7e00;
          box-shadow: 1px 1px 0 #ff7e00;
}

.p-document__report__link .is-downloaded, .p-document__material__link .is-downloaded {
  z-index: 1;
  position: absolute;
  right: 130px;
  color: #fff;
  background: #e00028;
  padding: 5px 12px;
  display: inline-block;
  font-weight: bold;
  border-radius: 6px;
  -webkit-box-shadow: 1px 1px 0 #ff7e00;
  box-shadow: 1px 1px 0 #ff7e00;
  border-radius: 50%;
}

.p-document__report__link.is-active .is-downloaded {
  right: 90px;
}

.p-document__material__link .is-downloaded {
  top: 10px;
  right: 10px;
}

.p-document__button--download-batch {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 6px;
  background: #f4f6f7;
  border: none;
}

.p-document__report__text {
  flex: 1;
  -ms-flex: 1;
  -webkit-box-flex: 1;
}

.p-document__report__batchCheck {
  margin: 0 2em;
}

.p-document__report__label .c-form-checkbox__title::before, .p-document__material__label .c-form-checkbox__title::before{
  background: white;
}

.p-document__report__link:hover .c-form-checkbox:not(:checked) + .c-form-checkbox__title::before {
  background: #edf5fb;
}

.p-document__material__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-document__material__batchCheck {
  flex: 1;
  -ms-flex: 1;
  -webkit-box-flex: 1;
}

.p-document__material__label {
  position: absolute;
  left: 35px;
  top: 32px;
  z-index: 2;
}

.p-hubspot .submitted-message {
  text-align: center;
  font-weight: bold;
  padding: 40px;
}

.p-hubspot blockquote {
  margin-left: 0;
  margin-right: 0;
}

.p-hubspot blockquote em {
  font-style: normal;
}

.p-hubspot fieldset {
  max-width: inherit !important;
}

.p-hubspot .hs-form-field > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-hubspot .hs-form-field span:first-child:not(.hs-form-required) {
  display: block;
  margin-bottom: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
}

.p-hubspot .hs-form-field .hs-form-required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 0 !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-hubspot .hs-form-field .hs-form-required::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 100%;
  background-color: #e00028;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
}

.p-hubspot .hs-form-field .hs-form-required::after {
  color: #e00028;
  font-weight: 700;
  font-size: 10px;
  font-size: 10px;
  font-size: 1rem;
  content: "必須";
}

.p-hubspot .input {
  margin-right: 0 !important;
}

.p-hubspot .hs-input[type="email"], .p-hubspot .hs-input[type="text"], .p-hubspot .hs-input[type="tel"], .p-hubspot .hs-input[type="number"] {
  width: 100% !important;
}

.p-hubspot .hs-input[type="email"].error, .p-hubspot .hs-input[type="text"].error, .p-hubspot .hs-input[type="tel"].error, .p-hubspot .hs-input[type="number"].error {
  border-color: #e00028;
  background-color: #ffe5ea;
}

.p-hubspot textarea.hs-input {
  width: 100% !important;
}

.p-hubspot textarea.hs-input.error {
  border-color: #e00028;
  background-color: #ffe5ea;
}

.p-hubspot .hs-form-checkbox-display span:not(.hs-form-required), .p-hubspot .hs-form-booleancheckbox-display span:not(.hs-form-required) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-hubspot .error .hs-form-checkbox-display span:not(.hs-form-required)::before, .p-hubspot .error .hs-form-booleancheckbox-display span:not(.hs-form-required)::before {
  background-color: #ffe5ea;
}

.p-hubspot .hs-form-radio-display span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-hubspot .error .hs-form-radio-display span::before {
  background-color: #ffe5ea;
}

.p-hubspot .hs-fieldtype-select .input select {
  width: 100% !important;
}

.p-hubspot .hs-fieldtype-select .input select.error {
  border-color: #e00028;
  background-color: #ffe5ea;
}

.p-hubspot .hs-dateinput {
  position: relative;
}

.p-hubspot .hs-dateinput input {
  width: 100%;
  border: 3px solid #edf5fb;
  border-radius: 6px;
  background-color: #edf5fb;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100% !important;
}

.p-hubspot .hs-dateinput input.error {
  border-color: #e00028;
  background-color: #ffe5ea;
}

.p-hubspot .hs-error-msg {
  color: #e00028;
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
}

.p-hubspot .hs-submit .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-hubspot .hs-submit .hs-button.primary {
  background-color: #e00028;
  pointer-events: visible;
}

.p-hubspot .hs-submit .hs-button.primary.is-active {
  background-color: #e00028;
  pointer-events: visible;
}

.p-hubspot .hs_error_rollup {
  margin: 20px 0;
}

.p-hubspot .hs_error_rollup .hs-error-msgs {
  margin-bottom: 0;
  color: #e00028;
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}

.is-tablet .-no-login .l-header__button {
  margin-right: 0;
}

.is-tablet .-no-login .l-header__button__link {
  padding: 9px 16px 9px 20px;
  border-radius: 100vw;
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
}

.-no-login .l-header__button__link::after {
  background-image: url(/files/user/assets/images/common/symbol-login.svg?v=1628129453);
}

.is-tablet .-no-login .l-header__button__link::after {
  margin-left: 12px;
}

.-no-login + .l-footer {
  margin-top: 0;
  border-top: 1px solid #dedede;
}

.p-login {
  background-color: #fcee92;
  background-color: #f4f6f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-login__form {
  padding: 20px;
  background-color: #fff;
}

.p-login__form__autologin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-login__form__autologin .c-form-checkbox__title::before, .p-login__form__autologin .p-hubspot .hs-form-checkbox-display span:not(.hs-form-required)::before, .p-hubspot .hs-form-checkbox-display .p-login__form__autologin span:not(.hs-form-required)::before, .p-login__form__autologin .p-hubspot .hs-form-booleancheckbox-display span:not(.hs-form-required)::before, .p-hubspot .hs-form-booleancheckbox-display .p-login__form__autologin span:not(.hs-form-required)::before {
  margin-top: 0;
}

.p-login__form__autologin .c-form-checkbox__title::after, .p-login__form__autologin .p-hubspot .hs-form-checkbox-display span:not(.hs-form-required)::after, .p-hubspot .hs-form-checkbox-display .p-login__form__autologin span:not(.hs-form-required)::after, .p-login__form__autologin .p-hubspot .hs-form-booleancheckbox-display span:not(.hs-form-required)::after, .p-hubspot .hs-form-booleancheckbox-display .p-login__form__autologin span:not(.hs-form-required)::after {
  top: 12px;
}

.p-login__form__reminder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-login__form__reminder__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #e00028;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-login__form__reminder__link::after {
  display: block;
  margin-left: 6px;
  font-weight: 700;
  content: "→";
}

.p-top__hero {
  position: relative;
}

.p-top__hero::before {
  position: absolute;
  z-index: -1;
  background-image: url(/files/user/assets/images/page/top-bg_pattern.svg?v=1627882504);
  background-repeat: no-repeat;
  content: "";
}

.p-top__hero .slick-arrow {
  z-index: 2;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
          box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  background-color: #fff;
}

.p-top__hero .slick-arrow::before {
  opacity: 1;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 15px;
  height: 15px;
  content: "";
}

.p-top__hero .slick-prev::before {
  left: 52%;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
}

.p-top__hero .slick-next::before {
  left: 48%;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.p-top__hero .slick-dots li {
  width: 15px;
  height: 15px;
}

.p-top__hero .slick-dots li:only-child {
  display: none;
}

.p-top__hero .slick-dots button {
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #dedede;
}

.p-top__hero .slick-dots button::before {
  content: none;
}

.p-top__hero .slick-dots .slick-active button {
  background-color: #e00028;
}

.p-top__news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 32px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

.p-top__news__heading--sub {
  color: #ff7e00;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.p-top__news__heading__link::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100%;
  background-color: #e00028;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "→";
}

.p-top__news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  background-color: #f4f6f7;
}

.p-top__news__link::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: transparent;
  color: #e00028;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "→";
}

.p-top__news__link[target="_blank"]::after {
  background-image: url(/files/user/assets/images/common/symbol-blank.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 14px;
  content: "";
}

.p-top__news__link.-file::after {
  background-image: url(/files/user/assets/images/common/symbol-file.svg?v=1628129453);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 18px;
  content: "";
}

.p-top__news__date {
  opacity: .5;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.p-top__news__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #ff7e00;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-top__news__title {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-top__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-top__contents__link {
  position: relative;
  height: 100%;
  border: 3px solid #dedede;
  border-radius: 6px;
}

.p-top__contents__link.is-active::before {
  content: 'NEW';
  position: absolute;
  top: -5px;
  left: -10px;
  color: #fff;
  background: #e00028;
  padding: 3px 5px;
  display: inline-block;
  font-weight: bold;
  border-radius: 6px;
  font-size: 12px;
  -webkit-box-shadow: 1px 1px 0 #ff7e00;
          box-shadow: 1px 1px 0 #ff7e00;
}

.p-top__contents__link::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 3px solid #dedede;
  border-left: 3px solid #dedede;
  border-radius: 6px 0 0 0;
  color: #e00028;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "→";
}

.p-top__contents__info__title {
  font-weight: 700;
}

.p-top__contents__info__description {
  font-weight: 500;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

/* WYSIWYG調整用
----------------------------------------------- */
.p-wysiwyg em, body.cke_editable em {
  font-weight: normal;
}

body.cke_editable {
  display: block !important;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1080px;
  }
  .is-sp {
    display: none;
  }
  .l-breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0 70px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .l-breadcrumb__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    font-size: 1.3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-breadcrumb__item + .l-breadcrumb__item {
    margin-left: 8px;
  }
  .l-breadcrumb__item + .l-breadcrumb__item::before {
    margin-right: 8px;
    color: #e00028;
    content: "／";
  }
  .l-breadcrumb__link {
    -webkit-transition: .3s color;
    transition: .3s color;
  }
  .l-breadcrumb__link:hover {
    color: #e00028;
  }
  .l-container--huge {
    padding-top: 150px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .l-container--large {
    width: 1360px;
    margin: 0 auto;
  }
  .l-container--middle {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .l-container--single {
    width: 980px;
    margin: 0 auto;
  }
  .l-container--main {
    width: 680px;
    float: left;
  }
  .l-container--side {
    width: 420px;
    margin-left: 40px;
    float: right;
  }
  .l-footer {
    margin-top: 150px;
  }
  .l-footer__contact {
    padding: 80px 0;
  }
  .l-footer__contact__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-footer__contact__item {
    width: 33.33333%;
  }
  .l-footer__contact__item:not(:nth-child(3n+1)) {
    border-left: 1px solid #dedede;
  }
  .l-footer__contact__item:nth-child(n+4) {
    margin-top: 40px;
  }
  .l-footer__contact__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-footer__contact__link::after {
    width: 60px;
    height: 60px;
    margin-top: 40px;
    font-size: 20px;
    font-size: 2rem;
    -webkit-transition: .3s background-color, .3s color;
    transition: .3s background-color, .3s color;
  }
  .l-footer__contact__link:hover::after {
    background-color: #e00028;
    color: #fff;
  }
  .l-footer__contact__title--sub {
    margin-bottom: 8px;
  }
  .l-footer__floor {
    padding: 60px 0;
  }
  .l-footer__floor__inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .l-footer__nav {
    line-height: 1.1;
  }
  .l-footer__nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-footer__nav__item {
    margin-bottom: 5px;
  }
  .l-footer__nav__item + .l-footer__nav__item {
    margin-left: 20px;
  }
  .l-footer__nav__link {
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .l-footer__nav__link:hover {
    opacity: .7;
  }
  .l-footer__copyright {
    margin-top: 28px;
  }
  .l-footer__pagetop {
    right: 5.7%;
    width: 80px;
    height: 80px;
  }
  .l-footer__pagetop::before {
    width: 13px;
    height: 13px;
    border-top: 4px solid #e00028;
    border-right: 4px solid #e00028;
  }
  .l-footer__pagetop:hover {
    opacity: .7;
  }
  .l-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    min-width: 1080px;
    -webkit-transition: .3s box-shadow;
    transition: .3s box-shadow;
  }
  .l-header::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    content: "";
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
    opacity: 0;
  }
  .l-header.is-fixed::after {
    opacity: 1;
  }
  .l-header__inner {
    position: relative;
    z-index: 2;
    max-width: 1340px;
    margin: 0 auto;
    padding: 45px 40px;
  }
  .is-fixed .l-header__inner {
    padding: 20px 40px;
  }
  .l-header__logo {
    width: 23%;
    max-width: 290px;
  }
  .l-header__logo__link {
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .l-header__logo__link:hover {
    opacity: .7;
  }
  .l-header__subnav {
    margin-bottom: 8px;
  }
  .l-header__subnav__item {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .l-header__subnav__item + .l-header__subnav__item::before {
    margin: 0 6px;
    content: "／";
  }
  .l-header__subnav__item.has-item {
    position: relative;
    -webkit-transition: .3s margin-bottom, .3s padding-bottom;
    transition: .3s margin-bottom, .3s padding-bottom;
  }
  .l-header__subnav__item.has-item .l-header__nav__label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: normal;
  }
  .l-header__subnav__item.has-item .l-header__nav__label::after {
    margin-top: -3px;
  }
  .l-header__subnav__item.has-item:hover {
    margin-bottom: -20px;
    padding-bottom: 20px;
  }
  .l-header__subnav__item.sp {
    display: none;
  }
  .l-header__subnav__link {
    -webkit-transition: .3s color;
    transition: .3s color;
  }
  .l-header__subnav__link:hover {
    color: #e00028;
  }
  .l-header__nav__check {
    display: none;
  }
  .l-header__nav__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 42%;
    margin: 0 42px 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .l-header__nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header__nav__item + .l-header__nav__item {
    margin-left: 26px;
  }
  .l-header__nav__item.has-item {
    position: relative;
    -webkit-transition: .3s margin-bottom, .3s padding-bottom;
    transition: .3s margin-bottom, .3s padding-bottom;
  }
  .l-header__nav__item.has-item:hover {
    margin-bottom: -20px;
    padding-bottom: 20px;
  }
  .l-header__nav__link, .l-header__nav__label {
    -webkit-transition: .3s color;
    transition: .3s color;
  }
  .l-header__nav__link:hover, .l-header__nav__label:hover {
    color: #e00028;
  }
  .l-header__nav__link.-nolink {
    color: #ccc;
    font-weight: 400;
  }
  .l-header__nav__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .l-header__nav__label::after {
    display: block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    width: 9px;
    height: 9px;
    margin-left: 6px;
    border-bottom: 3px solid #e00028;
    border-left: 3px solid #e00028;
    content: "";
  }
  .l-header__nav__child__check {
    display: none;
  }
  .l-header__nav__child {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 200px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .16);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .16);
    -webkit-transition: .3s opacity, .3s visibility;
    transition: .3s opacity, .3s visibility;
  }
  .l-header__nav__child::before {
    opacity: 0;
    position: absolute;
    top: -10px;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-right: 7px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 7px solid transparent;
    content: "";
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .has-item:hover .l-header__nav__child {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }
  .has-item:hover .l-header__nav__child::before {
    opacity: 1;
  }
  .l-header__nav__child__item + .l-header__nav__child__item {
    border-top: 1px solid #dedede;
  }
  .l-header__nav__child__link {
    padding: 12px 20px;
    background-color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    -webkit-transition: .3s background-color, .3s color;
    transition: .3s background-color, .3s color;
  }
  .l-header__nav__child__link::after {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .l-header__nav__child__link:hover {
    background-color: #f4f6f7;
    color: #e00028;
  }
  .l-header__nav__child__item:first-child .l-header__nav__child__link {
    border-radius: 6px 6px 0 0;
  }
  .l-header__nav__child__item:last-child .l-header__nav__child__link {
    border-radius: 0 0 6px 6px;
  }
  .l-header__nav__logout {
    display: none;
  }
  .l-header__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .l-header__button__link {
    padding: 18px 20px 18px 30px;
    border-radius: 100vw;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .l-header__button__link::after {
    width: 22px;
    height: 25px;
    margin-left: 12px;
  }
  .l-header__button__link:hover {
    opacity: .7;
  }
  .l-header__menu {
    display: none;
  }
  .c-anchor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 100px 0 80px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-anchor__item {
    margin-bottom: 20px;
  }
  .c-anchor__item:not(:last-child) {
    margin-right: 32px;
  }
  .c-anchor__link {
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .c-anchor__link::before {
    width: 26px;
    height: 26px;
    margin-right: 10px;
  }
  .c-anchor__link::after {
    top: 6px;
    left: 8px;
    width: 10px;
    height: 10px;
  }
  .c-anchor__link:hover {
    opacity: .7;
  }
  .c-button, .c-button--return, .c-button--large, .p-hubspot .hs-submit .hs-button.primary, .c-button--variable {
    width: 32%;
    max-width: 230px;
    -webkit-transition: .3s opacity, .3s border-color, .3s background-color, .3s color;
    transition: .3s opacity, .3s border-color, .3s background-color, .3s color;
  }
  .c-button::after, .c-button--return::after, .c-button--large::after, .p-hubspot .hs-submit .hs-button.primary::after, .c-button--variable::after {
    -webkit-transition: .3s color;
    transition: .3s color;
  }
  .c-button + .c-button, .c-button--return + .c-button, .c-button--large + .c-button, .p-hubspot .hs-submit .hs-button.primary + .c-button, .c-button--variable + .c-button, .c-button + .c-button--return, .c-button--return + .c-button--return, .c-button--large + .c-button--return, .p-hubspot .hs-submit .hs-button.primary + .c-button--return, .c-button--variable + .c-button--return, .c-button + .c-button--large, .c-button--return + .c-button--large, .c-button--large + .c-button--large, .p-hubspot .hs-submit .hs-button.primary + .c-button--large, .c-button--variable + .c-button--large, .p-hubspot .hs-submit .c-button + .hs-button.primary, .p-hubspot .hs-submit .c-button--return + .hs-button.primary, .p-hubspot .hs-submit .c-button--large + .hs-button.primary, .p-hubspot .hs-submit .hs-button.primary + .hs-button.primary, .p-hubspot .hs-submit .c-button--variable + .hs-button.primary, .c-button + .c-button--variable, .c-button--return + .c-button--variable, .c-button--large + .c-button--variable, .p-hubspot .hs-submit .hs-button.primary + .c-button--variable, .c-button--variable + .c-button--variable {
    margin-left: 2%;
  }
  .c-button__outer {
    margin: 40px auto;
  }
  .c-button:hover {
    border-color: #e00028;
    background-color: #e00028;
    color: #fff;
  }
  .c-button:hover::after {
    color: #fff;
  }
  .c-button:hover[target="_blank"]::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20664%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%20340%22%20d%3D%22M.707%2010A.708.708%200%20010%209.293v-8.3A.708.708%200%2001.707.286h2.646a.707.707%200%20010%201.414H1.414v6.888h6.888V6.65a.707.707%200%20011.414%200v2.646a.708.708%200%2001-.705.707h-8.3z%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20617%22%20transform%3D%22translate(4.187)%22%20fill%3D%22%23fff%22%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201023%22%20width%3D%226.85%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(-45%205.847%202.422)%22%2F%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201024%22%20width%3D%224.717%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(90%202.623%202.907)%22%2F%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201025%22%20width%3D%224.717%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(180%202.764%20.828)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  }
  .c-button:hover.-file::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_543%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20543%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.921%22%20height%3D%2224%22%20viewBox%3D%220%200%2019.921%2024%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_336%22%20data-name%3D%22%E3%83%91%E3%82%B9%20336%22%20d%3D%22M130.042%2C60a2.826%2C2.826%2C0%2C0%2C1-2.822-2.823V38.823A2.826%2C2.826%2C0%2C0%2C1%2C130.042%2C36h11.216a.784.784%2C0%2C0%2C1%2C.58.257l5.1%2C5.608a.783.783%2C0%2C0%2C1%2C.2.527V57.177A2.826%2C2.826%2C0%2C0%2C1%2C144.318%2C60Zm0-21.413a.236.236%2C0%2C0%2C0-.236.236V57.177a.236.236%2C0%2C0%2C0%2C.236.236h14.276a.236.236%2C0%2C0%2C0%2C.236-.236V44.7h-4.315a1.805%2C1.805%2C0%2C0%2C1-1.8-1.8V38.587Zm13.536%2C3.531-2.555-2.839v2.839Z%22%20transform%3D%22translate(-127.22%20-36)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  }
  .c-button--return::before {
    -webkit-transition: .3s color;
    transition: .3s color;
  }
  .c-button--return:hover {
    border-color: #e00028;
    background-color: #e00028;
    color: #fff;
  }
  .c-button--return:hover::before {
    color: #fff;
  }
  .c-button--large, .p-hubspot .hs-submit .hs-button.primary {
    width: 55%;
    max-width: 400px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-button--important, .p-hubspot .hs-submit .hs-button.primary {
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .c-button--important:hover, .p-hubspot .hs-submit .hs-button.primary:hover {
    opacity: .7;
  }
  .c-button--variable {
    width: auto;
    max-width: inherit;
    min-width: 230px;
  }
  .c-button--variable:hover {
    border-color: #e00028;
    background-color: #e00028;
    color: #fff;
  }
  .c-button--variable:hover::after {
    color: #fff;
  }
  .c-button--variable:hover[target="_blank"]::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20664%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%20340%22%20d%3D%22M.707%2010A.708.708%200%20010%209.293v-8.3A.708.708%200%2001.707.286h2.646a.707.707%200%20010%201.414H1.414v6.888h6.888V6.65a.707.707%200%20011.414%200v2.646a.708.708%200%2001-.705.707h-8.3z%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20617%22%20transform%3D%22translate(4.187)%22%20fill%3D%22%23fff%22%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201023%22%20width%3D%226.85%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(-45%205.847%202.422)%22%2F%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201024%22%20width%3D%224.717%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(90%202.623%202.907)%22%2F%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201025%22%20width%3D%224.717%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(180%202.764%20.828)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  }
  .c-button--variable:hover.-file::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_543%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20543%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.921%22%20height%3D%2224%22%20viewBox%3D%220%200%2019.921%2024%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_336%22%20data-name%3D%22%E3%83%91%E3%82%B9%20336%22%20d%3D%22M130.042%2C60a2.826%2C2.826%2C0%2C0%2C1-2.822-2.823V38.823A2.826%2C2.826%2C0%2C0%2C1%2C130.042%2C36h11.216a.784.784%2C0%2C0%2C1%2C.58.257l5.1%2C5.608a.783.783%2C0%2C0%2C1%2C.2.527V57.177A2.826%2C2.826%2C0%2C0%2C1%2C144.318%2C60Zm0-21.413a.236.236%2C0%2C0%2C0-.236.236V57.177a.236.236%2C0%2C0%2C0%2C.236.236h14.276a.236.236%2C0%2C0%2C0%2C.236-.236V44.7h-4.315a1.805%2C1.805%2C0%2C0%2C1-1.8-1.8V38.587Zm13.536%2C3.531-2.555-2.839v2.839Z%22%20transform%3D%22translate(-127.22%20-36)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  }
  .c-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px 0;
  }
  .c-column__item {
    width: 49%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .c-column__item + .c-column__item {
    margin-left: 2%;
  }
  .c-column-article {
    margin: 0 0 56px;
  }
  .c-faq {
    margin: 42px 0;
  }
  .c-faq__item {
    -webkit-transition: .3s box-shadow;
    transition: .3s box-shadow;
  }
  .c-faq__item + .c-faq__item {
    margin-top: 8px;
  }
  .c-faq__item:hover {
    -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, .14);
            box-shadow: 0 3px 12px rgba(0, 0, 0, .14);
  }
  .c-faq__question {
    padding: 24px 32px;
  }
  .c-faq__question__inner {
    padding-top: 2px;
  }
  .c-faq__question__inner::before {
    margin-top: -2px;
    margin-right: 32px;
  }
  .c-faq__question::after {
    width: 40px;
    height: 40px;
    margin-left: 32px;
    -webkit-transition: .3s background-color, .3s color;
    transition: .3s background-color, .3s color;
  }
  .c-faq__question:hover::after {
    background-color: #e00028;
    color: #fff;
  }
  .c-faq__answer {
    padding: 24px 32px;
  }
  .c-faq__answer::before {
    margin-top: 4px;
    margin-right: 32px;
  }
  .c-form__status {
    margin: 70px 0 50px;
  }
  .c-form__status__item {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .c-form__status__item:not(:last-child) {
    padding-right: 160px;
  }
  .c-form__status__item:not(:last-child)::after {
    width: 160px;
  }
  .c-form {
    margin-bottom: 150px;
  }
  .c-form__item:not(:last-child), .p-hubspot fieldset:not(:last-child) {
    margin-bottom: 42px;
  }
  .c-form__item__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-form__item__column {
    width: 320px;
  }
  .c-form__item__column + .c-form__item__column {
    margin-left: 45px;
  }
  .-confirm .c-form__body {
    padding: 0 0 8px 20px;
  }
  .c-form-checkbox__title::before, .p-hubspot .hs-form-checkbox-display span:not(.hs-form-required)::before, .p-hubspot .hs-form-booleancheckbox-display span:not(.hs-form-required)::before {
    -webkit-transition: .3s background-color;
    transition: .3s background-color;
  }
  .c-form-pulldown__outer, .p-hubspot .hs-fieldtype-select .input {
    width: 250px;
  }
  .c-form-pulldown, .p-hubspot .hs-fieldtype-select .input select {
    padding: 18px 36px 18px 16px;
  }
  .c-form-file__outer {
    width: 194px;
    padding: 18px 16px;
    -webkit-transition: .3s border-color, .3s background-color, .3s color;
    transition: .3s border-color, .3s background-color, .3s color;
  }
  .c-form-file__outer:hover {
    border-color: #e00028;
    background-color: #e00028;
    color: #fff;
  }
  .c-form-privacy__box, .p-hubspot blockquote {
    height: 200px;
  }
  .c-form-privacy__box__inner {
    padding: 0 40px 20px;
  }
  .c-form-privacy__check__outer {
    margin-top: 100px;
  }
  .c-form__thanks {
    margin-bottom: 150px;
  }
  .c-heading--lv2, .c-article h2, body.cke_editable h2, .p-hubspot blockquote h2, .p-wysiwyg h2 {
    margin: 56px 0;
    padding-top: 45px;
    font-size: 32px;
    font-size: 3.2rem;
  }
  .c-heading--lv3, .c-article h3, body.cke_editable h3, .p-hubspot blockquote h3, .p-wysiwyg h3 {
    margin: 36px 0;
    padding-top: 24px;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .c-heading--lv4, .c-article h4, body.cke_editable h4, .p-hubspot blockquote strong, .p-hubspot blockquote h4, .p-wysiwyg h4 {
    margin: 36px 0 18px;
  }
  .c-heading--lv4::before, .c-article h4::before, body.cke_editable h4::before, .p-hubspot blockquote strong::before, .p-hubspot blockquote h4::before, .p-wysiwyg h4::before {
    margin-top: 10px;
  }
  .c-link, .p-wysiwyg a:not([class]):not([id]), body.cke_editable a:not([class]):not([id]) {
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .c-link:hover, .p-wysiwyg a:hover:not([class]):not([id]), body.cke_editable a:hover:not([class]):not([id]) {
    opacity: .7;
  }
  .c-list--notes {
    margin: 20px 0;
  }
  .c-table + .c-list--notes, .c-table--scroll__outer + .c-list--notes {
    margin-top: -22px;
  }
  .c-list--notes li::before {
    margin-right: 14px;
  }
  .c-media {
    margin: 52px 0;
  }
  .c-media__picture {
    width: 62%;
  }
  .c-media__picture.-left {
    float: left;
    margin-right: 24px;
    margin-bottom: 24px;
  }
  .c-media__picture.-right {
    float: right;
    margin-bottom: 24px;
    margin-left: 24px;
  }
  .c-pageHeader {
    min-height: 140px;
  }
  .c-pageHeader__heading {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .c-pageHeader__heading--sub {
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-pager {
    margin: 100px 0;
  }
  .c-pager__display {
    display: none;
  }
  .c-pager__item {
    font-family: 'Open Sans', sans-serif;
  }
  .c-pager__item + .c-pager__item {
    margin-left: 8px;
  }
  .c-pager__link {
    -webkit-transition: .3s background-color, .3s color;
    transition: .3s background-color, .3s color;
  }
  .c-pager__link:hover, .c-pager__link.is-current {
    background-color: #e00028;
    color: #fff;
  }
  .c-pager__control {
    font-family: 'Noto Sans JP', sans-serif;
  }
  .c-pager__space {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-pager__space::before {
    display: block;
    width: 20px;
    height: 6px;
    background-image: radial-gradient(#121212 40%, transparent 40%);
    background-size: 7px 7px;
    content: "";
  }
  .c-picture {
    margin: 52px 0;
  }
  .c-column .c-picture {
    margin: 0;
  }
  .c-picture__caption {
    margin-top: 14px;
    padding: 0 20px;
    text-align: center;
  }
  .c-picture__caption a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .c-picture__caption a::after {
    display: block;
    margin-left: 6px;
    font-size: 20px;
    font-size: 2rem;
  }
  .c-picture__caption a:hover {
    opacity: .7;
  }
  .c-section {
    padding: 24px;
  }
  .c-section + .c-section {
    margin-top: 32px;
  }
  .c-tab, .c-tab-link {
    margin: 42px 0;
  }
  .c-tab__item {
    width: 235px;
    -webkit-transition: .3s border-color, .3s background-color, .3s color;
    transition: .3s border-color, .3s background-color, .3s color;
    margin-bottom: 10px;
  }
  .c-tab__item:not(:nth-child(4n+1)) {
    margin-left: 20px;
  }
  .c-tab-link__item:not(:nth-child(4n+1)) {
    margin-left: 20px;
  }
  .c-tab-link__item {
    margin-bottom: 10px;
  }
  .c-tab-link__link {
    width: 235px;
    -webkit-transition: .3s border-color, .3s background-color, .3s color;
    transition: .3s border-color, .3s background-color, .3s color;
  }
  .c-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-table__item {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .c-table__item dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-table__item dd {
    padding: 24px;
  }
  .c-table--scroll {
    width: 100%;
  }
  .c-text, .p-hubspot .submitted-message > p, .p-hubspot blockquote div, .p-wysiwyg, body.cke_editable, .p-wysiwyg p:not([class]), body.cke_editable p:not([class]) {
    margin: 16px 0 36px;
  }
  .c-topics__item + .c-topics__item {
    margin-top: 12px;
  }
  .c-topics-card__item {
    width: 32%;
  }
  .c-topics-card__item:not(:nth-child(3n+1)) {
    margin-left: 2%;
  }
  .c-topics-card__item:nth-child(n+4) {
    margin-top: 2%;
  }
  .c-video {
    margin: 100px 0;
  }
  .p-app__form__list {
    margin-top: 70px;
  }
  .p-app__form__item {
    width: 31.2%;
    min-height: 120px;
  }
  .p-app__form__item:not(:nth-child(3n+1)) {
    margin-left: 3.2%;
  }
  .p-app__form__item:nth-child(n+4) {
    margin-top: 3.2%;
  }
  .p-app__form__link {
    padding: 27px 66px 27px 27px;
    -webkit-transition: .3s border-color;
    transition: .3s border-color;
  }
  .p-app__form__link::before {
    margin-right: 8px;
  }
  .p-app__form__link::after {
    width: 57px;
    height: 57px;
    -webkit-transition: .3s border-color;
    transition: .3s border-color;
  }
  .p-app__form__link:hover {
    border-color: #e00028;
  }
  .p-app__form__link:hover::after {
    border-color: #e00028;
  }
  .p-document__button__outer {
    padding: 42px 90px;
    border-radius: 6px;
  }
  .p-document__button {
    width: 400px;
    max-width: inherit;
    border: 3px solid #e00028;
    -webkit-transition: .3s border, .3s background-color, .3s color;
    transition: .3s border, .3s background-color, .3s color;
  }
  .p-document__button:hover {
    opacity: 1;
    border-color: #dedede;
    background-color: #fff;
    color: #e00028;
  }
  .p-document__button:hover::after {
    color: #e00028;
  }
  .p-document__button[target="_blank"]:hover::after {
    background-image: url(/files/user/assets/images/common/symbol-blank.svg?v=1628129453);
  }
  .p-document__button--download:hover::after {
    background-image: url(/files/user/assets/images/common/symbol-download.svg?v=1628129453);
  }
  .p-document__material__item {
    width: 31%;
  }
  .p-document__material__item:not(:nth-child(4n+1)) {
    margin-left: 3.5%;
  }
  .p-document__material__item:nth-child(n+5) {
    margin-top: 42px;
  }
  .p-document__material__picture {
    padding: 24px 24px 40px;
    -webkit-transition: .3s border-color;
    transition: .3s border-color;
  }
  .p-document__material__picture::after {
    -webkit-transition: .3s background-color;
    transition: .3s background-color;
  }
  .p-document__material__link:hover .p-document__material__picture {
    border-color: #e00028;
  }
  .p-document__material__link:hover .p-document__material__picture::after {
    background-color: #e00028;
  }
  .p-document__material__picture__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 175px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-document__material__picture__inner.-file::before {
    width: 80px;
    height: 100px;
  }
  .p-document__material__title {
    -webkit-transition: .3s color;
    transition: .3s color;
  }
  .p-document__material__link:hover .p-document__material__title {
    color: #e00028;
  }
  .p-document__report__heading__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: -30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-document__report__heading {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .p-document__report__heading--sub {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-document__report__item {
    margin-top: 8px;
  }
  .p-document__report__label {
    margin-right: 17px;
  }
  .p-document__report__link {
    height: 90px;
    padding: 16px 32px;
    -webkit-transition: .3s box-shadow, .3s background-color;
    transition: .3s box-shadow, .3s background-color;
  }
  .p-document__report__link::after {
    -webkit-transition: .3s background-color;
    transition: .3s background-color;
  }
  .p-document__report__link:hover {
    -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, .14);
            box-shadow: 0 3px 12px rgba(0, 0, 0, .14);
    background-color: #fff;
  }
  .p-document__report__link:hover::after {
    background-color: #e00028;
    background-image: url(/files/user/assets/images/common/symbol-download.svg?v=1628129453);
  }
  .p-document__report__link[href$=".zip"]:hover::after, .p-document__report__link.-file:hover::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.918%22%20height%3D%2224%22%20viewBox%3D%220%200%2019.918%2024%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_416%22%20data-name%3D%22%E3%83%91%E3%82%B9%20416%22%20d%3D%22M57.828%2C5.865%2C52.728.257A.784.784%2C0%2C0%2C0%2C52.148%2C0H40.932A2.825%2C2.825%2C0%2C0%2C0%2C38.11%2C2.823V21.177A2.825%2C2.825%2C0%2C0%2C0%2C40.932%2C24H55.208a2.826%2C2.826%2C0%2C0%2C0%2C2.82-2.823V6.392A.784.784%2C0%2C0%2C0%2C57.828%2C5.865ZM51.913%2C3.279%2C54.4%2C6.039l.071.079H51.913Zm3.531%2C17.9a.236.236%2C0%2C0%2C1-.236.236H40.932a.236.236%2C0%2C0%2C1-.236-.236V2.823a.236.236%2C0%2C0%2C1%2C.236-.236h3.621v.225h-.7a.7.7%2C0%2C1%2C0%2C0%2C1.406h.7V5.625h-.7a.7.7%2C0%2C1%2C0%2C0%2C1.406h.7V8.437h-.7a.7.7%2C0%2C1%2C0%2C0%2C1.406h.7V11.25h-.7a.7.7%2C0%2C1%2C0%2C0%2C1.406h.7v2.813h-.7a.7.7%2C0%2C0%2C0-.7.7v2.344a2.109%2C2.109%2C0%2C1%2C0%2C4.219%2C0V16.172a.7.7%2C0%2C0%2C0-.7-.7h-.7V14.062h.7a.7.7%2C0%2C1%2C0%2C0-1.406h-.7V11.25h.7a.7.7%2C0%2C1%2C0%2C0-1.406h-.7V8.437h.7a.7.7%2C0%2C1%2C0%2C0-1.406h-.7V5.625h.7a.7.7%2C0%2C1%2C0%2C0-1.406h-.7V2.587h3.369V6.9a1.805%2C1.805%2C0%2C0%2C0%2C1.8%2C1.8h4.315Zm-9.485-4.3v1.641a.7.7%2C0%2C0%2C1-1.406%2C0V16.875Z%22%20transform%3D%22translate(-38.11)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  }
  .p-hubspot .hs-submit {
    margin-top: 42px;
  }
  .p-hubspot .submitted-message > p {
    margin: 16px 0;
  }
  .p-hubspot blockquote {
    padding: 0 40px 20px;
  }
  .p-hubspot .hs-form-field + .hs-form-field {
    margin-bottom: 42px;
  }
  .p-hubspot .form-columns-2 .hs-form-field {
    width: 320px !important;
  }
  .p-hubspot .form-columns-2 .hs-form-field + .hs-form-field {
    margin-left: 45px;
  }
  .p-hubspot .inputs-list {
    margin-bottom: -10px;
  }
  .p-hubspot .hs-form-checkbox, .p-hubspot .hs-form-booleancheckbox {
    margin-bottom: 10px;
  }
  .p-hubspot .hs-form-radio {
    margin-bottom: 10px;
  }
  .p-hubspot .hs-dateinput {
    width: 250px;
  }
  .p-hubspot .hs-dateinput input {
    padding: 18px 16px;
  }
  .-no-login.l-container--huge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding-top: 102px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .-no-login .l-header__inner {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .-no-login .l-header__button__link::after {
    width: 25px;
  }
  .p-login {
    padding: 58px 0;
  }
  .p-login__form {
    width: 400px;
  }
  .p-login__form__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .p-login__form__submit {
    width: 100%;
    max-width: inherit;
  }
  .p-login__form__reminder__link {
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .p-login__form__reminder__link:hover {
    opacity: .7;
  }
  .p-top__hero {
    margin-bottom: 100px !important;
  }
  .p-top__hero::before {
    bottom: 190px;
    left: 34%;
    width: 1592px;
    height: 685px;
  }
  .p-top__hero__item {
    width: 1000px;
    height: 382px;
    -webkit-transition: .6s padding;
    transition: .6s padding;
  }
  .p-top__hero__item img {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
    max-width: 100%;
    -webkit-transition: .3s transform linear;
    transition: .3s transform linear;
  }
  .p-top__hero__item.slick-current img, .p-top__hero__item.is-active-next img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .p-top__hero__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-top__hero__picture--sp {
    display: none !important;
  }
  .p-top__hero .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-top__hero .slick-arrow {
    width: 80px;
    height: 80px;
  }
  .p-top__hero .slick-prev {
    left: calc(50% - 560px);
  }
  .p-top__hero .slick-next {
    right: calc(50% - 560px);
  }
  .p-top__hero .slick-dots {
    bottom: -40px;
  }
  .p-top__hero .slick-dots li {
    margin: 0 6px;
  }
  .p-top__news {
    margin: 60px auto 100px;
  }
  .p-top__news__heading__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top__news__heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-top__news__heading--sub {
    margin-top: 4px;
    margin-left: 16px;
  }
  .p-top__news__heading__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
  }
  .p-top__news__heading__link::after {
    width: 40px;
    height: 40px;
    margin-left: 14px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-top__news__heading__link:hover {
    opacity: .7;
  }
  .p-top__news__item + .p-top__news__item {
    margin-top: 8px;
  }
  .p-top__news__link {
    padding: 25px 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-transition: .3s box-shadow, .3s background-color;
    transition: .3s box-shadow, .3s background-color;
  }
  .p-top__news__link::after {
    margin-left: auto;
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-transition: .3s background-color, .3s color;
    transition: .3s background-color, .3s color;
  }
  .p-top__news__link[target="_blank"]:hover::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20664%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%20340%22%20d%3D%22M.707%2010A.708.708%200%20010%209.293v-8.3A.708.708%200%2001.707.286h2.646a.707.707%200%20010%201.414H1.414v6.888h6.888V6.65a.707.707%200%20011.414%200v2.646a.708.708%200%2001-.705.707h-8.3z%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20617%22%20transform%3D%22translate(4.187)%22%20fill%3D%22%23fff%22%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201023%22%20width%3D%226.85%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(-45%205.847%202.422)%22%2F%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201024%22%20width%3D%224.717%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(90%202.623%202.907)%22%2F%3E%3Crect%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201025%22%20width%3D%224.717%22%20height%3D%221.371%22%20rx%3D%22.685%22%20transform%3D%22rotate(180%202.764%20.828)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  }
  .p-top__news__link.-file:hover::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_543%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20543%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.921%22%20height%3D%2224%22%20viewBox%3D%220%200%2019.921%2024%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_336%22%20data-name%3D%22%E3%83%91%E3%82%B9%20336%22%20d%3D%22M130.042%2C60a2.826%2C2.826%2C0%2C0%2C1-2.822-2.823V38.823A2.826%2C2.826%2C0%2C0%2C1%2C130.042%2C36h11.216a.784.784%2C0%2C0%2C1%2C.58.257l5.1%2C5.608a.783.783%2C0%2C0%2C1%2C.2.527V57.177A2.826%2C2.826%2C0%2C0%2C1%2C144.318%2C60Zm0-21.413a.236.236%2C0%2C0%2C0-.236.236V57.177a.236.236%2C0%2C0%2C0%2C.236.236h14.276a.236.236%2C0%2C0%2C0%2C.236-.236V44.7h-4.315a1.805%2C1.805%2C0%2C0%2C1-1.8-1.8V38.587Zm13.536%2C3.531-2.555-2.839v2.839Z%22%20transform%3D%22translate(-127.22%20-36)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  }
  .p-top__news__link:hover {
    -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, .14);
            box-shadow: 0 3px 12px rgba(0, 0, 0, .14);
    background-color: #fff;
  }
  .p-top__news__link:hover::after {
    background-color: #e00028;
    color: #fff;
  }
  .p-top__news__date {
    margin-top: 8px;
    margin-right: 20px;
  }
  .p-top__news__label {
    width: 163px;
    margin-top: 10px;
    margin-right: 20px;
  }
  .p-top__news__title {
    margin-top: 6px;
    margin-right: 16px;
  }
  .p-top__news__more {
    display: none;
  }
  .p-top__contents__item {
    width: 31.2%;
  }
  .p-top__contents__item:not(:nth-child(3n+1)) {
    margin-left: 3.2%;
  }
  .p-top__contents__item:nth-child(n+4) {
    margin-top: 3.2%;
  }
  .p-top__contents__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 35px 30px 18px 30px;
    min-height: 170px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: .3s border-color;
    transition: .3s border-color;
  }
  .p-top__contents__link::after {
    width: 60px;
    height: 60px;
    font-size: 18px;
    font-size: 1.8rem;
    -webkit-transition: .3s border-color;
    transition: .3s border-color;
  }
  .p-top__contents__link:hover {
    border-color: #e00028;
  }
  .p-top__contents__link:hover::after {
    border-color: #e00028;
  }
  .p-top__contents__symbol {
    height: 50px;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .p-top__contents__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 21px;
    margin-right: 50px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top__contents__info__title {
    margin-top: auto;
  }
}

@media screen and (max-width: 767px) {
  body.is-lock {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .is-pc {
    display: none;
  }
  .l-breadcrumb {
    display: none;
  }
  .l-container--huge {
    padding-top: 70px;
  }
  .l-container--large {
    width: 100%;
  }
  .l-container--middle {
    width: 90%;
    margin: 0 5%;
  }
  .l-container--single {
    width: 100%;
  }
  .l-container--main {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }
  .l-container--side {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }
  .l-footer {
    margin-top: 120px;
  }
  .l-footer__contact {
    padding: 0 8%;
  }
  .l-footer__contact__item + .l-footer__contact__item {
    border-top: 1px solid #dedede;
  }
  .l-footer__contact__link {
    display: block;
    padding: 40px 0;
  }
  .l-footer__contact__link::after {
    width: 48px;
    height: 48px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
  }
  .l-footer__contact__title--sub {
    margin-bottom: 5px;
  }
  .l-footer__floor {
    padding: 70px 8% 130px;
  }
  .l-footer__nav__item + .l-footer__nav__item {
    margin-top: 12px;
  }
  .l-footer__copyright {
    margin-top: 60px;
  }
  .l-footer__pagetop {
    right: 4%;
    width: 60px;
    height: 60px;
  }
  .l-footer__pagetop::before {
    width: 10px;
    height: 10px;
    margin-top: 4px;
    border-top: 3px solid #e00028;
    border-right: 3px solid #e00028;
  }
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
  }
  .l-header__inner {
    position: relative;
    padding: 10px 4%;
    background-color: #fff;
  }
  .l-header__logo {
    width: 57%;
    margin-right: auto;
  }
  .l-header__subnav {
    margin-top: 40px;
  }
  .l-header__subnav__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-header__subnav__item {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .l-header__subnav__item:not(:last-child) {
    margin-right: 9%;
  }
  .l-header__subnav__item.has-item {
    position: relative;
    display: none;
  }
  .l-header__subnav__item.sp {
    display: block;
  }
  .l-header__nav__check {
    position: absolute;
    z-index: -1;
  }
  .l-header__nav__outer {
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    width: 100%;
    max-height: 0;
    overflow-y: scroll;
    padding: 30px 8% 40px;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: .3s opacity ease-in-out, .3s max-height ease-in-out;
    transition: .3s opacity ease-in-out, .3s max-height ease-in-out;
  }
  .l-header__nav__check:checked + .l-header__nav__outer {
    opacity: 1;
    visibility: visible;
    height: calc(100vh - 100%);
    max-height: calc(100vh - 100%);
  }
  .l-header__nav {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .l-header__nav__item {
    border-bottom: 1px solid #dedede;
    background-color: #fff;
  }
  .l-header__nav__item:first-child {
    border-top: 1px solid #dedede;
  }
  .l-header__nav__item.has-item {
    position: relative;
  }
  .l-header__nav__link, .l-header__nav__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 6% 15px 0;
    letter-spacing: 0.02em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-header__nav__link.-nolink {
    padding: 19px 6% 19px 0;
    color: rgba(51, 51, 51, .5);
    font-weight: 500;
    line-height: 1.1;
  }
  .l-header__nav__link::after {
    margin-left: 20px;
    color: #e00028;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.8rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    content: "→";
  }
  .l-header__nav__label::after {
    color: #666;
    font-weight: 700;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    content: "＋";
  }
  .l-header__nav__child__check:checked ~ .l-header__nav__label::after {
    margin-right: 3px;
    font-size: 24px;
    font-size: 2.4rem;
    content: "－";
  }
  .l-header__nav__child__check {
    position: absolute;
    top: 16px;
    left: 6%;
    z-index: -1;
  }
  .l-header__nav__child {
    display: none;
    background-color: #f4f6f7;
  }
  .l-header__nav__child__check:checked ~ .l-header__nav__child {
    display: block;
  }
  .l-header__nav__child__item {
    border-top: 1px solid #dedede;
  }
  .l-header__nav__child__link {
    padding: 15px 6%;
  }
  .l-header__nav__child__link::after {
    margin-left: 20px;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .l-header__nav__logout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 72px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-header__nav__logout__button {
    display: block;
    position: relative;
    width: 54%;
    max-width: 240px;
    margin: 0 auto;
    padding: 15px 10px;
    border-radius: 100vw;
    background-color: #e00028;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.1;
    text-align: center;
  }
  .l-header__nav__logout__button::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 11%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 22px;
    height: 20px;
    background-image: url(/files/user/assets/images/common/symbol-logout.svg?v=1628129454);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    content: "";
  }
  .l-header__button {
    margin-right: 13px;
  }
  .l-header__button__link {
    padding: 12px 10px;
    border-radius: 6px;
    font-size: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-header__button__link::after {
    width: 29px;
    height: 26px;
  }
  .l-header__menu {
    display: block;
    position: relative;
    width: calc(7% + 20px);
    max-width: 5em;
    height: 44px;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .l-header__menu__bar {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    max-width: 3em;
    height: 4px;
    margin-left: 0;
    border-radius: 2px;
    background-color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    content: "";
  }
  .c-anchor {
    margin: 42px 0 80px;
    border: 3px solid #dedede;
    border-radius: 6px;
  }
  .c-anchor__item + .c-anchor__item {
    border-top: 1px solid #dedede;
  }
  .c-anchor__link {
    padding: 16px 5%;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-anchor__link::before {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    margin-right: 8px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .c-anchor__link::after {
    top: 21px;
    left: calc(5% + 6px);
    width: 8px;
    height: 8px;
  }
  .c-button, .c-button--return, .c-button--large, .p-hubspot .hs-submit .hs-button.primary, .c-button--variable {
    width: 70%;
  }
  .c-button + .c-button, .c-button--return + .c-button, .c-button--large + .c-button, .p-hubspot .hs-submit .hs-button.primary + .c-button, .c-button--variable + .c-button, .c-button + .c-button--return, .c-button--return + .c-button--return, .c-button--large + .c-button--return, .p-hubspot .hs-submit .hs-button.primary + .c-button--return, .c-button--variable + .c-button--return, .c-button + .c-button--large, .c-button--return + .c-button--large, .c-button--large + .c-button--large, .p-hubspot .hs-submit .hs-button.primary + .c-button--large, .c-button--variable + .c-button--large, .p-hubspot .hs-submit .c-button + .hs-button.primary, .p-hubspot .hs-submit .c-button--return + .hs-button.primary, .p-hubspot .hs-submit .c-button--large + .hs-button.primary, .p-hubspot .hs-submit .hs-button.primary + .hs-button.primary, .p-hubspot .hs-submit .c-button--variable + .hs-button.primary, .c-button + .c-button--variable, .c-button--return + .c-button--variable, .c-button--large + .c-button--variable, .p-hubspot .hs-submit .hs-button.primary + .c-button--variable, .c-button--variable + .c-button--variable {
    margin-top: 20px;
  }
  .c-button__outer {
    margin: 42px auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-button--return {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
  .c-button--large, .p-hubspot .hs-submit .hs-button.primary {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .c-button--variable {
    width: auto;
    max-width: 100%;
    min-width: 70%;
  }
  .c-column {
    margin: 42px 0;
  }
  .c-column__item + .c-column__item {
    margin-top: 24px;
  }
  .c-column-article {
    margin: 0 0 60px;
  }
  .c-faq {
    margin: 40px 0;
  }
  .c-faq__item + .c-faq__item {
    margin-top: 28px;
  }
  .c-faq__question {
    padding: 20px;
  }
  .c-faq__question__inner::before {
    margin-top: 6px;
    margin-right: 20px;
  }
  .c-faq__question::after {
    width: 30px;
    height: 30px;
    margin-left: 20px;
  }
  .c-faq__answer {
    padding: 20px;
  }
  .c-faq__answer::before {
    margin-top: 6px;
    margin-right: 20px;
  }
  .c-form__status {
    margin: 50px 0 40px;
  }
  .c-form__status__item {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .c-form__status__item:not(:last-child) {
    padding-right: 45px;
  }
  .c-form__status__item:not(:last-child)::after {
    width: 45px;
  }
  .c-form {
    margin-bottom: 120px;
  }
  .c-form__item:not(:last-child), .p-hubspot fieldset:not(:last-child) {
    margin-bottom: 32px;
  }
  .c-form__item__column + .c-form__item__column {
    margin-top: 32px;
  }
  .c-form-pulldown__outer, .p-hubspot .hs-fieldtype-select .input {
    width: 100%;
  }
  .c-form-pulldown, .p-hubspot .hs-fieldtype-select .input select {
    padding: 18px 58px 18px 20px;
  }
  .c-form-file__outer {
    width: 100%;
    padding: 20px;
  }
  .c-form-privacy {
    margin: 80px 0 32px;
  }
  .c-form-privacy__title {
    margin-bottom: 4px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-form-privacy__box, .p-hubspot blockquote {
    height: 240px;
  }
  .c-form-privacy__box::-webkit-scrollbar, .p-hubspot blockquote::-webkit-scrollbar {
    width: 12px;
  }
  .c-form-privacy__box::-webkit-scrollbar-thumb, .p-hubspot blockquote::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #ccc;
  }
  .c-form-privacy__box::-webkit-scrollbar-track, .p-hubspot blockquote::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #f4f6f7;
  }
  .c-form-privacy__box__inner {
    padding: 0 20px;
  }
  .c-form-privacy__box__inner .c-heading--lv4:first-child, .c-form-privacy__box__inner .c-article h4:first-child, .c-article .c-form-privacy__box__inner h4:first-child, .c-form-privacy__box__inner body.cke_editable h4:first-child, body.cke_editable .c-form-privacy__box__inner h4:first-child, .c-form-privacy__box__inner .p-hubspot blockquote strong:first-child, .p-hubspot blockquote .c-form-privacy__box__inner strong:first-child, .c-form-privacy__box__inner .p-hubspot blockquote h4:first-child, .p-hubspot blockquote .c-form-privacy__box__inner h4:first-child, .c-form-privacy__box__inner .p-wysiwyg h4:first-child, .p-wysiwyg .c-form-privacy__box__inner h4:first-child {
    margin-top: 20px;
  }
  .c-form-privacy__box__inner .c-text, .c-form-privacy__box__inner .p-hubspot .submitted-message > p, .p-hubspot .c-form-privacy__box__inner .submitted-message > p, .c-form-privacy__box__inner .p-hubspot blockquote div, .p-hubspot blockquote .c-form-privacy__box__inner div, .c-form-privacy__box__inner .p-wysiwyg, .c-form-privacy__box__inner body.cke_editable, .c-form-privacy__box__inner .p-wysiwyg p:not([class]), .p-wysiwyg .c-form-privacy__box__inner p:not([class]), .c-form-privacy__box__inner body.cke_editable p:not([class]), body.cke_editable .c-form-privacy__box__inner p:not([class]) {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .c-form-privacy__check__outer {
    margin: 42px 3% 0 6%;
  }
  .c-form-privacy__check__label {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-form__thanks {
    margin-bottom: 120px;
  }
  .c-heading--lv2, .c-article h2, body.cke_editable h2, .p-hubspot blockquote h2, .p-wysiwyg h2 {
    margin: 50px 0 60px;
    padding-top: 36px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .c-heading--lv3, .c-article h3, body.cke_editable h3, .p-hubspot blockquote h3, .p-wysiwyg h3 {
    margin: 32px 0;
    padding-top: 20px;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .c-heading--lv4, .c-article h4, body.cke_editable h4, .p-hubspot blockquote strong, .p-hubspot blockquote h4, .p-wysiwyg h4 {
    margin: 32px 0 14px;
  }
  .c-heading--lv4::before, .c-article h4::before, body.cke_editable h4::before, .p-hubspot blockquote strong::before, .p-hubspot blockquote h4::before, .p-wysiwyg h4::before {
    margin-top: 9px;
  }
  .c-list--notes {
    margin: 16px 0;
  }
  .c-table + .c-list--notes, .c-table--scroll__outer + .c-list--notes {
    margin-top: -26px;
  }
  .c-list--notes li::before {
    margin-right: 6px;
  }
  .c-media {
    margin: 42px 0;
  }
  .c-pageHeader {
    min-height: 140px;
    padding: 24px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-pageHeader__heading {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
  }
  .c-pageHeader__heading--sub {
    margin-top: 3px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .c-pager {
    margin: 40px 0;
  }
  .c-pager__display {
    position: relative;
    width: 67%;
    margin: 0 calc(16.5% - 40px);
  }
  .c-pager__display__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 20px;
    border: 3px solid #dedede;
    border-radius: 100vw;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    pointer-events: none;
  }
  .c-pager__display__label::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    border-bottom: 2px solid #e00028;
    border-right: 2px solid #e00028;
    border-radius: 2px;
    content: "";
  }
  .c-pager__display__pulldown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 100vw;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .c-pager__item {
    display: none;
  }
  .c-pager__control {
    display: block;
  }
  .c-pager__control.-prev {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .c-picture__caption {
    margin-top: 6px;
    padding: 0 10px;
  }
  .c-picture__caption a::after {
    margin-left: 4px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .c-tab, .c-tab-link {
    margin: 42px 0 27px;
  }
  .c-tab__item {
    width: 48%;
    margin-bottom: 4%;
  }
  .c-tab__item:nth-child(2n) {
    margin-left: 4%;
  }
  .c-tab-link__item:nth-child(2n) {
    margin-left: 4%;
  }
  .c-tab-link__item {
    width: 48%;
    margin-bottom: 15px;
  }
  .c-tab-link__link {
    width: 100%;
  }
  .c-table__item dt {
    padding: 17px 4%;
  }
  .c-table__item dd {
    padding: 17px 4%;
  }
  .c-table--scroll__outer {
    overflow-x: scroll;
    padding-bottom: 16px;
  }
  .c-table--scroll__outer::-webkit-scrollbar {
    height: 12px;
  }
  .c-table--scroll__outer::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #ccc;
  }
  .c-table--scroll__outer::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #f4f6f7;
  }
  .c-table--scroll {
    width: 1000px;
  }
  .c-text, .p-hubspot .submitted-message > p, .p-hubspot blockquote div, .p-wysiwyg, body.cke_editable, .p-wysiwyg p:not([class]), body.cke_editable p:not([class]) {
    margin: 14px 0 36px;
  }
  .c-topics__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-topics__item + .c-topics__item {
    margin-top: 8px;
  }
  .c-topics__date {
    margin-top: 2px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-topics__title {
    width: 100%;
    margin-top: 4px;
  }
  .c-topics-card__item {
    width: 48%;
  }
  .c-topics-card__item:nth-child(2n) {
    margin-left: 4%;
  }
  .c-topics-card__item:nth-child(n+3) {
    margin-top: 4%;
  }
  .c-topics-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .c-video {
    margin: 80px 0;
  }
  .p-app__form__list {
    margin-top: 50px;
  }
  .p-app__form__item {
    width: 48%;
    min-height: 220px;
  }
  .p-app__form__item:nth-child(2n) {
    margin-left: 4%;
  }
  .p-app__form__item:nth-child(n+3) {
    margin-top: 4%;
  }
  .p-app__form__link {
    padding: 26% 14%;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-app__form__link::after {
    width: 40px;
    height: 40px;
  }
  .p-app__form__title {
    width: 100%;
    margin-top: 12px;
  }
  .p-document__button__outer {
    margin: 32px -5.6%;
    padding: 42px 5.6%;
  }
  .p-document__button {
    width: 100%;
  }
  .p-document__material__item {
    width: 48%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .p-document__material__item:nth-child(2n) {
    margin-left: 4%;
  }
  .p-document__material__item:nth-child(n+3) {
    margin-top: 20px;
  }
  .p-document__material__picture {
    padding: 15% 15% 25%;
  }
  .p-document__material__picture__inner {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
  }
  .p-document__material__picture__inner.-file::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 48px;
    height: 60px;
  }
  .p-document__material__picture img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .p-document__material__title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .p-document__report__heading__outer {
    margin-bottom: -20px;
  }
  .p-document__report__heading {
    margin-bottom: 20px;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .p-document__report__heading--sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-document__report__item {
    margin-top: 10px;
  }
  .p-document__report__label {
    margin-right: 4px;
  }
  .p-document__report__link {
    min-height: 80px;
    padding: 20px 15px;
  }
  .p-hubspot .hs-submit {
    margin-top: 32px;
  }
  .p-hubspot .submitted-message > p {
    margin: 14px 0;
  }
  .p-hubspot blockquote {
    padding: 0 20px;
  }
  .p-hubspot .hs-form-field + .hs-form-field {
    margin-bottom: 32px;
  }
  .p-hubspot .form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none !important;
  }
  .p-hubspot .form-columns-2 .hs-form-field + .hs-form-field {
    margin-top: 32px;
  }
  .p-hubspot .inputs-list {
    margin-bottom: -15px;
  }
  .p-hubspot .hs-form-checkbox, .p-hubspot .hs-form-booleancheckbox {
    margin-bottom: 15px;
  }
  .p-hubspot .hs-form-radio {
    margin-bottom: 15px;
  }
  .p-hubspot .hs-dateinput {
    width: 100%;
  }
  .p-hubspot .hs-dateinput input {
    padding: 18px 20px;
  }
  .-no-login .l-header__button {
    margin-right: 0;
  }
  .-no-login .l-header__button__link {
    padding: 9px 16px 9px 20px;
    border-radius: 100vw;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: center;
  }
  .-no-login .l-header__button__link::after {
    margin-left: 12px;
  }
  .p-login {
    padding: 40px 5.4%;
    min-height: 60vh;
  }
  .p-login__form {
    width: 100%;
  }
  .p-login__form__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .p-login__form__submit {
    width: 100%;
  }
  .p-top .l-container--middle {
    width: 84%;
    margin: 0 8%;
  }
  .p-top__hero::before {
    bottom: -48px;
    left: 42%;
    width: 404px;
    height: 174px;
    background-size: 100% auto;
  }
  .p-top__hero__item {
    width: 100vw;
    min-height: 300px;
    height: 80vw;
  }
  .p-top__hero__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-top__hero__picture--pc {
    display: none !important;
  }
  .p-top__hero .slick-arrow {
    top: inherit;
    bottom: -10px;
    -webkit-transform: none;
            transform: none;
    width: 60px;
    height: 60px;
  }
  .p-top__hero .slick-prev {
    left: inherit;
    right: calc(8% + 72px);
  }
  .p-top__hero .slick-next {
    right: 8%;
  }
  .p-top__hero .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    margin-top: 25px;
    padding: 0 8%;
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-top__hero .slick-dots li {
    margin: 0;
  }
  .p-top__hero .slick-dots li + li {
    margin-left: 12px;
  }
  .p-top__news {
    margin: 42px auto 70px;
  }
  .p-top__news__heading__outer {
    margin-bottom: 24px;
  }
  .p-top__news__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top__news__heading--sub {
    margin-top: 5px;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .p-top__news__heading__link {
    display: none;
  }
  .p-top__news__item + .p-top__news__item {
    margin-top: 10px;
  }
  .p-top__news__link {
    position: relative;
    padding: 20px 16% 20px 5%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-top__news__link::after {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 700;
  }
  .p-top__news__date {
    margin-right: 12px;
  }
  .p-top__news__label {
    width: 64%;
    max-width: 163px;
  }
  .p-top__news__title {
    width: 100%;
    margin-top: 10px;
  }
  .p-top__news__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 42px;
    letter-spacing: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-top__news__more__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-top__news__more__link::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    margin-left: 14px;
    border-radius: 100%;
    background-color: #e00028;
    color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    content: "→";
  }
  .p-top__contents__item {
    width: 48%;
  }
  .p-top__contents__item:nth-child(2n) {
    margin-left: 4%;
  }
  .p-top__contents__item:nth-child(n+3) {
    margin-top: 4%;
  }
  .p-top__contents__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 180px;
    padding: 14% 14% 30%;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-top__contents__link::after {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-top__contents__info__title {
    margin-top: 14px;
  }
  .p-top__contents__info__description {
    margin-top: 5px;
  }
}

/*# sourceMappingURL=maps/styles.css.map */