@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 10.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 28, 2023
 */
@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;overflow:clip;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;
}
*/
:root {
  --color-darkblue: #1A1D3C;
  --color-blue: #191D3E;
  --color-text: #191D3E;
  --color-bg: #F4F2EF;
  --color-bg-blue: #191D3E;
  --color-bg-blue-light: #F2F5F8; }
[data-inview="up"],
[data-inview-each="grid"],
[data-inview-each="up"] {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem); }
[data-inview-up="scale"] {
  -webkit-transform: scale(0);
          transform: scale(0); }
[data-inview="left"],
[data-inview-each="left"] {
  opacity: 0;
  -webkit-transform: translateX(8rem);
          transform: translateX(8rem); }
[data-inview="left"] {
  opacity: 0;
  -webkit-transform: translateX(-8rem);
          transform: translateX(-8rem); }
[data-inview="label"] {
  display: inline-block;
  background-color: var(--color-pink-light);
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
/* == @import "../node_modules/normalize.css/normalize.css"; */
[v-cloak] {
  display: none; }
html {
  font-size: 62.5%; }
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--color-text); }
a {
  color: inherit;
  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; }
ul, ol, li {
  padding: 0;
  margin: 0; }
li {
  list-style: none; }
img {
  vertical-align: bottom; }
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.2; }
.l-footer {
  position: relative;
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 4.5rem;
  position: relative; }
body.is-footer-bg {
    background-color: var(--color-bg); }
.l-footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-blue);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-clip-path: ellipse(57.8vw 46rem at 50% 46rem);
            clip-path: ellipse(57.8vw 46rem at 50% 46rem); }
.l-footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
.l-footer__logoItem {
    display: block;
    width: 33.4rem;
    aspect-ratio: 334.14 / 146.73; }
.l-footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.l-footer__infoText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.6rem;
    line-height: 3rem;
    font-weight: 500; }
.l-footer__infoTextSp {
    display: none; }
.l-footer__infoTable {
    width: 48rem;
    margin-left: auto;
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: center;
    font-weight: 700; }
.l-footer__infoTableRow {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: (1fr)[8];
        grid-template: auto/repeat(8, 1fr); }
.l-footer__infoTableRow + .l-footer__infoTableRow {
      border-top: 1px solid #fff; }
.l-footer__infoTableItemDay {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 7px; }
.l-footer__infoTableItem {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 6.3rem; }
.l-footer__infoTableItem .c-sprite {
      height: 1.8rem; }
.l-footer__infoTableItemIcon {
    width: 2.37rem;
    margin-bottom: 0.3rem;
    aspect-ratio: 23.7 / 20.7; }
.l-footer__infoTableNote {
    text-align: right;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.9rem;
    margin-top: 2.2rem; }
.l-footer__copyright {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid #6A6C7F;
    padding-top: 2.8rem;
    margin-top: 5.3rem; }
.l-footer__tel {
    display: inline-block;
    width: 1.4rem;
    aspect-ratio: 1;
    margin-right: 6px;
    position: relative;
    top: 2px; }
.l-footer__tel img {
      display: block;
      width: 100%;
      height: 100%; }
.l-header {
  z-index: 3010;
  position: fixed;
  top: 0;
  left: 0; }
.l-header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.l-header__logo {
    width: 45.4rem;
    -webkit-transition: width 1s ease;
    transition: width 1s ease; }
body.is-header-logo-s .l-header__logo {
      width: 20rem; }
body.js-is-menu-open .l-header__logo {
      display: none; }
.l-header__nav--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3001;
    width: 100%;
    border-top: solid 1px #fff; }
body.js-is-menu-open .l-header__nav--sp {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      border-top: none; }
body.js-is-menu-open .l-header__nav--sp a {
        display: none; }
.l-header__nav--sp a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 33.3333%;
      padding: 20px 0;
      border-right: solid 1px #fff;
      background-color: var(--color-darkblue);
      color: #fff;
      font-size: 1.4rem; }
.l-header__navItem {
    font-size: 1.6rem;
    line-height: 1;
    line-height: 2.4rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    position: relative;
    top: 2px; }
.l-header__navItem + .l-header__navItem {
      margin-left: 2.4rem; }
.l-header__navBtn {
    font-weight: 700;
    line-height: 1;
    font-size: 1.5rem;
    width: 14.4rem;
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    background-color: var(--color-darkblue);
    margin-left: 2.4rem;
    line-height: 1;
    padding: 1.1rem 1.8rem;
    letter-spacing: 0.1em;
    border-radius: 10rem;
    text-align: center; }
.l-header__navBtnIcon {
    display: inline-block;
    width: 1.8rem;
    aspect-ratio: 1;
    margin-right: 6px;
    position: relative;
    top: -1px; }
.l-header__navBtnIcon img {
      display: block;
      width: 100%;
      height: 100%; }
.l-header__navBtnIcon.tel {
      top: 4px;
      width: 1.4rem; }
.l-header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: none;
    border: none;
    margin-left: .8rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 33.3333%;
    height: 4rem;
    background-color: var(--color-blue);
    color: #fff;
    padding-left: 1rem; }
.l-header__btnIcon {
    position: relative;
    width: 2.4rem;
    height: 1.1rem; }
.l-header__btnIcon::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0.2rem;
      background-color: #fff;
      border-radius: 1rem;
      -webkit-transition: top .3s .3s ease, -webkit-transform .3s ease;
      transition: top .3s .3s ease, -webkit-transform .3s ease;
      transition: top .3s .3s ease, transform .3s ease;
      transition: top .3s .3s ease, transform .3s ease, -webkit-transform .3s ease; }
body.js-is-menu-open .l-header__btnIcon::before {
        background-color: var(--color-blue);
        -webkit-transition: top .3s ease, -webkit-transform .3s .3s ease;
        transition: top .3s ease, -webkit-transform .3s .3s ease;
        transition: top .3s ease, transform .3s .3s ease;
        transition: top .3s ease, transform .3s .3s ease, -webkit-transform .3s .3s ease;
        top: 50%;
        -webkit-transform: translateY(-50%) rotate(25deg);
                transform: translateY(-50%) rotate(25deg); }
.l-header__btnIcon::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0.2rem;
      background-color: #fff;
      border-radius: 1rem;
      -webkit-transition: top .3s .3s ease, -webkit-transform .3s ease;
      transition: top .3s .3s ease, -webkit-transform .3s ease;
      transition: top .3s .3s ease, transform .3s ease;
      transition: top .3s .3s ease, transform .3s ease, -webkit-transform .3s ease; }
body.js-is-menu-open .l-header__btnIcon::after {
        background-color: var(--color-blue);
        -webkit-transition: top .3s ease, -webkit-transform .3s .3s ease;
        transition: top .3s ease, -webkit-transform .3s .3s ease;
        transition: top .3s ease, transform .3s .3s ease;
        transition: top .3s ease, transform .3s .3s ease, -webkit-transform .3s .3s ease;
        top: 50%;
        -webkit-transform: translateY(-50%) rotate(-25deg);
                transform: translateY(-50%) rotate(-25deg); }
.l-header__btnLabel {
    font-size: 0.7rem;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin-left: .5rem; }
/**
 * main.scss
 */
.l-menu {
  z-index: 3000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-blue);
  overflow-y: auto;
  display: none; }
