/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

table {
  table-layout: fixed;
}

menu {
  padding: 0;
}

html {
  font-size: 62.5%; /* 10px / 16px * 100 */
}
@media screen and (max-width: 750px) {
  html {
    font-size: 2.666vw; /* 10px / 375px * 100 */
  }
}

body {
  line-height: 1.7;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  min-width: 1214px;
  color: #122126;
  position: relative;
  z-index: 0;
}
body.u-fixed {
  overflow-y: hidden;
}

@media screen and (max-width: 750px) {
  body {
    line-height: 1.5;
    min-width: 1%;
    overflow-x: hidden;
    position: relative;
    max-width: none;
    padding-top: 75.55px;
  }
}
img {
  image-rendering: -webkit-optimize-contrast;
}

p {
  font-size: 1.6rem;
  margin: 0;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 751px) {
  .over:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: #0851d7;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* link
--------------------------------------------------*/
a {
  color: #122126;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* list
--------------------------------------------------*/
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.u-ul {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}

.u-ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}

/* container
--------------------------------------------------*/
.f-container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .f-container {
    width: 86%;
  }
}

@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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.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-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.swiper-pointer-events.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;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

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

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  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, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 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, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 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, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 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, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.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-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-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.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-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

@media screen and (min-width: 751px) {
  .l-header__pc__topnav {
    padding-left: 41px;
    padding-right: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header__pc__topnav__logo {
    width: 232px;
    margin-right: auto;
  }
  .l-header__pc__topnav__logo a {
    display: block;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__topnav__logo a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__topnav__menu {
    margin-left: auto;
  }
  .l-header__pc__topnav__menu__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 19px 0 20px;
  }
  .l-header__pc__topnav__menu__top__txtLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 20px;
    margin-left: auto;
  }
  .l-header__pc__topnav__menu__top__txtLink a {
    display: block;
    font-size: 1.6rem;
    color: #808D95;
    padding: 0 9px;
    text-align: center;
    position: relative;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__topnav__menu__top__txtLink a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__topnav__menu__top__txtLink a::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 70%;
    background-color: #808D95;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__pc__topnav__menu__top__txtLink:first-child a {
    padding-left: 0;
  }
  .l-header__pc__topnav__menu__top__txtLink:last-child a {
    padding-right: 0;
  }
  .l-header__pc__topnav__menu__top__txtLink:last-child a::after {
    display: none;
  }
  .l-header__pc__topnav__menu__top__BtnLinks {
    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;
  }
  .l-header__pc__topnav__menu__top__BtnLink {
    text-align: center;
  }
  .l-header__pc__topnav__menu__top__BtnLink a {
    display: block;
    text-align: center;
    padding: 9.5px 24px 11.5px;
    border: solid 1px #003E57;
    font-size: 1.6rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 25px;
    background-color: #fff;
    color: #003E57;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__topnav__menu__top__BtnLink a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__topnav__menu__top__BtnLink span {
    position: relative;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-night {
    margin-right: 13px;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-night span {
    padding-left: 19px;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-night span::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-night span::before {
    width: 13px;
    height: 13px;
    background-image: url(../img/common/ico/ico_moon_navy.svg);
    top: 60%;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-tel {
    margin-right: 23px;
    text-align: center;
    padding: 3.5px 27px 3.5px 33px;
    font-size: 1.6rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 25px;
    background-color: #fff;
    border: solid 1px #003E57;
    color: #003E57;
    line-height: 1;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-tel .u-tel__top {
    font-size: 1.1rem;
    line-height: 1;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-tel .u-tel__bottom {
    font-size: 2.5rem;
    font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    padding-left: 13.86px;
    position: relative;
    line-height: 1;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-tel .u-tel__bottom::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-tel .u-tel__bottom::before {
    height: 16px;
    width: 14px;
    background-image: url(../img/common/ico/ico_smartPhone_navy.svg);
    top: 55%;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-contact a {
    background-color: #003E57;
    color: #fff;
    line-height: 1;
    padding: 15px 24px 17px;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-contact a span {
    position: relative;
    padding-left: 21px;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-contact a span::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-contact a span::before {
    width: 17px;
    height: 13px;
    background-image: url(../img/common/ico/ico_mail_white.svg);
    top: 57%;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-contact:hover a {
    color: #003E57;
  }
  .l-header__pc__topnav__menu__top__BtnLink.u-contact:hover a span::before {
    background-image: url(../img/common/ico/ico_mail_navy.svg);
  }
  .l-header__pc__topnav__menu__top__BtnLink:hover a {
    border: solid 1px #C6DAE6;
    background-color: #C6DAE6;
  }
  .l-header__pc__topnav__menu__bottom__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-header__pc__topnav__menu__bottom__listItem {
    margin-right: 25px;
    position: relative;
  }
  .l-header__pc__topnav__menu__bottom__listItem > a, .l-header__pc__topnav__menu__bottom__listItem .u-noLink {
    display: block;
    padding-bottom: 20px;
    font-size: 1.6rem;
    color: #003E57;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    position: relative;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__topnav__menu__bottom__listItem > a:hover, .l-header__pc__topnav__menu__bottom__listItem .u-noLink:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__topnav__menu__bottom__listItem > a::before, .l-header__pc__topnav__menu__bottom__listItem .u-noLink::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 5px;
    background-color: #003E57;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .l-header__pc__topnav__menu__bottom__listItem:last-child {
    margin-right: 0;
  }
  .l-header__pc__topnav__menu__bottom__listItem:hover > a, .l-header__pc__topnav__menu__bottom__listItem:hover .u-noLink {
    color: rgba(0, 62, 87, 0.6);
  }
  .l-header__pc__topnav__menu__bottom__listItem:hover > a::before, .l-header__pc__topnav__menu__bottom__listItem:hover .u-noLink::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .l-header__pc__topnav__menu__bottom__listItem:hover .l-header__pc__topnav__menu__bottom__downstairsList {
    visibility: visible;
    opacity: 1;
  }
  .l-header__pc__topnav__menu__bottom__downstairsList {
    position: absolute;
    left: 0;
    top: 49.19px;
    z-index: 4;
    width: auto;
    min-width: 203px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header__pc__topnav__menu__bottom__downstairsItem {
    width: 100%;
  }
  .l-header__pc__topnav__menu__bottom__downstairsItem a {
    display: block;
    padding: 13px 17px 16px;
    font-size: 1.6rem;
    color: #003E57;
    background-color: #fff;
    text-align: left;
    white-space: nowrap;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__topnav__menu__bottom__downstairsItem a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__topnav__menu__bottom__downstairsItem a::before {
    content: "";
    display: inline-block;
    width: calc(100% - 34px);
    height: 1px;
    background-color: #C2C2C2;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .l-header__pc__topnav__menu__bottom__downstairsItem:hover a {
    color: rgba(0, 62, 87, 0.6);
  }
  .l-header__pc__topnav__menu__bottom__downstairsItem:first-child a {
    border-radius: 5px 5px 0 0;
  }
  .l-header__pc__topnav__menu__bottom__downstairsItem:last-child a {
    border-radius: 0 0 5px 5px;
  }
  .l-header__pc__topnav__menu__bottom__downstairsItem:last-child a::before {
    content: none;
  }
  .l-header__pc__scrollnav {
    display: none;
    width: 100%;
    height: 56px;
    overflow: hidden;
    position: fixed;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
  }
  .l-header__pc__scrollnav.u-active {
    display: block;
    opacity: 1;
  }
  .l-header__pc__scrollnav__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header__pc__scrollnav__logoWrapper {
    padding-left: 38px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin-right: auto;
  }
  .l-header__pc__scrollnav__logo {
    width: 127px;
  }
  .l-header__pc__scrollnav__logo a {
    display: block;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__scrollnav__logo a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header__pc__scrollnav__menu__tel {
    height: 50px;
    margin-right: 10px;
    text-align: center;
    padding: 0 25px 0 31px;
    font-size: 1.6rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 25px;
    background-color: #fff;
    border: solid 1px #003E57;
    color: #003E57;
    line-height: 1;
    position: relative;
  }
  .l-header__pc__scrollnav__menu__tel__top {
    font-size: 1.1rem;
    line-height: 1;
  }
  .l-header__pc__scrollnav__menu__tel__bottom {
    font-size: 2.5rem;
    font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    padding-left: 13.86px;
    position: relative;
    line-height: 1;
  }
  .l-header__pc__scrollnav__menu__tel__bottom::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__pc__scrollnav__menu__tel__bottom::before {
    height: 16px;
    width: 14px;
    background-image: url(../img/common/ico/ico_smartPhone_navy.svg);
    top: 55%;
  }
  .l-header__pc__scrollnav__menu__hamburger {
    width: 56px;
    height: 56px;
    background-color: #003E57;
    position: relative;
    cursor: pointer;
    z-index: 1000;
  }
  .l-header__pc__scrollnav__menu__hamburger span {
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header__pc__scrollnav__menu__hamburger span:first-child {
    margin-top: -10px;
  }
  .l-header__pc__scrollnav__menu__hamburger span:last-child {
    margin-top: 10px;
  }
  .l-header__pc__scrollnav__menu__hamburger.u-active {
    background-color: #fff;
  }
  .l-header__pc__scrollnav__menu__hamburger.u-active span {
    background-color: #003E57;
    opacity: 0;
  }
  .l-header__pc__scrollnav__menu__hamburger.u-active span:first-child {
    margin-top: 0;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .l-header__pc__scrollnav__menu__hamburger.u-active span:last-child {
    margin-top: 0;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__pc__scrollnav__bgnav {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
    max-height: 757px;
    background: #fff;
  }
  .l-header__pc__scrollnav__bgnav__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-header__pc__scrollnav__bgnav__left {
    width: 41.5%;
    height: 100vh;
    background-color: #003E57;
  }
  .l-header__pc__scrollnav__bgnav__left__main {
    width: 52.8%;
    margin: 0 auto;
    margin-top: 18vh;
    text-align: center;
  }
  .l-header__pc__scrollnav__bgnav__left__img {
    text-align: center;
    width: 63.9%;
    margin: 0 auto 6vh;
  }
  .l-header__pc__scrollnav__bgnav__left__txt {
    font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    font-weight: 400;
    text-align: center;
    color: #fff;
    font-size: 1.111vw;
    line-height: 1.5;
  }
  .l-header__pc__scrollnav__bgnav__left__time {
    width: 100%;
    margin: 0 auto;
  }
  .l-header__pc__scrollnav__bgnav__left__time__table {
    white-space: nowrap;
  }
  .l-header__pc__scrollnav__bgnav__left__time__table tr {
    border-bottom: 1px solid #fff;
  }
  .l-header__pc__scrollnav__bgnav__left__time__table th {
    padding: 0.486vw 0;
    font-weight: 400;
    color: #fff;
    font-size: 0.833vw;
  }
  .l-header__pc__scrollnav__bgnav__left__time__table th.u-thLead {
    padding: 0.486vw 0.347vw 0.486vw 0.694vw;
  }
  .l-header__pc__scrollnav__bgnav__left__time__table th.u-fz14 {
    font-size: 0.972vw;
  }
  .l-header__pc__scrollnav__bgnav__left__time__table td {
    text-align: center;
    color: #fff;
    font-size: 1.1vw;
    padding: 0 0.694vw;
  }
  .l-header__pc__scrollnav__bgnav__right {
    width: 58.5%;
    height: 100vh;
    background-color: #fff;
  }
  .l-header__pc__scrollnav__bgnav__right__main {
    width: 62.9%;
    margin: 0 auto;
    margin-top: 9.7vh;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 7.6vh;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__row {
    margin-right: 4.792vw;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__row:last-child {
    margin-right: 0;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__item {
    margin-bottom: 2.7vh;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__item:last-child {
    margin-bottom: 0;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__item > a, .l-header__pc__scrollnav__bgnav__right__siteMap__item .l-header__pc__scrollnav__bgnav__right__siteMap__parent {
    display: inline-block;
    position: relative;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__siteMap__item > a:hover, .l-header__pc__scrollnav__bgnav__right__siteMap__item .l-header__pc__scrollnav__bgnav__right__siteMap__parent:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__siteMap__item > a a:hover, .l-header__pc__scrollnav__bgnav__right__siteMap__item .l-header__pc__scrollnav__bgnav__right__siteMap__parent a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__siteMap__item.u-night {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__item.u-night a {
    display: block;
    padding: 0.972vh 1.736vw 0.972vh 1.736vw;
    display: inline-block;
    border-radius: 9999px;
    border: solid 1px #003E57;
    background-color: #fff;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__siteMap__item.u-night a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__siteMap__item.u-night a span {
    padding-left: 1.319vw;
    position: relative;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__item.u-night a span::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__item.u-night a span::before {
    width: 0.903vw;
    height: 0.903vw;
    background-image: url(../img/common/ico/ico_moon_navy.svg);
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__item.u-night:hover a {
    background-color: #C6DAE6;
    border: solid 1px #C6DAE6;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__child {
    margin-top: 0.208vw;
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__child__item a {
    display: inline-block;
    padding-left: 1.458vw;
    position: relative;
    font-size: 1.111vw;
    margin-bottom: 0.208vw;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__siteMap__child__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__siteMap__child__item a::before {
    content: "";
    display: inline-block;
    width: 0.347vw;
    height: 0.1vh;
    background-color: #003E57;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__pc__scrollnav__bgnav__right__siteMap__child__item:last-child a {
    margin-bottom: 0;
  }
  .l-header__pc__scrollnav__bgnav__right__contact {
    width: 100%;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__tel {
    width: 100%;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__tel a {
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__tel a:hover {
    background: #C6DAE6;
  }
}
@media screen and (min-width: 751px) and (max-width: 750px) {
  .l-header__pc__scrollnav__bgnav__right__contact__tel a:hover {
    background: #fff;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__tel a {
    padding: 2.2vh 0 1.8vh;
    text-align: center;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__tel a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__tel__lead {
    font-size: 1.111vw;
    color: #003E57;
    margin-bottom: 0.3vh;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__tel__num {
    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;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__tel__num img {
    width: 0.819vw;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__tel__num span {
    padding-left: 0.486vw;
    font-size: 2.5vw;
    font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    color: #003E57;
    line-height: 1;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__tel__time {
    color: #96A1A7;
    font-size: 1.111vw;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__mailIntro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2.6vh;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__mail {
    width: 47.5%;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__mail a {
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__mail a:hover {
    background: #C6DAE6;
  }
}
@media screen and (min-width: 751px) and (max-width: 750px) {
  .l-header__pc__scrollnav__bgnav__right__contact__mail a:hover {
    background: #fff;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__mail a {
    height: 15vh;
    padding: 3vh 0 3vh;
    text-align: center;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__mail a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__mail__ico {
    margin-bottom: 2.7vh;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__mail__ico img {
    width: 2.007vw;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__mail span {
    display: inline-block;
    font-size: 1.111vw;
    color: #003E57;
    line-height: 1.5;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__introduction {
    width: 47.5%;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__introduction a {
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__introduction a:hover {
    background: #C6DAE6;
  }
}
@media screen and (min-width: 751px) and (max-width: 750px) {
  .l-header__pc__scrollnav__bgnav__right__contact__introduction a:hover {
    background: #fff;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__introduction a {
    height: 15vh;
    padding: 3vh 0 3vh;
    text-align: center;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__introduction a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (min-width: 751px) {
  .l-header__pc__scrollnav__bgnav__right__contact__introduction__ico img {
    width: 1.924vw;
  }
  .l-header__pc__scrollnav__bgnav__right__contact__introduction span {
    display: inline-block;
    margin-top: 1vh;
    font-size: 1.111vw;
    color: #003E57;
    line-height: 1.5;
  }
  .l-header__sp {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .l-header__pc {
    display: none;
  }
  .l-header__sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .l-header__sp__head__wrapper {
    padding: 3.4666666667vw 0.5866666667vw 4.5333333333vw 6.1333333333vw;
    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;
    background-color: #fff;
  }
  .l-header__sp__head__wrapper.u-top {
    padding: 1.3333333333vw 0.5866666667vw 0 6.1333333333vw;
    background-color: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header__sp__head__wrapper.u-top.u-normal {
    padding: 3.4666666667vw 0.5866666667vw 4.5333333333vw 6.1333333333vw;
    background-color: #fff;
  }
  .l-header__sp__head__wrapper.u-top.u-bgw {
    background-color: #fff;
  }
  .l-header__sp__head__left {
    width: 35%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .l-header__sp__head__right {
    width: 57.6%;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .l-header__sp__head__logo {
    width: 100%;
  }
  .l-header__sp__head__logo.u-top {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  .l-header__sp__head__logo.u-top.u-normal {
    opacity: 1;
  }
  .l-header__sp__head__tel {
    width: 70%;
    margin-right: 2%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .l-header__sp__head__tel a {
    display: block;
  }
  .l-header__sp__head__hamburgerArea {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 22.4%;
  }
  .l-header__sp__head__hamburger {
    width: 100%;
    position: relative;
  }
  .l-header__sp__head__hamburgerSpanposi {
    width: 100%;
    position: absolute;
    top: 69%;
    left: 48%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .l-header__sp__head__hamburgerSpan {
    position: relative;
  }
  .l-header__sp__head__hamburgerSpan span {
    display: inline-block;
    width: 20%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-header__sp__head__hamburgerSpan span:first-child {
    margin-top: -3px;
  }
  .l-header__sp__head__hamburgerSpan span:last-child {
    margin-top: 3px;
  }
  .l-header__sp__head__hamburgerSpan.u-active span {
    opacity: 0;
  }
  .l-header__sp__head__hamburgerSpan.u-active span:first-child {
    margin-top: 0;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .l-header__sp__head__hamburgerSpan.u-active span:last-child {
    margin-top: 0;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__sp__content {
    display: none;
    position: fixed;
    overflow-y: scroll;
    height: 100%;
  }
  .l-header__sp__content__top {
    background-color: #fff;
  }
  .l-header__sp__content__top__wrapper {
    width: 86.6%;
    margin: 0 auto;
    padding-bottom: 6vw;
  }
  .l-header__sp__content__top__list {
    width: 100%;
    margin-bottom: 6vw;
  }
  .l-header__sp__content__top__item > a, .l-header__sp__content__top__item .l-header__sp__content__top__noLinkItem {
    display: block;
    padding: 3.4666666667vw 0 3.4666666667vw 4.2666666667vw;
    font-size: 1.5rem;
    border-bottom: 1px solid #C2C2C2;
    font-weight: 500;
  }
  .l-header__sp__content__top__item:last-child {
    border-bottom: 0;
  }
  .l-header__sp__content__top__noLinkItem {
    position: relative;
  }
  .l-header__sp__content__top__noLinkItem__icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 8%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__sp__content__top__noLinkItem__icon span {
    position: relative;
  }
  .l-header__sp__content__top__noLinkItem__icon span::before, .l-header__sp__content__top__noLinkItem__icon span::after {
    content: "";
    display: inline-block;
    width: 13.7px;
    height: 1px;
    background-color: #113E57;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-header__sp__content__top__noLinkItem__icon span::before {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .l-header__sp__content__top__noLinkItem__icon span::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .l-header__sp__content__top__noLinkItem__icon.u-active span::after {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .l-header__sp__content__top__subList {
    display: none;
    background-color: #EFF2F5;
    border-bottom: 1px solid #C2C2C2;
  }
  .l-header__sp__content__top__subItem > a {
    display: block;
    padding: 2.4vw 0 2.4vw 5.3333333333vw;
    font-size: 1.5rem;
    position: relative;
  }
  .l-header__sp__content__top__subItem > a::after {
    content: "";
    display: inline-block;
    width: 95%;
    height: 1px;
    background-color: #C2C2C2;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .l-header__sp__content__top__subItem:last-child a::after {
    content: none;
  }
  .l-header__sp__content__top__night {
    width: 43%;
    margin-right: auto;
  }
  .l-header__sp__content__top__night a {
    display: block;
    padding: 1.7333333333vw 0 2.2666666667vw;
    background-color: #fff;
    border-radius: 9999px;
    border: solid 1px #003E57;
    font-size: 4vw;
    text-align: center;
  }
  .l-header__sp__content__top__night a span {
    position: relative;
    padding-left: 11%;
  }
  .l-header__sp__content__top__night a span::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__sp__content__top__night a span::before {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
    background-image: url(../img/common/ico/ico_moon_navy.svg);
  }
  .l-header__sp__content__bottom {
    background-color: #003E57;
    margin-bottom: 150px;
    margin-bottom: 12.5vh;
  }
  .l-header__sp__content__bottom__wrapper {
    width: 86.6%;
    margin: 0 auto;
    padding: 13.3333333333vw 0 10.9333333333vw;
  }
  .l-header__sp__content__bottom__examination__lead {
    font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    font-size: 1.95rem;
    margin-bottom: 1.3333333333vw;
    text-align: center;
  }
  .l-header__sp__content__bottom__examination__time__table {
    width: 100%;
  }
  .l-header__sp__content__bottom__examination__time__table tr {
    border-bottom: 1px solid #fff;
  }
  .l-header__sp__content__bottom__examination__time__table tr:first-child th {
    padding: 1.8666666667vw 0;
  }
  .l-header__sp__content__bottom__examination__time__table th {
    font-weight: 400;
    color: #fff;
    width: auto;
    padding: 1.6vw 0 1.3333333333vw;
    font-size: 1.4rem;
  }
  .l-header__sp__content__bottom__examination__time__table th.u-fz16 {
    font-size: 1.3rem;
  }
  .l-header__sp__content__bottom__examination__time__table th.u-w110 {
    width: 14.1333333333vw;
  }
  .l-header__sp__content__bottom__examination__time__table th.u-left {
    text-align: left;
  }
  .l-header__sp__content__bottom__examination__time__table td {
    padding: 4.8vw 0 4.5333333333vw;
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
  }
  .l-header__sp__content__bottom__btns {
    width: 100%;
    margin-bottom: 10.1333333333vw;
  }
  .l-header__sp__content__bottom__btns__tel {
    width: 100%;
  }
  .l-header__sp__content__bottom__btns__tel a {
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .l-header__sp__content__bottom__btns__tel a:hover {
    background: #C6DAE6;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .l-header__sp__content__bottom__btns__tel a:hover {
    background: #fff;
  }
}
@media screen and (max-width: 750px) {
  .l-header__sp__content__bottom__btns__tel a {
    padding: 2.6666666667vw 5.3333333333vw 2.6666666667vw;
    text-align: center;
  }
  .l-header__sp__content__bottom__btns__tel__lead {
    font-size: 1.5rem;
    color: #003E57;
    margin-bottom: 1.0666666667vw;
  }
  .l-header__sp__content__bottom__btns__tel__num {
    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;
  }
  .l-header__sp__content__bottom__btns__tel__num img {
    width: 3.7786666667vw;
  }
  .l-header__sp__content__bottom__btns__tel__num span {
    padding-left: 2.4vw;
    font-size: 3.3rem;
    font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    color: #003E57;
    line-height: 1;
  }
  .l-header__sp__content__bottom__btns__tel__time {
    color: #96A1A7;
    font-size: 1.3rem;
  }
  .l-header__sp__content__bottom__btns__tel__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-header__sp__content__bottom__btns__mailIntro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 6.6666666667vw;
  }
  .l-header__sp__content__bottom__btns__mail {
    width: 47.5%;
  }
  .l-header__sp__content__bottom__btns__mail a {
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .l-header__sp__content__bottom__btns__mail a:hover {
    background: #C6DAE6;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .l-header__sp__content__bottom__btns__mail a:hover {
    background: #fff;
  }
}
@media screen and (max-width: 750px) {
  .l-header__sp__content__bottom__btns__mail a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 17.4666666667vw;
    padding: 3.4666666667vw 3.4666666667vw 2.4vw;
    -webkit-transition: all 0s 0s ease;
    transition: all 0s 0s ease;
  }
  .l-header__sp__content__bottom__btns__mail__ico {
    margin-right: 3.2vw;
  }
  .l-header__sp__content__bottom__btns__mail__ico img {
    width: 7.7333333333vw;
  }
  .l-header__sp__content__bottom__btns__mail span {
    font-size: 1.4rem;
    color: #003E57;
  }
  .l-header__sp__content__bottom__btns__introduction {
    width: 47.5%;
  }
  .l-header__sp__content__bottom__btns__introduction a {
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .l-header__sp__content__bottom__btns__introduction a:hover {
    background: #C6DAE6;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .l-header__sp__content__bottom__btns__introduction a:hover {
    background: #fff;
  }
}
@media screen and (max-width: 750px) {
  .l-header__sp__content__bottom__btns__introduction a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 17.4666666667vw;
    padding: 2.9333333333vw 2.2666666667vw 3.6vw;
    -webkit-transition: all 0s 0s ease;
    transition: all 0s 0s ease;
  }
  .l-header__sp__content__bottom__btns__introduction__ico {
    margin-right: 2.1333333333vw;
  }
  .l-header__sp__content__bottom__btns__introduction__ico img {
    width: 6.6666666667vw;
  }
  .l-header__sp__content__bottom__btns__introduction span {
    font-size: 1.4rem;
    color: #003E57;
  }
}

.l-footer__reservePcBtn {
  position: relative;
  width: 205px;
  height: 205px;
}
.l-footer__reservePcBtn__btnImg, .l-footer__reservePcBtn__btnHoverImg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: 0.3s ease 0.1s;
  transition: 0.3s ease 0.1s;
}
.l-footer__reservePcBtn__btnHoverImg {
  opacity: 0;
}
.l-footer__reservePcBtn__btnParts {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, top 0.2s ease;
  transition: opacity 0.2s ease, top 0.2s ease;
}
.l-footer__reservePcBtn:hover .l-footer__reservePcBtn__btnImg {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  opacity: 0;
}
.l-footer__reservePcBtn:hover .l-footer__reservePcBtn__btnHoverImg {
  opacity: 1;
}
.l-footer__reservePcBtn:hover .l-footer__reservePcBtn__btnParts {
  -webkit-transition: opacity 0.3s ease 0.1s, top 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, top 0.3s ease 0.1s;
  opacity: 1;
  top: -30px;
}
.l-footer__reservePcBtn a {
  display: block;
}
@media screen and (min-width: 751px) {
  .l-footer__reservePcBtn a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__reservePcBtnWrap {
  position: absolute;
  top: -250px;
  right: 39px;
  z-index: 500;
}
.l-footer__reservePcBtnWrap.u-fixed {
  position: fixed;
  top: auto;
  bottom: 25px;
  right: 39px;
}
@media screen and (min-width: 751px) {
  .l-footer__reserveSpBtn {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .l-footer__reserveSpBtn {
    width: 95%;
    max-width: 713.17px;
    margin: 0 auto;
    z-index: 500;
  }
  .l-footer__reserveSpBtn img {
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
  .l-footer__reserveSpBtn.u-fixed {
    position: fixed;
    bottom: 4.6666666667vw;
    left: 2.5%;
  }
}
.l-footer__container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-footer__container {
    width: 86.6%;
    max-width: none;
  }
}
.l-footer__top {
  background-color: #003E57;
  padding: 96px 0 97px;
  position: relative;
}
.l-footer__top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-footer__top__left__lead {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2.5rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 400;
}
.l-footer__top__left__time__table {
  width: 504px;
}
.l-footer__top__left__time__table tr {
  border-bottom: 1px solid #fff;
}
.l-footer__top__left__time__table tr:first-child th {
  padding: 10px 0;
}
.l-footer__top__left__time__table th {
  width: calc((100% - 110px) / 7);
  padding: 8px 0;
  font-weight: 400;
  color: #fff;
  font-size: 1.4rem;
}
.l-footer__top__left__time__table th.u-fz16 {
  font-size: 1.6rem;
}
.l-footer__top__left__time__table th.u-w110 {
  width: 110px;
}
.l-footer__top__left__time__table td {
  padding: 18px 0;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
}
.l-footer__top__left__moreLink {
  margin-top: 20px;
}
.l-footer__top__left__moreLink .c-link a {
  color: #fff;
}
.l-footer__top__right {
  width: 435px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-footer__top__right__tel {
  width: 100%;
}
.l-footer__top__right__tel a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.l-footer__top__right__tel a:hover {
  background: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .l-footer__top__right__tel a:hover {
    background: #fff;
  }
}
.l-footer__top__right__tel a {
  padding: 17px 0 14px;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .l-footer__top__right__tel a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__top__right__tel__lead {
  font-size: 1.6rem;
  color: #003E57;
  margin-bottom: 3px;
}
.l-footer__top__right__tel__num {
  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;
}
.l-footer__top__right__tel__num img {
  width: 15px;
}
.l-footer__top__right__tel__num span {
  padding-left: 7px;
  font-size: 3.6rem;
  font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  line-height: 1;
}
.l-footer__top__right__tel__time {
  color: #96A1A7;
  font-size: 1.6rem;
}
.l-footer__top__right__mailIntro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.l-footer__top__right__mail {
  width: 47.5%;
}
.l-footer__top__right__mail a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.l-footer__top__right__mail a:hover {
  background: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .l-footer__top__right__mail a:hover {
    background: #fff;
  }
}
.l-footer__top__right__mail a {
  height: 128px;
  padding: 23px 0 23px;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .l-footer__top__right__mail a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__top__right__mail__ico img {
  width: 28.9px;
}
.l-footer__top__right__mail span {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.6rem;
  color: #003E57;
  line-height: 1.5;
}
.l-footer__top__right__introduction {
  width: 47.5%;
}
.l-footer__top__right__introduction a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.l-footer__top__right__introduction a:hover {
  background: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .l-footer__top__right__introduction a:hover {
    background: #fff;
  }
}
.l-footer__top__right__introduction a {
  height: 128px;
  padding: 23px 0 23px;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .l-footer__top__right__introduction a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__top__right__introduction__ico img {
  width: 27.7px;
}
.l-footer__top__right__introduction span {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.6rem;
  color: #003E57;
  line-height: 1.5;
}
@media screen and (min-width: 751px) {
  .l-footer__top__right__tel a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 750px) {
  .l-footer__top {
    padding: 12.2666666667vw 0 14vw;
  }
  .l-footer__top__wrapper {
    display: block;
  }
  .l-footer__top__left__lead {
    font-size: 1.95rem;
    margin-bottom: 9.6vw;
    text-align: center;
  }
  .l-footer__top__left__time {
    margin-bottom: 8vw;
  }
  .l-footer__top__left__time__table {
    width: 100%;
  }
  .l-footer__top__left__time__table tr:first-child th {
    padding: 1.8666666667vw 0;
  }
  .l-footer__top__left__time__table th {
    width: auto;
    padding: 1.6vw 0 1.3333333333vw;
    font-size: 1.4rem;
  }
  .l-footer__top__left__time__table th.u-fz16 {
    font-size: 1.3rem;
  }
  .l-footer__top__left__time__table th.u-w110 {
    width: 16vw;
    text-align: left;
  }
  .l-footer__top__left__time__table td {
    padding: 4.8vw 0 4.5333333333vw;
    font-size: 1.8rem;
  }
  .l-footer__top__left__moreLink {
    margin: 0 0 8vw;
  }
  .l-footer__top__right {
    width: 100%;
  }
  .l-footer__top__right__tel a {
    padding: 4.9333333333vw 0 4.5333333333vw;
  }
  .l-footer__top__right__tel__lead {
    font-size: 1.5rem;
    margin-bottom: 1.0666666667vw;
  }
  .l-footer__top__right__tel__num img {
    width: 4.8vw;
  }
  .l-footer__top__right__tel__num span {
    padding-left: 2.6666666667vw;
    font-size: 3.8rem;
  }
  .l-footer__top__right__tel__time {
    font-size: 1.3rem;
  }
  .l-footer__top__right__mailIntro {
    margin-top: 6.6666666667vw;
  }
  .l-footer__top__right__mail a {
    height: 31.4666666667vw;
    padding: 6.1333333333vw 0 5.3333333333vw;
  }
  .l-footer__top__right__mail__ico img {
    width: 9.3066666667vw;
  }
  .l-footer__top__right__mail span {
    margin-top: 2.6666666667vw;
    font-size: 1.4rem;
  }
  .l-footer__top__right__introduction a {
    height: 31.4666666667vw;
    padding: 5.2vw 0 5.3333333333vw;
  }
  .l-footer__top__right__introduction__ico img {
    width: 8vw;
  }
  .l-footer__top__right__introduction span {
    margin-top: 2.6666666667vw;
    font-size: 1.4rem;
  }
}
.l-footer__middle {
  padding: 103px 0 70px;
  background-color: #fff;
}
.l-footer__middle__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__middle__mainInfo {
  margin-right: auto;
}
.l-footer__middle__mainInfo__title {
  width: 203px;
  margin-bottom: 23px;
}
.l-footer__middle__mainInfo__title a {
  display: block;
}
@media screen and (min-width: 751px) {
  .l-footer__middle__mainInfo__title a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__middle__mainInfo__address {
  margin-bottom: 19px;
}
.l-footer__middle__mainInfo__recruit {
  width: 259px;
}
.l-footer__middle__mainInfo__recruit a {
  display: block;
}
@media screen and (min-width: 751px) {
  .l-footer__middle__mainInfo__recruit a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__middle__siteMap {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__middle__siteMap__row {
  margin-right: 37px;
}
.l-footer__middle__siteMap__row:last-child {
  margin-right: 0;
}
.l-footer__middle__siteMap__item {
  margin-bottom: 24px;
}
.l-footer__middle__siteMap__item:last-child {
  margin-bottom: 0;
}
.l-footer__middle__siteMap__item > a, .l-footer__middle__siteMap__item .l-footer__middle__siteMap__parent {
  display: inline-block;
  padding-left: 15px;
  position: relative;
  font-size: 1.6rem;
}
.l-footer__middle__siteMap__item > a::before, .l-footer__middle__siteMap__item .l-footer__middle__siteMap__parent::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 8px;
  border-color: transparent transparent transparent #003E57;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 751px) {
  .l-footer__middle__siteMap__item > a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__middle__siteMap__item .l-footer__middle__siteMap__parent {
  margin-bottom: 8px;
}
@media screen and (min-width: 751px) {
  .l-footer__middle__siteMap__item .l-footer__middle__siteMap__parent > a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__middle__siteMap__child {
  margin-top: 3px;
  margin-left: 13px;
}
.l-footer__middle__siteMap__child__item a {
  display: inline-block;
  padding-left: 10px;
  position: relative;
  font-size: 1.4rem;
  margin-bottom: 3px;
}
@media screen and (min-width: 751px) {
  .l-footer__middle__siteMap__child__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__middle__siteMap__child__item a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  background-color: #003E57;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer__middle__siteMap__child__item:last-child a {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .l-footer__middle {
    padding: 13.3333333333vw 0 6.5333333333vw;
  }
  .l-footer__middle__wrapper {
    display: block;
  }
  .l-footer__middle__mainInfo {
    margin-right: auto;
  }
  .l-footer__middle__mainInfo__title {
    width: 62.3%;
    margin-bottom: 6.5333333333vw;
  }
  .l-footer__middle__mainInfo__address {
    font-size: 4vw;
    margin-bottom: 4.8vw;
  }
  .l-footer__middle__mainInfo__recruit {
    width: 100%;
  }
  .l-footer__middle__mainInfo__siteMap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 7.6vw;
  }
  .l-footer__middle__mainInfo__siteMap__item a {
    font-size: 1.4rem;
    padding: 0 1.8666666667vw;
    position: relative;
  }
  .l-footer__middle__mainInfo__siteMap__item a::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 50%;
    background-color: #A1AAB2;
    position: absolute;
    top: 50%;
    right: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-footer__middle__mainInfo__siteMap__item:first-child a {
    padding-left: 0;
  }
  .l-footer__middle__mainInfo__siteMap__item:last-child a::after {
    content: none;
  }
  .l-footer__middle__mainInfo__siteMap__item .l-footer__middle__siteMap__parent {
    margin-bottom: 0;
  }
}
.l-footer__bottom {
  padding-bottom: 112px;
}
.l-footer__bottom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__bottom__sns {
  margin-right: auto;
}
.l-footer__bottom__sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__bottom__sns__item {
  margin-right: 23px;
}
.l-footer__bottom__sns__item:last-child {
  margin-right: 0;
}
.l-footer__bottom__sns__item.u-twi {
  width: 29px;
}
.l-footer__bottom__sns__item.u-line {
  width: 23px;
}
.l-footer__bottom__sns__item.u-fa {
  width: 24px;
}
.l-footer__bottom__sns__item.u-ins {
  width: 23px;
}
.l-footer__bottom__sns__item a {
  display: block;
}
@media screen and (min-width: 751px) {
  .l-footer__bottom__sns__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.l-footer__bottom__copy {
  margin-left: auto;
}
.l-footer__bottom__copy p {
  font-size: 1.2rem;
}
@media screen and (max-width: 750px) {
  .l-footer__bottom {
    padding-bottom: 6.2666666667vw;
  }
  .l-footer__bottom__wrapper {
    display: block;
  }
  .l-footer__bottom__sns {
    margin-right: 0;
    margin-bottom: 6.5333333333vw;
  }
  .l-footer__bottom__sns__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer__bottom__sns__item {
    margin-right: 11.5733333333vw;
  }
  .l-footer__bottom__sns__item.u-twi {
    width: 10.1333333333vw;
  }
  .l-footer__bottom__sns__item.u-line {
    width: 8.1333333333vw;
  }
  .l-footer__bottom__sns__item.u-fa {
    width: 8.4vw;
  }
  .l-footer__bottom__sns__item.u-ins {
    width: 8vw;
  }
  .l-footer__bottom__copy {
    margin-left: 0;
    text-align: center;
  }
  .l-footer__bottom__copy p {
    font-size: 2.6666666667vw;
  }
}

.c-aspectRatio {
  position: relative;
  width: 100%;
}
.c-aspectRatio__inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-inputCheckbox__input,
.c-inputRadio__input {
  display: none;
}
.c-inputCheckbox__mark,
.c-inputRadio__mark {
  position: relative;
  padding: 0 0 0 30px;
}
.c-inputCheckbox__mark::before,
.c-inputRadio__mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
}
.c-inputCheckbox__mark::after,
.c-inputRadio__mark::after {
  position: absolute;
  top: 5px;
  left: 5px;
  background: #0000ff;
  width: 10px;
  height: 10px;
}

.c-inputRadio__mark::before, .c-inputRadio__mark::after {
  border-radius: 50%;
}

:checked + .c-inputCheckbox__mark::after,
:checked + .c-inputRadio__mark::after {
  content: "";
}

.c-link a {
  display: inline-block;
  color: #003E57;
  font-weight: 700;
  font-size: 1.6rem;
  z-index: 0;
  position: relative;
}
@media screen and (min-width: 751px) {
  .c-link a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.c-link a span {
  display: inline-block;
  padding: 14px 79px 18px 28px;
  position: relative;
}
.c-link a span::before {
  display: inline-block;
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: #C6DAE6;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  -webkit-transition: width ease 0.2s;
  transition: width ease 0.2s;
}
.c-link a span::after {
  display: inline-block;
  content: "";
  width: 39.5px;
  height: 7.5px;
  background-image: url(../img/common/ico/ico_linkArrow_navy.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 43%;
  right: 26px;
  -webkit-transform: translateY(-43%);
          transform: translateY(-43%);
  z-index: -1;
}
@media screen and (min-width: 751px) {
  .c-link a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.c-link.u-transBlue span::before {
  background-color: rgba(85, 155, 193, 0.3);
}
.c-link.u-transBlue span::after {
  background-image: url(../img/common/ico/ico_linkArrow_white.svg);
}
.c-link.u-reverse span {
  padding: 14px 28px 18px 79px;
}
.c-link.u-reverse span::after {
  right: auto;
  left: 26px;
  -webkit-transform: scale(-1, 1) translateY(-43%);
          transform: scale(-1, 1) translateY(-43%);
}
@media screen and (min-width: 751px) {
  .c-link a:hover span::before {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .c-link a {
    font-size: 1.5rem;
  }
  .c-link a span {
    display: inline-block;
    padding: 3.4666666667vw 13.3333333333vw 4.4266666667vw 8.6666666667vw;
  }
  .c-link a span::before {
    width: 14.072vw;
    height: 14.072vw;
  }
  .c-link a span::after {
    width: 9.7333333333vw;
    height: 1.84vw;
    top: 43%;
    right: 0vw;
  }
  .c-link.u-reverse span {
    padding: 3.4666666667vw 8.6666666667vw 4.4266666667vw 13.3333333333vw;
  }
  .c-link.u-reverse span::after {
    left: 0vw;
  }
}

.c-downstairsLead {
  width: 100%;
  margin: 0;
  padding: 30px 0 35px;
  background-color: #003E57;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 4.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-downstairsLead {
    padding: 8vw 0 8vw;
    font-size: 7.8666666667vw;
    line-height: 2;
  }
}

.c-subDownstairsLeadWrapper {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .c-subDownstairsLeadWrapper {
    text-align: left;
    margin-bottom: 12.2666666667vw;
  }
}

.c-subDownstairsLead {
  font-size: 1.6rem;
  color: #003E57;
  font-weight: 700;
  margin: 0 0 20px;
}
.c-subDownstairsLead span {
  position: relative;
  padding-left: 35px;
}
.c-subDownstairsLead span::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 17.64px;
  background-image: url(../img/common/ico/ico_dogCat_navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .c-subDownstairsLead span {
    padding-left: 8.1333333333vw;
  }
  .c-subDownstairsLead span::before {
    width: 6.1333333333vw;
    height: 4.1626666667vw;
  }
}
@media screen and (max-width: 750px) {
  .c-subDownstairsLead {
    font-size: 4vw;
    margin: 0 0 2.8vw;
  }
}

.c-subDownstairsTxt {
  margin: 0;
  font-size: 2.5rem;
  color: #003E57;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .c-subDownstairsTxt {
    font-size: 5.2vw;
    line-height: 1.7;
  }
}

.c-nikukyuiconTxt {
  text-align: left;
  font-size: 1.6rem;
  position: relative;
  margin-left: 20px;
}
.c-nikukyuiconTxt::before {
  content: url(../img/common/ico/ico_nikukyu_navy.svg);
  width: 17px;
  height: 23px;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .c-nikukyuiconTxt::before {
    width: 4.5333333333vw;
    height: 6.1333333333vw;
  }
}
.c-nikukyuiconTxt::before {
  margin-left: -20px;
  top: 3px;
  left: 0;
}
@media screen and (max-width: 750px) {
  .c-nikukyuiconTxt {
    margin-left: 4.8vw;
    font-size: 4vw;
  }
  .c-nikukyuiconTxt::before {
    margin-left: -4.8vw;
    top: 0.8vw;
  }
}

.c-flowItem {
  width: 100%;
  padding: 61px 0 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #003E57;
}
.c-flowItem:last-child {
  border-bottom: 1px solid #003E57;
}
.c-flowItem.u-itemTop {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-flowItem__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 12rem;
  text-align: center;
  color: rgba(0, 62, 87, 0.1);
  white-space: nowrap;
}
.c-flowItem__num > div {
  position: relative;
  line-height: 1;
}
.c-flowItem__num span {
  display: inline-block;
  width: 100%;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #003E57;
  position: absolute;
  top: 58%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1.2;
}
.c-flowItem__num.u-ptItem {
  padding-top: 83px;
}
.c-flowItem__main {
  margin-left: 75px;
}
@media screen and (max-width: 750px) {
  .c-flowItem {
    padding: 9.3333333333vw 0 12.6666666667vw;
    display: block;
  }
  .c-flowItem__num {
    width: 100%;
    text-align: center;
    font-size: 17.3333333333vw;
    text-align: center;
    margin-bottom: 5.8666666667vw;
  }
  .c-flowItem__num span {
    font-size: 4.5333333333vw;
  }
  .c-flowItem__num.u-ptItem {
    padding-top: 0;
  }
  .c-flowItem__main {
    margin-left: 0;
  }
}

.c-bottomNav {
  padding-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-bottomNav__btn:first-child {
  margin-right: 36px;
}
.c-bottomNav__btn:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .c-bottomNav {
    padding-top: 8.1333333333vw;
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-bottomNav__btn:first-child {
    margin-right: 0;
    margin-bottom: 4vw;
  }
}

.c-bgFlexRightw {
  padding: 74px 0;
  background-color: #EFF2F5;
}
.c-bgFlexRightw__contaner {
  margin-left: calc((100% - 1200px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-bgFlexRightw__right {
  margin-left: 32px;
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
}
.c-bgFlexRightw__right__txtBox {
  width: 474px;
  padding: 65px 0 65px 48px;
}
.c-bgFlexRightw__right__txtBox p {
  margin-bottom: 8px;
}
.c-bgFlexRightw__right__txtBox p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .c-bgFlexRightw {
    padding: 17.4666666667vw 0 20.4vw;
  }
  .c-bgFlexRightw__contaner {
    margin-left: 7%;
    display: block;
  }
  .c-bgFlexRightw__left {
    margin-right: 7%;
    margin-bottom: 12.2666666667vw;
  }
  .c-bgFlexRightw__right {
    margin-left: 0;
  }
  .c-bgFlexRightw__right__txtBox {
    width: 100%;
    padding: 5.8666666667vw 6.6666666667vw 6.1333333333vw 3.6vw;
    font-size: 4vw;
  }
  .c-bgFlexRightw__right__txtBox p {
    margin-bottom: 4vw;
  }
}

.c-toggle {
  width: 1000px;
  margin: 0 auto;
}
.c-toggle__item {
  width: 100%;
  margin-bottom: 20px;
}
.c-toggle__item:last-child {
  margin-bottom: 0;
}
.c-toggle__btn {
  padding: 21px 70px 21px 22px;
  background-color: #EFF2F5;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 751px) {
  .c-toggle__btn:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.c-toggle__btn::before, .c-toggle__btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #003E57;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-toggle__btn::after {
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}
.c-toggle__btn.u-active::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-toggle__btn__q {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #003E57;
  margin-right: 17px;
}
.c-toggle__content {
  display: none;
}
.c-toggle__content__wrapper {
  padding: 21px 0 21px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-toggle__content__a {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #003E57;
  margin-right: 17px;
}
@media screen and (max-width: 750px) {
  .c-toggle {
    width: 100%;
  }
  .c-toggle__item {
    margin-bottom: 2.6666666667vw;
  }
  .c-toggle__btn {
    padding: 4.8vw 8.1333333333vw 4.8vw 4vw;
  }
  .c-toggle__btn::before, .c-toggle__btn::after {
    width: 2.6666666667vw;
    right: 5.3333333333vw;
  }
  .c-toggle__btn__q {
    font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    font-size: 4vw;
    margin-right: 2.6666666667vw;
  }
  .c-toggle__btn__txt {
    font-size: 4vw;
  }
  .c-toggle__content__wrapper {
    padding: 2vw 4vw 6.6666666667vw 4vw;
  }
  .c-toggle__content__a {
    font-size: 4vw;
    margin-right: 2.6666666667vw;
    line-height: initial;
  }
  .c-toggle__content__txt {
    font-size: 4vw;
  }
}

.c-pager {
  text-align: center;
  margin: 0 auto;
}
.c-pager__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pager__item {
  margin-right: 13px;
}
.c-pager__item a {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .c-pager__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.c-pager__item:last-child {
  margin-right: 0;
}
.c-pager__item.u-on {
  margin: 0 18px 0 5px;
}
.c-pager__item.u-on a {
  color: #fff;
  z-index: 1;
  position: relative;
}
.c-pager__item.u-on a span {
  position: relative;
  z-index: 2;
}
.c-pager__item.u-on a::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../img/common/ico/ico_pagerOn.svg);
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
}
.c-pager__item.u-omit {
  font-size: 1.6rem;
  color: #003E57;
}
@media screen and (max-width: 750px) {
  .c-pager__item {
    margin-right: 6.1333333333vw;
  }
  .c-pager__item a {
    font-size: 6.4vw;
  }
  .c-pager__item.u-on {
    margin: 0 6.6666666667vw 0 0.5333333333vw;
  }
  .c-pager__item.u-on a::after {
    width: 10vw;
    height: 10vw;
  }
  .c-pager__item.u-omit {
    font-size: 6.4vw;
  }
}

.c-MedicalDepartment {
  padding: 95px 0 108px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(47%, #fff), color-stop(47%, #EFF2F5), to(#EFF2F5));
  background: linear-gradient(90deg, #fff 0%, #fff 47%, #EFF2F5 47%, #EFF2F5 100%);
}
.c-MedicalDepartment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-MedicalDepartment__item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 29px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-MedicalDepartment__item:nth-child(3n) {
  margin-right: 0;
}
.c-MedicalDepartment__item:nth-last-child(3), .c-MedicalDepartment__item:nth-last-child(2), .c-MedicalDepartment__item:last-child {
  margin-bottom: 0;
}
.c-MedicalDepartment__item a {
  display: block;
  padding: 22px 17px 24px 22px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 2rem;
  font-weight: 700;
  color: #003E57;
}
@media screen and (min-width: 751px) {
  .c-MedicalDepartment__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.c-MedicalDepartment__item a span {
  width: 100%;
  display: inline-block;
  position: relative;
}
.c-MedicalDepartment__item a span::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-MedicalDepartment__item a span::after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 8px 0 8px;
  border-color: #003E57 transparent transparent transparent;
}
.c-MedicalDepartment__item a:hover {
  background-color: #C6DAE6;
}
.c-MedicalDepartment__item.u-noAnchor span::after {
  content: none;
}
.c-MedicalDepartment__item.u-orthopedics span {
  padding-left: 45.5px;
}
.c-MedicalDepartment__item.u-orthopedics span::before {
  width: 25px;
  height: 24px;
  background-image: url(../img/common/ico/ico_bone_navy.svg);
}
.c-MedicalDepartment__item.u-softtissue span {
  padding-left: 45.5px;
}
.c-MedicalDepartment__item.u-softtissue span::before {
  width: 25px;
  height: 27px;
  background-image: url(../img/common/ico/ico_takni_navy.svg);
}
.c-MedicalDepartment__item.u-endoscopic span {
  padding-left: 45.5px;
}
.c-MedicalDepartment__item.u-endoscopic span::before {
  width: 25px;
  height: 27px;
  background-image: url(../img/common/ico/ico_stomach_navy.svg);
}
.c-MedicalDepartment__item.u-anesthesiology span {
  padding-left: 44.5px;
}
.c-MedicalDepartment__item.u-anesthesiology span::before {
  width: 24px;
  height: 26px;
  background-image: url(../img/common/ico/ico_syringe_navy.svg);
}
.c-MedicalDepartment__item.u-oncology span {
  padding-left: 45.48px;
}
.c-MedicalDepartment__item.u-oncology span::before {
  width: 24.98px;
  height: 25px;
  background-image: url(../img/common/ico/ico_oncology_navy.svg);
}
.c-MedicalDepartment__item.u-circulatory span {
  padding-left: 39.5px;
}
.c-MedicalDepartment__item.u-circulatory span::before {
  width: 19px;
  height: 26.01px;
  background-image: url(../img/common/ico/ico_circulatory_navy.svg);
}
.c-MedicalDepartment__item.u-ophthalmology span {
  padding-left: 44.5px;
}
.c-MedicalDepartment__item.u-ophthalmology span::before {
  width: 24px;
  height: 14.9px;
  background-image: url(../img/common/ico/ico_ophthalmology_navy.svg);
}
.c-MedicalDepartment__item.u-dentistry span {
  padding-left: 43.14px;
}
.c-MedicalDepartment__item.u-dentistry span::before {
  width: 24.64px;
  height: 27px;
  background-image: url(../img/common/ico/ico_dentistry_navy.svg);
}
.c-MedicalDepartment__item.u-image span {
  padding-left: 44.5px;
}
.c-MedicalDepartment__item.u-image span::before {
  width: 24px;
  height: 20px;
  background-image: url(../img/common/ico/ico_image_navy.svg);
}
.c-MedicalDepartment__item.u-training span {
  padding-left: 48.5px;
}
.c-MedicalDepartment__item.u-training span::before {
  width: 28px;
  height: 29.5px;
  background-image: url(../img/common/ico/ico_training_navy.svg);
}
.c-MedicalDepartment__item.u-synthetic span {
  padding-left: 44.5px;
}
.c-MedicalDepartment__item.u-synthetic span::before {
  width: 24px;
  height: 24.52px;
  background-image: url(../img/common/ico/ico_stethoscope_navy.svg);
}
@media screen and (max-width: 750px) {
  .c-MedicalDepartment {
    padding: 17.4666666667vw 0 18.2666666667vw;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(44%, #fff), color-stop(44%, #EFF2F5), to(#EFF2F5));
    background: linear-gradient(90deg, #fff 0%, #fff 44%, #EFF2F5 44%, #EFF2F5 100%);
  }
  .c-MedicalDepartment__list {
    display: block;
    width: 100%;
  }
  .c-MedicalDepartment__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4vw;
  }
  .c-MedicalDepartment__item:nth-last-child(3), .c-MedicalDepartment__item:nth-last-child(2) {
    margin-bottom: 4vw;
  }
  .c-MedicalDepartment__item a {
    padding: 3.3333333333vw 5.2vw 3.3333333333vw 4.1333333333vw;
    font-size: 4.5333333333vw;
  }
  .c-MedicalDepartment__item a span::after {
    border-width: 2.9333333333vw 1.8666666667vw 0 1.8666666667vw;
    border-color: #003E57 transparent transparent transparent;
  }
  .c-MedicalDepartment__item.u-orthopedics span {
    padding-left: 9.4666666667vw;
  }
  .c-MedicalDepartment__item.u-orthopedics span::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
  .c-MedicalDepartment__item.u-softtissue span {
    padding-left: 8.72vw;
  }
  .c-MedicalDepartment__item.u-softtissue span::before {
    width: 4.5866666667vw;
    height: 5.5466666667vw;
  }
  .c-MedicalDepartment__item.u-endoscopic span {
    padding-left: 8.8vw;
  }
  .c-MedicalDepartment__item.u-endoscopic span::before {
    width: 4.6666666667vw;
    height: 5.3866666667vw;
  }
  .c-MedicalDepartment__item.u-anesthesiology span {
    padding-left: 10.1333333333vw;
  }
  .c-MedicalDepartment__item.u-anesthesiology span::before {
    width: 6vw;
    height: 6vw;
  }
  .c-MedicalDepartment__item.u-oncology span {
    padding-left: 8.9333333333vw;
  }
  .c-MedicalDepartment__item.u-oncology span::before {
    width: 4.8vw;
    height: 4.8vw;
  }
  .c-MedicalDepartment__item.u-circulatory span {
    padding-left: 7.4666666667vw;
  }
  .c-MedicalDepartment__item.u-circulatory span::before {
    width: 3.3333333333vw;
    height: 4.5866666667vw;
  }
  .c-MedicalDepartment__item.u-ophthalmology span {
    padding-left: 9.2vw;
  }
  .c-MedicalDepartment__item.u-ophthalmology span::before {
    width: 5.0666666667vw;
    height: 3.12vw;
  }
  .c-MedicalDepartment__item.u-dentistry span {
    padding-left: 8.8266666667vw;
  }
  .c-MedicalDepartment__item.u-dentistry span::before {
    width: 4.6933333333vw;
    height: 4.8vw;
  }
  .c-MedicalDepartment__item.u-image span {
    padding-left: 10vw;
  }
  .c-MedicalDepartment__item.u-image span::before {
    width: 4.5333333333vw;
    height: 3.76vw;
  }
  .c-MedicalDepartment__item.u-training span {
    padding-left: 9.4666666667vw;
  }
  .c-MedicalDepartment__item.u-training span::before {
    width: 5.3333333333vw;
    height: 5.6vw;
  }
  .c-MedicalDepartment__item.u-synthetic span {
    padding-left: 8.8266666667vw;
  }
  .c-MedicalDepartment__item.u-synthetic span::before {
    width: 4.6933333333vw;
    height: 4.8vw;
  }
}

.c-commonIllustDrawBox {
  width: 100%;
  margin: 0 0 57px 0;
}
.c-commonIllustDrawBox:last-child {
  margin-bottom: 0;
}
.c-commonIllustDrawBox__lead {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  margin-bottom: 24px;
  font-weight: 400;
  position: relative;
}
.c-commonIllustDrawBox__lead::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-commonIllustDrawBox__lead.u-orthopedics {
  padding-left: 41.7px;
}
.c-commonIllustDrawBox__lead.u-orthopedics::before {
  width: 25px;
  height: 24px;
  background-image: url(../img/common/ico/ico_bone_navy.svg);
}
.c-commonIllustDrawBox__lead.u-softtissue {
  padding-left: 41.7px;
}
.c-commonIllustDrawBox__lead.u-softtissue::before {
  width: 25px;
  height: 27px;
  background-image: url(../img/common/ico/ico_takni_navy.svg);
}
.c-commonIllustDrawBox__lead.u-endoscopic {
  padding-left: 41.7px;
}
.c-commonIllustDrawBox__lead.u-endoscopic::before {
  width: 25px;
  height: 27px;
  background-image: url(../img/common/ico/ico_stomach_navy.svg);
}
.c-commonIllustDrawBox__lead.u-anesthesiology {
  padding-left: 40.7px;
}
.c-commonIllustDrawBox__lead.u-anesthesiology::before {
  width: 24px;
  height: 26px;
  background-image: url(../img/common/ico/ico_syringe_navy.svg);
}
.c-commonIllustDrawBox__lead.u-oncology {
  padding-left: 41.68px;
}
.c-commonIllustDrawBox__lead.u-oncology::before {
  width: 24.98px;
  height: 25px;
  background-image: url(../img/common/ico/ico_oncology_navy.svg);
}
.c-commonIllustDrawBox__lead.u-circulatory {
  padding-left: 35.7px;
}
.c-commonIllustDrawBox__lead.u-circulatory::before {
  width: 19px;
  height: 26.01px;
  background-image: url(../img/common/ico/ico_circulatory_navy.svg);
}
.c-commonIllustDrawBox__lead.u-ophthalmology {
  padding-left: 40.7px;
}
.c-commonIllustDrawBox__lead.u-ophthalmology::before {
  width: 24px;
  height: 14.9px;
  background-image: url(../img/common/ico/ico_ophthalmology_navy.svg);
}
.c-commonIllustDrawBox__lead.u-dentistry {
  padding-left: 39.34px;
}
.c-commonIllustDrawBox__lead.u-dentistry::before {
  width: 24.64px;
  height: 27px;
  background-image: url(../img/common/ico/ico_dentistry_navy.svg);
}
.c-commonIllustDrawBox__lead.u-image {
  padding-left: 40.7px;
}
.c-commonIllustDrawBox__lead.u-image::before {
  width: 24px;
  height: 20px;
  background-image: url(../img/common/ico/ico_image_navy.svg);
}
.c-commonIllustDrawBox__lead.u-training {
  padding-left: 44.7px;
}
.c-commonIllustDrawBox__lead.u-training::before {
  width: 28px;
  height: 29.5px;
  background-image: url(../img/common/ico/ico_training_navy.svg);
}
.c-commonIllustDrawBox__lead.u-synthetic {
  padding-left: 40.7px;
}
.c-commonIllustDrawBox__lead.u-synthetic::before {
  width: 24px;
  height: 24.52px;
  background-image: url(../img/common/ico/ico_stethoscope_navy.svg);
}
.c-commonIllustDrawBox__flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-commonIllustDrawBox__left {
  margin-right: 30px;
  width: 35.9%;
}
.c-commonIllustDrawBox__left__detail {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-commonIllustDrawBox__left__subjectTxt {
  font-size: 1.6rem;
  text-align: left;
  margin-right: 8px;
}
.c-commonIllustDrawBox__left__subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-commonIllustDrawBox__left__subject li {
  display: inline-block;
  padding: 4px 16px;
  background-color: #003E57;
  color: #fff;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.c-commonIllustDrawBox__left__txt {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  background-color: #C6DAE6;
  margin: 0;
  color: #003E57;
  text-align: center;
  font-size: 2.5rem;
  padding: 40px 0;
  min-height: 166px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-commonIllustDrawBox__right {
  margin-left: auto;
  width: 60.8%;
}
.c-commonIllustDrawBox__right__borderLead {
  width: 100%;
  position: relative;
  margin: 0 0 15px 0;
}
.c-commonIllustDrawBox__right__borderLead span {
  padding-right: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E57;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.c-commonIllustDrawBox__right__borderLead::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #003E57;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
.c-commonIllustDrawBox__right__icoLead {
  margin-bottom: 8px;
}
.c-commonIllustDrawBox__right__icoLead.u-mb0 {
  margin-bottom: 0;
}
.c-commonIllustDrawBox__right__icoLead.u-mb15 {
  margin-bottom: 15px;
}
.c-commonIllustDrawBox__right__icoLead.u-mb30 {
  margin-bottom: 30px;
}
.c-commonIllustDrawBox__right__tabBox {
  margin-left: 20px;
  margin-bottom: 30px;
}
.c-commonIllustDrawBox__right__tabBox.u-mb0 {
  margin-bottom: 0;
}
.c-commonIllustDrawBox__right__bgBox {
  width: 100%;
  padding: 18px 20px;
  background-color: #EFF2F5;
  border-radius: 10px;
}
.c-commonIllustDrawBox__right__bgBox__lead {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E57;
  margin-bottom: 5px;
}
.c-commonIllustDrawBox__txt {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.c-commonIllustDrawBox__txt.u-mb30 {
  margin-bottom: 30px;
}
.c-commonIllustDrawBox__navyRadi {
  display: inline-block;
  font-size: 1.6rem;
  padding: 3px 9px 5px;
  color: #fff;
  background-color: #003E57;
  border-radius: 5px;
  margin-right: 12px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
}
.c-commonIllustDrawBox__navyRadi.u-w132 {
  width: 132px;
}
@media screen and (max-width: 750px) {
  .c-commonIllustDrawBox {
    margin-bottom: 14.8vw;
  }
  .c-commonIllustDrawBox__lead {
    font-size: 5.2vw;
    margin: 0 0 5.0666666667vw 0;
  }
  .c-commonIllustDrawBox__lead.u-orthopedics {
    padding-left: 9.4666666667vw;
  }
  .c-commonIllustDrawBox__lead.u-orthopedics::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
  .c-commonIllustDrawBox__lead.u-softtissue {
    padding-left: 8.72vw;
  }
  .c-commonIllustDrawBox__lead.u-softtissue::before {
    width: 4.5866666667vw;
    height: 5.5466666667vw;
  }
  .c-commonIllustDrawBox__lead.u-endoscopic {
    padding-left: 8.8vw;
  }
  .c-commonIllustDrawBox__lead.u-endoscopic::before {
    width: 4.6666666667vw;
    height: 5.3866666667vw;
  }
  .c-commonIllustDrawBox__lead.u-anesthesiology {
    padding-left: 10.1333333333vw;
  }
  .c-commonIllustDrawBox__lead.u-anesthesiology::before {
    width: 6vw;
    height: 6vw;
  }
  .c-commonIllustDrawBox__lead.u-oncology {
    padding-left: 8.9333333333vw;
  }
  .c-commonIllustDrawBox__lead.u-oncology::before {
    width: 4.8vw;
    height: 4.8vw;
  }
  .c-commonIllustDrawBox__lead.u-circulatory {
    padding-left: 7.4666666667vw;
  }
  .c-commonIllustDrawBox__lead.u-circulatory::before {
    width: 3.3333333333vw;
    height: 4.5866666667vw;
  }
  .c-commonIllustDrawBox__lead.u-ophthalmology {
    padding-left: 9.2vw;
  }
  .c-commonIllustDrawBox__lead.u-ophthalmology::before {
    width: 5.0666666667vw;
    height: 3.12vw;
  }
  .c-commonIllustDrawBox__lead.u-dentistry {
    padding-left: 8.8266666667vw;
  }
  .c-commonIllustDrawBox__lead.u-dentistry::before {
    width: 4.6933333333vw;
    height: 4.8vw;
  }
  .c-commonIllustDrawBox__lead.u-image {
    padding-left: 10vw;
  }
  .c-commonIllustDrawBox__lead.u-image::before {
    width: 4.5333333333vw;
    height: 3.76vw;
  }
  .c-commonIllustDrawBox__lead.u-training {
    padding-left: 9.4666666667vw;
  }
  .c-commonIllustDrawBox__lead.u-training::before {
    width: 5.3333333333vw;
    height: 5.6vw;
  }
  .c-commonIllustDrawBox__lead.u-synthetic {
    padding-left: 8.8266666667vw;
  }
  .c-commonIllustDrawBox__lead.u-synthetic::before {
    width: 4.6933333333vw;
    height: 4.8vw;
  }
  .c-commonIllustDrawBox__flexBox {
    display: block;
  }
  .c-commonIllustDrawBox__left {
    margin-right: 0;
    margin-bottom: 6.6666666667vw;
    width: 100%;
  }
  .c-commonIllustDrawBox__left__detail {
    margin-top: 3.3333333333vw;
  }
  .c-commonIllustDrawBox__left__subjectTxt {
    font-size: 4vw;
    margin-right: 2.6666666667vw;
  }
  .c-commonIllustDrawBox__left__subject li {
    padding: 1.0666666667vw 4.2666666667vw;
    margin-right: 2vw;
    font-size: 4vw;
  }
  .c-commonIllustDrawBox__left__txt {
    font-size: 5.2vw;
    padding: 10.6666666667vw 0;
    min-height: 40vw;
  }
  .c-commonIllustDrawBox__right {
    width: 100%;
  }
  .c-commonIllustDrawBox__right__borderLead {
    margin: 0 0 2.6666666667vw 0;
  }
  .c-commonIllustDrawBox__right__borderLead span {
    padding-right: 4.5333333333vw;
    font-size: 4vw;
  }
  .c-commonIllustDrawBox__right__icoLead {
    margin-bottom: 2.6666666667vw;
  }
  .c-commonIllustDrawBox__right__icoLead.u-mb15 {
    margin-bottom: 4vw;
  }
  .c-commonIllustDrawBox__right__icoLead.u-mb30 {
    margin-bottom: 8vw;
  }
  .c-commonIllustDrawBox__right__tabBox {
    margin-left: 5.3333333333vw;
    margin-bottom: 8vw;
  }
  .c-commonIllustDrawBox__right__bgBox {
    padding: 6.4vw 3.6vw;
  }
  .c-commonIllustDrawBox__right__bgBox__lead {
    font-size: 4vw;
    margin-bottom: 3.0666666667vw;
  }
  .c-commonIllustDrawBox__txt {
    font-size: 4vw;
    margin-bottom: 3.2vw;
  }
  .c-commonIllustDrawBox__txt.u-mb30 {
    margin-bottom: 8vw;
  }
  .c-commonIllustDrawBox__navyRadi {
    min-width: 34.6666666667vw;
    font-size: 4vw;
    padding: 0.8vw 3.2vw 1.3333333333vw;
    margin-bottom: 0.8vw;
  }
  .c-commonIllustDrawBox__navyRadi.u-w132 {
    width: auto;
  }
  .c-commonIllustDrawBox__spBox {
    margin-bottom: 10.6666666667vw;
  }
}

.c-page__wrapper {
  padding: 77px 0 143px;
}
.c-page__smallWrapper {
  width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .c-page__wrapper {
    padding: 9.8666666667vw 0 22.6666666667vw;
  }
  .c-page__smallWrapper {
    width: 100%;
  }
}

.c-box {
  margin-bottom: 55px;
}
.c-box:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .c-box {
    margin-bottom: 13.6vw;
  }
}

.c-lead {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  color: #003E57;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .c-lead {
    font-size: 5.2vw;
    margin: 0 0 3.2vw 0;
  }
}

.c-txt {
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .c-txt {
    line-height: 1.8;
  }
}

.c-numList {
  counter-reset: number;
}
.c-numList li {
  font-size: 1.6rem;
  margin-bottom: 13px;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.c-numList li:before {
  counter-increment: number;
  content: counter(number) ".";
  color: #003E57;
  font-weight: 700;
  padding-right: 5px;
}
.c-numList li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .c-numList li {
    font-size: 4vw;
    margin-bottom: 3.7333333333vw;
  }
  .c-numList:before {
    padding-right: 0.2666666667vw;
  }
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #EFF2F5;
  cursor: pointer;
  margin: 0 6.5px;
}
.swiper-pagination-bullet:first-child {
  margin-left: 0;
}
.swiper-pagination-bullet:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

.swiper-pagination-bullet-active {
  background: #003E57;
}

.c-notfound__txt {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-notfound__txt {
    text-align: left;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 750px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .u-sp {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

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

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-margin.-short {
  margin-bottom: 16px;
}
.u-margin.-middle {
  margin-bottom: 32px;
}
.u-margin.-large {
  margin-bottom: 64px;
}
@media screen and (max-width: 750px) {
  .u-margin.-short {
    margin-bottom: 4.2666666667vw;
  }
  .u-margin.-middle {
    margin-bottom: 8.5333333333vw;
  }
  .u-margin.-large {
    margin-bottom: 17.0666666667vw;
  }
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
  font-weight
-------------------------------------------------- */
.u-bold {
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .p-top__body {
    padding-top: 0;
  }
}
.p-top__leads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-top__leads__left {
  margin-right: auto;
}
.p-top__leads__left__icoLead span {
  position: relative;
  padding-left: 35px;
}
.p-top__leads__left__icoLead span::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 17.64px;
  background-image: url(../img/common/ico/ico_dogCat_navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .p-top__leads__left__icoLead span {
    padding-left: 8.1333333333vw;
  }
  .p-top__leads__left__icoLead span::before {
    width: 6.1333333333vw;
    height: 4.1626666667vw;
  }
}
.p-top__leads__left__icoLead span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E57;
  margin-bottom: 24px;
}
.p-top__leads__left__txt {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #003E57;
}
.p-top__leads__right {
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .p-top__leads {
    display: block;
  }
  .p-top__leads__left {
    margin-bottom: 7.2vw;
  }
  .p-top__leads__left__icoLead span {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
  .p-top__leads__left__txt {
    font-size: 5.2vw;
  }
}
.p-top__mv {
  height: 100vh;
  height: 100dvh;
  min-height: 756px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top__mv__left {
  width: 219px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding-top: 41px;
}
.p-top__mv__left__logo {
  margin: 0 auto 110px;
  width: 126px;
}
.p-top__mv__left__txt {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  font-size: 25px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0 auto;
  line-height: 2;
  letter-spacing: 0.16em;
}
.p-top__mv__right {
  width: calc(100% - 219px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-top__mv__slide {
  width: 100%;
  height: 100%;
}
.p-top__mv__slide__clip {
  width: 100%;
  height: 100%;
  border-radius: 141px 0 0 0;
  overflow: hidden;
  background-color: #fff;
}
.p-top__mv__slide__main {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-top__mv__slide__main img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .p-top__mv {
    height: 100vh;
    height: 100dvh;
    min-height: auto;
  }
  .p-top__mv__left {
    width: 21.3333333333vw;
    padding-top: 3.7333333333vw;
    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-top__mv__left__logo {
    margin: 0 auto 50.4vw;
    margin: 0 auto;
    width: 16.5333333333vw;
  }
  .p-top__mv__left__txt {
    font-size: 4.4266666667vw;
  }
  .p-top__mv__right {
    width: calc(100% - 21.3333333333vw);
    padding-top: 14.5333333333vw;
  }
  .p-top__mv__slide__main img {
    top: auto;
    bottom: 0;
  }
  .p-top__mv__slide__clip {
    border-radius: 70.5px 0 0 0;
  }
}
.p-top__news {
  padding-top: 32px;
}
.p-top__news__container {
  width: calc(100% - (100% - 1000px) / 2);
  position: relative;
  background-color: #EFF2F5;
  margin-left: auto;
  padding-right: calc((100% - 1000px) / 2);
  padding-left: 32px;
  padding-top: 17px;
  padding-bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top__news__link {
  margin-right: auto;
}
.p-top__news__link a {
  display: block;
  white-space: nowrap;
  font-size: 1.6rem;
}
@media screen and (min-width: 751px) {
  .p-top__news__link a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-top__news__link__data {
  display: inline-block;
  margin-right: 27px;
}
.p-top__news__archiveLink {
  margin-left: auto;
}
.p-top__news__archiveLink a {
  position: relative;
  font-size: 1.6rem;
  padding-right: 56px;
  font-weight: 700;
  color: #003E57;
}
@media screen and (min-width: 751px) {
  .p-top__news__archiveLink a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-top__news__archiveLink a::after {
  content: "";
  width: 39.5px;
  height: 7.5px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/common/ico/ico_linkArrow_navy.svg);
}
@media screen and (max-width: 750px) {
  .p-top__news {
    padding-top: 9.4666666667vw;
  }
  .p-top__news__container {
    width: 93%;
    padding-right: 0;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 2.8vw;
    padding-bottom: 3.3333333333vw;
    display: block;
  }
  .p-top__news__link {
    margin-right: 0;
    margin-bottom: 3.4666666667vw;
  }
  .p-top__news__link a {
    white-space: normal;
    font-size: 3.4666666667vw;
  }
  .p-top__news__link__data {
    font-size: 3.0666666667vw;
    margin-right: 0;
  }
  .p-top__news__archiveLink {
    margin-left: 0;
  }
  .p-top__news__archiveLink a {
    font-size: 3.0666666667vw;
    padding-right: 9.2vw;
  }
  .p-top__news__archiveLink a::after {
    width: 6.6666666667vw;
    height: 1.3333333333vw;
  }
}
.p-top__theme {
  padding: 221px 0 135px;
  position: relative;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, from(#003E57), color-stop(75%, #003E57), color-stop(75%, #fff), to(#fff));
  background: linear-gradient(90deg, #003E57 0%, #003E57 75%, #fff 75%, #fff 100%);
}
.p-top__theme__menu {
  width: 1000px;
  margin: 66px auto -70px;
  z-index: 1;
  position: relative;
}
.p-top__theme__roop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.p-top__theme__roop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop 70s infinite linear 0.5s both;
          animation: loop 70s infinite linear 0.5s both;
}
.p-top__theme__roop__item {
  width: 33.3333333333vw;
  margin-left: 30px;
}
.p-top__theme__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top__theme__message__txtBox {
  width: 52.3%;
  margin-top: -100px;
  padding: 51px 26px 0 0;
  background-color: #003E57;
  position: relative;
  z-index: 2;
}
.p-top__theme__message__contentWrap {
  width: 507px;
  margin-left: auto;
}
.p-top__theme__message__lead {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 4.5rem;
  color: #fff;
  margin: 0 0 36px 0;
  font-weight: 400;
  line-height: 1;
}
.p-top__theme__message__txt {
  font-size: 1.6rem;
  color: #fff;
  line-height: 2.6;
}
.p-top__theme__message__btn {
  margin: 184px 0 0 57px;
}
.p-top__theme__message__btn a {
  color: #fff;
}
@media screen and (min-width: 751px) {
  .p-top__theme__menu__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
  }
  .p-top__theme__menu__item {
    width: 25%;
    padding: 24px 0 20px;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    border-color: #fff;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    position: relative;
    overflow: hidden;
  }
  .p-top__theme__menu__item:hover {
    background: #C6DAE6;
  }
  .p-top__theme__menu__item:first-child {
    border-radius: 10px 0 0 10px;
  }
  .p-top__theme__menu__item:first-child a {
    border-radius: 10px 0 0 10px;
  }
  .p-top__theme__menu__item:last-child {
    border-radius: 0 10px 10px 0;
  }
  .p-top__theme__menu__item:last-child a {
    border-radius: 0 10px 10px 0;
  }
  .p-top__theme__menu__item img {
    display: block;
    margin-bottom: 8px;
  }
  .p-top__theme__menu__item img.u-person {
    width: 27px;
  }
  .p-top__theme__menu__item img.u-syringe {
    width: 25px;
  }
  .p-top__theme__menu__item img.u-takni {
    width: 45.5px;
    margin-bottom: 18px;
  }
  .p-top__theme__menu__item img.u-hospital {
    width: 27.17px;
  }
  .p-top__theme__menu__item span {
    text-align: center;
    color: #003E57;
    font-size: 1.6rem;
  }
  .p-top__theme__menu__item::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 64%;
    background-color: #C2C2C2;
    position: absolute;
    top: 50%;
    right: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-top__theme__menu__item:last-child::before {
    display: none;
  }
  .p-top__theme__menu__item a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .p-top__theme__menu__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (max-width: 750px) {
  .p-top__theme {
    padding: 33.2vw 0 20.4533333333vw;
    background: -webkit-gradient(linear, left top, right top, from(#003E57), color-stop(89.3%, #003E57), color-stop(89.3%, #fff), to(#fff));
    background: linear-gradient(90deg, #003E57 0%, #003E57 89.3%, #fff 89.3%, #fff 100%);
  }
  .p-top__theme__menu {
    width: 86%;
    margin: 9.3333333333vw auto -12.4vw;
  }
  .p-top__theme__menu__list {
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    z-index: 1;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
  }
  .p-top__theme__menu__item {
    width: 50%;
    position: relative;
  }
  .p-top__theme__menu__item:first-child::before {
    content: "";
    display: inline-block;
    width: 90%;
    height: 1px;
    background-color: #C2C2C2;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .p-top__theme__menu__item:first-child::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 90%;
    background-color: #C2C2C2;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .p-top__theme__menu__item:nth-child(2)::before {
    content: "";
    display: inline-block;
    width: 90%;
    height: 1px;
    background-color: #C2C2C2;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .p-top__theme__menu__item:nth-child(3)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 90%;
    background-color: #C2C2C2;
    position: absolute;
    top: 0;
    right: 0;
  }
  .p-top__theme__menu__item:hover {
    background: #fff;
  }
  .p-top__theme__menu__item img {
    margin-bottom: 2.5333333333vw;
  }
  .p-top__theme__menu__item img.u-person {
    width: 7.7333333333vw;
  }
  .p-top__theme__menu__item img.u-syringe {
    width: 7.4666666667vw;
  }
  .p-top__theme__menu__item img.u-takni {
    width: 13.0666666667vw;
    margin-bottom: 4.2666666667vw;
  }
  .p-top__theme__menu__item img.u-hospital {
    width: 7.8666666667vw;
  }
  .p-top__theme__menu__item span {
    display: block;
    font-size: 3.7333333333vw;
  }
  .p-top__theme__menu__item a {
    display: block;
    padding: 4vw 0 3.4666666667vw;
    text-align: center;
    height: 100%;
  }
  .p-top__theme__roop__item {
    width: 58.1395348837vw;
    margin-left: 4vw;
  }
  .p-top__theme__message {
    display: block;
  }
  .p-top__theme__message__txtBox {
    width: 77%;
    margin-top: -10vw;
    padding: 6.4vw 0 0 7%;
    background-color: #003E57;
    z-index: 2;
  }
  .p-top__theme__message__contentWrap {
    width: 100%;
    margin-left: auto;
  }
  .p-top__theme__message__lead {
    font-size: 6.1333333333vw;
    margin: 0;
  }
  .p-top__theme__spBottomContainer {
    width: 89.3%;
    margin-right: auto;
    margin-top: 3.6vw;
    padding: 0 6.6666666667vw;
  }
  .p-top__theme__spTxt {
    color: #fff;
    font-size: 4vw;
    line-height: 2.3;
    margin: 0 0 7.4666666667vw 0;
  }
  .p-top__theme__spBtn a {
    color: #fff;
  }
}
.p-top__treatment {
  padding: 183px 0;
  background-color: #fff;
}
.p-top__treatment__lead {
  font-weight: 700;
  font-size: 1.6rem;
  color: #003E57;
  margin: 0 0 24px 0;
}
.p-top__treatment__lead span {
  position: relative;
  padding-left: 35px;
}
.p-top__treatment__lead span::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 17.64px;
  background-image: url(../img/common/ico/ico_dogCat_navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .p-top__treatment__lead span {
    padding-left: 8.1333333333vw;
  }
  .p-top__treatment__lead span::before {
    width: 6.1333333333vw;
    height: 4.1626666667vw;
  }
}
.p-top__treatment__leadTxt {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #003E57;
  line-height: 1.6;
}
.p-top__treatment__subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 93px;
}
.p-top__treatment__subject__left {
  width: 375px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top__treatment__subject__right {
  width: 581px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
.p-top__treatment__subject__item {
  margin-bottom: 13px;
}
.p-top__treatment__subject__item a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.p-top__treatment__subject__item a:hover {
  background: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .p-top__treatment__subject__item a:hover {
    background: #fff;
  }
}
.p-top__treatment__subject__item:last-child {
  margin-bottom: 0;
}
.p-top__treatment__subject__item a {
  padding: 34px 28px;
}
@media screen and (min-width: 751px) {
  .p-top__treatment__subject__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-top__treatment__subject__item__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top__treatment__subject__item__tit img.u-stethoscope {
  width: 24px;
}
.p-top__treatment__subject__item__tit img.u-navy {
  width: 24px;
}
.p-top__treatment__subject__item__tit img.u-syringe {
  width: 31.25px;
}
.p-top__treatment__subject__item__tit span {
  display: inline-block;
  margin-left: 27px;
  font-size: 2rem;
  font-weight: 700;
  color: #003E57;
}
.p-top__treatment__subject__item__desc {
  font-size: 1.6rem;
}
.p-top__treatment__middlelead {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #003E57;
  margin-bottom: 46px;
  text-align: center;
}
.p-top__treatment__otherService {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top__treatment__otherService__item {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
}
.p-top__treatment__otherService__item:last-child {
  margin-right: 0;
}
.p-top__treatment__otherService__photo {
  margin-bottom: 20px;
}
.p-top__treatment__otherService__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  font-size: 2rem;
  color: #003E57;
  font-weight: 700;
  margin-bottom: 13px;
}
.p-top__treatment__otherService__tit img.u-scissors {
  width: 22.13px;
}
.p-top__treatment__otherService__tit img.u-heart {
  width: 24.2px;
}
.p-top__treatment__otherService__tit span {
  display: inline-block;
  margin-left: 15px;
}
.p-top__treatment__otherService__desc {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .p-top__treatment {
    padding: 20vw 0;
  }
  .p-top__treatment__lead {
    font-size: 4vw;
    margin: 0 0 3.4666666667vw 0;
  }
  .p-top__treatment__leadTxt {
    font-size: 5.2vw;
    margin: 0 0 11.2vw 0;
  }
  .p-top__treatment__subject {
    display: block;
    margin-bottom: 16.8vw;
  }
  .p-top__treatment__subject__left {
    width: 100%;
  }
  .p-top__treatment__subject__right {
    width: 100%;
  }
  .p-top__treatment__subject__item {
    margin-bottom: 4.8vw;
  }
  .p-top__treatment__subject__item a {
    padding: 5.6vw 4vw;
  }
  .p-top__treatment__subject__item__tit {
    margin-bottom: 1.3333333333vw;
  }
  .p-top__treatment__subject__item__tit img.u-stethoscope {
    width: 4.5333333333vw;
  }
  .p-top__treatment__subject__item__tit img.u-navy {
    width: 4.5333333333vw;
  }
  .p-top__treatment__subject__item__tit img.u-syringe {
    width: 6vw;
  }
  .p-top__treatment__subject__item__tit span {
    margin-left: 2.6666666667vw;
    font-size: 4.5333333333vw;
    font-weight: 700;
    color: #003E57;
  }
  .p-top__treatment__subject__item__desc {
    font-size: 4vw;
    line-height: 1.8;
  }
  .p-top__treatment__middlelead {
    font-size: 5.2vw;
    margin-bottom: 10.1333333333vw;
    text-align: left;
  }
  .p-top__treatment__otherService {
    display: block;
  }
  .p-top__treatment__otherService__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 18.6666666667vw;
  }
  .p-top__treatment__otherService__item:last-child {
    margin-bottom: 0;
  }
  .p-top__treatment__otherService__photo {
    margin-bottom: 4.6133333333vw;
  }
  .p-top__treatment__otherService__tit {
    font-size: 4.5333333333vw;
    margin-bottom: 3.2vw;
  }
  .p-top__treatment__otherService__tit img.u-scissors {
    width: 5.3333333333vw;
  }
  .p-top__treatment__otherService__tit img.u-heart {
    width: 5.2vw;
  }
  .p-top__treatment__otherService__tit span {
    margin-left: 2vw;
  }
  .p-top__treatment__otherService__desc {
    font-size: 4vw;
    margin-bottom: 4.6666666667vw;
  }
}
.p-top__staff {
  padding: 128px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#EFF2F5), color-stop(88%, #EFF2F5), color-stop(88%, #fff), to(#fff));
  background: linear-gradient(180deg, #EFF2F5 0%, #EFF2F5 88%, #fff 88%, #fff 100%);
}
.p-top__staff__lead {
  margin-bottom: 94px;
}
.p-top__staff__photoLink {
  width: 100%;
  height: 678px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.p-top__staff__photoLink__wrapper {
  width: 1541.65px;
  height: 100%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: loop 30s infinite linear 0.5s both;
          animation: loop 30s infinite linear 0.5s both;
}
.p-top__staff__photoLink__item {
  position: absolute;
}
.p-top__staff__photoLink__item a {
  display: block;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media screen and (min-width: 751px) {
  .p-top__staff__photoLink__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-top__staff__photoLink__item.u-01 {
  width: 320.19px;
  height: 421.16px;
  top: 61px;
  left: 28px;
}
.p-top__staff__photoLink__item.u-02 {
  width: 373.86px;
  height: 340.21px;
  top: 0;
  left: 410.05px;
}
.p-top__staff__photoLink__item.u-03 {
  width: 298.36px;
  height: 295.77px;
  top: 388.23px;
  left: 408.03px;
}
.p-top__staff__photoLink__item.u-04 {
  width: 275.62px;
  height: 305.64px;
  top: 0;
  left: 870.33px;
}
.p-top__staff__photoLink__item.u-05 {
  width: 496.52px;
  height: 306.55px;
  top: 348px;
  left: 830px;
}
.p-top__staff__photoLink__item.u-06 {
  width: 317.47px;
  height: 317.47px;
  top: 0;
  left: 1224.18px;
}
@media screen and (max-width: 750px) {
  .p-top__staff {
    padding: 20.2666666667vw 0 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#EFF2F5), color-stop(84%, #EFF2F5), color-stop(84%, #fff), to(#fff));
    background: linear-gradient(180deg, #EFF2F5 0%, #EFF2F5 84%, #fff 84%, #fff 100%);
  }
  .p-top__staff__lead {
    margin-bottom: 9.4666666667vw;
  }
  .p-top__staff__photoLink {
    height: 90.1333333333vw;
  }
  .p-top__staff__photoLink__wrapper {
    width: 205.5466666667vw;
  }
  .p-top__staff__photoLink__item.u-01 {
    width: 42.6666666667vw;
    height: 56.1333333333vw;
    top: 8.1333333333vw;
    left: 3.7333333333vw;
  }
  .p-top__staff__photoLink__item.u-02 {
    width: 49.84vw;
    height: 45.36vw;
    left: 54.6666666667vw;
  }
  .p-top__staff__photoLink__item.u-03 {
    width: 39.76vw;
    height: 39.4133333333vw;
    top: 51.76vw;
    left: 54.404vw;
  }
  .p-top__staff__photoLink__item.u-04 {
    width: 36.7466666667vw;
    height: 40.752vw;
    left: 116.0266666667vw;
  }
  .p-top__staff__photoLink__item.u-05 {
    width: 66.2026666667vw;
    height: 40.8533333333vw;
    top: 46.4vw;
    left: 110.6666666667vw;
  }
  .p-top__staff__photoLink__item.u-06 {
    width: 42.3293333333vw;
    height: 41.92vw;
    left: 163.2vw;
  }
}
.p-top__nav {
  padding: 146px 0 148px;
  background-color: #fff;
}
.p-top__nav__lead {
  margin-bottom: 23px;
  text-align: center;
  color: #003E57;
  font-size: 1.6rem;
}
.p-top__nav__lead span {
  position: relative;
  padding-left: 35px;
}
.p-top__nav__lead span::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 17.64px;
  background-image: url(../img/common/ico/ico_dogCat_navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .p-top__nav__lead span {
    padding-left: 8.1333333333vw;
  }
  .p-top__nav__lead span::before {
    width: 6.1333333333vw;
    height: 4.1626666667vw;
  }
}
.p-top__nav__leadTxt {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 2.5em;
  margin-bottom: 63px;
  text-align: center;
  color: #003E57;
}
.p-top__nav__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top__nav__navItem {
  width: calc((100% - 62px) / 3);
  margin-right: 31px;
}
.p-top__nav__navItem a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.p-top__nav__navItem a:hover {
  background: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .p-top__nav__navItem a:hover {
    background: #fff;
  }
}
.p-top__nav__navItem a {
  padding: 30px 34px;
  text-align: center;
  color: #003E57;
  font-size: 1.6rem;
}
@media screen and (min-width: 751px) {
  .p-top__nav__navItem a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-top__nav__navItem a img {
  display: block;
  margin: 0 auto 17px;
}
.p-top__nav__navItem a img.u-question {
  width: 26px;
}
.p-top__nav__navItem a img.u-person {
  width: 27px;
}
.p-top__nav__navItem a img.u-dogcat {
  width: 38px;
}
.p-top__nav__navItem:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .p-top__nav {
    padding: 19.4666666667vw 0 20vw;
  }
  .p-top__nav__lead {
    margin-bottom: 2.1333333333vw;
    text-align: left;
    font-size: 4vw;
  }
  .p-top__nav__leadTxt {
    font-size: 5.2vw;
    margin-bottom: 10.5333333333vw;
    text-align: left;
  }
  .p-top__nav__navList {
    display: block;
  }
  .p-top__nav__navItem {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4vw;
  }
  .p-top__nav__navItem a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5.4666666667vw 10.6666666667vw;
    font-size: 4vw;
  }
  .p-top__nav__navItem a img {
    margin: 0 5.8666666667vw 0 0;
  }
  .p-top__nav__navItem a img.u-question {
    width: 7.6vw;
  }
  .p-top__nav__navItem a img.u-person {
    width: 6.4vw;
  }
  .p-top__nav__navItem a img.u-dogcat {
    width: 8.8vw;
  }
  .p-top__nav__navItem:last-child {
    margin-bottom: 0;
  }
}
.p-top__facility {
  padding: 70px 0 62px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(33%, #fff), color-stop(33%, #EFF2F5), to(#EFF2F5));
  background: linear-gradient(90deg, #fff 0%, #fff 33%, #EFF2F5 33%, #EFF2F5 100%);
}
.p-top__facility__slideSection {
  margin-top: 82px;
}
.p-top__facility__slide {
  max-width: 93.4%;
  margin-left: auto;
  overflow: hidden;
  position: relative;
}
.p-top__facility__slide__img {
  padding-bottom: 10px;
}
.p-top__facility__slide__txt {
  font-size: 1.6rem;
}
.p-top__facility__slide__pagination {
  margin-top: 12px;
}
@media screen and (max-width: 750px) {
  .p-top__facility {
    padding: 14.5333333333vw 0 26.6666666667vw;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(23%, #fff), color-stop(23%, #EFF2F5), to(#EFF2F5));
    background: linear-gradient(90deg, #fff 0%, #fff 23%, #EFF2F5 23%, #EFF2F5 100%);
  }
  .p-top__facility__slideSection {
    margin-top: 7.2vw;
  }
  .p-top__facility__slide {
    max-width: 100%;
    margin-left: 7%;
  }
  .p-top__facility__slide__img {
    padding-bottom: 0.5333333333vw;
  }
  .p-top__facility__slide__txt {
    font-size: 3.0666666667vw;
  }
  .p-top__facility__slide__pagination {
    margin-top: 4vw;
  }
}
.p-top__map {
  padding: 150px 0 118px;
  background-color: #fff;
}
.p-top__map__imgWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 54px;
}
.p-top__map__img {
  margin-right: auto;
  width: 592px;
  height: 379px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top__map__iframe {
  width: 379px;
  margin-left: auto;
}
.p-top__map__iframe iframe {
  width: 100%;
  height: 379px;
}
.p-top__map__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top__map__access__left {
  margin-right: auto;
}
.p-top__map__access__left__logo {
  width: 296px;
  margin-bottom: 25px;
}
.p-top__map__access__left__lead {
  font-size: 1.3rem;
  color: #003E57;
}
.p-top__map__access__left__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3px;
}
.p-top__map__access__left__tel img {
  width: 15.87px;
}
.p-top__map__access__left__tel span {
  display: inline-block;
  margin-left: 15px;
  font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 4.858rem;
  line-height: 1;
  color: #003E57;
}
.p-top__map__access__right {
  width: 648px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
.p-top__map__access__right__route {
  margin-bottom: 18px;
}
.p-top__map__access__right__route:last-child {
  margin-bottom: 0;
}
.p-top__map__access__right__route__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top__map__access__right__route__ico.u-car {
  width: 16px;
}
.p-top__map__access__right__route__ico.u-bus {
  width: 14px;
}
.p-top__map__access__right__route__ico.u-train {
  width: 14px;
}
.p-top__map__access__right__route__ico span {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E57;
}
.p-top__map__access__right__route__txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-top__map {
    padding: 20.4vw 0 18.2666666667vw;
    background-color: #fff;
  }
  .p-top__map__imgWrapper {
    display: block;
    margin-bottom: 4.2666666667vw;
  }
  .p-top__map__img {
    width: 100%;
    height: auto;
    margin-bottom: 4vw;
  }
  .p-top__map__iframe {
    width: 100%;
  }
  .p-top__map__iframe iframe {
    width: 100%;
    height: 38.4vw;
  }
  .p-top__map__access {
    display: block;
  }
  .p-top__map__access__left {
    width: 100%;
  }
  .p-top__map__access__left__logo {
    width: 41.6vw;
    margin-right: auto;
    margin-bottom: 8vw;
  }
  .p-top__map__access__left__tel {
    display: none;
  }
  .p-top__map__access__telLinkWrapper {
    width: 100%;
    margin-bottom: 6.4vw;
  }
  .p-top__map__access__telLink {
    width: 100%;
    margin-bottom: 3.4666666667vw;
  }
  .p-top__map__access__telLink a {
    display: block;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    padding: 2.9333333333vw 0 2.4vw;
    text-align: center;
  }
  .p-top__map__access__telLink__top {
    font-size: 3.4666666667vw;
    margin-bottom: 1.6vw;
  }
  .p-top__map__access__telLink__bottom {
    display: inline-block;
    font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    color: #003E57;
    font-size: 10.2666666667vw;
    position: relative;
    line-height: 1;
    position: relative;
    padding-left: 6.4266666667vw;
  }
  .p-top__map__access__telLink__bottom::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-top__map__access__telLink__bottom::before {
    width: 3.76vw;
    height: 6.2933333333vw;
    background-image: url(../img/common/ico/ico_smartPhone_navy.svg);
    top: 55%;
  }
  .p-top__map__access__spAdress {
    font-size: 4vw;
    margin: 0;
  }
  .p-top__map__access__right {
    width: 100%;
  }
  .p-top__map__access__right__route {
    margin-bottom: 7.7333333333vw;
  }
  .p-top__map__access__right__route__ico {
    margin-bottom: 1.8666666667vw;
  }
  .p-top__map__access__right__route__ico.u-car {
    width: 4.6666666667vw;
  }
  .p-top__map__access__right__route__ico.u-bus {
    width: 4.6933333333vw;
  }
  .p-top__map__access__right__route__ico.u-train {
    width: 4.7733333333vw;
  }
  .p-top__map__access__right__route__ico span {
    margin-left: 2.6666666667vw;
    font-size: 4vw;
  }
  .p-top__map__access__right__route__txt {
    font-size: 4vw;
  }
}
.p-top__recruit {
  padding: 0 0 148px;
}
.p-top__recruit__bnr {
  width: 100%;
}
.p-top__recruit__bnr a {
  display: block;
}
@media screen and (min-width: 751px) {
  .p-top__recruit__bnr a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-top__recruit__bnr img {
  -webkit-filter: drop-shadow(0px 0px 30px rgba(17, 62, 87, 0.15));
          filter: drop-shadow(0px 0px 30px rgba(17, 62, 87, 0.15));
}
@media screen and (max-width: 750px) {
  .p-top__recruit {
    padding: 0 0 20vw;
  }
  .p-top__recruit__bnr img {
    -webkit-filter: drop-shadow(0px 0px 4vw rgba(17, 62, 87, 0.15));
            filter: drop-shadow(0px 0px 4vw rgba(17, 62, 87, 0.15));
  }
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-about__mv {
  padding: 86px 0 0;
}
.p-about__mv__container {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-about__mv__right {
  position: relative;
}
.p-about__mv__right::before {
  content: "";
  display: inline-block;
  z-index: 0;
  width: 157px;
  height: 157px;
  background-color: #003E57;
  position: absolute;
  top: 284px;
  right: -122px;
}
.p-about__mv__right img {
  position: relative;
  z-index: 1;
  -webkit-filter: drop-shadow(0px 0px 33.8614px rgba(17, 62, 87, 0.15));
          filter: drop-shadow(0px 0px 33.8614px rgba(17, 62, 87, 0.15));
}
.p-about__mv__left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 43px;
  width: 513px;
  padding-top: 36px;
}
.p-about__mv__lead {
  width: 100%;
  text-align: center;
  padding: 52px 0 49px;
  position: relative;
  font-size: 4.5rem;
  line-height: 1;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  color: #003E57;
  margin: 0 0 121.31px;
}
.p-about__mv__lead::before {
  content: "";
  display: inline-block;
  width: 112.39px;
  height: 70.43px;
  background-image: url(../img/about/bg_mvlead.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.p-about__mv__lead::after {
  content: "";
  display: inline-block;
  width: 112.39px;
  height: 70.43px;
  background-image: url(../img/about/bg_mvlead.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.p-about__mv__txt {
  line-height: 2.6;
}
@media screen and (min-width: 751px) {
  .p-about__mv {
    position: relative;
  }
  .p-about__mv::before {
    content: "";
    display: inline-block;
    height: 465.01px;
    width: calc((100% - 1000px) / 2);
    background-color: #EFF3F6;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .p-about__mv__bgWrapper {
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 28px;
    position: relative;
    background-image: url(../img/about/bg_mv_pc.jpg);
    background-size: 788px;
    background-position: right bottom;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 750px) {
  .p-about__mv {
    padding: 11.8133333333vw 0 5.6vw;
    background-image: url(../img/about/bg_mv_sp.jpg);
    background-size: 89.3%;
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  .p-about__mv__container {
    display: block;
    width: 86.9%;
  }
  .p-about__mv__right {
    width: 76%;
    margin: 0 auto;
  }
  .p-about__mv__right::before {
    width: 21.84vw;
    height: 21.84vw;
    top: auto;
    bottom: 38vw;
    right: -17.0133333333vw;
  }
  .p-about__mv__left {
    margin-right: 0;
    margin-bottom: 7.4666666667vw;
    width: 100%;
    padding-top: 0;
  }
  .p-about__mv__lead {
    width: 90%;
    text-align: center;
    padding: 8vw 0 8vw;
    position: relative;
    font-size: 2.6rem;
    margin: 0 auto 13.3333333333vw;
  }
  .p-about__mv__lead::before {
    width: 17.4666666667vw;
    height: 10.9333333333vw;
  }
  .p-about__mv__lead::after {
    width: 17.4666666667vw;
    height: 10.9333333333vw;
  }
  .p-about__mv__txt {
    font-size: 4vw;
    line-height: 2.3;
  }
}
.p-about__philosophy {
  padding: 97px 0 128px;
}
.p-about__philosophy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 29px;
  background-color: #fff;
}
.p-about__philosophy__box {
  width: calc((100% - 42px) / 2);
  background-color: #fff;
  border-radius: 10px;
  border: solid 1px #003E57;
  padding: 35px 0 33px;
  margin-right: 42px;
}
.p-about__philosophy__box:last-child {
  margin-right: 0;
}
.p-about__philosophy__box__img {
  margin: 0 auto 17px;
}
.p-about__philosophy__box__img.u-sincerity {
  width: 135px;
}
.p-about__philosophy__box__img.u-genuine {
  width: 247px;
  margin-top: 5px;
}
.p-about__philosophy__box__txt {
  text-align: center;
  font-size: 1.6rem;
  color: #003E57;
  line-height: 2;
}
.p-about__philosophy__detail {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .p-about__philosophy {
    padding: 19.6vw 0 18.4vw;
  }
  .p-about__philosophy__list {
    display: block;
    margin-bottom: 4.4vw;
  }
  .p-about__philosophy__box {
    width: 100%;
    padding: 6.5066666667vw 0 6.88vw;
    margin-right: 0;
    margin-bottom: 6vw;
  }
  .p-about__philosophy__box:last-child {
    margin-bottom: 0;
  }
  .p-about__philosophy__box__img {
    margin: 0 auto 3.2vw;
  }
  .p-about__philosophy__box__img.u-sincerity {
    width: 29%;
  }
  .p-about__philosophy__box__img.u-genuine {
    width: 53.1%;
    margin-top: 2.2933333333vw;
  }
  .p-about__philosophy__box__txt {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .p-about__philosophy__detail {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.86;
  }
}
.p-about__attempt {
  padding: 304px 0 48px;
  position: relative;
}
.p-about__attempt::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 424px;
  background-image: url(../img/about/bg_philosophy_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: absolute;
  top: 0;
}
.p-about__attempt__contant {
  padding-top: 61px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 1;
}
.p-about__attempt__lead {
  margin-bottom: 63px;
}
.p-about__attempt__boxWrapper {
  padding-bottom: 183px;
  border-bottom: 1px solid #A1AAB2;
}
.p-about__attempt__box {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-about__attempt__box:nth-child(odd) .p-about__attempt__box__imgBox {
  margin-right: 28px;
}
.p-about__attempt__box:nth-child(odd) .p-about__attempt__box__bgNum {
  left: 0;
}
.p-about__attempt__box:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-about__attempt__box:nth-child(even) .p-about__attempt__box__imgBox {
  margin-left: 28px;
}
.p-about__attempt__box:nth-child(even) .p-about__attempt__box__bgNum {
  right: 0;
}
.p-about__attempt__box:last-child {
  margin-bottom: 0;
}
.p-about__attempt__box__imgBox {
  width: 485px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-about__attempt__box__txtBox {
  position: relative;
}
.p-about__attempt__box__leadTxt {
  color: #003E57;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 23px;
  z-index: 1;
  position: relative;
}
.p-about__attempt__box__detailTxt {
  margin: 0;
  line-height: 1.75;
  z-index: 1;
  position: relative;
}
.p-about__attempt__box__btn {
  z-index: 1;
  position: relative;
  margin-top: 10px;
}
.p-about__attempt__box__bgNum {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 20rem;
  position: absolute;
  bottom: 0;
  line-height: 1;
  z-index: 0;
  color: rgba(0, 62, 87, 0.1);
}
@media screen and (max-width: 750px) {
  .p-about__attempt {
    padding: 53.3333333333vw 0 10.1866666667vw;
  }
  .p-about__attempt::before {
    height: 78.5333333333vw;
    background-image: url(../img/about/bg_philosophy_sp.jpg);
  }
  .p-about__attempt__contant {
    padding-top: 9.2vw;
  }
  .p-about__attempt__lead {
    padding: 0 7.0666666667vw;
    margin-bottom: 11.2vw;
    letter-spacing: -0.16em;
  }
  .p-about__attempt__boxWrapper {
    padding-bottom: 21.3333333333vw;
  }
  .p-about__attempt__box {
    margin-bottom: 21.3333333333vw;
    display: block;
  }
  .p-about__attempt__box:nth-child(odd) .p-about__attempt__box__imgBox {
    margin-right: 0;
  }
  .p-about__attempt__box:nth-child(odd) .p-about__attempt__box__bgNum {
    right: -6.8vw;
    left: auto;
  }
  .p-about__attempt__box:nth-child(even) .p-about__attempt__box__bgNum {
    right: -6.8vw;
  }
  .p-about__attempt__box:nth-child(even) .p-about__attempt__box__imgBox {
    margin-left: 0;
  }
  .p-about__attempt__box__imgBox {
    width: 100%;
    margin-bottom: 6.5333333333vw;
  }
  .p-about__attempt__box__txtBox {
    padding-bottom: 5.3333333333vw;
  }
  .p-about__attempt__box__leadTxt {
    font-size: 4.5333333333vw;
    margin: 0 0 1.8666666667vw;
  }
  .p-about__attempt__box__detailTxt {
    line-height: 1.8;
    z-index: 1;
  }
  .p-about__attempt__box__bgNum {
    font-size: 11rem;
    position: absolute;
    bottom: 0;
    line-height: 1;
    z-index: 0;
    color: rgba(0, 62, 87, 0.1);
  }
}

.p-referrals__flow {
  padding: 67px 0 155px;
}
.p-referrals__flow__main__btn01 {
  margin: 8px 0 20px 19px;
}
.p-referrals__flow__main__tel {
  width: 435px;
  margin-top: 20px;
}
.p-referrals__flow__main__tel a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.p-referrals__flow__main__tel a:hover {
  background: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .p-referrals__flow__main__tel a:hover {
    background: #fff;
  }
}
.p-referrals__flow__main__tel a {
  padding: 17px 0 14px;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-referrals__flow__main__tel a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-referrals__flow__main__tel__lead {
  font-size: 1.6rem;
  color: #003E57;
  margin-bottom: 3px;
}
.p-referrals__flow__main__tel__num {
  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;
}
.p-referrals__flow__main__tel__num img {
  width: 11.8px;
}
.p-referrals__flow__main__tel__num span {
  padding-left: 7px;
  font-size: 3.6rem;
  font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  line-height: 1;
}
.p-referrals__flow__main__tel__time {
  color: #96A1A7;
  font-size: 1.6rem;
}
.p-referrals__flow__main__reportImg {
  width: 578px;
  margin: 35px 0 0 15px;
}
.p-referrals__flow__moreLink {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 751px) {
  .p-referrals__flow__main__tel a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 750px) {
  .p-referrals__flow {
    padding: 11.2vw 0 20.5333333333vw;
  }
  .p-referrals__flow__item {
    padding: 9.3333333333vw 0 12.6666666667vw;
    display: block;
  }
  .p-referrals__flow__main {
    margin-left: 0;
  }
  .p-referrals__flow__main__btn01 {
    margin: 0.8vw 0 5.3333333333vw 5.0666666667vw;
  }
  .p-referrals__flow__main__tel {
    width: 100%;
  }
  .p-referrals__flow__main__tel a {
    padding: 4.9333333333vw 0 4.5333333333vw;
  }
  .p-referrals__flow__main__tel__lead {
    font-size: 1.5rem;
    margin-bottom: 1.0666666667vw;
  }
  .p-referrals__flow__main__tel__num img {
    width: 3.7786666667vw;
  }
  .p-referrals__flow__main__tel__num span {
    padding-left: 2.6666666667vw;
    font-size: 3.8rem;
  }
  .p-referrals__flow__main__tel__time {
    font-size: 1.3rem;
  }
  .p-referrals__flow__main__reportImg {
    width: 95%;
    margin: 5.3333333333vw 0 0 auto;
  }
  .p-referrals__flow__moreLink {
    margin-top: 4vw;
  }
}

.p-first__attention {
  padding: 67px 0 75px;
}
.p-first__attention__content {
  width: 704px;
  margin: 0 auto;
  padding: 39px 50px 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  border: solid 1px #003E57;
}
.p-first__attention__content__left {
  margin-right: auto;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2rem;
  color: #003E57;
}
.p-first__attention__content__right {
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .p-first__attention {
    padding: 11.8666666667vw 0 20.4vw;
  }
  .p-first__attention__content {
    width: 100%;
    padding: 5.3333333333vw 4vw;
    display: block;
  }
  .p-first__attention__content__left {
    font-size: 4.5333333333vw;
    margin-bottom: 6vw;
  }
  .p-first__attention__content__right {
    text-align: center;
    margin: 0 auto;
  }
}
.p-first__flow {
  padding: 128px 0 64px;
}
.p-first__flow__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 60px;
}
.p-first__flow__figure__item {
  width: calc((100% - 130px) / 6);
  position: relative;
  margin-right: 26px;
  background-color: #003E57;
  padding: 27px 0 26px;
  text-align: center;
}
.p-first__flow__figure__item::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 29px;
  border-color: transparent transparent transparent #C6DAE6;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-first__flow__figure__item__num {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  line-height: 1;
}
.p-first__flow__figure__item__txt {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}
.p-first__flow__figure__item:last-child {
  margin-right: 0;
}
.p-first__flow__figure__item:last-child::after {
  content: none;
}
.p-first__flow__item:first-child {
  border-top: none;
}
.p-first__flow__main__btn01 {
  margin: 8px 0 20px 19px;
}
.p-first__flow__main__iconLead {
  margin-bottom: 20px;
}
.p-first__flow__main__iconLead:last-of-type {
  margin-bottom: 0;
}
.p-first__flow__main__iconLead.u-mb0 {
  margin-bottom: 0;
}
.p-first__flow__main__iconLead > a {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-first__flow__main__iconLead > a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-first__flow__main__iconLead > a:hover {
  text-decoration: none;
}
.p-first__flow__main__carry {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-first__flow__main__carry__box {
  width: 346px;
  padding: 30px 36px 29px;
  background-color: #EFF2F5;
  border-radius: 10px;
}
.p-first__flow__main__carry__box:first-child {
  margin-right: 30px;
}
.p-first__flow__main__carry__icoLead {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E57;
  margin-bottom: 9px;
}
.p-first__flow__main__carry__icoLead::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-first__flow__main__carry__icoLead.u-dog {
  padding-left: 31px;
}
.p-first__flow__main__carry__icoLead.u-dog::before {
  width: 21px;
  height: 18px;
  background-image: url(../img/common/ico/ico_dog_navy.svg);
}
.p-first__flow__main__carry__icoLead.u-cat {
  padding-left: 34px;
}
.p-first__flow__main__carry__icoLead.u-cat::before {
  width: 24px;
  height: 18px;
  background-image: url(../img/common/ico/ico_cat_navy.svg);
}
.p-first__flow__main__carry__txt {
  line-height: 1.83;
}
@media screen and (min-width: 751px) {
  .p-first__flow__main__tel a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 750px) {
  .p-first__flow {
    padding: 19.6vw 0 9.7866666667vw;
  }
  .p-first__flow__figure {
    display: block;
    margin-bottom: 10.1333333333vw;
  }
  .p-first__flow__figure__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2.6666666667vw;
    padding: 2vw 3.8666666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  .p-first__flow__figure__item:last-child {
    margin-bottom: 0;
  }
  .p-first__flow__figure__item::after {
    border-width: 3.8666666667vw 2.6666666667vw 0 2.6666666667vw;
    border-color: #C6DAE6 transparent transparent transparent;
    top: auto;
    bottom: -4.2666666667vw;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .p-first__flow__figure__item__num {
    font-size: 5.2vw;
    margin-bottom: 0;
    margin-right: 1.3333333333vw;
  }
  .p-first__flow__figure__item__txt {
    font-size: 4.5333333333vw;
  }
  .p-first__flow__main__btn01 {
    margin: 0.8vw 0 5.3333333333vw 5.0666666667vw;
  }
  .p-first__flow__main__iconLead {
    margin-bottom: 6.1333333333vw;
  }
  .p-first__flow__main__carry {
    margin-top: 5.8666666667vw;
    display: block;
  }
  .p-first__flow__main__carry__box {
    width: 100%;
    padding: 5.3333333333vw 4vw 5.7333333333vw;
    margin-bottom: 4vw;
  }
  .p-first__flow__main__carry__box:first-child {
    margin-right: 0;
  }
  .p-first__flow__main__carry__box:last-child {
    margin-bottom: 0;
  }
  .p-first__flow__main__carry__icoLead {
    font-size: 4vw;
    margin-bottom: 1.8666666667vw;
  }
  .p-first__flow__main__carry__icoLead.u-dog {
    padding-left: 6.9333333333vw;
  }
  .p-first__flow__main__carry__icoLead.u-dog::before {
    width: 4.2666666667vw;
    height: 3.6vw;
  }
  .p-first__flow__main__carry__icoLead.u-cat {
    padding-left: 6.8vw;
  }
  .p-first__flow__main__carry__icoLead.u-cat::before {
    width: 4.8vw;
    height: 3.6vw;
  }
  .p-first__flow__main__carry__txt {
    font-size: 4vw;
  }
}
.p-first__question {
  padding: 64px 0 48px;
}
.p-first__question__leads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 60px;
}
.p-first__question__leads__left {
  margin-right: auto;
}
.p-first__question__leads__left__icoLead span {
  position: relative;
  padding-left: 35px;
}
.p-first__question__leads__left__icoLead span::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 17.64px;
  background-image: url(../img/common/ico/ico_dogCat_navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .p-first__question__leads__left__icoLead span {
    padding-left: 8.1333333333vw;
  }
  .p-first__question__leads__left__icoLead span::before {
    width: 6.1333333333vw;
    height: 4.1626666667vw;
  }
}
.p-first__question__leads__left__icoLead span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E57;
  margin-bottom: 24px;
}
.p-first__question__leads__left__txt {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #003E57;
}
.p-first__question__leads__right {
  margin-left: auto;
}
.p-first__question__leads__link {
  margin-left: auto;
}
.p-first__question__toggle {
  padding-bottom: 132px;
  border-bottom: 1px solid #A1AAB2;
}
@media screen and (max-width: 750px) {
  .p-first__question {
    padding: 9.7866666667vw 0 10.1333333333vw;
  }
  .p-first__question__leads {
    display: block;
    margin-bottom: 12.8vw;
  }
  .p-first__question__leads__left__icoLead span {
    font-size: 4vw;
    margin-bottom: 2.9333333333vw;
  }
  .p-first__question__leads__left__txt {
    font-size: 5.2vw;
  }
  .p-first__question__toggle {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 6.9333333333vw;
  }
  .p-first__question__listLink {
    padding-bottom: 20.4vw;
    border-bottom: 1px solid #A1AAB2;
    text-align: center;
  }
}

.p-blogArchive__wrapper {
  padding: 71px 0 155px;
}
@media screen and (max-width: 750px) {
  .p-blogArchive__wrapper {
    padding: 12vw 0 20.2666666667vw;
  }
}
.p-blogArchive__Linkwrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .p-blogArchive__Linkwrapper {
    display: block;
    margin-bottom: 7.0666666667vw;
  }
}
.p-blogArchive__card {
  width: calc((100% - 90px) / 4);
  margin-right: 30px;
  margin-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
}
.p-blogArchive__card:nth-child(4n) {
  margin-right: 0;
}
.p-blogArchive__card:nth-last-child(4), .p-blogArchive__card:nth-last-child(3), .p-blogArchive__card:nth-last-child(2), .p-blogArchive__card:last-child {
  margin-bottom: 0;
}
.p-blogArchive__card > div {
  height: 100%;
}
.p-blogArchive__card a {
  height: 100%;
  display: block;
}
@media screen and (min-width: 751px) {
  .p-blogArchive__card a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-blogArchive__card__img {
  width: 100%;
  height: 170.5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blogArchive__card__date {
  display: block;
  padding: 15px 10px 4px;
  font-size: 1.4rem;
  color: #808D95;
}
.p-blogArchive__card__title {
  padding: 0 10px 15px;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-blogArchive__card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6.6666666667vw;
  }
  .p-blogArchive__card:nth-last-child(4), .p-blogArchive__card:nth-last-child(3), .p-blogArchive__card:nth-last-child(2) {
    margin-bottom: 6.6666666667vw;
  }
  .p-blogArchive__card:last-child {
    margin-bottom: 0;
  }
  .p-blogArchive__card a {
    display: block;
  }
}
@media screen and (max-width: 750px) and (min-width: 751px) {
  .p-blogArchive__card a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
@media screen and (max-width: 750px) {
  .p-blogArchive__card__img {
    height: 64.8vw;
  }
  .p-blogArchive__card__date {
    padding: 4.8vw 4vw 1.0666666667vw;
    font-size: 3.7333333333vw;
  }
  .p-blogArchive__card__title {
    padding: 0 4vw 4.2666666667vw;
    font-size: 4vw;
  }
}
.p-blogArchive__pager {
  text-align: center;
  margin: 0 auto;
}

.p-blogDetail__wrapper {
  padding: 65px 0 154px;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__wrapper {
    padding: 10vw 0 20.1333333333vw;
  }
}
.p-blogDetail__content {
  width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__content {
    width: 100%;
  }
}
.p-blogDetail__title {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 3rem;
  color: #003E57;
  padding-bottom: 8px;
  margin-top: 0;
  margin-bottom: 18px;
  border-bottom: 1px solid #003E57;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__title {
    font-size: 5.8666666667vw;
    padding-bottom: 3.8666666667vw;
    margin-bottom: 3.3333333333vw;
  }
}
.p-blogDetail__categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__categoryList {
    margin-bottom: 10.6666666667vw;
  }
}
.p-blogDetail__categoryList__category {
  margin-right: 10px;
  margin-bottom: 5px;
}
.p-blogDetail__categoryList__category a {
  display: block;
  font-size: 1.4rem;
  padding: 3px 12px;
  background-color: #fff;
  text-align: center;
  border: solid 1px #003E57;
  color: #003E57;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-blogDetail__categoryList__category a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-blogDetail__categoryList__category:last-child {
  margin-right: 0;
}
.p-blogDetail__categoryList__category:hover a {
  background-color: #C6DAE6;
  border: solid 1px #C6DAE6;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__categoryList__category {
    margin-right: 2.4vw;
  }
  .p-blogDetail__categoryList__category a {
    font-size: 3.7333333333vw;
    padding: 0.2666666667vw 1.6vw;
  }
}
.p-blogDetail__img {
  margin-bottom: 23px;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__img {
    margin-bottom: 6.6666666667vw;
  }
}
.p-blogDetail__txtBox {
  padding-bottom: 37px;
  border-bottom: solid 1px #C2C2C2;
  margin-bottom: 22px;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__txtBox {
    padding-bottom: 8.2666666667vw;
    margin-bottom: 4vw;
  }
}
.p-blogDetail__txt {
  font-size: 1.6rem;
  line-height: 1.76;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__txt {
    font-size: 4vw;
    line-height: inherit;
  }
  .p-blogDetail__txt iframe {
    width: 100%;
  }
}
.p-blogDetail__snsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__snsBox {
    margin-bottom: 12.9333333333vw;
  }
}
.p-blogDetail__snstxt {
  font-size: 1.4rem;
  margin-right: 19px;
  color: #003E57;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__snstxt {
    font-size: 3.2vw;
    margin-right: 4.2666666667vw;
  }
}
.p-blogDetail__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-blogDetail__sns li {
  margin-right: 20px;
}
.p-blogDetail__sns li:last-child {
  margin-right: 0;
}
.p-blogDetail__sns li a {
  display: block;
}
@media screen and (min-width: 751px) {
  .p-blogDetail__sns li a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-blogDetail__sns li.u-twi {
  width: 29.03px;
}
.p-blogDetail__sns li.u-line {
  width: 23px;
}
.p-blogDetail__sns li.u-fa {
  width: 24px;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__sns li {
    margin-right: 4.8vw;
  }
  .p-blogDetail__sns li.u-twi {
    width: 6.7733333333vw;
  }
  .p-blogDetail__sns li.u-line {
    width: 5.3333333333vw;
  }
  .p-blogDetail__sns li.u-fa {
    width: 5.6vw;
  }
}
.p-blogDetail__prevNext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .p-blogDetail__prevNext__arrow a span {
    padding: 3.4666666667vw 8.6666666667vw 4.4266666667vw 5.0666666667vw;
  }
  .p-blogDetail__prevNext__arrow a span::before {
    width: 10.2666666667vw;
    height: 10.2666666667vw;
  }
  .p-blogDetail__prevNext__arrow a span::after {
    width: 5.7333333333vw;
    height: 1.84vw;
  }
  .p-blogDetail__prevNext__arrow.u-reverse span {
    padding: 3.4666666667vw 0 4.4266666667vw 13.3333333333vw;
  }
  .p-blogDetail__prevNext__arrow.u-reverse span::after {
    left: 5.7333333333vw;
  }
}

.p-faq__wrapper {
  padding: 86px 0 151px;
}
@media screen and (max-width: 750px) {
  .p-faq__wrapper {
    padding: 12vw 0 20vw;
  }
}
.p-faq__firstLinks {
  margin-bottom: 60px;
  text-align: center;
}
.p-faq__firstLinks__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-faq__firstLinks__item {
  margin-right: 30px;
  min-width: 300px;
}
.p-faq__firstLinks__item:last-child {
  margin-right: 0;
}
.p-faq__firstLinks__item a {
  display: block;
  padding: 26.5px 26px;
  border-radius: 10px;
  font-size: 1.6rem;
  text-align: left;
  color: #003E57;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  .p-faq__firstLinks__item a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-faq__firstLinks__item a span {
  position: relative;
}
.p-faq__firstLinks__item a span::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-faq__firstLinks__item a:hover {
  background-color: #C6DAE6;
}
.p-faq__firstLinks__item.u-first span {
  padding: 0 0 0 43px;
}
.p-faq__firstLinks__item.u-first span::before {
  width: 27px;
  height: 27px;
  background-image: url(../img/common/ico/ico_person_navy.svg);
}
.p-faq__firstLinks__item.u-grooming span {
  padding: 0 0 0 40px;
}
.p-faq__firstLinks__item.u-grooming span::before {
  width: 25.5px;
  height: 22.67px;
  background-image: url(../img/common/ico/ico_scissors_navy.svg);
}
@media screen and (max-width: 750px) {
  .p-faq__firstLinks {
    margin-bottom: 11.7333333333vw;
  }
  .p-faq__firstLinks__list {
    display: block;
  }
  .p-faq__firstLinks__item {
    width: 100%;
    margin-bottom: 5.3333333333vw;
    min-width: auto;
  }
  .p-faq__firstLinks__item:last-child {
    margin-bottom: 0;
  }
  .p-faq__firstLinks__item a {
    padding: 5.3333333333vw 4.8vw;
    font-size: 4vw;
  }
  .p-faq__firstLinks__item a:hover {
    background-color: #fff;
  }
  .p-faq__firstLinks__item.u-first span {
    padding: 0 0 0 10.1333333333vw;
  }
  .p-faq__firstLinks__item.u-first span::before {
    width: 6.4vw;
    height: 6.4vw;
  }
  .p-faq__firstLinks__item.u-grooming span {
    padding: 0 0 0 11.4666666667vw;
  }
  .p-faq__firstLinks__item.u-grooming span::before {
    width: 6.5333333333vw;
    height: 5.8133333333vw;
  }
}
.p-faq__lead {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2.5rem;
  position: relative;
  margin: 0 0 20px 0;
  font-weight: 400;
  color: #003E57;
}
.p-faq__lead::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-faq__lead.u-first {
  padding: 0 0 0 43px;
}
.p-faq__lead.u-first::before {
  width: 27px;
  height: 27px;
  background-image: url(../img/common/ico/ico_person_navy.svg);
}
.p-faq__lead.u-grooming {
  padding: 0 0 0 40px;
}
.p-faq__lead.u-grooming::before {
  width: 25.5px;
  height: 22.67px;
  background-image: url(../img/common/ico/ico_scissors_navy.svg);
}
@media screen and (max-width: 750px) {
  .p-faq__lead {
    font-size: 5.2vw;
    margin: 0 0 5.2vw 0;
  }
  .p-faq__lead.u-first {
    padding: 0 0 0 10.1333333333vw;
  }
  .p-faq__lead.u-first::before {
    width: 6.4vw;
    height: 6.4vw;
  }
  .p-faq__lead.u-grooming {
    padding: 0 0 0 11.4666666667vw;
  }
  .p-faq__lead.u-grooming::before {
    width: 6.5333333333vw;
    height: 5.8133333333vw;
  }
}
.p-faq__toggle {
  margin-bottom: 58px;
}
.p-faq__toggle:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .p-faq__toggle {
    margin-bottom: 11.7333333333vw;
  }
}

.p-medicalInfo__attention {
  padding: 86px 0 100px;
}
.p-medicalInfo__attention__content {
  width: 100%;
  margin: 0 auto;
  padding: 29px 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  border: solid 1px #003E57;
}
.p-medicalInfo__attention__content__left {
  margin-right: auto;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 2rem;
  color: #003E57;
}
.p-medicalInfo__attention__content__right {
  margin-left: auto;
}
.p-medicalInfo__attention__content__iconWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-medicalInfo__attention__content__icon {
  background-color: #EFF2F5;
  margin-right: 15px;
  text-align: center;
  border-radius: 10px;
}
.p-medicalInfo__attention__content__icon img {
  display: inline-block;
  margin-bottom: 20px;
}
.p-medicalInfo__attention__content__icon p {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 20px;
  color: #003E57;
  font-weight: 600;
}
.p-medicalInfo__attention__content__icon:last-child {
  margin-right: 0;
}
.p-medicalInfo__attention__content__icon.u-dog {
  padding: 30px 50px 17px 37px;
}
.p-medicalInfo__attention__content__icon.u-dog img {
  width: 54px;
}
.p-medicalInfo__attention__content__icon.u-cat {
  padding: 29px 42px 17px 42px;
}
.p-medicalInfo__attention__content__icon.u-cat img {
  width: 58px;
}
@media screen and (max-width: 750px) {
  .p-medicalInfo__attention {
    padding: 11.8666666667vw 0 18.2666666667vw;
  }
  .p-medicalInfo__attention__content {
    padding: 5.3333333333vw 4vw 6.9333333333vw;
    display: block;
  }
  .p-medicalInfo__attention__content__left {
    font-size: 4.5333333333vw;
    margin-bottom: 6vw;
  }
  .p-medicalInfo__attention__content__iconWrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-medicalInfo__attention__content__icon {
    margin-right: 3.2vw;
  }
  .p-medicalInfo__attention__content__icon img {
    margin-bottom: 4.2666666667vw;
  }
  .p-medicalInfo__attention__content__icon p {
    font-size: 4.2666666667vw;
    color: #003E57;
  }
  .p-medicalInfo__attention__content__icon:last-child {
    margin-right: 0;
  }
  .p-medicalInfo__attention__content__icon.u-dog {
    padding: 6.4vw 10.9333333333vw 3.7333333333vw 7.8666666667vw;
  }
  .p-medicalInfo__attention__content__icon.u-dog img {
    width: 11.6vw;
  }
  .p-medicalInfo__attention__content__icon.u-cat {
    padding: 6.1333333333vw 8.9333333333vw 3.7333333333vw 8.9333333333vw;
  }
  .p-medicalInfo__attention__content__icon.u-cat img {
    width: 12.4533333333vw;
  }
}
.p-medicalInfo__nav__lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .p-medicalInfo__nav__lead {
    margin-bottom: 13.2vw;
  }
}
.p-medicalInfo__calendar {
  padding: 96px 0 64px;
}
.p-medicalInfo__calendar__lead {
  margin-bottom: 23px;
}
.p-medicalInfo__calendar__iframe {
  padding-bottom: 183px;
  border-bottom: 1px solid #A1AAB2;
}
@media screen and (max-width: 750px) {
  .p-medicalInfo__calendar {
    padding: 17.4666666667vw 0 10.1333333333vw;
  }
  .p-medicalInfo__calendar__lead {
    margin-bottom: 5.8666666667vw;
  }
  .p-medicalInfo__calendar__iframe {
    padding-bottom: 20.4vw;
  }
  .p-medicalInfo__calendar__iframe iframe {
    width: 100%;
  }
}

.p-preventive__wrapper {
  padding: 77px 0 48px;
}
.p-preventive__content {
  padding-bottom: 130px;
  border-bottom: 1px solid #A1AAB2;
}
.p-preventive__vaccinationTable tr:last-child td {
  padding: 0;
}
.p-preventive__vaccinationTable td {
  padding: 0 0 10px 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-preventive__wrapper {
    padding: 10vw 0 9.7333333333vw;
  }
  .p-preventive__content {
    padding-bottom: 18.9333333333vw;
  }
}

.p-welcome__wrapper {
  padding: 77px 0 146px;
}
.p-welcome__content {
  padding-bottom: 63px;
}
.p-welcome__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-welcome__navItem {
  width: calc((100% - 62px) / 3);
  margin-right: 31px;
  border-radius: 10px;
  overflow: hidden;
  height: 131px;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
}
.p-welcome__navItem:last-child {
  margin-right: 0;
}
.p-welcome__navItem > div {
  height: 100%;
}
.p-welcome__navItem a {
  display: block;
  height: 100%;
  text-align: center;
  padding: 29px 0 34px;
  color: #003E57;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-welcome__navItem a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-welcome__navItem a img {
  display: block;
  margin: 0 auto 12.75px;
}
.p-welcome__navItem a img.u-preventive {
  width: 31.25px;
}
.p-welcome__navItem a img.u-grooming {
  width: 27px;
}
.p-welcome__navItem a img.u-otherCare {
  width: 28.6px;
}
.p-welcome__navItem a span {
  font-size: 1.6rem;
}
.p-welcome__navItem:hover a {
  background-color: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .p-welcome__wrapper {
    padding: 10vw 0 24.5333333333vw;
  }
  .p-welcome__content {
    padding-bottom: 15.7333333333vw;
  }
  .p-welcome__bottomNav__lead {
    margin-bottom: 5.2vw;
  }
  .p-welcome__navList {
    display: block;
  }
  .p-welcome__navItem {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4vw;
    height: auto;
  }
  .p-welcome__navItem:last-child {
    margin-bottom: 0;
  }
  .p-welcome__navItem a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    padding: 4.2666666667vw 10.4vw;
  }
  .p-welcome__navItem a img {
    display: inline-block;
    margin: 0 6.2666666667vw 0 0;
  }
  .p-welcome__navItem a img.u-preventive {
    width: 8.4vw;
  }
  .p-welcome__navItem a img.u-grooming {
    width: 7.2vw;
  }
  .p-welcome__navItem a img.u-otherCare {
    width: 6.8933333333vw;
  }
  .p-welcome__navItem a span {
    font-size: 4vw;
  }
  .p-welcome__navItem:hover a {
    background-color: #fff;
  }
}

.p-otherCare__wrapper {
  padding: 77px 0 48px;
}
.p-otherCare__content {
  padding-bottom: 130px;
  border-bottom: 1px solid #A1AAB2;
}
@media screen and (max-width: 750px) {
  .p-otherCare__wrapper {
    padding: 10vw 0 9.7333333333vw;
  }
  .p-otherCare__content {
    padding-bottom: 18.9333333333vw;
  }
}

.p-mediDepart__wrapper {
  padding: 77px 0 48px;
}
.p-mediDepart__content {
  padding-bottom: 130px;
  border-bottom: 1px solid #A1AAB2;
}
@media screen and (max-width: 750px) {
  .p-mediDepart__wrapper {
    padding: 10vw 0 9.7333333333vw;
  }
  .p-mediDepart__content {
    padding-bottom: 18.9333333333vw;
  }
}

.p-surgery__wrapper {
  padding: 77px 0 122px;
}
@media screen and (max-width: 750px) {
  .p-surgery__wrapper {
    padding: 10vw 0 9.7333333333vw;
  }
}

.p-staff__topLead {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #003E57;
  margin-bottom: 86px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-staff__topLead {
    font-size: 5.2vw;
    margin-bottom: 10.1333333333vw;
    text-align: left;
  }
}
.p-staff__wrapper {
  padding: 86px 0 48px;
}
@media screen and (max-width: 750px) {
  .p-staff__wrapper {
    padding: 10vw 0 9.7333333333vw;
  }
}
.p-staff__content {
  padding-bottom: 132px;
  border-bottom: 1px solid #A1AAB2;
}
@media screen and (max-width: 750px) {
  .p-staff__content {
    padding-bottom: 18.9333333333vw;
  }
}
.p-staff__infoBox {
  width: 100%;
  margin-bottom: 50px;
}
.p-staff__infoBox:last-child {
  margin-bottom: 0;
}
.p-staff__infoBox__flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-staff__infoBox__left {
  margin-right: 34px;
  width: 35.9%;
}
.p-staff__infoBox__left__top img {
  width: 100%;
  height: 308px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-staff__infoBox__right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-staff__infoBox__right__top {
  padding-bottom: 25px;
  border-bottom: 1px solid #003E57;
}
.p-staff__infoBox__right__top__name {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  margin: 0 0 16px 0;
  font-weight: 400;
  line-height: 1.6;
}
.p-staff__infoBox__right__top__position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-staff__infoBox__right__top__position__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-staff__infoBox__right__top__position__item span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #fff;
  text-align: center;
  padding: 1px 19px;
  background-color: #003E57;
  margin-right: 16px;
}
.p-staff__infoBox__right__top__position__item.u-occupation {
  width: 44.9%;
}
.p-staff__infoBox__right__top__position__item.u-manage {
  width: 55.1%;
}
.p-staff__infoBox__right__top__position__item.u-w100 {
  width: 100%;
}
.p-staff__infoBox__right__bottom {
  padding-top: 24px;
}
.p-staff__infoBox__right__bottom__wordBox {
  width: 100%;
  background-color: #EFF2F5;
  border-radius: 10px;
  padding: 18px 21px 18px 23px;
}
.p-staff__infoBox__right__bottom__lead {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E57;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .p-staff__infoBox {
    margin-bottom: 17.3333333333vw;
  }
  .p-staff__infoBox__flexBox {
    display: block;
  }
  .p-staff__infoBox__left {
    margin-right: 0;
    margin-bottom: 4.1333333333vw;
    width: 100%;
  }
  .p-staff__infoBox__left__top img {
    height: 279px;
  }
  .p-staff__infoBox__right {
    width: 100%;
  }
  .p-staff__infoBox__right__top {
    padding-bottom: 6.6666666667vw;
  }
  .p-staff__infoBox__right__top__name {
    font-size: 5.2vw;
    margin: 0 0 5.6vw 0;
    line-height: 1.7;
  }
  .p-staff__infoBox__right__top__position {
    display: block;
  }
  .p-staff__infoBox__right__top__position__item {
    width: 100%;
    font-size: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 4vw;
  }
  .p-staff__infoBox__right__top__position__item span {
    padding: 0.8vw 4.8vw;
    margin-right: 4.2666666667vw;
  }
  .p-staff__infoBox__right__top__position__item.u-occupation {
    width: 100%;
  }
  .p-staff__infoBox__right__top__position__item.u-manage {
    width: 100%;
  }
  .p-staff__infoBox__right__top__position__item:last-child {
    margin-bottom: 0;
  }
  .p-staff__infoBox__right__bottom {
    padding-top: 6.4vw;
  }
  .p-staff__infoBox__right__bottom__wordBox {
    padding: 6.4vw 4vw 5.6vw 4.4vw;
  }
  .p-staff__infoBox__right__bottom__lead {
    font-size: 4vw;
    margin-bottom: 2.6666666667vw;
  }
  .p-staff__infoBox__right__bottom__txt {
    font-size: 4vw;
  }
}

.p-access__introduction {
  padding: 86px 0 63.5px;
  position: relative;
  z-index: 1;
}
.p-access__introduction::before {
  content: "";
  display: inline-block;
  width: max(60%, 852px);
  height: max(82%, 904px);
  background-color: #EFF2F5;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.p-access__introduction__bgwrapper {
  position: relative;
  z-index: 1;
}
.p-access__introduction__lead {
  margin-bottom: 62px;
}
.p-access__introduction__slide {
  max-width: 93.4%;
  margin-left: auto;
  overflow: hidden;
  margin-bottom: 66px;
  position: relative;
}
.p-access__introduction__slide__img {
  padding-bottom: 10px;
}
.p-access__introduction__slide__txt {
  font-size: 1.6rem;
}
.p-access__introduction__slide__pagination {
  margin-top: 12px;
}
.p-access__introduction__jyubako {
  width: 100%;
  padding: 28px 31px;
  border: solid 1px #003E57;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.p-access__introduction__jyubako__img {
  width: 227px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.p-access__introduction__jyubako__txtBox__lead {
  font-weight: 700;
  font-size: 2rem;
  color: #003E57;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .p-access__introduction {
    padding: 11.0666666667vw 0 8.8vw;
  }
  .p-access__introduction::before {
    width: 56%;
    height: 588px;
  }
  .p-access__introduction__lead {
    margin-bottom: 11.2vw;
  }
  .p-access__introduction__slide {
    max-width: 100%;
    margin-left: 7%;
    margin-bottom: 12vw;
  }
  .p-access__introduction__slide__img {
    padding-bottom: 0.5333333333vw;
  }
  .p-access__introduction__slide__txt {
    font-size: 3.0666666667vw;
  }
  .p-access__introduction__slide__pagination {
    margin-top: 4vw;
  }
  .p-access__introduction__jyubako {
    padding: 6.6666666667vw 4vw 5.3333333333vw;
    display: block;
  }
  .p-access__introduction__jyubako__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6.6666666667vw;
  }
  .p-access__introduction__jyubako__txtBox__lead {
    font-weight: 700;
    font-size: 4.5333333333vw;
    margin-bottom: 0;
  }
  .p-access__introduction__jyubako__txtBox__txt {
    font-size: 4vw;
  }
}
.p-access__mediEquipment {
  padding: 63.5px 0 60.5px;
}
.p-access__mediEquipment__lead {
  margin-bottom: 62px;
}
.p-access__mediEquipment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-access__mediEquipment__item {
  width: calc((100% - 120px) / 5);
  margin-right: 30px;
  margin-bottom: 45px;
}
.p-access__mediEquipment__item:nth-child(5n) {
  margin-right: 0;
}
.p-access__mediEquipment__item:nth-last-child(5), .p-access__mediEquipment__item:nth-last-child(4), .p-access__mediEquipment__item:nth-last-child(3), .p-access__mediEquipment__item:nth-last-child(2), .p-access__mediEquipment__item:last-child {
  margin-bottom: 0;
}
.p-access__mediEquipment__item__img {
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .p-access__mediEquipment {
    padding: 9.6533333333vw 0 11.2vw;
  }
  .p-access__mediEquipment__lead {
    margin-bottom: 10.1333333333vw;
  }
  .p-access__mediEquipment__item {
    width: calc((100% - 4vw) / 2);
    margin-right: 4vw;
    margin-bottom: 9.3333333333vw;
  }
  .p-access__mediEquipment__item:nth-child(5n) {
    margin-right: 4vw;
  }
  .p-access__mediEquipment__item:nth-child(2n) {
    margin-right: 0;
  }
  .p-access__mediEquipment__item:nth-last-child(5), .p-access__mediEquipment__item:nth-last-child(4), .p-access__mediEquipment__item:nth-last-child(3) {
    margin-bottom: 9.3333333333vw;
  }
  .p-access__mediEquipment__item__img {
    margin-bottom: 2.6666666667vw;
  }
}
.p-access__map {
  padding: 60.5px 0 48px;
}
.p-access__map__lead {
  margin-bottom: 60px;
}
.p-access__map__diversion {
  margin-bottom: 64px;
}
.p-access__map__diversion__imgWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 54px;
}
.p-access__map__diversion__img {
  margin-right: auto;
  width: 592px;
  height: 379px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-access__map__diversion__iframe {
  width: 379px;
  margin-left: auto;
}
.p-access__map__diversion__iframe iframe {
  width: 100%;
  height: 379px;
}
.p-access__map__diversion__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-access__map__diversion__access__left {
  margin-right: auto;
}
.p-access__map__diversion__access__left__logo {
  width: 296px;
  margin-bottom: 25px;
}
.p-access__map__diversion__access__left__lead {
  font-size: 1.3rem;
  color: #003E57;
}
.p-access__map__diversion__access__left__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3px;
}
.p-access__map__diversion__access__left__tel img {
  width: 15.87px;
}
.p-access__map__diversion__access__left__tel span {
  display: inline-block;
  margin-left: 15px;
  font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-size: 4.858rem;
  line-height: 1;
  color: #003E57;
}
.p-access__map__diversion__access__right {
  width: 648px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
.p-access__map__diversion__access__right__route {
  margin-bottom: 18px;
}
.p-access__map__diversion__access__right__route:last-child {
  margin-bottom: 0;
}
.p-access__map__diversion__access__right__route__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-access__map__diversion__access__right__route__ico.u-car {
  width: 16px;
}
.p-access__map__diversion__access__right__route__ico.u-bus {
  width: 14px;
}
.p-access__map__diversion__access__right__route__ico.u-train {
  width: 14px;
}
.p-access__map__diversion__access__right__route__ico span {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E57;
}
.p-access__map__diversion__access__right__route__txt {
  font-size: 1.6rem;
}
.p-access__map__parking {
  width: 100%;
  padding: 40px 50px;
  border: solid 1px #003E57;
  border-radius: 10px;
  margin-bottom: 132px;
}
.p-access__map__parking__lead {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  text-align: center;
  font-size: 2.5rem;
  color: #003E57;
  margin: 0 0 35px 0;
}
.p-access__map__parking__subLead {
  margin: 0 0 20px 0;
  font-size: 2rem;
  font-weight: 700;
  color: #003E57;
}
.p-access__map__parking__imgWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 36px;
}
.p-access__map__parking__imgWrapper:last-of-type {
  margin-bottom: 0;
}
.p-access__map__parking__imgBox {
  width: calc((100% - 40px) / 2);
  margin-right: 40px;
}
.p-access__map__parking__imgBox:nth-child(2n) {
  margin-right: 0;
}
.p-access__map__parking__imgBox__img {
  margin-bottom: 5px;
}
.p-access__map__bottomNav {
  border-top: 1px solid #A1AAB2;
}
@media screen and (max-width: 750px) {
  .p-access__map {
    padding: 10.6666666667vw 0 10.1333333333vw;
  }
  .p-access__map__lead {
    margin-bottom: 10.1333333333vw;
  }
  .p-access__map__diversion {
    margin-bottom: 9.3333333333vw;
  }
  .p-access__map__diversion__imgWrapper {
    display: block;
    margin-bottom: 4.2666666667vw;
  }
  .p-access__map__diversion__img {
    width: 100%;
    height: auto;
    margin-bottom: 4vw;
  }
  .p-access__map__diversion__iframe {
    width: 100%;
  }
  .p-access__map__diversion__iframe iframe {
    width: 100%;
    height: 38.4vw;
  }
  .p-access__map__diversion__access {
    display: block;
  }
  .p-access__map__diversion__access__left {
    width: 100%;
  }
  .p-access__map__diversion__access__left__logo {
    width: 41.6vw;
    margin-right: auto;
    margin-bottom: 8vw;
  }
  .p-access__map__diversion__access__left__tel {
    display: none;
  }
  .p-access__map__diversion__access__telLinkWrapper {
    width: 100%;
    margin-bottom: 6.4vw;
  }
  .p-access__map__diversion__access__telLink {
    width: 100%;
    margin-bottom: 3.4666666667vw;
  }
  .p-access__map__diversion__access__telLink a {
    display: block;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
            box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
    border-radius: 10px;
    padding: 2.9333333333vw 0 2.4vw;
    text-align: center;
  }
  .p-access__map__diversion__access__telLink__top {
    font-size: 3.4666666667vw;
    margin-bottom: 1.6vw;
  }
  .p-access__map__diversion__access__telLink__bottom {
    display: inline-block;
    font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
    color: #003E57;
    font-size: 10.2666666667vw;
    position: relative;
    line-height: 1;
    position: relative;
    padding-left: 6.4266666667vw;
  }
  .p-access__map__diversion__access__telLink__bottom::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-access__map__diversion__access__telLink__bottom::before {
    width: 3.76vw;
    height: 6.2933333333vw;
    background-image: url(../img/common/ico/ico_smartPhone_navy.svg);
    top: 55%;
  }
  .p-access__map__diversion__access__spAdress {
    font-size: 4vw;
    margin: 0;
  }
  .p-access__map__diversion__access__right {
    width: 100%;
  }
  .p-access__map__diversion__access__right__route {
    margin-bottom: 7.7333333333vw;
  }
  .p-access__map__diversion__access__right__route__ico {
    margin-bottom: 1.8666666667vw;
  }
  .p-access__map__diversion__access__right__route__ico.u-car {
    width: 4.6666666667vw;
  }
  .p-access__map__diversion__access__right__route__ico.u-bus {
    width: 4.6933333333vw;
  }
  .p-access__map__diversion__access__right__route__ico.u-train {
    width: 4.7733333333vw;
  }
  .p-access__map__diversion__access__right__route__ico span {
    margin-left: 2.6666666667vw;
    font-size: 4vw;
  }
  .p-access__map__diversion__access__right__route__txt {
    font-size: 4vw;
  }
  .p-access__map__parking {
    padding: 9.6vw 4vw 12.2666666667vw;
    margin-bottom: 20.6666666667vw;
  }
  .p-access__map__parking__lead {
    font-size: 5.2vw;
    margin-bottom: 7.0666666667vw;
  }
  .p-access__map__parking__subLead {
    margin: 0 0 3.2vw 0;
    font-size: 4.5333333333vw;
  }
  .p-access__map__parking__imgWrapper {
    display: block;
    margin-bottom: 7.7333333333vw;
  }
  .p-access__map__parking__imgWrapper:last-of-type {
    margin-bottom: 0;
  }
  .p-access__map__parking__imgBox {
    width: 100%;
    margin-bottom: 6.8vw;
  }
  .p-access__map__parking__imgBox__img {
    margin-bottom: 1.8666666667vw;
  }
  .p-access__map__parking__imgBox:last-child {
    margin-bottom: 0;
  }
  .p-access__map__parking__imgBox__txt {
    font-size: 4vw;
  }
}

.p-grooming__attention {
  padding: 86px 0 130px;
}
.p-grooming__attention__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-grooming__attention__txt {
  width: 481px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: auto;
}
.p-grooming__attention__img {
  width: 476px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .p-grooming__attention {
    padding: 11.0666666667vw 0 20vw;
  }
  .p-grooming__attention__content {
    display: block;
  }
  .p-grooming__attention__txt {
    width: 100%;
    font-size: 4vw;
    margin-bottom: 11.7333333333vw;
  }
  .p-grooming__attention__img {
    width: 100%;
  }
}
.p-grooming__things__left {
  width: 388px;
}
.p-grooming__things__left__addTxt {
  margin: 20px 0 0;
}
.p-grooming__things__right {
  margin-left: 69px;
}
.p-grooming__things__right p.u-fz14 {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .p-grooming__things__left {
    width: auto;
    margin-right: 7%;
  }
  .p-grooming__things__left__addTxt {
    margin: 9.8666666667vw 0 0;
  }
  .p-grooming__things__right {
    margin-left: 0;
  }
  .p-grooming__things__right p.u-fz14 {
    font-size: 3.4666666667vw;
  }
}
.p-grooming__appointment {
  padding: 100px 0 99px;
}
.p-grooming__appointment__content {
  width: 100%;
  margin: 0 auto;
  padding: 29px 32px 32px;
  border-radius: 10px;
  border: solid 1px #003E57;
}
.p-grooming__appointment__content__leadTxt {
  margin-bottom: 20px;
}
.p-grooming__appointment__content__leadTxt:last-child {
  margin-bottom: 0;
}
.p-grooming__appointment__content__lead {
  font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  margin: 0 0 14px;
  font-size: 2rem;
}
.p-grooming__appointment__content__txt {
  line-height: 1.75;
  margin-bottom: 10px;
}
.p-grooming__appointment__content__txt:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .p-grooming__appointment {
    padding: 20vw 0;
  }
  .p-grooming__appointment__content {
    width: 100%;
    padding: 6.8vw 4vw 7.6vw;
  }
  .p-grooming__appointment__content__leadTxt {
    margin-bottom: 4.2666666667vw;
  }
  .p-grooming__appointment__content__lead {
    margin: 0 0 2.4vw;
    font-size: 5.2vw;
  }
  .p-grooming__appointment__content__txt {
    line-height: 1.86;
    margin-bottom: 3.4666666667vw;
  }
}
.p-grooming__introduction {
  padding: 106px 0 91px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(40.8%, #fff), color-stop(40.8%, #EFF2F5), to(#EFF2F5));
  background: linear-gradient(90deg, #fff 0%, #fff 40.8%, #EFF2F5 40.8%, #EFF2F5 100%);
}
.p-grooming__introduction__slide {
  max-width: 93.4%;
  margin-left: auto;
  overflow: hidden;
  position: relative;
}
.p-grooming__introduction__slide__pagination {
  margin-top: 12px;
}
@media screen and (max-width: 750px) {
  .p-grooming__introduction {
    padding: 14.6666666667vw 0 14.6666666667vw;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(43.8%, #fff), color-stop(43.8%, #EFF2F5), to(#EFF2F5));
    background: linear-gradient(90deg, #fff 0%, #fff 43.8%, #EFF2F5 43.8%, #EFF2F5 100%);
  }
  .p-grooming__introduction__slide {
    max-width: 100%;
    margin-left: 7%;
  }
  .p-grooming__introduction__slide__pagination {
    margin-top: 4vw;
  }
}
.p-grooming__flow {
  padding: 119px 0 146px;
}
.p-grooming__flow__main__iconLead {
  margin-bottom: 20px;
}
.p-grooming__flow__main__iconLead:last-of-type {
  margin-bottom: 0;
}
.p-grooming__flow__main__iconLead.u-mb0 {
  margin-bottom: 0;
}
.p-grooming__flow__main__contactWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}
.p-grooming__flow__main__line {
  width: 344px;
  margin-right: 30px;
}
.p-grooming__flow__main__line a {
  display: block;
  padding: 29px 0;
  text-align: center;
  border-radius: 10px;
  background-color: #00B900;
}
@media screen and (min-width: 751px) {
  .p-grooming__flow__main__line a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-grooming__flow__main__line__iconTxt {
  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;
}
.p-grooming__flow__main__line__iconTxt p {
  margin: 0 0 0 15px;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}
.p-grooming__flow__main__line__iconTxt img {
  width: 68.5px;
}
.p-grooming__flow__main__tel {
  width: 344px;
}
.p-grooming__flow__main__tel a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.p-grooming__flow__main__tel a:hover {
  background: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .p-grooming__flow__main__tel a:hover {
    background: #fff;
  }
}
.p-grooming__flow__main__tel a {
  padding: 16.62px 0 14px;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-grooming__flow__main__tel a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-grooming__flow__main__tel__lead {
  font-size: 1.6rem;
  color: #003E57;
  margin-bottom: 3px;
}
.p-grooming__flow__main__tel__num {
  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;
}
.p-grooming__flow__main__tel__num img {
  width: 11.8px;
}
.p-grooming__flow__main__tel__num span {
  padding-left: 7px;
  font-size: 3.6rem;
  font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  line-height: 1;
}
.p-grooming__flow__main__tel__time {
  color: #96A1A7;
  font-size: 1.6rem;
}
@media screen and (min-width: 751px) {
  .p-grooming__flow__main__tel a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 750px) {
  .p-grooming__flow {
    padding: 18.8vw 0 20.0533333333vw;
  }
  .p-grooming__flow__main__iconLead {
    margin-bottom: 6.1333333333vw;
  }
  .p-grooming__flow__main__contactWrapper {
    display: block;
    margin-top: 3.7333333333vw;
  }
  .p-grooming__flow__main__line {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5.4666666667vw;
  }
  .p-grooming__flow__main__line a {
    padding: 5.4666666667vw 0 5.432vw;
    text-align: center;
  }
  .p-grooming__flow__main__line__iconTxt img {
    width: 12.208vw;
  }
  .p-grooming__flow__main__line__iconTxt p {
    margin: 0 0 0 2.6666666667vw;
    font-size: 4vw;
  }
  .p-grooming__flow__main__tel {
    width: 100%;
  }
  .p-grooming__flow__main__tel a {
    padding: 4.9333333333vw 0 4.5333333333vw;
  }
  .p-grooming__flow__main__tel__lead {
    font-size: 1.5rem;
    margin-bottom: 1.0666666667vw;
  }
  .p-grooming__flow__main__tel__num img {
    width: 3.7786666667vw;
  }
  .p-grooming__flow__main__tel__num span {
    padding-left: 2.6666666667vw;
    font-size: 3.8rem;
  }
  .p-grooming__flow__main__tel__time {
    font-size: 1.3rem;
  }
  .p-grooming__flow__bottomNav__btn {
    text-align: center;
  }
}

.p-contact__topWrapper {
  padding: 86px 0 68px;
}
.p-contact__topWrapper__flexBox {
  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;
}
.p-contact__topWrapper__txt {
  margin: 0;
  font-size: 1.6rem;
}
.p-contact__topWrapper__txt .u-red {
  color: #c81f1f;
}
.p-contact__topWrapper__tel {
  width: 393px;
}
.p-contact__topWrapper__tel a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
          box-shadow: 0px 0px 30px rgba(17, 62, 87, 0.15);
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.p-contact__topWrapper__tel a:hover {
  background: #C6DAE6;
}
@media screen and (max-width: 750px) {
  .p-contact__topWrapper__tel a:hover {
    background: #fff;
  }
}
.p-contact__topWrapper__tel a {
  padding: 16.62px 0 14px;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-contact__topWrapper__tel a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-contact__topWrapper__tel__lead {
  font-size: 1.6rem;
  color: #003E57;
  margin-bottom: 3px;
}
.p-contact__topWrapper__tel__num {
  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;
}
.p-contact__topWrapper__tel__num img {
  width: 11.8px;
}
.p-contact__topWrapper__tel__num span {
  padding-left: 7px;
  font-size: 3.6rem;
  font-family: "EB Garamond", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  color: #003E57;
  line-height: 1;
}
.p-contact__topWrapper__tel__time {
  color: #96A1A7;
  font-size: 1.6rem;
}
@media screen and (min-width: 751px) {
  .p-contact__topWrapper__tel a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 750px) {
  .p-contact__topWrapper {
    padding: 11.8666666667vw 0 12vw;
  }
  .p-contact__topWrapper__flexBox {
    display: block;
  }
  .p-contact__topWrapper__txt {
    font-size: 4vw;
    margin: 0 0 5.6vw 0;
  }
  .p-contact__topWrapper__tel {
    width: 100%;
  }
  .p-contact__topWrapper__tel a {
    padding: 4.9333333333vw 0 4.5333333333vw;
  }
  .p-contact__topWrapper__tel__lead {
    font-size: 1.5rem;
    margin-bottom: 1.0666666667vw;
  }
  .p-contact__topWrapper__tel__num img {
    width: 3.7786666667vw;
  }
  .p-contact__topWrapper__tel__num span {
    padding-left: 2.6666666667vw;
    font-size: 3.8rem;
  }
  .p-contact__topWrapper__tel__time {
    font-size: 1.3rem;
  }
}
.p-contact__form {
  padding: 0 0 84px 0;
}
@media screen and (max-width: 750px) {
  .p-contact__form {
    padding: 0 0 20.1866666667vw 0;
  }
}

.p-referralFormPage__topWrapper {
  padding: 86px 0 63px;
}
.p-referralFormPage__topWrapper__txt {
  margin: 0;
  font-size: 1.6rem;
}
.p-referralFormPage__topWrapper__txt a {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #003E57;
}
@media screen and (min-width: 751px) {
  .p-referralFormPage__topWrapper__txt a:hover {
    cursor: url(../img/common/ico/ico_cursor.svg), auto;
  }
}
.p-referralFormPage__topWrapper__txt a:hover {
  text-decoration: none;
}
.p-referralFormPage__topWrapper__txt .u-red {
  color: #c81f1f;
}
.p-referralFormPage__topWrapper__txt .u-bold {
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .p-referralFormPage__topWrapper__txt a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 750px) {
  .p-referralFormPage__topWrapper {
    padding: 11.8666666667vw 0 11.0666666667vw;
  }
  .p-referralFormPage__topWrapper__txt {
    font-size: 4vw;
  }
}
.p-referralFormPage__form {
  padding: 0 0 84px 0;
}
@media screen and (max-width: 750px) {
  .p-referralFormPage__form {
    padding: 0 0 20.1866666667vw 0;
  }
}