@charset "UTF-8";
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/**
 * Swiper 11.1.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 24, 2024
 */
@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}
:root{--swiper-theme-color:#007aff}
:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}
.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}
.swiper-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;-webkit-transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);-webkit-box-sizing:content-box;box-sizing:content-box}
.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0px,0,0);transform:translate3d(0px,0,0)}
.swiper-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}
.swiper-vertical{-ms-touch-action:pan-x;touch-action:pan-x}
.swiper-slide{-ms-flex-negative:0;flex-shrink:0;width:100%;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;display:block}
.swiper-slide-invisible-blank{visibility:hidden}
.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}
.swiper-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;transition-property:transform,height;transition-property:transform,height,-webkit-transform}
.swiper-backface-hidden .swiper-slide{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}
.swiper-3d.swiper-css-mode .swiper-wrapper{-webkit-perspective:1200px;perspective:1200px}
.swiper-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}
.swiper-3d{-webkit-perspective:1200px;perspective:1200px}
.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}
.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}
.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}
.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}
.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}
.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';-ms-flex-negative:0;flex-shrink:0;-webkit-box-ordinal-group:10000;-ms-flex-order:9999;order:9999}
.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{-webkit-margin-start:var(--swiper-centered-offset-before);margin-inline-start:var(--swiper-centered-offset-before)}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{-webkit-margin-before:var(--swiper-centered-offset-before);margin-block-start:var(--swiper-centered-offset-before)}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}
.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}
.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}
.swiper-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top, left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top, right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom, left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top, left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;transform-origin:50%;-webkit-box-sizing:border-box;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{-webkit-animation:swiper-preloader-spin 1s infinite linear;animation:swiper-preloader-spin 1s infinite linear}
.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}
.swiper-lazy-preloader-black{--swiper-preloader-color:#000}
@-webkit-keyframes swiper-preloader-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}
@keyframes swiper-preloader-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}
.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}
:root{--swiper-navigation-size:44px}
.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}
.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}
.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}
.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}
.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;-webkit-transform-origin:center;transform-origin:center}
.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}
.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}
.swiper-button-lock{display:none}
.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}
.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}
.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}
.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}
.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s opacity;transition:.3s opacity;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}
.swiper-pagination.swiper-pagination-hidden{opacity:0}
.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}
.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);transform:scale(.33);position:relative}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);transform:scale(1)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);transform:scale(1)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);transform:scale(.66)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);transform:scale(.33)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);transform:scale(.66)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);transform:scale(.33)}
.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}
button.swiper-pagination-bullet{border:none;margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}
.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}
.swiper-pagination-bullet:only-child{display:none!important}
.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}
.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;-webkit-transform:translate3d(0px,-50%,0);transform:translate3d(0px,-50%,0)}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:8px}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:.2s transform,.2s top;transition:.2s transform,.2s top}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s transform,.2s left;transition:.2s transform,.2s left}
.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s transform,.2s right;transition:.2s transform,.2s right}
.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}
.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;transform-origin:left top}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;transform-origin:right top}
.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}
.swiper-pagination-lock{display:none}
.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;-ms-touch-action:none;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}
.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}
.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}
.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}
.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}
.swiper-scrollbar-cursor-drag{cursor:move}
.swiper-scrollbar-lock{display:none}
.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}
.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}
.swiper-slide-zoomed{cursor:move;-ms-touch-action:none;touch-action:none}
.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}
.swiper-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}
.swiper-grid>.swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap}
.swiper-grid-column>.swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.swiper-fade.swiper-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}
.swiper-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;transition-property:opacity}
.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}
.swiper-fade .swiper-slide-active{pointer-events:auto}
.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-cube{overflow:visible}
.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}
.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}
.swiper-cube.swiper-rtl .swiper-slide{-webkit-transform-origin:100% 0;transform-origin:100% 0}
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}
.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}
.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;-webkit-filter:blur(50px);filter:blur(50px)}
.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}
.swiper-flip{overflow:visible}
.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}
.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}
.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}
.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;-webkit-transition-property:opacity,height,-webkit-transform;transition-property:opacity,height,-webkit-transform;transition-property:transform,opacity,height;transition-property:transform,opacity,height,-webkit-transform}
.swiper-cards{overflow:visible}
.swiper-cards .swiper-slide{-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/**
 * for tablet and Pc. large viewport
 */
@custom-media --desktop(min-width: 1280px);
/** http://bourbon.io/docs/#timing-functions */
/** example @include transition(all 5s $ease-in-circ);*/
/**
transition timing-function:
ease - cubic-bezier(0.25, 0.1, 0.25, 1.0) を指定したのと同じ（開始と完了を滑らかにする）（初期値）
linear - cubic-bezier(0.0, 0.0, 1.0, 1.0) を指定したのと同じ（一定）
ease-in - cubic-bezier(0.42, 0, 1.0, 1.0) を指定したのと同じ（ゆっくり始まる）
ease-out - cubic-bezier(0, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり終わる）
ease-in-out - cubic-bezier(0.42, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり始まってゆっくり終わる）
*/
/**
 * text ellipsis for block multiline
 */
/*
 unsupport IE, Edge, Fx

@mixin text-ellipsis-block($rows) {
  display: box;
  box-orient: vertical;
  line-clamp: $rows;
  overflow: hidden;
}
*/
/**
 * element size
 */
/**
 * position layout
 */
/**
 * images
 */
/**
* Variables
*/
:root {
  --gray-100: #F7F7F7;
  --gray-200: #E8E8E8;
  --red: #EA6E7B;
  --orange: #FFAC64;
  --yellow: #FFE164;
  --green: #B7E066;
  --blue-100: #87CCFF;
  --blue-200: #75A7F1;
  --purple: #CC87F1;
  --btn-hover: #E4E4E4;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Poppins", sans-serif;
  --hoverSize: 560px;
  --header: 9;
  --modal: 10;
  --headerMenu: 99; }
/** extend */
[data-inview="fade-in"] {
  opacity: 0;
  translate: 0 20px; }
.js-loading {
  background: #fff;
  position: fixed;
  inset: 0;
  pointer-events: none; }
.hover-underline {
  position: relative; }
.hover-underline::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s; }
/* == @import "../node_modules/normalize.css/normalize.css"; */
[v-cloak] {
  display: none; }
