@charset "UTF-8";
/* config.scss
-------------------------------------------------------*/
:root {
  --color-main: #1687E2;
  --color-sub: #F5F58D;
  --color-sub2: #FDFFBE;
  --color-bg: #F8F8F8;
  --color-txt: #131313;
  --color-shadow: rgba(0, 0, 0, 0.16);
  --font-base: "Zen Kaku Gothic New", sans-serif;
  --font-sub: "Zen Maru Gothic", sans-serif;
  --font-num: "Roboto", sans-serif;
  --wrap-xs: 800px;
  --wrap-s: 1000px;
  --wrap-mm: 1100px;
  --wrap-m: 1200px;
  --wrap-l: 1400px;
  --wrap-base: calc(100% - 40px);
  --wrap-base-pc: calc(100% - 60px);
  --wrap-base2: calc(100% - 100px);
  --fw-200: 200;
  --fw-400: 400;
  --fw-500: 500;
  --fw-700: 700;
  --fw-900: 900;
  --lineHeight-xs: 1.2;
  --lineHeight-s: 1.3;
  --lineHeight-m: 1.5;
  --lineHeight-mm: 1.6;
  --lineHeight-l: 1.8;
  --lineHeight-xl: 2;
  --trans-min02: all 0.2s ease-out;
  --trans-min03: all 0.3s ease-out;
  --trans-min04: all 0.4s ease-out;
  --trans-min05: all 0.5s ease-out;
  --trans-min06: all 0.6s ease-out;
  --trans-min07: all 0.7s ease-out;
  --trans-min08: all 0.8s ease-out;
  --trans-min09: all 0.9s ease-out;
  --trans-min1: all 1s ease-out;
  --img-zoom: scale(1.1);
  --img-zoomout: scale(0.88);
  --header-height-pc: 139px;
  --header-height-sp: 50px;
}

/* /_config.scss
-------------------------------------------------------*/
/* _media.scss 
-------------------------------------------------------*/
/* /_media.scss
-------------------------------------------------------*/
/* _inner.scss 
-------------------------------------------------------*/
/* /_inner.scss
-------------------------------------------------------*/
/* _font.scss 
-------------------------------------------------------*/
/* /_font.scss
-------------------------------------------------------*/
/* _over.scss
-------------------------------------------------------*/
/* /_over.scss
-------------------------------------------------------*/
/* _other.scss
-------------------------------------------------------*/
/* /_other.scss
  -------------------------------------------------------*/
/* _animation.scss 
-------------------------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes popup {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes blur {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes blur {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes scrollToLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@keyframes scrollToLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
/* inview */
.js_inview {
  opacity: 0;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transform-origin: center;
          transform-origin: center;
  --inview-delay-base: .16s;
}

.js_inview:not([data-inview]),
.js_inview[data-inview=lift] {
  -webkit-transform: translateY(22px) scale(0.985) rotate(-0.4deg);
          transform: translateY(22px) scale(0.985) rotate(-0.4deg);
}

.js_inview-show {
  -webkit-animation: inview-lift 0.75s cubic-bezier(0.2, 0.85, 0.3, 1.05) forwards;
          animation: inview-lift 0.75s cubic-bezier(0.2, 0.85, 0.3, 1.05) forwards;
}

.js_inview[data-inview=drift-left] {
  -webkit-transform: translate3d(-24px, 12px, 0) scale(0.985) rotate(-2deg);
          transform: translate3d(-24px, 12px, 0) scale(0.985) rotate(-2deg);
}

.js_inview-show[data-inview=drift-left] {
  -webkit-animation: inview-drift-left 0.82s cubic-bezier(0.2, 0.85, 0.3, 1.05) forwards;
          animation: inview-drift-left 0.82s cubic-bezier(0.2, 0.85, 0.3, 1.05) forwards;
}

.js_inview[data-inview=drift-right] {
  -webkit-transform: translate3d(24px, 12px, 0) scale(0.985) rotate(2deg);
          transform: translate3d(24px, 12px, 0) scale(0.985) rotate(2deg);
}

.js_inview-show[data-inview=drift-right] {
  -webkit-animation: inview-drift-right 0.82s cubic-bezier(0.2, 0.85, 0.3, 1.05) forwards;
          animation: inview-drift-right 0.82s cubic-bezier(0.2, 0.85, 0.3, 1.05) forwards;
}