.l-menu__content {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
.l-menu__list {
    padding-left: 4rem;
    padding-right: 4rem; }
.l-menu__listItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #707070; }
.l-menu__listItem.logo img {
      width: 18rem; }
.l-menu__listItemIcon {
    margin-left: auto;
    width: 1rem;
    height: 1rem; }
.l-menu__listItemIcon svg {
      display: block;
      width: 100%;
      height: 100%; }
.l-menu__listSub {
    padding-left: 3rem;
    margin-top: 0.2rem;
    border-bottom: 1px solid #707070; }
.l-menu__listSubItem {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    padding-top: 1.6rem;
    padding-bottom: 1.4rem;
    margin: 0; }
.l-menu__listSubItem + .l-menu__listSubItem {
      border-top: 1px solid #707070; }
.l-menu__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 4rem;
    background-color: #ACB3BE;
    padding: 1.4rem; }
.l-menu__bottomLogo {
    width: 11.5rem; }
.l-menu__bottomInfo {
    font-size: 1.4rem;
    line-height: 2.4rem; }
.p-about {
  background-color: var(--color-bg);
  overflow: hidden; }
.p-aboutPagetop {
  position: relative;
  z-index: 0; }
.p-aboutPagetop::after {
    position: absolute;
    width: 47.6rem;
    height: 51.0748rem;
    top: -15rem;
    right: -30rem;
    z-index: -1;
    background-image: url(../images/recruit/bg-deco-1.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    content: ""; }
.p-aboutLead {
  position: relative;
  z-index: 0; }
.p-aboutLead__bgdeco {
    position: absolute;
    top: 0;
    z-index: -3;
    width: 92.4rem;
    left: -10rem; }
.p-aboutLead__bgdeco img {
      display: block;
      width: 100%;
      height: auto; }
.p-aboutLead__head {
    position: relative;
    z-index: 0; }
.p-aboutLead__heading {
    position: relative;
    font-size: 3rem;
    line-height: 6rem; }
.p-aboutLead__deco {
    width: 158.6rem;
    aspect-ratio: 1586.86 / 1291.29;
    position: absolute;
    top: -30rem;
    left: -20rem;
    z-index: -1; }
.p-aboutLead__deco img {
      display: block;
      width: 100%;
      height: 100%; }
.p-aboutLead__desc {
    font-weight: 500; }
.p-aboutFeature {
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 0; }
.p-aboutFeature__bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 73rem;
    top: 0;
    left: 0;
    z-index: -1; }
.p-aboutFeature__bgInner {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
    opacity: 0; }
.p-aboutFeature__box {
    width: 26.6rem;
    aspect-ratio: 1;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border-radius: 1.6rem;
    border: 2px solid var(--color-blue);
    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;
    font-size: 3rem;
    line-height: 5.1rem;
    font-weight: 700;
    letter-spacing: 0.02em; }
.p-aboutFeature__body {
    margin-top: 30vh; }
.p-aboutFeature__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 81rem;
    margin-left: auto;
    margin-right: auto; }
.p-aboutFeature__item + .p-aboutFeature__item {
      margin-top: 30vh; }
.p-aboutFeature__itemFig {
    width: 41.1rem;
    aspect-ratio: 411 / 350; }
.p-aboutFeature__itemHeading {
    font-size: 2.4rem;
    line-height: 4rem; }
.p-aboutFeature__itemDesc {
    font-size: 1.8rem;
    line-height: 3.6rem;
    font-weight: 500;
    margin-top: 2.4rem; }
.p-aboutBox {
  position: relative;
  z-index: 0;
  background-color: var(--color-bg-blue);
  padding-bottom: 12rem;
  overflow: hidden; }
.p-aboutBox__bg {
    width: 100%;
    aspect-ratio: 1440 / 580; }
.p-aboutBox__item {
    border: 2px solid var(--color-blue);
    background-color: #fff;
    position: relative;
    z-index: 10; }
.p-aboutBox__itemHead {
    background-color: #fff;
    padding: 6.5rem 11.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 12rem 12rem 0 0; }
.p-aboutBox__itemHeadingMain {
    display: block;
    font-size: 3.6rem;
    line-height: 5.6rem;
    font-weight: 700; }
.p-aboutBox__itemHeadingSub {
    display: block;
    font-weight: 700; }
.p-aboutBox__itemDesc {
    font-size: 1.8rem;
    line-height: 3.6rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    letter-spacing: 0.05em; }
.p-aboutBox__itemBody {
    background-color: var(--color-bg); }
.p-aboutBox__prof {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.p-aboutBox__prof + .p-aboutBox__prof {
      margin-top: 2.4rem; }
.p-aboutBox__profFigItem {
    width: 32.8rem;
    aspect-ratio: 328 / 382;
    border-radius: .8rem;
    overflow: hidden; }
.p-aboutBox__profMeta {
    margin-left: 2.4rem; }
.p-aboutBox__profText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
.p-aboutBox__profPos {
    font-size: 2rem;
    line-height: 3.6rem;
    font-weight: 700; }
.p-aboutBox__profName {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 0.5rem; }
.p-aboutBox__profProf {
    font-size: 1.8rem;
    line-height: 3.6rem;
    letter-spacing: 0.1em; }
.p-aboutBox__profDesc {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: 500;
    margin-top: 4.4rem; }
.p-aboutBox__nurse .swiper {
    width: 100%;
    overflow: visible; }
.p-aboutBox__nurseSlider {
    margin-top: 4.3rem; }
.p-aboutBox__nurseSliderBtn {
    background: none;
    border: none;
    background-color: var(--color-blue);
    color: #fff;
    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;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: -12rem;
    border: 2px solid var(--color-blue);
    -webkit-box-shadow: 0.4rem 0.5rem 1rem rgba(0, 0, 0, 0.12);
            box-shadow: 0.4rem 0.5rem 1rem rgba(0, 0, 0, 0.12); }
.p-aboutBox__nurseSliderBtn.-prev {
      right: 8.4rem; }
.p-aboutBox__nurseSliderBtn.-prev svg {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
.p-aboutBox__nurseSliderBtn.-next {
      right: 0; }
.p-aboutBox__nurseSliderBtn svg {
      width: 1.2rem;
      height: 1.2rem; }
.p-aboutBox__nurseSliderItem {
    width: 44rem;
    aspect-ratio: 440 / 294;
    border-radius: 1.2rem;
    overflow: hidden; }
.p-aboutBox__nurseText {
    margin-top: 4.8rem; }
.p-aboutBox__nurseHeading {
    font-size: 2.4rem;
    line-height: 4rem;
    font-weight: 700;
    letter-spacing: 0.05em; }
.p-aboutBox__nurseDesc {
    font-size: 1.8rem;
    line-height: 3.6rem;
    font-weight: 500;
    margin-top: 2.4rem; }
.p-aboutBox__itemBottom {
    background-image: url("../images/common/bg-blue.png");
    background-size: 40rem 40rem;
    background-size: contain;
    background-position: center;
    overflow: hidden; }
.p-aboutBox__itemBottom p {
      line-height: 1.7; }
.p-aboutBox__itemBottomLead {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700; }
.p-aboutBox__itemBottomBtn {
    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;
    gap: 5.8rem;
    margin-top: 4.2rem; }
.p-aboutBox__itemBottomButton {
    position: relative;
    display: block;
    width: 7.2rem;
    height: 7.2rem;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid var(--color-blue); }
.p-aboutBox__itemBottomButton::before {
      content: "";
      display: block;
      width: 2.6rem;
      height: 2px;
      background-color: var(--color-blue);
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg); }
.p-aboutBox__itemBottomButton::after {
      content: "";
      display: block;
      width: 2.6rem;
      height: 2px;
      background-color: var(--color-blue);
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg); }
.swiper-wrapper.nurseSwiper-wrapper {
  height: auto !important; }
.p-aboutFacility {
  padding-top: 8rem;
  padding-bottom: 12.8rem; }
.p-aboutFacility__itemHeadingMain {
    display: block;
    font-size: 3.6rem;
    line-height: 5.6rem;
    font-weight: 700; }
.p-aboutFacility__itemHeadingSub {
    display: block;
    font-size: 2rem;
    line-height: 3.6rem;
    font-weight: 700;
    margin-top: .5rem; }
.p-aboutFacility__desc {
    font-size: 1.8rem;
    line-height: 3.6rem;
    font-weight: 500;
    margin-top: 2.4rem; }
.p-aboutFacility__figs {
    margin-top: 4rem; }
.p-aboutFacility__figs .swiper {
      overflow: visible; }
.p-aboutFacility__figs .swiper-wrapper {
      height: auto !important; }
.p-aboutFacility__list {
    max-width: 98rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    font-size: 1.8rem;
    line-height: 3.6rem;
    font-weight: 500;
    letter-spacing: normal; }
.p-aboutFacility__SliderBtn {
    background: none;
    border: none;
    background-color: var(--color-blue);
    color: #fff;
    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;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: -12rem;
    border: 2px solid var(--color-blue);
    -webkit-box-shadow: 0.4rem 0.5rem 1rem rgba(0, 0, 0, 0.12);
            box-shadow: 0.4rem 0.5rem 1rem rgba(0, 0, 0, 0.12); }
.p-aboutFacility__SliderBtn.-prev {
      right: 8.4rem; }
.p-aboutFacility__SliderBtn.-prev svg {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
.p-aboutFacility__SliderBtn.-next {
      right: 0; }
.p-aboutFacility__SliderBtn svg {
      width: 1.2rem;
      height: 1.2rem; }
.p-aboutFacility__figsItem img {
    height: 400px; }
.p-home {
  overflow: hidden; }
.p-homeFv {
  position: relative;
  z-index: 0;
  background-color: #F4F2EF; }
.p-homeFv::before {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 30rem);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2; }
.p-homeFv__deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
.p-homeFv__deco.-is1 {
      width: 61rem;
      -webkit-transform: translate(166%, -24%);
              transform: translate(166%, -24%); }
.p-homeFv__deco.-is2 {
      width: 65rem;
      top: 32rem;
      left: -20rem; }
.p-homeFv__deco.-is3 {
      width: 53.8rem;
      bottom: -37rem;
      right: -12rem; }
.p-homeFv__deco img {
      display: block;
      width: 100%;
      height: auto; }
.p-homeFv__pic {
    width: 100%;
    aspect-ratio: 1440 / 805;
    position: relative;
    z-index: 30;
    -webkit-transform: translateY(70px);
            transform: translateY(70px); }
.p-homeNews__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 107rem;
  width: 100%;
  margin-left: auto;
  z-index: 0; }
.p-homeNews__content::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100vw - 13.6rem);
    height: 100%;
    z-index: -1;
    background-color: #F2F5F8;
    border-radius: 0 4.5rem 4.5rem 0;
    -webkit-box-shadow: -3px 4px 13px rgba(0, 0, 0, 0.16) inset;
            box-shadow: -3px 4px 13px rgba(0, 0, 0, 0.16) inset; }
.p-homeNews__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
.p-homeNews__list li + li {
    border-top: 1px solid #fff; }
.p-homeNews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  cursor: not-allowed; }
.p-homeNews__itemTitle {
  font-size: 1.5rem;
  line-height: 2.6rem; }
.p-homeNews__itemDate {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  line-height: 2.6rem;
  font-weight: 500;
  margin-left: auto; }
.p-homeAbout {
  position: relative;
  padding-top: 8.63rem;
  z-index: 0; }
.p-homeAbout__deco {
    width: 158.6rem;
    aspect-ratio: 1586.86 / 1291.29;
    position: absolute;
    top: 0;
    left: -30rem;
    z-index: 10; }
.p-homeAbout__deco img {
      display: block;
      width: 100%;
      height: 100%; }
.p-homeAbout__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.p-homeAbout__heading {
    font-size: 3rem;
    line-height: 5rem;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 30; }
.p-homeAbout__desc {
    font-size: 1.8rem;
    line-height: 3.6rem;
    letter-spacing: 0.08em;
    margin-top: 2rem;
    max-width: 42.2rem;
    position: relative;
    z-index: 30; }
.p-homeAbout__desc p + p {
      margin-top: 1.2rem; }
.p-homeAbout__btn {
    margin-top: 1.6rem;
    position: relative;
    z-index: 30; }
.p-homeAbout__pic {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 76.4rem;
    position: relative;
    z-index: 30; }
.p-homeAbout__picDeco {
    position: absolute;
    width: 51rem;
    bottom: -55rem;
    right: 14rem; }
.p-homeAbout__picDeco img {
      -webkit-transform: scale(0.4);
              transform: scale(0.4); }
.p-homeAbout__picItem {
    position: absolute; }
.p-homeAbout__picItem.-is1 {
      width: 34.7rem;
      aspect-ratio: 347 / 410;
      top: 2rem;
      right: 0;
      z-index: 0; }
.p-homeAbout__picItem.-is2 {
      width: 49.8rem;
      aspect-ratio: 498 / 461;
      top: 15rem;
      right: 25rem;
      z-index: 5; }
.p-homeAbout__picItem.-is3 {
      width: 26.1rem;
      aspect-ratio: 261 / 434;
      top: 27rem;
      right: 10rem;
      z-index: 10; }
.p-homeMedical {
  position: relative; }