html {
  font-size: 62.5%;
  scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background: #fff;
  overflow-x: hidden; }
a {
  color: #000000;
  text-decoration: none; }
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
  margin: 0;
  padding: 0; }
h2 {
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.3333333333; }
h3, h4 {
  font-weight: 500; }
h3 {
  font-size: 2.4rem; }
ul, ol, li {
  padding: 0;
  margin: 0; }
li {
  list-style: none; }
img {
  width: 100%;
  vertical-align: bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
figure {
  margin: 0;
  padding: 0; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
input[type="number"] {
  -moz-appearance: textfield; }
.l-main {
  line-height: 1.75; }
.l-container {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 110px; }
.l-container > .c-heading {
    padding-top: 160px; }
.l-container.-stack > * + * {
    margin-top: 160px; }
.l-footer {
  margin-top: auto;
  width: 100%;
  position: relative;
  background: #fff; }
.l-footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-block: 80px 20px; }
.l-footer__left-title {
    font-size: 6rem;
    line-height: calc(80 / 60); }
.l-footer__left-desc {
    font-size: 1.8rem;
    line-height: calc(28 / 18); }
.l-footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px; }
.l-footer__right-tel {
    font-size: 2.4rem;
    font-weight: 700; }
.l-footer__right-tel > span {
      font-size: 4rem;
      line-height: 2;
      margin-left: 10px; }
.l-footer__right-copy {
    text-align: right;
    font-size: 1.4rem;
    margin-top: 40px; }
.l-header__logo, .l-header__nav {
  position: fixed;
  top: 20px;
  z-index: var(--header); }
.l-header__logo {
  left: 110px; }
.l-header__nav {
  right: 110px;
  mix-blend-mode: difference;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px; }
.l-header__link {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding-block: 8px;
  color: #fff; }
.l-header__menu-trigger {
  position: relative;
  width: 32px;
  height: 22px; }
.l-header__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff; }
.l-header__line:first-child {
    top: 0; }
.l-header__line:nth-child(2) {
    top: 9px; }
.l-header__line:nth-child(3) {
    top: 19px; }
.l-header__menu {
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  pointer-events: none;
  z-index: -1; }
.l-header__menu.js-active {
    pointer-events: all;
    z-index: var(--headerMenu);
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s; }
.l-header__menu-inner {
  padding: 20px 16px 71px; }
.l-header__menu-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
.l-header__menu-logo {
  width: 82px; }
.l-header__menu-close {
  position: relative;
  width: 32px;
  height: 22px; }
.l-header__close-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000; }
.l-header__close-line:first-child {
    rotate: -45deg;
    translate: 0 10px; }
.l-header__close-line:nth-child(2) {
    rotate: 45deg;
    translate: 0 10px; }
.l-header__menu-list {
  margin-top: 100px; }
.l-header__menu-item:last-child .l-header__menu-link {
  border-bottom: 1px solid var(--gray-200); }
.l-header__menu-link {
  display: block;
  margin-inline: -16px;
  padding-block: 16px;
  padding-inline: 16px;
  font-size: 3.2rem;
  font-family: var(--font-en);
  line-height: 1.4;
  text-transform: uppercase;
  border-top: 1px solid var(--gray-200); }
.l-header__menu-title {
  font-size: 3.2rem;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 16px; }
.l-header__menu-desc {
  line-height: 1.75; }
.l-header__menu-content {
  margin-top: 32px; }
.l-header__menu-content + .l-header__menu-content {
    margin-top: 24px; }
.l-header__menu-tel {
  font-size: 1.8rem;
  font-weight: 700; }
.l-header__menu-tel > span {
    font-size: 3.2rem;
    line-height: 2;
    margin-left: 4px; }
.l-main {
  padding-bottom: 160px; }
.l-main.p-work {
    background: none; }
.l-stack > * + * {
  margin-top: 40px; }
.p-company-overview__body {
  padding: 16px 40px 20px;
  background: #fff;
  border-radius: 20px; }
.p-company-overview__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 24px 40px 20px; }
.p-company-overview__content + * {
    border-top: 1px solid var(--gray-200); }
.p-company-overview__content dt {
    width: 6em; }
.p-company-overview__content dd {
    font-size: 1.8rem; }
.p-company-office__stack > * + * {
  margin-top: 40px; }
.p-company-office__body {
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
.p-company-office__title {
  font-size: 2.4rem; }
.p-company-office__address {
  line-height: 2;
  margin-top: 24px; }
.p-company-office__tel, .p-company-office__fax {
  margin-top: 16px;
  background: var(--gray-200);
  line-height: 2;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 27px;
  border-radius: 16px; }
.p-company-office__right {
  width: 62%; }
.p-company-office__map {
  height: 100%; }
.p-company-office__map iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    aspect-ratio: 574 / 320; }
.p-home-mv {
  position: relative;
  height: 100dvh; }
.p-home-mv__lead {
    position: absolute;
    right: 110px;
    bottom: 70px;
    font-size: 2.4rem;
    text-align: right;
    line-height: 1.4;
    letter-spacing: 0.15em;
    mix-blend-mode: difference;
    color: #fff;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
.p-home-mv__lead span.-inview {
      display: inline-block;
      translate: 0 40px;
      opacity: 0; }
.p-home-mv__lead span.-inview.-whitespace {
        white-space: pre; }
.p-home-mv__canvas-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; }
.p-home-mv__lead-en {
    display: block;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 6rem;
    margin-bottom: 8px;
    letter-spacing: 0.01em; }
