@charset "UTF-8";
/* 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, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

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

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

picture {
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

/*--------------- form reset ------------*/
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  display: block;
  padding: 0;
  outline: none;
  margin: 0;
  border: none;
  background-color: transparent;
}
button:hover {
  opacity: 0.7;
  background-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
}

input[type=checkbox], input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type=checkbox] + span {
  position: relative;
  padding-left: 15px;
}
label input[type=radio] + span {
  position: relative;
  padding-left: 25px;
}
label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=checkbox] + span::before {
  border-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #fff;
}
label input[type=checkbox]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
label input[type=checkbox] + span::before, label input[type=checkbox] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label input[type=checkbox] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 0.1rem #313131 solid;
}
label input[type=checkbox] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=radio] + span::before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #686868;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: transparent;
  width: 14px;
  height: 14px;
}
label input[type=radio]:checked + span::before {
  border-color: #007acc;
}
label input[type=radio]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #007acc;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
}

/*-------- text email tel ---------*/
input[type=text], input[type=email], input[type=tel], input[type=search], input[type=date] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

input[type=button], input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

button[type=submit], input[type=reset], button[type=button] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*-------- select ------------*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

input[type=text], input[type=email], input[type=tel], input[type=date] {
  max-width: 100%;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  overflow: auto;
}

input[type=button] {
  color: #fff;
  border-style: none;
}
input[type=submit] {
  color: #fff;
  border-style: none;
}
input[type=submit]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
::-webkit-input-placeholder {
  color: #B7B7B7;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: #B7B7B7;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 0.73206vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.30208vw;
  }
}

body {
  line-height: 1.5;
  color: #000000;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  scroll-behavior: smooth;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-break: strict;
}

dl, ul, ol {
  margin: 0;
  padding: 0;
}

img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

label {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  html {
    min-height: 100vh;
  }
  body {
    line-height: 1.5714285714;
    min-width: 1%;
    position: relative;
    max-width: 100%;
    font-size: 1rem;
  }
}
/* link
--------------------------------------------------*/
a {
  color: inherit;
  /*&:hover,
  &:focus {
  	text-decoration: underline;
  }*/
}
a:link, a:active, a:visited {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
  .js-imgHover a:hover,
  .js-imgHover a:hover img {
    opacity: 1;
  }
  a,
  a * {
    outline: 1px solid transparent;
    outline: none;
  }
}
.m-ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.m-ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.m-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.m-link-close {
  pointer-events: none;
}

.m-blk {
  color: #000000;
}

.m-white {
  color: #ffffff;
}

.m-bold {
  font-weight: bold;
}

.m-relative {
  position: relative;
}

.m-en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.m-text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .m-text {
    font-size: 4.1025641026vw;
  }
}

@media print, screen and (min-width: 768px) {
  a.m-tellink[href^="tel:"] {
    pointer-events: none;
  }
}
/*------------ animation -------------*/
.c-fadeup {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
.c-fadeup.js-animeOn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
}

.c-fadeleft {
  opacity: 0;
  -webkit-transform: translateX(-3rem);
          transform: translateX(-3rem);
}
.c-fadeleft.js-animeOn {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
}

.c-faderight {
  opacity: 0;
  -webkit-transform: translateX(3rem);
          transform: translateX(3rem);
}
.c-faderight.js-animeOn {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
}

.js-animeOn.-delay1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.js-animeOn.-delay2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.js-animeOn.-delay3 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.typ {
  display: inline-block;
  font-size: 3rem;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .typ {
    font-size: 5.1282051282vw;
    border-right-width: 0.7692307692vw;
  }
}
.typ span {
  opacity: 0;
  width: 0;
  display: none;
}
.typ .js-animeOn {
  display: inline-block;
  -webkit-animation: typ-anime 0s linear forwards;
          animation: typ-anime 0s linear forwards;
}
.typ:last-of-type .js-animeOn {
  display: inline-block;
  -webkit-animation: typ-anime 0s linear 1s forwards;
          animation: typ-anime 0s linear 1s forwards;
}

@-webkit-keyframes typ-anime {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: auto;
  }
}