.p-homeMedical__content {
    position: relative;
    padding-top: 13rem; }
.p-homeMedical__pic {
    display: block;
    width: 62.6rem; }
.p-homeMedical__picItem {
    display: block;
    width: 62.6rem;
    aspect-ratio: 628 / 941;
    border-radius: 0 8rem 8rem 0;
    overflow: hidden; }
.p-homeMedical__picDeco {
    position: absolute;
    width: 31.5rem;
    bottom: -15rem;
    left: -15rem; }
.p-homeMedical__picDeco img {
      display: block;
      width: 100%;
      height: auto; }
.p-homeMedical__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 2.4rem; }
.p-homeMedical__fig {
    position: relative;
    display: block;
    margin-left: auto;
    aspect-ratio: 764 / 667;
    margin-top: 2.2rem; }
.p-homeMedical__figLink {
    display: block;
    width: 23rem;
    z-index: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
.p-homeMedical__figLink img {
      display: block;
      width: 100%;
      height: auto; }
.p-homeInfo__content {
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 11rem; }
.p-homeInfo__deco {
  position: relative;
  width: calc(100% + 7rem);
  left: 5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 2rem 1fr;
      grid-template: auto/repeat(2, 1fr);
  grid-gap: 2rem;
  gap: 2rem; }
.p-homeInfo__decoItem {
  width: 100%;
  aspect-ratio: 584 / 299;
  border-radius: 1.6rem;
  overflow: hidden; }
.p-homeInfo__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 6.5rem; }
.p-homeInfo__table {
  width: 61.4rem;
  font-size: 1rem;
  line-height: 1.4rem;
  text-align: center;
  font-weight: 700; }