.p-home-lead {
  margin-inline: calc((50vw - 500px) * -1); }
.p-home-lead__lead {
    margin-top: 135px;
    margin-right: 264px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    line-height: 4.5;
    font-size: 1.8rem;
    letter-spacing: 0.07em; }
.p-home-lead__swiper {
    margin-top: 98px;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px; }
.p-home-lead__swiper .swiper-wrapper {
      -webkit-transition-timing-function: linear !important;
              transition-timing-function: linear !important; }
.p-home-lead__swiper .p-work__box {
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      position: relative; }
.p-home-lead__swiper .p-work__box.item-01 {
        margin-top: 90px; }
.p-home-lead__swiper .p-work__box.item-01 .p-work__box-circle {
          letter-spacing: 0.046em; }
.p-home-lead__swiper .p-work__box.item-02 {
        margin-top: 172px; }
.p-home-lead__swiper .p-work__box.item-02 .p-work__box-circle {
          letter-spacing: 0.032em; }
.p-home-lead__swiper .p-work__box.item-03 {
        margin-top: 0px; }
.p-home-lead__swiper .p-work__box.item-03 .p-work__box-circle {
          letter-spacing: 0.043em; }
.p-home-lead__swiper .p-work__box.item-04 {
        margin-top: 116px; }
.p-home-lead__swiper .p-work__box.item-04 .p-work__box-circle {
          letter-spacing: 0.025em; }
.p-home-lead__swiper .p-work__box.item-05 {
        margin-top: 60px; }
.p-home-lead__swiper .p-work__box.item-05 .p-work__box-circle {
          letter-spacing: 0.055em; }
.p-home-lead__swiper .p-work__box.item-05 .p-work__box-img {
          width: 56%;
          translate: -41% -52%; }
.p-home-lead__swiper .p-work__box.item-06 {
        margin-top: 17px; }
.p-home-lead__swiper .p-work__box.item-06 .p-work__box-circle {
          letter-spacing: 0.06em; }
.p-home-lead__swiper .p-work__box.item-07 {
        margin-top: 140px; }
.p-home-lead__swiper .p-work__box.item-07 .p-work__box-circle {
          letter-spacing: 0.02em; }
.p-home-lead__swiper .p-work__box-circle {
      overflow: visible;
      font-size: 0.8rem;
      font-family: var(--font-en);
      -webkit-transform-origin: center;
              transform-origin: center;
      -webkit-animation: rotate 100s linear infinite;
              animation: rotate 100s linear infinite; }
.p-home-lead__swiper .p-work__box-circle-path {
      fill: #fff; }
.p-home-lead__swiper .p-work__box-circle-text textpath {
      font-size: 0.5rem; }
.p-home-lead__swiper .p-work__box-img {
      width: 70%;
      position: absolute;
      left: 50%;
      top: 50%;
      translate: -50% -50%; }
.p-home-lead__btn {
    text-transform: uppercase;
    text-align: center; }
.p-home-lead__link {
    display: inline-block;
    padding: 14px 85px;
    background: #fff;
    border-radius: 30px;
    font-size: 1.8rem;
    font-family: var(--font-en);
    font-weight: 700;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s; }
.p-home-news.-hidden {
  display: none; }
.p-home-news__stack > * + * {
  margin-top: 24px; }
.p-home-news__body {
  background: #fff;
  border-radius: 20px;
  padding: 50px; }
.p-home-news__title {
  font-size: 2.4rem; }
.p-home-news__desc {
  margin-top: 22px;
  line-height: 2; }
.p-home-news__desc strong {
    font-weight: 700; }
.p-home-news__desc a {
    text-decoration: underline; }
.p-home-news__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px; }
.p-home-news__btn {
  font-size: 1.8rem;
  font-family: var(--font-en);
  font-weight: 700;
  background: #000;
  color: #fff;
  padding: 14px 85px;
  border-radius: 30px;
  -webkit-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s; }
.p-home-feature__stack > * + * {
  margin-top: 80px; }
.p-home-feature__body {
  background: #fff;
  border-radius: 20px;
  padding: 30px 50px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px; }
.p-home-feature__title {
  font-size: 6.4rem;
  font-family: var(--font-en);
  line-height: 1.25; }
.p-home-feature__sub {
  font-size: 1.8rem; }
.p-home-feature__desc {
  line-height: 2;
  margin-top: 24px; }
.p-home-feature__right {
  width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px; }
.p-home-feature__pic img {
  border-radius: 16px; }
@-webkit-keyframes rotate {
  from {
    rotate: 0deg; }
  to {
    rotate: -360deg; } }
@keyframes rotate {
  from {
    rotate: 0deg; }
  to {
    rotate: -360deg; } }
.p-recruit__body {
  width: 100%;
  background: #fff;
  padding: 40px;
  border-radius: 20px; }
.p-recruit-profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px; }
.p-recruit-profile__item {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  position: relative;
  overflow: hidden; }
.p-recruit-profile__item::before {
    content: '';
    position: absolute;
    width: 182px;
    height: 159px;
    background-image: url(../images/recruit/profile-no-01.png);
    top: 0;
    right: 2px; }
.p-recruit-profile__item:nth-child(2)::before {
    background-image: url(../images/recruit/profile-no-02.png);
    width: 232px;
    right: -27px; }
.p-recruit-profile__item:nth-child(3)::before {
    background-image: url(../images/recruit/profile-no-03.png);
    width: 234px;
    right: -26px; }
.p-recruit-profile__title {
  font-size: 2.4rem;
  position: relative;
  z-index: 1; }
.p-recruit-profile__desc {
  margin-top: 16px;
  position: relative;
  z-index: 1; }
.p-recruit-jobs__body-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 400px;
  grid-template-columns: 1fr 400px;
  grid-gap: 40px;
  gap: 40px; }
