@charset "UTF-8";
/* =====================================
 * 変数設定
 * ================================== */
/* =====================================
 * カラー変数
 * ================================== */
/*

--c-〇〇〇-darker:標準カラーよりやや暗め;
--c-〇〇〇-dark:標準カラーより少し暗め;
--c-〇〇〇:標準カラー;
--c-〇〇〇-lighter:標準カラーより少し薄め;
--c-〇〇〇-light:標準カラーよりやや薄め;

↓

--c-blk-darker:#000;
--c-blk-dark:#111;
--c-blk:#333;
--c-blk-lighter:#555;
--c-blk-light:#777;

*/
:root {
  --c-error: #B70000;
  --c-mark: #fff9b1;
  --c-error-light: #ffe5e5;
  --c-mask: rgba(0, 0, 0, 0.64);
  --c-wht: #ffffff;
  --c-blk: #333333;
  --c-pri: #016F38;
  --c-pri-light: #CCE2D7;
  --c-sec: #4D9A74;
  --c-gry-dark: #858585;
  --c-gry: #dddddd;
  --c-gry-light: #F7F7F7;
}

/* =====================================
 * メディアクエリ
 * ================================== */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  word-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-break: break-all;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  max-width: 100%;
  /*最大横幅制御*/
  height: auto;
  /*縦長比維持*/
  vertical-align: bottom;
  /*画像下部の謎の余白をなくす*/
  line-height: 1;
  /*ブラウザによって有効と無効な場合がありますが、一応入れておく*/
  border: 0;
  /*ブラウザによって有効と無効な場合がありますが、一応入れておく*/
}

/* レスポンシブ表示 */
@media only screen and (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* aリンク PCでクリック非表示 */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* =====================================
 * ベース設定
 * ================================== */
html {
  font-size: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}

html:has(#wpadminbar) {
  margin-top: 0 !important;
}

#wpadminbar[id] {
  opacity: 0.5;
}

#wpadminbar[id]:hover {
  opacity: 1;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.75;
  text-align: left;
  color: var(--c-blk);
  font-weight: normal;
  font-size: 1rem;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body * {
    scroll-margin-top: 5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

a:not([class]) {
  color: inherit;
  text-decoration: underline;
}
@media (min-width: 960px) {
  a:not([class]):hover {
    text-decoration: none;
  }
}
ul[class],
ol[class] {
  list-style: none;
}

strong,
span {
  font-size: 100%;
}

strong {
  font-weight: bold;
}

iframe {
  display: block;
  max-width: 100%;
}

cite {
  font-style: normal;
}

input,
textarea,
select {
  border-radius: 0;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=tel],
input[type=email],
input[type=number],
select,
input[type=text],
textarea {
  display: block;
}
input[type=tel]:not([size]),
input[type=email]:not([size]),
input[type=number]:not([size]),
select:not([size]),
input[type=text]:not([size]),
textarea:not([size]) {
  width: 100%;
}

input[type=submit],
button {
  line-height: inherit;
  border-radius: 0;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}
@media (min-width: 960px) {
  input[type=submit]:hover,
  button:hover {
    cursor: pointer;
  }
}

label {
  cursor: pointer;
}

::-moz-placeholder {
  /* Others */
  color: var(--c-gry);
}

::placeholder {
  /* Others */
  color: var(--c-gry);
}

::-moz-selection {
  background: var(--c-pri-light);
  color: var(--c-wht);
}

::selection {
  background: var(--c-pri-light);
  color: var(--c-wht);
}

::-moz-selection {
  background: var(--c-pri-light);
  color: var(--c-wht);
}

/* スクロールバーの設定 */
html {
  scrollbar-width: thin;
  scrollbar-width: thin;
  scrollbar-color: var(--c-blk) var(--c-gry);
}

html::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

html::-webkit-scrollbar-track {
  border-radius: 0.25rem;
  box-shadow: 0 0 0.5rem var(--c-gry) inset;
}

html::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background: var(--c-blk);
}

mark {
  background-color: var(--c-mark) !important;
  font-style: normal;
  font-weight: inherit;
  color: inherit;
}

sup {
  font-size: 75%;
  vertical-align: super;
}