.p-homeInfo__tableRow {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: (1fr)[8];
      grid-template: auto/repeat(8, 1fr);
  border-bottom: 1px solid #ACB3BE; }
.p-homeInfo__tableItemDay {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 7px; }
.p-homeInfo__tableItem {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 6.3rem;
  font-size: 1.5rem; }
.p-homeInfo__tableItem small {
    display: inline-block;
    font-size: 1.3rem;
    margin-top: 0.3rem; }
.p-homeInfo__tableItem .c-sprite {
    height: 1.8rem; }
.p-homeInfo__tableItem.-s {
    font-size: 1.1rem;
    line-height: 1.5rem; }
.p-homeInfo__tableItemIcon {
  width: 2.37rem;
  aspect-ratio: 23.7 / 20.7; }
.p-homeInfo__tableNote {
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2.6rem;
  margin-top: .5rem;
  text-align: left; }
.p-homeInfo__map {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 334 / 246;
  border-radius: 4rem;
  overflow: hidden; }
.p-homeInfo__map iframe {
    width: 100%;
    height: 100%; }
.p-homeInfo__desc {
  width: 100%; }
.p-homeInfo__descHeading {
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 3.6rem;
  font-weight: 700; }
.p-homeInfo__descText {
  font-size: 1.5rem;
  line-height: 2.6rem;
  margin-top: 1.5rem;
  font-weight: 500; }
.p-homeInfo__descList {
  margin-top: 1em;
  font-size: 1.5rem;
  line-height: 2.6rem; }
.p-homeStaff {
  position: relative;
  margin-top: 22rem;
  padding-bottom: 13rem; }
.p-homeStaff__deco {
    position: absolute;
    width: 73.4rem;
    top: -32rem;
    left: -35rem;
    z-index: 20; }
.p-homeStaff__deco img {
      display: block;
      width: 100%;
      height: auto; }
.p-homeStaff__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.p-homeStaff__text {
    padding-top: 3rem; }
.p-homeStaff__btn {
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
.p-homeStaff__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
.p-homeStaff__col.-is1 {
      width: 50%;
      gap: 2.2rem;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
.p-homeStaff__col.-is2 {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-left: 2.8rem;
      gap: 3rem; }
.p-homeStaff__pic {
    border-radius: 2.1rem;
    overflow: hidden; }
.p-homeStaff__pic.-is1 {
      width: 51rem;
      aspect-ratio: 509 / 415; }
.p-homeStaff__pic.-is2 {
      width: 100%;
      aspect-ratio: 718 / 382; }
.p-homeStaff__pic.-is3 {
      width: 56.2rem;
      aspect-ratio: 562 / 346; }
.p-homeStaff__pic.-is4 {
      width: 55.6rem;
      aspect-ratio: 556 / 405; }
.p-homeStaff__pic.-is5 {
      width: 100%;
      aspect-ratio: 694 / 410; }
.p-medical {
  overflow: hidden;
  background-color: var(--color-bg); }
.p-medicalPagetop {
  position: relative;
  z-index: 0; }
.p-medicalPagetop::after {
    position: absolute;
    width: 47.6rem;
    height: 51.0748rem;
    top: -15rem;
    right: -30rem;
    z-index: -1;
    background-image: url(../images/recruit/bg-deco-1.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    content: ""; }
.p-medicalLead {
  margin-top: 6rem; }
.p-medicalLead__heading {
    font-size: 3rem;
    font-weight: 700; }
.p-medicalLead__desc {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    line-height: 3.6rem;
    margin-top: 3.2rem; }
.p-medicalInfo {
  margin-top: 18rem;
  background-image: url("../images/common/bg-blue.png");
  background-size: 40rem 40rem;
  background-size: contain;
  background-position: center; }
.p-medicalInfo__content {
    background-color: #fff;
    padding: 6.4rem 6.8rem;
    position: relative;
    top: -14rem; }
.p-medicalInfo__descHeadingSub {
    display: block;
    font-size: 1.6rem;
    font-weight: 700; }
.p-medicalInfo__descHeadingMain {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: .5rem;
    letter-spacing: 0.1em; }
.p-medicalInfo__descText {
    font-size: 1.5rem;
    line-height: 2.6rem;
    font-weight: 500;
    margin-top: 1.6rem; }
.p-medicalInfo__infoRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.p-medicalInfo__infoRow + .p-medicalInfo__infoRow {
      margin-top: 1.6rem; }
.p-medicalInfo__infoDt {
    width: 10.7rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em; }
.p-medicalInfo__infoDd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
.p-medicalInfo__infoDd strong {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0.05em; }
.p-medicalInfo__infoTime {
    font-size: 2rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.6rem; }
.p-medicalInfo__infoDesc {
    font-size: 1.5rem;
    line-height: 2.6rem;
    font-weight: 500;
    margin-top: .5rem; }
.p-medicalInfo__table {
    width: 100%;
    margin-left: auto;
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: center;
    font-weight: 700;
    margin-top: 5rem; }
.p-medicalInfo__tableRow {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: (1fr)[8];
        grid-template: auto/repeat(8, 1fr); }
.p-medicalInfo__tableRow + .p-medicalInfo__tableRow {
      border-top: 1px solid currentColor; }
.p-medicalInfo__tableItemDay {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 7px; }
.p-medicalInfo__tableItem {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 6.3rem;
    font-size: 2rem; }
.p-medicalInfo__tableItem small {
      display: block;
      font-size: 1.3rem;
      margin-top: 0.5rem; }
.p-medicalInfo__tableItem.-head {
      font-size: 1.6rem;
      letter-spacing: 0.06em; }
.p-medicalInfo__tableItem.-s {
      font-size: 1.1rem;
      line-height: 1.5rem;
      letter-spacing: 0.05em; }
.p-medicalInfo__tableItem .c-sprite {
      height: 1.8rem; }
.p-medicalInfo__tableItemIcon {
    width: 2.37rem;
    aspect-ratio: 23.7 / 20.7; }
.p-medicalInfo__reserve {
    margin-top: 5.6rem;
    color: #fff;
    background-color: var(--color-bg-blue);
    border-radius: 5rem; }
.p-medicalInfo__reserveHeading {
    font-size: 3rem;
    font-weight: 700; }
.p-medicalInfo__reserveHeadingSub {
    font-size: 2rem;
    margin-top: 5rem;
    font-weight: 700; }
.p-medicalInfo__reserveBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.4rem; }
.p-medicalInfo__reserveBtnItem {
    position: relative;
    display: block;
    width: 33.8rem;
    color: var(--color-bg-blue);
    background-color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    border-radius: 10rem;
    padding: 2.4rem 0; }
.p-medicalInfo__reserveBtnItemIcon {
    display: block;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    right: 4rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
.p-medicalInfo__reserveListItem {
    font-size: 1.6rem;
    line-height: 2.8rem;
    font-weight: 500;
    text-indent: -1.3em;
    padding-left: 1.3em; }
.p-medicalInfo__reserveListItem + .p-medicalInfo__reserveListItem {
      margin-top: 2rem; }
.p-medicalInfo__reserveListIcon {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.5rem;
    position: relative;
    top: 3px; }
.p-medicalInfo__reserveNote {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 2.4rem;
    line-height: 2.8rem; }
.p-medicalDeco {
  width: 100%; }
.p-medicalContent {
  position: relative;
  z-index: 11;
  overflow: hidden;
  padding-top: 14rem;
  padding-bottom: 8.5rem;
  background-color: var(--color-bg); }
.p-medicalContent__deco {
    position: absolute;
    width: 47.6rem;
    height: auto;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
.p-medicalContent__deco.-is1 {
      width: 52.6rem;
      top: calc(50% - 50rem);
      left: calc(50% + 50rem); }
.p-medicalContent__deco.-is2 {
      width: 52.6rem;
      top: calc(50% - 10rem);
      left: calc(50% - 60rem); }
.p-medicalContent__deco.-is3 {
      width: 62.8rem;
      top: calc(50% + 40rem);
      left: calc(50% + 50rem); }
.p-medicalContent__deco.-is4 {
      width: 38.2rem;
      top: calc(50% + 40rem);
      left: calc(50% - 60rem); }
.p-medicalContent__deco img {
      display: block;
      width: 100%;
      height: auto; }
.p-medicalContent__modal.c-modal {
    background-image: url("../images/common/bg-blue.png");
    background-size: 40rem 40rem;
    background-size: contain;
    background-position: center;
    padding: 7rem; }
.p-medicalContent__modalContent {
    position: relative;
    width: 100%;
    height: 100%;
    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;
    margin-left: auto;
    margin-right: auto; }
.p-medicalContent__modalContent .swiper {
      position: relative; }
.p-medicalContent__slider {
    position: relative;
    width: 126.2rem;
    height: 62.6rem;
    padding: 14rem 20rem;
    background-image: url("../images/medical/modal-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
.p-medicalContent__modalClose {
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
    width: 6rem;
    height: 6rem;
    background-color: #fff;
    border: 0.2rem solid var(--color-blue);
    border-radius: 50%;
    position: absolute;
    top: 10rem;
    right: 10rem;
    cursor: pointer;
    z-index: 4000; }
.p-medicalContent__modalClose::before {
      content: "";
      display: block;
      width: 2.4rem;
      height: 0.2rem;
      background-color: #1A1D3C;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg); }
.p-medicalContent__modalClose::after {
      content: "";
      display: block;
      width: 2.4rem;
      height: 0.2rem;
      background-color: #1A1D3C;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg); }
.p-medicalContent__sliderControll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: auto;
    width: 44rem;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    padding: 2rem; }
.p-medicalContent__sliderSate {
    position: relative;
    width: 7.3rem;
    height: 5.8rem;
    font-size: 2.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #ACB3BE; }
.p-medicalContent__sliderSateCurrent {
    position: absolute;
    top: 0;
    left: 0; }
.p-medicalContent__sliderSateDivide {
    position: absolute;
    display: block;
    width: 5.7rem;
    height: 0.2rem;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg); }
.p-medicalContent__sliderSateAll {
    position: absolute;
    bottom: 0;
    right: 0; }
.p-medicalContent__sliderBtn {
    background: none;
    border: none;
    background-color: var(--color-blue);
    color: #fff;
    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;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-blue);
    -webkit-box-shadow: 0.4rem 0.5rem 1rem rgba(0, 0, 0, 0.12);
            box-shadow: 0.4rem 0.5rem 1rem rgba(0, 0, 0, 0.12); }
.p-medicalContent__sliderBtn.-prev svg {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
.p-medicalContent__sliderBtn svg {
      width: 1.2rem;
      height: 1.2rem; }
.p-medicalContent__sliderItemInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.p-medicalContent__sliderItemFig {
    width: 32.3rem; }
.p-medicalContent__sliderItemHeading {
    font-size: 2.4rem;
    font-weight: 700; }
.p-medicalContent__sliderItemDesc {
    font-size: 1.8rem;
    line-height: 3.6rem;
    margin-top: 3.2rem; }
.p-medicalContent__heading {
    padding-top: 1rem; }
.p-medicalContent__headingMain {
    display: block;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    font-weight: 700; }
.p-medicalContent__headingDesc {
    font-family: "Montserrat", sans-serif;
    display: block;
    font-size: 2rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 1.2rem; }
.p-medicalContent__desc {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.8rem;
    line-height: 3.6rem;
    letter-spacing: 0.04em; }
.p-medicalContent__fig {
    position: relative;
    aspect-ratio: 1096 / 748;
    margin-top: 9.8rem; }
.p-medicalContent__figItem {
    display: block;
    width: 28rem;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    -webkit-box-shadow: 0.3rem 0.3rem 2.6rem rgba(0, 0, 0, 0.16);
            box-shadow: 0.3rem 0.3rem 2.6rem rgba(0, 0, 0, 0.16);
    -webkit-transform: scale(0);
            transform: scale(0); }
.p-medicalContent__figItem.-is1 {
      top: 0;
      left: 38%; }
.p-medicalContent__figItem.-is2 {
      top: 10%;
      right: 10%; }
.p-medicalContent__figItem.-is3 {
      bottom: 15%;
      right: 0; }
.p-medicalContent__figItem.-is4 {
      bottom: 0%;
      right: 25%; }
.p-medicalContent__figItem.-is5 {
      bottom: 0%;
      left: 22%; }
.p-medicalContent__figItem.-is6 {
      bottom: 20%;
      left: 0; }
.p-medicalContent__figItem.-is7 {
      top: 7%;
      left: 11%; }
.p-medicalContent__figBg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    width: 82.7rem;
    aspect-ratio: 827.15 / 482.48r;
    z-index: -2; }
.p-medicalContent__figIllust {
    width: 39.1rem;
    aspect-ratio: 391 / 300;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0; }
.p-medicalContent__figText {
    width: 29.4rem;
    aspect-ratio: 294 / 64;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    z-index: 10;
    opacity: 0; }
.p-medicalContent__list {
    margin-top: 13.7rem;
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 10rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 4rem 4rem 0 0;
    padding-left: 2rem;
    padding-right: 2rem; }
.p-medicalContent__listHeading {
    position: relative;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
.p-medicalContent__listHeadingIllust {
    position: absolute;
    bottom: -4rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    z-index: -1; }
.p-medicalContent__listHeadingItem {
    background-color: #F4F2EF;
    border-radius: 2.3rem;
    display: inline-block;
    text-align: center;
    padding: 2rem 3.5rem;
    font-size: 2rem;
    letter-spacing: 0.05em; }
.p-medicalContent__listBody {
    margin-top: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem 2rem;
    position: relative;
    z-index: 3; }
.p-medicalContent__listItem {
    width: calc(50% - 1rem); }
.p-medicalContent__listItemText {
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    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;
    margin-top: 1rem; }
.p-medicalContent__listItemTextIcon {
    display: inline-block;
    margin-left: 1.6rem;
    width: 1.2rem;
    height: 1.2rem; }
.p-medicalContent__listItemTextIcon svg {
      display: block;
      width: 100%;
      height: 100%; }
.p-recruit {
  overflow: hidden;
  background-color: var(--color-bg); }
.p-recruitPagetop {
  position: relative;
  z-index: 0; }
.p-recruitPagetop::after {
    position: absolute;
    width: 47.6rem;
    height: 51.0748rem;
    top: -15rem;
    right: -30rem;
    z-index: -1;
    background-image: url(../images/recruit/bg-deco-1.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    content: ""; }
.p-recruitLead {
  overflow: hidden;
  background-color: var(--color-bg); }
.p-recruitLead__desc {
    letter-spacing: 0.06em; }
.p-recruitLead__btns {
    margin-top: 4.3rem; }
.p-recruitLead__btnsItem {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
.p-recruitLead__slider {
    position: relative;
    z-index: 10;
    margin-top: 8rem;
    pointer-events: none; }
.p-recruitLead__slider .swiper {
      width: 100%;
      overflow: visible; }
.p-recruitLead__slider .swiper-wrapper {
      -webkit-transition-timing-function: linear;
              transition-timing-function: linear;
      height: auto; }
.p-recruitLead__sliderItem {
    width: 50.2rem;
    aspect-ratio: 502 / 334;
    border-radius: 1.6rem;
    overflow: hidden; }
.p-recruitBox {
  padding-top: 14rem;
  background-color: #fff;
  position: relative;
  z-index: 0;
  margin-top: -4rem;
  padding-bottom: 12rem; }
.p-recruitBox::before {
    content: "";
    display: block;
    width: 100%;
    height: 113.6rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url("../images/common/bg-blue.png");
    background-size: 40rem 40rem;
    background-position: center; }
.p-recruitBox__deco {
    position: absolute;
    width: 47.6rem;
    height: auto;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    z-index: -1; }
.p-recruitBox__deco img {
      display: block;
      width: 100%;
      height: auto; }
.p-recruitBox__deco.-is1 {
      width: 51rem;
      top: 140rem;
      left: -15rem; }
.p-recruitBox__deco.-is2 {
      width: 209.7rem;
      top: 160rem;
      right: -150rem; }
.p-recruitBox__deco.-is3 {
      width: 40rem;
      top: 300rem;
      right: -10rem; }
.p-recruitBox__deco.-is4 {
      width: 136.8rem;
      top: 340rem;
      left: -60rem; }
.p-recruitBox__deco.-is5 {
      width: 73.4rem;
      top: 358rem;
      right: -30rem; }
.p-recruitBox__item {
    border: 0.4rem solid var(--color-blue);
    background-color: #fff;
    border-radius: 12rem;
    overflow: hidden; }
.p-recruitBox__item + .p-recruitBox__item {
      margin-top: 6.4rem; }
.p-recruitBox__itemHead {
    background-color: var(--color-bg);
    padding: 6.5rem 11.4rem; }
.p-recruitBox__itemProfPic {
    width: 20.5rem;
    border-radius: 1.2rem;
    overflow: hidden;
    aspect-ratio: 205 / 220; }
.p-recruitBox__itemProfTitle {
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 700; }
.p-recruitBox__itemProfPosition {
    display: block;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-top: 2.4rem; }
.p-recruitBox__itemProfName {
    display: block;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 0.8rem; }
.p-recruitBox__itemProfDesc {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1.3rem; }
.p-recruitBox__itemProfHeading {
    font-size: 3rem;
    line-height: 5rem;
    letter-spacing: 0.1em;
    font-weight: 700; }
.p-recruitBox__itemBtn {
    width: 33.8rem; }
.p-recruitBox__itemBody {
    background-color: #fff;
    display: none; }
.p-recruitBox__schedule {
    border-left: 1px solid var(--color-blue);
    padding: 6rem 11.8rem 6.4rem; }
.p-recruitBox__scheduleItem + .p-recruitBox__scheduleItem {
    margin-top: 3.2rem; }
.p-recruitBox__scheduleItemHead {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 2rem; }
.p-recruitBox__scheduleItemBody {
    min-height: 2rem;
    overflow: hidden;
    background-color: #F2F5F8;
    border-radius: 3.6rem; }
.p-recruitBox__scheduleItemFig {
    width: 30rem;
    height: 100%; }
.p-recruitBox__scheduleItemFig img {
      width: 100%;
      height: -webkit-max-content;
      height: -moz-max-content;
      height: max-content;
      -o-object-fit: cover;
         object-fit: cover; }
.p-recruitBox__scheduleItemText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 3rem 4.8rem; }
.p-recruitBox__scheduleItemText strong {
      display: block;
      font-size: 2rem;
      line-height: 3.6rem; }
.p-recruitBox__scheduleItemText p {
      font-size: 1.5rem;
      line-height: 2.6rem;
      margin-top: 1rem; }
.p-recruitBox__itemBottom {
    background: var(--color-bg); }
.p-recruitBox__itemBottomBtnItem {
    width: 33.8rem; }
.p-recruitBox__itemBottomButton {
    position: relative;
    display: block;
    width: 7.2rem;
    height: 7.2rem;
    background-color: #fff;
    border-radius: 50%;
    color: var(--color-blue);
    border: 2px solid var(--color-blue); }
.p-recruitBox__itemBottomButton::before {
      content: "";
      display: block;
      width: 2.6rem;
      height: 2px;
      background-color: currentColor;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg); }
.p-recruitBox__itemBottomButton::after {
      content: "";
      display: block;
      width: 2.6rem;
      height: 2px;
      background-color: currentColor;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg); }
.p-recruitBox__contactinfoText {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 700; }
.p-recruitBox__contactinfoText + .p-recruitBox__contactinfoText {
      margin-top: .5rem; }
.p-recruitVoice {
  position: relative;
  z-index: 0;
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: 4rem; }
.p-recruitVoice::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--color-bg); }
.p-recruitVoice__content {
    position: relative;
    aspect-ratio: 1440 / 757.16;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
.p-recruitVoice__head {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 0.1em;
    font-weight: 700; }
.p-recruitVoice__desc {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em; }
.p-recruitVoice__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
.p-recruitInfo {
  position: relative;
  z-index: 0;
  padding-bottom: 12rem;
  background-color: var(--color-bg); }
.p-recruitInfo__itemHead {
    font-size: 3rem;
    font-weight: 700; }
.p-recruitInfo__itemDesc {
    font-weight: 500; }
.p-recruitInfo__itemInfo {
    border-top: 1px solid var(--color-blue); }
.p-recruitInfo__itemInfoRow + .p-recruitInfo__itemInfoRow {
    margin-top: 2rem; }
.p-recruitInfo__itemInfoDt {
    font-weight: 700; }
.p-recruitInfo__itemInfoDd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.8rem;
    line-height: 3.6rem; }
.p-recruitInfo__itemInfoDd span {
      display: block;
      font-size: 1.5rem;
      line-height: 2.5rem; }
.p-recruitInfo__btn {
    margin-top: 8rem;
    max-width: 89rem;
    margin-left: auto;
    margin-right: auto; }
.p-recruitInfo__contactInfo {
    margin-top: 8rem; }
.p-recruitFlow {
  background-color: #fff;
  padding-bottom: 13rem; }
.p-recruitFlow__heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center; }
.p-recruitFlow__body {
    margin-top: 6.3rem; }
.p-recruitFlow__figs {
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-gap: 2rem;
    gap: 2rem;
    z-index: 0; }
.p-recruitFlow__figsBar {
    display: block;
    position: absolute;
    width: 100%;
    height: 0.3rem;
    top: 50%;
    left: 0;
    background-color: var(--color-blue);
    z-index: -1;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    opacity: 0; }
.p-recruitFlow__figsItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--color-bg-blue-light);
    border: 0.3rem solid var(--color-blue);
    border-radius: 50%;
    -webkit-transform: scale(0);
            transform: scale(0); }
.p-recruitFlow__figsItemHeading {
    display: block;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 700;
    text-align: center;
    min-height: 7.2rem;
    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;
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem); }
.p-recruitFlow__figsItemFig {
    width: 21rem;
    aspect-ratio: 210 / 168;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem); }