.p-recruit-jobs__desc {
  margin-top: 24px;
  line-height: 2; }
.p-recruit-jobs__pic img {
  border-radius: 20px; }
.p-recruit-jobs__slide {
  margin-top: 40px; }
.p-recruit-jobs__slide-body {
  background: var(--gray-200);
  border-radius: 20px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
.p-recruit-jobs__slide-box {
  height: 100%; }
.p-recruit-jobs__slide-title {
  font-size: 1.8rem; }
.p-recruit-jobs__slide-time {
  margin-top: 8px;
  text-align: right;
  border-bottom: 1px solid #000;
  font-family: var(--font-en);
  font-weight: 700;
  color: #9494AA; }
.p-recruit-jobs__slide-desc {
  margin-top: 16px; }
.p-recruit-jobs__slide-scrollbar.swiper-scrollbar {
  position: static;
  margin-top: 20px;
  background: transparent;
  height: 6px; }
.p-recruit-jobs__slide-scrollbar.swiper-scrollbar .swiper-scrollbar-drag {
    background: var(--gray-200); }
.p-recruit-jobs__slide-blur {
  width: 185px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#fff));
  background: linear-gradient(left, transparent, #fff);
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in; }
.p-recruit-jobs__slide-blur.-end {
    opacity: 0; }
.p-recruit-interview__title {
  font-size: 2.4rem; }
.p-recruit-interview__title span {
    font-size: 1.4rem;
    margin-left: 8px; }
.p-recruit-interview__body-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 306px 1fr;
  grid-template-columns: 306px 1fr;
  grid-gap: 40px;
  gap: 40px;
  margin-top: 24px; }
.p-recruit-interview__left-pic {
  border-radius: 20px;
  overflow: hidden; }
.p-recruit-interview__left-desc {
  margin-top: 10px;
  text-align: right; }
.p-recruit-interview__item + * {
  margin-top: 24px; }
.p-recruit-interview__ques {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.8rem; }
.p-recruit-interview__ques::before {
    content: '?';
    font-size: 2.4rem;
    font-family: var(--font-en);
    width: 32px;
    height: 32px;
    background: var(--gray-200);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
.p-recruit-interview__ans {
  padding-left: 40px;
  margin-top: 19px;
  line-height: 2; }
.p-recruit-requirements__title {
  font-size: 1.8rem; }
.p-recruit-requirements__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px; }
.p-recruit-requirements__dl {
  margin-top: 16px; }
.p-recruit-requirements__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 122px 1fr;
  grid-template-columns: 122px 1fr;
  padding-block: 16px;
  border-top: 1px solid var(--gray-200); }
.p-recruit-requirements__content dt {
    font-size: 1.8rem;
    line-height: 32px; }
.p-recruit-requirements__content dd {
    line-height: 32px; }
.p-work .c-heading {
  max-width: 1220px;
  padding-top: 160px;
  margin-inline: auto;
  padding-inline: 110px; }
.p-work .stack > * + * {
  margin-top: 30px; }
.p-work__section {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  max-width: 1440px;
  margin-inline: auto; }
.p-work__heading-group {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }
.p-work__heading {
  margin-top: 38px;
  font-size: 6.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25; }
.p-work__heading .right {
    display: block; }
.p-work__sub {
  font-size: 2.4rem; }
.p-work__sub.-right {
    text-align: right; }
.p-work__desc {
  font-size: 1.6rem;
  margin-top: 30px;
  line-height: 2;
  letter-spacing: 0.05em; }
.p-work__left {
  position: relative; }
.p-work__right {
  position: relative; }
.p-work__img-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 200px;
  grid-template-columns: 1fr 200px;
  grid-gap: 25px;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--gray-100);
  border-radius: 20px;
  padding: 27px 23px 27px 40px; }
.p-work__img-body.-rev {
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr; }
.p-work__img-card {
  height: 190px;
  background: var(--gray-100);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden; }
.p-work__img-card.-food {
    height: 175px; }
.p-work__img-card:nth-child(even) .p-work__img-title {
    text-align: right; }
.p-work__img-card-img {
  position: absolute; }
.p-work__img-title {
  font-size: 1.6rem; }
.p-work__img-desc {
  font-size: 1.6rem;
  margin-top: 20px;
  line-height: 2; }
.p-work__wraps-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr); }
.p-work__wraps-wrap .p-work__right {
    margin-left: -26px;
    margin-right: 50px; }
.p-work__wraps-wrap .p-work__img-card-img {
    top: -48px;
    right: 14px; }
.p-work__wraps-wrap .p-work__img-card:nth-child(2) .p-work__img-card-img {
    top: -48px;
    left: 17px;
    right: auto; }
.p-work__packing-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[10];
  grid-template-columns: repeat(10, 1fr); }
.p-work__packing-wrap .p-work__heading .right {
    margin-left: 1.35em; }
.p-work__stickers-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
  grid-template-columns: repeat(8, 1fr); }
.p-work__stickers-wrap .p-work__img-title {
    text-align: center;
    margin-top: -19px;
    letter-spacing: 0; }
.p-work__stickers-heading-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 312px 1fr;
  grid-template-columns: 312px 1fr;
  grid-gap: 18px;
  gap: 18px; }
.p-work__stickers-heading-group .p-work__heading-group {
    margin-left: auto;
    text-align: right; }
.p-work__stickers-img-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  gap: 30px;
  margin-inline: 75px;
  margin-top: 40px; }
.p-work__stickers-img-body {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 25px; }
.p-work__food-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[11];
  grid-template-columns: repeat(11, 1fr); }
.p-work__food-wrap .p-work__img-card:nth-child(1) .p-work__img-card-img {
    top: -17px;
    right: 8px; }
.p-work__food-wrap .p-work__img-card:nth-child(2) .p-work__img-card-img {
    top: -8px;
    left: -1px; }