@keyframes typ-anime {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: auto;
  }
}
.c-secttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.c-secttl__inn {
  text-align: center;
  position: relative;
  padding-left: 4.5rem;
  height: 8.7rem;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-secttl__inn {
    padding-left: 7.6923076923vw;
    height: 12.5641025641vw;
    padding-top: 1.2820512821vw;
  }
}
.c-secttl__inn::before {
  content: "";
  width: 1.2rem;
  height: 100%;
  background-color: #38A882;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-secttl__inn::before {
    width: 1.7948717949vw;
  }
}
.c-secttl__jp {
  line-height: 1.2;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-secttl__jp {
    font-size: 4.6153846154vw;
  }
}
.c-secttl__jp .char {
  display: inline-block;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  overflow: hidden;
  position: relative;
  color: rgba(56, 168, 130, 0.2);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  font-weight: 500;
}
.c-secttl__jp .char::after {
  display: block;
  position: absolute;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition-delay: inherit;
          transition-delay: inherit;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  will-change: transform;
  content: attr(data-char);
  top: 0;
  left: 0;
  color: #38A882;
  font-weight: bold;
}
.c-secttl .c-secttl__en {
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: #38A882;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: 0.8s opacity, 0.8s -webkit-transform;
  transition: 0.8s opacity, 0.8s -webkit-transform;
  transition: 0.8s opacity, 0.8s transform;
  transition: 0.8s opacity, 0.8s transform, 0.8s -webkit-transform;
}
@media screen and (max-width: 767px) {
  .c-secttl .c-secttl__en {
    font-size: 3.3333333333vw;
    line-height: 1;
    margin-top: -0.5128205128vw;
  }
}
.c-secttl.js-animeOn .c-secttl__jp .char {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-secttl.js-animeOn .c-secttl__jp .char.is-show::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-secttl.js-animeOn .c-secttl__en {
  -webkit-animation: secttl-en 0.3s ease 0.8s forwards;
          animation: secttl-en 0.3s ease 0.8s forwards;
}
@-webkit-keyframes secttl-en {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes secttl-en {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-secttl.-ttl2 {
  border-bottom: 0.1rem solid #707070;
  padding-bottom: 0.3em;
}
.c-secttl.-ttl2 .c-secttl__jp {
  color: #000000;
  font-size: 3rem;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  .c-secttl.-ttl2 .c-secttl__jp {
    font-size: 5.1282051282vw;
  }
}
.c-secttl.-ttl2 .c-secttl__jp .char {
  color: rgba(0, 0, 0, 0.2);
}
.c-secttl.-ttl2 .c-secttl__jp .char::after {
  color: #000000;
}

.c-btn {
  width: 38rem;
  height: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    height: 17.4358974359vw;
  }
}
.c-btn:hover {
  opacity: 1;
}
.c-btn-inn, .c-btn-inn[type=submit], .c-btn-inn[type=button] {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100vh;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  background-color: #35B595;
  position: relative;
  -webkit-box-shadow: 0.5rem 0.5rem 0 #828282;
          box-shadow: 0.5rem 0.5rem 0 #828282;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn-inn, .c-btn-inn[type=submit], .c-btn-inn[type=button] {
    font-size: 5.1282051282vw;
    -webkit-box-shadow: 1.2820512821vw 1.2820512821vw 0 #828282;
            box-shadow: 1.2820512821vw 1.2820512821vw 0 #828282;
  }
}
.c-btn-inn::after, .c-btn-inn[type=submit]::after, .c-btn-inn[type=button]::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../images/common/arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn-inn::after, .c-btn-inn[type=submit]::after, .c-btn-inn[type=button]::after {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    right: 7.6923076923vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-btn-inn:hover, .c-btn-inn[type=submit]:hover, .c-btn-inn[type=button]:hover {
    opacity: 1;
    -webkit-transform: translateX(0.5rem) translateY(0.5rem);
            transform: translateX(0.5rem) translateY(0.5rem);
    -webkit-box-shadow: 0 0 0 #828282;
            box-shadow: 0 0 0 #828282;
  }
}
@media print, screen and (min-width: 768px) {
  .c-btn:hover .arrow::after {
    -webkit-transform: translateX(0.5rem) translateY(0.5rem);
            transform: translateX(0.5rem) translateY(0.5rem);
  }
}
.c-btn .c-btn-inn[type=submit]::after,
.c-btn .c-btn-inn[type=button]::after {
  content: none;
}
.c-btn .arrow {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn .arrow {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    right: 7.6923076923vw;
  }
}
.c-btn .arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
.c-btn.-back .arrow {
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
  left: 3rem;
  right: auto;
}
@media screen and (max-width: 767px) {
  .c-btn.-back .arrow {
    right: auto;
    left: 7.6923076923vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-btn.-back:hover .arrow::after {
    -webkit-transform: translateX(-0.5rem) translateY(0.5rem);
            transform: translateX(-0.5rem) translateY(0.5rem);
  }
}
.c-btn.-no-arr .c-btn-inn::after {
  content: none;
}
.c-btn:disabled {
  pointer-events: none;
}
.c-btn:disabled .c-btn-inn,
.c-btn:disabled .c-btn-inn[type=submit],
.c-btn:disabled .c-btn-inn[type=button] {
  background-color: #999999;
}

.c-pagettl {
  height: 44.5rem;
  width: 100%;
  background-image: url(../images/common/bg.jpg);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pagettl {
    height: auto;
    padding-top: 5rem;
    padding-bottom: 11rem;
  }
}
.c-pagettl .img1 {
  width: 40.0520833333vw;
  position: absolute;
  bottom: 0;
  right: 6.09375vw;
}
@media screen and (max-width: 767px) {
  .c-pagettl .img1 {
    right: 0;
    width: 50vw;
  }
}
.c-pagettl .img2 {
  width: 23.0208333333vw;
  position: absolute;
  bottom: -5.2rem;
  left: 28.28125vw;
}
@media screen and (max-width: 767px) {
  .c-pagettl .img2 {
    left: 5vw;
    bottom: -3vw;
    width: 40vw;
  }
}
.c-pagettl .l-content-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pagettl .l-content-inner {
    display: block;
  }
}
.c-pagettl .inner {
  width: 100%;
  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: 767px) {
  .c-pagettl .inner {
    display: block;
  }
}
.c-pagettl__title .title-jp {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-pagettl__title .title-jp {
    font-size: 4.5rem;
  }
}
.c-pagettl__title .title-en {
  font-size: 2.2rem;
  font-weight: bold;
  color: #38A882;
}
@media screen and (max-width: 767px) {
  .c-pagettl__title .title-en {
    font-size: 3rem;
  }
}
.c-pagettl__text {
  width: 43rem;
}
@media screen and (max-width: 767px) {
  .c-pagettl__text {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.c-pagettl__text .text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .c-pagettl__text .text {
    font-size: 2.4rem;
  }
}

.c-pankz {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .c-pankz {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.c-pankz__list li {
  display: inline;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-pankz__list li {
    font-size: 2.4rem;
  }
}
.c-pankz__list li + li::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  display: inline-block;
  background-image: url(../images/common/arrow_pankz.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 0.3em;
  position: relative;
  top: -0.1em;
}

/* --------------------------------------------------
  header
-------------------------------------------------- */
.l-header {
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  position: absolute;
  height: 10rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0.8rem 1.5rem rgba(53, 181, 149, 0.5);
          box-shadow: 0 0.8rem 1.5rem rgba(53, 181, 149, 0.5);
  border-bottom: 0.2rem solid #35B595;
}
@media screen and (max-width: 767px) {
  .l-header {
    min-width: auto;
    height: 14.8717948718vw;
    position: fixed;
    width: 100%;
    top: 0;
  }
}
.l-header__inner {
  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;
  height: 100%;
}
.l-header__logo {
  width: 38.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 64.1025641026vw;
  }
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    display: block;
    padding: 0 5.1282051282vw;
  }
}
.l-header__menu .item {
  font-size: 1.9rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__menu .item {
    font-size: 4.6153846154vw;
    font-weight: bold;
    letter-spacing: 0.03em;
  }
}
.l-header__menu .item-inn {
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header__menu .item-inn {
    position: relative;
    padding-left: 9.2307692308vw;
  }
  .l-header__menu .item-inn::before {
    content: "";
    width: 2.5641025641vw;
    height: 0.2564102564vw;
    background-color: #000000;
    display: block;
    position: absolute;
    left: 4.6153846154vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media print, screen and (min-width: 768px) {
  .l-header__menu .item .child {
    position: absolute;
    left: 0;
    -webkit-transform: translateY(3.5rem);
            transform: translateY(3.5rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
    width: 60rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0 0 2rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .l-header__menu .item .child::before {
    content: "";
    width: 2.2rem;
    height: 1.7rem;
    display: block;
    background-image: url(../images/common/tri_header-child.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-position: bottom center;
    position: absolute;
    left: 4.4rem;
    top: 0;
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
  .l-header__menu .item .child-item {
    width: 19.5rem;
  }
  .l-header__menu .item .child-item-inn {
    width: 100%;
    display: block;
    background-color: #35B595;
    padding: 1rem 1rem 1rem 2rem;
    font-size: 1.9rem;
    font-weight: bold;
    color: #ffffff;
    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__menu .item .child-item-inn::after {
    content: "";
    width: 2.2rem;
    height: 2.2rem;
    background-image: url(../images/common/icn_header-child.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .l-header__menu .item .child-item:last-of-type {
    width: calc(100% - 39rem);
  }
  .l-header__menu .item .child-item:last-of-type .child-item-inn {
    padding-right: 2rem;
  }
  .l-header__menu .item .child-item:last-of-type .service {
    padding-right: 2rem;
  }
  .l-header__menu .item .service {
    padding: 0 1rem 0 2rem;
  }
  .l-header__menu .item .service-item {
    font-size: 1.8rem;
    border-bottom: 0.1rem solid #707070;
  }
  .l-header__menu .item .service-item-inn {
    display: block;
    padding: 1rem 0;
    padding-left: 4rem;
    position: relative;
  }
  .l-header__menu .item .service-item-inn::before {
    content: "";
    width: 3.4rem;
    height: 2.9rem;
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__menu .item .service-item.-service01 .service-item-inn::before {
    background-image: url(../images/common/icn_service01.svg);
  }
  .l-header__menu .item .service-item.-service02 .service-item-inn::before {
    background-image: url(../images/common/icn_service02.svg);
  }
  .l-header__menu .item .service-item.-service03 .service-item-inn::before {
    background-image: url(../images/common/icn_service03.svg);
  }
  .l-header__menu .item .service-item.-service04 .service-item-inn::before {
    background-image: url(../images/common/icn_service04.svg);
  }
  .l-header__menu .item .service-item.-service05 .service-item-inn::before {
    background-image: url(../images/common/icn_service05.svg);
  }
  .l-header__menu .item .service-item.-service06 .service-item-inn::before {
    background-image: url(../images/common/icn_service06.svg);
  }
  .l-header__menu .item .service-item.-service07 .service-item-inn::before {
    background-image: url(../images/common/icn_service07.svg);
  }
  .l-header__menu .item .service-item.-service08 .service-item-inn::before {
    background-image: url(../images/common/icn_service08.svg);
  }
  .l-header__menu .item .service-item.-service09 .service-item-inn::before {
    background-image: url(../images/common/icn_service09.svg);
  }
  .l-header__menu .item.-havchild {
    padding-bottom: 3.5rem;
    margin-bottom: -3.5rem;
  }
  .l-header__menu .item.-havchild .item-inn {
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .l-header__menu .item.-havchild:hover .item-inn {
    opacity: 0.7;
  }
  .l-header__menu .item.-havchild:hover .child {
    opacity: 1;
    visibility: visible;
  }
  .l-header__menu .item .char {
    display: inline-block;
    position: relative;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.8s;
            transition-duration: 0.8s;
    font-weight: 500;
  }
  .l-header__menu .item .char::after {
    display: block;
    position: absolute;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition-delay: inherit;
            transition-delay: inherit;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.8s;
            transition-duration: 0.8s;
    will-change: transform;
    content: attr(data-char);
    top: 0;
    left: 0;
  }
  .l-header__menu .item .item-inn {
    position: relative;
    overflow: hidden;
  }
  .l-header__menu .item:hover .item-inn {
    opacity: 1;
  }
  .l-header__menu .item .char.is-show {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .l-header__menu .item .char.is-show::after {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu .item {
    margin-top: 2.5641025641vw;
  }
  .l-header__menu .item:first-of-type {
    margin-top: 0;
  }
  .l-header__menu .item.-havchild {
    margin-bottom: 8.9743589744vw;
  }
  .l-header__menu .item .child-item {
    padding-top: 3.8461538462vw;
    padding-bottom: 3.8461538462vw;
    border-bottom: 1px solid #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 9.2307692308vw;
  }
  .l-header__menu .item .child-item-inn {
    position: relative;
    padding-left: 4.6153846154vw;
    width: 23.0769230769vw;
  }
  .l-header__menu .item .child-item-inn::before {
    content: "";
    width: 2.5641025641vw;
    height: 0.2564102564vw;
    background-color: #000000;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__menu .item .service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% - 23.0769230769vw);
    gap: 2.5641025641vw 7.6923076923vw;
  }
  .l-header__menu .item .service-item-inn {
    font-weight: 500;
    letter-spacing: 0.11em;
    position: relative;
    padding-left: 4.6153846154vw;
  }
  .l-header__menu .item .service-item-inn::before {
    content: "";
    width: 2.5641025641vw;
    height: 0.2564102564vw;
    background-color: #000000;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .l-header__btm {
    padding: 11.5384615385vw 5.1282051282vw 0;
  }
  .l-header__bnr a {
    display: block;
  }
  .l-header__tel {
    margin-top: 8.9743589744vw;
    text-align: center;
    font-weight: bold;
  }
  .l-header__tel .tel-text {
    font-size: 4.6153846154vw;
    letter-spacing: 0.05em;
  }
  .l-header__tel .tel-no {
    font-size: 8.2051282051vw;
    letter-spacing: 0.04em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-header__tel .tel-no a {
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.2em;
  }
  .l-header__tel .tel-no a::before {
    content: "";
    width: 5.1282051282vw;
    height: 6.9230769231vw;
    background-image: url(../images/common/icn_contact-tel-b.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
    top: 0.1em;
  }
  .l-header__tel .tel-info {
    font-size: 3.8461538462vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 1.2820512821vw;
  }
  .l-header__contact {
    margin-top: 9.7435897436vw;
    width: 100%;
    height: 17.9487179487vw;
  }
  .l-header__contact-inn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #38A882;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 4.6153846154vw;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .l-header .drbtn {
    position: absolute;
    z-index: 11;
    height: 3.5897435897vw;
    width: 6.6666666667vw;
    right: 4.1025641026vw;
    top: 5.8974358974vw;
    cursor: pointer;
  }
  .l-header .drbtn .hambarg {
    display: block;
    position: absolute;
    height: 0.2564102564vw;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    background-color: #000000;
    border-radius: 100vh;
  }
  .l-header .drbtn .hambarg:nth-child(1) {
    top: 0;
  }
  .l-header .drbtn .hambarg:nth-child(2) {
    top: 1.7948717949vw;
  }
  .l-header .drbtn .hambarg:nth-child(3) {
    top: 3.5897435897vw;
  }
  .l-header .drbtn.is-action {
    position: fixed;
    border: none;
  }
  .l-header .drbtn.is-action .hambarg {
    left: 50%;
  }
  .l-header .drbtn.is-action .hambarg:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    top: 1.7948717949vw;
  }
  .l-header .drbtn.is-action .hambarg:nth-child(2) {
    left: 0;
    opacity: 0;
  }
  .l-header .drbtn.is-action .hambarg:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
    top: 1.7948717949vw;
  }
  .l-header .drawer {
    max-height: 100vh;
    width: 100%;
    -webkit-transition: 0;
    transition: 0;
    position: absolute;
    top: 14.8717948718vw;
    left: 0;
    z-index: 2;
    padding: 0 0 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    background-color: #ffffff;
    -webkit-box-shadow: 0 3.8461538462vw 2.5641025641vw -2.5641025641vw rgba(53, 181, 149, 0.5) inset;
            box-shadow: 0 3.8461538462vw 2.5641025641vw -2.5641025641vw rgba(53, 181, 149, 0.5) inset;
  }
  .l-header .drawer.is-action {
    max-width: 100%;
    position: fixed;
    opacity: 1;
    visibility: visible;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .l-header .drawer .l-header__nav {
    max-height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
    width: 100%;
    padding-top: 12.8205128205vw;
    padding-bottom: 30vw;
  }
  .l-header .drawer .l-header__nav::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
}
.l-header.js-clone {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: 0.3s opacity, 0.5s -webkit-transform;
  transition: 0.3s opacity, 0.5s -webkit-transform;
  transition: 0.3s opacity, 0.5s transform;
  transition: 0.3s opacity, 0.5s transform, 0.5s -webkit-transform;
}
.l-header.js-clone.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .l-header.js-clone {
    display: none;
  }
}

.c-contact {
  background-color: #B3DBC8;
  padding-top: 3.5rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .c-contact {
    padding-top: 12.8205128205vw;
    padding-bottom: 12.8205128205vw;
  }
}
.c-contact .title-jp {
  text-align: center;
  font-weight: bold;
  font-size: 4.1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-contact .title-jp {
    font-size: 6.1538461538vw;
    padding: 0 2.5641025641vw;
  }
}
.c-contact .title-jp span {
  border-bottom: 0.2rem solid #000000;
  padding: 0 0.3em 1rem;
}
@media screen and (max-width: 767px) {
  .c-contact .title-jp span {
    width: 100%;
    display: inline-block;
    border-width: 0.5128205128vw;
    padding: 0 0 2.0512820513vw;
  }
}
.c-contact .title-en {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-contact .title-en {
    font-size: 4.6153846154vw;
    letter-spacing: 0.1em;
    margin-top: 2.5641025641vw;
  }
}
.c-contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-contact__content {
    display: block;
    margin-top: 7.6923076923vw;
  }
}
.c-contact__content .box {
  width: 56rem;
  height: 22.2rem;
}
@media screen and (max-width: 767px) {
  .c-contact__content .box {
    width: 100%;
    height: 36.4102564103vw;
    margin-top: 7.6923076923vw;
  }
  .c-contact__content .box:first-of-type {
    margin-top: 0;
  }
}
.c-contact__content .box-link {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3rem;
  background-color: #ffffff;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .c-contact__content .box-link {
    padding: 1.5384615385vw;
    border-radius: 7.6923076923vw;
  }
}
.c-contact__content .box-inn {
  width: 100%;
  height: 100%;
  border: 0.3rem solid #38A882;
  border-radius: 2.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s border-color;
  transition: 0.3s border-color;
}
@media screen and (max-width: 767px) {
  .c-contact__content .box-inn {
    border-width: 0.7692307692vw;
    border-radius: 5.8974358974vw;
  }
}
.c-contact__content .box .title {
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}
@media screen and (max-width: 767px) {
  .c-contact__content .box .title {
    font-size: 5.8974358974vw;
  }
}
.c-contact__content .box .title .icn {
  width: 1.6rem;
  height: 1.8rem;
  display: inline-block;
  margin-left: 0.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-contact__content .box .title .icn {
    width: 4.1025641026vw;
    height: 4.6153846154vw;
  }
}
.c-contact__content .box .title .icn::before, .c-contact__content .box .title .icn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/arrow_contact.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.c-contact__content .box .title .icn::after {
  opacity: 0;
  background-image: url(../images/common/arrow_contact-w.svg);
}
.c-contact__content .box .telno {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.8rem;
  font-weight: bold;
  color: #35B595;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-contact__content .box .telno {
    font-size: 8.2051282051vw;
    margin-bottom: 1.0256410256vw;
  }
}
.c-contact__content .box .telno .icn {
  width: 6.1rem;
  height: 8rem;
  display: block;
  position: relative;
  margin-right: 1.6rem;
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-contact__content .box .telno .icn {
    width: 8.9743589744vw;
    height: 11.7948717949vw;
    margin-right: 1.2820512821vw;
  }
}
.c-contact__content .box .telno .icn::before, .c-contact__content .box .telno .icn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/common/icn_contact-tel.svg);
}
.c-contact__content .box .icon-mail {
  width: 8.3rem;
  height: 6.1rem;
  position: relative;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-contact__content .box .icon-mail {
    width: 14.1025641026vw;
    height: 10.2564102564vw;
    margin-bottom: 2.5641025641vw;
  }
}
.c-contact__content .box .icon-mail::before, .c-contact__content .box .icon-mail::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/common/icn_contact-mail.svg);
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.c-contact__content .box .icon-mail::after {
  opacity: 0;
  background-image: url(../images/common/icn_contact-mail-w.svg);
}
.c-contact__content .box-link:hover {
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .c-contact__content .box-link:hover {
    background-color: #38A882;
  }
  .c-contact__content .box-link:hover .box-inn {
    border-color: #ffffff;
  }
  .c-contact__content .box-link:hover .title {
    color: #ffffff;
  }
  .c-contact__content .box-link:hover .title .icn::before {
    opacity: 0;
  }
  .c-contact__content .box-link:hover .title .icn::after {
    opacity: 1;
  }
  .c-contact__content .box-link:hover .icon-mail::before {
    opacity: 0;
  }
  .c-contact__content .box-link:hover .icon-mail::after {
    opacity: 1;
  }
}

.l-footer {
  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 12.8205128205vw 0 21.7948717949vw;
  }
}
.l-footer .footer-container {
  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: 767px) {
  .l-footer .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.1794871795vw;
  }
}
.l-footer .logo {
  width: 39rem;
}
@media screen and (max-width: 767px) {
  .l-footer .logo {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.l-footer .logo img {
  display: block;
  width: 100%;
}
.l-footer .add {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .add {
    font-size: 3.8461538462vw;
    margin-top: 0.7692307692vw;
    letter-spacing: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.l-footer .tel {
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer .tel {
    font-size: 5.1282051282vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.2820512821vw;
  }
}
.l-footer .sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer .sitemap {
    display: block;
  }
}
.l-footer .sitemap .item {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  padding: 0 1.3em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer .sitemap .item {
    font-size: 4.1025641026vw;
    font-weight: bold;
    padding: 0 0 0 4.6153846154vw;
    margin-bottom: 2.5641025641vw;
  }
  .l-footer .sitemap .item:last-of-type {
    margin-bottom: 0;
  }
}
.l-footer .sitemap .item::before {
  content: "";
  width: 0.1rem;
  height: 100%;
  background-color: #848484;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-footer .sitemap .item::before {
    width: 2.5641025641vw;
    height: 0.2564102564vw;
    top: 0.8em;
  }
}
.l-footer .sitemap .item:last-of-type::after {
  content: "";
  width: 0.1rem;
  height: 100%;
  background-color: #848484;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-footer .sitemap .item:last-of-type::after {
    content: none;
  }
}
.l-footer .sitemap .item-inn {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.l-footer .sitemap .item-inn::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: #38A882;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: 0.3s width;
  transition: 0.3s width;
}
@media print, screen and (min-width: 768px) {
  .l-footer .sitemap .item-inn {
    opacity: 1;
  }
  .l-footer .sitemap .item-inn:hover::after {
    width: 100%;
  }
}
.l-footer .sitemap .item.-top {
  color: #38A882;
}
@media screen and (max-width: 767px) {
  .l-footer .sitemap .item.-top {
    display: none;
  }
}
.l-footer .sitemap .item .child {
  padding-top: 0.5rem;
  padding-left: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  .l-footer .sitemap .item .child {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    -webkit-transition: 0.5s opacity;
    transition: 0.5s opacity;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .sitemap .item .child {
    padding: 0 0 0 2.5641025641vw;
  }
}
.l-footer .sitemap .item .child-item {
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .sitemap .item .child-item {
    margin-top: 0.5128205128vw;
  }
}
.l-footer .sitemap .item .child-item:first-of-type {
  margin-top: 0;
}
.l-footer .sitemap .item .child-item-inn::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url(../images/common/arrow_contact.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .l-footer .sitemap .item .child-item-inn::before {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer .sitemap .item.-havchild:hover .item-inn::after {
    width: 100%;
  }
  .l-footer .sitemap .item.-havchild:hover .child {
    opacity: 1;
    visibility: visible;
  }
}
.l-footer .bnr {
  width: 30rem;
  margin: 3.5rem 0 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer .bnr {
    width: 100%;
    margin: 11.5384615385vw 0 0 0;
  }
}
.l-footer .bnr-link {
  display: block;
}
.l-footer .cpy {
  text-align: right;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer .cpy {
    font-size: 3.5897435897vw;
    margin-top: 4.1025641026vw;
  }
}

.fixed__right-menu {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #6B8E23;
  border-radius: 3rem 0 0 3rem;
  padding: 2rem 0;
  width: 7.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .fixed__right-menu {
    display: none;
  }
}
.fixed__right-menu .right-menu .item {
  padding-bottom: 2rem;
}
.fixed__right-menu .right-menu .item-inn {
  display: block;
  padding: 0 0.6rem;
}
.fixed__right-menu .right-menu .item-inn img {
  display: block;
  margin: auto;
  width: 2.1rem;
}
.fixed__right-menu .right-menu .item + .item {
  padding-top: 2rem;
  padding-bottom: 0;
  border-top: 0.2rem solid #ffffff;
}
.fixed__right-menu .right-menu .item + .item .item-inn img {
  width: 2.8rem;
}

.fixed__left-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  border-radius: 0 3rem 3rem 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-transform: translateX(-25.8rem);
          transform: translateX(-25.8rem);
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
@media screen and (max-width: 767px) {
  .fixed__left-menu {
    display: none;
  }
}
.fixed__left-menu .left-heading {
  background-color: #6B8E23;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  width: 3.6rem;
  cursor: pointer;
}
.fixed__left-menu .left-heading img {
  width: 1.8rem;
}
.fixed__left-menu .left-heading .toggle {
  width: 1.4rem;
  height: 1.5rem;
  position: relative;
}
.fixed__left-menu .left-heading .toggle::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/common/img_left_service-arr.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.fixed__left-menu .left-heading.ac .toggle::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.fixed__left-menu .left-menu {
  background-color: #ffffff;
  padding: 2.8rem 1.6rem;
  width: 25.8rem;
}
.fixed__left-menu .left-menu__item {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 1em;
}
.fixed__left-menu .left-menu__item:first-of-type {
  margin-top: 0;
}
.fixed__left-menu .left-menu__item:first-of-type .left-menu__item-inn {
  color: #38A882;
}
.fixed__left-menu .left-menu__item:nth-of-type(2) .left-menu__item-inn {
  color: #F17B00;
}
.fixed__left-menu .left-menu__item:nth-of-type(3) .left-menu__item-inn {
  color: #4B673E;
}
.fixed__left-menu .left-menu__item-inn {
  border-bottom: 0.1rem solid #707070;
  display: block;
  padding-left: 0.7rem;
  margin-bottom: 1.8rem;
}
.fixed__left-menu .left-menu .service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0;
}
.fixed__left-menu .left-menu .service-item {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-right: 3em;
}
.fixed__left-menu .left-menu .service-item-inn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fixed__left-menu .left-menu .service-item-inn::before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url(../images/common/img_left_menu-arr.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-size: 0.4em;
  position: relative;
  top: 0.05em;
}
.fixed__left-menu .left-menu .service-item:nth-of-type(2n) {
  padding-right: 0;
}
.fixed__left-menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fixed__spmenu {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #38A882;
}
@media print, screen and (min-width: 768px) {
  .fixed__spmenu {
    display: none;
  }
}
.fixed__spmenu .spmenu-heading {
  font-size: 4.6153846154vw;
  font-weight: bold;
  height: 17.9487179487vw;
  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;
  position: relative;
  color: #ffffff;
  letter-spacing: 0.05em;
}
.fixed__spmenu .spmenu-heading .toggle {
  width: 0.6em;
  height: 0.6em;
  position: absolute;
  right: 5.1282051282vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fixed__spmenu .spmenu-heading .toggle::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border: 0.5128205128vw solid #ffffff;
  border-width: 0 0 0.5128205128vw 0.5128205128vw;
  -webkit-transform: rotate(-45deg) translateY(-25%);
          transform: rotate(-45deg) translateY(-25%);
}
.fixed__spmenu .spmenu-heading.ac .toggle::before {
  -webkit-transform: rotate(135deg) translateY(-25%);
          transform: rotate(135deg) translateY(-25%);
}
.fixed__spmenu .spmenu-tel {
  border-top: 0.2564102564vw solid #ffffff;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  padding-top: 5.1282051282vw;
  padding-bottom: 6.4102564103vw;
}
.fixed__spmenu .spmenu-tel .tel-text {
  font-size: 4.6153846154vw;
  letter-spacing: 0.05em;
}
.fixed__spmenu .spmenu-tel .tel-no {
  font-size: 8.2051282051vw;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fixed__spmenu .spmenu-tel .tel-no a {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
}
.fixed__spmenu .spmenu-tel .tel-no a::before {
  content: "";
  width: 5.1282051282vw;
  height: 6.9230769231vw;
  background-image: url(../images/common/icn_contact-tel-w.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
  top: 0.1em;
}
.fixed__spmenu .spmenu-tel .tel-info {
  font-size: 3.8461538462vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1.2820512821vw;
}
.fixed__spmenu .spmenu-contact {
  border-top: 0.2564102564vw solid #ffffff;
  font-size: 4.6153846154vw;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: bold;
  height: 17.9487179487vw;
}
.fixed__spmenu .spmenu-contact-inn {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.fixed__spmenu .spmenu-contact-inn::before {
  content: "";
  width: 7.9487179487vw;
  height: 5.8974358974vw;
  background-image: url(../images/common/icn_contact-mail-w.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 0.5em;
}
.fixed__spmenu .spmenu-recruit {
  border-top: 0.2564102564vw solid #ffffff;
  font-size: 4.6153846154vw;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: bold;
  height: 17.9487179487vw;
}
.fixed__spmenu .spmenu-recruit-inn {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.fixed__spmenu .spmenu-recruit-inn::before {
  content: "";
  width: 7.1794871795vw;
  height: 7.1794871795vw;
  background-image: url(../images/common/icn_recruit.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 1em;
}

body, html {
  overflow-x: hidden;
}

body {
  line-height: 1.625;
}
body.fixed {
  position: fixed;
}
body * {
  max-width: 100%;
}

.l-main {
  display: block;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 14.8717948718vw;
  }
}

.l-content-inner {
  width: 134rem;
  margin: auto;
  max-width: 100%;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .l-content-inner {
    width: 100%;
    padding: 0 5.1282051282vw;
  }
}

.l-narrow-inner {
  width: 100rem;
  max-width: 100%;
  margin: auto auto auto;
}
@media screen and (max-width: 767px) {
  .l-narrow-inner {
    width: 100%;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .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;
}

/* --------------------------------------------------
  preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  font,text
-------------------------------------------------- */
.u-underline {
  text-decoration: underline !important;
}

.u-bold {
  font-weight: bold;
}

/*----------- shadow ------------*/
.u-boxshadow {
  -webkit-box-shadow: 0 0 10px rgba(24, 99, 175, 0.25);
          box-shadow: 0 0 10px rgba(24, 99, 175, 0.25);
}