.p-recruitFlow__desc {
    margin-top: 5.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    line-height: 3.6rem;
    letter-spacing: 0.05em; }
.p-recruitFlow__contactInfo {
    margin-top: 8rem; }
.p-reserve {
  background-color: var(--color-bg);
  overflow: hidden; }
.p-reservePagetop {
  position: relative;
  z-index: 0; }
.p-reservePagetop::after {
    position: absolute;
    width: 47.6rem;
    height: 51.0748rem;
    top: -15rem;
    right: -30rem;
    z-index: -1;
    background-image: url(../images/recruit/bg-deco-1.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    content: ""; }
.p-reserveLead {
  overflow: hidden;
  background-color: var(--color-bg); }
.p-reserveLead__desc {
    letter-spacing: 0.06em; }
.p-reserveBox {
  background-color: #fff;
  border-radius: 5.6rem;
  margin: 6.4rem auto 0;
  padding: 6.4rem 6.8rem;
  max-width: 108rem; }
.p-reserveBox__boxText {
    line-height: 1.6;
    text-align: center; }
.p-reserveBox__itemBottomBtn {
    margin-top: 2.4rem; }
.p-reserveBox__itemBottomBtn + * {
      margin-top: 6.2rem; }
.p-reserveBox__itemBottomBtnItem {
    margin: auto; }
.c-btn {
  position: relative;
  display: block;
  width: 100%;
  background: var(--color-blue);
  color: #fff;
  padding: 2.3rem;
  border-radius: 10rem;
  text-align: center;
  border: 2px solid var(--color-blue);
  font-size: 1.8rem;
  -webkit-box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.12);
          box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.12); }
.c-btn.-l {
    padding: 5rem 2rem; }
.c-btn.-white {
    background-color: #fff;
    color: var(--color-blue); }
.c-btn__label {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em; }
.c-btn.-l .c-btn__label {
      font-size: 2rem; }
.c-btn__icon {
    position: absolute;
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    position: absolute;
    top: 50%;
    right: 3.5rem;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    color: #fff;
    z-index: 10;
    color: currentColor; }
.c-btn.-l .c-btn__icon {
      width: 1.8rem;
      height: 1.8rem;
      right: 8rem; }
.c-btn.-icon-right .c-btn__icon {
      -webkit-transform: translateY(-50%) rotate(0deg);
              transform: translateY(-50%) rotate(0deg); }
.c-btn[target="_blank"] .c-btn__icon {
      -webkit-transform: translateY(-50%) rotate(90deg);
              transform: translateY(-50%) rotate(90deg); }
.c-contactInfo {
  color: #fff;
  background-color: var(--color-blue);
  border-radius: 4.8rem;
  max-width: 89rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 3.8rem;
  text-align: center;
  font-size: 2rem;
  line-height: 3.6rem;
  font-weight: 500; }
.c-contactInfo__text + .c-contactInfo__text {
    margin-top: .5rem; }
.c-contactInfo__link:hover {
    text-decoration: underline; }
.c-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.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; }
.c-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
.c-link__label {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 700; }
.c-link__icon {
    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;
    width: 6rem;
    height: 6rem;
    color: #fff;
    background-color: var(--color-darkblue);
    border-radius: 50%;
    margin-left: 1.8rem;
    -webkit-box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.16);
            box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.16); }
.c-link__iconSvg {
    width: 1rem;
    aspect-ratio: 1; }
.c-modal {
  z-index: 4000;
  background: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none; }
.c-pagetop__main {
  display: block;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  font-weight: 700; }
.c-pagetop__sub {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 1rem; }
.c-textHeading.-right {
  text-align: right; }
.c-textHeading__main {
  display: block;
  font-size: 3.6rem;
  letter-spacing: 0.1em; }
.c-textHeading__main.-s {
    font-size: 3rem; }
.c-textHeading__sub {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 3.2rem;
  margin-top: 1.2rem;
  font-weight: 600; }