.p-work__hygiene-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[10];
  grid-template-columns: repeat(10, 1fr); }
.p-work__hygiene-wrap .p-work__heading .right {
    margin-left: 2.8em; }
.p-work__logistics-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: (1fr)[10];
  grid-template-columns: repeat(10, 1fr); }
.p-work__logistics-wrap .p-work__heading .right {
    margin-left: 3.05em; }
.p-work__factory-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 312px;
  grid-template-columns: 1fr 312px;
  grid-gap: 40px;
  gap: 40px; }
.p-work__factory-wrap .p-work__heading {
    margin-top: 0; }
.backgroundCanvas-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: #fff;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  z-index: -1; }
.p-work .backgroundCanvas-wrap {
  background: transparent; }
.c-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.c-heading {
  opacity: 0;
  font-family: var(--font-en); }
.c-heading__title {
    margin-bottom: 40px;
    font-size: 6rem;
    font-weight: 700;
    line-height: calc(80 / 60);
    text-transform: uppercase;
    overflow: hidden; }
.c-heading__title.-top {
      margin-bottom: 0; }
.c-heading__title span.-inview {
      display: inline-block;
      translate: 0 40px;
      opacity: 0; }
.c-heading__title span.-inview.-whitespace {
        white-space: pre; }
.c-heading__title br.for-mobile + span + .-whitespace {
      white-space: unset; }
.c-heading__title:has(.c-heading__sub) {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
.c-heading__sub {
    font-size: 2.4rem;
    font-weight: 500;
    font-family: var(--font-jp);
    margin-left: 22px; }
.c-heading__lead {
    font-size: 1.8rem;
    font-family: var(--font-jp); }
.c-google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden; }
.c-google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }
body.is-scrollLock {
  position: fixed;
  width: 100%;
  overflow-y: scroll; }
.c-modal {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  max-width: unset;
  max-height: unset;
  width: 100vw;
  height: 100svh;
  padding-block: 40px; }
.c-modal::-webkit-backdrop {
    display: none; }
.c-modal::backdrop {
    display: none; }