sub {
  font-size: 75%;
  vertical-align: sub;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

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

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  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: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  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: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.l-header {
  background-color: var(--c-wht);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
}
@media (max-width: 767px) {
  .l-header {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
}
.l-header[class] a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 767px) {
  .l-header[class] a {
    color: var(--c-wht);
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header[class] a {
    color: var(--c-wht);
  }
}
.l-header {
  /*固定ヘッダーの時にこちらのクラスを付ける*/
}
.l-header.js-fixed-header {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
}
.l-header.is-active {
  background-color: var(--c-wht);
  z-index: 100000;
}
@media (min-width: 960px) {
  .l-header .l-container {
    padding-right: 0;
  }
}
.l-header__inner {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
@media (min-width: 960px) {
  .l-header__inner {
    width: 100%;
  }
}
.l-header__logo img {
  width: auto;
  max-height: 40px;
}
@media (max-width: 767px) {
  .l-header__logo img {
    max-height: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__logo img {
    max-height: 24px;
  }
}
@media screen and (min-width: 959px) and (max-width: 1265px) {
  .l-header__logo img {
    max-height: 24px;
  }
}
.l-header__link-contact {
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  display: flex;
  order: 10;
  padding-top: 0.875rem;
  gap: 1rem;
}
@media (min-width: 960px) {
  .l-header__link-contact {
    flex-direction: row;
    flex-wrap: nowrap;
    padding-top: 0;
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media (max-width: 767px) {
  .l-header__link-contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__link-contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.l-header__link, .l-header__btn {
  width: 100%;
}
@media (min-width: 960px) {
  .l-header__link, .l-header__btn {
    width: inherit;
  }
}
.l-header__link {
  order: 20;
  margin-top: 1rem;
}
@media (min-width: 960px) {
  .l-header__link {
    order: 0;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .l-header__link li {
    text-align: center;
  }
}
.l-header__link li a[target=_blank] {
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_blank.svg);
  padding-right: 1.25rem;
}
.l-header__btn {
  order: 0;
  margin-top: 3rem;
}
@media (min-width: 960px) {
  .l-header__btn {
    margin-top: 0;
    order: 10;
  }
}
.l-header__menu {
  display: none;
  background-color: var(--c-wht);
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .l-header__menu {
    margin-top: 96px;
  }
}
@media (min-width: 960px) {
  .l-header__menu {
    background: none;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
  }
}
@media screen and (min-width: 959px) and (max-width: 1265px) {
  .l-header__menu {
    gap: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__menu {
    margin-top: 56px;
    padding-top: 1rem;
  }
}
@media (max-width: 767px) {
  .l-header__menu {
    margin-top: 56px;
    padding-top: 1rem;
  }
}
.l-header__menu.is-active {
  background-color: var(--c-blk);
  flex-direction: column;
  display: flex;
}
@media (min-width: 960px) {
  .l-header__menu.is-active {
    display: block;
    background: none;
  }
}
@media (max-width: 767px) {
  .l-header__menu.is-active {
    overflow-y: scroll;
    height: calc(0px + 92vh);
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__menu.is-active {
    overflow-y: scroll;
    height: calc(0px + 92vh);
  }
}
.l-header__gnav {
  display: block;
  order: 1;
}
@media (min-width: 960px) {
  .l-header__gnav {
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media (max-width: 767px) {
  .l-header__gnav {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__gnav {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.l-header__menu-list, .l-header__link-list, .l-header__btn-list {
  line-height: 1.5;
  list-style: none;
}
@media (min-width: 960px) {
  .l-header__menu-list, .l-header__link-list, .l-header__btn-list {
    align-items: center;
    display: flex;
  }
}
.l-header__menu-list {
  display: block;
}
@media (min-width: 960px) {
  .l-header__menu-list {
    margin-left: auto;
    justify-content: flex-end;
    display: flex;
  }
}
.l-header__menu-list li {
  flex-shrink: 0;
  flex-grow: 0;
}
.l-header__menu-list li a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1rem;
  padding: 1.25rem;
}
@media (min-width: 960px) {
  .l-header__menu-list li a {
    height: 91px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .l-header__menu-list li a {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 959px) and (max-width: 1265px) {
  .l-header__menu-list li a {
    font-size: 0.875rem;
    padding: 1.25rem 0.75rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__menu-list li a {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
}
.l-header__menu-list li a span {
  color: var(--c-gry-dark);
  font-size: 0.875rem;
  font-weight: normal;
  display: block;
}
@media (min-width: 960px) {
  .l-header__menu-list li a span {
    display: none;
  }
}
.l-header__menu-list li a::after {
  content: "";
  display: block;
  transition: all 0.3s ease-in-out;
  background-color: var(--c-gry);
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
}
@media (min-width: 960px) {
  .l-header__menu-list li a::after {
    background-color: var(--c-pri);
    width: 0;
    height: 3px;
    margin-bottom: -0.1rem;
  }
}
@media (max-width: 767px) {
  .l-header__menu-list li a::after {
    background-color: var(--c-gry-dark);
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__menu-list li a::after {
    background-color: var(--c-gry-dark);
  }
}
.l-header__menu-list li a.is-current::after {
  left: 0;
  right: auto;
  width: 100%;
}
@media (min-width: 960px) {
  .l-header__menu-list li a.is-current::after {
    background-color: var(--c-pri);
    height: 3px;
  }
}
@media (min-width: 960px) {
  .l-header__menu-list li a:hover {
    text-decoration: none;
  }
  .l-header__menu-list li a:hover::after {
    left: 0;
    right: auto;
    width: 100%;
  }
}
.l-header__link-list {
  justify-content: center;
}
@media (min-width: 960px) {
  .l-header__link-list {
    justify-content: flex-end;
  }
}
.l-header__link-list li + li {
  margin-top: 0.5rem;
}
@media (min-width: 960px) {
  .l-header__link-list li + li {
    margin-left: 1rem;
    margin-top: 0;
  }
}
.l-header__link-list li a {
  font-size: 1rem;
}
@media (min-width: 960px) {
  .l-header__link-list li a {
    font-size: 0.875rem;
  }
  .l-header__link-list li a:hover {
    text-decoration: underline;
  }
}
.l-header__link-list li {
  text-align: center;
}
.l-header__link-list li a {
  display: inline-block;
  padding: 0.5rem;
}
@media (min-width: 960px) {
  .l-header__link-list li a {
    display: inline-block;
    padding: inherit;
  }
}
@media (min-width: 960px) {
  .l-header__link-list li {
    text-align: inherit;
  }
}
@media (min-width: 960px) {
  .l-header__btn {
    flex-shrink: 0;
    flex-grow: 0;
  }
}
.l-header__btn-list {
  display: block;
}
.l-header__btn-list li a {
  display: block;
  background-color: var(--c-pri);
  text-align: center;
  font-size: 1.125rem;
  padding: 1rem 0;
}
.l-header__btn-list li a:hover {
  text-decoration: none;
}
@media (min-width: 960px) {
  .l-header__btn-list li a {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}
.l-header__btn-list li.-contact a {
  background-color: var(--c-sec);
}
.l-header__btn-list li + li {
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .l-header__btn-list li + li {
    margin: 1rem 0 0 0;
  }
}
.l-header__btn-list[class] li a {
  color: var(--c-wht);
  position: relative;
  min-width: 187px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 960px) {
  .l-header__btn-list[class] li a {
    height: 92px;
  }
}
@media screen and (min-width: 959px) and (max-width: 1265px) {
  .l-header__btn-list[class] li a {
    min-width: 157px;
  }
}
.l-header__btn-list[class] li a[target*=_blank]::after {
  content: "";
  display: block;
  height: 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  width: 1rem;
  background-size: 1em auto;
  background-image: url("../img/ico_blank.svg");
}
.l-header__contact {
  text-align: center;
  order: 1;
  position: relative;
}
@media (min-width: 960px) {
  .l-header__contact {
    text-align: inherit;
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media (max-width: 767px) {
  .l-header__contact {
    width: 100%;
    border: 1px solid var(--c-gry-dark);
    padding: 0.5rem;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__contact {
    width: 100%;
    border: 1px solid var(--c-gry-dark);
    padding: 0.5rem;
    position: relative;
  }
}
.l-header__contact-tel {
  line-height: 1.5;
  font-weight: bold;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 959px) and (max-width: 1265px) {
  .l-header__contact-tel {
    font-size: 1rem;
  }
  .l-header__contact-tel::before {
    width: 1rem;
    height: 1rem;
  }
}
.l-header__contact-tel a::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.l-header__contact-tel::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_tel.svg);
  background-size: 100%;
}
@media (min-width: 960px) {
  .l-header__contact-tel::before {
    background-image: url(../img/ico_tel_blk.svg);
    width: 1.125rem;
    height: 1.125rem;
  }
}
.l-header__contact-time {
  line-height: 1.5;
  font-size: 1rem;
}
@media (min-width: 960px) {
  .l-header__contact-time {
    font-size: 0.75rem;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .l-header__contact-time {
    color: var(--c-wht);
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__contact-time {
    color: var(--c-wht);
  }
}
.l-header__trigger {
  display: table;
  width: 1.75rem;
  height: 1.75rem;
}
.l-header__trigger-btn {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.l-header__trigger-btn > * {
  display: block;
  transition: all 0.2s ease-in-out;
  line-height: 1;
  position: relative;
  transition: all 0.2s ease-in-out;
  background-color: var(--c-pri);
  font-size: 0;
  color: transparent;
  width: 1.75rem;
  height: 2px;
}
.l-header__trigger-btn > *::before, .l-header__trigger-btn > *::after {
  content: "";
  display: block;
  transition: all 0.2s ease-in-out;
  background-color: var(--c-pri);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header__trigger-btn > *::before {
  margin-top: -8px;
}
.l-header__trigger-btn > *::after {
  margin-top: 8px;
}
.l-header__trigger-btn.is-active > *::before {
  transform: translate(-50%, 8px) rotate(-45deg);
}
.l-header__trigger-btn.is-active > * {
  background-color: transparent;
}
.l-header__trigger-btn.is-active > *::after {
  transform: translate(-50%, -8px) rotate(45deg);
}

body[data-page-type=form] .l-header {
  position: relative !important;
}
body[data-page-type=form] .l-header__trigger, body[data-page-type=form] .l-header__menu {
  display: none;
}
body[data-page-type=form] .l-header__inner {
  justify-content: center;
}

/* =====================================
 * メガメニュー
 * ================================== */
.c-dropmenu-sp {
  padding-left: 2.5rem;
}
@media (min-width: 960px) {
  .c-dropmenu-sp {
    display: none;
    opacity: 0;
    height: 0;
  }
}

.js-dropmenu-sp {
  position: relative;
}
.js-dropmenu-sp::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 2.5rem;
  width: 16px;
  height: 2px;
  background-color: var(--c-wht);
  transition: all 0.3s ease;
}
@media (min-width: 960px) {
  .js-dropmenu-sp::after {
    content: none;
  }
}
.js-dropmenu-sp::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 2.55rem;
  width: 16px;
  height: 2px;
  background-color: var(--c-wht);
  transition: all 0.3s ease;
  transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 960px) {
  .js-dropmenu-sp::before {
    content: none;
  }
}
.js-dropmenu-sp.is-active::before {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
@media (min-width: 960px) {
  .js-dropmenu-sp span {
    display: none;
  }
}

.c-dropmenu-sp {
  display: none;
}
.c-dropmenu-sp__item a {
  font-weight: normal;
  font-size: 13px;
}

.c-dropmenu {
  position: fixed;
  top: 91px;
  left: 0;
  width: 100%;
  background: rgba(1, 111, 56, 0.7);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  z-index: 9999;
  display: none;
}
.c-dropmenu__inner {
  display: flex;
  align-items: center;
}
.c-dropmenu__title {
  padding-right: 2.5rem;
  border-right: 1px solid var(--c-pri);
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
}
.c-dropmenu__title a {
  color: var(--c-wht);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}
.c-dropmenu__title a span {
  font-weight: normal;
  font-size: 0.875rem;
  display: block;
}
.c-dropmenu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 6%;
  max-width: 960px;
  padding-left: 2.5rem;
}
.c-dropmenu__item {
  min-width: 150px;
}
.c-dropmenu__item a {
  color: var(--c-wht);
  text-decoration: none;
  font-weight: bold;
}
.c-dropmenu__item a span {
  font-weight: normal;
  font-size: 0.875rem;
  display: block;
}

@media (min-width: 768px) {
  .l-footer {
    overflow: hidden;
  }
}
.l-footer[class] a {
  color: inherit;
  text-decoration: none;
}
.l-footer[class] a:hover {
  text-decoration: underline;
}
.l-footer__cv {
  background-color: var(--c-gry-dark);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.l-footer__site {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 960px) {
  .l-footer__site-inner {
    justify-content: space-between;
    display: flex;
  }
}
.l-footer__logo + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .l-footer__logo a {
    display: block;
    text-align: center;
  }
}
.l-footer__address {
  font-size: 0.875rem;
}
.l-footer__site {
  background-color: var(--c-gry-light);
}
@media (min-width: 960px) {
  .l-footer__sitemap {
    flex-wrap: wrap;
    display: flex;
  }
}
.l-footer__sitemap-list > li > a {
  font-weight: bold;
  font-size: 1rem;
}
.l-footer__sitemap-list > li li > a {
  font-size: 0.875rem;
}
.l-footer__sitemap-list > li + li {
  margin-top: 0.5rem;
}
.l-footer__sitemap-list + * {
  margin-left: 3rem;
}
.l-footer__sitemap-list ul:not(:has(> li)) {
  display: none;
}
.l-footer__info {
  background-color: var(--c-blk);
  padding-top: 12.5rem;
  padding-bottom: 1rem;
}
@media (min-width: 960px) {
  .l-footer__info-inner {
    align-items: center;
    justify-content: center;
    display: flex;
  }
}
.l-footer__link-list {
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 767px) {
  .l-footer__link-list {
    justify-content: center;
  }
}
.l-footer__link-list li a {
  font-size: 0.875rem;
}
.l-footer__link-list li + li {
  margin-left: 1.5rem;
}
.l-footer__copyright {
  font-size: 0.875rem;
  color: var(--c-wht);
}
@media (max-width: 767px) {
  .l-footer__copyright {
    text-align: center;
  }
}

body[data-page-type=form] .l-footer__link, body[data-page-type=form] .l-footer__sitemap, body[data-page-type=form] .l-footer__cv {
  display: none;
}
body[data-page-type=form] .l-footer__info-inner, body[data-page-type=form] .l-footer__site-inner {
  justify-content: center;
}
body[data-page-type=form] .l-footer__address, body[data-page-type=form] .l-footer__logo {
  text-align: center;
}

/* =====================================
 * コンテンツ幅
 * ================================== */
.l-container {
  max-width: calc(1200px + 2rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.l-container.-sm {
  max-width: calc(960px + 2rem);
}
.l-container.-xs {
  max-width: calc(800px + 2rem);
}
.l-container.-wide {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.l-container.-lg {
  max-width: 100%;
}
@media (max-width: 767px) {
  .l-container {
    max-width: 100%;
  }
  .l-container, .l-container.-lg, .l-container.-sm, .l-container.-xs {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .l-container:not(.-wide) .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-main {
  overflow-x: hidden;
}
.l-main:before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  background-image: url("../img/img_home_message_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 960px) {
  .l-main__inner.-col2 {
    flex-wrap: wrap;
    display: flex;
  }
}
@media (min-width: 960px) {
  .l-main__inner.-col2 .l-main__content {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: calc(100% - 260px);
    max-width: calc(100% - 260px);
    padding-right: 3rem;
  }
}
@media (min-width: 960px) {
  .l-main__sidebar {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 260px;
    max-width: 260px;
  }
}
@media (max-width: 767px) {
  .l-main__sidebar {
    margin-top: 4rem;
  }
}

/* =====================================
 * 変数設定
 * ================================== */
/* =====================================
 * カラー変数
 * ================================== */
/*

--c-〇〇〇-darker:標準カラーよりやや暗め;
--c-〇〇〇-dark:標準カラーより少し暗め;
--c-〇〇〇:標準カラー;
--c-〇〇〇-lighter:標準カラーより少し薄め;
--c-〇〇〇-light:標準カラーよりやや薄め;

↓

--c-blk-darker:#000;
--c-blk-dark:#111;
--c-blk:#333;
--c-blk-lighter:#555;
--c-blk-light:#777;

*/
:root {
  --c-error: #B70000;
  --c-mark: #fff9b1;
  --c-error-light: #ffe5e5;
  --c-mask: rgba(0, 0, 0, 0.64);
  --c-wht: #ffffff;
  --c-blk: #333333;
  --c-pri: #016F38;
  --c-pri-light: #CCE2D7;
  --c-sec: #4D9A74;
  --c-gry-dark: #858585;
  --c-gry: #dddddd;
  --c-gry-light: #F7F7F7;
}

/* =====================================
 * メディアクエリ
 * ================================== */
/* =====================================
 * extend用のclassをここに集約
 * ================================== */
.c-hover, .p-home-mv__banner, .c-pagetop__btn, .c-btn[class] > *, .c-sidebar__bnr-item > *, .l-header__logo > *, .l-header__btn-list li a, .c-dropmenu__title, .c-dropmenu__item a, .l-footer__logo > * {
  transition: all 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .c-hover:hover, .p-home-mv__banner:hover, .c-pagetop__btn:hover, .c-btn[class] > :hover, .c-sidebar__bnr-item > :hover, .l-header__logo > :hover, .l-header__btn-list li a:hover, .c-dropmenu__title:hover, .c-dropmenu__item a:hover, .l-footer__logo > :hover {
    cursor: pointer;
    text-decoration: none !important;
    opacity: 0.7;
  }
}

.c-img {
  aspect-ratio: 16/9;
}
.c-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.c-no-img, .p-post-card__img {
  position: relative;
}
.c-no-img::before, .p-post-card__img::before {
  content: "";
  display: block;
  background-color: var(--c-gry-light);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -20;
  pointer-events: none;
}
.c-no-img::after, .p-post-card__img::after {
  content: "NO IMAGE";
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.24;
}

.c-all-link, .p-post-card__item, .p-post-list__item {
  position: relative;
}
.c-all-link a::before, .p-post-card__item a::before, .p-post-list__item a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.c-shadow, .p-home-flow__item, .p-home-service__flow-item {
  box-shadow: 0 0 15px 0 rgba(1, 111, 56, 0.15);
}

/* =====================================
 * スマホでメニューを展開状態になった時に、その下にマスクを敷く
 * ================================== */
.c-mask {
  display: none;
  background-color: var(--c-mask);
  position: absolute;
  z-index: 9999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .c-mask {
    margin-top: 96px;
  }
}
@media (min-width: 960px) {
  .c-mask {
    display: none !important;
  }
}

.c-sidebar__section + .c-sidebar__section {
  margin-top: 3rem;
}
.c-sidebar__title {
  font-weight: bold;
}
.c-sidebar__title + * {
  margin-top: 1rem;
}
.c-sidebar__bnr-item + .c-sidebar__bnr-item {
  margin-top: 1rem;
}

.c-cat01__list li > * {
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid var(--c-gry);
  display: block;
  background-position: right center;
  background-position-x: calc(100% - 1rem);
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right_pri.svg);
  background-size: 0.45em auto;
  padding: 1rem 1.5rem 1rem 1rem;
}
.c-cat01__list li > *, .c-cat01__list li > *:hover {
  text-decoration: none;
}
@media (min-width: 960px) {
  .c-cat01__list li > *:hover {
    background-color: var(--c-gry-light);
  }
}
.c-cat01__list li:first-child > * {
  border-top: 1px solid var(--c-gry);
}

.c-cat02__list {
  flex-wrap: wrap;
  display: flex;
  margin: -0.5rem 0 0 -0.5rem;
}
.c-cat02__list li {
  margin: 0.5rem 0 0 0.5rem;
}
.c-cat02__list li > * {
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--c-gry);
  display: block;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem 0.125rem;
}
@media (min-width: 960px) {
  .c-cat02__list li > *:hover {
    background-color: var(--c-gry-light);
  }
}
@media (max-width: 767px) {
  .c-cat02__list li > * {
    font-size: 0.75rem;
  }
}
.c-cat02__list li a,
.c-cat02__list li a:hover {
  color: inherit;
  text-decoration: none;
}

.c-tag01__list {
  flex-wrap: wrap;
  display: flex;
  margin: -1rem 0 0 -1rem;
}
.c-tag01__list li {
  margin: 1rem 0 0 1rem;
}
.c-tag01__list li > * {
  text-decoration: none;
  display: inline-block;
  background-color: var(--c-gry-light);
  padding: 0.25rem 0.5rem;
}

.c-pager__list {
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
}
.c-pager__item[class] > * {
  transition: all 0.2s ease-in-out;
  display: inline-block;
  border: 1px solid var(--c-gry);
  text-align: center;
  height: 2.5rem;
  width: 2.5rem;
  padding-top: 0.375rem;
  text-decoration: none;
}
.c-pager__item[class] > *:hover {
  text-decoration: none;
}
@media (min-width: 960px) {
  .c-pager__item[class] > *:hover {
    border-color: var(--c-pri);
    background-color: var(--c-pri);
    color: var(--c-wht);
  }
}
.c-pager__item[class] span {
  border-color: var(--c-pri);
  background-color: var(--c-pri);
  color: var(--c-wht);
}
.c-pager__item[class].-skip span {
  background: none;
  border: none;
  color: inherit;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.c-pager__item[class].-prev > *, .c-pager__item[class].-next > * {
  background-size: 0.375em auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.c-pager__item[class].-prev > * {
  background-image: url(../img/ico_arr_left_pri.svg);
}
.c-pager__item[class].-prev > *:hover {
  background-image: url(../img/ico_arr_left_wht.svg);
}
.c-pager__item[class].-next > * {
  background-image: url(../img/ico_arr_right_pri.svg);
}
.c-pager__item[class].-next > *:hover {
  background-image: url(../img/ico_arr_right_wht.svg);
}
.c-pager__item + .c-pager__item {
  margin-left: 0.5rem;
}

/* =====================================
 * 見出し
 * ================================== */
[class*=c-headline] {
  line-height: 1.5;
}

.c-headline__title + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .c-headline__title + * {
    margin-top: 2rem;
  }
}
.c-headline__en {
  text-transform: capitalize;
  font-weight: bold;
  color: var(--c-pri);
  position: relative;
  padding-left: 3rem;
}
.c-headline__en + * {
  margin-top: 0.5rem;
}
.c-headline__en::before {
  content: "";
  display: block;
  top: 0.75rem;
  left: 0;
  width: 2rem;
  height: 1px;
  background-color: var(--c-pri);
  position: absolute;
}
.c-headline__ja {
  font-weight: bold;
  font-size: 3.5rem;
}
@media (max-width: 767px) {
  .c-headline__ja {
    font-size: 2.85rem;
  }
}
.c-headline__subtitle {
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .c-headline__subtitle {
    font-size: 1.5rem;
  }
}
.c-headline__subtitle + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .c-headline__subtitle + * {
    margin-top: 1rem;
  }
}
.c-headline__desc {
  line-height: 1.75;
}

.c-headline02 {
  font-size: 1.5rem;
  font-weight: bold;
}
.c-headline02 + * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c-headline02 + * {
    margin-top: 1.5rem;
  }
}

.c-headline-ico {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .c-headline-ico {
    gap: 0.5rem;
  }
}
.c-headline-ico + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .c-headline-ico + * {
    margin-top: 1.5rem;
  }
}
.c-headline-ico__img {
  width: 2.5rem;
  height: 2.5rem;
}
.c-headline-ico__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-pri);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.c-lead__title {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-lead__title {
    font-size: 1.5rem;
  }
}
.c-lead__title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .c-lead__title + * {
    margin-top: 1rem;
  }
}

.toc_transparent {
  background-color: var(--c-gry-light);
  padding: 3rem 4rem;
}
@media (max-width: 767px) {
  .toc_transparent {
    padding: 1.5rem;
  }
}
.toc_title {
  font-weight: bold;
  font-size: 1.25rem;
}
.toc_title + * {
  margin-top: 0.75rem;
}
.toc_list[class] {
  padding-left: 1.5rem;
}
.toc_list[class] > li {
  list-style-type: disc;
}
.toc_list[class] li a {
  color: var(--c-blk);
}
.toc_list[class] li ul {
  margin-top: 0.5rem;
}
.toc_list[class] li + li {
  margin-top: 0.5rem;
}

/* =====================================
 * ボタン基準
 * ================================== */
.c-btn[class] {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .c-btn[class] {
    max-width: 320px;
  }
}
.c-btn[class].-lg {
  max-width: 100%;
}
.c-btn[class] > * {
  transition: all 0.2s ease-in-out;
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--c-pri);
  line-height: 1.5;
  color: var(--c-wht);
  text-align: center;
  font-weight: bold;
  padding: 1.25rem 3rem;
}
@media (max-width: 767px) {
  .c-btn[class] > * {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.c-btn[class] > *:after {
  content: "";
  display: block;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right_wht.svg);
  background-size: 100%;
  width: 0.5em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .c-btn[class] > *:after {
    margin-right: 1.125rem;
  }
}
.c-btn[class] > *[target*=_blank]::after {
  width: 1rem;
  background-size: 1em auto;
  background-image: url("../img/ico_blank.svg");
}
.c-btn[class].-submit > * {
  padding: 0;
}
.c-btn[class].-submit > * input[type=submit] {
  width: 100%;
  padding: 1rem 3rem;
}
@media (max-width: 767px) {
  .c-btn[class].-submit > * input[type=submit] {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.c-btn-text a {
  color: var(--c-pri);
  position: relative;
  display: inline-block;
  padding-right: 1.625rem;
}
.c-btn-text a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1.25em;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.5em auto;
  background-image: url("../img/ico_arr_right_pri.svg");
}
.c-btn-text a[target*=_blank]::after {
  background-size: 1em auto;
  background-image: url("../img/ico_blank.svg");
}
.c-btn-text a[href*=".pdf"]::after,
.c-btn-text a[download]::after {
  background-position: center 0.125em;
  background-image: url("../img/ico_pdf.svg");
  background-size: 1em auto;
}

.c-map-link a {
  color: var(--c-pri);
  padding-left: 1.25rem;
  position: relative;
}
.c-map-link a:hover {
  text-decoration: none;
}
.c-map-link a::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/ico_map.svg");
  margin-top: 0.15rem;
  top: 0;
  left: 0;
  position: absolute;
}
.c-map-link + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .c-map-link + * {
    margin-top: 0.5rem;
  }
}

/* =====================================
 * 横並び
 * ================================== */
.c-flex {
  display: flex;
  flex-wrap: wrap;
}
.c-flex__caption {
  text-align: center;
  font-size: 0.875rem;
}
* + .c-flex__caption {
  margin-top: 1rem;
}
.c-flex.-max2 {
  margin-left: -2rem;
}
@media (max-width: 767px) {
  .c-flex.-max2 {
    display: block;
    margin-left: 0;
  }
}
.c-flex.-max2 .c-flex__item {
  flex-basis: calc(50% - 2rem);
  max-width: calc(50% - 2rem);
  margin-left: 2rem;
}
.c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c-flex.-max2 .c-flex__item, .c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
    margin-top: 1.5rem;
  }
}
.c-flex.-max3 {
  margin-left: -2rem;
}
@media (max-width: 767px) {
  .c-flex.-max3 {
    display: block;
    margin-left: 0;
  }
}
.c-flex.-max3 .c-flex__item {
  flex-basis: calc(33.3333333333% - 2rem);
  max-width: calc(33.3333333333% - 2rem);
  margin-left: 2rem;
}
.c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c-flex.-max3 .c-flex__item, .c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
    margin-top: 1.5rem;
  }
}
.c-flex.-max4 {
  margin-left: -2rem;
}
@media (max-width: 767px) {
  .c-flex.-max4 {
    margin-left: -1.5rem;
  }
}
.c-flex.-max4 .c-flex__item[class] {
  flex-basis: calc(25% - 2rem);
  max-width: calc(25% - 2rem);
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .c-flex.-max4 .c-flex__item[class] {
    margin-left: 1.5rem;
  }
}
.c-flex.-max4 .c-flex__item[class]:nth-of-type(4) ~ * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c-flex.-max4 .c-flex__item[class], .c-flex.-max4 .c-flex__item[class]:nth-of-type(4) ~ * {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .c-flex.-max4 .c-flex__item[class] {
    flex-basis: calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}
@media (max-width: 767px) {
  .c-flex.-max4 .c-flex__item[class]:nth-of-type(1), .c-flex.-max4 .c-flex__item[class]:nth-of-type(2) {
    margin-top: 0;
  }
}
.c-flex[class] .c-flex__item {
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 767px) {
  .c-flex[class] .c-flex__item {
    flex-basis: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .c-flex[class] .c-flex__item:first-child {
    margin-top: 0;
  }
  .c-flex[class] .c-flex__item img {
    display: block;
    margin: 0 auto;
  }
}

/* =====================================
 * 画像とテキスト配置
 * ================================== */
.c-img-center {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.c-img-center .c-img-center__img {
  display: block;
  text-align: center;
}

.c-img-caption, .wp-block-image .alignleft figcaption,
.wp-block-image .alignright figcaption,
.wp-block-image .aligncenter figcaption {
  text-align: center;
  font-size: 0.875rem;
}
* + .c-img-caption, .wp-block-image .alignleft * + figcaption,
.wp-block-image .alignright * + figcaption,
.wp-block-image .aligncenter * + figcaption {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .c-img-caption + *, .wp-block-image .alignleft figcaption + *,
  .wp-block-image .alignright figcaption + *,
  .wp-block-image .aligncenter figcaption + * {
    margin-top: 1.5rem;
  }
}

.c-imgbox {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .c-imgbox {
    display: block;
  }
}
@media (min-width: 960px) {
  .c-imgbox:has(.c-imgbox__right) {
    flex-direction: row-reverse;
  }
}
.c-imgbox .c-imgbox__right,
.c-imgbox .c-imgbox__left {
  text-align: center;
  max-width: 50%;
}
.c-imgbox .c-imgbox__right + *,
.c-imgbox .c-imgbox__left + * {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .c-imgbox .c-imgbox__right + *,
  .c-imgbox .c-imgbox__left + * {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .c-imgbox .c-imgbox__right,
  .c-imgbox .c-imgbox__left {
    max-width: 100%;
  }
}

/* =====================================
 * 表組み
 * ================================== */
.c-table {
  border-right: 1px solid var(--c-gry);
  border-bottom: 1px solid var(--c-gry);
  width: 100%;
}
* + .c-table {
  margin-top: 3rem;
}
.c-table th,
.c-table td {
  background-clip: padding-box;
  border-top: 1px solid var(--c-gry);
  border-left: 1px solid var(--c-gry);
}
.c-table tr > *:first-child,
.c-table th {
  width: 240px;
  font-weight: bold;
  background: var(--c-gry-light);
}
.c-table td {
  background-color: var(--c-wht);
}
.c-table tr > *:first-child,
.c-table th,
.c-table td {
  padding: 0.875rem 1.5rem;
}
@media (max-width: 767px) {
  .c-table tr > *:first-child,
  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .c-table.-wide tr > *:first-child,
  .c-table.-wide th {
    width: auto;
  }
}
@media (max-width: 767px) {
  .c-table.-wide th,
  .c-table.-wide td {
    width: auto;
    display: table-cell;
  }
}
.c-table.-side tr > *:first-child {
  background: none;
}
.c-table.-side tr:first-child > * {
  background: var(--c-gry-light);
}
.c-table.-side th,
.c-table.-side td {
  width: auto;
}
@media (max-width: 767px) {
  .c-table.-side th,
  .c-table.-side td {
    width: auto;
  }
}
@media (max-width: 767px) {
  .c-table.-scroll {
    position: relative;
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .c-table.-scroll::after {
    content: "スクロールできます";
    text-align: center;
    font-size: 0.75rem;
    background-color: var(--c-wht);
    background-repeat: no-repeat;
    background-size: 2rem auto;
    background-position: center 1rem;
    background-image: url(../img/ico_scroll.svg);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.24);
    transition: all 0.2s ease-in-out;
    padding: 4rem 1.25rem 0.5rem;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(150%, -50%);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 767px) {
  .c-table.-scroll tbody {
    min-width: 640px;
  }
}
@media (max-width: 767px) {
  .c-table.-scroll th,
  .c-table.-scroll td {
    display: table-cell;
    width: auto;
  }
}
@media (max-width: 767px) {
  .c-table.-scroll.-scroll.is-show::after {
    animation: table_scroll_show 3s ease 0.4s 1 alternate forwards running;
  }
}

* + .c-table-title {
  margin-top: 1.25rem;
}

@keyframes table_scroll_show {
  0% {
    visibility: inherit;
    opacity: 1;
    transform: translate(150%, -50%);
  }
  40% {
    visibility: inherit;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  41% {
    visibility: inherit;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}
/* =====================================
 * ページトップへ戻る
 * ================================== */
.c-pagetop {
  transition: all 0.2s ease-in-out;
  position: fixed;
  z-index: 1;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-pagetop.is-active {
  opacity: 1;
  visibility: inherit;
  pointer-events: auto;
}
.c-pagetop__btn {
  background-color: var(--c-pri);
  background-repeat: no-repeat;
  background-size: 0.875rem auto;
  background-position: center center;
  background-image: url(../img/ico_arr_up_wht.svg);
  font-size: 0;
  height: 3.5rem;
  width: 3.5rem;
}

/* =====================================
 * パンくずリスト
 * ================================== */
.c-breadcrumb {
  margin-top: 1rem;
}
.c-breadcrumb + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .c-breadcrumb + * {
    margin-top: 3rem;
  }
}
.c-breadcrumb__list {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.c-breadcrumb__list li {
  list-style-type: none;
  line-height: 1.5;
  font-size: 0.875rem;
}
.c-breadcrumb__list li + li:before {
  content: "";
  display: inline-block;
  border: 1px solid var(--c-blk);
  border-left: none;
  border-bottom: none;
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg) translateY(-1px);
  margin: 0 0.5rem 0 0.25rem;
}

body[data-page-type=form] .c-breadcrumb {
  display: none;
}

/* =====================================
 * ページタイトル
 * ================================== */
.c-pagetitle {
  background-color: var(--c-gry-light);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.c-pagetitle__subtitle, .c-pagetitle__title {
  line-height: 1.5;
}
.c-pagetitle__subtitle::first-letter {
  text-transform: uppercase;
}
.c-pagetitle__subtitle + * {
  margin-top: 1rem;
}
.c-pagetitle__title {
  font-weight: bold;
  font-size: 2rem;
}
.c-pagetitle__title + * {
  margin-top: 1rem;
}
.c-pagetitle__desc {
  font-size: 0.875rem;
}

body[data-page-type=form] .c-pagetitle__subtitle, body[data-page-type=form] .c-pagetitle__title {
  text-align: center;
}

/* =====================================
 * 下層ページ　テキスト周り
 * ================================== */
.has-small-font-size {
  font-size: 75%;
}

.has-medium-font-size {
  font-size: 87.5%;
}

.has-normal-font-size {
  font-size: inherit;
}

.has-large-font-size {
  font-size: 150%;
}

.has-x-large-font-size,
.has-huge-font-size {
  font-size: 225%;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.wp-block-image {
  flex-wrap: wrap;
  display: flex;
}
* + .wp-block-image {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .wp-block-image {
    margin-top: 1.5rem;
  }
}
.wp-block-image .alignleft,
.wp-block-image .alignright {
  display: inline-block;
}
.wp-block-image .alignleft figcaption,
.wp-block-image .alignright figcaption,
.wp-block-image .aligncenter figcaption {
  text-align: center;
}
@media (max-width: 767px) {
  .wp-block-image .alignleft,
  .wp-block-image .alignright,
  .wp-block-image .aligncenter {
    margin-left: auto;
    margin-right: auto;
  }
}
.wp-block-image .alignright {
  margin-left: auto;
}
.wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-quote {
  position: relative;
  background-color: var(--c-gry-light);
  padding: 4rem;
}
@media (max-width: 767px) {
  .wp-block-quote {
    padding: 3.5rem 1.5rem;
  }
}
.wp-block-quote::before, .wp-block-quote::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
  position: absolute;
  z-index: 1;
}
.wp-block-quote::before {
  background-image: url(../img/ico_quote_mark01.svg);
  top: 0;
  left: 0;
  margin: 1.5rem 0 0 1.5rem;
}
@media (max-width: 767px) {
  .wp-block-quote::before {
    margin-top: 1rem;
  }
}
.wp-block-quote::after {
  background-image: url(../img/ico_quote_mark02.svg);
  bottom: 0;
  right: 0;
  margin: 0 1.5rem 1.5rem 0;
}
@media (max-width: 767px) {
  .wp-block-quote::after {
    margin-bottom: 1rem;
  }
}
.wp-block-quote cite {
  font-size: 0.75rem;
}
.wp-block-quote cite::before {
  content: "出典：";
  display: inline-block;
}
.wp-block-quote cite a {
  display: inline-block;
  color: var(--c-pri);
  text-decoration: underline;
  margin-top: 1.5rem;
}
@media (min-width: 960px) {
  .wp-block-quote cite a:hover {
    text-decoration: none;
  }
}

.wp-block-file {
  text-align: center;
  border: 1px solid var(--c-gry);
  padding: 2rem;
}
@media (max-width: 767px) {
  .wp-block-file {
    padding: 1.5rem;
  }
}
.wp-block-file::before {
  content: "下記よりPDFをダウンロードいただけます。";
  display: block;
  text-align: center;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .wp-block-file::before {
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
  }
}
.wp-block-file object {
  display: none;
}
.wp-block-file a:not([download]) {
  display: none;
}
.wp-block-file a[download] {
  font-weight: bold;
  color: inherit;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.44em auto;
  background-position: left 40%;
  background-size: 1em auto;
  background-image: url("../img/ico_pdf.svg");
  padding-left: 1.875rem;
}
@media (min-width: 960px) {
  .wp-block-file a[download]:hover {
    text-decoration: none;
  }
}

.wp-block-embed:not([class*=is-type-wp-embed]) .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.wp-block-embed:not([class*=is-type-wp-embed]) .wp-block-embed__wrapper iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.is-root-container > * + *,
.c-content > * + * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .is-root-container > * + *,
  .c-content > * + * {
    margin-top: 1.5rem;
  }
}

* + .c-section {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  * + .c-section {
    margin-top: 3.5rem;
  }
}
* + .c-section.-lg {
  margin-top: 7.5rem;
}
@media (max-width: 767px) {
  * + .c-section.-lg {
    margin-top: 5rem;
  }
}
* + .c-section.-sm {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  * + .c-section.-sm {
    margin-top: 2rem;
  }
}
* + .c-section.-md {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  * + .c-section.-md {
    margin-top: 3rem;
  }
}
.c-section.-spacer + * {
  margin-top: 0 !important;
}

/* ================================== */
h4.wp-block,
h3.wp-block,
h2.wp-block,
h4[class*=has-text-align],
h4[class*=font-size],
h3[class*=has-text-align],
h3[class*=font-size],
h2[class*=has-text-align],
h2[class*=font-size],
h2:not([class]),
h3:not([class]),
h4:not([class]) {
  font-weight: bold;
  line-height: 1.5;
}

/* ================================== */
h2.wp-block,
h2[class*=has-text-align],
h2[class*=font-size],
h2:not([class]) {
  border-bottom: 2px solid var(--c-pri-light);
  font-size: 3rem;
  padding-bottom: 1rem;
  position: relative;
}
@media (max-width: 767px) {
  h2.wp-block,
  h2[class*=has-text-align],
  h2[class*=font-size],
  h2:not([class]) {
    font-size: 2.25rem;
  }
}
h2.wp-block::after,
h2[class*=has-text-align]::after,
h2[class*=font-size]::after,
h2:not([class])::after {
  content: "";
  display: block;
  bottom: -2px;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: var(--c-pri);
  position: absolute;
}
h2.wp-block + *,
h2[class*=has-text-align] + *,
h2[class*=font-size] + *,
h2:not([class]) + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  h2.wp-block + *,
  h2[class*=has-text-align] + *,
  h2[class*=font-size] + *,
  h2:not([class]) + * {
    margin-top: 2rem;
  }
}

* + h2[class*=has-text-align],
* + h2[class*=font-size],
* + h2:not([class]) {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  * + h2[class*=has-text-align],
  * + h2[class*=font-size],
  * + h2:not([class]) {
    margin-top: 3.5rem;
  }
}

/* ================================== */
h3.wp-block,
h3[class*=has-text-align],
h3[class*=font-size],
h3:not([class]) {
  position: relative;
  font-size: 1.25rem;
  padding-left: 1rem;
}
h3.wp-block::before,
h3[class*=has-text-align]::before,
h3[class*=font-size]::before,
h3:not([class])::before {
  content: "";
  display: block;
  background-color: var(--c-pri);
  width: 3px;
  height: calc(100% - 0.25em);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
h3.wp-block + *,
h3[class*=has-text-align] + *,
h3[class*=font-size] + *,
h3:not([class]) + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  h3.wp-block + *,
  h3[class*=has-text-align] + *,
  h3[class*=font-size] + *,
  h3:not([class]) + * {
    margin-top: 1.125rem;
  }
}

* + h3[class*=has-text-align],
* + h3[class*=font-size],
* + h3:not([class]) {
  margin-top: 3.5rem;
}

/* ================================== */
h4.wp-block,
h4[class*=has-text-align],
h4[class*=font-size],
h4:not([class]) {
  font-size: 1.125rem;
}
h4.wp-block + *,
h4[class*=has-text-align] + *,
h4[class*=font-size] + *,
h4:not([class]) + * {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  h4.wp-block + *,
  h4[class*=has-text-align] + *,
  h4[class*=font-size] + *,
  h4:not([class]) + * {
    margin-top: 1rem;
  }
}

* + h4[class*=has-text-align],
* + h4[class*=font-size],
* + h4:not([class]) {
  margin-top: 2.5rem;
}

/* ================================== */
ol.wp-block,
ol[class*=font-size] {
  list-style: decimal;
}

ul.wp-block,
ul[class*=font-size] {
  list-style: inherit;
}

ol.wp-block,
ul.wp-block,
ol:not([class]),
ul:not([class]),
ol[class*=font-size],
ul[class*=font-size] {
  padding: 0 0 0 1.375rem;
}
ol.wp-block li + li,
ul.wp-block li + li,
ol:not([class]) li + li,
ul:not([class]) li + li,
ol[class*=font-size] li + li,
ul[class*=font-size] li + li {
  margin-top: 0.125rem;
}

* + ol:not([class]),
* + ul:not([class]),
* + ol[class*=font-size],
* + ul[class*=font-size] {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  * + ol:not([class]),
  * + ul:not([class]),
  * + ol[class*=font-size],
  * + ul[class*=font-size] {
    margin-top: 1.5rem;
  }
}

.p-home-slider {
  width: 100%;
  position: relative;
  margin-top: -8rem;
}
.p-home-slider-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: slide 40s linear infinite;
  gap: 1.25rem;
}
.p-home-slider-slide {
  flex-shrink: 0;
  width: 280px;
  max-height: 356px;
}
@media (min-width: 768px) {
  .p-home-slider-slide {
    max-width: 240px;
  }
}
@media (max-width: 767px) {
  .p-home-slider-slide {
    max-width: 210px;
  }
}
.p-home-slider-slide:nth-child(2n) {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .p-home-slider-slide:nth-child(2n) {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .p-home-slider-slide:nth-child(2n) {
    max-width: 280px;
  }
}
.p-home-slider-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.p-home-slider-slide img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .u-hidden-tb {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media (min-width: 1440px) {
  .u-hidden-wd {
    display: none !important;
  }
}
/* =====================================
 * 変数設定
 * ================================== */
/* =====================================
 * カラー変数
 * ================================== */
/*

--c-〇〇〇-darker:標準カラーよりやや暗め;
--c-〇〇〇-dark:標準カラーより少し暗め;
--c-〇〇〇:標準カラー;
--c-〇〇〇-lighter:標準カラーより少し薄め;
--c-〇〇〇-light:標準カラーよりやや薄め;

↓

--c-blk-darker:#000;
--c-blk-dark:#111;
--c-blk:#333;
--c-blk-lighter:#555;
--c-blk-light:#777;

*/
:root {
  --c-error: #B70000;
  --c-mark: #fff9b1;
  --c-error-light: #ffe5e5;
  --c-mask: rgba(0, 0, 0, 0.64);
  --c-wht: #ffffff;
  --c-blk: #333333;
  --c-pri: #016F38;
  --c-pri-light: #CCE2D7;
  --c-sec: #4D9A74;
  --c-gry-dark: #858585;
  --c-gry: #dddddd;
  --c-gry-light: #F7F7F7;
}

/* =====================================
 * メディアクエリ
 * ================================== */
/* =====================================
* contact form 7 デフォルトcss
* ================================== */
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232; /* Red */
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d; /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc; /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 [inert] {
  opacity: 0.5;
}

.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}

.wpcf7-reflection > output[hidden] {
  display: none;
}

/* =====================================
 * フォームのオリジナル設定はここから
 * ================================== */
.p-form__inner + * {
  margin-top: 2rem;
}
.p-form__inner dt {
  font-weight: bold;
}
.p-form__inner dt + * {
  margin-top: 1rem;
}
.p-form__inner dd + * {
  margin-top: 3rem;
}
.p-form__req {
  align-items: center;
  display: flex;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .p-form__req {
    padding-right: 0;
  }
}
.p-form__req:after {
  content: "必須";
  display: inline-block;
  background-color: var(--c-error);
  color: var(--c-wht);
  font-weight: normal;
  font-size: 0.75rem;
  padding: 0 0.5rem;
  margin-left: 1rem;
}
.p-form__item + .p-form__item {
  margin-top: 2rem;
}
.p-form__item-headline + * {
  margin-top: 1rem;
}
.p-form__item-headline + * {
  margin-left: 0;
}
.p-form__error-list li[data-error-name=住所] + li[data-error-name=住所] {
  display: none !important;
}
.p-form__error-message {
  background-color: var(--c-error-light);
  display: none;
  margin: 0 0 2rem;
  padding: 1.5rem;
}
.p-form__error-message.is-show {
  display: block;
}
.p-form__error-headline {
  color: var(--c-error);
  font-weight: bold;
  font-size: 1.375rem;
}
.p-form__error-list[class] {
  list-style: disc;
  margin: 1rem 0 0 1.5rem;
  padding: 0;
}
.p-form__error-list li {
  color: var(--c-error);
  font-size: 1.125rem;
}
.p-form .is-error[class] {
  border: 1px solid var(--c-error);
  background-color: var(--c-error-light);
}
.p-form .wpcf7-not-valid-tip[class],
.p-form .error[class] {
  display: block;
  color: var(--c-error);
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
}
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form input[type=text],
.p-form textarea,
.p-form select {
  border-radius: 0;
  background-color: var(--c-wht);
  border: 1px solid var(--c-gry);
  padding: 1rem 1rem;
}
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form input[type=text],
.p-form textarea {
  -webkit-appearance: none;
}
.p-form select {
  padding-right: 2.5rem;
  background-repeat: no-repeat;
  background-size: 0.75em auto;
  background-position: right center;
  background-position-x: calc(100% - 1rem);
  background-image: url(../img/ico_arr_down_pri.svg);
}
@media (max-width: 767px) {
  .p-form select {
    width: 100%;
  }
}
.p-form input[type=checkbox],
.p-form input[type=radio] {
  vertical-align: middle;
  padding: 0;
  width: 1.25em;
  height: 1.25em;
  opacity: 0.4;
}
.p-form input[type=checkbox] + *,
.p-form input[type=radio] + * {
  vertical-align: middle;
}
.p-form input[type=checkbox]:checked,
.p-form input[type=radio]:checked {
  opacity: 1;
}
.p-form textarea {
  display: block;
}
.p-form textarea:focus,
.p-form select:focus,
.p-form input:focus {
  border-color: var(--c-pri);
}
.p-form input[type=checkbox],
.p-form input[type=submit] {
  padding: 0;
}
.p-form input[type=checkbox], .p-form input[type=checkbox]:focus,
.p-form input[type=submit],
.p-form input[type=submit]:focus {
  border: none;
}
.p-form input[type=radio],
.p-form input[type=checkbox] {
  margin-right: 0.375rem;
}
@media (max-width: 767px) {
  .p-form input[type=radio],
  .p-form input[type=checkbox] {
    margin-right: 0.5rem;
  }
}
.p-form button[type=submit] {
  width: 100%;
}
.p-form .wpcf7-response-output[class] {
  display: none !important;
}
.p-form .wpcf7-list-item.first {
  margin-left: 0;
}
@media (max-width: 767px) {
  .p-form .wpcf7-list-item {
    display: block;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .p-form .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 0.5rem;
  }
}
.p-form .wpcf7-not-valid-tip {
  display: block;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--c-error);
}

.wpcf7-response-output {
  display: none;
}

html.is-safari .p-form input[type=checkbox],
html.is-safari .p-form input[type=radio] {
  transform: scale(1.3);
  opacity: 0.8;
}

.p-sitemap {
  background-color: var(--c-gry-light);
  padding: 3rem 4rem;
}
@media (max-width: 767px) {
  .p-sitemap {
    padding: 1.5rem;
  }
}
.p-sitemap ul {
  list-style: none;
}
.p-sitemap ul li + li {
  margin-top: 0.5rem;
}
.p-sitemap__list[class] + .p-sitemap__list[class] {
  margin-top: 2rem;
}
.p-sitemap__list[class] > li + li {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-sitemap__list[class] > li + li {
    margin-top: 1rem;
  }
}
.p-sitemap__list[class] > li > a {
  font-weight: bold;
  font-size: 1.25rem;
}
.p-sitemap__list[class] ul {
  padding: 0 0 0 1.5rem;
  margin-top: 0.5rem;
}
.p-sitemap__list[class] ul:not(:has(> li)) {
  display: none;
}
@media (max-width: 767px) {
  .p-sitemap__list[class] ul {
    padding: 0 0 0 2rem;
  }
}

.p-post-list__list {
  border-top: 1px solid var(--c-gry);
  border-bottom: 1px solid var(--c-gry);
}
.p-post-list__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}
@media (max-width: 767px) {
  .p-post-list__item {
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
  }
}
.p-post-list__item + .p-post-list__item {
  border-top: 1px solid var(--c-gry);
}
.p-post-list__time {
  flex-shrink: 0;
  flex-grow: 0;
}
.p-post-list__cat {
  flex-shrink: 0;
  flex-grow: 0;
}
.p-post-list__title {
  flex-shrink: 1;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .p-post-list__title {
    width: 100%;
  }
}
.p-post-list__title > * {
  display: block;
}
.p-post-list__title a {
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_arr_right_pri.svg);
  padding-right: 1rem;
}
.p-post-list__title a,
.p-post-list__title a:hover {
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media (min-width: 960px) {
  .p-post-list__title a:hover {
    color: var(--c-pri);
  }
}

@media (min-width: 960px) {
  .p-post-card__list {
    flex-wrap: wrap;
    display: flex;
    margin: -3rem 0 0 -3rem;
  }
}
@media (min-width: 960px) {
  .p-post-card__item {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: calc(33.3333333333% - 3rem);
    max-width: calc(33.3333333333% - 3rem);
    margin: 3rem 0 0 3rem;
  }
}
@media (max-width: 767px) {
  .p-post-card__item + .p-post-card__item {
    margin-top: 1.25rem;
  }
}
.p-post-card__img {
  aspect-ratio: 16/9;
}
.p-post-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.p-post-card__img + * {
  margin-top: 1rem;
}
.p-post-card__meta {
  display: flex;
  align-items: center;
}
.p-post-card__meta > * + * {
  margin-left: 1rem;
}
.p-post-card__meta + * {
  margin-top: 1rem;
}
.p-post-card__title {
  font-weight: bold;
  font-size: 1.25rem;
}
.p-post-card__title a,
.p-post-card__title a:hover {
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media (min-width: 960px) {
  .p-post-card__title a:hover {
    color: var(--c-pri);
  }
}

.p-post-detail + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-post-detail + * {
    margin-top: 3.5rem;
  }
}
.p-post-detail__meta {
  align-items: center;
  display: flex;
}
.p-post-detail__meta > * + * {
  margin-left: 1rem;
}
.p-post-detail__meta + * {
  margin-top: 1rem;
}
.p-post-detail__title {
  font-weight: bold;
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .p-post-detail__title {
    font-size: 2rem;
  }
}
.p-post-detail__title + * {
  margin-top: 2rem;
}
.p-faq-list__list {
  border-top: 1px solid var(--c-gry);
  border-bottom: 1px solid var(--c-gry);
}
.p-faq-list__item + .p-faq-list__item {
  border-top: 1px solid var(--c-gry);
}
.p-faq-list__q, .p-faq-list__a {
  position: relative;
  padding: 1.5rem 0 1.5rem 2rem;
}
.p-faq-list__q::before, .p-faq-list__a::before {
  line-height: 1;
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin-top: 1.5rem;
}
.p-faq-list__q {
  font-weight: bold;
}
.p-faq-list__q::before {
  content: "Q.";
  color: var(--c-pri);
}
.p-faq-list.-accordion .p-faq-list__q {
  padding-right: 2rem;
}
.p-faq-list.-accordion .p-faq-list__q:hover {
  cursor: pointer;
}
.p-faq-list.-accordion .p-faq-list__q::after {
  transition: all 0.2s ease-in-out;
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-left: 2px solid var(--c-pri);
  border-bottom: 2px solid var(--c-pri);
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: center center;
  margin-right: 0.25rem;
  margin-top: 1.875rem;
}
.p-faq-list.-accordion .p-faq-list__q.is-active::after {
  transform: rotate(135deg);
  margin-top: 2.25rem;
}
.p-faq-list__a {
  padding-top: 0;
}
.p-faq-list__a::before {
  content: "A.";
  color: var(--c-sec);
  margin-top: 0.125rem;
}
.p-faq-list.-accordion .p-faq-list__a {
  display: none;
}
.p-faq-list.-accordion .p-faq-list__a.is-show {
  display: block;
}

/* =====================================
 * MVセクション
 * ================================== */
.p-home-section + .p-home-section {
  margin-top: 0rem;
}
.p-home-section__header + * {
  margin-top: 2rem;
}
.p-home-section__body + * {
  margin-top: 4rem;
}
.p-home-section.p-home-message[class] {
  margin-top: 0;
}

.p-home-mv {
  height: 100%;
}
@media (max-width: 767px) {
  .p-home-mv {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.p-home-mv__inner {
  position: relative;
  height: 100%;
  align-items: center;
}
@media (min-width: 960px) {
  .p-home-mv__inner {
    display: flex;
  }
}
@media (max-width: 767px) {
  .p-home-mv__inner {
    height: 100vh;
    position: relative;
  }
}
@media (max-width: 767px) {
  .p-home-mv__img {
    text-align: center;
  }
  .p-home-mv__img img {
    width: 125px;
  }
}
@media (min-width: 960px) {
  .p-home-mv__img + * {
    margin-left: 5rem;
  }
}
.p-home-mv__text-img {
  display: flex;
}
@media (max-width: 767px) {
  .p-home-mv__text-img {
    justify-content: center;
  }
}
.p-home-mv__text-img img {
  display: block;
}
@media (min-width: 960px) {
  .p-home-mv__text-img img {
    width: 261px;
  }
}
@media (max-width: 767px) {
  .p-home-mv__text-img img {
    max-width: 176px;
    width: 100%;
  }
}
.p-home-mv__text-img img + * {
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .p-home-mv__text-img img + * {
    margin-left: 0.25rem;
  }
}
.p-home-mv__text-img + * {
  margin-top: 1.5rem;
}
.p-home-mv__lead {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 2.8125rem;
  color: var(--c-wht);
}
@media (max-width: 767px) {
  .p-home-mv__lead {
    margin-top: 1rem;
    line-height: 1.5;
    margin-top: 6.25rem;
  }
}
.p-home-mv__lead + * {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .p-home-mv__lead + * {
    margin-top: 0.25rem;
  }
}
.p-home-mv__text {
  padding-top: 6.25rem;
}
.p-home-mv__title {
  font-size: 3.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--c-wht);
}
@media (max-width: 767px) {
  .p-home-mv__title {
    font-size: 2.25rem;
  }
}
.p-home-mv__title + * {
  margin-top: 1.5rem;
}
.p-home-mv__title span {
  font-size: 3.125rem;
}
@media (max-width: 767px) {
  .p-home-mv__title span {
    font-size: 1.625rem;
    letter-spacing: 0.05em;
  }
}
.p-home-mv__desc {
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-home-mv__desc {
    font-size: 0.75rem;
  }
}
.p-home-mv__desc + * {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-home-mv__desc + * {
    margin-top: 1.25rem;
  }
}
@media (min-width: 960px) {
  .p-home-mv__btn-wrap {
    display: flex;
  }
}
@media (max-width: 767px) {
  .p-home-mv__btn-wrap > * + * {
    margin-top: 1.125rem;
  }
}
.p-home-mv__btn-wrap .c-btn {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
@media (min-width: 960px) {
  .p-home-mv__btn-wrap .c-btn + * {
    margin-left: 2rem;
  }
}
.p-home-mv-wrap {
  position: relative;
  height: calc(100vh - 92px);
  margin-top: 92px;
}
@media (min-width: 960px) {
  .p-home-mv-wrap {
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-mv-wrap {
    margin-top: 64px;
    height: calc(100vh - 64px);
    max-height: 800px;
  }
}
@media (max-width: 767px) {
  .p-home-mv-wrap {
    margin-top: 57px;
    height: calc(100vh - 57px);
  }
}
.p-home-mv__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}
@media screen and (min-width: 768px) and (max-width: 1264px) {
  .p-home-mv__bg {
    width: 100%;
    max-height: 800px;
  }
}
.p-home-mv__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: repeat;
}
@media (max-width: 767px) {
  .p-home-mv__bg img {
    -o-object-position: 64% 50%;
       object-position: 64% 50%;
  }
}
.p-home-mv__banner {
  position: absolute;
  bottom: 1.25rem;
  right: 0;
}
@media (max-width: 767px) {
  .p-home-mv__banner {
    bottom: 1rem;
    right: auto;
    left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 450px;
  }
}
@media (min-width: 768px) {
  .p-home-mv__banner img {
    max-width: 400px;
  }
}
.p-home-mv__banner a {
  display: block;
}

/* =====================================
 * メッセージ
 * ================================== */
.p-home-message {
  height: 180vh;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-message {
    height: 150vh;
  }
}
@media (max-width: 767px) {
  .p-home-message {
    height: 150vh;
  }
}
.p-home-message__content {
  height: 180vh;
  overflow: hidden;
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 70rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-message__content {
    height: 150vh;
    padding-bottom: 200vw;
  }
}
@media (max-width: 767px) {
  .p-home-message__content {
    height: 150vh;
    padding-bottom: 200vw;
  }
}
@media screen and (max-width: 415px) {
  .p-home-message__content {
    padding-bottom: 60rem;
  }
}
@media screen and (max-width: 380px) {
  .p-home-message__content {
    padding-bottom: 40rem;
  }
}
.p-home-message__text {
  position: relative;
  width: calc(100vw - 2rem);
  transform: translateY(100vh);
  will-change: transform;
  padding-left: 1rem;
  padding-right: 1rem;
}
.p-home-message__desc {
  color: var(--c-wht);
  font-weight: bold;
  font-size: 1.125rem;
  color: #fff;
  line-height: 2.4;
}
@media (max-width: 767px) {
  .p-home-message__desc {
    font-size: 1rem;
  }
}

/* =====================================
 * 事業内容
 * ================================== */
.p-home-service {
  background-color: var(--c-wht);
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-home-service {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-home-service__inner {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .p-home-service__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-service__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-home-service__right {
  position: relative;
}
.p-home-service__img.-left img {
  max-width: 460px;
}
@media (max-width: 767px) {
  .p-home-service__img.-left img {
    max-width: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-service__img.-left img {
    max-width: 280px;
  }
}
.p-home-service__img.-right {
  position: absolute;
  content: "";
  right: -7.5rem;
  bottom: -1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 767px) {
  .p-home-service__img.-right {
    right: auto;
    left: 222px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-service__img.-right {
    right: auto;
    left: 222px;
  }
}
.p-home-service__img.-right img {
  max-width: 226px;
}
@media (max-width: 767px) {
  .p-home-service__img.-right img {
    max-width: 180px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-service__img.-right img {
    max-width: 180px;
  }
}
.p-home-service__body + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-service__body + * {
    margin-top: 4rem;
  }
}

.p-home-service__flow {
  display: flex;
  gap: 3.25rem;
  counter-reset: number 0;
}
@media (max-width: 767px) {
  .p-home-service__flow {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-service__flow {
    flex-direction: column;
  }
}
.p-home-service__flow-item {
  padding: 1.25rem;
  counter-increment: number 1;
}
@media (max-width: 767px) {
  .p-home-service__flow-item {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-service__flow-item {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
}
.p-home-service__flow-item + .p-home-service__flow-item {
  position: relative;
}
.p-home-service__flow-item + .p-home-service__flow-item::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_flow_arr.svg);
  background-size: 100%;
  position: absolute;
}
@media (min-width: 960px) {
  .p-home-service__flow-item + .p-home-service__flow-item::after {
    background-image: url(../img/ico_flow_arr_right.svg);
  }
}
@media (min-width: 768px) {
  .p-home-service__flow-item + .p-home-service__flow-item::after {
    top: 50%;
    transform: translateY(-50%);
    left: -2.25rem;
  }
}
@media (max-width: 767px) {
  .p-home-service__flow-item + .p-home-service__flow-item::after {
    top: -2.25rem;
    transform: translateX(-50%);
    left: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-service__flow-item + .p-home-service__flow-item::after {
    top: -2.25rem;
    transform: translateX(-50%);
    left: 50%;
  }
}
.p-home-service__flow-img + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-home-service__flow-img + * {
    margin-top: 0rem;
  }
}
.p-home-service__flow-title {
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .p-home-service__flow-title {
    flex-wrap: wrap;
  }
}
.p-home-service__flow-title span {
  color: var(--c-pri);
  font-size: 0.875rem;
  display: flex;
  gap: 0.25rem;
  align-items: baseline;
  text-transform: uppercase;
}
.p-home-service__flow-title span::after {
  content: "0" counter(number) "";
  display: block;
  font-size: 1.25rem;
}
.p-home-service__flow-title + * {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .p-home-service__flow-title + * {
    margin-top: 0.25rem;
  }
}

/* =====================================
 * 強み
 * ================================== */
.p-home-strengths-wrap {
  position: relative;
  height: 400px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .p-home-strengths-wrap {
    height: 377px;
  }
}
@media (min-width: 960px) {
  .p-home-strengths-wrap {
    overflow: hidden;
  }
}
.p-home-strengths-wrap + * {
  margin-top: 0;
}
.p-home-strengths__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 400px;
  width: 100vw;
}
@media (max-width: 767px) {
  .p-home-strengths__bg {
    height: 377px;
  }
}
.p-home-strengths__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: repeat;
}

.p-home-strengths {
  background-color: var(--c-blk);
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-home-strengths {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-home-strengths > *,
.p-home-strengths .c-headline__en {
  color: var(--c-wht);
}
.p-home-strengths > *::before,
.p-home-strengths .c-headline__en::before {
  background-color: var(--c-wht);
}
.p-home-strengths__inner {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .p-home-strengths__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-home-strengths__right {
  position: relative;
}
.p-home-strengths__img.-left img {
  max-width: 460px;
}
.p-home-strengths__img.-right {
  position: absolute;
  content: "";
  right: -7.5rem;
  bottom: -1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-home-strengths__img.-right img {
  max-width: 226px;
}
.p-home-strengths__body + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-strengths__body + * {
    margin-top: 2.5rem;
  }
}
.p-home-strengths__header + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-strengths__header + * {
    margin-top: 2.5rem;
  }
}

.p-home-strengths__list {
  display: flex;
  gap: 3.5%;
  counter-reset: number 0;
}
@media (max-width: 767px) {
  .p-home-strengths__list {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-home-strengths__list-item {
  padding: 2rem;
  counter-increment: number 1;
  background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .p-home-strengths__list-item {
    flex-basis: 31%;
    max-width: 31%;
  }
}
@media (max-width: 767px) {
  .p-home-strengths__list-item {
    padding: 1rem;
  }
}
.p-home-strengths__list-item + .p-home-strengths__list-item {
  position: relative;
}
.p-home-strengths__list-img + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-home-strengths__list-img + * {
    margin-top: 0.5rem;
  }
}
.p-home-strengths__list-num {
  color: var(--c-pri);
  display: flex;
  gap: 0.25rem;
  align-items: baseline;
  text-transform: capitalize;
  color: var(--c-wht);
  font-weight: bold;
}
.p-home-strengths__list-num::after {
  content: "0" counter(number) "";
  display: block;
  font-size: 1.5rem;
}
.p-home-strengths__list-num + * {
  margin-top: 0.5rem;
}
.p-home-strengths__list-title {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.p-home-strengths__list-title + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-home-strengths__list-title + * {
    margin-top: 0.75rem;
  }
}

/* =====================================
 * 採用情報
 * ================================== */
.p-home-recruit {
  padding-top: 8rem;
}
@media (max-width: 767px) {
  .p-home-recruit {
    padding-top: 5rem;
  }
}
.p-home-recruit-wrap {
  position: relative;
  height: 60vh;
  margin-top: 0;
}
@media (min-width: 960px) {
  .p-home-recruit-wrap {
    overflow: hidden;
  }
}
.p-home-recruit__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 60vh;
  width: 100vw;
}
@media (max-width: 767px) {
  .p-home-recruit__bg {
    height: 480px;
  }
}
.p-home-recruit__bg img {
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .p-home-recruit__bg img {
    height: 480px;
  }
}
.p-home-recruit__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: repeat;
}
.p-home-recruit .c-headline__ja,
.p-home-recruit .c-headline__title,
.p-home-recruit .c-headline__en,
.p-home-recruit .c-headline__subtitle {
  color: var(--c-wht);
}
.p-home-recruit .c-headline__ja::before,
.p-home-recruit .c-headline__title::before,
.p-home-recruit .c-headline__en::before,
.p-home-recruit .c-headline__subtitle::before {
  background-color: var(--c-wht);
}
.p-home-recruit .c-headline__title + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-home-recruit .c-headline__title + * {
    margin-top: 0.75rem;
  }
}

/* =====================================
 * 環境
 * ================================== */
.p-home-environment {
  background-color: var(--c-wht);
  margin-top: -12rem;
  padding-top: 18rem;
}
@media (max-width: 767px) {
  .p-home-environment {
    margin-top: -9rem;
    padding-top: 12rem;
  }
}
.p-home-environment__header + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-environment__header + * {
    margin-top: 2.5rem;
  }
}
.p-home-environment__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-home-environment__list {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .p-home-environment__item {
    flex-basis: 48%;
    max-width: 48%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-environment__item {
    min-height: 290px;
  }
}
.p-home-environment__item {
  position: relative;
}
.p-home-environment__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-wht);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-home-environment__title {
    font-size: 1.125rem;
  }
}
.p-home-environment__desc {
  font-weight: bold;
  color: var(--c-wht);
}
@media (max-width: 767px) {
  .p-home-environment__desc {
    font-size: 0.875rem;
  }
}
.p-home-environment ul[class] {
  list-style: disc;
  padding-left: 1.25rem;
}
.p-home-environment ul[class] li::marker {
  font-size: 0.85rem;
}
.p-home-environment__text {
  position: absolute;
  padding: 2rem;
  height: 100%;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .p-home-environment__text {
    padding: 1rem;
  }
}
.p-home-environment__bg {
  position: relative;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
}
.p-home-environment__bg::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.4);
  position: absolute;
}
.p-home-environment__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: repeat;
}

/* =====================================
 * 企業文化·価値観
 * ================================== */
.p-home-culture {
  background-color: var(--c-wht);
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-home-culture {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-home-culture__inner {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .p-home-culture__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-home-culture__right {
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 768px) {
  .p-home-culture__right {
    width: 32%;
    max-width: 520px;
  }
}
.p-home-culture__body + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-culture__body + * {
    margin-top: 2.5rem;
  }
}
.p-home-culture__list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .p-home-culture__list {
    gap: 0 5%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .p-home-culture__list {
    width: calc(100vw - 1.5rem);
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-culture__list {
    gap: 0 2%;
  }
}
.p-home-culture__list-img {
  text-align: center;
}
@media (max-width: 767px) {
  .p-home-culture__list-img {
    max-width: 4rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-culture__list-img {
    max-width: 100px;
    margin: 0 auto;
  }
}
.p-home-culture__list-img + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-home-culture__list-img + * {
    margin-top: 0.75rem;
  }
}
.p-home-culture__item {
  border: 1px dashed var(--c-pri);
  padding: 4rem;
  border-radius: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-home-culture__item {
    flex-basis: 30%;
    max-width: 30%;
  }
  .p-home-culture__item:nth-child(4), .p-home-culture__item:nth-child(5) {
    margin-top: -7.5rem;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 767px) {
  .p-home-culture__item {
    padding: 1.5rem;
    flex-basis: 50%;
    max-width: 50%;
  }
  .p-home-culture__item:first-child, .p-home-culture__item:nth-child(2n+1) {
    margin-right: -0.5rem;
  }
  .p-home-culture__item:nth-child(2n) {
    margin-left: -0.5rem;
  }
  .p-home-culture__item:nth-child(n+3) {
    margin-top: -1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-culture__item {
    flex-basis: 32%;
    max-width: 32%;
    padding: 2rem;
  }
  .p-home-culture__item:nth-child(4), .p-home-culture__item:nth-child(5) {
    margin-top: -4.5rem;
  }
}
.p-home-culture__title {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-home-culture__title {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-culture__title {
    font-size: 1.15rem;
  }
}

/* =====================================
 * 数字
 * ================================== */
.p-home-number-wrap {
  position: relative;
  height: 800px;
  margin-top: 0rem;
}
@media (min-width: 960px) {
  .p-home-number-wrap {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .p-home-number-wrap {
    height: 275px;
  }
}
.p-home-number-wrap + * {
  margin-top: 0rem;
}
.p-home-number__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 800px;
  width: 100vw;
}
@media (max-width: 767px) {
  .p-home-number__bg {
    height: 275px;
  }
}
.p-home-number__bg img {
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .p-home-number__bg img {
    height: 275px;
    -o-object-position: 57% center;
       object-position: 57% center;
  }
}
.p-home-number__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: repeat;
}

.p-home-number {
  background-color: var(--c-blk);
  padding-top: 8rem;
  padding-bottom: 8rem;
  margin-top: 0rem;
}
@media (max-width: 767px) {
  .p-home-number {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-home-number h2,
.p-home-number .c-lead__desc {
  color: var(--c-wht);
  border-color: var(--c-gry-dark);
}
.p-home-number h2::after,
.p-home-number .c-lead__desc::after {
  background-color: var(--c-wht);
}
.p-home-number .c-lead + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-home-number .c-lead + * {
    margin-top: 3rem;
  }
}
.p-home-number__img {
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 767px) {
  .p-home-number__img {
    position: absolute;
    top: 1rem;
    right: 1rem;
    max-width: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-number__img {
    font-size: 30%;
  }
}
.p-home-number__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-home-number__list {
    gap: 1rem;
  }
}
.p-home-number__item {
  background-color: var(--c-wht);
  flex-basis: calc(33.3333333333% - 0.3333333333rem);
  max-width: calc(33.3333333333% - 0.3333333333rem);
  padding: 2rem;
}
@media (max-width: 767px) {
  .p-home-number__item {
    flex-basis: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    padding: 1rem;
    position: relative;
  }
}
.p-home-number__item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-home-number__item-inner + * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p-home-number__item-inner + * {
    margin-top: 1rem;
  }
}
.p-home-number__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-home-number__title + * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p-home-number__title + * {
    margin-top: 1rem;
  }
}
.p-home-number__number {
  font-size: 6rem;
  font-weight: bold;
  color: var(--c-pri);
  line-height: 1;
}
@media (max-width: 767px) {
  .p-home-number__number {
    font-size: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-number__number {
    font-size: 9vw;
  }
}
.p-home-number__number:has(.-colon) {
  display: flex;
}
.p-home-number__number span {
  font-size: 2rem;
  color: var(--c-blk);
}
@media (max-width: 767px) {
  .p-home-number__number span {
    font-size: 1.5rem;
  }
}
.p-home-number__number span.-colon {
  font-size: 6rem;
  margin-top: -0.5rem;
}
@media (max-width: 767px) {
  .p-home-number__number span.-colon {
    font-size: 4rem;
    margin-top: -0.25rem;
  }
}

/* =====================================
 * 募集要項
 * ================================== */
.p-home-requirements {
  background-color: var(--c-wht);
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-home-requirements {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-home-requirements__body + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-requirements__body + * {
    margin-top: 2.5rem;
  }
}

.p-home-requirements__table.c-table {
  border-right: 1px solid transparent;
}
.p-home-requirements__table.c-table ul:not([class]) {
  margin-top: 0;
}
.p-home-requirements__table.c-table ul:not([class]) li::marker {
  font-size: 0.875rem;
}
.p-home-requirements__table.c-table th,
.p-home-requirements__table.c-table td {
  background-color: transparent;
  border-left: 1px solid transparent;
}
@media (max-width: 767px) {
  .p-home-requirements__table.c-table th,
  .p-home-requirements__table.c-table td {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .p-home-requirements__table.c-table th {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .p-home-requirements__table.c-table td {
    border-top: 1px solid transparent;
    padding: 0.5rem 1.5rem 0.875rem 0rem;
  }
}
.p-home-requirements__table.c-table tr:first-child th,
.p-home-requirements__table.c-table tr:first-child td {
  border-top: 1px solid transparent;
}

/* =====================================
 * 採用の流れ
 * ================================== */
.p-home-flow {
  background-color: var(--c-gry-light);
  padding-top: 8rem;
  padding-bottom: 18rem;
}
@media (max-width: 767px) {
  .p-home-flow {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}
.p-home-flow__header + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-flow__header + * {
    margin-top: 2.5rem;
  }
}
.p-home-flow__list {
  counter-reset: number 0;
}
.p-home-flow__item {
  counter-increment: number 1;
  display: flex;
  gap: 5%;
  background-color: var(--c-wht);
  padding: 2rem;
}
@media (max-width: 767px) {
  .p-home-flow__item {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
}
.p-home-flow__item + .p-home-flow__item {
  margin-top: 3.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-home-flow__item + .p-home-flow__item {
    margin-top: 2.5rem;
  }
}
.p-home-flow__item + .p-home-flow__item::after {
  content: "";
  display: block;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_flow_arr.svg);
  background-size: 100%;
  position: absolute;
}
@media (max-width: 767px) {
  .p-home-flow__item + .p-home-flow__item::after {
    top: -1.75rem;
  }
}
.p-home-flow__title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p-home-flow__title {
    flex-basis: 16%;
    max-width: 16%;
    min-width: 176px;
  }
}
.p-home-flow__title-text {
  font-weight: bold;
  font-size: 1.25rem;
}
.p-home-flow__title-text span {
  padding-right: 1.75rem;
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--c-pri);
  font-size: 0.875rem;
}
.p-home-flow__title-text span::before {
  content: "0" counter(number) "";
  display: block;
  top: 0;
  right: 0;
  color: var(--c-pri);
  position: absolute;
  font-size: 1.25rem;
  line-height: 1;
}
.p-home-flow__img {
  max-width: 3.5rem;
  flex-shrink: 0;
  flex-grow: 0;
}
.p-home-flow__desc + * {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-home-flow__desc + * {
    margin-top: 1rem;
  }
}
.p-home-flow__btn.c-btn {
  margin-left: 0;
}

/* =====================================
 * よくある質問
 * ================================== */
.p-home-faq {
  background-color: var(--c-wht);
  padding-top: 18rem;
  padding-bottom: 8rem;
  margin-top: -12rem;
}
@media (max-width: 767px) {
  .p-home-faq {
    padding-top: 15rem;
    padding-bottom: 5rem;
  }
}
.p-home-faq__header + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-faq__header + * {
    margin-top: 2.5rem;
  }
}

.c-faq {
  counter-reset: number;
}
.c-faq .c-faq__q + * {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .c-faq .c-faq__q + * {
    margin-top: 1rem;
  }
}
.c-faq .c-faq__q-title {
  position: relative;
  padding-left: 3rem;
  padding-right: 2rem;
  min-height: 2.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c-faq .c-faq__q-title {
    font-size: 1.125rem;
    padding-left: 2rem;
  }
}
.c-faq .c-faq__q-title::before {
  content: "Q.";
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.75rem;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  z-index: 1;
  top: 0.25rem;
  left: 0rem;
  color: var(--c-pri);
}
@media (max-width: 767px) {
  .c-faq .c-faq__q-title::before {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .c-faq .c-faq__a {
    margin-left: 3.25rem;
  }
}
.c-faq .c-faq__a-title {
  position: relative;
  padding-left: 2rem;
  padding-top: 0.35rem;
}
.c-faq .c-faq__a-title + * {
  padding-left: 4.5rem;
  margin-top: 1rem;
}
.c-faq .c-faq__a-title > * {
  font-size: 1rem;
}
.c-faq .c-faq__a-title > * strong {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .c-faq .c-faq__a-title > * strong {
    font-size: 1rem;
  }
}
.c-faq .c-faq__a-title strong {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .c-faq .c-faq__a-title strong {
    font-size: 1rem;
  }
}
.c-faq .c-faq__a-title::before {
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.75rem;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  left: 0rem;
  color: var(--c-pri);
}
@media (max-width: 767px) {
  .c-faq .c-faq__a-title::before {
    font-size: 1.25rem;
  }
}
.c-faq a[target=_blank] {
  position: relative;
}
.c-faq a[target=_blank]::after {
  content: "";
  display: content;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_blank.svg);
  padding-right: 1.5rem;
}

.c-faq__item {
  border-bottom: 1px solid var(--c-pri-light);
  padding-bottom: 1rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .c-faq__item {
    padding-left: 0rem;
  }
}
.c-faq__item + .c-faq__item {
  margin-top: 1rem;
}

.c-faq__q {
  position: relative;
  cursor: pointer;
}
.c-faq__q > * {
  font-weight: normal;
}

.c-faq__q.-hoge:before,
.c-faq__q.-hoge:after {
  display: none;
}

.c-faq__q:before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(0.55rem - 2px);
  transform: translateY(-50%);
  width: 2px;
  height: 1rem;
  background-color: var(--c-pri);
}

.c-faq__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background-color: var(--c-pri);
}

.c-faq__a {
  display: none;
}

.c-faq__a-text {
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .c-faq__a-text {
    padding-left: 2rem;
  }
}

.c-faq__a-title {
  position: relative;
}

.c-faq__a-note {
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.is-active .c-faq__q:before {
  display: none;
}

/* =====================================
 * 会社情報
 * ================================== */
.p-home-company {
  background-color: var(--c-gry-light);
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-home-company {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-home-company__inner {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .p-home-company__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-company__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-home-company__right {
  position: relative;
  display: flex;
  gap: 5%;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-company__right {
    justify-content: center;
  }
}
.p-home-company__list {
  display: flex;
  flex-wrap: wrap;
}
.p-home-company__list dt {
  font-weight: bold;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--c-pri-light);
  flex-basis: 30%;
  max-width: 30%;
}
@media (max-width: 767px) {
  .p-home-company__list dt {
    padding: 1rem;
    flex-basis: 21%;
    max-width: 21%;
    padding-left: 0;
  }
}
.p-home-company__list dd {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--c-pri-light);
  flex-basis: 70%;
  max-width: 70%;
}
@media (max-width: 767px) {
  .p-home-company__list dd {
    padding: 1rem;
    flex-basis: 79%;
    max-width: 79%;
    padding-right: 0;
  }
}
.p-home-company__img {
  max-width: 188px;
}
.p-home-company__img.-center {
  padding-top: 4.25rem;
}
.p-home-company__img.-right {
  padding-top: 1.5rem;
}
.p-home-company__header + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-company__header + * {
    margin-top: 2rem;
  }
}
.p-home-company__body + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-company__body + * {
    margin-top: 2rem;
  }
}

/* =====================================
 * CV
 * ================================== */
.c-footer-cv {
  position: relative;
  height: 500px;
  margin-top: 0rem;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .c-footer-cv {
    height: 488px;
  }
}
.c-footer-cv + * {
  margin-top: 0rem;
}
.c-footer-cv__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 500px;
  width: 100vw;
}
@media (max-width: 767px) {
  .c-footer-cv__bg {
    height: 488px;
  }
}
.c-footer-cv__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: repeat;
}
.c-footer-cv__box {
  background-color: var(--c-pri);
  padding: 5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11rem;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .c-footer-cv__box {
    width: calc(100vw - 2rem);
    padding: 1rem;
    margin-right: 1rem;
    padding-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .c-footer-cv__box:hover {
    background-color: var(--c-sec);
  }
}
.c-footer-cv__box::before {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: -1rem;
  width: 359px;
  height: 351px;
  background-image: url(../img/img_footer_cv_logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 358px auto;
  opacity: 0.04;
  z-index: 0;
}
@media (max-width: 767px) {
  .c-footer-cv__box::before {
    right: -2.5rem;
    width: 220px;
    height: 215px;
    background-size: 220px auto;
  }
}
.c-footer-cv__title {
  color: var(--c-wht);
  font-weight: bold;
  font-size: 5rem;
}
@media (max-width: 767px) {
  .c-footer-cv__title {
    font-size: 2.5rem;
  }
}
.c-footer-cv__desc {
  color: var(--c-wht);
  font-weight: bold;
}
.c-footer-cv__btn a {
  font-size: 0;
  width: 5rem;
  height: 5rem;
  display: inline-block;
  border: 1px solid var(--c-wht);
  border-radius: 50%;
  background-image: url(../img/ico_blank.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.125rem auto;
}
@media (max-width: 767px) {
  .c-footer-cv__btn a {
    width: 4rem;
    height: 4rem;
    background-size: 1rem auto;
  }
}
.c-footer-cv__btn a::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/* =====================================
 * インタビュー
 * ================================== */
@media (min-width: 960px) {
  .p-home-interview__inner {
    display: flex;
    align-items: end;
  }
}
@media (min-width: 960px) {
  .p-home-interview__inner > * {
    flex-basis: 50%;
    max-width: 50%;
  }
}

.p-home-interview {
  position: relative;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: var(--c-wht);
}
@media (max-width: 767px) {
  .p-home-interview {
    padding-bottom: 5rem;
  }
}
.p-home-interview__header + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-home-interview__header + * {
    margin-top: 2.5rem;
  }
}

.swiper.c-interview-slider {
  /* スライダー左の余白 */
  width: 100%;
  overflow: visible;
}
.swiper.c-interview-slider + .c-btn {
  margin-top: -3rem;
}
@media (max-width: 767px) {
  .swiper.c-interview-slider + .c-btn {
    margin-top: 4rem;
  }
}
.swiper.c-interview-slider .swiper-button-prev.c-interview-slider-button-prev {
  top: auto;
  bottom: -0.7rem;
  right: auto;
  left: 0;
  border: 1px solid var(--c-pri);
  width: 3rem;
  height: 3rem;
  transition: all 0.2s ease-in-out;
}
.swiper.c-interview-slider .swiper-button-prev.c-interview-slider-button-prev::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-size: 100%;
  background-image: url(../img/ico_arr_slider_left.svg);
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
}
.swiper.c-interview-slider .swiper-button-prev.c-interview-slider-button-prev:hover {
  background-color: var(--c-pri);
}
.swiper.c-interview-slider .swiper-button-prev.c-interview-slider-button-prev:hover::after {
  background-image: url(../img/ico_arr_left_wht.svg);
}
.swiper.c-interview-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper.c-interview-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper.c-interview-slider .swiper-button-next.c-interview-slider-button-next {
  top: auto;
  bottom: -0.7rem;
  right: auto;
  left: calc(3rem + 20px);
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--c-pri);
  transition: all 0.2s ease-in-out;
}
.swiper.c-interview-slider .swiper-button-next.c-interview-slider-button-next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-size: 100%;
  background-image: url(../img/ico_arr_slider_right.svg);
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .swiper.c-interview-slider .swiper-button-next.c-interview-slider-button-next::after {
    width: 1rem;
    height: 1rem;
  }
}
.swiper.c-interview-slider .swiper-button-next.c-interview-slider-button-next:hover {
  background-color: var(--c-pri);
}
.swiper.c-interview-slider .swiper-button-next.c-interview-slider-button-next:hover::after {
  background-image: url(../img/ico_arr_right_wht.svg);
}
@media (max-width: 767px) {
  .swiper.c-interview-slider .swiper-wrapper {
    margin-left: -1rem;
  }
}
.swiper.c-interview-slider .c-interview-slider-slide img {
  width: -moz-fit-content;
  width: fit-content;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .swiper.c-interview-slider .c-interview-slider-slide img {
    width: 100%;
  }
}
.swiper.c-interview-slider .c-interview-slider-slide img + * {
  margin-top: 1rem;
}
.swiper.c-interview-slider .c-interview-slider-title {
  font-weight: bold;
}
.swiper.c-interview-slider .swiper-pagination-bullet-active {
  background: var(--c-pri);
}
.swiper.c-interview-slider .swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #016F38);
}

.p-interview-list__title,
.p-interview-list__desc,
.p-interview-list__name {
  transition: all 0.2s ease-in-out;
}

.p-interview-list__item {
  position: relative;
  cursor: pointer;
}
@media (min-width: 960px) {
  .p-interview-list__item:hover .p-interview-list__img img {
    transform: scale(1.1);
  }
}
.p-interview-list__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-pri-light);
}
.p-interview-list__title + * {
  margin-top: 0.5rem;
}
.p-interview-list__name {
  color: var(--c-pri);
  font-weight: bold;
}
.p-interview-list__name + * {
  margin-top: 0.25rem;
}
.p-interview-list__position {
  font-size: 0.875rem;
  color: var(--c-gry-dark);
}
.p-interview-list__position + * {
  margin-top: 1.25rem;
}
.p-interview-list__btn button {
  color: var(--c-pri);
  font-weight: bold;
  position: relative;
  padding-right: 2.5rem;
}
.p-interview-list__btn button::after {
  content: "";
  display: block;
  top: -0.25rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_modal.svg);
  background-size: 100%;
  position: absolute;
}
.p-interview-list__img {
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 374px;
  margin: 0 auto;
}
.p-interview-list__img img {
  transition: all 0.5s ease-in-out;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-interview-list__img + * {
  margin-top: 1.5rem;
}

.c-interview-slider-buttons {
  margin-top: 5.5rem;
}
@media (max-width: 767px) {
  .c-interview-slider-buttons {
    margin-top: 3rem;
  }
}
.c-interview-slider-buttons .c-interview-slider-pagination {
  width: -moz-fit-content;
  width: fit-content;
  position: static;
}
.c-interview-slider-buttons .swiper-button-prev,
.c-interview-slider-buttons .swiper-button-next {
  position: static;
  margin-top: 0;
}

.c-interview-slider-button-wrap {
  display: flex;
  gap: 1.25rem;
  height: 3rem;
}

.c-interview-slider-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 3rem;
}
@media (max-width: 767px) {
  .c-interview-slider-buttons {
    justify-content: space-between;
  }
}

/* =====================================
 * モーダル
 * ================================== */
.c-modal-content {
  padding: 10vw;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .c-modal-content {
    padding: 4vw;
    top: 2.65rem;
    padding-top: 3rem;
    padding-bottom: 10rem;
  }
}
@media (min-width: 768px) {
  .c-modal-content .l-container {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
.c-modal-content__inner {
  background-color: var(--c-wht);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 6vw;
}
@media (max-width: 767px) {
  .c-modal-content__inner {
    padding: 4vw;
  }
}
@media (max-width: 767px) {
  .c-modal-content__inner .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.c-modal-content__header {
  position: relative;
}
.c-modal-content__header-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--c-wht);
  padding-top: 1rem;
  padding-right: 1rem;
}
@media (min-width: 960px) {
  .c-modal-content__header-text {
    padding-top: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .c-modal-content__header-text {
    padding-top: 1rem;
    padding-right: 1rem;
  }
}
.c-modal-content__header-title {
  font-weight: bold;
  border-bottom: 1px solid var(--c-pri);
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 960px) {
  .c-modal-content__header-title {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .c-modal-content__header-title {
    font-size: 1.25rem;
    padding-bottom: 0.5rem;
  }
}
.c-modal-content__header-title + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .c-modal-content__header-title + * {
    margin-top: 0.5rem;
  }
}
.c-modal-content__header-name {
  font-size: 1.25rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-modal-content__header-name {
    font-size: 1.125rem;
  }
}
.c-modal-content__header-name + * {
  margin-top: 0.5rem;
}
.c-modal-content__header-position {
  font-size: 0.875rem;
  color: var(--c-gry-dark);
}
.c-modal-content__header + * {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .c-modal-content__header + * {
    margin-top: 5rem;
  }
}
@media (max-width: 767px) {
  .c-modal-content__header-img img {
    height: 422px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 59% center;
       object-position: 59% center;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .c-modal-content__header-img img {
    -o-object-position: 4rem 0;
       object-position: 4rem 0;
  }
}
.c-modal-content__body + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .c-modal-content__body + * {
    margin-top: 2rem;
  }
}

.c-modal-content__box {
  display: flex;
  gap: 2.5rem;
  flex-direction: column-reverse;
}
@media (min-width: 960px) {
  .c-modal-content__box {
    flex-direction: row;
  }
}
.c-modal-content__box:not(.-reverse) {
  flex-direction: column-reverse;
}
@media (min-width: 960px) {
  .c-modal-content__box:not(.-reverse) {
    flex-direction: row-reverse;
  }
}
.c-modal-content__box + .c-modal-content__box {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .c-modal-content__box + .c-modal-content__box {
    margin-top: 3.5rem;
  }
}
.c-modal-content__box.-text .c-modal-content__box-text {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
@media (min-width: 960px) {
  .c-modal-content__box.-text .c-modal-content__box-text {
    flex-direction: row;
  }
}
.c-modal-content__box.-text .c-modal-content__box-title {
  width: -moz-fit-content;
  width: fit-content;
}
.c-modal-content__box.-text .c-modal-content__box-title + * {
  margin-top: 0;
}
.c-modal-content__box-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--c-pri);
  flex-shrink: 0;
  flex-grow: 0;
}
.c-modal-content__box-title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .c-modal-content__box-title + * {
    margin-top: 1rem;
  }
}
.c-modal-content__box-img {
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .c-modal-content__box-img {
    width: 50%;
    max-width: 480px;
  }
}

.c-modal-content__close {
  text-align: center;
}
.c-modal-content__close button {
  background-color: var(--c-blk);
  color: var(--c-wht);
  border: none;
  padding: 1.25rem;
  cursor: pointer;
  transition: opacity 0.3s;
  min-width: 320px;
}
@media (max-width: 767px) {
  .c-modal-content__close button {
    min-width: 310px;
  }
}
.c-modal-content__close button:hover {
  opacity: 0.8;
}
.c-modal-content__close.-top button {
  font-size: 0;
  background-image: url(../img/ico_close.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: -1.75rem;
  right: -1.75rem;
  min-width: auto;
  background-color: transparent;
}
@media (max-width: 767px) {
  .c-modal-content__close.-top button {
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: -1.85rem;
    right: -1rem;
    border-radius: 3rem;
  }
}

.c-modal-content__footer {
  margin-top: 2rem;
}
.c-modal-content__footer + * {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .c-modal-content__footer + * {
    margin-top: 5rem;
  }
}
@media (max-width: 767px) {
  .c-modal-content__footer-img {
    height: 422px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .c-modal-content__footer-img img {
    height: 422px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}/*# sourceMappingURL=style.css.map */