.js_inview[data-inview=pop] {
  -webkit-transform: translateY(16px) scale(0.96) rotate(-0.6deg);
          transform: translateY(16px) scale(0.96) rotate(-0.6deg);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.js_inview-show[data-inview=pop] {
  -webkit-animation: inview-pop 0.78s cubic-bezier(0.2, 0.85, 0.32, 1.06) forwards;
          animation: inview-pop 0.78s cubic-bezier(0.2, 0.85, 0.32, 1.06) forwards;
}

.js_inview[data-inview=clip-left] {
  --inview-delay-base: 0s;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-filter: blur(1.5px);
          filter: blur(1.5px);
}

.js_inview-show[data-inview=clip-left] {
  -webkit-animation: inview-clip-left 0.7s cubic-bezier(0.18, 0.82, 0.34, 1.04) forwards;
          animation: inview-clip-left 0.7s cubic-bezier(0.18, 0.82, 0.34, 1.04) forwards;
}

.js_inview[data-inview=rise] {
  -webkit-transform: translateY(18px) scale(0.985);
          transform: translateY(18px) scale(0.985);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.js_inview-show[data-inview=rise] {
  -webkit-animation: inview-rise 0.78s cubic-bezier(0.2, 0.84, 0.32, 1.06) forwards;
          animation: inview-rise 0.78s cubic-bezier(0.2, 0.84, 0.32, 1.06) forwards;
  -webkit-animation-delay: calc(var(--inview-delay, 0s) + var(--inview-delay-base, 0s));
          animation-delay: calc(var(--inview-delay, 0s) + var(--inview-delay-base, 0s));
}

@media screen and (max-width: 768px) {
  .js_inview:not([data-inview]),
.js_inview[data-inview=lift] {
    -webkit-transform: translateY(18px) scale(0.99) rotate(-0.3deg);
            transform: translateY(18px) scale(0.99) rotate(-0.3deg);
  }
  .js_inview[data-inview=drift-left] {
    -webkit-transform: translate3d(-18px, 10px, 0) scale(0.99) rotate(-1.5deg);
            transform: translate3d(-18px, 10px, 0) scale(0.99) rotate(-1.5deg);
  }
  .js_inview[data-inview=drift-right] {
    -webkit-transform: translate3d(18px, 10px, 0) scale(0.99) rotate(1.5deg);
            transform: translate3d(18px, 10px, 0) scale(0.99) rotate(1.5deg);
  }
  .js_inview[data-inview=pop] {
    -webkit-transform: translateY(14px) scale(0.97) rotate(-0.4deg);
            transform: translateY(14px) scale(0.97) rotate(-0.4deg);
  }
  .js_inview[data-inview=clip-left] {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
  }
  .js_inview[data-inview=rise] {
    -webkit-transform: translateY(14px) scale(0.99);
            transform: translateY(14px) scale(0.99);
  }
}
@-webkit-keyframes inview-lift {
  0% {
    opacity: 0;
    -webkit-transform: translateY(22px) scale(0.985) rotate(-0.4deg);
            transform: translateY(22px) scale(0.985) rotate(-0.4deg);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-4px) scale(1.008) rotate(0.2deg);
            transform: translateY(-4px) scale(1.008) rotate(0.2deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes inview-lift {
  0% {
    opacity: 0;
    -webkit-transform: translateY(22px) scale(0.985) rotate(-0.4deg);
            transform: translateY(22px) scale(0.985) rotate(-0.4deg);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-4px) scale(1.008) rotate(0.2deg);
            transform: translateY(-4px) scale(1.008) rotate(0.2deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes inview-drift-left {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-24px, 12px, 0) scale(0.985) rotate(-2deg);
            transform: translate3d(-24px, 12px, 0) scale(0.985) rotate(-2deg);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  55% {
    opacity: 1;
    -webkit-transform: translate3d(6px, -4px, 0) scale(1.012) rotate(0.3deg);
            transform: translate3d(6px, -4px, 0) scale(1.012) rotate(0.3deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0);
            transform: translate3d(0, 0, 0) scale(1) rotate(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes inview-drift-left {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-24px, 12px, 0) scale(0.985) rotate(-2deg);
            transform: translate3d(-24px, 12px, 0) scale(0.985) rotate(-2deg);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  55% {
    opacity: 1;
    -webkit-transform: translate3d(6px, -4px, 0) scale(1.012) rotate(0.3deg);
            transform: translate3d(6px, -4px, 0) scale(1.012) rotate(0.3deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0);
            transform: translate3d(0, 0, 0) scale(1) rotate(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes inview-drift-right {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(24px, 12px, 0) scale(0.985) rotate(2deg);
            transform: translate3d(24px, 12px, 0) scale(0.985) rotate(2deg);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  55% {
    opacity: 1;
    -webkit-transform: translate3d(-6px, -4px, 0) scale(1.012) rotate(-0.3deg);
            transform: translate3d(-6px, -4px, 0) scale(1.012) rotate(-0.3deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0);
            transform: translate3d(0, 0, 0) scale(1) rotate(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes inview-drift-right {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(24px, 12px, 0) scale(0.985) rotate(2deg);
            transform: translate3d(24px, 12px, 0) scale(0.985) rotate(2deg);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  55% {
    opacity: 1;
    -webkit-transform: translate3d(-6px, -4px, 0) scale(1.012) rotate(-0.3deg);
            transform: translate3d(-6px, -4px, 0) scale(1.012) rotate(-0.3deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0);
            transform: translate3d(0, 0, 0) scale(1) rotate(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes inview-pop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px) scale(0.96) rotate(-0.6deg);
            transform: translateY(16px) scale(0.96) rotate(-0.6deg);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  45% {
    opacity: 1;
    -webkit-transform: translateY(-4px) scale(1.01) rotate(0.3deg);
            transform: translateY(-4px) scale(1.01) rotate(0.3deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  75% {
    -webkit-transform: translateY(1px) scale(0.994) rotate(0.1deg);
            transform: translateY(1px) scale(0.994) rotate(0.1deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes inview-pop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px) scale(0.96) rotate(-0.6deg);
            transform: translateY(16px) scale(0.96) rotate(-0.6deg);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  45% {
    opacity: 1;
    -webkit-transform: translateY(-4px) scale(1.01) rotate(0.3deg);
            transform: translateY(-4px) scale(1.01) rotate(0.3deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  75% {
    -webkit-transform: translateY(1px) scale(0.994) rotate(0.1deg);
            transform: translateY(1px) scale(0.994) rotate(0.1deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotate(0);
            transform: translateY(0) scale(1) rotate(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes inview-clip-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-filter: blur(1.5px);
            filter: blur(1.5px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
    -webkit-clip-path: inset(0 14% 0 0);
            clip-path: inset(0 14% 0 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes inview-clip-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-filter: blur(1.5px);
            filter: blur(1.5px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
    -webkit-clip-path: inset(0 14% 0 0);
            clip-path: inset(0 14% 0 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes inview-rise {
  0% {
    opacity: 0;
    -webkit-transform: translateY(18px) scale(0.985);
            transform: translateY(18px) scale(0.985);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-3px) scale(1.006);
            transform: translateY(-3px) scale(1.006);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes inview-rise {
  0% {
    opacity: 0;
    -webkit-transform: translateY(18px) scale(0.985);
            transform: translateY(18px) scale(0.985);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-3px) scale(1.006);
            transform: translateY(-3px) scale(1.006);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.features-panellist .features-panel {
  --inview-delay: 0s;
}
.features-panellist .features-panel:nth-child(2) {
  --inview-delay: .1s;
}
.features-panellist .features-panel:nth-child(3) {
  --inview-delay: .2s;
}

.recommended-panel {
  --inview-delay: 0s;
}
.recommended-panel:nth-of-type(2) {
  --inview-delay: .1s;
}
.recommended-panel:nth-of-type(3) {
  --inview-delay: .2s;
}

.price-panellist .price-panel {
  --inview-delay: 0s;
}
.price-panellist .price-panel:nth-child(2) {
  --inview-delay: .1s;
}
.price-panellist .price-panel:nth-child(3) {
  --inview-delay: .2s;
}

/* /_animation.scss
-------------------------------------------------------*/
/* _reset.scss
-------------------------------------------------------*/
/*! kiso.css v1.2.1 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
   * Includes `padding` and `border` in the element's specified dimensions.
   * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
   */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
   * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
   * @see https://waic.jp/translations/WCAG21/#visual-presentation
   */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
   * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
   * This controls the auto-adjustment feature to prevent unwanted resizing.
   */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
   * When creating a sticky footer, a minimum height is often required.
   * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
   */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1) {
  /*
   * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
   * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
   * @see https://html.spec.whatwg.org/#sections-and-headings
   */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
   * The `<search>` element is supported from Safari 17.
   * This prevents it from being displayed as an inline element in unsupported environments.
   */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
   * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
   * Therefore, when lang="en", this prevents the last line from ending with a single word.
   */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  -webkit-padding-start: unset;
          padding-inline-start: unset;
  /*
   * In Safari, using `list-style: none` prevents screen readers from announcing lists.
   * `list-style-type: ""` is used to hide markers without affecting accessibility.
   * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
   */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  -webkit-margin-start: unset;
          margin-inline-start: unset;
}

:where(pre) {
  /*
   * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
   * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
   */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {
  /*
   * Set a monospace font family referencing Tailwind.
   * @see https://tailwindcss.com/docs/font-family
   */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
   * Disables font ligatures for programming fonts (like Fira Code)
   * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
   */
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
   * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
   * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
   * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
   */
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
      * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
      * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
      */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
      * Not all printers support color, and users might print in grayscale.
      * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
      * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
      */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-webkit-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
   * While link underlines can be useful, they are often obstructive.
   * They are disabled by default.
   * If needed, restore them using `text-decoration-line: revert;`.
   */
  -webkit-text-decoration-line: unset;
          text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
   * While link underlines can be useful, they are often obstructive.
   * They are disabled by default.
   * If needed, restore them using `text-decoration-line: revert;`.
   */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
   * While link underlines can be useful, they are often obstructive.
   * They are disabled by default.
   * If needed, restore them using `text-decoration-line: revert;`.
   */
  -webkit-text-decoration-line: unset;
          text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button) {
  border: none;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

::-webkit-file-upload-button {
  /*
   * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
   * This ensures readability even for unstyled elements.
   * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
   */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input, select, textarea),
::file-selector-button {
  /*
   * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
   * This ensures readability even for unstyled elements.
   * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
   */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type=radio i], [type=checkbox i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type=search i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-moz-placeholder-shown)) {
  /*
   * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
   * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
   * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
   */
  direction: ltr;
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-ms-input-placeholder)) {
  /*
   * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
   * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
   * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
   */
  direction: ltr;
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:placeholder-shown)) {
  /*
   * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
   * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
   * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
   */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

::-webkit-file-upload-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

::-webkit-file-upload-button {
  /*
   * On iOS, double-tapping a button can cause zooming, which harms usability.
   * `touch-action: manipulation` is specified to disable zooming on double-tap.
   * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
   */
  touch-action: manipulation;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
   * On iOS, double-tapping a button can cause zooming, which harms usability.
   * `touch-action: manipulation` is specified to disable zooming on double-tap.
   * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
   */
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(:enabled)::-webkit-file-upload-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
   * Prevent fieldset from causing overflow.
   * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
   * @see https://github.com/twbs/bootstrap/issues/12359
   */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::-webkit-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

:-ms-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::-ms-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
   * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
   * Disabling block-direction scroll chaining is recommended.
   */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
   * These elements can be easily displayed by explicitly setting their `display` property.
   * To prevent them from appearing when not in an open state, they are forcibly hidden.
   */
  display: none !important;
}

:where(dialog) {
  /*
   * The max width and height of a `<dialog>` element are typically determined by the design.
   * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
   */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::-webkit-backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
   * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
   * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
   */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

@supports selector(::scroll-button(*)) {
  ::scroll-button(*) {
    /* Apply the same reset as for `<button>` elements. */
    border-width: 1px;
    border-style: solid;
    border-color: unset;
    border-radius: unset;
    background-color: unset;
    color: unset;
    font: unset;
    letter-spacing: unset;
    text-align: unset;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
  ::scroll-button(*):enabled {
    /* Make the scroll button indicate interactivity when enabled. */
    cursor: pointer;
  }
}
/* /_reset.scss
-------------------------------------------------------*/
/* _layout.scss
-------------------------------------------------------*/
/*base*/
/* コンテンツ幅 */
.ly-wrap_xs {
  width: var(--wrap-base-pc);
  margin: 0 auto;
  max-width: var(--wrap-xs);
}
@media screen and (max-width: 767px), print {
  .ly-wrap_xs {
    width: var(--wrap-base);
  }
}
.ly-wrap_s {
  width: var(--wrap-base-pc);
  margin: 0 auto;
  max-width: var(--wrap-s);
}
@media screen and (max-width: 767px), print {
  .ly-wrap_s {
    width: var(--wrap-base);
  }
}
.ly-wrap_ms {
  width: var(--wrap-base-pc);
  margin: 0 auto;
  max-width: var(--wrap-mm);
}
@media screen and (max-width: 767px), print {
  .ly-wrap_ms {
    width: var(--wrap-base);
  }
}
.ly-wrap_m {
  width: var(--wrap-base-pc);
  margin: 0 auto;
  max-width: var(--wrap-m);
}
@media screen and (max-width: 767px), print {
  .ly-wrap_m {
    width: var(--wrap-base);
  }
}
.ly-wrap_l {
  width: var(--wrap-base-pc);
  margin: 0 auto;
  max-width: var(--wrap-l);
}
@media screen and (max-width: 767px), print {
  .ly-wrap_l {
    width: var(--wrap-base);
  }
}
.ly-wrap_1920 {
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ly-wrap_sp {
    width: var(--wrap-base-pc);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 767px) {
  .ly-wrap_sp {
    width: var(--wrap-base);
  }
}
@media screen and (max-width: 768px) {
  .ly-wrap_spmax {
    width: 100%;
  }
}

/* 汎用コンテナー */
.ly-container {
  /* コンテナの横幅からギャップの合計値を引いたものをn等分する */
  --_column-width-calculated: calc(
      (100% - var(--_gap) * (var(--_column-max-count) - 1)) /
      var(--_column-max-count)
  );
  /* 最終的に適用される列の幅。
  * 理想の幅と最小幅を比較し、大きい方を採用します。
  * ただし、コンテナ全体の幅を超えることはありません。*/
  --_column-width: min(
      100%,
      max(var(--_column-min-width), var(--_column-width-calculated))
  );
  display: block grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--_column-width), 1fr));
  gap: var(--_gap);
}
:where(.ly-container--col1) {
  --_gap: 40px; /* gapの数値 */
  --_column-max-count: 1; /* 表示したい最大の列数 */
  --_column-min-width: 600px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
}
:where(.ly-container--col2) {
  --_gap: 40px; /* gapの数値 */
  --_column-max-count: 2; /* 表示したい最大の列数 */
  --_column-min-width: 400px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
}
:where(.ly-container--col3) {
  --_gap: 32px; /* gapの数値 */
  --_column-max-count: 3; /* 表示したい最大の列数 */
  --_column-min-width: 320px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
}
:where(.ly-container--col4) {
  --_gap: 32px; /* gapの数値 */
  --_column-max-count: 4; /* 表示したい最大の列数 */
  --_column-min-width: 240px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
}
.ly-container--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (min-width: 769px), print {
  .ly-container--center.ly-container--col2 .ly-container_item {
    width: calc((100% - 40px) / 2);
  }
  .ly-container--center.ly-container--col3 .ly-container_item {
    width: calc((100% - 64px) / 3);
  }
  .ly-container--center.ly-container--col4 .ly-container_item {
    width: calc((100% - 96px) / 4);
  }
}
@media screen and (max-width: 768px) {
  .ly-container {
    --_gap: 32px; /* gapの数値 */
  }
  .ly-container--col2Sp {
    display: block grid;
    --_gap: 24px; /* gapの数値 */
    --_column-max-count: 2; /* 表示したい最大の列数 */
    --_column-min-width: 140px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
  }
  .ly-container_item {
    width: 100%;
  }
}

/* パネル用コンテナー */
.ly-panelContainer {
  /* コンテナの横幅からギャップの合計値を引いたものをn等分する */
  --_column-width-calculated: calc(
      (100% - var(--_gap) * (var(--_column-max-count) - 1)) /
      var(--_column-max-count)
  );
  /* 最終的に適用される列の幅。
  * 理想の幅と最小幅を比較し、大きい方を採用します。
  * ただし、コンテナ全体の幅を超えることはありません。*/
  --_column-width: min(
      100%,
      max(var(--_column-min-width), var(--_column-width-calculated))
  );
  display: block grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--_column-width), 1fr));
  gap: var(--_gap);
}
.ly-panelContainer--col1 {
  --_gap: 32px; /* gapの数値 */
  --_column-max-count: 1; /* 表示したい最大の列数 */
  --_column-min-width: 600px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
}
.ly-panelContainer--col2 {
  --_gap: 32px; /* gapの数値 */
  --_column-max-count: 2; /* 表示したい最大の列数 */
  --_column-min-width: 400px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
}
.ly-panelContainer--col3 {
  --_gap: 24px; /* gapの数値 */
  --_column-max-count: 3; /* 表示したい最大の列数 */
  --_column-min-width: 320px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
}
.ly-panelContainer--col4 {
  --_gap: 16px; /* gapの数値 */
  --_column-max-count: 4; /* 表示したい最大の列数 */
  --_column-min-width: 240px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
}
@media screen and (max-width: 768px) {
  .ly-panelContainer {
    --_gap: 40px; /* gapの数値 */
  }
  .ly-panelContainer--col2Sp {
    --_gap: 24px; /* gapの数値 */
    --_column-max-count: 2; /* 表示したい最大の列数 */
    --_column-min-width: 140px; /* 各列が取りうる最小の幅。これより狭くなる場合は、列数が減って折り返します。 */
  }
}

/* 余白 */
.ly-margin_top_xxl {
  margin-top: 180px !important;
}
.ly-margin_top_xl {
  margin-top: 120px !important;
}
.ly-margin_top_lla {
  margin-top: 100px !important;
}
.ly-margin_top_la {
  margin-top: 80px !important;
}
.ly-margin_top_md {
  margin-top: 50px !important;
}
.ly-margin_top_mmd {
  margin-top: 40px !important;
}
.ly-margin_top_sm {
  margin-top: 30px !important;
}
.ly-margin_top_ssm {
  margin-top: 20px !important;
}
.ly-margin_bottom_xxl {
  margin-bottom: 180px !important;
}
.ly-margin_bottom_xl {
  margin-bottom: 120px !important;
}
.ly-margin_bottom_lla {
  margin-bottom: 100px !important;
}
.ly-margin_bottom_la {
  margin-bottom: 80px !important;
}
.ly-margin_bottom_md {
  margin-bottom: 50px !important;
}
.ly-margin_bottom_mmd {
  margin-bottom: 40px !important;
}
.ly-margin_bottom_sm {
  margin-bottom: 30px !important;
}
.ly-margin_bottom_ssm {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 768px) {
  .ly-margin_top_xxl {
    margin-top: 140px !important;
  }
  .ly-margin_top_xl {
    margin-top: 100px !important;
  }
  .ly-margin_top_lla {
    margin-top: 80px !important;
  }
  .ly-margin_top_la {
    margin-top: 60px !important;
  }
  .ly-margin_top_md {
    margin-top: 40px !important;
  }
  .ly-margin_top_mmd {
    margin-top: 30px !important;
  }
  .ly-margin_top_sm {
    margin-top: 20px !important;
  }
  .ly-margin_top_ssm {
    margin-top: 10px !important;
  }
  .ly-margin_bottom_xxl {
    margin-bottom: 140px !important;
  }
  .ly-margin_bottom_xl {
    margin-bottom: 100px !important;
  }
  .ly-margin_bottom_lla {
    margin-bottom: 80px !important;
  }
  .ly-margin_bottom_la {
    margin-bottom: 60px !important;
  }
  .ly-margin_bottom_md {
    margin-bottom: 40px !important;
  }
  .ly-margin_bottom_mmd {
    margin-bottom: 30px !important;
  }
  .ly-margin_bottom_sm {
    margin-bottom: 20px !important;
  }
  .ly-margin_bottom_ssm {
    margin-bottom: 10px !important;
  }
}

/* 幅 */
.ly-padding_top_xxl {
  padding-top: 180px !important;
}
.ly-padding_top_xl {
  padding-top: 120px !important;
}
.ly-padding_top_lla {
  padding-top: 100px !important;
}
.ly-padding_top_la {
  padding-top: 80px !important;
}
.ly-padding_top_md {
  padding-top: 50px !important;
}
.ly-padding_top_mmd {
  padding-top: 40px !important;
}
.ly-padding_top_sm {
  padding-top: 30px !important;
}
.ly-padding_top_ssm {
  padding-top: 20px !important;
}
.ly-padding_bottom_xxl {
  padding-bottom: 180px !important;
}
.ly-padding_bottom_xl {
  padding-bottom: 120px !important;
}
.ly-padding_bottom_lla {
  padding-bottom: 100px !important;
}
.ly-padding_bottom_la {
  padding-bottom: 80px !important;
}
.ly-padding_bottom_md {
  padding-bottom: 50px !important;
}
.ly-padding_bottom_mmd {
  padding-bottom: 40px !important;
}
.ly-padding_bottom_sm {
  padding-bottom: 30px !important;
}
.ly-padding_bottom_ssm {
  padding-bottom: 20px !important;
}
@media screen and (max-width: 768px) {
  .ly-padding_top_xxl {
    padding-top: 140px !important;
  }
  .ly-padding_top_xl {
    padding-top: 100px !important;
  }
  .ly-padding_top_lla {
    padding-top: 80px !important;
  }
  .ly-padding_top_la {
    padding-top: 60px !important;
  }
  .ly-padding_top_md {
    padding-top: 40px !important;
  }
  .ly-padding_top_mmd {
    padding-top: 30px !important;
  }
  .ly-padding_top_sm {
    padding-top: 20px !important;
  }
  .ly-padding_top_ssm {
    padding-top: 10px !important;
  }
  .ly-padding_bottom_xxl {
    padding-bottom: 140px !important;
  }
  .ly-padding_bottom_xl {
    padding-bottom: 100px !important;
  }
  .ly-padding_bottom_lla {
    padding-bottom: 80px !important;
  }
  .ly-padding_bottom_la {
    padding-bottom: 60px !important;
  }
  .ly-padding_bottom_md {
    padding-bottom: 40px !important;
  }
  .ly-padding_bottom_mmd {
    padding-bottom: 30px !important;
  }
  .ly-padding_bottom_sm {
    padding-bottom: 20px !important;
  }
  .ly-padding_bottom_ssm {
    padding-bottom: 10px !important;
  }
}

/* /_layout.scss
-------------------------------------------------------*/
/* _hp.css
-----------------------------------------------------------------*/
.hp {
  /*--------------- フォント ---------------*/
  /*--------------- /フォント ---------------*/
  /*--------------- 余白 ---------------*/
  /*--------------- /余白 ---------------*/
  /*--------------- サイズ ---------------*/
  /*--------------- /サイズ ---------------*/
  /*--------------- その他 ---------------*/
  /*--------------- /その他 ---------------*/
  /* アクセシビリティ　音声読み上げ用テキスト */
}
.hp-ff_en {
  font-family: var(--font-sub);
}
.hp-ff_title {
  font-weight: 500;
}
.hp-fc_red {
  color: var(--color-red) !important;
}
.hp-fc_txt {
  color: var(--color-txt) !important;
}
.hp-fc_caption {
  color: var(--color-caption) !important;
}
.hp-fc_main {
  color: var(--color-main) !important;
}
.hp-fc_sub {
  color: var(--color-sub) !important;
}
.hp-fc_sub2 {
  color: var(--color-sub2) !important;
}
.hp-fc_sub3 {
  color: var(--color-sub3) !important;
}
.hp-fc_caution {
  color: var(--color-caution) !important;
}
.hp-fc_link {
  color: var(--color-link) !important;
}
.hp-fc_wh {
  color: var(--color-wh) !important;
}
.hp-fw_200 {
  font-weight: var(--fw-200) !important;
}
.hp-fw_300 {
  font-weight: var(--fw-300) !important;
}
.hp-fw_400 {
  font-weight: var(--fw-400) !important;
}
.hp-fw_500 {
  font-weight: var(--fw-500) !important;
}
.hp-fw_700 {
  font-weight: var(--fw-700) !important;
}
.hp-fw_900 {
  font-weight: var(--fw-900) !important;
}
.hp-fs_10px {
  font-size: 10px !important;
}
.hp-fs_11px {
  font-size: 11px !important;
}
.hp-fs_12px {
  font-size: 12px !important;
}
.hp-fs_13px {
  font-size: 13px !important;
}
.hp-fs_14px {
  font-size: 14px !important;
}
.hp-fs_15px {
  font-size: 15px !important;
}
.hp-fs_16px {
  font-size: 16px !important;
}
.hp-fs_18px {
  font-size: 18px !important;
}
.hp-fs_20px {
  font-size: 20px !important;
}
.hp-fs_22px {
  font-size: 22px !important;
}
.hp-fs_24px {
  font-size: 24px !important;
}
.hp-fs_26px {
  font-size: 26px !important;
}
.hp-fs_28px {
  font-size: 28px !important;
}
.hp-fs_30px {
  font-size: 30px !important;
}
.hp-fs_32px {
  font-size: 32px !important;
}
.hp-fs_34px {
  font-size: 34px !important;
}
.hp-fs_36px {
  font-size: 36px !important;
}
.hp-fs_38px {
  font-size: 38px !important;
}
.hp-fs_40px {
  font-size: 40px !important;
}
.hp-fs_42px {
  font-size: 42px !important;
}
.hp-fs_44px {
  font-size: 44px !important;
}
.hp-fs_46px {
  font-size: 46px !important;
}
.hp-fs_48px {
  font-size: 48px !important;
}
.hp-fs_95e {
  font-size: 0.95em !important;
}
.hp-fs_9e {
  font-size: 0.9em !important;
}
.hp-fs_85e {
  font-size: 0.85em !important;
}
.hp-fs_8e {
  font-size: 0.8em !important;
}
.hp-fs_75e {
  font-size: 0.75em !important;
}
.hp-fs_7e {
  font-size: 0.7em !important;
}
@media screen and (max-width: 768px) {
  .hp-fs_10px_sp {
    font-size: 10px !important;
  }
  .hp-fs_11px_sp {
    font-size: 11px !important;
  }
  .hp-fs_12px_sp {
    font-size: 12px !important;
  }
  .hp-fs_13px_sp {
    font-size: 13px !important;
  }
  .hp-fs_14px_sp {
    font-size: 14px !important;
  }
  .hp-fs_15px_sp {
    font-size: 15px !important;
  }
  .hp-fs_16px_sp {
    font-size: 16px !important;
  }
  .hp-fs_18px_sp {
    font-size: 18px !important;
  }
  .hp-fs_20px_sp {
    font-size: 20px !important;
  }
  .hp-fs_22px_sp {
    font-size: 22px !important;
  }
  .hp-fs_24px_sp {
    font-size: 24px !important;
  }
  .hp-fs_26px_sp {
    font-size: 26px !important;
  }
  .hp-fs_28px_sp {
    font-size: 28px !important;
  }
  .hp-fs_30px_sp {
    font-size: 30px !important;
  }
  .hp-fs_32px_sp {
    font-size: 32px !important;
  }
  .hp-fs_34px_sp {
    font-size: 34px !important;
  }
  .hp-fs_36px_sp {
    font-size: 36px !important;
  }
  .hp-fs_38px_sp {
    font-size: 38px !important;
  }
  .hp-fs_40px_sp {
    font-size: 40px !important;
  }
  .hp-fs_42px_sp {
    font-size: 42px !important;
  }
  .hp-fs_44px_sp {
    font-size: 44px !important;
  }
  .hp-fs_46px_sp {
    font-size: 46px !important;
  }
  .hp-fs_48px_sp {
    font-size: 48px !important;
  }
  .hp-fs_95e_sp {
    font-size: 0.95em !important;
  }
  .hp-fs_9e_sp {
    font-size: 0.9em !important;
  }
  .hp-fs_85e_sp {
    font-size: 0.85em !important;
  }
  .hp-fs_8e_sp {
    font-size: 0.8em !important;
  }
  .hp-fs_75e_sp {
    font-size: 0.75em !important;
  }
  .hp-fs_7e_sp {
    font-size: 0.7em !important;
  }
}
.hp-ta_l {
  text-align: left !important;
}
.hp-ta_c {
  text-align: center !important;
}
.hp-ta_r {
  text-align: right !important;
}
@media screen and (min-width: 769px), print {
  .hp-ta_l_pc {
    text-align: left !important;
  }
  .hp-ta_c_pc {
    text-align: center !important;
  }
  .hp-ta_r_pc {
    text-align: right !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-ta_l_sp {
    text-align: left !important;
  }
  .hp-ta_c_sp {
    text-align: center !important;
  }
  .hp-ta_r_sp {
    text-align: right !important;
  }
}
.hp-td_u {
  text-decoration: underline !important;
}
.hp-fd_line {
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(247, 218, 76, 0.44);
          text-decoration-color: rgba(247, 218, 76, 0.44);
  text-decoration-thickness: 0.5em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: -0.25em;
}
.hp-lh_xs {
  line-height: var(--lineHeight-xs) !important;
}
.hp-lh_s {
  line-height: var(--lineHeight-s) !important;
}
.hp-lh_m {
  line-height: var(--lineHeight-m) !important;
}
.hp-lh_l {
  line-height: var(--lineHeight-l) !important;
}
.hp-lh_xl {
  line-height: var(--lineHeight-xl) !important;
}
.hp-ti_1em {
  text-indent: -1em !important;
  padding-left: 1em !important;
}
.hp-ti_1pfem {
  text-indent: -1.5em !important;
  padding-left: 1.5em !important;
}
.hp-ti_2em {
  text-indent: -2em !important;
  padding-left: 2em !important;
}
.hp-ti_2pfem {
  text-indent: -2.5em !important;
  padding-left: 2.5em !important;
}
.hp-ti_3em {
  text-indent: -3em !important;
  padding-left: 3em !important;
}
.hp-ti_3pfem {
  text-indent: -3.5em !important;
  padding-left: 3.5em !important;
}
.hp-ti_4em {
  text-indent: -4em !important;
  padding-left: 4em !important;
}
.hp-ti_4pfem {
  text-indent: -4.5em !important;
  padding-left: 4.5em !important;
}
.hp-le_xs {
  letter-spacing: 0.5px !important;
}
.hp-le_s {
  letter-spacing: 1px !important;
}
.hp-le_m {
  letter-spacing: 1.5px !important;
}
.hp-le_l {
  letter-spacing: 2px !important;
}
.hp-le_xl {
  letter-spacing: 2.5px !important;
}
.hp-le_xxl {
  letter-spacing: 3px !important;
}
.hp-wb_all {
  word-break: break-all;
}
.hp-mAuto {
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (min-width: 769px), print {
  .hp-mAuto_pc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-mAuto_sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.hp-mAutoAll {
  margin: auto !important;
}
@media screen and (min-width: 769px), print {
  .hp-mAutoAll_pc {
    margin: auto !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-mAutoAll_sp {
    margin: auto !important;
  }
}
.hp-mt_0 {
  margin-top: 0px !important;
}
.hp-mt_5 {
  margin-top: 5px !important;
}
.hp-mt_10 {
  margin-top: 10px !important;
}
.hp-mt_15 {
  margin-top: 15px !important;
}
.hp-mt_20 {
  margin-top: 20px !important;
}
.hp-mt_25 {
  margin-top: 25px !important;
}
.hp-mt_30 {
  margin-top: 30px !important;
}
.hp-mt_35 {
  margin-top: 35px !important;
}
.hp-mt_40 {
  margin-top: 40px !important;
}
.hp-mt_45 {
  margin-top: 45px !important;
}
.hp-mt_50 {
  margin-top: 50px !important;
}
.hp-mt_55 {
  margin-top: 55px !important;
}
.hp-mt_60 {
  margin-top: 60px !important;
}
.hp-mt_65 {
  margin-top: 65px !important;
}
.hp-mt_70 {
  margin-top: 70px !important;
}
.hp-mt_75 {
  margin-top: 75px !important;
}
.hp-mt_80 {
  margin-top: 80px !important;
}
.hp-mt_85 {
  margin-top: 85px !important;
}
.hp-mt_90 {
  margin-top: 90px !important;
}
.hp-mt_95 {
  margin-top: 95px !important;
}
.hp-mt_100 {
  margin-top: 100px !important;
}
.hp-mt_pfem {
  margin-top: 0.5em !important;
}
.hp-mt_1em {
  margin-top: 1em !important;
}
.hp-mt_1pfem {
  margin-top: 1.5em !important;
}
.hp-mt_2em {
  margin-top: 2em !important;
}
.hp-mt_2pfem {
  margin-top: 2.5em !important;
}
.hp-mt_3em {
  margin-top: 3em !important;
}
.hp-mt_auto {
  margin-top: auto !important;
}
@media screen and (min-width: 769px), print {
  .hp-mt_0_pc {
    margin-top: 0px !important;
  }
  .hp-mt_5_pc {
    margin-top: 5px !important;
  }
  .hp-mt_10_pc {
    margin-top: 10px !important;
  }
  .hp-mt_15_pc {
    margin-top: 15px !important;
  }
  .hp-mt_20_pc {
    margin-top: 20px !important;
  }
  .hp-mt_25_pc {
    margin-top: 25px !important;
  }
  .hp-mt_30_pc {
    margin-top: 30px !important;
  }
  .hp-mt_35_pc {
    margin-top: 35px !important;
  }
  .hp-mt_40_pc {
    margin-top: 40px !important;
  }
  .hp-mt_45_pc {
    margin-top: 45px !important;
  }
  .hp-mt_50_pc {
    margin-top: 50px !important;
  }
  .hp-mt_55_pc {
    margin-top: 55px !important;
  }
  .hp-mt_60_pc {
    margin-top: 60px !important;
  }
  .hp-mt_65_pc {
    margin-top: 65px !important;
  }
  .hp-mt_70_pc {
    margin-top: 70px !important;
  }
  .hp-mt_75_pc {
    margin-top: 75px !important;
  }
  .hp-mt_80_pc {
    margin-top: 80px !important;
  }
  .hp-mt_85_pc {
    margin-top: 85px !important;
  }
  .hp-mt_90_pc {
    margin-top: 90px !important;
  }
  .hp-mt_95_pc {
    margin-top: 95px !important;
  }
  .hp-mt_100_pc {
    margin-top: 100px !important;
  }
  .hp-mt_pfem_pc {
    margin-top: 0.5em !important;
  }
  .hp-mt_1em_pc {
    margin-top: 1em !important;
  }
  .hp-mt_1pfem_pc {
    margin-top: 1.5em !important;
  }
  .hp-mt_2em_pc {
    margin-top: 2em !important;
  }
  .hp-mt_2pfem_pc {
    margin-top: 2.5em !important;
  }
  .hp-mt_3em_pc {
    margin-top: 3em !important;
  }
  .hp-mt_auto_pc {
    margin-top: auto !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-mt_0_sp {
    margin-top: 0px !important;
  }
  .hp-mt_5_sp {
    margin-top: 5px !important;
  }
  .hp-mt_10_sp {
    margin-top: 10px !important;
  }
  .hp-mt_15_sp {
    margin-top: 15px !important;
  }
  .hp-mt_20_sp {
    margin-top: 20px !important;
  }
  .hp-mt_25_sp {
    margin-top: 25px !important;
  }
  .hp-mt_30_sp {
    margin-top: 30px !important;
  }
  .hp-mt_35_sp {
    margin-top: 35px !important;
  }
  .hp-mt_40_sp {
    margin-top: 40px !important;
  }
  .hp-mt_45_sp {
    margin-top: 45px !important;
  }
  .hp-mt_50_sp {
    margin-top: 50px !important;
  }
  .hp-mt_55_sp {
    margin-top: 55px !important;
  }
  .hp-mt_60_sp {
    margin-top: 60px !important;
  }
  .hp-mt_65_sp {
    margin-top: 65px !important;
  }
  .hp-mt_70_sp {
    margin-top: 70px !important;
  }
  .hp-mt_75_sp {
    margin-top: 75px !important;
  }
  .hp-mt_80_sp {
    margin-top: 80px !important;
  }
  .hp-mt_85_sp {
    margin-top: 85px !important;
  }
  .hp-mt_90_sp {
    margin-top: 90px !important;
  }
  .hp-mt_95_sp {
    margin-top: 95px !important;
  }
  .hp-mt_100_sp {
    margin-top: 100px !important;
  }
  .hp-mt_pfem_sp {
    margin-top: 0.5em !important;
  }
  .hp-mt_1em_sp {
    margin-top: 1em !important;
  }
  .hp-mt_1pfem_sp {
    margin-top: 1.5em !important;
  }
  .hp-mt_2em_sp {
    margin-top: 2em !important;
  }
  .hp-mt_2pfem_sp {
    margin-top: 2.5em !important;
  }
  .hp-mt_3em_sp {
    margin-top: 3em !important;
  }
  .hp-mt_auto_sp {
    margin-top: auto !important;
  }
}
.hp-mr_0 {
  margin-right: 0px !important;
}
.hp-mr_5 {
  margin-right: 5px !important;
}
.hp-mr_10 {
  margin-right: 10px !important;
}
.hp-mr_15 {
  margin-right: 15px !important;
}
.hp-mr_20 {
  margin-right: 20px !important;
}
.hp-mr_25 {
  margin-right: 25px !important;
}
.hp-mr_30 {
  margin-right: 30px !important;
}
.hp-mr_35 {
  margin-right: 35px !important;
}
.hp-mr_40 {
  margin-right: 40px !important;
}
.hp-mr_45 {
  margin-right: 45px !important;
}
.hp-mr_50 {
  margin-right: 50px !important;
}
.hp-mr_55 {
  margin-right: 55px !important;
}
.hp-mr_60 {
  margin-right: 60px !important;
}
.hp-mr_65 {
  margin-right: 65px !important;
}
.hp-mr_70 {
  margin-right: 70px !important;
}
.hp-mr_75 {
  margin-right: 75px !important;
}
.hp-mr_80 {
  margin-right: 80px !important;
}
.hp-mr_85 {
  margin-right: 85px !important;
}
.hp-mr_90 {
  margin-right: 90px !important;
}
.hp-mr_95 {
  margin-right: 95px !important;
}
.hp-mr_100 {
  margin-right: 100px !important;
}
.hp-mr_pfem {
  margin-right: 0.5em !important;
}
.hp-mr_1em {
  margin-right: 1em !important;
}
.hp-mr_1pfem {
  margin-right: 1.5em !important;
}
.hp-mr_2em {
  margin-right: 2em !important;
}
.hp-mr_2pfem {
  margin-right: 2.5em !important;
}
.hp-mr_3em {
  margin-right: 3em !important;
}
.hp-mr_auto {
  margin-right: auto !important;
}
@media screen and (min-width: 769px), print {
  .hp-mr_0_pc {
    margin-right: 0px !important;
  }
  .hp-mr_5_pc {
    margin-right: 5px !important;
  }
  .hp-mr_10_pc {
    margin-right: 10px !important;
  }
  .hp-mr_15_pc {
    margin-right: 15px !important;
  }
  .hp-mr_20_pc {
    margin-right: 20px !important;
  }
  .hp-mr_25_pc {
    margin-right: 25px !important;
  }
  .hp-mr_30_pc {
    margin-right: 30px !important;
  }
  .hp-mr_35_pc {
    margin-right: 35px !important;
  }
  .hp-mr_40_pc {
    margin-right: 40px !important;
  }
  .hp-mr_45_pc {
    margin-right: 45px !important;
  }
  .hp-mr_50_pc {
    margin-right: 50px !important;
  }
  .hp-mr_55_pc {
    margin-right: 55px !important;
  }
  .hp-mr_60_pc {
    margin-right: 60px !important;
  }
  .hp-mr_65_pc {
    margin-right: 65px !important;
  }
  .hp-mr_70_pc {
    margin-right: 70px !important;
  }
  .hp-mr_75_pc {
    margin-right: 75px !important;
  }
  .hp-mr_80_pc {
    margin-right: 80px !important;
  }
  .hp-mr_85_pc {
    margin-right: 85px !important;
  }
  .hp-mr_90_pc {
    margin-right: 90px !important;
  }
  .hp-mr_95_pc {
    margin-right: 95px !important;
  }
  .hp-mr_100_pc {
    margin-right: 100px !important;
  }
  .hp-mr_pfem_pc {
    margin-right: 0.5em !important;
  }
  .hp-mr_1em_pc {
    margin-right: 1em !important;
  }
  .hp-mr_1pfem_pc {
    margin-right: 1.5em !important;
  }
  .hp-mr_2em_pc {
    margin-right: 2em !important;
  }
  .hp-mr_2pfem_pc {
    margin-right: 2.5em !important;
  }
  .hp-mr_3em_pc {
    margin-right: 3em !important;
  }
  .hp-mr_auto_pc {
    margin-right: auto !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-mr_0_sp {
    margin-right: 0px !important;
  }
  .hp-mr_5_sp {
    margin-right: 5px !important;
  }
  .hp-mr_10_sp {
    margin-right: 10px !important;
  }
  .hp-mr_15_sp {
    margin-right: 15px !important;
  }
  .hp-mr_20_sp {
    margin-right: 20px !important;
  }
  .hp-mr_25_sp {
    margin-right: 25px !important;
  }
  .hp-mr_30_sp {
    margin-right: 30px !important;
  }
  .hp-mr_35_sp {
    margin-right: 35px !important;
  }
  .hp-mr_40_sp {
    margin-right: 40px !important;
  }
  .hp-mr_45_sp {
    margin-right: 45px !important;
  }
  .hp-mr_50_sp {
    margin-right: 50px !important;
  }
  .hp-mr_55_sp {
    margin-right: 55px !important;
  }
  .hp-mr_60_sp {
    margin-right: 60px !important;
  }
  .hp-mr_65_sp {
    margin-right: 65px !important;
  }
  .hp-mr_70_sp {
    margin-right: 70px !important;
  }
  .hp-mr_75_sp {
    margin-right: 75px !important;
  }
  .hp-mr_80_sp {
    margin-right: 80px !important;
  }
  .hp-mr_85_sp {
    margin-right: 85px !important;
  }
  .hp-mr_90_sp {
    margin-right: 90px !important;
  }
  .hp-mr_95_sp {
    margin-right: 95px !important;
  }
  .hp-mr_100_sp {
    margin-right: 100px !important;
  }
  .hp-mr_pfem_sp {
    margin-right: 0.5em !important;
  }
  .hp-mr_1em_sp {
    margin-right: 1em !important;
  }
  .hp-mr_1pfem_sp {
    margin-right: 1.5em !important;
  }
  .hp-mr_2em_sp {
    margin-right: 2em !important;
  }
  .hp-mr_2pfem_sp {
    margin-right: 2.5em !important;
  }
  .hp-mr_3em_sp {
    margin-right: 3em !important;
  }
  .hp-mr_auto_sp {
    margin-right: auto !important;
  }
}
.hp-mb_0 {
  margin-bottom: 0px !important;
}
.hp-mb_5 {
  margin-bottom: 5px !important;
}
.hp-mb_10 {
  margin-bottom: 10px !important;
}
.hp-mb_15 {
  margin-bottom: 15px !important;
}
.hp-mb_20 {
  margin-bottom: 20px !important;
}
.hp-mb_25 {
  margin-bottom: 25px !important;
}
.hp-mb_30 {
  margin-bottom: 30px !important;
}
.hp-mb_35 {
  margin-bottom: 35px !important;
}
.hp-mb_40 {
  margin-bottom: 40px !important;
}
.hp-mb_45 {
  margin-bottom: 45px !important;
}
.hp-mb_50 {
  margin-bottom: 50px !important;
}
.hp-mb_55 {
  margin-bottom: 55px !important;
}
.hp-mb_60 {
  margin-bottom: 60px !important;
}
.hp-mb_65 {
  margin-bottom: 65px !important;
}
.hp-mb_70 {
  margin-bottom: 70px !important;
}
.hp-mb_75 {
  margin-bottom: 75px !important;
}
.hp-mb_80 {
  margin-bottom: 80px !important;
}
.hp-mb_85 {
  margin-bottom: 85px !important;
}
.hp-mb_90 {
  margin-bottom: 90px !important;
}
.hp-mb_95 {
  margin-bottom: 95px !important;
}
.hp-mb_100 {
  margin-bottom: 100px !important;
}
.hp-mb_pfem {
  margin-bottom: 0.5em !important;
}
.hp-mb_1em {
  margin-bottom: 1em !important;
}
.hp-mb_1pfem {
  margin-bottom: 1.5em !important;
}
.hp-mb_2em {
  margin-bottom: 2em !important;
}
.hp-mb_2pfem {
  margin-bottom: 2.5em !important;
}
.hp-mb_3em {
  margin-bottom: 3em !important;
}
.hp-mb_auto {
  margin-bottom: auto !important;
}
@media screen and (min-width: 769px), print {
  .hp-mb_0_pc {
    margin-bottom: 0px !important;
  }
  .hp-mb_5_pc {
    margin-bottom: 5px !important;
  }
  .hp-mb_10_pc {
    margin-bottom: 10px !important;
  }
  .hp-mb_15_pc {
    margin-bottom: 15px !important;
  }
  .hp-mb_20_pc {
    margin-bottom: 20px !important;
  }
  .hp-mb_25_pc {
    margin-bottom: 25px !important;
  }
  .hp-mb_30_pc {
    margin-bottom: 30px !important;
  }
  .hp-mb_35_pc {
    margin-bottom: 35px !important;
  }
  .hp-mb_40_pc {
    margin-bottom: 40px !important;
  }
  .hp-mb_45_pc {
    margin-bottom: 45px !important;
  }
  .hp-mb_50_pc {
    margin-bottom: 50px !important;
  }
  .hp-mb_55_pc {
    margin-bottom: 55px !important;
  }
  .hp-mb_60_pc {
    margin-bottom: 60px !important;
  }
  .hp-mb_65_pc {
    margin-bottom: 65px !important;
  }
  .hp-mb_70_pc {
    margin-bottom: 70px !important;
  }
  .hp-mb_75_pc {
    margin-bottom: 75px !important;
  }
  .hp-mb_80_pc {
    margin-bottom: 80px !important;
  }
  .hp-mb_85_pc {
    margin-bottom: 85px !important;
  }
  .hp-mb_90_pc {
    margin-bottom: 90px !important;
  }
  .hp-mb_95_pc {
    margin-bottom: 95px !important;
  }
  .hp-mb_100_pc {
    margin-bottom: 100px !important;
  }
  .hp-mb_pfem_pc {
    margin-bottom: 0.5em !important;
  }
  .hp-mb_1em_pc {
    margin-bottom: 1em !important;
  }
  .hp-mb_1pfem_pc {
    margin-bottom: 1.5em !important;
  }
  .hp-mb_2em_pc {
    margin-bottom: 2em !important;
  }
  .hp-mb_2pfem_pc {
    margin-bottom: 2.5em !important;
  }
  .hp-mb_3em_pc {
    margin-bottom: 3em !important;
  }
  .hp-mb_auto_pc {
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-mb_0_sp {
    margin-bottom: 0px !important;
  }
  .hp-mb_5_sp {
    margin-bottom: 5px !important;
  }
  .hp-mb_10_sp {
    margin-bottom: 10px !important;
  }
  .hp-mb_15_sp {
    margin-bottom: 15px !important;
  }
  .hp-mb_20_sp {
    margin-bottom: 20px !important;
  }
  .hp-mb_25_sp {
    margin-bottom: 25px !important;
  }
  .hp-mb_30_sp {
    margin-bottom: 30px !important;
  }
  .hp-mb_35_sp {
    margin-bottom: 35px !important;
  }
  .hp-mb_40_sp {
    margin-bottom: 40px !important;
  }
  .hp-mb_45_sp {
    margin-bottom: 45px !important;
  }
  .hp-mb_50_sp {
    margin-bottom: 50px !important;
  }
  .hp-mb_55_sp {
    margin-bottom: 55px !important;
  }
  .hp-mb_60_sp {
    margin-bottom: 60px !important;
  }
  .hp-mb_65_sp {
    margin-bottom: 65px !important;
  }
  .hp-mb_70_sp {
    margin-bottom: 70px !important;
  }
  .hp-mb_75_sp {
    margin-bottom: 75px !important;
  }
  .hp-mb_80_sp {
    margin-bottom: 80px !important;
  }
  .hp-mb_85_sp {
    margin-bottom: 85px !important;
  }
  .hp-mb_90_sp {
    margin-bottom: 90px !important;
  }
  .hp-mb_95_sp {
    margin-bottom: 95px !important;
  }
  .hp-mb_100_sp {
    margin-bottom: 100px !important;
  }
  .hp-mb_pfem_sp {
    margin-bottom: 0.5em !important;
  }
  .hp-mb_1em_sp {
    margin-bottom: 1em !important;
  }
  .hp-mb_1pfem_sp {
    margin-bottom: 1.5em !important;
  }
  .hp-mb_2em_sp {
    margin-bottom: 2em !important;
  }
  .hp-mb_2pfem_sp {
    margin-bottom: 2.5em !important;
  }
  .hp-mb_3em_sp {
    margin-bottom: 3em !important;
  }
  .hp-mb_auto_sp {
    margin-bottom: auto !important;
  }
}
.hp-ml_0 {
  margin-left: 0px !important;
}
.hp-ml_5 {
  margin-left: 5px !important;
}
.hp-ml_10 {
  margin-left: 10px !important;
}
.hp-ml_15 {
  margin-left: 15px !important;
}
.hp-ml_20 {
  margin-left: 20px !important;
}
.hp-ml_25 {
  margin-left: 25px !important;
}
.hp-ml_30 {
  margin-left: 30px !important;
}
.hp-ml_35 {
  margin-left: 35px !important;
}
.hp-ml_40 {
  margin-left: 40px !important;
}
.hp-ml_45 {
  margin-left: 45px !important;
}
.hp-ml_50 {
  margin-left: 50px !important;
}
.hp-ml_55 {
  margin-left: 55px !important;
}
.hp-ml_60 {
  margin-left: 60px !important;
}
.hp-ml_65 {
  margin-left: 65px !important;
}
.hp-ml_70 {
  margin-left: 70px !important;
}
.hp-ml_75 {
  margin-left: 75px !important;
}
.hp-ml_80 {
  margin-left: 80px !important;
}
.hp-ml_85 {
  margin-left: 85px !important;
}
.hp-ml_90 {
  margin-left: 90px !important;
}
.hp-ml_95 {
  margin-left: 95px !important;
}
.hp-ml_100 {
  margin-left: 100px !important;
}
.hp-ml_pfem {
  margin-left: 0.5em !important;
}
.hp-ml_1em {
  margin-left: 1em !important;
}
.hp-ml_1pfem {
  margin-left: 1.5em !important;
}
.hp-ml_2em {
  margin-left: 2em !important;
}
.hp-ml_2pfem {
  margin-left: 2.5em !important;
}
.hp-ml_3em {
  margin-left: 3em !important;
}
.hp-ml_auto {
  margin-left: auto !important;
}
@media screen and (min-width: 769px), print {
  .hp-ml_0_pc {
    margin-left: 0px !important;
  }
  .hp-ml_5_pc {
    margin-left: 5px !important;
  }
  .hp-ml_10_pc {
    margin-left: 10px !important;
  }
  .hp-ml_15_pc {
    margin-left: 15px !important;
  }
  .hp-ml_20_pc {
    margin-left: 20px !important;
  }
  .hp-ml_25_pc {
    margin-left: 25px !important;
  }
  .hp-ml_30_pc {
    margin-left: 30px !important;
  }
  .hp-ml_35_pc {
    margin-left: 35px !important;
  }
  .hp-ml_40_pc {
    margin-left: 40px !important;
  }
  .hp-ml_45_pc {
    margin-left: 45px !important;
  }
  .hp-ml_50_pc {
    margin-left: 50px !important;
  }
  .hp-ml_55_pc {
    margin-left: 55px !important;
  }
  .hp-ml_60_pc {
    margin-left: 60px !important;
  }
  .hp-ml_65_pc {
    margin-left: 65px !important;
  }
  .hp-ml_70_pc {
    margin-left: 70px !important;
  }
  .hp-ml_75_pc {
    margin-left: 75px !important;
  }
  .hp-ml_80_pc {
    margin-left: 80px !important;
  }
  .hp-ml_85_pc {
    margin-left: 85px !important;
  }
  .hp-ml_90_pc {
    margin-left: 90px !important;
  }
  .hp-ml_95_pc {
    margin-left: 95px !important;
  }
  .hp-ml_100_pc {
    margin-left: 100px !important;
  }
  .hp-ml_pfem_pc {
    margin-left: 0.5em !important;
  }
  .hp-ml_1em_pc {
    margin-left: 1em !important;
  }
  .hp-ml_1pfem_pc {
    margin-left: 1.5em !important;
  }
  .hp-ml_2em_pc {
    margin-left: 2em !important;
  }
  .hp-ml_2pfem_pc {
    margin-left: 2.5em !important;
  }
  .hp-ml_3em_pc {
    margin-left: 3em !important;
  }
  .hp-ml_auto_pc {
    margin-left: auto !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-ml_0_sp {
    margin-left: 0px !important;
  }
  .hp-ml_5_sp {
    margin-left: 5px !important;
  }
  .hp-ml_10_sp {
    margin-left: 10px !important;
  }
  .hp-ml_15_sp {
    margin-left: 15px !important;
  }
  .hp-ml_20_sp {
    margin-left: 20px !important;
  }
  .hp-ml_25_sp {
    margin-left: 25px !important;
  }
  .hp-ml_30_sp {
    margin-left: 30px !important;
  }
  .hp-ml_35_sp {
    margin-left: 35px !important;
  }
  .hp-ml_40_sp {
    margin-left: 40px !important;
  }
  .hp-ml_45_sp {
    margin-left: 45px !important;
  }
  .hp-ml_50_sp {
    margin-left: 50px !important;
  }
  .hp-ml_55_sp {
    margin-left: 55px !important;
  }
  .hp-ml_60_sp {
    margin-left: 60px !important;
  }
  .hp-ml_65_sp {
    margin-left: 65px !important;
  }
  .hp-ml_70_sp {
    margin-left: 70px !important;
  }
  .hp-ml_75_sp {
    margin-left: 75px !important;
  }
  .hp-ml_80_sp {
    margin-left: 80px !important;
  }
  .hp-ml_85_sp {
    margin-left: 85px !important;
  }
  .hp-ml_90_sp {
    margin-left: 90px !important;
  }
  .hp-ml_95_sp {
    margin-left: 95px !important;
  }
  .hp-ml_100_sp {
    margin-left: 100px !important;
  }
  .hp-ml_pfem_sp {
    margin-left: 0.5em !important;
  }
  .hp-ml_1em_sp {
    margin-left: 1em !important;
  }
  .hp-ml_1pfem_sp {
    margin-left: 1.5em !important;
  }
  .hp-ml_2em_sp {
    margin-left: 2em !important;
  }
  .hp-ml_2pfem_sp {
    margin-left: 2.5em !important;
  }
  .hp-ml_3em_sp {
    margin-left: 3em !important;
  }
  .hp-ml_auto_sp {
    margin-left: auto !important;
  }
}
.hp-p_0 {
  padding: 0px !important;
}
.hp-p_5 {
  padding: 5px !important;
}
.hp-p_10 {
  padding: 10px !important;
}
.hp-p_15 {
  padding: 15px !important;
}
.hp-p_20 {
  padding: 20px !important;
}
.hp-p_25 {
  padding: 25px !important;
}
.hp-p_30 {
  padding: 30px !important;
}
.hp-p_35 {
  padding: 35px !important;
}
.hp-p_40 {
  padding: 40px !important;
}
.hp-p_45 {
  padding: 45px !important;
}
.hp-p_50 {
  padding: 50px !important;
}
.hp-p_55 {
  padding: 55px !important;
}
.hp-p_60 {
  padding: 60px !important;
}
.hp-p_65 {
  padding: 65px !important;
}
.hp-p_70 {
  padding: 70px !important;
}
.hp-p_75 {
  padding: 75px !important;
}
.hp-p_80 {
  padding: 80px !important;
}
.hp-p_85 {
  padding: 85px !important;
}
.hp-p_90 {
  padding: 90px !important;
}
.hp-p_95 {
  padding: 95px !important;
}
.hp-p_100 {
  padding: 100px !important;
}
.hp-p_pfem {
  padding: 0.5em !important;
}
.hp-p_1em {
  padding: 1em !important;
}
.hp-p_1pfem {
  padding: 1.5em !important;
}
.hp-p_2em {
  padding: 2em !important;
}
.hp-p_2pfem {
  padding: 2.5em !important;
}
.hp-p_3em {
  padding: 3em !important;
}
@media screen and (min-width: 769px), print {
  .hp-p_0_pc {
    padding: 0px !important;
  }
  .hp-p_5_pc {
    padding: 5px !important;
  }
  .hp-p_10_pc {
    padding: 10px !important;
  }
  .hp-p_15_pc {
    padding: 15px !important;
  }
  .hp-p_20_pc {
    padding: 20px !important;
  }
  .hp-p_25_pc {
    padding: 25px !important;
  }
  .hp-p_30_pc {
    padding: 30px !important;
  }
  .hp-p_35_pc {
    padding: 35px !important;
  }
  .hp-p_40_pc {
    padding: 40px !important;
  }
  .hp-p_45_pc {
    padding: 45px !important;
  }
  .hp-p_50_pc {
    padding: 50px !important;
  }
  .hp-p_55_pc {
    padding: 55px !important;
  }
  .hp-p_60_pc {
    padding: 60px !important;
  }
  .hp-p_65_pc {
    padding: 65px !important;
  }
  .hp-p_70_pc {
    padding: 70px !important;
  }
  .hp-p_75_pc {
    padding: 75px !important;
  }
  .hp-p_80_pc {
    padding: 80px !important;
  }
  .hp-p_85_pc {
    padding: 85px !important;
  }
  .hp-p_90_pc {
    padding: 90px !important;
  }
  .hp-p_95_pc {
    padding: 95px !important;
  }
  .hp-p_100_pc {
    padding: 100px !important;
  }
  .hp-p_pfem_pc {
    padding: 0.5em !important;
  }
  .hp-p_1em_pc {
    padding: 1em !important;
  }
  .hp-p_1pfem_pc {
    padding: 1.5em !important;
  }
  .hp-p_2em_pc {
    padding: 2em !important;
  }
  .hp-p_2pfem_pc {
    padding: 2.5em !important;
  }
  .hp-p_3em_pc {
    padding: 3em !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-p_0_sp {
    padding: 0px !important;
  }
  .hp-p_5_sp {
    padding: 5px !important;
  }
  .hp-p_10_sp {
    padding: 10px !important;
  }
  .hp-p_15_sp {
    padding: 15px !important;
  }
  .hp-p_20_sp {
    padding: 20px !important;
  }
  .hp-p_25_sp {
    padding: 25px !important;
  }
  .hp-p_30_sp {
    padding: 30px !important;
  }
  .hp-p_35_sp {
    padding: 35px !important;
  }
  .hp-p_40_sp {
    padding: 40px !important;
  }
  .hp-p_45_sp {
    padding: 45px !important;
  }
  .hp-p_50_sp {
    padding: 50px !important;
  }
  .hp-p_55_sp {
    padding: 55px !important;
  }
  .hp-p_60_sp {
    padding: 60px !important;
  }
  .hp-p_65_sp {
    padding: 65px !important;
  }
  .hp-p_70_sp {
    padding: 70px !important;
  }
  .hp-p_75_sp {
    padding: 75px !important;
  }
  .hp-p_80_sp {
    padding: 80px !important;
  }
  .hp-p_85_sp {
    padding: 85px !important;
  }
  .hp-p_90_sp {
    padding: 90px !important;
  }
  .hp-p_95_sp {
    padding: 95px !important;
  }
  .hp-p_100_sp {
    padding: 100px !important;
  }
  .hp-p_pfem_sp {
    padding: 0.5em !important;
  }
  .hp-p_1em_sp {
    padding: 1em !important;
  }
  .hp-p_1pfem_sp {
    padding: 1.5em !important;
  }
  .hp-p_2em_sp {
    padding: 2em !important;
  }
  .hp-p_2pfem_sp {
    padding: 2.5em !important;
  }
  .hp-p_3em_sp {
    padding: 3em !important;
  }
}
.hp-pt_0 {
  padding-top: 0px !important;
}
.hp-pt_5 {
  padding-top: 5px !important;
}
.hp-pt_10 {
  padding-top: 10px !important;
}
.hp-pt_15 {
  padding-top: 15px !important;
}
.hp-pt_20 {
  padding-top: 20px !important;
}
.hp-pt_25 {
  padding-top: 25px !important;
}
.hp-pt_30 {
  padding-top: 30px !important;
}
.hp-pt_35 {
  padding-top: 35px !important;
}
.hp-pt_40 {
  padding-top: 40px !important;
}
.hp-pt_45 {
  padding-top: 45px !important;
}
.hp-pt_50 {
  padding-top: 50px !important;
}
.hp-pt_55 {
  padding-top: 55px !important;
}
.hp-pt_60 {
  padding-top: 60px !important;
}
.hp-pt_65 {
  padding-top: 65px !important;
}
.hp-pt_70 {
  padding-top: 70px !important;
}
.hp-pt_75 {
  padding-top: 75px !important;
}
.hp-pt_80 {
  padding-top: 80px !important;
}
.hp-pt_85 {
  padding-top: 85px !important;
}
.hp-pt_90 {
  padding-top: 90px !important;
}
.hp-pt_95 {
  padding-top: 95px !important;
}
.hp-pt_100 {
  padding-top: 100px !important;
}
.hp-pt_pfem {
  padding-top: 0.5em !important;
}
.hp-pt_1em {
  padding-top: 1em !important;
}
.hp-pt_1pfem {
  padding-top: 1.5em !important;
}
.hp-pt_2em {
  padding-top: 2em !important;
}
.hp-pt_2pfem {
  padding-top: 2.5em !important;
}
.hp-pt_3em {
  padding-top: 3em !important;
}
@media screen and (min-width: 769px), print {
  .hp-pt_0_pc {
    padding-top: 0px !important;
  }
  .hp-pt_5_pc {
    padding-top: 5px !important;
  }
  .hp-pt_10_pc {
    padding-top: 10px !important;
  }
  .hp-pt_15_pc {
    padding-top: 15px !important;
  }
  .hp-pt_20_pc {
    padding-top: 20px !important;
  }
  .hp-pt_25_pc {
    padding-top: 25px !important;
  }
  .hp-pt_30_pc {
    padding-top: 30px !important;
  }
  .hp-pt_35_pc {
    padding-top: 35px !important;
  }
  .hp-pt_40_pc {
    padding-top: 40px !important;
  }
  .hp-pt_45_pc {
    padding-top: 45px !important;
  }
  .hp-pt_50_pc {
    padding-top: 50px !important;
  }
  .hp-pt_55_pc {
    padding-top: 55px !important;
  }
  .hp-pt_60_pc {
    padding-top: 60px !important;
  }
  .hp-pt_65_pc {
    padding-top: 65px !important;
  }
  .hp-pt_70_pc {
    padding-top: 70px !important;
  }
  .hp-pt_75_pc {
    padding-top: 75px !important;
  }
  .hp-pt_80_pc {
    padding-top: 80px !important;
  }
  .hp-pt_85_pc {
    padding-top: 85px !important;
  }
  .hp-pt_90_pc {
    padding-top: 90px !important;
  }
  .hp-pt_95_pc {
    padding-top: 95px !important;
  }
  .hp-pt_100_pc {
    padding-top: 100px !important;
  }
  .hp-pt_pfem_pc {
    padding-top: 0.5em !important;
  }
  .hp-pt_1em_pc {
    padding-top: 1em !important;
  }
  .hp-pt_1pfem_pc {
    padding-top: 1.5em !important;
  }
  .hp-pt_2em_pc {
    padding-top: 2em !important;
  }
  .hp-pt_2pfem_pc {
    padding-top: 2.5em !important;
  }
  .hp-pt_3em_pc {
    padding-top: 3em !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-pt_0_sp {
    padding-top: 0px !important;
  }
  .hp-pt_5_sp {
    padding-top: 5px !important;
  }
  .hp-pt_10_sp {
    padding-top: 10px !important;
  }
  .hp-pt_15_sp {
    padding-top: 15px !important;
  }
  .hp-pt_20_sp {
    padding-top: 20px !important;
  }
  .hp-pt_25_sp {
    padding-top: 25px !important;
  }
  .hp-pt_30_sp {
    padding-top: 30px !important;
  }
  .hp-pt_35_sp {
    padding-top: 35px !important;
  }
  .hp-pt_40_sp {
    padding-top: 40px !important;
  }
  .hp-pt_45_sp {
    padding-top: 45px !important;
  }
  .hp-pt_50_sp {
    padding-top: 50px !important;
  }
  .hp-pt_55_sp {
    padding-top: 55px !important;
  }
  .hp-pt_60_sp {
    padding-top: 60px !important;
  }
  .hp-pt_65_sp {
    padding-top: 65px !important;
  }
  .hp-pt_70_sp {
    padding-top: 70px !important;
  }
  .hp-pt_75_sp {
    padding-top: 75px !important;
  }
  .hp-pt_80_sp {
    padding-top: 80px !important;
  }
  .hp-pt_85_sp {
    padding-top: 85px !important;
  }
  .hp-pt_90_sp {
    padding-top: 90px !important;
  }
  .hp-pt_95_sp {
    padding-top: 95px !important;
  }
  .hp-pt_100_sp {
    padding-top: 100px !important;
  }
  .hp-pt_pfem_sp {
    padding-top: 0.5em !important;
  }
  .hp-pt_1em_sp {
    padding-top: 1em !important;
  }
  .hp-pt_1pfem_sp {
    padding-top: 1.5em !important;
  }
  .hp-pt_2em_sp {
    padding-top: 2em !important;
  }
  .hp-pt_2pfem_sp {
    padding-top: 2.5em !important;
  }
  .hp-pt_3em_sp {
    padding-top: 3em !important;
  }
}
.hp-pr_0 {
  padding-right: 0px !important;
}
.hp-pr_5 {
  padding-right: 5px !important;
}
.hp-pr_10 {
  padding-right: 10px !important;
}
.hp-pr_15 {
  padding-right: 15px !important;
}
.hp-pr_20 {
  padding-right: 20px !important;
}
.hp-pr_25 {
  padding-right: 25px !important;
}
.hp-pr_30 {
  padding-right: 30px !important;
}
.hp-pr_35 {
  padding-right: 35px !important;
}
.hp-pr_40 {
  padding-right: 40px !important;
}
.hp-pr_45 {
  padding-right: 45px !important;
}
.hp-pr_50 {
  padding-right: 50px !important;
}
.hp-pr_55 {
  padding-right: 55px !important;
}
.hp-pr_60 {
  padding-right: 60px !important;
}
.hp-pr_65 {
  padding-right: 65px !important;
}
.hp-pr_70 {
  padding-right: 70px !important;
}
.hp-pr_75 {
  padding-right: 75px !important;
}
.hp-pr_80 {
  padding-right: 80px !important;
}
.hp-pr_85 {
  padding-right: 85px !important;
}
.hp-pr_90 {
  padding-right: 90px !important;
}
.hp-pr_95 {
  padding-right: 95px !important;
}
.hp-pr_100 {
  padding-right: 100px !important;
}
.hp-pr_pfem {
  padding-right: 0.5em !important;
}
.hp-pr_1em {
  padding-right: 1em !important;
}
.hp-pr_1pfem {
  padding-right: 1.5em !important;
}
.hp-pr_2em {
  padding-right: 2em !important;
}
.hp-pr_2pfem {
  padding-right: 2.5em !important;
}
.hp-pr_3em {
  padding-right: 3em !important;
}
@media screen and (min-width: 769px), print {
  .hp-pr_0_pc {
    padding-right: 0px !important;
  }
  .hp-pr_5_pc {
    padding-right: 5px !important;
  }
  .hp-pr_10_pc {
    padding-right: 10px !important;
  }
  .hp-pr_15_pc {
    padding-right: 15px !important;
  }
  .hp-pr_20_pc {
    padding-right: 20px !important;
  }
  .hp-pr_25_pc {
    padding-right: 25px !important;
  }
  .hp-pr_30_pc {
    padding-right: 30px !important;
  }
  .hp-pr_35_pc {
    padding-right: 35px !important;
  }
  .hp-pr_40_pc {
    padding-right: 40px !important;
  }
  .hp-pr_45_pc {
    padding-right: 45px !important;
  }
  .hp-pr_50_pc {
    padding-right: 50px !important;
  }
  .hp-pr_55_pc {
    padding-right: 55px !important;
  }
  .hp-pr_60_pc {
    padding-right: 60px !important;
  }
  .hp-pr_65_pc {
    padding-right: 65px !important;
  }
  .hp-pr_70_pc {
    padding-right: 70px !important;
  }
  .hp-pr_75_pc {
    padding-right: 75px !important;
  }
  .hp-pr_80_pc {
    padding-right: 80px !important;
  }
  .hp-pr_85_pc {
    padding-right: 85px !important;
  }
  .hp-pr_90_pc {
    padding-right: 90px !important;
  }
  .hp-pr_95_pc {
    padding-right: 95px !important;
  }
  .hp-pr_100_pc {
    padding-right: 100px !important;
  }
  .hp-pr_pfem_pc {
    padding-right: 0.5em !important;
  }
  .hp-pr_1em_pc {
    padding-right: 1em !important;
  }
  .hp-pr_1pfem_pc {
    padding-right: 1.5em !important;
  }
  .hp-pr_2em_pc {
    padding-right: 2em !important;
  }
  .hp-pr_2pfem_pc {
    padding-right: 2.5em !important;
  }
  .hp-pr_3em_pc {
    padding-right: 3em !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-pr_0_sp {
    padding-right: 0px !important;
  }
  .hp-pr_5_sp {
    padding-right: 5px !important;
  }
  .hp-pr_10_sp {
    padding-right: 10px !important;
  }
  .hp-pr_15_sp {
    padding-right: 15px !important;
  }
  .hp-pr_20_sp {
    padding-right: 20px !important;
  }
  .hp-pr_25_sp {
    padding-right: 25px !important;
  }
  .hp-pr_30_sp {
    padding-right: 30px !important;
  }
  .hp-pr_35_sp {
    padding-right: 35px !important;
  }
  .hp-pr_40_sp {
    padding-right: 40px !important;
  }
  .hp-pr_45_sp {
    padding-right: 45px !important;
  }
  .hp-pr_50_sp {
    padding-right: 50px !important;
  }
  .hp-pr_55_sp {
    padding-right: 55px !important;
  }
  .hp-pr_60_sp {
    padding-right: 60px !important;
  }
  .hp-pr_65_sp {
    padding-right: 65px !important;
  }
  .hp-pr_70_sp {
    padding-right: 70px !important;
  }
  .hp-pr_75_sp {
    padding-right: 75px !important;
  }
  .hp-pr_80_sp {
    padding-right: 80px !important;
  }
  .hp-pr_85_sp {
    padding-right: 85px !important;
  }
  .hp-pr_90_sp {
    padding-right: 90px !important;
  }
  .hp-pr_95_sp {
    padding-right: 95px !important;
  }
  .hp-pr_100_sp {
    padding-right: 100px !important;
  }
  .hp-pr_pfem_sp {
    padding-right: 0.5em !important;
  }
  .hp-pr_1em_sp {
    padding-right: 1em !important;
  }
  .hp-pr_1pfem_sp {
    padding-right: 1.5em !important;
  }
  .hp-pr_2em_sp {
    padding-right: 2em !important;
  }
  .hp-pr_2pfem_sp {
    padding-right: 2.5em !important;
  }
  .hp-pr_3em_sp {
    padding-right: 3em !important;
  }
}
.hp-pb_0 {
  padding-bottom: 0px !important;
}
.hp-pb_5 {
  padding-bottom: 5px !important;
}
.hp-pb_10 {
  padding-bottom: 10px !important;
}
.hp-pb_15 {
  padding-bottom: 15px !important;
}
.hp-pb_20 {
  padding-bottom: 20px !important;
}
.hp-pb_25 {
  padding-bottom: 25px !important;
}
.hp-pb_30 {
  padding-bottom: 30px !important;
}
.hp-pb_35 {
  padding-bottom: 35px !important;
}
.hp-pb_40 {
  padding-bottom: 40px !important;
}
.hp-pb_45 {
  padding-bottom: 45px !important;
}
.hp-pb_50 {
  padding-bottom: 50px !important;
}
.hp-pb_55 {
  padding-bottom: 55px !important;
}
.hp-pb_60 {
  padding-bottom: 60px !important;
}
.hp-pb_65 {
  padding-bottom: 65px !important;
}
.hp-pb_70 {
  padding-bottom: 70px !important;
}
.hp-pb_75 {
  padding-bottom: 75px !important;
}
.hp-pb_80 {
  padding-bottom: 80px !important;
}
.hp-pb_85 {
  padding-bottom: 85px !important;
}
.hp-pb_90 {
  padding-bottom: 90px !important;
}
.hp-pb_95 {
  padding-bottom: 95px !important;
}
.hp-pb_100 {
  padding-bottom: 100px !important;
}
.hp-pb_pfem {
  padding-bottom: 0.5em !important;
}
.hp-pb_1em {
  padding-bottom: 1em !important;
}
.hp-pb_1pfem {
  padding-bottom: 1.5em !important;
}
.hp-pb_2em {
  padding-bottom: 2em !important;
}
.hp-pb_2pfem {
  padding-bottom: 2.5em !important;
}
.hp-pb_3em {
  padding-bottom: 3em !important;
}
@media screen and (min-width: 769px), print {
  .hp-pb_0_pc {
    padding-bottom: 0px !important;
  }
  .hp-pb_5_pc {
    padding-bottom: 5px !important;
  }
  .hp-pb_10_pc {
    padding-bottom: 10px !important;
  }
  .hp-pb_15_pc {
    padding-bottom: 15px !important;
  }
  .hp-pb_20_pc {
    padding-bottom: 20px !important;
  }
  .hp-pb_25_pc {
    padding-bottom: 25px !important;
  }
  .hp-pb_30_pc {
    padding-bottom: 30px !important;
  }
  .hp-pb_35_pc {
    padding-bottom: 35px !important;
  }
  .hp-pb_40_pc {
    padding-bottom: 40px !important;
  }
  .hp-pb_45_pc {
    padding-bottom: 45px !important;
  }
  .hp-pb_50_pc {
    padding-bottom: 50px !important;
  }
  .hp-pb_55_pc {
    padding-bottom: 55px !important;
  }
  .hp-pb_60_pc {
    padding-bottom: 60px !important;
  }
  .hp-pb_65_pc {
    padding-bottom: 65px !important;
  }
  .hp-pb_70_pc {
    padding-bottom: 70px !important;
  }
  .hp-pb_75_pc {
    padding-bottom: 75px !important;
  }
  .hp-pb_80_pc {
    padding-bottom: 80px !important;
  }
  .hp-pb_85_pc {
    padding-bottom: 85px !important;
  }
  .hp-pb_90_pc {
    padding-bottom: 90px !important;
  }
  .hp-pb_95_pc {
    padding-bottom: 95px !important;
  }
  .hp-pb_100_pc {
    padding-bottom: 100px !important;
  }
  .hp-pb_pfem_pc {
    padding-bottom: 0.5em !important;
  }
  .hp-pb_1em_pc {
    padding-bottom: 1em !important;
  }
  .hp-pb_1pfem_pc {
    padding-bottom: 1.5em !important;
  }
  .hp-pb_2em_pc {
    padding-bottom: 2em !important;
  }
  .hp-pb_2pfem_pc {
    padding-bottom: 2.5em !important;
  }
  .hp-pb_3em_pc {
    padding-bottom: 3em !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-pb_0_sp {
    padding-bottom: 0px !important;
  }
  .hp-pb_5_sp {
    padding-bottom: 5px !important;
  }
  .hp-pb_10_sp {
    padding-bottom: 10px !important;
  }
  .hp-pb_15_sp {
    padding-bottom: 15px !important;
  }
  .hp-pb_20_sp {
    padding-bottom: 20px !important;
  }
  .hp-pb_25_sp {
    padding-bottom: 25px !important;
  }
  .hp-pb_30_sp {
    padding-bottom: 30px !important;
  }
  .hp-pb_35_sp {
    padding-bottom: 35px !important;
  }
  .hp-pb_40_sp {
    padding-bottom: 40px !important;
  }
  .hp-pb_45_sp {
    padding-bottom: 45px !important;
  }
  .hp-pb_50_sp {
    padding-bottom: 50px !important;
  }
  .hp-pb_55_sp {
    padding-bottom: 55px !important;
  }
  .hp-pb_60_sp {
    padding-bottom: 60px !important;
  }
  .hp-pb_65_sp {
    padding-bottom: 65px !important;
  }
  .hp-pb_70_sp {
    padding-bottom: 70px !important;
  }
  .hp-pb_75_sp {
    padding-bottom: 75px !important;
  }
  .hp-pb_80_sp {
    padding-bottom: 80px !important;
  }
  .hp-pb_85_sp {
    padding-bottom: 85px !important;
  }
  .hp-pb_90_sp {
    padding-bottom: 90px !important;
  }
  .hp-pb_95_sp {
    padding-bottom: 95px !important;
  }
  .hp-pb_100_sp {
    padding-bottom: 100px !important;
  }
  .hp-pb_pfem_sp {
    padding-bottom: 0.5em !important;
  }
  .hp-pb_1em_sp {
    padding-bottom: 1em !important;
  }
  .hp-pb_1pfem_sp {
    padding-bottom: 1.5em !important;
  }
  .hp-pb_2em_sp {
    padding-bottom: 2em !important;
  }
  .hp-pb_2pfem_sp {
    padding-bottom: 2.5em !important;
  }
  .hp-pb_3em_sp {
    padding-bottom: 3em !important;
  }
}
.hp-pl_0 {
  padding-left: 0px !important;
}
.hp-pl_5 {
  padding-left: 5px !important;
}
.hp-pl_10 {
  padding-left: 10px !important;
}
.hp-pl_15 {
  padding-left: 15px !important;
}
.hp-pl_20 {
  padding-left: 20px !important;
}
.hp-pl_25 {
  padding-left: 25px !important;
}
.hp-pl_30 {
  padding-left: 30px !important;
}
.hp-pl_35 {
  padding-left: 35px !important;
}
.hp-pl_40 {
  padding-left: 40px !important;
}
.hp-pl_45 {
  padding-left: 45px !important;
}
.hp-pl_50 {
  padding-left: 50px !important;
}
.hp-pl_55 {
  padding-left: 55px !important;
}
.hp-pl_60 {
  padding-left: 60px !important;
}
.hp-pl_65 {
  padding-left: 65px !important;
}
.hp-pl_70 {
  padding-left: 70px !important;
}
.hp-pl_75 {
  padding-left: 75px !important;
}
.hp-pl_80 {
  padding-left: 80px !important;
}
.hp-pl_85 {
  padding-left: 85px !important;
}
.hp-pl_90 {
  padding-left: 90px !important;
}
.hp-pl_95 {
  padding-left: 95px !important;
}
.hp-pl_100 {
  padding-left: 100px !important;
}
.hp-pl_pfem {
  padding-left: 0.5em !important;
}
.hp-pl_1em {
  padding-left: 1em !important;
}
.hp-pl_1pfem {
  padding-left: 1.5em !important;
}
.hp-pl_2em {
  padding-left: 2em !important;
}
.hp-pl_2pfem {
  padding-left: 2.5em !important;
}
.hp-pl_3em {
  padding-left: 3em !important;
}
@media screen and (min-width: 769px), print {
  .hp-pl_0_pc {
    padding-left: 0px !important;
  }
  .hp-pl_5_pc {
    padding-left: 5px !important;
  }
  .hp-pl_10_pc {
    padding-left: 10px !important;
  }
  .hp-pl_15_pc {
    padding-left: 15px !important;
  }
  .hp-pl_20_pc {
    padding-left: 20px !important;
  }
  .hp-pl_25_pc {
    padding-left: 25px !important;
  }
  .hp-pl_30_pc {
    padding-left: 30px !important;
  }
  .hp-pl_35_pc {
    padding-left: 35px !important;
  }
  .hp-pl_40_pc {
    padding-left: 40px !important;
  }
  .hp-pl_45_pc {
    padding-left: 45px !important;
  }
  .hp-pl_50_pc {
    padding-left: 50px !important;
  }
  .hp-pl_55_pc {
    padding-left: 55px !important;
  }
  .hp-pl_60_pc {
    padding-left: 60px !important;
  }
  .hp-pl_65_pc {
    padding-left: 65px !important;
  }
  .hp-pl_70_pc {
    padding-left: 70px !important;
  }
  .hp-pl_75_pc {
    padding-left: 75px !important;
  }
  .hp-pl_80_pc {
    padding-left: 80px !important;
  }
  .hp-pl_85_pc {
    padding-left: 85px !important;
  }
  .hp-pl_90_pc {
    padding-left: 90px !important;
  }
  .hp-pl_95_pc {
    padding-left: 95px !important;
  }
  .hp-pl_100_pc {
    padding-left: 100px !important;
  }
  .hp-pl_pfem_pc {
    padding-left: 0.5em !important;
  }
  .hp-pl_1em_pc {
    padding-left: 1em !important;
  }
  .hp-pl_1pfem_pc {
    padding-left: 1.5em !important;
  }
  .hp-pl_2em_pc {
    padding-left: 2em !important;
  }
  .hp-pl_2pfem_pc {
    padding-left: 2.5em !important;
  }
  .hp-pl_3em_pc {
    padding-left: 3em !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-pl_0_sp {
    padding-left: 0px !important;
  }
  .hp-pl_5_sp {
    padding-left: 5px !important;
  }
  .hp-pl_10_sp {
    padding-left: 10px !important;
  }
  .hp-pl_15_sp {
    padding-left: 15px !important;
  }
  .hp-pl_20_sp {
    padding-left: 20px !important;
  }
  .hp-pl_25_sp {
    padding-left: 25px !important;
  }
  .hp-pl_30_sp {
    padding-left: 30px !important;
  }
  .hp-pl_35_sp {
    padding-left: 35px !important;
  }
  .hp-pl_40_sp {
    padding-left: 40px !important;
  }
  .hp-pl_45_sp {
    padding-left: 45px !important;
  }
  .hp-pl_50_sp {
    padding-left: 50px !important;
  }
  .hp-pl_55_sp {
    padding-left: 55px !important;
  }
  .hp-pl_60_sp {
    padding-left: 60px !important;
  }
  .hp-pl_65_sp {
    padding-left: 65px !important;
  }
  .hp-pl_70_sp {
    padding-left: 70px !important;
  }
  .hp-pl_75_sp {
    padding-left: 75px !important;
  }
  .hp-pl_80_sp {
    padding-left: 80px !important;
  }
  .hp-pl_85_sp {
    padding-left: 85px !important;
  }
  .hp-pl_90_sp {
    padding-left: 90px !important;
  }
  .hp-pl_95_sp {
    padding-left: 95px !important;
  }
  .hp-pl_100_sp {
    padding-left: 100px !important;
  }
  .hp-pl_pfem_sp {
    padding-left: 0.5em !important;
  }
  .hp-pl_1em_sp {
    padding-left: 1em !important;
  }
  .hp-pl_1pfem_sp {
    padding-left: 1.5em !important;
  }
  .hp-pl_2em_sp {
    padding-left: 2em !important;
  }
  .hp-pl_2pfem_sp {
    padding-left: 2.5em !important;
  }
  .hp-pl_3em_sp {
    padding-left: 3em !important;
  }
}
.hp-wd_auto {
  width: auto !important;
}
.hp-wd_20px {
  width: 20px !important;
}
.hp-wd_30px {
  width: 30px !important;
}
.hp-wd_40px {
  width: 40px !important;
}
.hp-wd_50px {
  width: 50px !important;
}
.hp-wd_60px {
  width: 60px !important;
}
.hp-wd_70px {
  width: 70px !important;
}
.hp-wd_80px {
  width: 80px !important;
}
.hp-wd_90px {
  width: 90px !important;
}
.hp-wd_100px {
  width: 100px !important;
}
.hp-wd_110px {
  width: 110px !important;
}
.hp-wd_120px {
  width: 120px !important;
}
.hp-wd_130px {
  width: 130px !important;
}
.hp-wd_140px {
  width: 140px !important;
}
.hp-wd_150px {
  width: 150px !important;
}
.hp-wd_160px {
  width: 160px !important;
}
.hp-wd_170px {
  width: 170px !important;
}
.hp-wd_180px {
  width: 180px !important;
}
.hp-wd_190px {
  width: 190px !important;
}
.hp-wd_200px {
  width: 200px !important;
}
.hp-wd_210px {
  width: 210px !important;
}
.hp-wd_220px {
  width: 220px !important;
}
.hp-wd_230px {
  width: 230px !important;
}
.hp-wd_240px {
  width: 240px !important;
}
.hp-wd_250px {
  width: 250px !important;
}
.hp-wd_260px {
  width: 260px !important;
}
.hp-wd_270px {
  width: 270px !important;
}
.hp-wd_280px {
  width: 280px !important;
}
.hp-wd_290px {
  width: 290px !important;
}
.hp-wd_300px {
  width: 300px !important;
}
.hp-wd_310px {
  width: 310px !important;
}
.hp-wd_320px {
  width: 320px !important;
}
.hp-wd_330px {
  width: 330px !important;
}
.hp-wd_340px {
  width: 340px !important;
}
.hp-wd_350px {
  width: 350px !important;
}
.hp-wd_360px {
  width: 360px !important;
}
.hp-wd_370px {
  width: 370px !important;
}
.hp-wd_380px {
  width: 380px !important;
}
.hp-wd_390px {
  width: 390px !important;
}
.hp-wd_400px {
  width: 400px !important;
}
.hp-wd_410px {
  width: 410px !important;
}
.hp-wd_420px {
  width: 420px !important;
}
.hp-wd_430px {
  width: 430px !important;
}
.hp-wd_440px {
  width: 440px !important;
}
.hp-wd_450px {
  width: 450px !important;
}
.hp-wd_460px {
  width: 460px !important;
}
.hp-wd_470px {
  width: 470px !important;
}
.hp-wd_480px {
  width: 480px !important;
}
.hp-wd_490px {
  width: 490px !important;
}
.hp-wd_500px {
  width: 500px !important;
}
.hp-wd_510px {
  width: 510px !important;
}
.hp-wd_520px {
  width: 520px !important;
}
.hp-wd_530px {
  width: 530px !important;
}
.hp-wd_540px {
  width: 540px !important;
}
.hp-wd_550px {
  width: 550px !important;
}
.hp-wd_560px {
  width: 560px !important;
}
.hp-wd_570px {
  width: 570px !important;
}
.hp-wd_580px {
  width: 580px !important;
}
.hp-wd_590px {
  width: 590px !important;
}
.hp-wd_600px {
  width: 600px !important;
}
.hp-wd_610px {
  width: 610px !important;
}
.hp-wd_620px {
  width: 620px !important;
}
.hp-wd_630px {
  width: 630px !important;
}
.hp-wd_640px {
  width: 640px !important;
}
.hp-wd_650px {
  width: 650px !important;
}
.hp-wd_660px {
  width: 660px !important;
}
.hp-wd_670px {
  width: 670px !important;
}
.hp-wd_680px {
  width: 680px !important;
}
.hp-wd_690px {
  width: 690px !important;
}
.hp-wd_700px {
  width: 700px !important;
}
.hp-wd_710px {
  width: 710px !important;
}
.hp-wd_720px {
  width: 720px !important;
}
.hp-wd_730px {
  width: 730px !important;
}
.hp-wd_740px {
  width: 740px !important;
}
.hp-wd_750px {
  width: 750px !important;
}
.hp-wd_760px {
  width: 760px !important;
}
.hp-wd_770px {
  width: 770px !important;
}
.hp-wd_780px {
  width: 780px !important;
}
.hp-wd_790px {
  width: 790px !important;
}
.hp-wd_800px {
  width: 800px !important;
}
.hp-wd_810px {
  width: 810px !important;
}
.hp-wd_820px {
  width: 820px !important;
}
.hp-wd_830px {
  width: 830px !important;
}
.hp-wd_840px {
  width: 840px !important;
}
.hp-wd_850px {
  width: 850px !important;
}
.hp-wd_860px {
  width: 860px !important;
}
.hp-wd_870px {
  width: 870px !important;
}
.hp-wd_880px {
  width: 880px !important;
}
.hp-wd_890px {
  width: 890px !important;
}
.hp-wd_900px {
  width: 900px !important;
}
.hp-wd_910px {
  width: 910px !important;
}
.hp-wd_920px {
  width: 920px !important;
}
.hp-wd_930px {
  width: 930px !important;
}
.hp-wd_940px {
  width: 940px !important;
}
.hp-wd_950px {
  width: 950px !important;
}
.hp-wd_960px {
  width: 960px !important;
}
.hp-wd_970px {
  width: 970px !important;
}
.hp-wd_980px {
  width: 980px !important;
}
.hp-wd_990px {
  width: 990px !important;
}
.hp-wd_spx {
  width: 1000px !important;
}
.hp-wd_5pc {
  width: 5% !important;
}
.hp-wd_10pc {
  width: 10% !important;
}
.hp-wd_15pc {
  width: 15% !important;
}
.hp-wd_20pc {
  width: 20% !important;
}
.hp-wd_25pc {
  width: 25% !important;
}
.hp-wd_30pc {
  width: 30% !important;
}
.hp-wd_35pc {
  width: 35% !important;
}
.hp-wd_40pc {
  width: 40% !important;
}
.hp-wd_45pc {
  width: 45% !important;
}
.hp-wd_50pc {
  width: 50% !important;
}
.hp-wd_55pc {
  width: 55% !important;
}
.hp-wd_60pc {
  width: 60% !important;
}
.hp-wd_65pc {
  width: 65% !important;
}
.hp-wd_70pc {
  width: 70% !important;
}
.hp-wd_75pc {
  width: 75% !important;
}
.hp-wd_80pc {
  width: 80% !important;
}
.hp-wd_85pc {
  width: 85% !important;
}
.hp-wd_90pc {
  width: 90% !important;
}
.hp-wd_95pc {
  width: 95% !important;
}
.hp-wd_100pc {
  width: 100% !important;
}
@media screen and (min-width: 769px), print {
  .hp-wd_auto_pc {
    width: auto !important;
  }
  .hp-wd_20px_pc {
    width: 20px !important;
  }
  .hp-wd_30px_pc {
    width: 30px !important;
  }
  .hp-wd_40px_pc {
    width: 40px !important;
  }
  .hp-wd_50px_pc {
    width: 50px !important;
  }
  .hp-wd_60px_pc {
    width: 60px !important;
  }
  .hp-wd_70px_pc {
    width: 70px !important;
  }
  .hp-wd_80px_pc {
    width: 80px !important;
  }
  .hp-wd_90px_pc {
    width: 90px !important;
  }
  .hp-wd_100px_pc {
    width: 100px !important;
  }
  .hp-wd_110px_pc {
    width: 110px !important;
  }
  .hp-wd_120px_pc {
    width: 120px !important;
  }
  .hp-wd_130px_pc {
    width: 130px !important;
  }
  .hp-wd_140px_pc {
    width: 140px !important;
  }
  .hp-wd_150px_pc {
    width: 150px !important;
  }
  .hp-wd_160px_pc {
    width: 160px !important;
  }
  .hp-wd_170px_pc {
    width: 170px !important;
  }
  .hp-wd_180px_pc {
    width: 180px !important;
  }
  .hp-wd_190px_pc {
    width: 190px !important;
  }
  .hp-wd_200px_pc {
    width: 200px !important;
  }
  .hp-wd_210px_pc {
    width: 210px !important;
  }
  .hp-wd_220px_pc {
    width: 220px !important;
  }
  .hp-wd_230px_pc {
    width: 230px !important;
  }
  .hp-wd_240px_pc {
    width: 240px !important;
  }
  .hp-wd_250px_pc {
    width: 250px !important;
  }
  .hp-wd_260px_pc {
    width: 260px !important;
  }
  .hp-wd_270px_pc {
    width: 270px !important;
  }
  .hp-wd_280px_pc {
    width: 280px !important;
  }
  .hp-wd_290px_pc {
    width: 290px !important;
  }
  .hp-wd_300px_pc {
    width: 300px !important;
  }
  .hp-wd_310px_pc {
    width: 310px !important;
  }
  .hp-wd_320px_pc {
    width: 320px !important;
  }
  .hp-wd_330px_pc {
    width: 330px !important;
  }
  .hp-wd_340px_pc {
    width: 340px !important;
  }
  .hp-wd_350px_pc {
    width: 350px !important;
  }
  .hp-wd_360px_pc {
    width: 360px !important;
  }
  .hp-wd_370px_pc {
    width: 370px !important;
  }
  .hp-wd_380px_pc {
    width: 380px !important;
  }
  .hp-wd_390px_pc {
    width: 390px !important;
  }
  .hp-wd_400px_pc {
    width: 400px !important;
  }
  .hp-wd_410px_pc {
    width: 410px !important;
  }
  .hp-wd_420px_pc {
    width: 420px !important;
  }
  .hp-wd_430px_pc {
    width: 430px !important;
  }
  .hp-wd_440px_pc {
    width: 440px !important;
  }
  .hp-wd_450px_pc {
    width: 450px !important;
  }
  .hp-wd_460px_pc {
    width: 460px !important;
  }
  .hp-wd_470px_pc {
    width: 470px !important;
  }
  .hp-wd_480px_pc {
    width: 480px !important;
  }
  .hp-wd_490px_pc {
    width: 490px !important;
  }
  .hp-wd_500px_pc {
    width: 500px !important;
  }
  .hp-wd_510px_pc {
    width: 510px !important;
  }
  .hp-wd_520px_pc {
    width: 520px !important;
  }
  .hp-wd_530px_pc {
    width: 530px !important;
  }
  .hp-wd_540px_pc {
    width: 540px !important;
  }
  .hp-wd_550px_pc {
    width: 550px !important;
  }
  .hp-wd_560px_pc {
    width: 560px !important;
  }
  .hp-wd_570px_pc {
    width: 570px !important;
  }
  .hp-wd_580px_pc {
    width: 580px !important;
  }
  .hp-wd_590px_pc {
    width: 590px !important;
  }
  .hp-wd_600px_pc {
    width: 600px !important;
  }
  .hp-wd_610px_pc {
    width: 610px !important;
  }
  .hp-wd_620px_pc {
    width: 620px !important;
  }
  .hp-wd_630px_pc {
    width: 630px !important;
  }
  .hp-wd_640px_pc {
    width: 640px !important;
  }
  .hp-wd_650px_pc {
    width: 650px !important;
  }
  .hp-wd_660px_pc {
    width: 660px !important;
  }
  .hp-wd_670px_pc {
    width: 670px !important;
  }
  .hp-wd_680px_pc {
    width: 680px !important;
  }
  .hp-wd_690px_pc {
    width: 690px !important;
  }
  .hp-wd_700px_pc {
    width: 700px !important;
  }
  .hp-wd_710px_pc {
    width: 710px !important;
  }
  .hp-wd_720px_pc {
    width: 720px !important;
  }
  .hp-wd_730px_pc {
    width: 730px !important;
  }
  .hp-wd_740px_pc {
    width: 740px !important;
  }
  .hp-wd_750px_pc {
    width: 750px !important;
  }
  .hp-wd_760px_pc {
    width: 760px !important;
  }
  .hp-wd_770px_pc {
    width: 770px !important;
  }
  .hp-wd_780px_pc {
    width: 780px !important;
  }
  .hp-wd_790px_pc {
    width: 790px !important;
  }
  .hp-wd_800px_pc {
    width: 800px !important;
  }
  .hp-wd_810px_pc {
    width: 810px !important;
  }
  .hp-wd_820px_pc {
    width: 820px !important;
  }
  .hp-wd_830px_pc {
    width: 830px !important;
  }
  .hp-wd_840px_pc {
    width: 840px !important;
  }
  .hp-wd_850px_pc {
    width: 850px !important;
  }
  .hp-wd_860px_pc {
    width: 860px !important;
  }
  .hp-wd_870px_pc {
    width: 870px !important;
  }
  .hp-wd_880px_pc {
    width: 880px !important;
  }
  .hp-wd_890px_pc {
    width: 890px !important;
  }
  .hp-wd_900px_pc {
    width: 900px !important;
  }
  .hp-wd_910px_pc {
    width: 910px !important;
  }
  .hp-wd_920px_pc {
    width: 920px !important;
  }
  .hp-wd_930px_pc {
    width: 930px !important;
  }
  .hp-wd_940px_pc {
    width: 940px !important;
  }
  .hp-wd_950px_pc {
    width: 950px !important;
  }
  .hp-wd_960px_pc {
    width: 960px !important;
  }
  .hp-wd_970px_pc {
    width: 970px !important;
  }
  .hp-wd_980px_pc {
    width: 980px !important;
  }
  .hp-wd_990px_pc {
    width: 990px !important;
  }
  .hp-wd_spx_pc {
    width: 1000px !important;
  }
  .hp-wd_5pc_pc {
    width: 5% !important;
  }
  .hp-wd_10pc_pc {
    width: 10% !important;
  }
  .hp-wd_15pc_pc {
    width: 15% !important;
  }
  .hp-wd_20pc_pc {
    width: 20% !important;
  }
  .hp-wd_25pc_pc {
    width: 25% !important;
  }
  .hp-wd_30pc_pc {
    width: 30% !important;
  }
  .hp-wd_35pc_pc {
    width: 35% !important;
  }
  .hp-wd_40pc_pc {
    width: 40% !important;
  }
  .hp-wd_45pc_pc {
    width: 45% !important;
  }
  .hp-wd_50pc_pc {
    width: 50% !important;
  }
  .hp-wd_55pc_pc {
    width: 55% !important;
  }
  .hp-wd_60pc_pc {
    width: 60% !important;
  }
  .hp-wd_65pc_pc {
    width: 65% !important;
  }
  .hp-wd_70pc_pc {
    width: 70% !important;
  }
  .hp-wd_75pc_pc {
    width: 75% !important;
  }
  .hp-wd_80pc_pc {
    width: 80% !important;
  }
  .hp-wd_85pc_pc {
    width: 85% !important;
  }
  .hp-wd_90pc_pc {
    width: 90% !important;
  }
  .hp-wd_95pc_pc {
    width: 95% !important;
  }
  .hp-wd_100pc_pc {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-wd_auto_sp {
    width: auto !important;
  }
  .hp-wd_20px_sp {
    width: 20px !important;
  }
  .hp-wd_30px_sp {
    width: 30px !important;
  }
  .hp-wd_40px_sp {
    width: 40px !important;
  }
  .hp-wd_50px_sp {
    width: 50px !important;
  }
  .hp-wd_60px_sp {
    width: 60px !important;
  }
  .hp-wd_70px_sp {
    width: 70px !important;
  }
  .hp-wd_80px_sp {
    width: 80px !important;
  }
  .hp-wd_90px_sp {
    width: 90px !important;
  }
  .hp-wd_100px_sp {
    width: 100px !important;
  }
  .hp-wd_110px_sp {
    width: 110px !important;
  }
  .hp-wd_120px_sp {
    width: 120px !important;
  }
  .hp-wd_130px_sp {
    width: 130px !important;
  }
  .hp-wd_140px_sp {
    width: 140px !important;
  }
  .hp-wd_150px_sp {
    width: 150px !important;
  }
  .hp-wd_160px_sp {
    width: 160px !important;
  }
  .hp-wd_170px_sp {
    width: 170px !important;
  }
  .hp-wd_180px_sp {
    width: 180px !important;
  }
  .hp-wd_190px_sp {
    width: 190px !important;
  }
  .hp-wd_200px_sp {
    width: 200px !important;
  }
  .hp-wd_210px_sp {
    width: 210px !important;
  }
  .hp-wd_220px_sp {
    width: 220px !important;
  }
  .hp-wd_230px_sp {
    width: 230px !important;
  }
  .hp-wd_240px_sp {
    width: 240px !important;
  }
  .hp-wd_250px_sp {
    width: 250px !important;
  }
  .hp-wd_260px_sp {
    width: 260px !important;
  }
  .hp-wd_270px_sp {
    width: 270px !important;
  }
  .hp-wd_280px_sp {
    width: 280px !important;
  }
  .hp-wd_290px_sp {
    width: 290px !important;
  }
  .hp-wd_300px_sp {
    width: 300px !important;
  }
  .hp-wd_310px_sp {
    width: 310px !important;
  }
  .hp-wd_320px_sp {
    width: 320px !important;
  }
  .hp-wd_330px_sp {
    width: 330px !important;
  }
  .hp-wd_340px_sp {
    width: 340px !important;
  }
  .hp-wd_350px_sp {
    width: 350px !important;
  }
  .hp-wd_360px_sp {
    width: 360px !important;
  }
  .hp-wd_370px_sp {
    width: 370px !important;
  }
  .hp-wd_380px_sp {
    width: 380px !important;
  }
  .hp-wd_390px_sp {
    width: 390px !important;
  }
  .hp-wd_400px_sp {
    width: 400px !important;
  }
  .hp-wd_410px_sp {
    width: 410px !important;
  }
  .hp-wd_420px_sp {
    width: 420px !important;
  }
  .hp-wd_430px_sp {
    width: 430px !important;
  }
  .hp-wd_440px_sp {
    width: 440px !important;
  }
  .hp-wd_450px_sp {
    width: 450px !important;
  }
  .hp-wd_460px_sp {
    width: 460px !important;
  }
  .hp-wd_470px_sp {
    width: 470px !important;
  }
  .hp-wd_480px_sp {
    width: 480px !important;
  }
  .hp-wd_490px_sp {
    width: 490px !important;
  }
  .hp-wd_500px_sp {
    width: 500px !important;
  }
  .hp-wd_510px_sp {
    width: 510px !important;
  }
  .hp-wd_520px_sp {
    width: 520px !important;
  }
  .hp-wd_530px_sp {
    width: 530px !important;
  }
  .hp-wd_540px_sp {
    width: 540px !important;
  }
  .hp-wd_550px_sp {
    width: 550px !important;
  }
  .hp-wd_560px_sp {
    width: 560px !important;
  }
  .hp-wd_570px_sp {
    width: 570px !important;
  }
  .hp-wd_580px_sp {
    width: 580px !important;
  }
  .hp-wd_590px_sp {
    width: 590px !important;
  }
  .hp-wd_600px_sp {
    width: 600px !important;
  }
  .hp-wd_610px_sp {
    width: 610px !important;
  }
  .hp-wd_620px_sp {
    width: 620px !important;
  }
  .hp-wd_630px_sp {
    width: 630px !important;
  }
  .hp-wd_640px_sp {
    width: 640px !important;
  }
  .hp-wd_650px_sp {
    width: 650px !important;
  }
  .hp-wd_660px_sp {
    width: 660px !important;
  }
  .hp-wd_670px_sp {
    width: 670px !important;
  }
  .hp-wd_680px_sp {
    width: 680px !important;
  }
  .hp-wd_690px_sp {
    width: 690px !important;
  }
  .hp-wd_700px_sp {
    width: 700px !important;
  }
  .hp-wd_710px_sp {
    width: 710px !important;
  }
  .hp-wd_720px_sp {
    width: 720px !important;
  }
  .hp-wd_730px_sp {
    width: 730px !important;
  }
  .hp-wd_740px_sp {
    width: 740px !important;
  }
  .hp-wd_750px_sp {
    width: 750px !important;
  }
  .hp-wd_760px_sp {
    width: 760px !important;
  }
  .hp-wd_770px_sp {
    width: 770px !important;
  }
  .hp-wd_780px_sp {
    width: 780px !important;
  }
  .hp-wd_790px_sp {
    width: 790px !important;
  }
  .hp-wd_800px_sp {
    width: 800px !important;
  }
  .hp-wd_810px_sp {
    width: 810px !important;
  }
  .hp-wd_820px_sp {
    width: 820px !important;
  }
  .hp-wd_830px_sp {
    width: 830px !important;
  }
  .hp-wd_840px_sp {
    width: 840px !important;
  }
  .hp-wd_850px_sp {
    width: 850px !important;
  }
  .hp-wd_860px_sp {
    width: 860px !important;
  }
  .hp-wd_870px_sp {
    width: 870px !important;
  }
  .hp-wd_880px_sp {
    width: 880px !important;
  }
  .hp-wd_890px_sp {
    width: 890px !important;
  }
  .hp-wd_900px_sp {
    width: 900px !important;
  }
  .hp-wd_910px_sp {
    width: 910px !important;
  }
  .hp-wd_920px_sp {
    width: 920px !important;
  }
  .hp-wd_930px_sp {
    width: 930px !important;
  }
  .hp-wd_940px_sp {
    width: 940px !important;
  }
  .hp-wd_5pc_sp {
    width: 5% !important;
  }
  .hp-wd_10pc_sp {
    width: 10% !important;
  }
  .hp-wd_15pc_sp {
    width: 15% !important;
  }
  .hp-wd_20pc_sp {
    width: 20% !important;
  }
  .hp-wd_25pc_sp {
    width: 25% !important;
  }
  .hp-wd_30pc_sp {
    width: 30% !important;
  }
  .hp-wd_35pc_sp {
    width: 35% !important;
  }
  .hp-wd_40pc_sp {
    width: 40% !important;
  }
  .hp-wd_45pc_sp {
    width: 45% !important;
  }
  .hp-wd_50pc_sp {
    width: 50% !important;
  }
  .hp-wd_55pc_sp {
    width: 55% !important;
  }
  .hp-wd_60pc_sp {
    width: 60% !important;
  }
  .hp-wd_65pc_sp {
    width: 65% !important;
  }
  .hp-wd_70pc_sp {
    width: 70% !important;
  }
  .hp-wd_75pc_sp {
    width: 75% !important;
  }
  .hp-wd_80pc_sp {
    width: 80% !important;
  }
  .hp-wd_85pc_sp {
    width: 85% !important;
  }
  .hp-wd_90pc_sp {
    width: 90% !important;
  }
  .hp-wd_95pc_sp {
    width: 95% !important;
  }
  .hp-wd_100pc_sp {
    width: 100% !important;
  }
}
.hp-ht_auto {
  height: auto !important;
}
.hp-ht_20px {
  height: 20px !important;
}
.hp-ht_30px {
  height: 30px !important;
}
.hp-ht_40px {
  height: 40px !important;
}
.hp-ht_50px {
  height: 50px !important;
}
.hp-ht_60px {
  height: 60px !important;
}
.hp-ht_70px {
  height: 70px !important;
}
.hp-ht_80px {
  height: 80px !important;
}
.hp-ht_90px {
  height: 90px !important;
}
.hp-ht_100px {
  height: 100px !important;
}
.hp-ht_110px {
  height: 110px !important;
}
.hp-ht_120px {
  height: 120px !important;
}
.hp-ht_130px {
  height: 130px !important;
}
.hp-ht_140px {
  height: 140px !important;
}
.hp-ht_150px {
  height: 150px !important;
}
.hp-ht_160px {
  height: 160px !important;
}
.hp-ht_170px {
  height: 170px !important;
}
.hp-ht_180px {
  height: 180px !important;
}
.hp-ht_190px {
  height: 190px !important;
}
.hp-ht_200px {
  height: 200px !important;
}
.hp-ht_210px {
  height: 210px !important;
}
.hp-ht_220px {
  height: 220px !important;
}
.hp-ht_230px {
  height: 230px !important;
}
.hp-ht_240px {
  height: 240px !important;
}
.hp-ht_250px {
  height: 250px !important;
}
.hp-ht_260px {
  height: 260px !important;
}
.hp-ht_270px {
  height: 270px !important;
}
.hp-ht_280px {
  height: 280px !important;
}
.hp-ht_290px {
  height: 290px !important;
}
.hp-ht_300px {
  height: 300px !important;
}
.hp-ht_310px {
  height: 310px !important;
}
.hp-ht_320px {
  height: 320px !important;
}
.hp-ht_330px {
  height: 330px !important;
}
.hp-ht_340px {
  height: 340px !important;
}
.hp-ht_350px {
  height: 350px !important;
}
.hp-ht_360px {
  height: 360px !important;
}
.hp-ht_370px {
  height: 370px !important;
}
.hp-ht_380px {
  height: 380px !important;
}
.hp-ht_390px {
  height: 390px !important;
}
.hp-ht_400px {
  height: 400px !important;
}
.hp-ht_410px {
  height: 410px !important;
}
.hp-ht_420px {
  height: 420px !important;
}
.hp-ht_430px {
  height: 430px !important;
}
.hp-ht_440px {
  height: 440px !important;
}
.hp-ht_450px {
  height: 450px !important;
}
.hp-ht_460px {
  height: 460px !important;
}
.hp-ht_470px {
  height: 470px !important;
}
.hp-ht_480px {
  height: 480px !important;
}
.hp-ht_490px {
  height: 490px !important;
}
.hp-ht_500px {
  height: 500px !important;
}
.hp-ht_510px {
  height: 510px !important;
}
.hp-ht_520px {
  height: 520px !important;
}
.hp-ht_530px {
  height: 530px !important;
}
.hp-ht_540px {
  height: 540px !important;
}
.hp-ht_550px {
  height: 550px !important;
}
.hp-ht_560px {
  height: 560px !important;
}
.hp-ht_570px {
  height: 570px !important;
}
.hp-ht_580px {
  height: 580px !important;
}
.hp-ht_590px {
  height: 590px !important;
}
.hp-ht_600px {
  height: 600px !important;
}
.hp-ht_610px {
  height: 610px !important;
}
.hp-ht_620px {
  height: 620px !important;
}
.hp-ht_630px {
  height: 630px !important;
}
.hp-ht_640px {
  height: 640px !important;
}
.hp-ht_650px {
  height: 650px !important;
}
.hp-ht_660px {
  height: 660px !important;
}
.hp-ht_670px {
  height: 670px !important;
}
.hp-ht_680px {
  height: 680px !important;
}
.hp-ht_690px {
  height: 690px !important;
}
.hp-ht_700px {
  height: 700px !important;
}
.hp-ht_710px {
  height: 710px !important;
}
.hp-ht_720px {
  height: 720px !important;
}
.hp-ht_730px {
  height: 730px !important;
}
.hp-ht_740px {
  height: 740px !important;
}
.hp-ht_750px {
  height: 750px !important;
}
.hp-ht_760px {
  height: 760px !important;
}
.hp-ht_770px {
  height: 770px !important;
}
.hp-ht_780px {
  height: 780px !important;
}
.hp-ht_790px {
  height: 790px !important;
}
.hp-ht_800px {
  height: 800px !important;
}
.hp-ht_810px {
  height: 810px !important;
}
.hp-ht_820px {
  height: 820px !important;
}
.hp-ht_830px {
  height: 830px !important;
}
.hp-ht_840px {
  height: 840px !important;
}
.hp-ht_850px {
  height: 850px !important;
}
.hp-ht_860px {
  height: 860px !important;
}
.hp-ht_870px {
  height: 870px !important;
}
.hp-ht_880px {
  height: 880px !important;
}
.hp-ht_890px {
  height: 890px !important;
}
.hp-ht_900px {
  height: 900px !important;
}
.hp-ht_910px {
  height: 910px !important;
}
.hp-ht_920px {
  height: 920px !important;
}
.hp-ht_930px {
  height: 930px !important;
}
.hp-ht_940px {
  height: 940px !important;
}
.hp-ht_950px {
  height: 950px !important;
}
.hp-ht_960px {
  height: 960px !important;
}
.hp-ht_970px {
  height: 970px !important;
}
.hp-ht_980px {
  height: 980px !important;
}
.hp-ht_990px {
  height: 990px !important;
}
.hp-ht_spx {
  height: 1000px !important;
}
.hp-ht_5pc {
  height: 5% !important;
}
.hp-ht_10pc {
  height: 10% !important;
}
.hp-ht_11pc {
  height: 11% !important;
}
.hp-ht_12pc {
  height: 12% !important;
}
.hp-ht_13pc {
  height: 13% !important;
}
.hp-ht_14pc {
  height: 14% !important;
}
.hp-ht_15pc {
  height: 15% !important;
}
.hp-ht_16pc {
  height: 16% !important;
}
.hp-ht_17pc {
  height: 17% !important;
}
.hp-ht_18pc {
  height: 18% !important;
}
.hp-ht_19pc {
  height: 19% !important;
}
.hp-ht_20pc {
  height: 20% !important;
}
.hp-ht_25pc {
  height: 25% !important;
}
.hp-ht_30pc {
  height: 30% !important;
}
.hp-ht_31pc {
  height: 31% !important;
}
.hp-ht_32pc {
  height: 32% !important;
}
.hp-ht_33pc {
  height: 33.3333333333% !important;
}
.hp-ht_34pc {
  height: 34% !important;
}
.hp-ht_35pc {
  height: 35% !important;
}
.hp-ht_36pc {
  height: 36% !important;
}
.hp-ht_37pc {
  height: 37% !important;
}
.hp-ht_38pc {
  height: 38% !important;
}
.hp-ht_39pc {
  height: 39% !important;
}
.hp-ht_40pc {
  height: 40% !important;
}
.hp-ht_41pc {
  height: 41% !important;
}
.hp-ht_42pc {
  height: 42% !important;
}
.hp-ht_43pc {
  height: 43% !important;
}
.hp-ht_44pc {
  height: 44% !important;
}
.hp-ht_45pc {
  height: 45% !important;
}
.hp-ht_46pc {
  height: 46% !important;
}
.hp-ht_47pc {
  height: 47% !important;
}
.hp-ht_48pc {
  height: 48% !important;
}
.hp-ht_49pc {
  height: 49% !important;
}
.hp-ht_50pc {
  height: 50% !important;
}
.hp-ht_55pc {
  height: 55% !important;
}
.hp-ht_60pc {
  height: 60% !important;
}
.hp-ht_65pc {
  height: 65% !important;
}
.hp-ht_70pc {
  height: 70% !important;
}
.hp-ht_75pc {
  height: 75% !important;
}
.hp-ht_80pc {
  height: 80% !important;
}
.hp-ht_85pc {
  height: 85% !important;
}
.hp-ht_90pc {
  height: 90% !important;
}
.hp-ht_95pc {
  height: 95% !important;
}
.hp-ht_100pc {
  height: 100% !important;
}
@media screen and (min-width: 769px), print {
  .hp-ht_auto_pc {
    height: auto !important;
  }
  .hp-ht_20px_pc {
    height: 20px !important;
  }
  .hp-ht_30px_pc {
    height: 30px !important;
  }
  .hp-ht_40px_pc {
    height: 40px !important;
  }
  .hp-ht_50px_pc {
    height: 50px !important;
  }
  .hp-ht_60px_pc {
    height: 60px !important;
  }
  .hp-ht_70px_pc {
    height: 70px !important;
  }
  .hp-ht_80px_pc {
    height: 80px !important;
  }
  .hp-ht_90px_pc {
    height: 90px !important;
  }
  .hp-ht_100px_pc {
    height: 100px !important;
  }
  .hp-ht_110px_pc {
    height: 110px !important;
  }
  .hp-ht_120px_pc {
    height: 120px !important;
  }
  .hp-ht_130px_pc {
    height: 130px !important;
  }
  .hp-ht_140px_pc {
    height: 140px !important;
  }
  .hp-ht_150px_pc {
    height: 150px !important;
  }
  .hp-ht_160px_pc {
    height: 160px !important;
  }
  .hp-ht_170px_pc {
    height: 170px !important;
  }
  .hp-ht_180px_pc {
    height: 180px !important;
  }
  .hp-ht_190px_pc {
    height: 190px !important;
  }
  .hp-ht_200px_pc {
    height: 200px !important;
  }
  .hp-ht_210px_pc {
    height: 210px !important;
  }
  .hp-ht_220px_pc {
    height: 220px !important;
  }
  .hp-ht_230px_pc {
    height: 230px !important;
  }
  .hp-ht_240px_pc {
    height: 240px !important;
  }
  .hp-ht_250px_pc {
    height: 250px !important;
  }
  .hp-ht_260px_pc {
    height: 260px !important;
  }
  .hp-ht_270px_pc {
    height: 270px !important;
  }
  .hp-ht_280px_pc {
    height: 280px !important;
  }
  .hp-ht_290px_pc {
    height: 290px !important;
  }
  .hp-ht_300px_pc {
    height: 300px !important;
  }
  .hp-ht_310px_pc {
    height: 310px !important;
  }
  .hp-ht_320px_pc {
    height: 320px !important;
  }
  .hp-ht_330px_pc {
    height: 330px !important;
  }
  .hp-ht_340px_pc {
    height: 340px !important;
  }
  .hp-ht_350px_pc {
    height: 350px !important;
  }
  .hp-ht_360px_pc {
    height: 360px !important;
  }
  .hp-ht_370px_pc {
    height: 370px !important;
  }
  .hp-ht_380px_pc {
    height: 380px !important;
  }
  .hp-ht_390px_pc {
    height: 390px !important;
  }
  .hp-ht_400px_pc {
    height: 400px !important;
  }
  .hp-ht_410px_pc {
    height: 410px !important;
  }
  .hp-ht_420px_pc {
    height: 420px !important;
  }
  .hp-ht_430px_pc {
    height: 430px !important;
  }
  .hp-ht_440px_pc {
    height: 440px !important;
  }
  .hp-ht_450px_pc {
    height: 450px !important;
  }
  .hp-ht_460px_pc {
    height: 460px !important;
  }
  .hp-ht_470px_pc {
    height: 470px !important;
  }
  .hp-ht_480px_pc {
    height: 480px !important;
  }
  .hp-ht_490px_pc {
    height: 490px !important;
  }
  .hp-ht_500px_pc {
    height: 500px !important;
  }
  .hp-ht_510px_pc {
    height: 510px !important;
  }
  .hp-ht_520px_pc {
    height: 520px !important;
  }
  .hp-ht_530px_pc {
    height: 530px !important;
  }
  .hp-ht_540px_pc {
    height: 540px !important;
  }
  .hp-ht_550px_pc {
    height: 550px !important;
  }
  .hp-ht_560px_pc {
    height: 560px !important;
  }
  .hp-ht_570px_pc {
    height: 570px !important;
  }
  .hp-ht_580px_pc {
    height: 580px !important;
  }
  .hp-ht_590px_pc {
    height: 590px !important;
  }
  .hp-ht_600px_pc {
    height: 600px !important;
  }
  .hp-ht_610px_pc {
    height: 610px !important;
  }
  .hp-ht_620px_pc {
    height: 620px !important;
  }
  .hp-ht_630px_pc {
    height: 630px !important;
  }
  .hp-ht_640px_pc {
    height: 640px !important;
  }
  .hp-ht_650px_pc {
    height: 650px !important;
  }
  .hp-ht_660px_pc {
    height: 660px !important;
  }
  .hp-ht_670px_pc {
    height: 670px !important;
  }
  .hp-ht_680px_pc {
    height: 680px !important;
  }
  .hp-ht_690px_pc {
    height: 690px !important;
  }
  .hp-ht_700px_pc {
    height: 700px !important;
  }
  .hp-ht_710px_pc {
    height: 710px !important;
  }
  .hp-ht_720px_pc {
    height: 720px !important;
  }
  .hp-ht_730px_pc {
    height: 730px !important;
  }
  .hp-ht_740px_pc {
    height: 740px !important;
  }
  .hp-ht_750px_pc {
    height: 750px !important;
  }
  .hp-ht_760px_pc {
    height: 760px !important;
  }
  .hp-ht_770px_pc {
    height: 770px !important;
  }
  .hp-ht_780px_pc {
    height: 780px !important;
  }
  .hp-ht_790px_pc {
    height: 790px !important;
  }
  .hp-ht_800px_pc {
    height: 800px !important;
  }
  .hp-ht_810px_pc {
    height: 810px !important;
  }
  .hp-ht_820px_pc {
    height: 820px !important;
  }
  .hp-ht_830px_pc {
    height: 830px !important;
  }
  .hp-ht_840px_pc {
    height: 840px !important;
  }
  .hp-ht_850px_pc {
    height: 850px !important;
  }
  .hp-ht_860px_pc {
    height: 860px !important;
  }
  .hp-ht_870px_pc {
    height: 870px !important;
  }
  .hp-ht_880px_pc {
    height: 880px !important;
  }
  .hp-ht_890px_pc {
    height: 890px !important;
  }
  .hp-ht_900px_pc {
    height: 900px !important;
  }
  .hp-ht_910px_pc {
    height: 910px !important;
  }
  .hp-ht_920px_pc {
    height: 920px !important;
  }
  .hp-ht_930px_pc {
    height: 930px !important;
  }
  .hp-ht_940px_pc {
    height: 940px !important;
  }
  .hp-ht_950px_pc {
    height: 950px !important;
  }
  .hp-ht_960px_pc {
    height: 960px !important;
  }
  .hp-ht_970px_pc {
    height: 970px !important;
  }
  .hp-ht_980px_pc {
    height: 980px !important;
  }
  .hp-ht_990px_pc {
    height: 990px !important;
  }
  .hp-ht_spx_pc {
    height: 1000px !important;
  }
  .hp-ht_5pc_pc {
    height: 5% !important;
  }
  .hp-ht_10pc_pc {
    height: 10% !important;
  }
  .hp-ht_15pc_pc {
    height: 15% !important;
  }
  .hp-ht_20pc_pc {
    height: 20% !important;
  }
  .hp-ht_25pc_pc {
    height: 25% !important;
  }
  .hp-ht_30pc_pc {
    height: 30% !important;
  }
  .hp-ht_35pc_pc {
    height: 35% !important;
  }
  .hp-ht_40pc_pc {
    height: 40% !important;
  }
  .hp-ht_45pc_pc {
    height: 45% !important;
  }
  .hp-ht_50pc_pc {
    height: 50% !important;
  }
  .hp-ht_55pc_pc {
    height: 55% !important;
  }
  .hp-ht_60pc_pc {
    height: 60% !important;
  }
  .hp-ht_65pc_pc {
    height: 65% !important;
  }
  .hp-ht_70pc_pc {
    height: 70% !important;
  }
  .hp-ht_75pc_pc {
    height: 75% !important;
  }
  .hp-ht_80pc_pc {
    height: 80% !important;
  }
  .hp-ht_85pc_pc {
    height: 85% !important;
  }
  .hp-ht_90pc_pc {
    height: 90% !important;
  }
  .hp-ht_95pc_pc {
    height: 95% !important;
  }
  .hp-ht_100pc_pc {
    height: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-ht_auto_sp {
    height: auto !important;
  }
  .hp-ht_20px_sp {
    height: 20px !important;
  }
  .hp-ht_30px_sp {
    height: 30px !important;
  }
  .hp-ht_40px_sp {
    height: 40px !important;
  }
  .hp-ht_50px_sp {
    height: 50px !important;
  }
  .hp-ht_60px_sp {
    height: 60px !important;
  }
  .hp-ht_70px_sp {
    height: 70px !important;
  }
  .hp-ht_80px_sp {
    height: 80px !important;
  }
  .hp-ht_90px_sp {
    height: 90px !important;
  }
  .hp-ht_100px_sp {
    height: 100px !important;
  }
  .hp-ht_110px_sp {
    height: 110px !important;
  }
  .hp-ht_120px_sp {
    height: 120px !important;
  }
  .hp-ht_130px_sp {
    height: 130px !important;
  }
  .hp-ht_140px_sp {
    height: 140px !important;
  }
  .hp-ht_150px_sp {
    height: 150px !important;
  }
  .hp-ht_160px_sp {
    height: 160px !important;
  }
  .hp-ht_170px_sp {
    height: 170px !important;
  }
  .hp-ht_180px_sp {
    height: 180px !important;
  }
  .hp-ht_190px_sp {
    height: 190px !important;
  }
  .hp-ht_200px_sp {
    height: 200px !important;
  }
  .hp-ht_210px_sp {
    height: 210px !important;
  }
  .hp-ht_220px_sp {
    height: 220px !important;
  }
  .hp-ht_230px_sp {
    height: 230px !important;
  }
  .hp-ht_240px_sp {
    height: 240px !important;
  }
  .hp-ht_250px_sp {
    height: 250px !important;
  }
  .hp-ht_260px_sp {
    height: 260px !important;
  }
  .hp-ht_270px_sp {
    height: 270px !important;
  }
  .hp-ht_280px_sp {
    height: 280px !important;
  }
  .hp-ht_290px_sp {
    height: 290px !important;
  }
  .hp-ht_300px_sp {
    height: 300px !important;
  }
  .hp-ht_310px_sp {
    height: 310px !important;
  }
  .hp-ht_320px_sp {
    height: 320px !important;
  }
  .hp-ht_330px_sp {
    height: 330px !important;
  }
  .hp-ht_340px_sp {
    height: 340px !important;
  }
  .hp-ht_350px_sp {
    height: 350px !important;
  }
  .hp-ht_360px_sp {
    height: 360px !important;
  }
  .hp-ht_370px_sp {
    height: 370px !important;
  }
  .hp-ht_380px_sp {
    height: 380px !important;
  }
  .hp-ht_390px_sp {
    height: 390px !important;
  }
  .hp-ht_400px_sp {
    height: 400px !important;
  }
  .hp-ht_410px_sp {
    height: 410px !important;
  }
  .hp-ht_420px_sp {
    height: 420px !important;
  }
  .hp-ht_430px_sp {
    height: 430px !important;
  }
  .hp-ht_440px_sp {
    height: 440px !important;
  }
  .hp-ht_450px_sp {
    height: 450px !important;
  }
  .hp-ht_460px_sp {
    height: 460px !important;
  }
  .hp-ht_470px_sp {
    height: 470px !important;
  }
  .hp-ht_480px_sp {
    height: 480px !important;
  }
  .hp-ht_490px_sp {
    height: 490px !important;
  }
  .hp-ht_500px_sp {
    height: 500px !important;
  }
  .hp-ht_510px_sp {
    height: 510px !important;
  }
  .hp-ht_520px_sp {
    height: 520px !important;
  }
  .hp-ht_530px_sp {
    height: 530px !important;
  }
  .hp-ht_540px_sp {
    height: 540px !important;
  }
  .hp-ht_550px_sp {
    height: 550px !important;
  }
  .hp-ht_560px_sp {
    height: 560px !important;
  }
  .hp-ht_570px_sp {
    height: 570px !important;
  }
  .hp-ht_580px_sp {
    height: 580px !important;
  }
  .hp-ht_590px_sp {
    height: 590px !important;
  }
  .hp-ht_600px_sp {
    height: 600px !important;
  }
  .hp-ht_610px_sp {
    height: 610px !important;
  }
  .hp-ht_620px_sp {
    height: 620px !important;
  }
  .hp-ht_630px_sp {
    height: 630px !important;
  }
  .hp-ht_640px_sp {
    height: 640px !important;
  }
  .hp-ht_650px_sp {
    height: 650px !important;
  }
  .hp-ht_660px_sp {
    height: 660px !important;
  }
  .hp-ht_670px_sp {
    height: 670px !important;
  }
  .hp-ht_680px_sp {
    height: 680px !important;
  }
  .hp-ht_690px_sp {
    height: 690px !important;
  }
  .hp-ht_700px_sp {
    height: 700px !important;
  }
  .hp-ht_710px_sp {
    height: 710px !important;
  }
  .hp-ht_720px_sp {
    height: 720px !important;
  }
  .hp-ht_730px_sp {
    height: 730px !important;
  }
  .hp-ht_740px_sp {
    height: 740px !important;
  }
  .hp-ht_750px_sp {
    height: 750px !important;
  }
  .hp-ht_760px_sp {
    height: 760px !important;
  }
  .hp-ht_770px_sp {
    height: 770px !important;
  }
  .hp-ht_780px_sp {
    height: 780px !important;
  }
  .hp-ht_790px_sp {
    height: 790px !important;
  }
  .hp-ht_800px_sp {
    height: 800px !important;
  }
  .hp-ht_810px_sp {
    height: 810px !important;
  }
  .hp-ht_820px_sp {
    height: 820px !important;
  }
  .hp-ht_830px_sp {
    height: 830px !important;
  }
  .hp-ht_840px_sp {
    height: 840px !important;
  }
  .hp-ht_850px_sp {
    height: 850px !important;
  }
  .hp-ht_860px_sp {
    height: 860px !important;
  }
  .hp-ht_870px_sp {
    height: 870px !important;
  }
  .hp-ht_880px_sp {
    height: 880px !important;
  }
  .hp-ht_890px_sp {
    height: 890px !important;
  }
  .hp-ht_900px_sp {
    height: 900px !important;
  }
  .hp-ht_910px_sp {
    height: 910px !important;
  }
  .hp-ht_920px_sp {
    height: 920px !important;
  }
  .hp-ht_930px_sp {
    height: 930px !important;
  }
  .hp-ht_940px_sp {
    height: 940px !important;
  }
  .hp-ht_5pc_sp {
    height: 5% !important;
  }
  .hp-ht_10pc_sp {
    height: 10% !important;
  }
  .hp-ht_15pc_sp {
    height: 15% !important;
  }
  .hp-ht_20pc_sp {
    height: 20% !important;
  }
  .hp-ht_25pc_sp {
    height: 25% !important;
  }
  .hp-ht_30pc_sp {
    height: 30% !important;
  }
  .hp-ht_35pc_sp {
    height: 35% !important;
  }
  .hp-ht_40pc_sp {
    height: 40% !important;
  }
  .hp-ht_45pc_sp {
    height: 45% !important;
  }
  .hp-ht_50pc_sp {
    height: 50% !important;
  }
  .hp-ht_55pc_sp {
    height: 55% !important;
  }
  .hp-ht_60pc_sp {
    height: 60% !important;
  }
  .hp-ht_65pc_sp {
    height: 65% !important;
  }
  .hp-ht_70pc_sp {
    height: 70% !important;
  }
  .hp-ht_75pc_sp {
    height: 75% !important;
  }
  .hp-ht_80pc_sp {
    height: 80% !important;
  }
  .hp-ht_85pc_sp {
    height: 85% !important;
  }
  .hp-ht_90pc_sp {
    height: 90% !important;
  }
  .hp-ht_95pc_sp {
    height: 95% !important;
  }
  .hp-ht_100pc_sp {
    height: 100% !important;
  }
}
.hp-va_t {
  vertical-align: top !important;
}
.hp-va_m {
  vertical-align: middle !important;
}
.hp-va_b {
  vertical-align: bottom !important;
}
.hp-va_rl {
  -webkit-writing-mode: vertical-rl !important;
      -ms-writing-mode: tb-rl !important;
          writing-mode: vertical-rl !important;
}
.hp-dis_b {
  display: block !important;
}
.hp-dis_ib {
  display: inline-block !important;
}
.hp-dis_i {
  display: inline !important;
}
@media screen and (min-width: 769px), print {
  .hp-dis_b_pc {
    display: block !important;
  }
  .hp-dis_ib_pc {
    display: inline-block !important;
  }
  .hp-dis_i_pc {
    display: inline !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-dis_b_sp {
    display: block !important;
  }
  .hp-dis_ib_sp {
    display: inline-block !important;
  }
  .hp-dis_i_sp {
    display: inline !important;
  }
}
.hp-bg_tp {
  background: transparent !important;
}
.hp-bg_bk {
  background: var(--color-txt) !important;
}
.hp-bg_wh {
  background: #fff !important;
}
.hp-bd_bk {
  border: solid 1px var(--color-txt) !important;
}
.hp-bd_gr {
  border: solid 1px var(--color-main) !important;
}
.hp-bd_gray {
  border: solid 1px var(--color-gray9) !important;
}
.hp-bd_gray {
  border: solid 1px var(--color-grayC) !important;
}
.hp-bd_rd5 {
  border-radius: 5px !important;
}
.hp-bd_rd10 {
  border-radius: 10px !important;
}
.hp-bd_rd15 {
  border-radius: 15px !important;
}
.hp-bd_top_grayC {
  border-top: solid 1px var(--color-grayC) !important;
}
.hp-bd_right_grayC {
  border-right: solid 1px var(--color-grayC) !important;
}
.hp-bd_bottom_grayC {
  border-bottom: solid 1px var(--color-grayC) !important;
}
.hp-bd_left_grayC {
  border-left: solid 1px var(--color-grayC) !important;
}
.hp-float_l {
  float: left !important;
}
.hp-float_r {
  float: right !important;
}
@media screen and (min-width: 769px), print {
  .hp-float_l_pc {
    float: left !important;
  }
  .hp-float_r_pc {
    float: right !important;
  }
}
.hp-clearfix::after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden;
}
.hp-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.hp-flex_jc {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.hp-flex_jb {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}
.hp-flex_ja {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important;
}
.hp-flex_js {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}
.hp-flex_je {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}
.hp-flex_ac {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.hp-flex_ae {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}
.hp-flex_wp {
  -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
}
.hp-flex_cl {
  display: inherit !important;
}
.hp-flex_fx1 {
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
}
@media screen and (min-width: 769px), print {
  .hp-flex_pc {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-flex_cl_sp {
    display: inherit !important;
  }
  .hp-flex_jc_sp {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}
.hp-gap_10 {
  gap: 10px !important;
}
.hp-gap_20 {
  gap: 20px !important;
}
.hp-gap_30 {
  gap: 30px !important;
}
.hp-gap_40 {
  gap: 40px !important;
}
.hp-gap_50 {
  gap: 50px !important;
}
.hp-gap_60 {
  gap: 50px !important;
}
.hp-gap_70 {
  gap: 50px !important;
}
.hp-gap_80 {
  gap: 50px !important;
}
.hp-gap_90 {
  gap: 50px !important;
}
.hp-gap_100 {
  gap: 50px !important;
}
.hp-hover_op {
  -webkit-transition: var(--trans-min02);
  transition: var(--trans-min02);
}
.hp-hover_op:hover {
  opacity: 0.8;
}
.hp-brSp, .hp-spOnly, .hp-imgSp, .hp-brTab, .hp-tabOnly, .hp-imgTab {
  display: none !important;
}
@media screen and (max-width: 1400px) and (min-width: 769px), print {
  .hp-brTab {
    display: inline !important;
  }
  .hp-tabOnly {
    display: block !important;
  }
  .hp-tabNone {
    display: none !important;
  }
  .hp-imgTab {
    display: inline !important;
  }
}
@media screen and (max-width: 768px) {
  .hp-brPc {
    display: none !important;
  }
  .hp-brSp {
    display: inline !important;
  }
  .hp-pcOnly {
    display: none !important;
  }
  .hp-spOnly {
    display: block !important;
  }
  .hp-spNone {
    display: none !important;
  }
  .hp-imgPc {
    display: none !important;
  }
  .hp-imgSp {
    display: inline !important;
  }
}
.hp-visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

/* /_hp.css
-----------------------------------------------------------------*/
/* _base.scss
-------------------------------------------------------*/
body {
  margin: 0 auto;
  min-width: 1240px;
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  color: var(--color-txt);
  font-family: var(--font-base);
}
@media screen and (max-width: 768px) {
  body {
    min-width: 0;
    font-size: 0.9375rem;
  }
}
@media print {
  body {
    zoom: 0.8;
  }
}

:root {
  interpolate-size: allow-keywords; /* サイズキーワードによるアニメーションを許可 */
}

main {
  display: block;
  overflow-x: clip;
}

/* /_base.scss
-------------------------------------------------------*/
/* _header.scss
-------------------------------------------------------*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  padding-top: 24px;
  z-index: 80;
  width: 100%;
}
.header-inner {
  pointer-events: all;
  width: min(1400px, 100% - 40px);
  min-width: 1200px;
  margin-inline: auto;
  height: 95px;
  background-color: #FFF;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 103px;
  padding: 16px 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header-logo {
  width: 185px;
  line-height: 1;
}
.header-nav {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}
@media screen and (min-width: 769px), print {
  .header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 769px), print {
  .header-linklist {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-linklist_item {
  position: relative;
  text-align: center;
}
.header-linklist_item:not(:nth-child(1)) {
  padding-left: 60px;
}
.header-linklist_item:not(:nth-child(1))::before {
  content: "";
  width: 1px;
  height: 38px;
  background-color: #D9D9D9;
  display: inline-block;
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-linklist_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.header-linklist_item a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color-sub);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  opacity: 0;
  -webkit-transition: scale 0.2s, opacity 0.2s;
  transition: scale 0.2s, opacity 0.2s;
}
.header-linklist_item a:hover::after {
  scale: 5;
  opacity: 0.8;
}
.header-linklist_en {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
}
.header-linklist_ja {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0A72C5;
}
.header-btn {
  width: 180px;
}
.header-btn_inner {
  height: 48px;
  background-color: var(--color-main);
  color: #FFF;
  border-radius: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  -webkit-box-shadow: 0 6px 16px rgba(0, 114, 197, 0.16);
          box-shadow: 0 6px 16px rgba(0, 114, 197, 0.16);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.header-btn_inner::before {
  content: "";
  position: absolute;
  inset: -35% -18%;
  background: -webkit-linear-gradient(320deg, #0a72c5 0%, #2e9cff 45%, #6bc7ff 70%, #0a72c5 100%);
  background: linear-gradient(130deg, #0a72c5 0%, #2e9cff 45%, #6bc7ff 70%, #0a72c5 100%);
  border-radius: 48% 52% 44% 56%/52% 44% 56% 48%;
  z-index: 0;
  -webkit-transform: scale(0.72) rotate(-2deg);
          transform: scale(0.72) rotate(-2deg);
  opacity: 0;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: transform 0.45s ease, opacity 0.45s ease;
  transition: transform 0.45s ease, opacity 0.45s ease, -webkit-transform 0.45s ease;
}
.header-btn_inner::after {
  content: "";
  position: absolute;
  inset: -55% -30%;
  background: conic-gradient(from 120deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  -webkit-filter: blur(14px);
          filter: blur(14px);
  z-index: 0;
  opacity: 0;
  -webkit-transform: scale(0.5) rotate(-10deg);
          transform: scale(0.5) rotate(-10deg);
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.45s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.45s ease;
  transition: transform 0.6s ease, opacity 0.45s ease, -webkit-transform 0.6s ease;
}
.header-btn_inner:hover {
  -webkit-transform: translateY(-1.5px);
          transform: translateY(-1.5px);
  -webkit-box-shadow: 0 10px 22px rgba(0, 114, 197, 0.2);
          box-shadow: 0 10px 22px rgba(0, 114, 197, 0.2);
}
.header-btn_inner:hover::before {
  opacity: 0.9;
  -webkit-transform: scale(1.12) rotate(1deg);
          transform: scale(1.12) rotate(1deg);
  -webkit-animation: header-btn-morph 5s ease-in-out infinite;
          animation: header-btn-morph 5s ease-in-out infinite;
}
.header-btn_inner:hover::after {
  opacity: 0.55;
  -webkit-transform: scale(1.05) rotate(45deg);
          transform: scale(1.05) rotate(45deg);
  -webkit-animation: header-btn-shine 3.4s linear infinite;
          animation: header-btn-shine 3.4s linear infinite;
}
.header-btn_icon {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 52/31;
  background-color: #FFF;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/mail.svg");
          mask-image: url("../images/mail.svg");
  margin-right: 7px;
  position: relative;
  z-index: 1;
}
.header-btn_text {
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@-webkit-keyframes header-btn-morph {
  0% {
    border-radius: 48% 52% 44% 56%/52% 44% 56% 48%;
    -webkit-transform: scale(1.06) rotate(-3deg);
            transform: scale(1.06) rotate(-3deg);
  }
  33% {
    border-radius: 56% 44% 50% 50%/50% 56% 44% 50%;
    -webkit-transform: scale(1.12) rotate(2deg);
            transform: scale(1.12) rotate(2deg);
  }
  66% {
    border-radius: 44% 56% 58% 42%/60% 42% 58% 40%;
    -webkit-transform: scale(1.08) rotate(-1deg);
            transform: scale(1.08) rotate(-1deg);
  }
  100% {
    border-radius: 48% 52% 44% 56%/52% 44% 56% 48%;
    -webkit-transform: scale(1.06) rotate(-3deg);
            transform: scale(1.06) rotate(-3deg);
  }
}
@keyframes header-btn-morph {
  0% {
    border-radius: 48% 52% 44% 56%/52% 44% 56% 48%;
    -webkit-transform: scale(1.06) rotate(-3deg);
            transform: scale(1.06) rotate(-3deg);
  }
  33% {
    border-radius: 56% 44% 50% 50%/50% 56% 44% 50%;
    -webkit-transform: scale(1.12) rotate(2deg);
            transform: scale(1.12) rotate(2deg);
  }
  66% {
    border-radius: 44% 56% 58% 42%/60% 42% 58% 40%;
    -webkit-transform: scale(1.08) rotate(-1deg);
            transform: scale(1.08) rotate(-1deg);
  }
  100% {
    border-radius: 48% 52% 44% 56%/52% 44% 56% 48%;
    -webkit-transform: scale(1.06) rotate(-3deg);
            transform: scale(1.06) rotate(-3deg);
  }
}
@-webkit-keyframes header-btn-shine {
  0% {
    opacity: 0.3;
    -webkit-transform: scale(1.02) rotate(0deg);
            transform: scale(1.02) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(1.12) rotate(120deg);
            transform: scale(1.12) rotate(120deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: scale(1.02) rotate(240deg);
            transform: scale(1.02) rotate(240deg);
  }
}
@keyframes header-btn-shine {
  0% {
    opacity: 0.3;
    -webkit-transform: scale(1.02) rotate(0deg);
            transform: scale(1.02) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(1.12) rotate(120deg);
            transform: scale(1.12) rotate(120deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: scale(1.02) rotate(240deg);
            transform: scale(1.02) rotate(240deg);
  }
}
.header-close {
  display: none;
}
@media screen and (max-width: 1400px) and (min-width: 769px), print {
  .header-inner {
    height: 95px;
    padding: 16px 30px;
  }
  .header-logo {
    width: 160px;
  }
  .header-nav {
    gap: 20px;
  }
  .header-linklist_item:not(:nth-child(1)) {
    padding-left: 40px;
  }
  .header-linklist_item:not(:nth-child(1))::before {
    height: 38px;
    left: 21px;
  }
  .header-linklist_en {
    font-size: 1.125rem;
  }
  .header-linklist_ja {
    font-size: 0.75rem;
  }
  .header-btn {
    width: 160px;
  }
  .header-btn_inner {
    height: 42px;
  }
  .header-btn_icon {
    width: 22px;
  }
  .header-btn_text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding-top: 0;
  }
  .header-inner {
    width: 100%;
    min-width: 100%;
    height: 48px;
    border-radius: 0 0 8px 8px;
    padding: 8px 14px;
  }
  .header-logo {
    width: 85px;
  }
  .header-main {
    overflow: hidden;
    height: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: height 0.2s ease-out, visibility 0.2s;
    transition: height 0.2s ease-out, visibility 0.2s;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  .header-main.is-active {
    overflow: visible;
    height: auto;
    height: calc-size(auto, size);
    visibility: visible;
    pointer-events: all;
  }
  .header-nav {
    background-color: #FFF;
    height: 100svh;
    padding: 68px 20px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header-linklist_item {
    text-align: left;
    padding: 0 12px 12px;
    border-bottom: #B9C2C8 solid 1px;
  }
  .header-linklist_item:not(:nth-child(1)) {
    padding-left: 12px;
  }
  .header-linklist_item:not(:nth-child(1))::before {
    display: none;
  }
  .header-linklist_item + .header-linklist_item {
    margin-top: 12px;
  }
  .header-linklist_item a {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header-linklist_item a::after {
    right: auto;
  }
  .header-linklist_item a::before {
    content: "";
    display: block;
    aspect-ratio: 21/11;
    width: 16px;
    background: url(../images/arrow_step.svg) center/contain no-repeat;
    rotate: -90deg;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header-linklist_en {
    font-size: 1.125rem;
  }
  .header-linklist_ja {
    font-size: 0.75rem;
  }
  .header-btn {
    width: 180px;
    margin: 30px auto 0;
  }
  .header-btn_icon {
    width: 22px;
    margin-right: 7px;
  }
  .header-btn_text {
    font-size: 1rem;
    font-weight: 700;
  }
  .header-close {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px auto 0;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header-close_icon {
    width: 0.75rem;
    height: 0.75rem;
    -webkit-mask: url(../images/close.svg) center/100% no-repeat;
            mask: url(../images/close.svg) center/100% no-repeat;
    background-color: var(--color-txt);
    margin-right: 10px;
  }
}

/* メニュー */
.headerMenu {
  position: absolute;
  right: 14px;
  top: 9px;
  margin: auto;
}
.headerMenu_btn {
  aspect-ratio: 1;
  width: 30px;
  background-color: var(--color-main);
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
}
.headerMenu_btn-icon {
  display: inline-block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 1.0625rem;
  height: 0.75rem;
  -webkit-mask: url(../images/menu.svg) center/100% no-repeat;
          mask: url(../images/menu.svg) center/100% no-repeat;
  background-color: #FFF;
}
.is-gnav-open .headerMenu_btn-icon {
  -webkit-mask: url(../images/close.svg) center/100% no-repeat;
          mask: url(../images/close.svg) center/100% no-repeat;
}
@media screen and (min-width: 769px), print {
  .headerMenu {
    display: none;
  }
}

/* /_header.scss
-------------------------------------------------------*/
/* _footer.scss
-------------------------------------------------------*/
.footer {
  overflow-x: clip;
}
.footer::before {
  content: "";
  display: block;
  width: calc(100% - 60px);
  height: 1px;
  margin: auto;
  background-color: #B9C2C8;
}
.footer-top {
  padding: 20px 0 0;
  margin-right: 200px;
  position: relative;
}
.footer-top_inner {
  width: min(1420px, 100% - 40px);
  margin: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  position: relative;
  padding-bottom: 30px;
}
@media screen and (min-width: 769px), print {
  .footer-top_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-top_inner::after {
  content: "";
  aspect-ratio: 248/286;
  width: 248px;
  background: url(../images/parts_footer_01.svg) center/contain no-repeat;
  position: absolute;
  right: 0;
  bottom: -25px;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  pointer-events: none;
}
.footer-top_left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer-top_text {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 1.4px;
}
.footer-top_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.footer-top_nav-item {
  font-size: 0.875rem;
  color: var(--color-txt);
  line-height: 1.6;
  letter-spacing: 1.4px;
}
.footer-top_nav-item:not(:nth-child(1))::before {
  content: "";
  width: 0.5px;
  height: 16.5px;
  background-color: var(--color-txt);
  display: inline-block;
  vertical-align: -3px;
  margin: 0 20px;
}
.footer-top_nav-item a {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer-top_nav-item a:hover, a:hover .footer-top_nav-item a {
  text-decoration: underline;
  -webkit-text-decoration-color: inherit;
          text-decoration-color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.footer-copy {
  background-color: var(--color-sub);
  text-align: center;
  padding: 11px 20px;
}
.footer-copy_text {
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  .footer::before {
    width: calc(100% - 40px);
  }
  .footer-top {
    width: 100%;
    margin-right: 0;
  }
  .footer-top_inner::after {
    width: 120px;
    bottom: -10px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .footer-top_text {
    font-size: 0.75rem;
  }
  .footer-top_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    margin-top: 40px;
  }
  .footer-top_nav-item {
    font-size: 0.8125rem;
  }
  .footer-top_nav-item:not(:nth-child(1))::before {
    display: none;
  }
  .footer-copy_text {
    font-size: 0.625rem;
    line-height: 1.6;
  }
}

/* backhead */
.backhead {
  position: fixed;
  right: 10px;
  bottom: 20px;
  width: 89px;
  pointer-events: none;
  opacity: 0;
  z-index: 50;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.2s, -webkit-transform 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.2s, transform 0.25s ease, filter 0.25s ease;
  transition: opacity 0.2s, transform 0.25s ease, filter 0.25s ease, -webkit-transform 0.25s ease, -webkit-filter 0.25s ease;
}
.backhead.is-visible {
  opacity: 1;
  pointer-events: all;
}
.backhead a {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-filter: drop-shadow(0 6px 14px rgba(0, 114, 197, 0.12));
          filter: drop-shadow(0 6px 14px rgba(0, 114, 197, 0.12));
}
.backhead a:hover {
  -webkit-transform: translateY(-3px) scale(1.02);
          transform: translateY(-3px) scale(1.02);
  -webkit-filter: drop-shadow(0 10px 22px rgba(0, 114, 197, 0.18));
          filter: drop-shadow(0 10px 22px rgba(0, 114, 197, 0.18));
}
.backhead a:active {
  -webkit-transform: translateY(0) scale(0.99);
          transform: translateY(0) scale(0.99);
  -webkit-filter: drop-shadow(0 4px 10px rgba(0, 114, 197, 0.18));
          filter: drop-shadow(0 4px 10px rgba(0, 114, 197, 0.18));
}
@media screen and (max-width: 768px) {
  .backhead {
    width: 42px;
    right: 10px;
  }
  .backhead a:hover {
    -webkit-transform: translateY(-2px) scale(1.01);
            transform: translateY(-2px) scale(1.01);
  }
}

/* /_footer.scss
-------------------------------------------------------*/
/* _page.scss
-------------------------------------------------------*/
/* アイコン */
.c-icon {
  width: 0.95em;
  aspect-ratio: 1;
  display: inline-block;
  margin: 0 8px;
  vertical-align: -0.05em;
}
.c-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-txt);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.c-icon--blank::before {
  -webkit-mask-image: url("../images/blank.svg");
          mask-image: url("../images/blank.svg");
}
.c-icon--pdf::before {
  -webkit-mask-image: url("../images/pdf.svg");
          mask-image: url("../images/pdf.svg");
}
.c-icon--prev::before {
  -webkit-mask-image: url("../images/prev.svg");
          mask-image: url("../images/prev.svg");
}
.c-icon--next::before {
  -webkit-mask-image: url("../images/next.svg");
          mask-image: url("../images/next.svg");
}
.c-icon--mail::before {
  -webkit-mask-image: url("../images/mail.svg");
          mask-image: url("../images/mail.svg");
}
.c-icon--arrow-r::before {
  -webkit-mask-image: url("../images/arrow_r.svg");
          mask-image: url("../images/arrow_r.svg");
}
.c-icon--tel::before {
  -webkit-mask-image: url("../images/phone.svg");
          mask-image: url("../images/phone.svg");
}
.c-icon--check::before {
  -webkit-mask-image: url("../images/check.svg");
          mask-image: url("../images/check.svg");
}
.c-icon--c-w::before {
  background-color: #FFF !important;
}
.c-icon--c-main::before {
  background-color: var(--color-main);
}

/* タイトル */
.c-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 70px;
  padding-left: 90px;
  position: relative;
}
.c-title--l {
  margin-left: 0;
}
.c-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  aspect-ratio: 65/38;
  width: 65px;
  background: url(../images/title_icon_01.svg) center/contain no-repeat;
}
.c-title--c2::before {
  background-image: url(../images/title_icon_02.svg);
}
.c-title_en {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1.26;
}
.c-title_ja {
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  .c-title {
    margin-bottom: 40px;
    padding-left: 62px;
  }
  .c-title::before {
    width: 50px;
  }
  .c-title_en {
    font-size: 2.125rem;
    letter-spacing: 3px;
  }
  .c-title_ja {
    font-size: 1.125rem;
  }
}

/* リード文 */
.c-lead {
  font-size: 1.375rem;
  letter-spacing: 2.2px;
  text-align: center;
  line-height: 1.87;
}
@media screen and (max-width: 768px) {
  .c-lead {
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-align: left;
  }
}

/* mv */
.mv {
  position: relative;
  z-index: 30;
  padding-top: 160px;
}
.mv-bg {
  display: block;
  aspect-ratio: 1668/1028;
  width: min(1668px, 96%);
  position: absolute;
  right: 0;
  top: 0;
}
.mv-title {
  color: var(--color-main);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 6px;
  white-space: nowrap;
  position: relative;
  margin-bottom: 12%;
  display: inline-block;
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-animation: mv-title-reveal 1s cubic-bezier(0.2, 0.85, 0.3, 1.05) forwards;
          animation: mv-title-reveal 1s cubic-bezier(0.2, 0.85, 0.3, 1.05) forwards;
  will-change: transform, clip-path, opacity;
}
.mv-title--l {
  font-family: var(--font-sub);
  font-size: 4.375rem;
  letter-spacing: 9px;
  display: inline-block;
  opacity: 0;
  -webkit-animation: mv-title-pop 0.9s cubic-bezier(0.2, 0.85, 0.32, 1.06) forwards;
          animation: mv-title-pop 0.9s cubic-bezier(0.2, 0.85, 0.32, 1.06) forwards;
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
  will-change: transform, opacity;
}
.mv-title--num {
  font-family: var(--font-num);
  font-weight: 700;
  display: inline-block;
  opacity: 0;
  -webkit-animation: mv-title-pop 0.9s cubic-bezier(0.2, 0.85, 0.32, 1.06) forwards;
          animation: mv-title-pop 0.9s cubic-bezier(0.2, 0.85, 0.32, 1.06) forwards;
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
  will-change: transform, opacity;
}
.mv-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px), print {
  .mv-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.mv-box {
  min-width: min(1125px, 82%);
  margin-left: -50px;
  position: relative;
}
.mv-box::after {
  content: "";
  aspect-ratio: 150/289;
  width: 13.33%;
  background: url(../images/parts_mv_02.svg) center/contain no-repeat;
  position: absolute;
  right: 48px;
  bottom: -48px;
}
.mv-box_image {
  position: relative;
}
.mv-box_video {
  position: absolute;
  top: 2.3%;
  left: 11.52%;
  width: 77.1555555556%;
  aspect-ratio: 868/544;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  background: #000;
}
.mv-box_video-inner {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv-scroll {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100dvh;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 20px;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.mv-scroll.is-hidden {
  opacity: 0;
}
.mv-scroll_text {
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 1.17px;
  color: var(--color-main);
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  -webkit-animation: mv-scroll-text 1.8s ease-in-out infinite;
          animation: mv-scroll-text 1.8s ease-in-out infinite;
}
.mv-scroll_inner::after {
  content: "";
  background-color: #0087FF;
  width: 2.5px;
  height: 65px;
  display: block;
  margin: auto;
  border-radius: 20px;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation: mv-scroll-bar 1.8s ease-in-out infinite;
          animation: mv-scroll-bar 1.8s ease-in-out infinite;
}
@-webkit-keyframes mv-scroll-text {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.6;
  }
  40% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  60% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0.7;
  }
}
@keyframes mv-scroll-text {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.6;
  }
  40% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  60% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0.7;
  }
}
@-webkit-keyframes mv-scroll-bar {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-transform: scaleY(1) translateY(6px);
            transform: scaleY(1) translateY(6px);
  }
  100% {
    -webkit-transform: scaleY(1) translateY(14px);
            transform: scaleY(1) translateY(14px);
    opacity: 0;
  }
}
@keyframes mv-scroll-bar {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-transform: scaleY(1) translateY(6px);
            transform: scaleY(1) translateY(6px);
  }
  100% {
    -webkit-transform: scaleY(1) translateY(14px);
            transform: scaleY(1) translateY(14px);
    opacity: 0;
  }
}
@-webkit-keyframes mv-title-reveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
    -webkit-transform: translateY(12px) skew(-1deg);
            transform: translateY(12px) skew(-1deg);
  }
  60% {
    -webkit-clip-path: inset(0 12% 0 0);
            clip-path: inset(0 12% 0 0);
    opacity: 1;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mv-title-reveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
    -webkit-transform: translateY(12px) skew(-1deg);
            transform: translateY(12px) skew(-1deg);
  }
  60% {
    -webkit-clip-path: inset(0 12% 0 0);
            clip-path: inset(0 12% 0 0);
    opacity: 1;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mv-title-pop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px) scale(0.96);
            transform: translateY(16px) scale(0.96);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-4px) scale(1.02);
            transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes mv-title-pop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px) scale(0.96);
            transform: translateY(16px) scale(0.96);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-4px) scale(1.02);
            transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media screen and (max-width: 1400px) and (min-width: 769px), print {
  .mv-box {
    min-width: min(1125px, 70%);
  }
  .mv-box::after {
    content: "";
    aspect-ratio: 150/289;
    width: 13.33%;
    background: url(../images/parts_mv_02.svg) center/contain no-repeat;
    position: absolute;
    right: 48px;
    bottom: -48px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    padding-top: 120px;
  }
  .mv-bg {
    display: block;
    aspect-ratio: 320/400;
    width: 100%;
    height: auto;
    max-height: 620px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .mv-bg img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
    width: 100%;
    height: 100%;
  }
  .mv-wrap {
    text-align: center;
  }
  .mv-title {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
  }
  .mv-title--l {
    font-size: 2.125rem;
    letter-spacing: 4px;
  }
  .mv-box {
    min-width: 0;
    width: min(600px, 100%);
    margin: 0 auto;
  }
  .mv-box::after {
    width: 16%;
    right: 3%;
    bottom: -10%;
  }
  .mv-box_video {
    top: 2.4%;
    border-radius: 2px;
  }
  .mv-scroll_text {
    font-size: 0.625rem;
    scale: 0.8;
    margin-bottom: 8px;
  }
  .mv-scroll_inner::after {
    width: 1.5px;
    height: 32px;
  }
}
@media screen and (orientation: landscape) {
  .mv .mv-bg {
    max-height: none;
    aspect-ratio: auto;
    height: 100%;
  }
}

/* コンセプト */
.concept {
  background-color: var(--color-sub);
  padding: 0 0 110px;
  position: relative;
}
.concept::before {
  content: "";
  aspect-ratio: 905/682;
  width: 905px;
  position: absolute;
  right: 0;
  bottom: 52px;
  background: url(../images/parts_concept_02.svg) center/contain no-repeat;
}
.concept-town {
  display: block;
  background-color: #FFF;
}
.concept-main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 10;
}
.concept-lead {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 6.3px;
  margin-bottom: 46px;
}
.concept-text {
  font-size: 1.375rem;
  line-height: 2;
  letter-spacing: 3.3px;
}
.concept-text ruby {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: bottom;
  ruby-align: center;
  margin-right: 8px;
}
.concept-text ruby rt {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: -0.8em;
  text-align: center;
}
.concept-text + .concept-text {
  margin-top: 50px;
}
.concept-text--box1 {
  position: relative;
  margin-left: 10px;
}
.concept-text--box1::before {
  content: "";
  position: absolute;
  width: 204px;
  height: 38px;
  left: -8px;
  top: -1px;
  background: url(../images/textbox_concept_01.svg) center/contain no-repeat;
}
.concept-text--box2 {
  position: relative;
  margin-left: 10px;
}
.concept-text--box2::before {
  content: "";
  position: absolute;
  width: 206px;
  height: 42px;
  left: -10px;
  top: -3px;
  background: url(../images/textbox_concept_02.svg) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .concept {
    padding: 0 0 170px;
  }
  .concept::before {
    width: min(320px, 50%);
    bottom: 30px;
  }
  .concept-main {
    width: min(560px, 100%);
  }
  .concept-lead {
    font-size: 1.625rem;
    line-height: 1.5;
    letter-spacing: 3px;
    margin-bottom: 30px;
  }
  .concept-text {
    font-size: 1.125rem;
    letter-spacing: 1.3px;
  }
  .concept-text ruby {
    margin-right: 7px;
  }
  .concept-text ruby rt {
    font-size: 0.6875rem;
  }
  .concept-text + .concept-text {
    margin-top: 30px;
  }
  .concept-text--box1::before {
    width: 170px;
    height: 31px;
    left: -10px;
    background-image: url(../images/textbox_concept_01_sp.svg);
  }
  .concept-text--box2::before {
    width: 169px;
    height: 31px;
    left: -10px;
    top: -1px;
    background-image: url(../images/textbox_concept_02_sp.svg);
  }
}

/* つながる */
.point {
  background-color: var(--color-sub);
  position: relative;
  padding: 0 0 235px;
}
.point::before {
  content: "";
  aspect-ratio: 1;
  width: 3432px;
  margin-left: calc(50% - 1716px);
  background-color: var(--color-sub2);
  position: absolute;
  left: 0;
  top: 110px;
  border-radius: 100%;
  -webkit-transform: scale(0.2);
          transform: scale(0.2);
  -webkit-transform-origin: center 40%;
          transform-origin: center 40%;
  -webkit-clip-path: circle(0 at 50% 50%);
          clip-path: circle(0 at 50% 50%);
  -webkit-animation: point-circle-reveal 1.2s cubic-bezier(0.25, 0.8, 0.2, 1) forwards;
          animation: point-circle-reveal 1.2s cubic-bezier(0.25, 0.8, 0.2, 1) forwards;
}
.point-touch {
  color: #8C8F32;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.point-touch::before, .point-touch::after {
  content: "";
  width: 1px;
  height: 34px;
  background-color: #8C8F32;
  display: inline-block;
}
.point-touch::before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  margin-right: 20px;
  vertical-align: -10px;
}
.point-touch::after {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  margin-left: 20px;
  vertical-align: -10px;
}
@-webkit-keyframes point-circle-reveal {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes point-circle-reveal {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
.point-panellist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 45px;
}
.point-panel {
  aspect-ratio: 1;
  width: 306px;
  border-radius: 100%;
  background-color: #FFF;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 10;
}
.point-panel--l {
  width: 366px;
  position: relative;
  z-index: 1;
}
.point-panel--l::before, .point-panel--l::after {
  content: "";
  aspect-ratio: 49/29;
  width: 49px;
  position: absolute;
  background: url(../images/arrow_point_01.svg) center/contain no-repeat;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: -1;
}
.point-panel--l::after {
  background-image: url(../images/arrow_point_02.svg);
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.point-panel_text {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
  margin-top: 22px;
}
.point-panel_text--l {
  font-size: 1.4375rem;
  letter-spacing: 3.45px;
  font-family: var(--font-sub);
}
.point-panel_text--m {
  font-size: 1.5rem;
}
.point-panel_text-logo {
  display: inline-block;
  margin-right: 6px;
  width: 90px;
}
.point-lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  margin: 60px auto 0;
  position: relative;
}
.point-lead::after {
  content: "";
  width: calc(100% + 40px);
  margin-left: -20px;
  display: block;
  height: 13.5px;
  border: var(--color-main) solid 1px;
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.point-lead::before {
  content: "";
  width: 11px;
  height: 7px;
  background-color: var(--color-main);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  rotate: 180deg;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.point-lead_text {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.2px;
  color: var(--color-main);
}
.point-lead_text--l {
  font-size: 1.875rem;
  letter-spacing: 4.5px;
}
.point-open {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #FFF;
  min-height: 80px;
  padding: 10px 28px 10px 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.point-open::before {
  content: "";
  aspect-ratio: 108/139;
  position: absolute;
  left: 0;
  top: 0;
  width: 108px;
  background: url(../images/parts_point_01.svg) center/contain no-repeat;
}
.point-open_text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .point {
    padding: 0 0 160px;
    overflow: hidden;
    isolation: isolate;
  }
  .point::before {
    width: 1200px;
    margin-left: calc(50% - 600px);
    top: 110px;
  }
  .point-touch {
    font-size: 1.125rem;
  }
  .point-touch::before, .point-touch::after {
    height: 30px;
  }
  .point-panellist {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
  }
  .point-panel {
    aspect-ratio: 1;
    width: min(200px, 50% - 10px);
  }
  .point-panel--l {
    width: min(300px, 70%);
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .point-panel--l::before, .point-panel--l::after {
    width: 42px;
    -webkit-transform: translateX(30%) translateY(-200%);
            transform: translateX(30%) translateY(-200%);
    rotate: 45deg;
    top: 3px;
  }
  .point-panel--l::after {
    left: auto;
    right: 0;
    -webkit-transform: translateX(-30%) translateY(-200%);
            transform: translateX(-30%) translateY(-200%);
    rotate: -45deg;
  }
  .point-panel_image {
    width: min(80px, 80%);
  }
  .point-panel_text {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-top: 10px;
    text-align: center;
  }
  .point-panel_text--l {
    font-size: 1.125rem;
    letter-spacing: 2px;
  }
  .point-panel_text--m {
    font-size: 1.1875rem;
  }
  .point-lead_text {
    font-size: 1.125rem;
  }
  .point-lead_text--l {
    font-size: 1.5rem;
  }
  .point-open {
    padding: 14px 20px 14px 116px;
    width: 100%;
    max-width: 430px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .point-open::before {
    width: auto;
    height: 171%;
    max-height: 158px;
  }
  .point-open_text {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.46;
    color: var(--color-main);
  }
}

/* お悩み */
.worry {
  background-color: #FAFAFA;
  padding: 75px 0 135px;
  position: relative;
  z-index: 20;
}
.worry::before, .worry::after {
  content: "";
  width: 100%;
  height: 120px;
  background: url(../images/parts_worry_01.svg) 22% top/568px 120px repeat-x;
  position: absolute;
  left: 0;
  z-index: -1;
}
.worry::before {
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.worry::after {
  bottom: 0;
  -webkit-transform: translateY(calc(100% - 1px));
          transform: translateY(calc(100% - 1px));
  background-image: url(../images/parts_worry_02.svg);
}
.worry-wrap {
  position: relative;
}
.worry-wrap::before, .worry-wrap::after {
  content: "";
  aspect-ratio: 264/219;
  width: 264px;
  background: url(../images/parts_worry_03.svg);
  position: absolute;
}
.worry-wrap::before {
  right: -22px;
  top: -75px;
}
.worry-wrap::after {
  bottom: -100px;
  left: -170px;
}
.worry-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 70px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 3px;
  padding-left: 60px;
  background: url(../images/title_icon_03.svg) center left/44px no-repeat;
}
.worry-title--l {
  color: var(--color-main);
  font-size: 2.5rem;
  letter-spacing: 4px;
}
.worry-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.worry-item + .worry-item {
  margin-top: 24px;
}
.worry-item--r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-right: 128px;
}
.worry-item_icon {
  width: 110px;
}
.worry-item_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-sub);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 40px 13px;
  border-radius: 87px;
  min-height: 78px;
  position: relative;
}
.worry-item_box::before {
  content: "";
  width: 30px;
  height: 20px;
  background-color: var(--color-sub);
  position: absolute;
  left: -18px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.worry-item--r .worry-item_box::before {
  left: auto;
  right: -18px;
  -webkit-clip-path: polygon(0 0, 100% 54%, 0 100%);
          clip-path: polygon(0 0, 100% 54%, 0 100%);
}
.worry-item_text {
  letter-spacing: 1.6px;
  line-height: var(--lineHeight-s);
}
.worry-item_text--l {
  color: var(--color-main);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.worry-asset_image01 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -66px;
  margin: auto;
  text-align: center;
  z-index: 20;
  -webkit-animation: worry-scroll 1.8s ease-in-out infinite;
          animation: worry-scroll 1.8s ease-in-out infinite;
}
.worry-asset_image02 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -256px;
  margin: auto;
  text-align: center;
  z-index: 30;
}
@-webkit-keyframes worry-scroll {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0.7;
  }
}
@keyframes worry-scroll {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .worry {
    padding: 40px 0 140px;
  }
  .worry::before, .worry::after {
    height: 50px;
    background-size: contain;
    background-position: -70% top;
  }
  .worry-wrap::before, .worry-wrap::after {
    display: none;
  }
  .worry-title {
    margin: 0 auto 50px;
    font-size: 1.5rem;
    padding-left: 50px;
    background-size: 32px;
  }
  .worry-title--l {
    font-size: 2rem;
  }
  .worry-itemlist {
    max-width: 640px;
    margin-inline: auto;
  }
  .worry-item {
    gap: 0;
    margin: 0;
  }
  .worry-item--r {
    margin-right: 0;
    margin-left: auto;
  }
  .worry-item_icon {
    width: 80px;
    margin-right: -40px;
    position: relative;
    z-index: 10;
    background-color: #FFF;
    border-radius: 100%;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
  }
  .worry-item--r .worry-item_icon {
    margin-right: 0;
    margin-left: -40px;
  }
  .worry-item_box {
    padding: 12px 30px 14px 50px;
    min-height: 106px;
  }
  .worry-item--r .worry-item_box {
    padding-left: 30px;
    padding-right: 50px;
  }
  .worry-item_box::before {
    display: none;
  }
  .worry-item_text {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
  }
  .worry-item_text--l {
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
  .worry-asset_image01 {
    width: 20px;
    bottom: -60px;
  }
  .worry-asset_image02 {
    width: 120px;
    bottom: -200px;
  }
}

/* つながる */
.lead {
  background-color: var(--color-sub2);
  padding: 260px 0 280px;
  margin-bottom: -100px;
  position: relative;
  z-index: 10;
}
.lead::before {
  content: "";
  position: absolute;
  aspect-ratio: 229/100;
  width: 229px;
  right: 0;
  top: 510px;
  background: url(../images/parts_lead_04.svg) center/contain no-repeat;
}
.lead::after {
  content: "";
  position: absolute;
  aspect-ratio: 367/185;
  width: 367px;
  right: 0;
  top: 700px;
  background: url(../images/parts_lead_05.svg) center/contain no-repeat;
  z-index: -1;
}
.lead-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
  color: var(--color-main);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: var(--lineHeight-m);
}
.lead-title--l {
  font-size: 3.125rem;
  position: relative;
  left: -5px;
  margin-right: 4px;
}
.lead-title ruby {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: bottom;
  ruby-align: center;
  font-size: 2.5rem;
  line-height: 1.6;
  margin-right: 8px;
}
.lead-title ruby rt {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: -0.6em;
  text-align: center;
}
.lead-set {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px), print {
  .lead-set {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.lead-set_image {
  width: min(703px, 100%);
  height: 457px;
  background-color: #FFF;
  border-radius: 42px;
  border: 1px solid var(--color-main);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-left: -100px;
}
.lead-set_image::before {
  content: "";
  aspect-ratio: 185/245;
  width: 185px;
  background: url(../images/parts_lead_01.svg) center/contain no-repeat;
  position: absolute;
  left: -99px;
  bottom: -182px;
}
.lead-set_content {
  width: min(520px, 100%);
  position: relative;
}
.lead-set_content::before {
  content: "";
  position: absolute;
  aspect-ratio: 715/257;
  width: 715px;
  left: 0;
  bottom: -181px;
  background: url(../images/parts_lead_03.png) center/contain no-repeat;
}
.lead-set_lead {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 2.8px;
  white-space: nowrap;
}
.lead-set_lead--c2 {
  color: var(--color-main);
}
.lead-set_lead-image {
  margin-right: 8px;
  vertical-align: 8px;
}
.lead-set_text {
  line-height: 2;
  letter-spacing: 1.44px;
  margin-top: 16px;
}
.lead-set_text + .lead-set_text {
  margin-top: 40px;
}
@media screen and (max-width: 1400px) and (min-width: 769px), print {
  .lead-set_image {
    width: min(600px, 80%);
    padding: 30px;
    margin-left: 0;
  }
  .lead-set_image::before {
    width: 170px;
    left: -50px;
    bottom: -182px;
  }
  .lead-set_content {
    width: min(540px, 100%);
  }
  .lead-set_lead {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 768px) {
  .lead {
    padding: 120px 0 240px;
    margin-bottom: -100px;
    position: relative;
  }
  .lead::before {
    display: none;
  }
  .lead::after {
    aspect-ratio: 715/257;
    width: min(420px, 80%);
    left: auto;
    right: 10%;
    top: auto;
    bottom: 99px;
    background: url(../images/parts_lead_03.png) center/contain no-repeat;
  }
  .lead-title {
    margin: 0 auto 40px;
    font-size: 1.625rem;
  }
  .lead-title--l {
    font-size: 2.5rem;
  }
  .lead-title ruby {
    font-size: 1.875rem;
    line-height: 1.4;
    margin-right: 10px;
  }
  .lead-title ruby rt {
    font-size: 0.75rem;
  }
  .lead-set_image {
    height: auto;
    margin: 0 auto;
    padding: 24px;
  }
  .lead-set_image::before {
    width: 100px;
    left: -15px;
    bottom: 0;
    -webkit-transform: translateY(60%);
            transform: translateY(60%);
  }
  .lead-set_content {
    margin-inline: auto;
  }
  .lead-set_content::before {
    display: none;
  }
  .lead-set_lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.375rem;
    letter-spacing: 2px;
    margin: 60px auto 0;
    text-align: center;
  }
  .lead-set_lead-image {
    display: inline-block;
    max-width: 120px;
    margin-right: 8px;
    vertical-align: 8px;
  }
  .lead-set_text {
    margin-top: 30px;
  }
  .lead-set_text + .lead-set_text {
    margin-top: 30px;
  }
}

/* 特徴 */
.features {
  background-color: var(--color-sub);
  border-radius: 80px 80px 0 0;
  padding: 130px 0 120px;
  position: relative;
  z-index: 10;
}
.features-panellist {
  /* コンテナの横幅からギャップの合計値を引いたものをn等分する */
  --_column-width-calculated: calc(
      (100% - var(--_gap) * (var(--_column-max-count) - 1)) /
      var(--_column-max-count)
  );
  /* 最終的に適用される列の幅。
  * 理想の幅と最小幅を比較し、大きい方を採用します。
  * ただし、コンテナ全体の幅を超えることはありません。*/
  --_column-width: min(
      100%,
      max(var(--_column-min-width), var(--_column-width-calculated))
  );
  display: block grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--_column-width), 1fr));
  gap: var(--_gap);
  --_gap: 30px;
  --_column-max-count: 3;
  --_column-min-width: 320px;
}
.features-panel {
  padding: 0 24px 48px;
  border-radius: 80px 0;
  background: #FFF;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}
.features-panel_inner {
  max-width: min(286px, 100%);
  margin-inline: auto;
}
.features-panel_num {
  width: 79px;
  aspect-ratio: 79/64;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 0 58px 58px;
  background-color: var(--color-main);
  color: #FFF;
  margin: 0 auto 45px;
  font-size: 2.1875rem;
  font-weight: 700;
  font-family: var(--font-num);
}
.features-panel_title {
  color: var(--color-main);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: var(--lineHeight-m);
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 10px;
}
.features-panel_image {
  margin-bottom: 40px;
  text-align: center;
  min-height: 143px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.features-panel_text {
  line-height: 1.87;
  letter-spacing: 1.44px;
}
@media screen and (max-width: 768px) {
  .features {
    padding: 70px 0;
    border-radius: 40px 40px 0 0;
  }
  .features-panel {
    max-width: 560px;
    margin-inline: auto;
  }
  .features-panel_inner {
    max-width: min(314px, 100%);
  }
  .features-panel_num {
    width: 70px;
    margin: 0 auto 36px;
    font-size: 2rem;
  }
  .features-panel_title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .features-panel_image {
    margin-bottom: 30px;
    min-height: 0;
  }
}

/* おすすめ */
.recommended {
  padding: 130px 0 0;
  position: relative;
}
.recommended-bg_item {
  aspect-ratio: 1;
  width: 914px;
  border: 52px solid rgba(242, 246, 140, 0.35);
  border-radius: 100%;
  position: absolute;
  -webkit-animation: recommendedFloat 22s ease-in-out infinite;
          animation: recommendedFloat 22s ease-in-out infinite;
}
.recommended-bg_item:nth-child(1) {
  top: -568px;
  left: -296px;
  -webkit-animation-duration: 22s;
          animation-duration: 22s;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}
.recommended-bg_item:nth-child(2) {
  top: 311px;
  right: -265px;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
  -webkit-animation-delay: -8s;
          animation-delay: -8s;
}
.recommended-bg_item:nth-child(3) {
  top: 1037px;
  left: -416px;
  -webkit-animation-duration: 28s;
          animation-duration: 28s;
  -webkit-animation-delay: -12s;
          animation-delay: -12s;
}
@-webkit-keyframes recommendedFloat {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate3d(60px, -48px, 0) scale(1.05);
            transform: translate3d(60px, -48px, 0) scale(1.05);
  }
  50% {
    -webkit-transform: translate3d(-50px, 40px, 0) scale(0.94);
            transform: translate3d(-50px, 40px, 0) scale(0.94);
  }
  75% {
    -webkit-transform: translate3d(40px, 52px, 0) scale(1.02);
            transform: translate3d(40px, 52px, 0) scale(1.02);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes recommendedFloat {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate3d(60px, -48px, 0) scale(1.05);
            transform: translate3d(60px, -48px, 0) scale(1.05);
  }
  50% {
    -webkit-transform: translate3d(-50px, 40px, 0) scale(0.94);
            transform: translate3d(-50px, 40px, 0) scale(0.94);
  }
  75% {
    -webkit-transform: translate3d(40px, 52px, 0) scale(1.02);
            transform: translate3d(40px, 52px, 0) scale(1.02);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
.recommended-panel {
  border-radius: 80px 0;
  overflow: hidden;
  background: var(--color-bg);
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  --color: #FFEDE5;
  position: relative;
}
@media screen and (min-width: 769px), print {
  .recommended-panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.recommended-panel--c2 {
  --color: #AEDBEE;
}
.recommended-panel--c3 {
  --color: #E3E5FF;
}
.recommended-panel--r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.recommended-panel + .recommended-panel {
  margin-top: 40px;
}
.recommended-panel_image {
  background-color: var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 373px;
  width: min(560px, 100%);
  padding: 30px 24px;
}
.recommended-panel_content {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 24px;
}
.recommended-panel_content-inner {
  width: min(490px, 100%);
  margin-inline: auto;
}
.recommended-panel_title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: var(--lineHeight-m);
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: var(--color-main);
}
.recommended-panel_text {
  line-height: 1.87;
  letter-spacing: 1.44px;
}
@media screen and (max-width: 768px) {
  .recommended {
    padding: 70px 0 12px;
    overflow: hidden;
    isolation: isolate;
  }
  .recommended-bg_item {
    width: 300px;
    border-width: 30px;
  }
  .recommended-bg_item:nth-child(1) {
    top: -40px;
    left: -100px;
  }
  .recommended-bg_item:nth-child(2) {
    top: 500px;
    right: -100px;
  }
  .recommended-bg_item:nth-child(3) {
    top: 1000px;
    left: -100px;
  }
  .recommended-panel {
    max-width: 560px;
    margin-inline: auto;
  }
  .recommended-panel + .recommended-panel {
    margin-top: 30px;
  }
  .recommended-panel_image {
    min-height: 0;
  }
  .recommended-panel_title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

/* 採用実績 */
.case {
  padding: 130px 0 90px;
  background: -webkit-linear-gradient(bottom, var(--color-sub) 0%, var(--color-sub) 300px, transparent 300px, transparent 100%);
  background: linear-gradient(0deg, var(--color-sub) 0%, var(--color-sub) 300px, transparent 300px, transparent 100%);
}
.case-slider {
  position: relative;
}
.case-slider_inner {
  position: relative;
  max-width: min(1032px, 100%);
  margin-inline: auto;
  overflow: hidden;
}
.case-slider_inner.is-disabled + .case-slider_ctrl {
  display: none;
}
.is-disabled .case-slider_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.is-disabled .case-slider_item {
  width: calc((100% - 50px) / 2);
}
.case-slider_item a {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  position: relative;
  overflow: hidden;
}
.case-slider_item a:hover, a:hover .case-slider_item a {
  text-decoration: underline;
  -webkit-text-decoration-color: inherit;
          text-decoration-color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.case-slider_item a::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -70%;
  width: 50%;
  height: 280%;
  background: -webkit-linear-gradient(15deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(75deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: rotate(12deg) translateX(-110%);
          transform: rotate(12deg) translateX(-110%);
  opacity: 0;
  pointer-events: none;
}
.case-slider_item a:hover::after {
  opacity: 1;
  -webkit-animation: case-shine 1s ease;
          animation: case-shine 1s ease;
}
.case-slider_item img {
  width: 100%;
}
.case-slider_text {
  letter-spacing: 1.44px;
  margin-top: 20px;
}
.case-slider_pagination.swiper-pagination {
  margin-top: 50px;
  position: static;
}
.case-slider_pagination.swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 10px;
  background-color: #D9D9D9;
  opacity: 1;
}
.case-slider_pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
  height: auto;
  aspect-ratio: 20/24;
  background: url(../images/pagenaiton_flag.png) center/contain no-repeat;
  vertical-align: top;
  margin: 0 6px;
}
.case-slider_ctrl {
  position: absolute;
  width: 100%;
  height: 276px;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
.case-slider_arrow {
  padding: 0;
  pointer-events: all;
  aspect-ratio: 1;
  width: 62px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.case-slider_arrow:hover {
  background-color: var(--color-bg);
}
.case-slider_arrow .c-icon {
  width: 24px;
}
.case-slider_arrow.js-sliderCase-prev {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.case-slider_arrow.js-sliderCase-next {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.case-slider_arrow.swiper-button-disabled .c-icon::before {
  background-color: #999;
}
.case-flag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -30px 0 35px auto;
  color: #FFF;
  min-height: 73px;
  background-color: var(--color-main);
  border-radius: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 36px 8px 40px;
  position: relative;
}
.case-flag::before {
  content: "";
  width: 18px;
  height: 15px;
  -webkit-filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
  background-color: var(--color-main);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translateY(calc(100% - 1px));
          transform: translateY(calc(100% - 1px));
}
.case-flag_text {
  font-size: 1.25rem;
  line-height: var(--lineHeight-m);
  letter-spacing: 2px;
  padding-right: 38px;
  background: url(../images/tap.svg) center right/35px no-repeat;
}
.case-flag_text--l {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2.56px;
  font-family: var(--font-sub);
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .case {
    padding: 70px 0;
    background: -webkit-linear-gradient(bottom, var(--color-sub) 0%, var(--color-sub) 250px, transparent 250px, transparent 100%);
    background: linear-gradient(0deg, var(--color-sub) 0%, var(--color-sub) 250px, transparent 250px, transparent 100%);
  }
  .case-slider {
    position: relative;
    max-width: 560px;
    margin-inline: auto;
  }
  .case-slider_pagination.swiper-pagination {
    margin-top: 30px;
  }
  .case-slider_pagination.swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 8px;
  }
  .case-slider_pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 22px;
    margin: 0 6px;
  }
  .case-slider_ctrl {
    display: none;
  }
  .case-flag {
    min-height: 64px;
    padding: 2px 24px 8px;
    margin-top: -10px;
    position: relative;
  }
  .case-flag::before {
    content: "";
    width: 18px;
    height: 15px;
    -webkit-filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
    background-color: var(--color-main);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
            clip-path: polygon(0 0, 0% 100%, 100% 0);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: translateY(calc(100% - 1px));
            transform: translateY(calc(100% - 1px));
  }
  .case-flag_text {
    font-size: 1rem;
    letter-spacing: 1px;
    padding-right: 34px;
    background: url(../images/tap.svg) center right/32px no-repeat;
  }
  .case-flag_text--l {
    font-size: 1.625rem;
    letter-spacing: 2px;
    margin: 0 6px;
  }
}

@-webkit-keyframes case-shine {
  from {
    -webkit-transform: rotate(12deg) translateX(-110%);
            transform: rotate(12deg) translateX(-110%);
  }
  to {
    -webkit-transform: rotate(12deg) translateX(180%);
            transform: rotate(12deg) translateX(180%);
  }
}

@keyframes case-shine {
  from {
    -webkit-transform: rotate(12deg) translateX(-110%);
            transform: rotate(12deg) translateX(-110%);
  }
  to {
    -webkit-transform: rotate(12deg) translateX(180%);
            transform: rotate(12deg) translateX(180%);
  }
}
/* 導入までの流れ */
.flow {
  padding: 130px 0 120px;
}
.flow-step {
  margin-top: 50px;
}
.flow-step_item {
  position: relative;
  border-radius: 20px 0;
  background: rgba(245, 245, 141, 0.5);
  min-height: 130px;
  padding: 30px 55px 30px 214px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flow-step_item + .flow-step_item {
  margin-top: 45px;
}
.flow-step_item + .flow-step_item::before {
  content: "";
  display: block;
  aspect-ratio: 21/11;
  width: 32px;
  background: url(../images/arrow_step.svg) center/contain no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  margin: auto;
}
.flow-step_flag {
  width: 79px;
  height: 97px;
  background: url(../images/flag.svg) center/contain no-repeat;
  position: absolute;
  left: 76px;
  top: -2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFF;
  text-align: center;
  padding-top: 8px;
}
.flow-step_flag-sub {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.9px;
}
.flow-step_flag-num {
  font-family: var(--font-num);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.flow-step_title {
  color: var(--color-main);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1.3px;
}
.flow-step_text {
  line-height: 1.87;
  letter-spacing: 1.44px;
  width: min(478px, 100%);
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 70px 0;
  }
  .flow-step {
    margin-top: 40px;
  }
  .flow-step_item {
    min-height: 130px;
    padding: 0 20px 30px;
    display: block;
  }
  .flow-step_flag {
    left: 20px;
  }
  .flow-step_title {
    font-size: 1.25rem;
    line-height: 1.4;
    min-height: 95px;
    padding: 20px 0 20px 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flow-step_text {
    margin-top: 20px;
  }
}

/* 料金プラン */
.price {
  padding: 130px 0 120px;
  background-color: var(--color-bg);
}
.price-panellist {
  margin-top: 50px;
  /* コンテナの横幅からギャップの合計値を引いたものをn等分する */
  --_column-width-calculated: calc(
      (100% - var(--_gap) * (var(--_column-max-count) - 1)) /
      var(--_column-max-count)
  );
  /* 最終的に適用される列の幅。
  * 理想の幅と最小幅を比較し、大きい方を採用します。
  * ただし、コンテナ全体の幅を超えることはありません。*/
  --_column-width: min(
      100%,
      max(var(--_column-min-width), var(--_column-width-calculated))
  );
  display: block grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--_column-width), 1fr));
  gap: var(--_gap);
  --_gap: 30px;
  --_column-max-count: 3;
  --_column-min-width: 320px;
}
.price-panel {
  padding: 65px 24px 45px;
  border-radius: 80px 0;
  background: #FFF;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  --color: #07C01D;
  --check: url("../images/check1.svg");
}
.price-panel--c2 {
  --color: #A09AF3;
  --check: url("../images/check2.svg");
}
.price-panel--c3 {
  --color: #1687E2;
  --check: url("../images/check3.svg");
}
.price-panel_inner {
  max-width: min(280px, 100%);
  margin-inline: auto;
}
.price-panel_title {
  color: var(--color);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: var(--lineHeight-xs);
  letter-spacing: 2.6px;
  text-align: center;
  text-decoration: underline;
  -webkit-text-decoration-color: #F2F68C;
          text-decoration-color: #F2F68C;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 7px;
  text-underline-offset: -2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-bottom: 40px;
}
.price-panel_lead {
  border-radius: 20px;
  border: 1px dashed var(--color);
  padding: 14px 14px 15px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.61;
  letter-spacing: 1.8px;
}
.price-panel_def {
  margin-top: 20px;
}
.price-panel_def-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: #131313 solid 1px;
  padding-bottom: 15px;
}
.price-panel_def-item + .price-panel_def-item {
  margin-top: 15px;
}
.price-panel_def-title {
  letter-spacing: 1.44px;
}
.price-panel_def-num {
  color: var(--color);
  font-family: var(--font-num);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 1.05px;
}
.price-panel_def-sub {
  letter-spacing: 1.44px;
  display: inline-block;
  min-width: 70px;
  vertical-align: 1px;
}
.price-panel_check {
  margin-top: 24px;
}
.price-panel_check > li {
  padding-left: 27px;
  background-position: left 9px;
  background-size: 18px;
  background-repeat: no-repeat;
  background-image: var(--check);
  line-height: 2;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  .price {
    padding: 70px 0;
  }
  .price-panellist {
    margin-top: 40px;
    /* 	margin-inline: auto;
    width: min(560px, 100%); */
  }
  .price-panel_check > li {
    background-position: left 7px;
  }
}

/* お問い合わせ */
.contact {
  padding: 90px 0 200px;
}
.contact-btn_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 135px;
  border-radius: 93px;
  background-color: var(--color-main);
  color: #FFF;
  text-align: center;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 114, 197, 0.2);
          box-shadow: 0 8px 20px 0 rgba(0, 114, 197, 0.2);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.contact-btn_inner::before {
  content: "";
  position: absolute;
  inset: -35% -18%;
  background: -webkit-linear-gradient(320deg, #0a72c5 0%, #2e9cff 45%, #6bc7ff 70%, #0a72c5 100%);
  background: linear-gradient(130deg, #0a72c5 0%, #2e9cff 45%, #6bc7ff 70%, #0a72c5 100%);
  border-radius: 48% 52% 44% 56%/52% 44% 56% 48%;
  z-index: 0;
  -webkit-transform: scale(0.72) rotate(-2deg);
          transform: scale(0.72) rotate(-2deg);
  opacity: 0;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: transform 0.45s ease, opacity 0.45s ease;
  transition: transform 0.45s ease, opacity 0.45s ease, -webkit-transform 0.45s ease;
  -webkit-animation: header-btn-morph 5s ease-in-out infinite;
          animation: header-btn-morph 5s ease-in-out infinite;
}
.contact-btn_inner::after {
  content: "";
  position: absolute;
  inset: -55% -30%;
  background: conic-gradient(from 120deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  -webkit-filter: blur(16px);
          filter: blur(16px);
  z-index: 0;
  opacity: 0;
  -webkit-transform: scale(0.5) rotate(0deg);
          transform: scale(0.5) rotate(0deg);
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.45s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.45s ease;
  transition: transform 0.6s ease, opacity 0.45s ease, -webkit-transform 0.6s ease;
  -webkit-animation: header-btn-shine 3.4s linear infinite;
          animation: header-btn-shine 3.4s linear infinite;
}
.contact-btn_inner:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 26px 0 rgba(0, 114, 197, 0.24);
          box-shadow: 0 12px 26px 0 rgba(0, 114, 197, 0.24);
}
.contact-btn_inner:hover::before {
  opacity: 0.85;
  -webkit-transform: scale(1.14) rotate(1deg);
          transform: scale(1.14) rotate(1deg);
  -webkit-animation: header-btn-morph 5s ease-in-out infinite;
          animation: header-btn-morph 5s ease-in-out infinite;
}
.contact-btn_inner:hover::after {
  opacity: 0.55;
  -webkit-transform: scale(1.08) rotate(45deg);
          transform: scale(1.08) rotate(45deg);
  -webkit-animation: header-btn-shine 3.4s linear infinite;
          animation: header-btn-shine 3.4s linear infinite;
}
.contact-btn_icon {
  content: "";
  display: block;
  width: 52px;
  aspect-ratio: 52/31;
  background-color: #FFF;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/mail.svg");
          mask-image: url("../images/mail.svg");
  margin-right: 20px;
  position: relative;
  z-index: 1;
}
.contact-btn_text {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 60px 0 100px;
  }
  .contact-btn_inner {
    height: 80px;
  }
  .contact-btn_icon {
    width: 40px;
    margin-right: 10px;
  }
  .contact-btn_text {
    font-size: 1.25rem;
    letter-spacing: 1.5px;
  }
}

/* /_footer.scss
-------------------------------------------------------*/