.c-modal__back {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(73%, rgba(227, 250, 255, 0.73)), to(#E3FAFF));
    background: linear-gradient(transparent, rgba(227, 250, 255, 0.73) 73%, #E3FAFF 100%);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px); }
.c-modal__body {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: 110px;
    background: #fff;
    border-radius: 20px;
    padding: 40px; }
.c-modal__head {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 64px;
    grid-template-columns: 1fr 64px;
    grid-column-gap: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    grid-row-gap: 23px;
    row-gap: 23px; }
.c-modal__title {
    font-size: 2.4rem;
    line-height: 2; }
.c-modal__close {
    background: var(--blue);
    height: 35px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    border-radius: 18px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.c-modal__close::before {
      content: '';
      width: 19px;
      height: 19px;
      background-image: url(../images/common/close.svg);
      background-size: contain; }
.c-modal__desc {
    grid-column: 1 / -1;
    line-height: 2;
    letter-spacing: 0.1em; }
.c-modal__swiper {
    margin-top: 40px;
    position: relative; }
.c-modal__swiper::before, .c-modal__swiper::after {
      content: '';
      display: block;
      width: 185px;
      height: 100%;
      background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
      background: linear-gradient(left, #fff, transparent);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2; }
.c-modal__swiper::after {
      background: -webkit-gradient(linear, left top, right top, from(transparent), to(#fff));
      background: linear-gradient(left, transparent, #fff);
      left: auto;
      right: 0; }
.c-modal__slide-img img {
    border-radius: 20px; }
.c-modal__pagination-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
.c-modal__pagination-wrap .swiper-button-prev,
    .c-modal__pagination-wrap .swiper-button-next,
    .c-modal__pagination-wrap .swiper-pagination {
      position: static; }
.c-modal__pagination-wrap .swiper-button-prev,
    .c-modal__pagination-wrap .swiper-button-next {
      width: auto;
      height: auto;
      margin-top: auto; }
.c-modal__pagination-wrap .swiper-button-prev::after,
      .c-modal__pagination-wrap .swiper-button-next::after {
        content: '';
        background-image: url(../images/common/slide-arrow.svg);
        width: 16px;
        height: 16px;
        background-size: contain; }
.c-modal__pagination-wrap .swiper-button-next {
      rotate: 180deg; }
.c-modal__pagination-wrap .swiper-pagination {
      width: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 24px; }
.c-modal__pagination-wrap .swiper-pagination-bullet {
      background: var(--blue);
      opacity: 1;
      width: 14px;
      height: 14px; }
.c-modal__pagination-wrap .swiper-pagination-bullet-active {
      background: #000; }
.c-rainbow-line {
  width: 100%;
  height: 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--header);
  background: -webkit-gradient(linear, left top, right top, from(var(--red)), color-stop(var(--red)), color-stop(var(--orange)), color-stop(var(--orange)), color-stop(var(--yellow)), color-stop(var(--yellow)), color-stop(var(--green)), color-stop(var(--green)), color-stop(var(--blue-100)), color-stop(var(--blue-100)), color-stop(var(--blue-200)), color-stop(var(--blue-200)), color-stop(var(--purple)), to(var(--purple)));
  background: linear-gradient(to right, var(--red) calc(100% / 7 * 0), var(--red) calc(100% / 7 * 1), var(--orange) calc(100% / 7 * 1), var(--orange) calc(100% / 7 * 2), var(--yellow) calc(100% / 7 * 2), var(--yellow) calc(100% / 7 * 3), var(--green) calc(100% / 7 * 3), var(--green) calc(100% / 7 * 4), var(--blue-100) calc(100% / 7 * 4), var(--blue-100) calc(100% / 7 * 5), var(--blue-200) calc(100% / 7 * 5), var(--blue-200) calc(100% / 7 * 6), var(--purple) calc(100% / 7 * 6), var(--purple) calc(100% / 7 * 7)); }
.l-footer .c-rainbow-line {
  position: static; }
/**
* wordpress
* WYSIWYG compatchble style
*/
.c-wp-post_article strong {
  font-weight: bold; }
.c-wp-post_article em {
  font-style: italic; }
.c-wp-post_article ul {
  margin-left: 1em;
  display: block;
  list-style-type: disc !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px; }
.c-wp-post_article ol {
  display: block;
  list-style-type: decimal !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px; }
.c-wp-post_article li {
  display: list-item;
  text-align: match-parent; }
.c-wp-post_article img {
  width: auto; }
.c-wp-post_article .alignleft {
  display: inline;
  float: left; }
.c-wp-post_article .alignright {
  display: inline;
  float: right; }
.c-wp-post_article .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto; }
.c-wp-post_article blockquote.alignleft,
.c-wp-post_article .wp-caption.alignleft,
.c-wp-post_article img.alignleft {
  margin: 0.4em 1.6em 1.6em 0; }
.c-wp-post_article blockquote.alignright,
.c-wp-post_article .wp-caption.alignright,
.c-wp-post_article img.alignright {
  margin: 0.4em 0 1.6em 1.6em; }
.c-wp-post_article blockquote.aligncenter,
.c-wp-post_article .wp-caption.aligncenter,
.c-wp-post_article img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em; }
.c-wp-post_article .wp-caption.alignleft,
.c-wp-post_article .wp-caption.alignright,
.c-wp-post_article .wp-caption.aligncenter {
  margin-bottom: 1.2em; }
/**
 * clearfix micro
 */
.clearfix:after {
  content: "";
  clear: both;
  display: block; }
/**
 * text ellipsis., text...
 */
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.u-hide {
  display: none; }
.u-click {
  cursor: pointer; }
.u-inline-block {
  display: inline-block; }
/**
 * BrowserSync
 */
#__bs_notify__ {
  display: none !important;
  font-size: 8px !important;
  opacity: .25;
  max-height: 50px; }
.__debug_mihon__ {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto 0 auto;
  z-index: 100000;
  pointer-events: none;
  cursor: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-animation: __debug_mihon__ 1s infinite;
          animation: __debug_mihon__ 1s infinite; }
.__debug_mihon__ {
  padding-top: 0px;
  margin-top: 0px; }
@-webkit-keyframes __debug_mihon__ {
  0% {
    opacity: 0; }
  60% {
    opacity: .5; }
  100% {
    opacity: .5; } }
/*
@example
 <div class="mihon">
  <img src="./images/sample1.png" alt="" class="type_pc">
  <img src="./images/sample2.png" alt="" class="type_sp">
</div>
*/
@media (min-width: 960px) {
  .ex-link {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear; }
    .ex-link:hover {
      opacity: .5; }
    .p-home-lead {
      overflow: hidden; }
        .p-home-lead__swiper .p-work__box {
          width: 280px; }
          .p-home-lead__swiper .p-work__box.item-02 {
            translate: 10px 0; }
  .p-work .grid-column {
    grid-column: var(--col1)/var(--col2); }
    .p-work__wraps-wrap .p-work__desc {
      width: 289px; }
  .p-work__wraps-img {
    width: 356px;
    position: absolute;
    bottom: 0;
    right: 63px; }
    .p-work__packing-wrap .p-work__left {
      margin-left: 73px;
      margin-right: 27px; }
    .p-work__packing-wrap .p-work__right {
      margin-left: 63px; }
    .p-work__packing-wrap .p-work__heading {
      margin-top: 57px; }
  .p-work__packing-img {
    width: 356px;
    margin-top: 132px; }
    .p-work__stickers-wrap .p-work__desc {
      width: 551px;
      margin-left: auto; }
    .p-work__food-wrap .p-work__right {
      margin-left: 50px;
      margin-right: 94px; }
    .p-work__food-wrap .p-work__left {
      margin-left: -40px; }
    .p-work__food-wrap .p-work__desc {
      width: 258px; }
  .p-work__food-img {
    width: 312px;
    position: absolute;
    bottom: 16px;
    left: 250px; }
    .p-work__hygiene-wrap .p-work__right {
      margin-left: 71px; }
    .p-work__hygiene-wrap .p-work__left {
      margin-left: 34px;
      margin-right: 65px; }
  .p-work__hygiene-img {
    width: 302px;
    margin-top: 127px;
    margin-left: 32px; }
    .p-work__logistics-wrap .p-work__left {
      margin-left: 69px;
      margin-right: 31px; }
    .p-work__logistics-wrap .p-work__right {
      margin-left: 52px; }
  .p-work__logistics-img {
    width: 356px;
    margin-top: 125px; }
  .for-mobile {
    display: none; } }
@media (min-width: 560px) {
    .hover-underline:hover::after {
      scale: 1 1;
      -webkit-transform-origin: left top;
              transform-origin: left top; } }
@media (max-width: 959px) {
  html, body {
    width: 100%;
    height: 100%; }
  h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
    margin: 0;
    padding: 0; }
  img {
    height: auto;
    max-height: 100%;
    max-width: 100%; }
      .l-container > .c-heading {
        padding-top: 152px; }
      .l-container.-stack > * + * {
        margin-top: 100px; }
    .l-footer {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 32px; }
      .l-footer__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-block: 60px 24px;
        gap: 32px; }
      .l-footer__left-title {
        font-size: 3.2rem; }
      .l-footer__right {
        gap: 24px; }
      .l-footer__right-tel {
        font-size: 1.8rem; }
        .l-footer__right-tel > span {
          font-size: 3.2rem;
          margin-left: 4px;
          line-height: 1.7; }
      .l-footer__right-copy {
        margin-top: 36px; }
    .l-header__list {
      gap: 20px; }
    .l-header__link {
      font-size: 1.4rem; }
    .l-main {
      padding-bottom: 120px; }
    .p-company-overview__body {
      padding: 16px 17px 0; }
    .p-company-overview__content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: start;
      padding: 0 3px 16px;
      gap: 4px;
      line-height: 1.5; }
      .p-company-overview__content + * {
        padding-top: 16px; }
    .p-company-office__body {
      padding: 16px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 30px; }
    .p-company-office__title {
      font-size: 1.8rem; }
    .p-company-office__address {
      margin-top: 16px; }
  .p-company-office__fax {
    margin-top: 8px; }
    .p-company-office__right {
      width: 100%; }
      .p-company-office__map iframe {
        aspect-ratio: 310 / 233; }
      .p-home-mv__lead-en {
        font-size: 3.2rem;
        margin-bottom: 0; }
          .p-home-lead__swiper .p-work__box.item-01 {
            margin-top: 53px; }
          .p-home-lead__swiper .p-work__box.item-02 {
            margin-top: 87px; }
          .p-home-lead__swiper .p-work__box.item-04 {
            margin-top: 90px; }
          .p-home-lead__swiper .p-work__box.item-05 {
            margin-top: 32px; }
          .p-home-lead__swiper .p-work__box.item-07 {
            margin-top: 88px; }
    .p-home-news__body {
      padding: 30px 16px; }
    .p-home-news__title {
      font-size: 1.8rem; }
    .p-home-news__btn-wrap {
      margin-top: 20px; }
  .p-home-feature {
    margin-top: 120px !important; }
    .p-home-feature__stack > * + * {
      margin-top: 40px; }
    .p-home-feature__body {
      display: block;
      padding: 16px; }
    .p-home-feature__title {
      font-size: 5.6rem; }
    .p-home-feature__desc {
      margin-top: 16px;
      margin-bottom: 16px; }
    .p-home-feature__right {
      width: 100%;
      max-width: 400px;
      margin-inline: auto;
      margin-top: 0; }
    .p-recruit__body {
      padding: 16px; }
    .p-recruit-profile__list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .p-recruit-profile__item {
      padding: 33px 16px 32px 16px; }
    .p-recruit-profile__item:nth-child(1)::before {
      right: 25px; }
      .p-recruit-profile__item:nth-child(2)::before {
        right: -25px; }
      .p-recruit-profile__item:nth-child(3)::before {
        right: -22px; }
    .p-recruit-profile__title {
      font-size: 1.8rem; }
    .p-recruit-jobs__body-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 16px; }
  .p-recruit-jobs__title {
    font-size: 1.8rem; }
    .p-recruit-jobs__desc {
      margin-top: 16px; }
    .p-recruit-jobs__slide {
      margin-top: 24px; }
  .p-recruit-jobs__slide-head {
    font-size: 1.8rem; }
    .p-recruit-jobs__slide-blur {
      width: 72px; }
    .p-recruit-interview__title {
      font-size: 1.8rem; }
      .p-recruit-interview__title span {
        display: block;
        margin-left: 0; }
    .p-recruit-interview__body-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 16px; }
    .p-recruit-interview__ques {
      font-size: 1.6rem;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: start;
      line-height: 1.5; }
      .p-recruit-interview__ques::before {
        width: 24px;
        height: 24px;
        font-size: 1.8rem; }
    .p-recruit-interview__ans {
      padding-left: 34px;
      margin-top: 8px; }
  .p-recruit-requirements .p-recruit__body {
    padding-bottom: 0; }
    .p-recruit-requirements__wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 46px; }
    .p-recruit-requirements__content {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      padding-left: 4px; }
      .p-recruit-requirements__content dt {
        font-size: 1.6rem;
        line-height: 1.5; }
      .p-recruit-requirements__content dd {
        margin-top: 4px;
        line-height: 1.5; }
    .p-work .stack > * + * {
      margin-top: 20px; }
    .p-work__section {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      margin-inline: 16px;
      margin-top: 60px; }
    .p-work__heading {
      font-size: 4.8rem;
      margin-top: 0; }
    .p-work__sub {
      font-size: 1.8rem; }
    .p-work__desc {
      font-size: 1.4rem;
      margin-top: 20px; }
    .p-work__img-body {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      padding: 20px;
      gap: 10px; }
      .p-work__img-body.-rev {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr; }
        .p-work__img-body.-rev .p-work__img-body-img {
          -ms-grid-row: 2;
          -ms-grid-row-span: 1;
          grid-row: 2 / 3; }
  .p-work__img-body-img {
    margin-left: 152px; }
    .p-work__img-card {
      margin-right: -15px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .p-work__img-card.-rev {
      margin-right: auto;
      margin-left: -15px;
      border-radius: 20px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
    .p-work__img-title {
      font-size: 1.4rem; }
    .p-work__img-desc {
      font-size: 1.4rem; }
    .p-work__wraps-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 20px; }
      .p-work__wraps-wrap .p-work__right {
        margin-left: 0;
        margin-right: 0; }
      .p-work__wraps-wrap .p-work__img-card-img {
        right: -40px; }
      .p-work__wraps-wrap .p-work__img-card:nth-child(2) .p-work__img-card-img {
        left: 0; }
    .p-work__wraps-wrap .p-work__img-card:nth-child(3) .p-work__img-card-img {
      right: -30px; }
  .p-work__wraps-img {
    margin-left: 143px; }
    .p-work__packing-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 30px; }
    .p-work__packing-wrap .p-work__right {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1; }
    .p-work__packing-wrap .p-work__heading-group {
      margin-inline: auto; }
  .p-work__packing-img {
    margin-inline: 72px;
    margin-top: 30px; }
    .p-work__stickers-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 30px; }
      .p-work__stickers-wrap .p-work__img-title {
        margin-top: 0; }
  .p-work__stickers-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 10px;
    margin-right: 143px; }
    .p-work__food-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 30px; }
    .p-work__food-wrap .p-work__right {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
  .p-work__food-img {
    margin-left: 142px;
    margin-top: 10px; }
    .p-work__hygiene-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 30px; }
    .p-work__hygiene-wrap .p-work__heading-group {
      margin-inline: auto; }
  .p-work__hygiene-img {
    margin-top: 30px;
    margin-inline: 72px; }
    .p-work__logistics-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 30px; }
    .p-work__logistics-wrap .p-work__left {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .p-work__logistics-wrap .p-work__heading-group {
      margin-inline: auto; }
  .p-work__logistics-img {
    margin-top: 30px;
    margin-inline: 72px; }
    .p-work__factory-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; }
  .p-work__factory-img {
    margin-inline: 16px; }
      .c-heading__title {
        font-size: 3.2rem; }
      .c-heading__sub {
        font-size: 1.8rem;
        margin-left: 10px; }
      .c-heading__lead {
        font-size: 1.6rem;
        line-height: 2; }
    .c-rainbow-line {
      height: 6px; }
  .for-large {
    display: none; } }