/**
* 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; }
body.u-scroll-fix {
  overflow: hidden; }
.u-fit-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; }
.u-fit-img.-contain {
    -o-object-fit: contain;
       object-fit: contain; }
.u-fit-w {
  display: block;
  width: 100%;
  height: auto; }
.c-sprite {
  display: block;
  width: 100%;
  height: 100%; }
/**
 * 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 (max-width: 959px) {
    [data-inview="up"],
    [data-inview-each="grid"],
    [data-inview-each="up"] {
      -webkit-transform: translateY(2rem);
              transform: translateY(2rem); }
    [data-inview="left"],
    [data-inview-each="left"] {
      -webkit-transform: translateX(4rem);
              transform: translateX(4rem); }
    [data-inview="left"] {
      -webkit-transform: translateX(-4rem);
              transform: translateX(-4rem); }
    [data-inview="label"] {
      padding: .2rem 1.5rem; }
    html {
      font-size: 2.666vw; }
  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%;
    width: auto; }
    .l-footer {
      padding-bottom: calc(4.5rem + 58.7px);
      background-color: var(--color-bg-blue); }
      .l-footer::before {
        display: block;
        position: absolute;
        width: 100%;
        height: 3rem;
        top: -3rem;
        z-index: 10;
        -webkit-clip-path: ellipse(100vw 18rem at 50% 18rem);
                clip-path: ellipse(100vw 18rem at 50% 18rem); }
    .l-footer__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .l-footer__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .l-footer__infoText {
        font-size: 1.4rem;
        margin-top: 2rem; }
      .l-footer__infoTextSp {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 7rem 1fr;
            grid-template: auto / 7rem 1fr;
        font-size: 1.4rem;
        line-height: 2.6rem;
        margin-top: 2rem; }
      .l-footer__infoTable {
        width: 100%;
        margin-top: 4rem;
        border-bottom: 1px solid #fff; }
      .l-footer__tel {
        top: 4px; }
    .l-header {
      padding-top: 1.1rem;
      padding-left: 1rem;
      padding-top: 1.65rem; }
      .l-header__logo {
        display: block;
        width: 12rem; }
        body.is-header-logo-s .l-header__logo {
          width: 12rem; }
    .l-header__nav {
      display: none; }
      .l-header__navItem {
        display: none; }
      .l-header__navBtn {
        font-size: 1rem;
        width: 10.5rem;
        height: 4rem; }
      .l-header__navBtnIcon {
        width: 1.8rem;
        top: 0; }
      .l-header__btn {
        z-index: 3001;
        height: auto;
        margin-left: 0;
        padding: 20px 0; }
        body.js-is-menu-open .l-header__btn {
          background-color: #ACB3BE;
          color: var(--color-blue); }
      .l-header__btnLabel {
        font-size: 1.4rem; }
    .p-aboutPagetop {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-aboutPagetop::after {
        width: 38.4rem;
        right: -10rem; }
    .p-aboutLead {
      margin-top: 5.6rem; }
      .p-aboutLead__bgdeco {
        width: 39rem;
        top: 40rem; }
    .p-aboutLead__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-aboutLead__heading {
        font-size: 2rem;
        line-height: 3.6rem; }
      .p-aboutLead__deco {
        width: 115rem;
        top: 0;
        left: 0; }
    .p-aboutLead__body {
      margin-top: 5rem; }
      .p-aboutLead__desc {
        font-size: 1.8rem;
        line-height: 3.6rem; }
      .p-aboutLead__desc + .p-aboutLead__desc {
        margin-top: 4.5rem; }
    .p-aboutFeature {
      padding-top: 16rem;
      padding-bottom: 6rem; }
      .p-aboutFeature__bg {
        width: 100%; }
      .p-aboutFeature__bgInner {
        width: 34.6rem;
        height: 70rem; }
    .p-aboutFeature__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-aboutFeature__box {
        width: 18.4rem;
        aspect-ratio: 1;
        font-size: 2rem;
        line-height: 3.6rem; }
      .p-aboutFeature__item {
        width: 100%;
        max-width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .p-aboutFeature__itemFig {
        position: relative;
        width: 100%; }
    .p-aboutFeature__itemText {
      margin-top: 4.5rem; }
      .p-aboutFeature__itemHeading {
        font-size: 2rem;
        line-height: 3.6rem; }
      .p-aboutFeature__itemDesc {
        margin-top: 2rem; }
      .p-aboutBox__bg {
        aspect-ratio: 375 / 250; }
        .p-aboutBox__bg img {
          -o-object-fit: right;
             object-fit: right; }
    .p-aboutBox__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-aboutBox__item {
        border-radius: 3rem 0 0 3rem;
        width: calc(100% + 1.5rem);
        border-right: none;
        margin-top: -12rem;
        padding-top: 4rem; }
      .p-aboutBox__itemHead {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 1.5rem 2rem;
        border-radius: 3rem 3rem 0 0; }
      .p-aboutBox__itemHeadingMain {
        font-size: 2.4rem;
        line-height: 1; }
        .p-aboutBox__itemHeadingMain br {
          display: none; }
      .p-aboutBox__itemHeadingSub {
        font-size: 1.8rem;
        line-height: 1;
        margin-top: 1.2rem; }
      .p-aboutBox__itemDesc {
        margin-top: 3rem;
        font-size: 1.6rem;
        line-height: 3.2rem; }
      .p-aboutBox__prof {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 4rem 0; }
    .p-aboutBox__profFig {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-left: 2rem;
      padding-right: 2rem; }
      .p-aboutBox__profFigItem {
        width: 15.8rem; }
      .p-aboutBox__profText {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-top: 2rem; }
      .p-aboutBox__profPos {
        font-size: 1.5rem;
        line-height: 1; }
      .p-aboutBox__profName {
        font-size: 2.4rem;
        margin-top: 1rem;
        line-height: 1; }
      .p-aboutBox__profProf {
        font-size: 1.2rem;
        line-height: 2rem;
        margin-top: 0.8rem; }
      .p-aboutBox__profDesc {
        font-size: 1.5rem;
        line-height: 2.6rem;
        margin-top: 2rem; }
    .p-aboutBox__nurse {
      padding: 3rem 2rem; }
      .p-aboutBox__nurseSliderBtn {
        top: -10rem; }
        .p-aboutBox__nurseSliderBtn.-prev {
          right: 7rem; }
      .p-aboutBox__nurseSliderItem {
        width: 23rem; }
      .p-aboutBox__nurseHeading {
        font-size: 1.6rem; }
      .p-aboutBox__nurseDesc {
        font-size: 1.5rem;
        margin-top: 1.5rem; }
      .p-aboutBox__itemBottom {
        border-radius: 0 0 3rem 3rem;
        padding: 4rem 3.2rem; }
      .p-aboutBox__itemBottomBtn {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1.2rem; }
    .p-aboutBox__itemBottomBtnItem {
      width: 30rem; }
    .p-aboutFacility__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-aboutFacility__itemHeadingMain {
        font-size: 2.4rem;
        line-height: 1; }
      .p-aboutFacility__itemHeadingSub {
        font-size: 1.8rem; }
      .p-aboutFacility__desc {
        font-size: 1.6rem; }
      .p-aboutFacility__figs {
        margin-top: 9.6rem; }
      .p-aboutFacility__list {
        font-size: 1.5rem;
        line-height: 2.6rem;
        margin-top: 2.4rem; }
      .p-aboutFacility__SliderBtn {
        top: -10rem; }
        .p-aboutFacility__SliderBtn.-prev {
          right: 7rem; }
    .p-homeFv {
      height: 100vh; }
        .p-homeFv__deco.-is1 {
          width: 33rem;
          -webkit-transform: translate(44%, -55%);
                  transform: translate(44%, -55%); }
        .p-homeFv__deco.-is2 {
          top: 35rem;
          width: 60.7rem;
          left: -26rem; }
        .p-homeFv__deco.-is3 {
          display: none; }
      .p-homeFv__pic {
        width: 100%;
        height: 100%; }
        .p-homeFv__pic img {
          display: block;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; }
  .p-homeNews {
    background-color: #F4F2EF; }
  .p-homeNews__inner {
    padding-left: 1.6rem;
    padding-right: 1.6rem; }
    .p-homeNews__content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-top: 4rem; }
      .p-homeNews__content::before {
        width: calc(100% + 1.5rem); }
    .p-homeNews__list {
      padding-right: 1.5rem; }
    .p-homeNews__item {
      display: block; }
    .p-homeNews__itemTitle {
      font-size: 1.4rem;
      line-height: 2.4rem; }
    .p-homeNews__itemDate {
      display: block;
      font-size: 1.2rem;
      line-height: 1.5rem;
      margin-top: 0.5rem; }
    .p-homeAbout {
      background-color: var(--color-bg);
      padding-top: 9.2rem;
      padding-bottom: 4rem; }
      .p-homeAbout__deco {
        width: 115rem;
        top: 20rem; }
    .p-homeAbout__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-homeAbout__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; }
      .p-homeAbout__heading {
        font-size: 2.4rem;
        line-height: 4rem;
        letter-spacing: 0.1em; }
      .p-homeAbout__btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
      .p-homeAbout__pic {
        width: 100vw;
        aspect-ratio: 375 / 364;
        margin-left: calc(50% - 50vw); }
      .p-homeAbout__picDeco {
        display: none; }
        .p-homeAbout__picItem.-is1 {
          width: 18.2rem;
          top: 0; }
        .p-homeAbout__picItem.-is2 {
          width: 26rem;
          top: initial;
          left: -2rem;
          bottom: 0; }
        .p-homeAbout__picItem.-is3 {
          width: 14rem;
          bottom: 0;
          top: initial;
          right: 0; }
    .p-homeMedical {
      background-color: var(--color-bg-blue-light); }
    .p-homeMedical__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-homeMedical__content {
        padding-top: 0; }
      .p-homeMedical__pic {
        position: relative;
        width: 36.5rem;
        top: 0;
        left: -1.5rem; }
      .p-homeMedical__picItem {
        aspect-ratio: 365 / 302;
        border-radius: 0 3.2rem 3.2rem 0; }
      .p-homeMedical__picDeco {
        width: 16.3rem;
        left: -4rem;
        bottom: -4rem; }
    .p-homeMedical__text {
      margin-top: 9rem; }
    .p-homeMedical__head .c-textHeading {
      text-align: left; }
      .p-homeMedical__btn {
        margin-top: 1.35rem; }
      .p-homeMedical__fig {
        width: 100%; }
      .p-homeMedical__fig figure picture img {
        height: auto !important; }
  .p-homeInfo {
    background-color: var(--color-bg-blue-light); }
  .p-homeInfo__inner {
    padding-left: 1.6rem;
    padding-right: 1.6rem; }
    .p-homeInfo__content {
      background-color: var(--color-bg-blue-light);
      padding-bottom: 10rem;
      padding-top: 0; }
    .p-homeInfo__deco {
      display: none; }
    .p-homeInfo__info {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-top: 0rem;
      padding-top: 6rem; }
    .p-homeInfo__table {
      width: 100%; }
    .p-homeInfo__map {
      margin-top: 4rem;
      width: 100%;
      border-radius: 2rem; }
    .p-homeInfo__desc {
      margin-top: 0.5rem; }
    .p-homeInfo__descHeading {
      margin-top: 4.2rem; }
      .p-homeStaff__deco {
        z-index: -1; }
    .p-homeStaff__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-homeStaff__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .p-homeStaff__btn {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
      .p-homeStaff__btn .c-link {
        padding-right: 1.6rem; }
        .p-homeStaff__col.-is1 {
          width: 100%; }
        .p-homeStaff__col.-is2 {
          width: 100%;
          margin-left: 0; }
        .p-homeStaff__pic.-is1 {
          width: 100%; }
        .p-homeStaff__pic.-is2 {
          width: 100%; }
        .p-homeStaff__pic.-is3 {
          width: 100%; }
        .p-homeStaff__pic.-is4 {
          width: 100%; }
        .p-homeStaff__pic.-is5 {
          width: 100%; }
    .p-medicalPagetop {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-medicalPagetop::after {
        width: 38.4rem;
        right: -10rem; }
    .p-medicalLead__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-medicalLead__heading {
        font-size: 2rem; }
      .p-medicalLead__desc {
        font-size: 1.6rem; }
    .p-medicalInfo__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
    .p-medicalInfo__inner {
      padding-left: 0;
      padding-right: 0; }
      .p-medicalInfo__content {
        padding: 5rem 1.5rem; }
    .p-medicalInfo__desc {
      width: 100%; }
    .p-medicalInfo__info {
      margin-top: 3rem; }
      .p-medicalInfo__infoDt {
        width: 9rem;
        font-size: 1.5rem; }
        .p-medicalInfo__infoDd strong {
          font-size: 1.5rem; }
      .p-medicalInfo__infoTime {
        font-size: 1.8rem;
        gap: 1.6rem; }
      .p-medicalInfo__tableItem {
        font-size: 1.1rem; }
        .p-medicalInfo__tableItem small {
          font-size: 1.1rem; }
        .p-medicalInfo__tableItem.-head {
          font-size: 1.1rem; }
      .p-medicalInfo__reserve {
        width: calc(100% + 1.5rem);
        border-radius: 2.4rem 0 0 2.4rem;
        padding: 3.4rem 2.8rem; }
      .p-medicalInfo__reserveHeading {
        font-size: 2.4rem; }
      .p-medicalInfo__reserveHeadingSub {
        font-size: 1.6rem;
        margin-top: 1.6rem; }
    .p-medicalInfo__reserveList {
      margin-top: 4rem; }
    .p-medicalDeco {
      aspect-ratio: 375 / 292; }
    .p-medicalContent {
      padding-bottom: 0;
      padding-top: 8rem; }
      .p-medicalContent__slider {
        width: 72.2rem;
        height: auto;
        background-image: url("../images/medical/modal-bg-sp.png");
        background-size: contain;
        padding: 24vh 20rem 12vh; }
      .p-medicalContent__modalClose {
        position: relative;
        top: 0;
        right: 0;
        width: 4.8rem;
        height: 4.8rem;
        -webkit-transform: translate(280px, 20px);
                transform: translate(280px, 20px); }
      .p-medicalContent__sliderControll {
        position: relative;
        width: 100%; }
      .p-medicalContent__sliderBtn {
        width: calc(6rem * .8);
        height: calc(6rem * .8); }
      .p-medicalContent__sliderItemInner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .p-medicalContent__sliderItemFig {
        width: 18rem;
        height: 18rem; }
    .p-medicalContent__sliderItemText {
      margin-top: 2.4rem;
      min-height: 27rem; }
      .p-medicalContent__sliderItemDesc {
        font-size: 1.6rem;
        line-height: 3.2rem;
        margin-top: 2.4rem; }
    .p-medicalContent__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-medicalContent__headingMain {
        font-size: 2.4rem; }
      .p-medicalContent__headingDesc {
        font-size: 1.8rem; }
      .p-medicalContent__desc {
        margin-top: 2.4rem; }
      .p-medicalContent__listHeadingIllust {
        bottom: 0;
        -webkit-transform: translate(-50%, 40%);
                transform: translate(-50%, 40%); }
    .p-recruitPagetop {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-recruitPagetop::after {
        width: 38.4rem;
        right: -10rem; }
    .p-recruitLead {
      margin-top: 4rem; }
    .p-recruitLead__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-recruitLead__desc {
        font-size: 1.6rem;
        line-height: 3.2rem; }
      .p-recruitLead__btns {
        margin-top: 6rem; }
      .p-recruitLead__btnsItem + .p-recruitLead__btnsItem {
        margin-top: 1rem; }
      .p-recruitLead__sliderItem {
        width: 31.2rem; }
      .p-recruitBox__deco {
        display: none; }
    .p-recruitBox__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-recruitBox__item {
        border-radius: 4rem 0 0 4rem;
        position: relative;
        right: -1.5rem;
        border-right: none; }
      .p-recruitBox__itemHead {
        padding: 3.7rem 3rem;
        padding-right: 1.5rem; }
      .p-recruitBox__itemProfPic {
        display: none; }
      .p-recruitBox__itemProfPosition {
        letter-spacing: 0;
        display: inline;
        font-size: 1.6ren;
        margin-right: 3.3rem; }
      .p-recruitBox__itemProfName {
        display: inline-block;
        font-size: 3rem;
        margin-top: 0.7rem; }
      .p-recruitBox__itemProfHeading {
        font-size: 2rem;
        white-space: nowrap; }
      .p-recruitBox__itemBtn {
        width: 100%;
        margin-top: 2.3rem; }
      .p-recruitBox__schedule {
        padding: 4rem 1.5rem; }
      .p-recruitBox__scheduleItemBody {
        margin-top: 1.7rem; }
      .p-recruitBox__scheduleItemFig {
        width: 100%;
        height: auto; }
      .p-recruitBox__scheduleItemText {
        padding: 3.3rem 2rem; }
      .p-recruitBox__itemBottom {
        padding: 3rem 2.7rem; }
      .p-recruitBox__itemBottomBtnItem {
        width: 100%; }
        .p-recruitBox__itemBottomBtnItem + .p-recruitBox__itemBottomBtnItem {
          margin-top: 1.5rem; }
      .p-recruitBox__itemBottomButton {
        margin-top: 1.8rem;
        margin-left: auto;
        margin-right: auto; }
    .p-recruitBox__contactinfo {
      margin-top: 3.2rem; }
      .p-recruitBox__contactinfoText {
        font-size: 1.5rem;
        line-height: 2.6rem;
        text-align: center; }
      .p-recruitVoice__content {
        aspect-ratio: 375 / 1044;
        padding-top: 6.8rem;
        padding-bottom: 9rem; }
      .p-recruitVoice__head {
        font-size: 2rem;
        line-height: 3.6rem; }
      .p-recruitVoice__desc {
        font-size: 1.6rem;
        line-height: 2.4rem; }
    .p-recruitInfo {
      padding-top: 7rem; }
    .p-recruitInfo__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
    .p-recruitInfo__inner {
      padding-left: 0;
      padding-right: 0; }
    .p-recruitInfo__item {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      padding-top: 4.5rem;
      padding-bottom: 4.5rem; }
      .p-recruitInfo__item:nth-of-type(odd) {
        background-color: var(--color-bg); }
      .p-recruitInfo__item:nth-of-type(even) {
        background-color: var(--color-bg-blue-light); }
      .p-recruitInfo__itemHead {
        font-size: 2rem;
        line-height: 3.6rem; }
      .p-recruitInfo__itemDesc {
        font-size: 1.5rem;
        line-height: 2.6rem;
        margin-top: 3.6rem; }
      .p-recruitInfo__itemInfo {
        margin-top: 3.5rem;
        padding-top: 3.5rem; }
      .p-recruitInfo__itemInfoDt {
        font-size: 1.6rem;
        line-height: 2.5rem; }
      .p-recruitInfo__itemInfoDd {
        font-size: 1.5rem;
        line-height: 2.6rem; }
      .p-recruitInfo__btn {
        padding-left: 1.5rem;
        padding-right: 1.5rem; }
      .p-recruitInfo__contactInfo {
        margin-top: 3.2rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
    .p-recruitFlow {
      background-color: var(--color-bg); }
    .p-recruitFlow__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-recruitFlow__heading {
        font-size: 2rem; }
      .p-recruitFlow__figs {
        gap: 3.6rem; }
      .p-recruitFlow__figsBar {
        width: 0.3rem;
        height: 100%;
        left: 50%;
        top: 0; }
      .p-recruitFlow__contactInfo {
        margin-top: 3.2rem; }
    .p-reservePagetop {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-reservePagetop::after {
        width: 38.4rem;
        right: -10rem; }
    .p-reserveLead {
      margin-top: 4rem; }
    .p-reserveLead__inner {
      padding-left: 1.6rem;
      padding-right: 1.6rem; }
      .p-reserveLead__desc {
        font-size: 1.6rem;
        line-height: 3.2rem; }
    .p-reserveBox {
      border-radius: 5.6rem 5.6rem 0 0;
      margin: 4.6rem auto 0;
      padding: 5rem 1.5rem 8rem; }
        .p-reserveBox__itemBottomBtn + * {
          margin-top: 5rem; }
      .p-reserveBox__itemBottomBtnItem {
        width: 30rem; }
    .c-contactInfo {
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      font-size: 1.6rem;
      line-height: 2.4rem;
      border-radius: 3.2rem;
      padding: 4rem 1rem; }
      .c-contactInfo__text + .c-contactInfo__text {
        margin-top: 2rem; }
  .c-pagetop {
    padding-top: 12.5rem; }
    .c-pagetop__main {
      font-size: 3rem; }
    .c-pagetop__sub {
      font-size: 2rem; }
    .c-textHeading__main {
      font-size: 2.4rem; }
    .c-textHeading__sub {
      font-size: 1.8rem;
      margin-top: 0.5em; }
  .for-large {
    display: none; }
  .sp-none {
    display: none; } }
@media (min-width: 960px) {
    [data-inview="label"] {
      padding: .5rem 1.5rem; }
    html {
      font-size: 0.6944vw; }
    .l-footer__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
      .l-footer__info {
        margin-top: 3rem; }
      .l-footer__infoText p + p {
        margin-top: 4rem; }
    .l-header {
      width: 100%;
      padding-right: 6.4rem;
      padding-left: 6.4rem;
      padding-top: 3.5rem; }
      body.is-scroll .l-header__logo {
        width: 20rem; }
    .l-header__nav {
      margin-left: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 5rem; }
      .l-header__nav--sp {
        display: none; }
    .l-menu {
      display: none !important; }
    .p-aboutPagetop {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-aboutLead {
      margin-top: 14.6rem; }
    .p-aboutLead__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-aboutLead__content {
      display: -ms-grid;
      display: grid;
      -ms-grid-rows: auto;
      -ms-grid-columns: 1fr 55.7rem;
          grid-template: auto / 1fr 55.7rem; }
    .p-aboutLead__body {
      padding-top: 8rem; }
      .p-aboutLead__desc {
        font-size: 2.4rem;
        line-height: 5.6rem; }
      .p-aboutLead__desc + .p-aboutLead__desc {
        margin-top: 6.4rem; }
    .p-aboutFeature {
      padding-top: 14.4rem;
      padding-bottom: 12rem;
      margin-top: 20rem; }
      .p-aboutFeature__bgInner {
        width: 162.61rem;
        aspect-ratio: 1626.1 / 730; }
    .p-aboutFeature__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-aboutFeature__itemText {
      margin-left: 2.4rem; }
    .p-aboutBox__inner {
      max-width: 118rem;
      margin-left: auto;
      margin-right: auto; }
      .p-aboutBox__item {
        border-radius: 12rem;
        margin-top: -21rem; }
      .p-aboutBox__itemHeadingSub {
        font-size: 2rem;
        line-height: 3.6rem;
        margin-top: .5rem; }
      .p-aboutBox__itemDesc {
        margin-left: 11rem;
        font-size: 1.6rem;
        line-height: 3.2rem; }
    .p-aboutBox__itemBtn {
      width: 33.8rem; }
      .p-aboutBox__itemBody {
        padding: 8.6rem 11.3rem 8rem; }
      .p-aboutBox__profText {
        margin-left: 5.6rem;
        padding-left: 1.5rem; }
    .p-aboutBox__nurse {
      padding: 6.6rem 11.3rem 7rem; }
      .p-aboutBox__itemBottom {
        border-radius: 0 0 12rem 12rem;
        padding: 8rem 11.3rem 7.5rem; }
    .p-aboutBox__itemBottomBtnItem {
      width: 44.3rem; }
    .p-aboutFacility__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
      .p-aboutFacility__figs {
        display: -ms-grid;
        display: grid; }
        .p-aboutFacility__figs + .p-aboutFacility__figs {
          margin-top: 1.2rem; }
        .p-aboutFacility__figs.-is1 {
          -ms-grid-rows: auto;
          -ms-grid-columns: 1fr .7rem 1fr .7rem 1fr .7rem 1fr;
              grid-template: auto/repeat(4, 1fr);
          gap: .7rem; }
        .p-aboutFacility__figs.-is2 {
          -ms-grid-rows: auto;
          -ms-grid-columns: 1fr .7rem 1fr .7rem 1fr;
              grid-template: auto/repeat(3, 1fr);
          gap: .7rem; }
      .p-aboutFacility__list {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto/repeat(2, 1fr); }
  .p-homeNews__inner {
    max-width: 108rem;
    margin-left: auto;
    margin-right: auto; }
  .p-homeNews__inner {
    max-width: 116.8rem; }
    .p-homeNews__content {
      padding: 6.5rem 11.3rem 6.5rem 0; }
    .p-homeNews__list {
      margin-left: 5.5rem; }
    .p-homeAbout {
      margin-top: 9.2rem; }
    .p-homeAbout__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-homeAbout__inner {
      max-width: 119.6rem; }
      .p-homeAbout__content {
        padding-left: 15.3rem;
        padding-top: 9.63rem; }
      .p-homeAbout__content::before {
        content: "";
        display: block;
        position: absolute;
        width: 100vw;
        height: 100%;
        top: 0;
        left: 0;
        background-color: var(--color-bg);
        z-index: -1;
        border-radius: 13.4rem 0 0 0; }
    .p-homeMedical__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-homeMedical__inner {
      max-width: 119.6rem; }
      .p-homeMedical__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .p-homeMedical__content::before {
          content: "";
          display: block;
          position: absolute;
          width: 100vw;
          height: 100%;
          top: 0;
          left: 0;
          background-color: var(--color-bg-blue-light);
          z-index: -1; }
      .p-homeMedical__pic {
        position: absolute;
        top: -16rem;
        left: 0; }
    .p-homeMedical__text {
      margin-left: 8.2rem;
      margin-left: auto;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .p-homeMedical__head {
      padding-right: 14.6rem; }
      .p-homeMedical__fig {
        width: 76.4rem; }
  .p-homeInfo__inner {
    max-width: 108rem;
    margin-left: auto;
    margin-right: auto; }
  .p-homeInfo__inner {
    max-width: 119.6rem; }
    .p-homeInfo__content::before {
      content: "";
      display: block;
      position: absolute;
      width: 100vw;
      height: 100%;
      top: 0;
      left: 0;
      background-color: var(--color-bg-blue-light);
      z-index: -1;
      border-radius: 0 0 0 13.4rem; }
    .p-homeInfo__info {
      padding-left: 14.7rem; }
    .p-homeInfo__map {
      margin-left: 2rem; }
    .p-homeInfo__desc {
      margin-top: 6.4rem;
      border-radius: 2rem;
      background-color: #fff;
      padding: 3.5rem 5.6rem; }
    .p-homeStaff__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-homeStaff__inner {
      max-width: 144rem; }
    .p-medicalPagetop {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-medicalLead__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-medicalInfo__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
      .p-medicalInfo__content {
        border-radius: 5.6rem; }
    .p-medicalInfo__text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .p-medicalInfo__desc {
      width: 50%; }
    .p-medicalInfo__info {
      width: 50%; }
      .p-medicalInfo__reserve {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 6.5rem 8.3rem; }
    .p-medicalInfo__reserveHead {
      width: 47.5%; }
    .p-medicalInfo__reserveBody {
      width: 47.5%; }
    .p-medicalDeco {
      aspect-ratio: 1440 / 480; }
    .p-medicalContent__sliderItemText {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-left: 4rem;
      padding-bottom: 11rem; }
    .p-medicalContent__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-medicalContent__text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .p-medicalContent__desc {
        margin-left: 5rem; }
    .p-recruitPagetop {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-recruitLead {
      margin-top: 5rem; }
    .p-recruitLead__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
      .p-recruitLead__desc {
        font-size: 1.8rem;
        line-height: 3.6rem; }
      .p-recruitLead__btns {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 3.2rem 1fr 3.2rem 1fr;
            grid-template: auto/repeat(3, 1fr);
        grid-gap: 3.2rem;
        gap: 3.2rem; }
    .p-recruitBox__inner {
      max-width: 118rem;
      margin-left: auto;
      margin-right: auto; }
      .p-recruitBox__itemHead {
        min-height: 33.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
    .p-recruitBox__itemProf {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .p-recruitBox__itemProfText {
      margin-left: 4.5rem; }
    .p-recruitBox__scheduleItem {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-left: 2.4rem; }
      .p-recruitBox__scheduleItemBody {
        width: 81.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
      .p-recruitBox__itemBottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 6.4rem;
        padding-left: 15rem;
        padding-right: 14rem; }
    .p-recruitBox__itemBottomBtn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 3.2rem; }
      .p-recruitVoice__content {
        padding-top: 8.8rem;
        padding-bottom: 6rem; }
    .p-recruitInfo {
      padding-top: 9rem; }
    .p-recruitInfo__inner {
      max-width: 118rem;
      margin-left: auto;
      margin-right: auto; }
    .p-recruitInfo__item {
      padding: 7.5rem 11.8rem 8.5rem;
      background-color: #fff;
      border-radius: 12rem; }
    .p-recruitInfo__item + .p-recruitInfo__item {
      margin-top: 8rem; }
      .p-recruitInfo__itemDesc {
        font-size: 1.6rem;
        line-height: 3.6rem;
        margin-top: 3rem; }
      .p-recruitInfo__itemInfo {
        margin-top: 3.7rem;
        padding-top: 4.7rem;
        padding-left: 2.7rem;
        padding-right: 2.7rem; }
    .p-recruitInfo__itemInfoRow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .p-recruitInfo__itemInfoDt {
        width: 15rem;
        font-size: 2rem;
        line-height: 3.6rem; }
    .p-recruitFlow {
      padding-top: 11.8rem; }
    .p-recruitFlow__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
      .p-recruitFlow__figs {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
            grid-template: auto/repeat(3, 1fr); }
    .p-reserve {
      padding-bottom: 8rem; }
    .p-reservePagetop {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
    .p-reserveLead {
      margin-top: 5rem; }
    .p-reserveLead__inner {
      max-width: 108rem;
      margin-left: auto;
      margin-right: auto; }
      .p-reserveLead__desc {
        font-size: 1.8rem;
        line-height: 3.6rem; }
      .p-reserveBox__itemBottomBtnItem {
        width: 44.3rem; }
  .c-pagetop {
    padding-top: 16rem; }
  .for-mobile {
    display: none; }
  .pc-none {
    display: none; } }
@media (hover: hover) and (pointer: fine) {
      .l-header__navItem:hover {
        color: #DE817D; }
      .l-header__navBtn {
        -webkit-transition: background-color .3s ease;
        transition: background-color .3s ease; }
        .l-header__navBtn:hover {
          background-color: #DE817D; }
      .p-aboutBox__nurseSliderBtn {
        -webkit-transition: background-color .3s ease, color .3s ease;
        transition: background-color .3s ease, color .3s ease; }
        .p-aboutBox__nurseSliderBtn:hover {
          background-color: #fff;
          color: var(--color-blue); }
      .p-aboutFacility__SliderBtn {
        -webkit-transition: background-color .3s ease, color .3s ease;
        transition: background-color .3s ease, color .3s ease; }
        .p-aboutFacility__SliderBtn:hover {
          background-color: #fff;
          color: var(--color-blue); }
    .p-homeNews__item {
      -webkit-transition: color .3s ease;
      transition: color .3s ease; }
      .p-medicalContent__modalClose {
        -webkit-transition: background-color .3s ease, color .3s ease;
        transition: background-color .3s ease, color .3s ease; }
        .p-medicalContent__modalClose:hover {
          background-color: var(--color-blue); }
          .p-medicalContent__modalClose:hover::before, .p-medicalContent__modalClose:hover::after {
            background-color: #fff; }
      .p-medicalContent__sliderBtn {
        -webkit-transition: background-color .3s ease, color .3s ease;
        transition: background-color .3s ease, color .3s ease; }
        .p-medicalContent__sliderBtn:hover {
          background-color: #fff;
          color: var(--color-blue); }
      .p-medicalContent__figItem {
        -webkit-transition: -webkit-box-shadow .3s ease;
        transition: -webkit-box-shadow .3s ease;
        transition: box-shadow .3s ease;
        transition: box-shadow .3s ease, -webkit-box-shadow .3s ease; }
        .p-medicalContent__figItem:hover {
          -webkit-box-shadow: none;
                  box-shadow: none; }
      .p-recruitBox__itemBottomButton {
        -webkit-transition: qcolor .3s ease, background-color .3s ease;
        transition: qcolor .3s ease, background-color .3s ease; }
        .p-recruitBox__itemBottomButton:hover {
          color: #fff;
          background-color: var(--color-blue); }
    .p-recruitBox__contactinfoLink:hover {
      text-decoration: underline; }
    .c-btn {
      -webkit-transition: color .3s ease, background-color .3s ease;
      transition: color .3s ease, background-color .3s ease; }
      .c-btn:hover {
        background-color: #fff;
        color: var(--color-blue); }
      .c-btn.-white:hover {
        background-color: var(--color-blue);
        color: #fff; }
      .c-link__icon {
        border: 2px solid var(--color-darkblue);
        -webkit-transition: background-color .3s ease, color .3s ease;
        transition: background-color .3s ease, color .3s ease; }
        a:hover .c-link__icon {
          background-color: #fff;
          color: var(--color-darkblue); } }
@media (max-width: 959px) {
  .c-btn.-white.schedule-btn {
    text-align: left; }
  .c-btn__icon.schedule-btn__icon {
    right: 2.5rem; } }
/*# sourceMappingURL=../../_cache/_maps/styles.css.map */