@media (max-width: 1220px) {
    .l-container {
      padding-inline: 40px; }
    .l-header__logo {
      left: 40px; }
    .l-header__nav {
      right: 40px; }
      .p-home-mv__lead {
        right: 40px; }
    .p-home-lead {
      margin-inline: -40px; }
      .p-home-lead__lead {
        margin-right: 193px; }
      .p-home-lead__swiper {
        margin-inline: -40px; }
    .p-work .c-heading {
      padding-inline: 40px; }
    .p-work__stickers-wrap.grid-column {
      -ms-grid-column: 2;
      -ms-grid-column-span: 10;
      grid-column: 2 / 12; }
    .p-work__stickers-heading-group {
      -ms-grid-columns: 240px 1fr;
      grid-template-columns: 240px 1fr; }
    .p-work__stickers-img-wrap {
      margin-inline: 40px; }
    .p-work__factory-wrap.grid-column {
      -ms-grid-column: 2;
      -ms-grid-column-span: 10;
      grid-column: 2 / 12; } }
@media (max-width: 1220px) and (max-width: 959px) {
    .l-container {
      padding-inline: 16px; }
    .l-header__logo {
      left: 16px;
      width: 82px; }
    .l-header__nav {
      right: 16px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 20px; }
    .p-home-mv__lead {
      right: 16px;
      bottom: 40px;
      font-size: 1.8rem; }
    .p-home-lead__swiper {
      margin-inline: -16px;
      margin-bottom: 0; }
    .p-work .c-heading {
      padding-inline: 16px; }
    .p-work__stickers-heading-group {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; }
    .p-work__stickers-img-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-inline: 0;
      margin-top: 0;
      gap: 22px; } }
@media (max-width: 1220px) and (max-width: 959px) and (min-width: 520px) and (max-width: 959px) {
    .p-home-mv__lead {
      font-size: 2rem; } }
@media (max-width: 959px) and (min-width: 520px) and (max-width: 959px) {
    .p-home-mv__lead-en {
      font-size: 4.7rem; } }
@media (max-width: 1220px) and (max-width: 519px) {
    .p-home-lead {
      margin-inline: 0; }
    .p-home-lead__lead {
      margin-right: 0;
      display: block;
      font-size: 1.6rem;
      line-height: 3.75; } }
@media (max-width: 1220px) and (min-width: 520px) and (max-width: 959px) {
    .p-home-lead__lead {
      margin-right: 160px; } }
@media (max-width: 519px) {
      .p-home-lead__swiper {
        margin-top: 24px; }
      .p-home-lead__btn {
        max-width: 170px;
        margin-inline: auto; }
      .p-home-lead__link {
        padding: 13px 46px;
        font-size: 1.6rem; }
    .p-home-news__btn {
      font-size: 1.6rem;
      padding: 13px 46px; }
    .p-work__stickers-img-body {
      width: calc(50% - 15px);
      padding-block: 10px; } }
@media (any-hover: hover) {
      .p-home-lead__link:hover {
        background: var(--btn-hover); }
    .p-home-news__btn:hover {
      background: var(--btn-hover);
      color: #000; } }
@media (min-width: 960px) and (max-width: 1100px) {
  .p-work__heading {
    font-size: 5.4rem; } }
@media (min-width: 960px) and (min-width: 1330px) {
  .p-work__wraps-wrap .p-work__left {
    margin-left: 70px; } }
@media (min-width: 960px) and (max-width: 1320px) {
  .p-work__wraps-wrap .p-work__left {
    margin-left: 0; }
  .p-work__wraps-wrap .p-work__right {
    margin-left: 0;
    margin-right: 40px;
    grid-column: var(--col1)/13; }
    .p-work__wraps-img {
      bottom: -30px;
      right: 40px; }
    .p-work__packing-wrap .p-work__left {
      margin-left: 40px; }
    .p-work__food-wrap .p-work__right {
      margin-left: -50px;
      margin-right: 70px; }
    .p-work__food-wrap .p-work__left {
      margin-left: -30px; }
    .p-work__food-img {
      width: 240px; }
    .p-work__hygiene-wrap .p-work__left {
      margin-left: 60px;
      margin-right: 40px; }
    .p-work__logistics-wrap .p-work__left {
      margin-left: 40px; } }
@media (min-width: 960px) and (max-width: 1220px) {
  .p-work__wraps-wrap .p-work__left {
    grid-column: 1/var(--col2);
    margin-left: 40px; } }
@media (max-width: 1320px) {
    .p-work__packing-wrap.grid-column {
      grid-column: 1/var(--col2); }
    .p-work__food-wrap.grid-column {
      grid-column: var(--col1)/12; }
    .p-work__hygiene-wrap.grid-column {
      grid-column: 1 / -1; }
    .p-work__logistics-wrap.grid-column {
      grid-column: 1/var(--col2); } }
/*# sourceMappingURL=../../_cache/_maps/styles.css.map */
