@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: #004097;
  --c-pri-light: #95c1e1;
  --c-sec: #f2a414;
  --c-gry-dark: #ccc;
  --c-gry: #d8d8d8;
  --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%;
  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: 300;
  font-size: 1rem;
  font-family: "Jost", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  width: 100%;
  overflow-x: hidden;
}
p {
  line-height: 1.75;
  letter-spacing: 0.04em;
}

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;
  }
}
a:not([class])[href^="#"], a:not([class])[data-type=URL] {
  color: var(--c-pri);
}

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

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: var(--c-gry);
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--c-gry);
}

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

::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;
  -webkit-box-shadow: 0 0 0.5rem var(--c-gry) inset;
  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);
  -webkit-backface-visibility: hidden;
  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: 2rem;
  height: 5rem;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.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;
  font-size: 0 !important;
  width: 100%;
  height: 100%;
}

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

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
  background: url(../img/img_service_slide01_prev.svg) no-repeat center center/contain;
}

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

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
  background: url(../img/img_service_slide01_next.svg) no-repeat center center/contain;
}

.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: 0;
  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;
  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(-c-blk);
}

.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 0.75rem;
}

.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%;
  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;
  -webkit-backface-visibility: hidden;
  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;
  -webkit-backface-visibility: hidden;
  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;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

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

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

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

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

.swiper-cards {
  overflow: visible;
}

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

.l-header {
  /*固定ヘッダーの時にこちらのクラスを付ける*/
}
.l-header[class] a {
  color: inherit;
  text-decoration: none;
}
.l-header.js-fixed-header {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--c-wht);
}
.l-header.is-active {
  background-color: var(--c-wht);
  z-index: 100000;
}
.l-header__inner {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .l-header__inner {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    height: 52px;
  }
}
@media (min-width: 768px) {
  .l-header__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 57px;
    margin-right: -1.25rem;
  }
}
@media (min-width: 960px) {
  .l-header__inner {
    padding-top: 0rem;
    padding-bottom: 0rem;
    height: 100px;
    margin-right: 0;
  }
}
.l-header__logo-title {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-header__logo-title {
    height: 0;
    opacity: 0;
  }
  .l-header__logo-title img {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .l-header__logo-title {
    height: 0;
    opacity: 0;
  }
  .l-header__logo-title img {
    margin-top: 0;
  }
}
.l-header__logo-title + * {
  margin-top: 0.5rem;
}
.l-header__logo img {
  width: auto;
  max-height: 20px;
}
@media (min-width: 768px) {
  .l-header__logo img {
    max-height: 31px;
  }
}
@media (min-width: 960px) {
  .l-header__logo img {
    max-height: 31px;
  }
}
.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;
}
.l-header__link-contact + * {
  margin-top: 1rem;
}
@media (min-width: 960px) {
  .l-header__link-contact {
    flex-direction: row-reverse;
    padding-top: 0;
  }
}
@media screen and (max-width: 959px) {
  .l-header__link-contact {
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 960px) {
  .l-header__link-contact > * + * {
    margin-left: 2rem;
  }
}
.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 screen and (max-width: 959px) {
  .l-header__link {
    margin: 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: 5rem 1rem;
  background-image: url(../img/ico_blank2.svg);
  padding-right: 1rem;
}
.l-header__btn {
  order: 25;
  margin-top: 1rem;
}
@media (min-width: 960px) {
  .l-header__btn {
    margin-top: 0;
  }
}
.l-header__menu {
  margin-left: auto;
  display: none;
  background-color: var(--c-wht);
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 1rem 2rem;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .l-header__menu {
    margin-top: 57px;
  }
}
@media (min-width: 960px) {
  .l-header__menu {
    display: block;
    background: none;
    position: relative;
    width: auto;
    padding: inherit;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .l-header__menu {
    margin-top: 52px;
  }
}
@media (min-width: 960px) {
  .l-header__menu > * {
    margin-right: calc(200px - 1.25rem);
  }
}
.l-header__menu.is-active {
  background-color: var(--c-gry-light);
  flex-direction: column;
  display: flex;
  height: calc(100svh - 96px);
  overflow: auto;
}
@media (max-width: 767px) {
  .l-header__menu.is-active {
    height: calc(100svh - 64px);
  }
}
@media (min-width: 960px) {
  .l-header__menu.is-active {
    display: block;
    background: none;
  }
}
.l-header__gnav {
  display: block;
  order: 1;
}
.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;
  }
}
@media (min-width: 960px) {
  .l-header__menu-list li + li {
    margin-left: 1.5rem;
  }
}
.l-header__menu-list li a {
  position: relative;
  display: block;
  font-size: 1.125rem;
  padding: 0.875rem 0;
}
@media (min-width: 960px) {
  .l-header__menu-list li a {
    display: inline-block;
    text-align: inherit;
    font-size: 1rem;
    padding: inherit;
  }
}
.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: 1px;
    margin-bottom: -0.25rem;
  }
}
@media screen and (max-width: 959px) {
  .l-header__menu-list li a::after {
    display: none;
  }
}
.l-header__menu-list li a.is-current::after {
  left: 0;
  right: auto;
  width: 100%;
  background-color: var(--c-pri);
  height: 1px;
}
@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%;
  }
}
@media screen and (max-width: 959px) {
  .l-header__menu-list > li {
    border-bottom: 1px solid var(--c-gry);
  }
}
.l-header__menu-list > li > .sub-menu {
  display: none;
}
.l-header__menu-list .sub-menu > li a {
  font-size: 1rem;
  margin-left: 1rem;
}
.l-header__menu-list .sub-menu .sub-menu > li {
  position: relative;
  margin-left: 2rem;
}
.l-header__menu-list .sub-menu .sub-menu > li::after {
  position: absolute;
  content: "";
  top: 45%;
  left: 0;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 1px;
  background: #000;
}
.l-header__menu-list .sub-menu .sub-menu > li a {
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .l-header__menu-list .sub-menu #menu-item-2431 {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 959px) {
  .l-header__menu-list > li > a {
    font-weight: 500;
  }
}
.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: 1.5rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 1222px) {
  .l-header__link-list li + li {
    margin-left: 1rem;
  }
}
.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;
  }
}
@media screen and (min-width: 960px) and (max-width: 1222px) {
  .l-header__link-list li a {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 959px) {
  .l-header__link-list li a {
    font-size: 1.125rem;
    padding: 0.875rem 0 !important;
    display: block !important;
  }
}
@media screen and (max-width: 959px) {
  .l-header__link-list li.-download a {
    position: relative;
    margin-top: 3rem;
    border: 1px solid var(--c-blk);
    text-align: center;
    padding: 1.35rem 0 1.35rem 2rem !important;
  }
  .l-header__link-list li.-download a::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 6.5rem;
    transform: translate(0, -50%);
    width: 1.25rem;
    aspect-ratio: 1/1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/ico_download.svg);
  }
}
.l-header__link-list li {
  text-align: center;
}
@media screen and (max-width: 959px) {
  .l-header__link-list li {
    text-align: inherit;
    border-bottom: 1px solid var(--c-gry);
    font-weight: 500;
  }
}
.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;
  }
}
.l-header__btn-list {
  display: block;
}
.l-header__btn-list li a {
  display: block;
  background-color: var(--c-blk);
  text-align: center;
  font-size: 1.125rem;
}
@media (min-width: 960px) {
  .l-header__btn-list li a {
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    margin-top: -1rem;
    background: radial-gradient(50% 50% at 50% 50%, #333 0%, #333 100%);
  }
  .l-header__btn-list li a::before {
    content: "CONTACT";
    display: block;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    line-height: 150%;
    font-weight: 400;
    /* 2.25rem */
    letter-spacing: 0.15rem;
    color: var(--c-wht);
    background-size: 100%;
  }
}
@media screen and (max-width: 959px) {
  .l-header__btn-list li a {
    position: relative;
    border: 1px solid var(--c-blk);
    background: var(--c-blk);
    text-align: center;
    padding: 1.35rem 0 1.35rem 2rem !important;
    font-weight: 500;
  }
  .l-header__btn-list li a::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 7.5rem;
    transform: translate(0, -50%);
    width: 1.25rem;
    aspect-ratio: 1/1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/ico_contact_wht.svg);
  }
}
@media (min-width: 960px) {
  .l-header__btn-list li a:hover {
    background: radial-gradient(50% 50% at 50% 50%, #004097 0%, #002960 100%);
  }
  .l-header__btn-list li a:hover span {
    background-position: calc(100% - 1.5rem + 12px) center;
  }
}
.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);
}
.l-header__contact {
  text-align: center;
  order: 1;
}
@media (min-width: 960px) {
  .l-header__contact {
    text-align: inherit;
  }
}
.l-header__contact-tel {
  line-height: 1.5;
  font-weight: bold;
  font-size: 2rem;
}
@media (min-width: 960px) {
  .l-header__contact-tel {
    font-size: 1.25rem;
  }
}
.l-header__contact-time {
  line-height: 1.5;
  font-size: 1rem;
}
@media (min-width: 960px) {
  .l-header__contact-time {
    font-size: 0.75rem;
  }
}
.l-header__trigger {
  display: table;
  width: 3.75rem;
  height: 3.75rem;
  background: var(--c-blk);
}
@media (max-width: 767px) {
  .l-header__trigger {
    margin: -0.8rem -1.3rem 0;
    margin-top: 0;
  }
}
.l-header__trigger-btn {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.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-wht);
  font-size: 0;
  color: transparent;
  width: 1.75rem;
  height: 1px;
}
.l-header__trigger-btn > *::before, .l-header__trigger-btn > *::after {
  content: "";
  display: block;
  transition: all 0.2s ease-in-out;
  background-color: var(--c-wht);
  width: 100%;
  height: 1px;
  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);
}
.l-header__menu-tel {
  margin-top: 1.5rem;
  order: 25;
}
@media (min-width: 960px) {
  .l-header__menu-tel {
    display: none;
  }
}
.l-header__menu-tel a:not([class]) {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 150%;
  letter-spacing: 0.24rem;
}
.l-header__menu-tel a:not([class])::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_tel.svg);
  background-size: 100%;
}

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__link, body[data-page-type=form] .l-header__gnav {
  display: none;
}
@media (min-width: 768px) {
  body[data-page-type=form] .l-header__btn {
    margin-top: 5rem;
  }
}
body[data-page-type=form] .c-pagetitle__subtitle[class] {
  font-size: 1.5rem;
  color: var(--c-blk);
}
body[data-page-type=form] .c-pagetitle__title[class] {
  margin-top: 1.5rem;
}
body[data-page-type=form] .l-footer__site {
  display: none;
}

br.u-hidden {
  display: none;
}
@media screen and (min-width: 959px) and (max-width: 1200px) {
  br.u-hidden {
    display: block;
  }
}

.l-footer[class] a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .l-footer[class] a:hover {
    text-decoration: underline;
    color: inherit;
  }
}
.l-footer .-nolink > a {
  pointer-events: none;
}
.l-footer__cv {
  background-color: var(--c-blk);
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .l-footer__cv {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.l-footer__site-inner {
  border-top: 1px solid var(--c-gry);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 960px) {
  .l-footer__site-inner {
    justify-content: space-between;
    display: flex;
  }
}
.l-footer__logo {
  max-width: 140px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer__logo + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .l-footer__logo + * {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .l-footer__logo a {
    display: block;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-footer__address {
    text-align: center;
  }
}
.l-footer__address > * {
  font-size: 0.875rem;
}
.l-footer__address-address > * {
  font-size: 0.875rem;
}
.l-footer__address-address-title {
  font-weight: 500;
  font-size: 1rem;
}
.l-footer__address-address-title + * {
  margin-top: 0.25rem;
}
.l-footer__address-address-title02 {
  border: 1px solid var(--c-blk);
  display: inline-block;
  padding: 0 0.5rem;
}
.l-footer__address-address-title02 + * {
  margin-top: 0.25rem;
}
.l-footer__address-address + .l-footer__address-address {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .l-footer__address-address + .l-footer__address-address {
    margin-top: 14px;
  }
}
.l-footer__address-name {
  font-size: 1rem;
  font-weight: bold;
}
.l-footer__address-name + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .l-footer__address-name + * {
    margin-top: 14px;
  }
}
.l-footer__sitemap {
  justify-content: flex-end;
  display: flex;
  gap: 3.5rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-footer__sitemap {
    display: none;
  }
}
@media (min-width: 960px) {
  .l-footer__sitemap-list > li {
    min-width: 205px;
  }
}
.l-footer__sitemap-list > li a {
  font-weight: 500;
  line-height: 150%;
}
.l-footer__sitemap-list > li a + .sub-menu {
  margin-top: 1rem;
  margin-left: 1rem;
}
.l-footer__sitemap-list > li a + .sub-menu > li + li {
  margin-top: 0.5rem;
}
.l-footer__sitemap-list > li a + .sub-menu a {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 150%;
}
@media screen and (min-width: 768px) and (max-width: 1550px) {
  .l-footer__sitemap-list > li a + .sub-menu a {
    font-size: 12px;
  }
}
.l-footer__sitemap-list > li a + .sub-menu a + .sub-menu {
  margin-top: 0.5rem;
  margin-left: 0;
}
.l-footer__sitemap-list > li a + .sub-menu a + .sub-menu li {
  line-height: 150%;
}
.l-footer__sitemap-list > li a + .sub-menu a + .sub-menu li a {
  font-size: 0.75rem;
  font-weight: 300;
  margin-left: 0.75rem;
  line-height: 150%;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1550px) {
  .l-footer__sitemap-list > li a + .sub-menu a + .sub-menu li a {
    font-size: 12px;
  }
}
.l-footer__sitemap-list > li a + .sub-menu a + .sub-menu li a::before {
  content: "";
  display: block;
  top: 50%;
  transform: translateX(-50%);
  left: -0.5rem;
  width: 0.35rem;
  height: 1px;
  background-color: var(--c-gry);
  background-size: 100%;
  position: absolute;
  border-radius: 2px;
}
.l-footer__sitemap-list > li a + .sub-menu a + .sub-menu li a:hover {
  text-decoration: underline;
  color: inherit;
}
.l-footer__sitemap-list > li a + .sub-menu a + .sub-menu > li + li {
  margin-top: 0.25rem;
}
.l-footer__sitemap-list > li + li {
  margin-top: 1.25rem;
}
.l-footer__sitemap-list li#menu-item-1422 a {
  position: relative;
  padding-right: 1.625rem;
}
.l-footer__sitemap-list li#menu-item-1422 a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.2rem;
  right: 0;
  width: 1em;
  aspect-ratio: 1/1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/ico_blank2.svg");
}
.l-footer__sitemap-list.-sm li {
  font-size: 0.875rem;
}
.l-footer__info {
  background-color: var(--c-blk);
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
.l-footer__info-inner {
  line-height: 1;
}
@media (min-width: 960px) {
  .l-footer__info-inner {
    align-items: center;
    justify-content: space-between;
    display: flex;
  }
}
@media (max-width: 767px) {
  .l-footer__link + * {
    margin-top: 1rem;
  }
}
.l-footer__link-list {
  flex-wrap: wrap;
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-footer__link-list {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .l-footer__link-list {
    justify-content: center;
  }
}
.l-footer__link-list li a:not([class]) {
  font-size: 0.75rem;
  color: var(--c-wht);
  line-height: 150%;
  font-weight: 300;
}
.l-footer__link-list li a:not([class]):hover {
  color: var(--c-wht);
}
.l-footer__link-list li + li {
  margin-left: 1.5rem;
}
.l-footer__copyright {
  font-size: 0.75rem;
  color: var(--c-wht);
  line-height: 150%;
  font-weight: 300;
}
@media (min-width: 960px) {
  .l-footer__copyright {
    letter-spacing: 0.12rem;
  }
}
@media (max-width: 767px) {
  .l-footer__copyright {
    text-align: center;
  }
}

/* =====================================
 * CV
 * ================================== */
.l-footer__cv-inner {
  background-color: var(--c-wht);
  padding: 5rem;
}
@media screen and (min-width: 961px) and (max-width: 1600px) {
  .l-footer__cv-inner {
    padding: 5vw;
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
  .l-footer__cv-inner {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (min-width: 960px) {
  .l-footer__cv-inner {
    display: flex;
  }
}
@media (max-width: 767px) {
  .l-footer__cv-inner {
    padding: 2rem 1.25rem;
  }
}
.l-footer__cv-title {
  font-size: 5rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .l-footer__cv-title {
    font-size: 3rem;
  }
}
.l-footer__cv-en-title {
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .l-footer__cv-en-title {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 960px) {
  .l-footer__contact {
    margin-right: 5rem;
  }
}
@media screen and (min-width: 961px) and (max-width: 1600px) {
  .l-footer__contact {
    margin-right: 5vw;
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
  .l-footer__contact {
    margin-right: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-footer__contact {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .l-footer__contact {
    padding-bottom: 2rem;
  }
}
.l-footer__contact-title {
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
}
.l-footer__contact-title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .l-footer__contact-title + * {
    margin-top: 14px;
  }
}
.l-footer__contact-btn-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1131px) {
  .l-footer__contact-btn-wrap {
    flex-direction: column;
  }
}
.l-footer__contact-btn a:not([class]) {
  background: radial-gradient(50% 50% at 50% 50%, #333 0%, #333 100%);
  line-height: 1.5;
  color: var(--c-wht);
  padding: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 240px;
  background-color: #333;
  /* transition可能 */
  transition: all 0.2s ease-in-out;
}
.l-footer__contact-btn a:not([class])::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_mail.svg);
  background-size: 100%;
}
@media (min-width: 960px) {
  .l-footer__contact-btn a:not([class]):hover {
    text-decoration: none;
    color: var(--c-wht);
    background: radial-gradient(50% 50% at 50% 50%, #004097 0%, #002960 100%);
  }
}
.l-footer__contact-tel-btn a:not([class]) {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 150%;
  letter-spacing: 0.24rem;
}
.l-footer__contact-tel-btn a:not([class])::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_tel.svg);
  background-size: 100%;
}
.l-footer__contact-lead {
  font-size: 0.75rem;
  text-align: center;
  font-weight: 500;
}
.l-footer__contact-time {
  font-size: 0.75rem;
  text-align: center;
}
.l-footer__download {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .l-footer__download {
    padding-left: 5rem;
    border-left: 1px solid var(--c-blk);
  }
}
@media screen and (min-width: 961px) and (max-width: 1600px) {
  .l-footer__download {
    padding-left: 5vw;
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
  .l-footer__download {
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .l-footer__download {
    flex-direction: column;
    padding-top: 2rem;
    border-top: 1px solid var(--c-blk);
  }
}
@media (max-width: 767px) {
  .l-footer__download {
    flex-direction: column;
    padding-top: 2rem;
    border-top: 1px solid var(--c-blk);
  }
}
.l-footer__download-title {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
.l-footer__download-title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .l-footer__download-title + * {
    margin-top: 14px;
  }
}
.l-footer__download-btn a:not([class]) {
  background: radial-gradient(50% 50% at 50% 50%, #fff 0%, #fff 100%);
  line-height: 1.5;
  color: var(--c-blk);
  padding: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 240px;
  background-color: var(--c-wht);
  /* transition可能 */
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--c-blk);
}
.l-footer__download-btn a:not([class])::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_download.svg);
  background-size: 100%;
}
@media (min-width: 960px) {
  .l-footer__download-btn a:not([class]):hover {
    text-decoration: none;
    color: var(--c-wht);
    background: radial-gradient(50% 50% at 50% 50%, #004097 0%, #002960 100%);
    border: 1px solid var(--c-pri);
  }
}
.l-footer__download-img {
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 960px) {
  .l-footer .sub-menu:has(.menu-item-object-scene_cat) {
    display: flex;
    gap: 1.5rem;
  }
  .l-footer .sub-menu:has(.menu-item-object-scene_cat) .menu-item-object-scene_cat + .menu-item-object-scene_cat {
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 1080px) {
  .l-footer .sub-menu:has(.menu-item-object-scene_cat) {
    flex-direction: column;
  }
}

/* =====================================
 * formページ
 * ================================== */
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;
  }
}

@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;
    -webkit-box-flex: 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;
    -webkit-box-flex: 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: #004097;
  --c-pri-light: #95c1e1;
  --c-sec: #f2a414;
  --c-gry-dark: #ccc;
  --c-gry: #d8d8d8;
  --c-gry-light: #f7f7f7;
}

/* =====================================
 * メディアクエリ
 * ================================== */
/* =====================================
 * extend用のclassをここに集約
 * ================================== */
.c-hover, .c-dropmenu__item-menu li a, .p-topics-list__item, .p-company-btn__item, .c-tab__trigger-list li:not(.is-active), .c-pagetop__btn, .c-sidebar__bnr-item > *, .l-header__logo > *, .l-footer__logo > * {
  transition: all 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .c-hover:hover, .c-dropmenu__item-menu li a:hover, .p-topics-list__item:hover, .p-company-btn__item:hover, .c-tab__trigger-list li:hover:not(.is-active), .c-pagetop__btn:hover, .c-sidebar__bnr-item > :hover, .l-header__logo > :hover, .l-footer__logo > :hover {
    cursor: pointer;
    text-decoration: none !important;
    opacity: 0.6;
  }
}

.c-shadow, .c-dropmenu, .p-home-worry {
  box-shadow: 0px 0px 40px 0px rgba(0, 64, 151, 0.1);
}

.c-img {
  aspect-ratio: 16/9;
}
.c-img img {
  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-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 {
  margin-top: 8rem !important;
}
@media (max-width: 767px) {
  .c-pager {
    margin-top: 4rem !important;
  }
}
.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;
  text-align: center;
  height: 3.5rem;
  width: 3.5rem;
  padding-top: 0.85rem;
  text-decoration: none;
  border-radius: 100vmax;
}
@media (max-width: 767px) {
  .c-pager__item[class] > * {
    height: 2.5rem;
    width: 2.5rem;
    padding-top: 0.4rem;
  }
}
.c-pager__item[class] span {
  border-color: var(--c-blk);
  background-color: var(--c-blk);
  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: 1em auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.c-pager__item[class].-prev > * {
  background-image: url(../img/ico_arr_left_page_blk.svg);
}
.c-pager__item[class].-prev > *:hover {
  opacity: 0.7;
}
.c-pager__item[class].-next > * {
  background-image: url(../img/ico_arr_right_page_blk.svg);
}
.c-pager__item[class].-next > *:hover {
  opacity: 0.7;
}
@media (min-width: 960px) {
  .c-pager__item[class]:not(.-prev):not(.-next) > *:hover {
    border-color: var(--c-blk);
    background-color: var(--c-blk);
    color: var(--c-wht);
  }
}
.c-pager__item[class]:not(.-prev):not(.-next).-skip span {
  background: none;
  border: none;
  color: inherit;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.c-pager__item + .c-pager__item {
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .c-pager__item + .c-pager__item {
    margin-left: 0.5rem;
  }
}

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

.c-headline01__sub {
  text-transform: uppercase;
}
.c-headline01__main {
  font-weight: bold;
  font-size: 2rem;
}

.c-headline + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .c-headline + * {
    margin-top: 3.5rem;
  }
}
.c-headline__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .c-headline__inner {
    gap: 0.5rem;
  }
}
.c-headline__inner::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 1px;
  background-color: var(--c-gry);
}
@media (max-width: 767px) {
  .c-headline__inner::after {
    width: 4.5rem;
  }
}
.c-headline__inner + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .c-headline__inner + * {
    margin-top: 24px;
  }
}
@media (min-width: 960px) {
  .c-headline-content__inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}
@media (min-width: 960px) {
  .c-headline-content__inner .c-headline__desc {
    margin-top: 0;
  }
}
.c-headline__en {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.32rem;
}
@media (max-width: 767px) {
  .c-headline__en {
    letter-spacing: 0.15rem;
  }
}
.c-headline__ja {
  font-weight: 300;
  letter-spacing: 0.06rem;
}
.c-headline__lead {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.32rem;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 767px) {
  .c-headline__lead {
    font-size: 1.75rem;
  }
}
.c-headline__lead + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .c-headline__lead + * {
    margin-top: 24px;
  }
}
.c-headline__desc {
  line-height: 1.75;
}

* + .c-under-headline[class] {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  * + .c-under-headline[class] {
    margin-top: 6rem;
  }
}

.c-under-headline {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .c-under-headline {
    margin-top: 6rem;
  }
}
.c-under-headline + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .c-under-headline + * {
    margin-top: 30px;
  }
}
.c-under-headline__en {
  font-size: 2.5rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}
.c-under-headline__ja {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.c-under-headline__ja + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .c-under-headline__ja + * {
    margin-top: 14px;
  }
}
.c-under-headline__border {
  display: flex;
  justify-content: center;
}
.c-under-headline__border::after {
  content: "";
  display: block;
  width: 1px;
  height: 3.5rem;
  background-color: var(--c-gry);
  background-size: 100%;
}

.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: 960px) {
  .c-btn[class] {
    max-width: 400px;
  }
}
.c-btn[class].-lg {
  max-width: 100%;
}
.c-btn[class] > * {
  min-height: 80px;
  max-height: 80px;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: radial-gradient(50% 50% at 50% 50%, #333 0%, #333 100%);
  line-height: 1.5;
  color: var(--c-wht);
  text-align: center;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .c-btn[class] > * {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .c-btn[class] > * {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 960px) {
  .c-btn[class] > *:hover {
    background: radial-gradient(50% 50% at 50% 50%, #004097 0%, #002960 100%) !important;
  }
  .c-btn[class] > *:hover span {
    background-position: calc(100% - 1.5rem + 12px) center;
  }
}
.c-btn[class] > * span {
  max-height: 80px;
  color: #fff;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-weight: 500;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: calc(100% - 1.5rem) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right_wht.svg);
  padding-right: 3rem;
}
.c-btn[class] > * span:not([class]) {
  transition: background-position 0.25s ease-in-out !important;
}
.c-btn[class].-submit > * {
  padding: 0;
}
.c-btn[class].-submit > * input[type=submit] {
  width: 100%;
  padding: 2rem 3rem;
  background-position: calc(100% - 1.5rem) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right_wht.svg);
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .c-btn[class].-submit > * input[type=submit] {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 960px) {
  .c-btn[class].-submit > *:hover {
    background: radial-gradient(50% 50% at 50% 50%, #004097 0%, #002960 100%) !important;
  }
  .c-btn[class].-submit > *:hover span {
    background-position: calc(100% - 1.5rem + 12px) center;
  }
}
.c-btn[class].-left {
  margin-left: inherit;
}

.c-btn-text a {
  position: relative;
  display: inline-block;
  padding-right: 1.625rem;
  text-decoration: none;
  font-weight: 500;
}
.c-btn-text a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.2rem;
  right: 0;
  width: 1.25em;
  aspect-ratio: 1/1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/ico_arr_right_blk.svg");
}
.c-btn-text a[target*=_blank]::after {
  background-image: url("../img/ico_blank.svg");
}
.c-btn-text a[href*=".pdf"]::after,
.c-btn-text a[download]::after {
  background-image: url("../img/ico_pdf.svg");
}
.c-btn-text:hover a {
  text-decoration: underline;
}

body[data-page-type=form] .c-btn a {
  min-height: 80px;
}

/* =====================================
 * 横並び
 * ================================== */
.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: -1.5rem;
}
@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: 1.5rem;
}
.c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
  margin-top: 1.5rem;
}
@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: -1.5rem;
}
@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: 1.5rem;
}
.c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
  margin-top: 1.5rem;
}
@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: -1.5rem;
}
@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: 1.5rem;
}
@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: 1.5rem;
}
@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;
  -webkit-box-flex: 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-light);
  width: 100%;
}
* + .c-table {
  margin-top: 3rem;
}
.c-table th,
.c-table td {
  background-clip: padding-box;
}
.c-table tr > *:first-child,
.c-table th {
  width: 209px;
  font-weight: 500;
  background: var(--c-gry-light);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.c-table td {
  background-color: var(--c-wht);
  border-top: 1px solid var(--c-gry-light);
  border-bottom: 1px solid var(--c-gry-light);
}
.c-table tr > *:first-child,
.c-table th,
.c-table td {
  padding: 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;
  }
}

@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 {
  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: 8rem;
}
@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: 500;
  line-height: 1.5;
}

/* ================================== */
h2.wp-block,
h2[class*=has-text-align],
h2[class*=font-size],
h2:not([class]) {
  border-bottom: 1px solid var(--c-gry);
  font-size: 1.75rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  h2.wp-block,
  h2[class*=has-text-align],
  h2[class*=font-size],
  h2:not([class]) {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
}
h2.wp-block + *,
h2[class*=has-text-align] + *,
h2[class*=font-size] + *,
h2:not([class]) + * {
  margin-top: 2.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;
}
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;
  }
}

body[data-page-type=detail] ol:not([class]) li::marker {
  font-weight: 500;
}

body[data-page-type=detail] ul:not([class]) li {
  position: relative;
  list-style: none;
}
body[data-page-type=detail] ul:not([class]) li::after {
  position: absolute;
  content: "";
  top: 0.8rem;
  left: -0.5rem;
  transform: translate(-100%, 0);
  width: 0.75rem;
  height: 1px;
  background: var(--c-gry);
}

/* ===============================================
# 目次
=============================================== */
#toc_container {
  margin: 5rem 0;
  width: 100% !important;
  padding: 2.5rem;
  background: var(--c-gry-light);
}
@media (max-width: 767px) {
  #toc_container {
    padding: 1rem;
    margin: 3rem 0;
  }
}
#toc_container .toc_title {
  font-size: 1.5rem;
}
#toc_container .toc_list {
  padding: 0;
  margin: 1.5rem 0 0;
}
#toc_container .toc_list li {
  font-size: 0.85rem;
  list-style-type: none;
}
#toc_container .toc_list li::after {
  display: none;
}
#toc_container .toc_list > li {
  font-size: 1rem;
}
#toc_container .toc_list a {
  position: relative;
  display: inline-flex;
  text-decoration: none;
}
#toc_container .toc_list a::before {
  content: counters(num, "-") ". ";
  counter-increment: num;
  display: inline-block;
  white-space: nowrap;
  width: 1.75rem;
}
#toc_container .toc_list a::after {
  position: absolute;
  content: "";
  bottom: 0.3em;
  right: 0;
  width: calc(100% - 1.75rem);
  height: 1px;
  background: var(--c-blk);
}
#toc_container .toc_list .toc_number {
  display: none;
}
#toc_container ul {
  counter-reset: num;
}

@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: #004097;
  --c-pri-light: #95c1e1;
  --c-sec: #f2a414;
  --c-gry-dark: #ccc;
  --c-gry: #d8d8d8;
  --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 {
  padding-bottom: 10rem;
}
.p-form__inner + * {
  margin-top: 2rem;
}
.p-form__inner dt {
  font-weight: bold;
}
.p-form__inner dt + * {
  margin-top: 0.5rem;
}
.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;
  color: var(--c-error);
  font-weight: normal;
  font-size: 0.75rem;
  margin-left: 1.5rem;
}
.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 input[type=url],
.p-form textarea,
.p-form select {
  border-radius: 0;
  background-color: var(--c-wht);
  border: 1px solid var(--c-gry);
  padding: 1.5rem;
  width: 100%;
}
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form input[type=text],
.p-form input[type=url],
.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;
}

.c-btn.-submit .wpcf7-spinner {
  display: none !important;
}
.c-btn.-submit span {
  min-height: 80px;
}

.p-contact-top + *,
.p-download-top + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-contact-top + *,
  .p-download-top + * {
    margin-top: 4rem;
  }
}
.p-contact-top__lead,
.p-download-top__lead {
  text-align: center;
}
.p-contact-top__lead + *,
.p-download-top__lead + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-contact-top__lead + *,
  .p-download-top__lead + * {
    margin-top: 4rem;
  }
}
.p-contact-top__info,
.p-download-top__info {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--c-gry);
  border-bottom: 1px solid var(--c-gry);
}
.p-contact-top__info > *,
.p-download-top__info > * {
  text-align: center;
}
.p-contact-top__info-title,
.p-download-top__info-title {
  font-weight: 500;
}
.p-contact-top__info-title + *,
.p-download-top__info-title + * {
  margin-top: 1.5rem;
}
.p-contact-top__info-tel a,
.p-download-top__info-tel a {
  font-size: 2.5rem;
  position: relative;
  padding-left: 3rem;
  text-decoration: none;
}
.p-contact-top__info-tel a::before,
.p-download-top__info-tel a::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_tel.svg);
  background-size: 100%;
  position: absolute;
  margin-top: 0.75rem;
}

.p-contact-thanks,
.p-download-thanks {
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .p-contact-thanks,
  .p-download-thanks {
    margin-bottom: 5rem;
  }
}
.p-contact-thanks__title,
.p-download-thanks__title {
  font-size: 1.75rem;
  text-align: center;
  font-weight: 500;
}
.p-contact-thanks__title + *,
.p-download-thanks__title + * {
  margin-top: 2.5rem;
}
.p-contact-thanks__desc,
.p-download-thanks__desc {
  text-align: center;
}
.p-contact-thanks__desc + *,
.p-download-thanks__desc + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-contact-thanks__desc + *,
  .p-download-thanks__desc + * {
    margin-top: 4rem;
  }
}

.p-sitemap {
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-sitemap {
    padding-bottom: 5rem;
  }
}
.p-sitemap .-nolink > a {
  pointer-events: none;
  text-decoration: none;
  font-weight: 500;
}
.p-sitemap ul {
  list-style: none;
}
.p-sitemap ul li + li {
  margin-top: 0rem;
}
.p-sitemap__list[class] > li + li {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-sitemap__list[class] > li + li {
    margin-top: 3rem;
  }
}
.p-sitemap__list[class] > li > a {
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-pri);
  width: 100%;
  display: block;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.p-sitemap__list[class] > li > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/ico_arr_right.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  margin-top: -0.5rem;
}
@media (max-width: 767px) {
  .p-sitemap__list[class] > li > a::after {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem auto;
    margin-top: -0.25rem;
  }
}
.p-sitemap__list[class] > li > a:hover {
  color: var(--c-pri);
}
.p-sitemap__list[class] ul {
  padding: 0;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-sitemap__list[class] ul {
    gap: 1.5rem;
  }
}
.p-sitemap__list[class] ul li {
  list-style-type: none;
}

.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 {
  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__wrap {
  padding-bottom: 3.5rem;
  margin-bottom: 8rem;
  border-bottom: 1px solid var(--c-blk);
}
@media (max-width: 767px) {
  .p-post-detail__wrap {
    padding-bottom: 2.5rem;
    margin-bottom: 4rem;
  }
}
.p-post-detail__type {
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  width: fit-content;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .p-post-detail__type {
    font-size: 1.25rem;
  }
}
.p-post-detail__type::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -1rem;
  transform: translate(100%, -50%);
  width: 7.5rem;
  height: 1px;
  background: var(--c-gry);
}
.p-post-detail__type + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-post-detail__type + * {
    margin-top: 1rem;
  }
}
.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__time {
  font-size: 0.85rem;
}
.p-post-detail__cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-post-detail__cat li {
  border: 1px solid var(--c-blk);
  padding: 0.3rem 1rem 0.1rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-post-detail__cat li {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem 0.1rem 0.5rem;
  }
}
.p-post-detail__cat.-news {
  font-weight: 400;
}
.p-post-detail__cat.-news li {
  background-color: var(--c-blk);
  color: var(--c-wht);
}
.p-post-detail__title {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-post-detail__title {
    font-size: 1.5rem;
  }
}
.p-post-detail__title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-post-detail__title + * {
    margin-top: 1rem;
  }
}
/* =====================================
 * よくある質問
 * ================================== */
.c-faq {
  counter-reset: number;
}
.c-faq .c-faq__q-title {
  position: relative;
  padding-left: 2.5rem;
  padding-right: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c-faq .c-faq__q-title {
    padding-left: 2.5rem;
  }
}
.c-faq .c-faq__q-title::before {
  content: "Q";
  display: block;
  text-align: center;
  line-height: 1.75rem;
  font-weight: 500;
  font-size: 1.5rem;
  position: absolute;
  z-index: 1;
  top: 0rem;
  left: 0rem;
}
@media (max-width: 767px) {
  .c-faq .c-faq__q-title::before {
    font-size: 1.5rem;
    margin-top: -0.15rem;
  }
}
.c-faq .c-faq__a-title {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
}
.c-faq .c-faq__a-title + * {
  padding-left: 3.5rem;
}
@media (max-width: 767px) {
  .c-faq .c-faq__a-title + * {
    padding-left: 2.5rem;
  }
}
.c-faq .c-faq__a-title::before {
  content: "A";
  display: block;
  text-align: center;
  line-height: 1.75rem;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  z-index: 1;
  top: 0rem;
  left: 0rem;
  margin-top: 0.25rem;
}
@media (max-width: 767px) {
  .c-faq .c-faq__a-title::before {
    font-size: 1.5rem;
    margin-top: -0.15rem;
  }
}

.c-faq__item + .c-faq__item {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .c-faq__item + .c-faq__item {
    margin-top: 24px;
  }
}

.c-faq__q,
.c-faq__a {
  padding: 1.5rem 2.5rem;
}
@media (max-width: 767px) {
  .c-faq__q,
  .c-faq__a {
    padding: 1.5rem;
  }
}

.c-faq__q {
  background-color: var(--c-gry-light);
  position: relative;
  cursor: pointer;
}
.c-faq__q > * {
  font-size: 1;
  font-weight: 300;
}
@media (max-width: 767px) {
  .c-faq__q > * {
    font-size: 1.25rem;
  }
}

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

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

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

.c-faq__a {
  display: none;
}
.c-faq__a > *:not(.c-faq__a-title) {
  padding-left: 3.5rem;
}
@media (max-width: 767px) {
  .c-faq__a > *:not(.c-faq__a-title) {
    padding-left: 2.5rem;
  }
}

.c-faq__a-title {
  font-size: 1.25rem;
  position: relative;
}

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

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

.p-home-section-wrap + * {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p-home-section-wrap + * {
    margin-top: 5rem;
  }
}

.p-home-section + .p-home-section {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p-home-section + .p-home-section {
    margin-top: 5rem;
  }
}
.p-home-section__header + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-home-section__header + * {
    margin-top: 3.5rem;
  }
}
.p-home-section__body + * {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .p-home-service {
    margin-top: 4rem;
  }
}
.p-home-service .p-home-section__header {
  overflow: hidden;
  position: relative;
}
@media (min-width: 960px) {
  .p-home-service .p-home-section__header {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .p-home-service .p-home-section__header {
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .p-home-service .p-home-section__header {
    padding-top: 2rem;
  }
}
.p-home-service__bgtext {
  display: block;
  top: 0;
  right: 0;
  font-size: 140px;
  position: absolute;
  margin-top: 0;
  line-height: 1;
  color: var(--c-gry-light);
  letter-spacing: 1.4rem;
}
@media (min-width: 768px) {
  .p-home-service__bgtext {
    font-size: 100px;
  }
}
@media (min-width: 960px) {
  .p-home-service__bgtext {
    font-size: 140px;
  }
}
@media (max-width: 767px) {
  .p-home-service__bgtext {
    font-size: 95px;
    z-index: -1;
    right: auto;
    left: 0;
  }
}

.p-home-scene {
  overflow: hidden;
  position: relative;
}
@media (min-width: 960px) {
  .p-home-scene {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-home-scene__bgtext {
  display: block;
  bottom: 0;
  left: calc(50vw - 50rem);
  font-size: 140px;
  position: absolute;
  margin-top: 0;
  line-height: 1;
  color: var(--c-gry-light);
  letter-spacing: 1.4rem;
  transform: rotate(90deg);
  margin-left: -220px;
  margin-bottom: 11rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-home-scene__bgtext {
    font-size: 100px;
  }
}
@media (min-width: 960px) {
  .p-home-scene__bgtext {
    font-size: 140px;
  }
}
@media (max-width: 767px) {
  .p-home-scene__bgtext {
    font-size: 95px;
    z-index: -1;
    right: auto;
    left: 0;
  }
}
@media screen and (min-width: 1601px) {
  .p-home-scene__bgtext {
    left: 0;
  }
}

@media (min-width: 768px) {
  .p-home-case {
    padding-top: 5rem;
  }
}
@media (max-width: 767px) {
  .p-home-case {
    padding-top: 3rem;
  }
}
.p-home-case .p-home-section__header {
  overflow: hidden;
  position: relative;
}
@media (min-width: 960px) {
  .p-home-case .p-home-section__header {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .p-home-case .p-home-section__header {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .p-home-case .p-home-section__header {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.p-home-case .p-home-section__header + * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p-home-case .p-home-section__header + * {
    margin-top: 1rem;
  }
}
.p-home-case .p-home-section__header .c-headline {
  position: relative;
  z-index: 1;
}
.p-home-case__bgtext {
  display: block;
  top: 0;
  right: 0;
  font-size: 140px;
  position: absolute;
  margin-top: 0;
  line-height: 1;
  color: var(--c-wht);
  letter-spacing: 1.4rem;
}
@media (min-width: 768px) {
  .p-home-case__bgtext {
    font-size: 100px;
  }
}
@media (min-width: 960px) {
  .p-home-case__bgtext {
    font-size: 140px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-case__bgtext {
    z-index: 0;
  }
}
@media (max-width: 767px) {
  .p-home-case__bgtext {
    font-size: 95px;
    z-index: 0;
    right: auto;
    left: 0;
    white-space: nowrap;
  }
}

.p-home-feature {
  overflow: hidden;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .p-home-feature[class] {
    margin-top: 0;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media (min-width: 960px) {
  .p-home-feature {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .p-home-feature {
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .p-home-feature {
    padding-top: 2rem;
  }
}
.p-home-feature__bgtext {
  display: block;
  top: 0;
  right: 0;
  font-size: 140px;
  position: absolute;
  margin-top: 0;
  line-height: 1;
  color: var(--c-gry-light);
  letter-spacing: 1.4rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-home-feature__bgtext {
    font-size: 100px;
    margin-top: 4rem;
  }
}
@media (min-width: 960px) {
  .p-home-feature__bgtext {
    font-size: 140px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-feature__bgtext {
    z-index: -1;
  }
}
@media (max-width: 767px) {
  .p-home-feature__bgtext {
    font-size: 95px;
    z-index: -1;
    right: auto;
    left: 0;
  }
}

@media (max-width: 767px) {
  .p-home-section__header.p-home-company__header {
    margin-top: 0;
  }
}

.p-home-company {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
}
@media (min-width: 768px) {
  .p-home-company {
    padding-bottom: 8rem;
  }
}
@media (max-width: 767px) {
  .p-home-company {
    padding-top: 5rem;
  }
}
.p-home-company[class] {
  margin-top: 0;
}
@media (min-width: 960px) {
  .p-home-company {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-home-company__img {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-home-company__img {
    padding-top: 0rem;
    padding-bottom: 5rem;
  }
}
.p-home-company__bgtext {
  display: block;
  bottom: 0;
  left: calc(50vw - 50rem);
  font-size: 140px;
  position: absolute;
  margin-top: 0;
  line-height: 1;
  color: var(--c-gry-light);
  letter-spacing: 1.4rem;
  transform: rotate(90deg);
  margin-left: -359px;
  margin-bottom: 19.5rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-home-company__bgtext {
    font-size: 100px;
  }
}
@media (min-width: 960px) {
  .p-home-company__bgtext {
    font-size: 140px;
  }
}
@media (max-width: 767px) {
  .p-home-company__bgtext {
    font-size: 95px;
    z-index: -1;
    right: auto;
    left: 0;
  }
}
@media screen and (min-width: 1601px) {
  .p-home-company__bgtext {
    left: 0;
  }
}
.p-home-company + *[class] {
  margin-top: 0;
}
.p-home-topics {
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .p-home-topics {
    margin-top: 4rem;
  }
}
@media (min-width: 960px) {
  .p-home-topics {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .p-home-topics {
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .p-home-topics {
    padding-top: 2rem;
  }
}
.p-home-topics__bgtext {
  display: block;
  top: 0;
  right: 0;
  font-size: 140px;
  position: absolute;
  margin-top: 0;
  line-height: 1;
  color: var(--c-gry-light);
  letter-spacing: 1.4rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-home-topics__bgtext {
    font-size: 100px;
  }
}
@media (min-width: 960px) {
  .p-home-topics__bgtext {
    font-size: 140px;
  }
}
@media (max-width: 767px) {
  .p-home-topics__bgtext {
    font-size: 95px;
    z-index: -1;
    right: auto;
    left: 0;
  }
}

@media (min-width: 768px) {
  .p-home-blog {
    padding-top: 5rem;
  }
}
.p-home-blog .p-home-section__header {
  overflow: hidden;
  position: relative;
}
@media (min-width: 960px) {
  .p-home-blog .p-home-section__header {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .p-home-blog .p-home-section__header {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-home-blog .p-home-section__header + * {
  margin-top: 2rem;
}
.p-home-blog__bgtext {
  display: block;
  top: 0;
  right: 0;
  font-size: 140px;
  position: absolute;
  margin-top: 0;
  line-height: 1;
  color: var(--c-wht);
  letter-spacing: 1.4rem;
}
@media (min-width: 768px) {
  .p-home-blog__bgtext {
    font-size: 100px;
  }
}
@media (min-width: 960px) {
  .p-home-blog__bgtext {
    font-size: 140px;
  }
}
@media (max-width: 767px) {
  .p-home-blog__bgtext {
    font-size: 95px;
    z-index: -1;
    right: auto;
    left: 0;
  }
}

.c-mv-bg-inner {
  position: relative;
}
@media (min-width: 960px) {
  .c-mv-bg-inner {
    overflow: hidden;
  }
}

.c-mv-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 594px;
  width: 100vw;
  max-width: 1800px;
}
@media (min-width: 960px) {
  .c-mv-bg {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .c-mv-bg {
    height: 652px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1264px) {
  .c-mv-bg {
    width: 100%;
  }
}
.c-mv-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-repeat: repeat;
}

@media (min-width: 768px) {
  .p-home-mv {
    padding-top: calc(5rem + 100px);
  }
}
@media (max-width: 767px) {
  .p-home-mv {
    padding-top: 290px;
  }
}
@media (min-width: 960px) {
  .p-home-mv__inner {
    display: flex;
  }
}
.p-home-mv__inner.l-container {
  max-width: calc(1440px + 2rem);
}
@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-size: 1.25rem;
  line-height: 150%;
  text-shadow: 0 0 4px rgb(255, 255, 255), 0 0 10px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255), 0 0 30px rgb(255, 255, 255);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-mv__lead {
    font-size: 1.15rem;
  }
}
.p-home-mv__lead + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-home-mv__lead + * {
    margin-top: 10px;
  }
}
.p-home-mv__title {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.7;
  letter-spacing: 0.48rem;
  text-shadow: 0 0 4px rgb(255, 255, 255), 0 0 10px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255), 0 0 30px rgb(255, 255, 255);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-mv__title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .p-home-mv__title {
    font-size: 1.75rem;
    letter-spacing: 0.25rem;
  }
}
.p-home-mv__title + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-mv__title + * {
    margin-top: 24px;
  }
}
.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 {
  line-height: 175%;
  letter-spacing: 0.06rem;
  text-shadow: 0 0 4px rgb(255, 255, 255), 0 0 10px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255), 0 0 30px rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .p-home-mv__desc {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-mv__desc.u-hidden-sp {
    display: none;
  }
}
.p-home-mv__desc + * {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-home-mv__desc + * {
    margin-top: 1.25rem;
  }
}
.p-home-mv__btn-wrap {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-home-mv__btn-wrap {
    flex-direction: column;
  }
}
.p-home-mv__btn-wrap .c-btn {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
@media (min-width: 768px) {
  .p-home-mv__btn-wrap .c-btn {
    max-width: 240px;
  }
}
.p-home-mv__btn-wrap .c-btn span {
  padding: 1.15rem;
  background-image: none;
}
@media (max-width: 767px) {
  .p-home-mv__btn-wrap .c-btn span {
    padding: 1.35rem;
  }
}
.p-home-mv__btn-wrap .c-btn.-download > * {
  background: radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  border: 1px solid var(--c-blk);
}
.p-home-mv__btn-wrap .c-btn.-download > * span {
  color: rgb(51, 51, 51);
}
.p-home-mv__btn-wrap .c-btn.-download span:before {
  content: "";
  display: block;
  background-size: 100%;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/ico_download.svg");
}
.p-home-mv__btn-wrap .c-btn.-download:hover > * {
  border: 1px solid transparent;
}
.p-home-mv__btn-wrap .c-btn.-download:hover span {
  color: var(--c-wht);
}
.p-home-mv__btn-wrap .c-btn.-download:hover span:before {
  background-image: url("../img/ico_download_wht.svg");
}
.p-home-mv__btn-wrap .c-btn.-contact > * {
  border: 1px solid transparent;
}
.p-home-mv__btn-wrap .c-btn.-contact span:before {
  content: "";
  display: block;
  background-size: 100%;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/ico_contact_wht.svg");
}

/* =====================================
 * お悩みございませんか
 * ================================== */
.p-home-worry {
  padding: 5rem;
}
@media (max-width: 767px) {
  .p-home-worry {
    padding: 3rem 1.25rem;
  }
}
.p-home-worry__headline {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .p-home-worry__headline {
    font-size: 1.5rem;
  }
}
.p-home-worry__headline-lead {
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--c-blk);
  margin-bottom: 0.75rem;
}
.p-home-worry__headline + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-worry__headline + * {
    margin-top: 24px;
  }
}
.p-home-worry__top {
  background-color: var(--c-gry-light);
  padding: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-worry__top {
    padding: 1.5rem 1.25rem;
  }
}
.p-home-worry__top + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-worry__top + * {
    margin-top: 24px;
  }
}
.p-home-worry__top-headline {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-home-worry__top-headline {
    font-size: 1.15rem;
    text-align: center;
  }
}
.p-home-worry__top-headline + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-home-worry__top-headline + * {
    margin-top: 14px;
  }
}
.p-home-worry__top-img img {
  max-width: 200px;
}
.p-home-worry__top-inner {
  display: flex;
  gap: 2.5rem;
  align-items: baseline;
  align-items: end;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-home-worry__top-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.5rem;
  }
}
.p-home-worry__top-list {
  background-color: var(--c-wht);
  padding: 1.5rem 2.5rem;
}
@media (max-width: 767px) {
  .p-home-worry__top-list {
    padding: 1.25rem;
  }
}
.p-home-worry__top-list ul:not([class]) {
  list-style: none;
  padding-left: 0;
}
.p-home-worry__top-list ul:not([class]) li {
  padding-left: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-position: left 0.25rem;
  background-repeat: no-repeat;
  background-image: url(../img/ico_check.svg);
  background-size: 1rem;
}
.p-home-worry__top-list ul:not([class]) li + li {
  margin-top: 0.25rem;
}
.p-home-worry__arr img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 7.5rem;
}
@media (max-width: 767px) {
  .p-home-worry__arr img {
    max-width: 60px;
  }
}
.p-home-worry__arr + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-worry__arr + * {
    margin-top: 24px;
  }
}
.p-home-worry__bottom-lead {
  font-size: 1.25rem;
  font-weight: 500;
}
.p-home-worry__bottom-lead + * {
  margin-top: 0.5rem;
}
.p-home-worry__bottom-headline {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .p-home-worry__bottom-headline {
    font-size: 1.75rem;
  }
}
.p-home-worry__bottom-headline + * {
  margin-top: 1.75rem;
}
@media (max-width: 767px) {
  .p-home-worry__bottom-headline + * {
    margin-top: 19px;
  }
}
.p-home-worry__bottom-desc {
  text-align: center;
}
.p-home-worry__bottom-desc + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-worry__bottom-desc + * {
    margin-top: 24px;
  }
}
/* =====================================
 * tab
 * ================================== */
.c-tab:has(.c-tab__trigger-list.-search) .c-tab__content > * {
  margin-top: 0;
}
.c-tab:has(.c-tab__trigger-list.-search) .p-casestudy-search {
  border-top: none;
}

.c-tab {
  border-left: 1px solid var(--c-gry);
  border-right: 1px solid var(--c-gry);
}
.c-tab__content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -9999;
}
.c-tab__content.is-active {
  opacity: 1;
  visibility: inherit;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.c-tab__trigger-list {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 960px) {
  .c-tab__trigger-list {
    justify-content: center;
  }
}
.c-tab__trigger-list li {
  background-color: var(--c-blk);
  color: var(--c-wht);
  font-weight: 500;
  border-top: 1px solid var(--c-blk);
  border-right: 1px solid var(--c-blk);
  padding: 1.5rem;
  padding-bottom: 1rem;
}
.c-tab__trigger-list li + .c-tab__trigger-list li {
  border-right: none;
  border-left: 1px solid var(--c-blk);
}
.c-tab__trigger-list li + .c-tab__trigger-list li.is-active {
  border-left: 1px solid var(--c-gry);
}
.c-tab__trigger-list li:not(.is-active) {
  transition: all 0.2s ease-in-out;
  margin-top: 0.5rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.c-tab__trigger-list li:not(.is-active):after {
  content: "";
  display: block;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_tab_arr_down_wht.svg);
  background-size: 100%;
  width: 0.5em;
  height: 100%;
}
@media (max-width: 767px) {
  .c-tab__trigger-list li:not(.is-active):after {
    margin-right: 0;
  }
}
.c-tab__trigger-list li.is-active {
  background-color: var(--c-wht);
  color: var(--c-blk);
  transition: all 0.2s ease-in-out;
  border-top: 1px solid var(--c-gry);
  border-left: none;
  border-right: 1px solid var(--c-gry);
}
@media (min-width: 960px) {
  .c-tab__trigger-list li.is-active {
    position: relative;
    z-index: 100;
  }
}
.c-tab__trigger-list li.is-active:not(:has(+ li)) {
  border-right: none;
  border-left: 1px solid var(--c-gry);
}
.c-tab_item {
  padding: 1.5rem;
  color: var(--c-blk);
  line-height: 1.5;
  font-size: 1rem;
  display: block;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .c-tab_item {
    min-width: 240px;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .c-tab_item {
    font-size: 0.85rem;
    padding: 1rem;
    width: 100%;
  }
}

/* =====================================
 * シーンから探す
 * ================================== */
.p-scene-col5__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
@media (min-width: 960px) {
  .p-scene-col5__inner > * {
    flex-basis: calc(20% - 0.8px);
    max-width: calc(20% - 0.8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-scene-col5__inner > * {
    flex-basis: calc(50% - 0.5px);
    max-width: calc(50% - 0.5px);
  }
}
@media (max-width: 767px) {
  .p-scene-col5__inner > * {
    flex-basis: calc(50% - 0.5px);
    max-width: calc(50% - 0.5px);
  }
}
.p-scene-col5__title {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 150%;
}
.p-scene-col5__title + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-scene-col5__title + * {
    margin-top: 10px;
  }
}
.p-scene-col5__img {
  text-align: center;
}
.p-scene-col5__img img {
  width: 100%;
  max-width: 3.5rem;
}
.p-scene-col5__img + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-scene-col5__img + * {
    margin-top: 14px;
  }
}
.p-scene-col5__item {
  padding: 2.5rem;
  border-bottom: 1px solid var(--c-gry);
  position: relative;
  transition: all 0.2s ease-in-out;
  background-color: var(--c-wht);
}
@media (min-width: 960px) {
  .p-scene-col5__item {
    min-height: 240px;
  }
}
@media (max-width: 767px) {
  .p-scene-col5__item {
    padding: 1rem;
    padding-bottom: 3rem;
  }
}
.p-scene-col5__item::after {
  content: "";
  display: block;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
  height: 1rem;
  background-position: calc(100% - 2.5rem - 12px) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  padding-right: 3rem;
  margin-right: -12px;
  transition: background-position 0.25s ease-in-out !important;
  position: absolute;
}
@media (max-width: 767px) {
  .p-scene-col5__item::after {
    bottom: 1rem;
    background-position: calc(100% - 12px) center;
  }
}
.p-scene-col5__item:hover {
  background-color: var(--c-gry-light);
}
@media (min-width: 960px) {
  .p-scene-col5__item:hover:after {
    background-position: calc(100% - 2.5rem) center;
  }
}
.p-scene-col5__item + .p-scene-col5__item {
  border-left: 1px solid var(--c-gry);
}
@media (min-width: 960px) {
  .p-scene-col5__item:nth-child(6n) {
    border-left: none;
  }
}

@media (min-width: 960px) {
  .p-beginner-btn-list__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
  }
}
@media (min-width: 960px) {
  .p-beginner-btn-list__inner > * {
    flex-basis: calc(50% - 2.5rem);
    max-width: calc(50% - 2.5rem);
  }
}
.p-beginner-btn-list__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.p-beginner-btn-list__title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-beginner-btn-list__title + * {
    margin-top: 14px;
  }
}
.p-beginner-btn-list__desc + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-beginner-btn-list__desc + * {
    margin-top: 24px;
  }
}
.p-beginner-btn-list__ico {
  flex-shrink: 0;
  flex-grow: 0;
}
.p-beginner-btn-list__btn {
  text-align: right;
}
.p-beginner-btn-list__btn a {
  text-decoration: none;
  display: block;
  font-weight: 500;
  background-position: calc(100% - 12px) 0.25rem;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  padding-right: 5rem;
  margin-right: -12px;
  background-size: 2.5rem 0.75rem;
  transition: background-position 0.25s ease-in-out !important;
}
.p-beginner-btn-list__btn a::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media (min-width: 960px) {
  .p-beginner-btn-list__btn a:hover {
    background-position: 100% 0.25rem;
  }
}
.p-beginner-btn-list__btn a.is-current {
  color: var(--c-blk);
}
.p-beginner-btn-list__item {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--c-gry);
  transition: all 0.2s ease-in-out;
}
.p-beginner-btn-list__item:hover {
  background-color: var(--c-gry-light);
}
@media (max-width: 767px) {
  .p-beginner-btn-list__item {
    padding: 1.25rem;
  }
}
.p-beginner-btn-list__item:has(.is-current) {
  pointer-events: none;
  opacity: 0.6;
  background-color: var(--c-gry-light);
}
@media (max-width: 767px) {
  .p-beginner-btn-list__item + .p-beginner-btn-list__item {
    margin-top: 2rem;
  }
}

/* =====================================
 * ブログ
 * ================================== */
.p-home-blog {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-home-blog {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-home-blog::after {
  content: "";
  display: block;
  background-color: var(--c-gry-light);
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
@media (min-width: 960px) {
  .p-home-blog::after {
    width: calc(50% + 24rem);
  }
}
@media (max-width: 767px) {
  .p-home-blog::after {
    width: 100vw;
  }
}

@media (min-width: 768px) {
  .p-blog-list-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2.62rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-blog-list-wrap {
    gap: 1.5rem;
  }
}
@media (min-width: 960px) {
  .p-blog-list-wrap > * {
    flex-basis: calc(33.3333333333% - 1.7466666667rem);
    max-width: calc(33.3333333333% - 1.7466666667rem);
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-blog-list-wrap > * {
    flex-basis: calc(33.3333333333% - 1rem);
    max-width: calc(33.3333333333% - 1rem);
  }
}
.p-blog-list__text {
  background-color: var(--c-wht);
  padding: 1.5rem;
  padding-bottom: 3.25rem;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .p-blog-list__text {
    padding: 1.25rem;
    padding-bottom: 2.25rem;
  }
}
.p-blog-list__item {
  position: relative;
}
.p-blog-list__item a {
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: block;
}
.p-blog-list__item a::after {
  content: "";
  display: block;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 100%;
  height: 1rem;
  position: absolute;
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  padding-right: 3rem;
  margin-right: -12px;
  transition: background-position 0.25s ease-in-out !important;
}
@media (max-width: 767px) {
  .p-blog-list__item a::after {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
@media (min-width: 960px) {
  .p-blog-list__item a:hover .p-blog-list__img img {
    transform: scale(1.1);
  }
}
@media (min-width: 960px) {
  .p-blog-list__item a:hover .p-blog-list__text {
    opacity: 0.6;
  }
}
@media (min-width: 960px) {
  .p-blog-list__item a:hover::after {
    background-position: 100% center;
    opacity: 0.6;
  }
}
.p-blog-list__title {
  font-size: 1.25rem;
  font-weight: 500;
}
.p-blog-list__title + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-blog-list__title + * {
    margin-top: 10px;
  }
}
.p-blog-list__desc {
  font-weight: 300;
  font-size: 0.875rem;
}
.p-blog-list__img {
  overflow: hidden;
}
.p-blog-list__img img {
  transition: all 0.5s ease-in-out;
}

/* =====================================
 * 会社情報
 * ================================== */
@media (min-width: 960px) {
  .p-home-section__header.p-home-company__header + * {
    margin-top: 0;
  }
}

.p-home-company {
  position: relative;
}

.p-home-company__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-home-company__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 960px) {
  .p-home-company__header {
    max-width: 520px;
    padding-right: 5rem;
  }
}

.p-home-company__inner {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 959px) {
  .p-home-company__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-home-company__inner .c-headline + .c-headline__lead {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-company__inner .c-headline + .c-headline__lead {
    margin-top: 24px;
  }
}
.p-home-company__inner .c-headline + .c-headline__desc {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-company__inner .c-headline + .c-headline__desc {
    margin-top: 24px;
  }
}
.p-home-company__inner .c-headline__desc + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-company__inner .c-headline__desc + * {
    margin-top: 24px;
  }
}

.p-home-company__body {
  flex-shrink: 0;
  flex-grow: 0;
}

@media (min-width: 960px) {
  .p-home-company__body {
    width: 51%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
  }
}

.p-company-btn {
  border-bottom: 1px solid var(--c-gry);
}
.p-company-btn__item {
  position: relative;
  padding: 1.5rem 1rem;
  padding-right: 3rem;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  padding-right: 3rem;
  margin-right: -12px;
  transition: background-position 0.25s ease-in-out !important;
}
@media (min-width: 960px) {
  .p-company-btn__item {
    display: flex;
    align-items: end;
    gap: 0 1rem;
  }
}
.p-company-btn__item + .p-company-btn__item {
  border-top: 1px solid var(--c-gry);
  padding-top: 2rem;
}
@media (min-width: 960px) {
  .p-company-btn__item:hover {
    background-position: 100% center;
  }
}
.p-company-btn__title > * {
  transition: all 0.2s ease-in-out;
}
.p-company-btn__title a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}
.p-company-btn__title a:hover {
  text-decoration: none;
  color: var(--pri);
}
.p-company-btn__title a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .p-company-btn + * {
    margin-top: 2rem;
  }
}

/* =====================================
 * ボタンアニメーション
 * ================================== */
.pulse-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (min-width: 960px) {
  .pulse-btn {
    width: 440px;
    height: 440px;
  }
}

/* ボタンの波紋 */
.pulse-btn::before,
.pulse-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 440px;
  height: 440px;
  background: var(--c-gry-light);
  transform: translate3d(0, 0, 0);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  z-index: -1;
}

/* 1つ目の波紋 */
.pulse-btn::before {
  animation: pulsate 2.5s ease-out infinite;
}

/* 2つ目の波紋、1.25秒後に始まる */
.pulse-btn::after {
  animation: pulsate 2.5s ease-out 2s infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
/* =====================================
 * 公開時非表示
 * ================================== */
.p-home-section.p-home-blog {
  display: none;
}

body[data-page-slug=home] .l-main + * {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  body[data-page-slug=home] .l-main + * {
    margin-top: 5rem;
  }
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}
@media (min-width: 960px) {
  .swiper-slide img {
    object-fit: cover;
  }
}

@media (min-width: 960px) {
  .js-home-mv-slider {
    padding-bottom: 1.5rem;
    margin-right: inherit;
  }
}
.js-home-mv-slider .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid var(--c-pri);
  opacity: 1;
}
.js-home-mv-slider .swiper-pagination-bullet-active {
  background-color: var(--c-pri);
}
.js-home-mv-slider .swiper-pagination {
  bottom: 0;
}

@media (min-width: 960px) {
  .p-home-mv-slider {
    max-width: 800px;
  }
}
.p-home-mv-slider .swiper-slide {
  position: relative !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0 !important;
}
.p-home-mv-slider .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

@media (min-width: 960px) {
  .p-home-case__inner {
    display: flex;
    align-items: end;
  }
}
@media (min-width: 960px) {
  .p-home-case__inner > * {
    flex-basis: 50%;
    max-width: 50%;
  }
}

.p-home-case {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-home-case {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-home-case::after {
  content: "";
  display: block;
  background-color: var(--c-gry-light);
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  min-width: calc(1200px + 2rem);
}

.swiper.c-case-slider {
  padding-bottom: 7rem;
  margin-bottom: 1rem;
  /* スライダー左の余白 */
  width: 100%;
  overflow: visible;
}
.swiper.c-case-slider + .c-btn {
  margin-top: -3rem;
}
@media (max-width: 767px) {
  .swiper.c-case-slider + .c-btn {
    margin-top: 4rem;
  }
}
.swiper.c-case-slider .c-case-slider-pagination {
  bottom: 0;
  right: 0;
  text-align: left;
  padding-left: 7.5rem;
}
.swiper.c-case-slider .c-case-slider-pagination > * {
  letter-spacing: 0.04em;
}
.swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev {
  top: auto;
  bottom: -0.7rem;
  right: auto;
  left: 0;
  background-color: var(--c-gry);
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  transition: all 0.2s ease-in-out;
}
.swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev::after {
  content: "";
  width: 0.5rem;
  height: 0.85rem;
  background-size: 100%;
  background-image: url(../img/ico_arr_slider_left_wht.svg);
  margin-left: 0.1rem;
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev::after {
    width: 0.5rem;
    height: 0.85rem;
  }
}
.swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev:hover {
  opacity: 0.6;
}
.swiper.c-case-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper.c-case-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}
.swiper.c-case-slider .swiper-button-next.c-case-slider-button-next {
  top: auto;
  bottom: -0.7rem;
  right: auto;
  left: calc(3rem + 4px);
  background-color: var(--c-gry);
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  transition: all 0.2s ease-in-out;
}
.swiper.c-case-slider .swiper-button-next.c-case-slider-button-next::after {
  content: "";
  width: 0.5rem;
  height: 0.85rem;
  background-size: 100%;
  background-image: url(../img/ico_arr_slider_right_wht.svg);
  margin-left: 0.1rem;
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .swiper.c-case-slider .swiper-button-next.c-case-slider-button-next::after {
    width: 0.5rem;
    height: 0.85rem;
  }
}
.swiper.c-case-slider .swiper-button-next.c-case-slider-button-next:hover {
  opacity: 0.6;
}
@media (min-width: 960px) {
  .swiper.c-case-slider .c-case-slider-slide {
    min-width: 480px;
  }
}
.swiper.c-case-slider .c-case-slider-slide img {
  width: fit-content;
  height: inherit;
  object-fit: cover;
}
@media (min-width: 960px) {
  .swiper.c-case-slider .c-case-slider-slide img {
    min-width: 480px;
  }
}
@media (max-width: 767px) {
  .swiper.c-case-slider .c-case-slider-slide img {
    width: 100%;
  }
}
.swiper.c-case-slider .c-case-slider-slide img + * {
  margin-top: 1rem;
}
.swiper.c-case-slider .c-case-slider-title {
  font-weight: bold;
}
.swiper.c-case-slider .swiper-pagination-bullet-active {
  background: var(--c-blk);
}

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

.p-case-list__item {
  position: relative;
}
.p-case-list__item a {
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: block;
  padding-bottom: 1.75rem;
}
.p-case-list__item a::after {
  content: "";
  display: block;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1rem;
  position: absolute;
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  padding-right: 3rem;
  margin-right: -12px;
  transition: background-position 0.25s ease-in-out !important;
}
@media (min-width: 960px) {
  .p-case-list__item a:hover .p-case-list__img img {
    transform: scale(1.1);
  }
}
@media (min-width: 960px) {
  .p-case-list__item a:hover .p-case-list__title,
  .p-case-list__item a:hover .p-case-list__desc,
  .p-case-list__item a:hover .p-case-list__name {
    opacity: 0.6;
  }
}
@media (min-width: 960px) {
  .p-case-list__item a:hover:after {
    background-position: 100% center;
    opacity: 0.6;
  }
}
.p-case-list__title {
  font-size: 1.5rem;
  font-weight: bold;
}
.p-case-list__title + * {
  margin-top: 0.5rem;
}
.p-case-list__name {
  font-size: 0.875rem;
  font-weight: 300;
}
.p-case-list__name + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-case-list__name + * {
    margin-top: 10px;
  }
}
.p-case-list__desc {
  font-weight: 300;
}
.p-case-list__desc + * {
  margin-top: 1.5rem;
}
.p-case-list__img {
  overflow: hidden;
  aspect-ratio: 480/360;
}
.p-case-list__img img {
  transition: all 0.5s ease-in-out;
  aspect-ratio: 480/360;
  object-fit: cover;
}
.p-case-list__img + * {
  margin-top: 1.5rem;
}

.p-logo-swiper-wrap {
  margin-top: 5rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-logo-swiper-wrap {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .p-logo-swiper-wrap {
    margin-top: 2rem;
  }
}
.p-logo-swiper__slide {
  max-width: 320px;
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .p-logo-swiper__slide {
    max-width: 160px;
    margin-left: 0.5rem;
  }
}
.p-logo-swiper__wrapper {
  transition-timing-function: linear;
}

.p-logo-swiper__wrapper {
  justify-content: space-between;
}

.p-logo-swiper-wrap-item {
  overflow: hidden;
}

.swiper.p-logo-swiper {
  display: flex;
}
.swiper.p-logo-swiper.-right {
  width: 12407px;
}
@media (max-width: 767px) {
  .swiper.p-logo-swiper.-right {
    width: 6145px;
  }
}

.p-logo-swiper-wrap + .c-section.-lg.p-home-section-wrap {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-logo-swiper-wrap + * {
    margin-top: -1rem;
  }
}
@media (max-width: 767px) {
  .p-logo-swiper-wrap + * {
    margin-top: -1rem;
  }
}

body:not(.is-loaded) .p-logo-swiper.-right .p-logo-swiper__wrapper {
  -webkit-animation: loop-slide 40s infinite linear 1s both;
  animation: loop-slide 40s infinite linear 1s both;
}

body:not(.is-loaded) .p-logo-swiper.-left .p-logo-swiper__wrapper {
  -webkit-animation: loop-slide02 40s infinite linear 1s both;
  animation: loop-slide02 40s infinite linear 1s both;
}

@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop-slide02 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.p-home-service__body .l-container:has(.p-service-list01) {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 960px) {
  .p-home-service__body .l-container:has(.p-service-list01) {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .p-service-list01__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
  }
}
@media (min-width: 768px) {
  .p-service-list01__inner > * {
    flex-basis: calc(33.3333333333% - 1.3333333333px);
    max-width: calc(33.3333333333% - 1.3333333333px);
  }
}
.p-service-list01__inner a:not([class]) {
  text-decoration: none;
  display: block;
}
@media (min-width: 960px) {
  .p-service-list01__inner a {
    min-height: 320px;
  }
}
.p-service-list01__title {
  position: relative;
  z-index: 10;
  color: var(--c-wht);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 150%;
  position: relative;
  z-index: 99;
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right_wht.svg);
  padding-right: 3rem;
  margin-right: -12px;
}
.p-service-list01__title[class] {
  transition: background-position 0.25s ease-in-out !important;
}
@media (max-width: 767px) {
  .p-service-list01__title {
    font-size: 18px;
  }
}
.p-service-list01__item {
  position: relative;
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-service-list01__item {
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  .p-service-list01__item {
    padding: 1rem;
    min-height: 226px;
  }
}
.p-service-list01__item::after, .p-service-list01__item::before {
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .p-service-list01__item {
    padding-bottom: 2.5rem;
  }
}
.p-service-list01__item:hover .p-service-list01__title {
  background-position: 100% center;
}
.p-service-list01__item:hover .p-service-list01__bg {
  transform: scale(1.1);
}
.p-service-list01__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.p-service-list01__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-service-list01__bg img {
    object-position: 50% 35%;
  }
}
.p-service-list01__bg::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.16) 0%, rgba(51, 51, 51, 0.8) 100%);
  position: absolute;
}

/* ===============================================
# サービス共通パーツ
=============================================== */
.p-service__line-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.7;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 1px solid var(--c-blk);
}
@media (max-width: 767px) {
  .p-service__line-title {
    font-size: 1.5rem;
  }
}

/* ===============================================
# トップセクション
=============================================== */
.p-service-top {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .p-service-top {
    padding-top: 3rem;
  }
}
.p-service-top::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  transform: translate(max(-12.5rem, 50% - 50vw), 0);
  width: 75rem;
  max-width: 100%;
  aspect-ratio: 1/1;
  height: 84%;
  background: var(--c-gry-light);
  z-index: -2;
}
@media (max-width: 767px) {
  .p-service-top::after {
    height: 92%;
  }
}
.p-service-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 7.5rem;
  height: 1px;
  background: var(--c-blk);
}
.p-service-top.-sm::after {
  height: 72%;
}
@media (max-width: 767px) {
  .p-service-top.-sm::after {
    height: 85%;
  }
}

.p-service-top__inner {
  display: flex;
}
@media (min-width: 768px) {
  .p-service-top__inner {
    margin-right: max(-12.5rem, 50% - 50vw);
    gap: 3.5%;
  }
}
@media (max-width: 767px) {
  .p-service-top__inner {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-service-top__content {
  flex: 1;
}

.p-service-top__title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .p-service-top__title {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

.p-service-top__text {
  margin-top: 2.5rem;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-service-top__text {
    margin-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .p-service-top__img {
    width: 48%;
  }
}

/* ===============================================
# 流れ
=============================================== */
.p-service-flow {
  margin-top: 5rem;
}

.p-service-flow__title {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-service-flow__title {
    font-size: 1rem;
  }
}

.p-service-flow__label {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-service-flow__label {
    margin-top: 2rem;
  }
}

.p-service-flow__label-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.p-service-flow__label-item.-blk .p-service-flow__label-box {
  background: var(--c-blk);
}

.p-service-flow__label-box {
  border: 1px solid var(--c-blk);
  width: 2.5rem;
  height: 1.625rem;
}

.p-service-flow__label-title {
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .p-service-flow__wrap {
    margin-top: -1.5rem;
  }
}
@media (max-width: 767px) {
  .p-service-flow__wrap {
    width: 100%;
    overflow: auto;
    margin-top: 1rem;
  }
}

.p-service-flow__range {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2%;
}
@media (max-width: 767px) {
  .p-service-flow__range {
    width: 46rem;
    gap: 1%;
  }
}
.p-service-flow__range.-w5 .p-service-flow__range-item {
  grid-column: 2/7;
}

.p-service-flow__range-item {
  grid-column: 3/7;
}

.p-service-flow__range-item-wrap {
  text-align: center;
}

.p-service-flow__range-item-label {
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-block;
  background: var(--c-blk);
  color: var(--c-wht);
  padding: 0.25rem 1rem;
}
@media (max-width: 767px) {
  .p-service-flow__range-item-label {
    font-size: 0.75rem;
  }
}

.p-service-flow__range-item-title {
  position: relative;
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-service-flow__range-item-title {
    font-size: 1rem;
  }
}
.p-service-flow__range-item-title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 1px;
  background: var(--c-blk);
  z-index: -1;
}

.p-service-flow__range-item-title-text {
  position: relative;
  background: var(--c-gry-light);
  padding: 0 1.5rem;
}

.p-service-flow__range-item-title-arrow {
  position: absolute;
  content: "";
  top: 50%;
  width: 1rem;
  height: 1px;
  background: var(--c-blk);
}
.p-service-flow__range-item-title-arrow.-left {
  left: 0;
  transform: translate(0, -50%) rotate(-45deg);
  transform-origin: left bottom;
}
.p-service-flow__range-item-title-arrow.-right {
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: right bottom;
}

.p-service-flow__list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2%;
}
@media (max-width: 767px) {
  .p-service-flow__list {
    width: 46rem;
    gap: 1%;
    margin-top: 0.5rem;
  }
}

.p-service-flow__list-item {
  text-align: center;
  border: 1px solid var(--c-blk);
  padding: 1rem 0.5rem;
}
.p-service-flow__list-item.-blk {
  background: var(--c-blk);
  color: var(--c-wht);
}
@media (max-width: 767px) {
  .p-service-flow__list-item {
    padding: 0.5rem 0;
  }
}

.p-service-flow__list-item-step {
  font-size: 1.5rem;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .p-service-flow__list-item-step {
    font-size: 1rem;
  }
}

.p-service-flow__list-item-text {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .p-service-flow__list-item-text {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
}

/* ===============================================
# スライダー
=============================================== */
.p-service-slide01__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}
@media (max-width: 767px) {
  .p-service-slide01__menu {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.25rem;
    row-gap: 1rem;
  }
}
.p-service-slide01__menu li {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--c-gry-dark);
  border-bottom: 1px solid var(--c-gry-dark);
  padding-bottom: 1rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-service-slide01__menu li {
    font-size: 0.75rem;
    padding-bottom: 0.5rem;
  }
}
.p-service-slide01__menu li.active {
  color: var(--c-blk);
  border-bottom: 1px solid var(--c-blk);
}

.p-service-slide01__container {
  position: relative;
}

.p-service-slide01__list {
  margin-top: 3.5rem;
  max-width: 976px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-service-slide01__list {
    margin-top: 1.5rem;
  }
}

.p-service-slide01__item {
  display: flex;
  gap: 4%;
  align-items: center;
}
@media (max-width: 767px) {
  .p-service-slide01__item {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .p-service-slide01__item-img {
    width: 32%;
  }
}

.p-service-slide01__item-text {
  line-height: 1.8;
  letter-spacing: 0.06em;
  flex: 1;
}

/* ===============================================
# solution
=============================================== */
.p-service-solution__item:not(:first-child) {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p-service-solution__item:not(:first-child) {
    margin-top: 4rem;
  }
}

.p-service-solution__head {
  text-align: center;
}

.p-service-solution__head-num {
  font-size: 2.5rem;
  color: var(--c-gry);
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .p-service-solution__head-num {
    font-size: 2rem;
  }
}

.p-service-solution__head-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.7;
  display: inline-block;
  border-bottom: 1px solid var(--c-blk);
}
@media (max-width: 767px) {
  .p-service-solution__head-title {
    font-size: 1.25rem;
  }
}

.p-service-solution__wrap {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.3%;
}
@media (max-width: 767px) {
  .p-service-solution__wrap {
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-service-solution__content-item:not(:first-child) {
  margin-top: 2.5rem;
}

.p-service-solution__content-label {
  background: var(--c-blk);
  color: var(--c-wht);
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.5rem;
}
@media (max-width: 767px) {
  .p-service-solution__content-label {
    font-size: 1rem;
    padding: 0.4rem 1.25rem;
  }
}

.p-service-solution__content-list01 {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-service-solution__content-list01 li {
  letter-spacing: 0.06em;
  border: 1px solid var(--c-blk);
  padding: 0.25rem 1rem;
}
@media (max-width: 767px) {
  .p-service-solution__content-list01 li {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }
}
.p-service-solution__content-list01 span {
  font-size: 0.85rem;
}

.p-service-solution__content-list02 {
  margin-top: 1.5rem;
}
.p-service-solution__content-list02 li {
  position: relative;
  letter-spacing: 0.06em;
  padding-left: 1.2rem;
}
.p-service-solution__content-list02 li::after {
  position: absolute;
  content: "";
  top: 0.7rem;
  left: 0.3rem;
  width: 0.25rem;
  height: 0.25rem;
  display: block;
  background: var(--c-blk);
  border-radius: 100vmax;
}
.p-service-solution__content-list02 li:not(:first-child) {
  margin-top: 0.5rem;
}
.p-service-solution__content-list02 span {
  font-size: 0.85rem;
}

.p-service-solution__slide {
  width: 100%;
}

.p-service-solution__slide-item {
  width: 100%;
}

.p-service-solution__slide-wrap {
  padding-bottom: 2.5rem;
}

.p-service-solution__btn {
  margin-top: 2.5rem;
}
.p-service-solution__btn a {
  position: relative;
  font-weight: 500;
  color: var(--c-blk) !important;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin-left: auto;
  padding-right: 4rem;
}
.p-service-solution__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 2.5rem;
  height: 1px;
  background: var(--c-blk);
  transition: right 0.3s ease;
}
.p-service-solution__btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: right bottom;
  width: 1rem;
  height: 1px;
  background: var(--c-blk);
  transition: right 0.3s ease;
}
.p-service-solution__btn a:hover::after, .p-service-solution__btn a:hover::before {
  right: -0.5rem;
}

/* ===============================================
# SIGN MENU
=============================================== */
.p-service-sign-menu__item:not(:first-child) {
  margin-top: 5rem;
}

.p-service-sign-menu__box {
  margin-top: 2.5rem;
  background: var(--c-gry-light);
  padding: 1.5rem 6rem;
}
@media (max-width: 767px) {
  .p-service-sign-menu__box {
    padding: 1.5rem 1rem;
  }
}

.p-service-sign-menu__box-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-service-sign-menu__box-title {
    font-size: 1.25rem;
  }
}

.p-service-sign-menu__box-wrap {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 5%;
}
@media (max-width: 767px) {
  .p-service-sign-menu__box-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .p-service-sign-menu__box-img {
    width: 20%;
  }
}

.p-service-sign-menu__box-list {
  flex: 1;
  background: var(--c-wht);
  padding: 1.5rem 3.5rem;
}
@media (max-width: 767px) {
  .p-service-sign-menu__box-list {
    padding: 1.5rem 1rem;
  }
}
.p-service-sign-menu__box-list li {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-left: 1.25rem;
}
.p-service-sign-menu__box-list li:not(:first-child) {
  margin-top: 0.5rem;
}
.p-service-sign-menu__box-list li::after {
  position: absolute;
  content: "";
  top: 0.5rem;
  left: 0;
  width: 0.7rem;
  aspect-ratio: 2/1;
  transform: rotate(-45deg);
  border-left: 1px solid var(--c-blk);
  border-bottom: 1px solid var(--c-blk);
}

.p-service-sign-menu__row {
  position: relative;
  margin-top: 8.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
  align-items: center;
}
@media (max-width: 767px) {
  .p-service-sign-menu__row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 5rem;
  }
}
.p-service-sign-menu__row::after {
  position: absolute;
  content: "";
  top: -2.5rem;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 7.5rem;
  aspect-ratio: 120/50;
  background: url(../img/img_service_sign-menu_arrow.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .p-service-sign-menu__row::after {
    width: 5rem;
    top: -1.5rem;
  }
}

.p-service-sign-menu__text {
  position: relative;
  margin-top: 8.125rem;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-service-sign-menu__text {
    font-size: 1.5rem;
  }
}
.p-service-sign-menu__text span {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .p-service-sign-menu__text span {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .p-service-sign-menu__text {
    margin-top: 5rem;
  }
}
.p-service-sign-menu__text::after {
  position: absolute;
  content: "";
  top: -2.5rem;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 7.5rem;
  aspect-ratio: 120/50;
  background: url(../img/img_service_sign-menu_arrow.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .p-service-sign-menu__text::after {
    width: 5rem;
    top: -1.5rem;
  }
}

.p-service-sign-menu__text2 {
  margin-top: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

.p-service-sign-menu__row-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-service-sign-menu__row-title {
    font-size: 1.25rem;
  }
}

.p-service-sign-menu__row-text {
  margin-top: 1rem;
  letter-spacing: 0.06em;
}

.p-service-sign-menu__btn {
  margin-top: 2.5rem;
}
.p-service-sign-menu__btn a {
  position: relative;
  font-weight: 500;
  color: var(--c-blk) !important;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin-left: auto;
  padding-right: 4rem;
}
.p-service-sign-menu__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 2.5rem;
  height: 1px;
  background: var(--c-blk);
  transition: right 0.3s ease;
}
.p-service-sign-menu__btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: right bottom;
  width: 1rem;
  height: 1px;
  background: var(--c-blk);
  transition: right 0.3s ease;
}
.p-service-sign-menu__btn a:hover::after, .p-service-sign-menu__btn a:hover::before {
  right: -0.5rem;
}

/* ===============================================
# CONSTRUCTION MENU
=============================================== */
.p-service-construction-menu__item:not(:first-child) {
  margin-top: 5rem;
}

.p-service-construction-menu__item-img {
  max-width: 960px;
  margin: 2.5rem auto 0;
}

.p-service-construction-menu__box {
  margin-top: 2.5rem;
}

.p-service-construction-menu__box-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  width: fit-content;
  margin-inline: auto;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-title {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}
.p-service-construction-menu__box-title::after, .p-service-construction-menu__box-title::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  width: 2.5rem;
  height: 1px;
  background: #000;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-title::after, .p-service-construction-menu__box-title::before {
    width: 1.5rem;
  }
}
.p-service-construction-menu__box-title::after {
  left: -2.5rem;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-title::after {
    left: -1.5rem;
  }
}
.p-service-construction-menu__box-title::before {
  right: -2.5rem;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-title::before {
    right: -1.5rem;
  }
}

.p-service-construction-menu__box-row {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.p-service-construction-menu__box-item {
  border: 1px solid var(--c-gry);
}

.p-service-construction-menu__box-item-label {
  background: var(--c-blk);
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-item-label {
    font-size: 0.85rem;
  }
}

.p-service-construction-menu__box-item-body {
  padding: 1.5rem 2.5rem;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-item-body {
    padding: 1rem;
  }
}

.p-service-construction-menu__box-catch {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-catch {
    font-size: 1rem;
  }
}

.p-service-construction-menu__box-text {
  margin-top: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-service-construction-menu__box-text {
    font-size: 0.85rem;
  }
}

/* ===============================================
# EXPLANATION
=============================================== */
.p-service-explanation__wrap {
  display: grid;
  gap: 2.5rem;
}

.p-service-explanation__row.-col2 {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-service-explanation__row.-col2 {
    flex-direction: column;
  }
}

.p-service-explanation__item {
  border: 1px solid var(--c-gry);
  padding: 2.5rem;
  flex: 1;
}
@media (max-width: 767px) {
  .p-service-explanation__item {
    padding: 1.5rem;
  }
}

.p-service-explanation__item-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 767px) {
  .p-service-explanation__item-title {
    font-size: 1rem;
  }
}

.p-service-explanation__item-text {
  margin-top: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-service-explanation__item-text {
    font-size: 0.85rem;
  }
}

/* ===============================================
# APPLICATION/NOTIFICATION
=============================================== */
.p-service-app__group {
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-service-app__group {
    gap: 1.5rem;
  }
}

.p-service-app__item dt {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  background: var(--c-gry-light);
  padding: 0.5rem 2.5rem;
}
@media (max-width: 767px) {
  .p-service-app__item dt {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
.p-service-app__item dd {
  margin-top: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  padding: 0 2.5rem;
}
@media (max-width: 767px) {
  .p-service-app__item dd {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    padding: 0 1rem;
  }
}

.p-service-app__footer {
  position: relative;
  margin-top: 9.125rem;
}
@media (max-width: 767px) {
  .p-service-app__footer {
    margin-top: 5.5rem;
  }
}
.p-service-app__footer::after {
  position: absolute;
  content: "";
  top: -2.5rem;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 7.5rem;
  aspect-ratio: 120/50;
  background: url(../img/img_service_sign-menu_arrow.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .p-service-app__footer::after {
    width: 5rem;
    top: -1.5rem;
  }
}

.p-service-app__footer-label {
  width: fit-content;
  margin-inline: auto;
  background: var(--c-blk);
  color: #fff;
  padding: 0.25rem 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-service-app__footer-label {
    font-size: 0.85rem;
  }
}

.p-service-app__footer-text {
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-service-app__footer-text {
    font-size: 1rem;
  }
}

.p-home-topics__inner {
  position: relative;
  z-index: 10;
}
@media (min-width: 960px) {
  .p-home-topics__inner {
    display: flex;
  }
}
@media (min-width: 960px) {
  .p-home-topics__header {
    flex-shrink: 0;
    flex-grow: 0;
    padding-right: 5rem;
  }
}
@media (max-width: 767px) {
  .p-home-topics__header + * {
    margin-top: 1.5rem;
  }
}
@media (min-width: 960px) {
  .p-home-topics__body {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .p-home-topics__body + * {
    margin-top: 1.5rem;
  }
}
* + .p-home-topics__btn[class] {
  margin-top: 2.5em;
}
@media (max-width: 767px) {
  * + .p-home-topics__btn[class] {
    margin-top: 24px;
  }
}
.p-home-topics__btn[class] a {
  font-size: 1rem;
  padding: 1rem;
}

.p-topics-list {
  border-bottom: 1px solid var(--c-gry);
}
.p-topics-list__item {
  position: relative;
  padding: 1.5rem 1rem;
  padding-right: 3rem;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  padding-right: 3rem;
  margin-right: -12px;
  transition: background-position 0.25s ease-in-out !important;
}
@media (min-width: 960px) {
  .p-topics-list__item {
    display: flex;
    align-items: end;
    gap: 0 1rem;
  }
}
.p-topics-list__item + .p-topics-list__item {
  border-top: 1px solid var(--c-gry);
  padding-top: 2rem;
}
@media (min-width: 960px) {
  .p-topics-list__item:hover {
    background-position: 100% center;
  }
}
.p-topics-list__meta {
  color: var(--pri);
}
@media (max-width: 767px) {
  .p-topics-list__meta + * {
    margin-top: 1rem;
  }
}
.p-topics-list__time {
  font-size: 0.75rem;
  font-weight: 400;
}
@media (min-width: 960px) {
  .p-topics-list__time {
    width: 90px;
    letter-spacing: 0.12rem;
  }
}
@media (max-width: 767px) {
  .p-topics-list__time {
    transform: translateY(0.125rem);
    width: 80px;
  }
}
.p-topics-list__time + * {
  margin-top: 0.81rem;
  margin-bottom: 0.3rem;
}
.p-topics-list__cat-list {
  flex-wrap: wrap;
  display: flex;
}
.p-topics-list__cat-list li {
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.p-topics-list__cat-list li > * {
  background-color: var(--c-blk);
  color: var(--c-wht);
  font-size: 0.75rem;
  padding: 0.25rem 1rem 0.15rem;
  line-height: 1.5;
  min-width: 7.5rem;
  display: block;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
}
@media (min-width: 960px) {
  .p-topics-list__cat-list li > * {
    letter-spacing: 0.12rem;
  }
}
.p-topics-list__cat-list li a {
  transition: all 0.2s ease-in-out;
}
.p-topics-list__cat-list li a:hover {
  background-color: var(--pri-light);
  text-decoration: none;
  color: var(--pri);
}
.p-topics-list__title > * {
  transition: all 0.2s ease-in-out;
}
.p-topics-list__title a {
  text-decoration: none;
}
.p-topics-list__title a:hover {
  text-decoration: none;
  color: var(--pri);
}
.p-topics-list__title a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .p-topics-list + * {
    margin-top: 2rem;
  }
}

@media (min-width: 960px) {
  .p-home-section__header.p-home-feature__header + * {
    margin-top: 0;
  }
}

.p-home-feature__inner {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 959px) {
  .p-home-feature__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-home-feature__inner .c-headline + .c-headline__lead {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-feature__inner .c-headline + .c-headline__lead {
    margin-top: 24px;
  }
}
.p-home-feature__inner .c-headline__desc + .c-btn {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-home-feature__inner .c-headline__desc + .c-btn {
    margin-top: 24px;
  }
}

.p-home-feature__body {
  flex-shrink: 0;
  flex-grow: 0;
}
.p-home-feature__img {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .p-home-feature__img {
    max-width: 520px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-home-feature__img + * {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  .p-home-feature__img + * {
    margin-top: 5rem;
  }
}

@media (max-width: 767px) {
  .p-features-commit-img {
    overflow: hidden;
    margin: 0 calc(50% - 50vw);
  }
  .p-features-commit-img img {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: 160%;
    max-width: none;
    margin-inline: auto;
  }
}

.p-features-commit {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .p-features-commit {
    margin-top: 0rem;
  }
}

.p-features-commit__item:not(:first-child) {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p-features-commit__item:not(:first-child) {
    margin-top: 5rem;
  }
}

.p-features-commit__item-num {
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  color: var(--c-gry);
  width: fit-content;
}
@media (max-width: 767px) {
  .p-features-commit__item-num {
    font-size: 1.25rem;
  }
}
.p-features-commit__item-num::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -1.5rem;
  transform: translate(100%, -50%);
  width: 25rem;
  height: 1px;
  background: var(--c-blk);
}
@media (max-width: 767px) {
  .p-features-commit__item-num::after {
    width: 15rem;
  }
}

.p-features-commit__item-content {
  margin-top: 1.5rem;
  display: flex;
  gap: 6.6%;
}
@media (max-width: 767px) {
  .p-features-commit__item-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-features-commit__item-title {
  flex: 1;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-features-commit__item-title {
    font-size: 1.25rem;
  }
}

.p-features-commit__item-text {
  flex: 1;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-features-commit__item-text {
    font-size: 0.85rem;
  }
}

.p-scene-number__inner {
  counter-reset: number 0;
}
@media (min-width: 960px) {
  .p-scene-number__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 2.5rem;
  }
}
@media (min-width: 960px) {
  .p-scene-number__inner > * {
    flex-basis: calc(33.333% - 1.6666666667rem);
    max-width: calc(33.333% - 1.6666666667rem);
  }
}
.p-scene-number__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
}
.p-scene-number__title + * {
  padding-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-scene-number__title + * {
    padding-top: 14px;
  }
}
.p-scene-number__item-inner {
  background-color: var(--c-wht);
  padding-left: 1rem;
}
.p-scene-number__item {
  position: relative;
  padding-top: 66px;
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  .p-scene-number__item + .p-scene-number__item {
    margin-top: 2rem;
  }
}
.p-scene-number__item::before {
  counter-increment: number 1;
  content: "0" counter(number) "";
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.16em;
  line-height: 1;
  padding-bottom: 1rem;
  padding-left: 1rem;
  background-color: var(--c-wht);
}
.p-scene-number__item::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 15rem;
  height: 15rem;
  border-radius: 15rem;
  border: 1px solid var(--c-gry);
  position: absolute;
  z-index: -1;
}
.p-scene-number.-title-only .p-scene-number__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 2rem;
}
.p-scene-number.-title-only .p-scene-number__title span {
  font-size: 1.25rem;
}

@media (min-width: 960px) {
  .p-scene-col3__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 2.5rem;
  }
}
@media (min-width: 960px) {
  .p-scene-col3__inner > * {
    flex-basis: calc(33.333% - 1.6666666667rem);
    max-width: calc(33.333% - 1.6666666667rem);
  }
}
.p-scene-col3__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 150%;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-gry);
}
.p-scene-col3__title + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-scene-col3__title + * {
    margin-top: 10px;
  }
}
.p-scene-col3__img img {
  width: 100%;
  aspect-ratio: 374/226;
  object-fit: cover;
}
.p-scene-col3__img + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-scene-col3__img + * {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .p-scene-col3__item + .p-scene-col3__item {
    margin-top: 2rem;
  }
}

.p-scene-flex + .p-scene-flex {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-scene-flex + .p-scene-flex {
    margin-top: 2.5rem;
  }
}
.p-scene-flex:nth-child(2n) {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 960px) {
  .p-scene-flex:nth-child(2n) .p-scene-flex__inner {
    flex-direction: row;
  }
}
.p-scene-flex:nth-child(2n)::before {
  content: "";
  display: block;
  top: 0;
  right: 0;
  width: calc(100% + 50rem);
  transform: translateX(50%);
  height: 100%;
  background-color: var(--c-gry-light);
  position: absolute;
  z-index: -1;
}
.p-scene-flex:nth-child(4n)::before {
  left: 0;
  right: auto;
  transform: translateX(-50%);
}
.p-scene-flex-wrap {
  counter-reset: number 0;
}
@media (min-width: 960px) {
  .p-scene-flex__inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3.5rem;
  }
}
.p-scene-flex__img {
  flex-shrink: 0;
  flex-grow: 0;
}
.p-scene-flex__img img {
  width: 100%;
  aspect-ratio: 464/280;
  max-width: 464px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-scene-flex__img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .p-scene-flex__img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .p-scene-flex__img + * {
    margin-top: 19px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-scene-flex__img + * {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .p-scene-flex__img + * {
    margin-top: 2rem;
  }
}
.p-scene-flex__text {
  display: flex;
  align-items: start;
  gap: 2.5rem;
}
.p-scene-flex__text::before {
  counter-increment: number 1;
  content: counter(number) "";
  display: block;
  font-size: 7.5rem;
  line-height: 0.8;
}
.p-scene-flex__title {
  font-size: 1.5rem;
  font-weight: 500;
}
.p-scene-flex__title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-scene-flex__title + * {
    margin-top: 14px;
  }
}
.p-scene-flex__link {
  margin-top: 1.5rem;
}
.p-scene-flex__link a {
  position: relative;
  font-weight: 500;
  color: var(--c-blk) !important;
  text-decoration: none;
  display: block;
  width: fit-content;
  padding-right: 4rem;
}
.p-scene-flex__link a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 2.5rem;
  height: 1px;
  background: var(--c-blk);
  transition: right 0.3s ease;
}
.p-scene-flex__link a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: right bottom;
  width: 1rem;
  height: 1px;
  background: var(--c-blk);
  transition: right 0.3s ease;
}
.p-scene-flex__link a:hover::after, .p-scene-flex__link a:hover::before {
  right: -0.5rem;
}

@media (min-width: 960px) {
  .p-scene-textblock__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 5rem;
  }
}
@media (min-width: 960px) {
  .p-scene-textblock__inner > * {
    flex-basis: calc(50% - 2.5rem);
    max-width: calc(50% - 2.5rem);
  }
}
.p-scene-textblock__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
}
.p-scene-textblock__title + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-scene-textblock__title + * {
    margin-top: 10px;
  }
}
.p-scene-textblock__desc {
  border: 1px solid var(--c-gry);
  padding: 1rem 1.5rem;
  flex-grow: 1;
}
.p-scene-textblock__item {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-scene-textblock__item + .p-scene-textblock__item {
    margin-top: 2rem;
  }
}

/* =====================================
 * コンテンツ内CTA
 * ================================== */
.c-cta {
  position: relative;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .c-cta {
    margin-top: 6rem;
  }
}
.c-cta::before {
  content: "";
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--c-blk);
  position: absolute;
  z-index: -1;
  min-width: calc(1200px + 2rem);
}
.c-cta__bg {
  font-size: 7.5rem;
  letter-spacing: 0.16rem;
  color: var(--c-gry-light);
  opacity: 0.2;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0.8;
  margin-bottom: -0.5rem;
  min-width: 1600px;
  text-align: right;
}
.c-cta-inner {
  padding-top: 96px;
  padding-bottom: 96px;
  justify-content: center;
}
@media screen and (min-width: 1231px) and (max-width: 1600px) {
  .c-cta-inner {
    padding: 6rem min(4rem, 5vw);
  }
}
@media screen and (max-width: 1230px) {
  .c-cta-inner {
    padding: 6rem min(1rem, 1vw);
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
  .c-cta-inner {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (min-width: 960px) {
  .c-cta-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .c-cta-inner {
    padding: 2rem 1.25rem;
  }
}

.c-cta__title {
  font-size: 1.25rem;
  font-weight: 500;
}
.c-cta__title span {
  font-size: 1.75rem;
  margin-right: 0.875rem;
}
.c-cta__title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .c-cta__title + * {
    margin-top: 14px;
  }
}
.c-cta__text {
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 768px) {
  .c-cta__text {
    max-width: 400px;
  }
}
.c-cta__text > * {
  color: var(--c-wht);
}
.c-cta__contact {
  padding: 2.5rem;
  background-color: var(--c-wht);
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .c-cta__contact {
    margin-left: 3.5rem;
  }
}
@media screen and (min-width: 961px) and (max-width: 1600px) {
  .c-cta__contact {
    margin-left: min(2rem, 3vw);
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
  .c-cta__contact {
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .c-cta__contact {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .c-cta__contact {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .c-cta__contact + * {
    margin-top: 2rem;
  }
}
.c-cta__contact-title {
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
}
.c-cta__contact-title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .c-cta__contact-title + * {
    margin-top: 14px;
  }
}
.c-cta__contact-btn-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1131px) {
  .c-cta__contact-btn-wrap {
    flex-direction: column;
  }
}
.c-cta__contact-btn a:not([class]) {
  background: radial-gradient(50% 50% at 50% 50%, #333 0%, #333 100%);
  line-height: 1.5;
  color: var(--c-wht);
  padding: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 240px;
  background-color: #333;
  /* transition可能 */
  transition: all 0.2s ease-in-out;
}
.c-cta__contact-btn a:not([class])::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_mail.svg);
  background-size: 100%;
}
@media (min-width: 960px) {
  .c-cta__contact-btn a:not([class]):hover {
    text-decoration: none;
    color: var(--c-wht);
    background: radial-gradient(50% 50% at 50% 50%, #004097 0%, #002960 100%);
  }
}
.c-cta__contact-tel-btn a:not([class]) {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 150%;
  letter-spacing: 0.24rem;
  text-decoration: none;
}
.c-cta__contact-tel-btn a:not([class])::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_tel.svg);
  background-size: 100%;
}
.c-cta__contact-lead {
  font-size: 0.75rem;
  text-align: center;
  font-weight: 500;
}
.c-cta__contact-time {
  font-size: 0.75rem;
  text-align: center;
}

.p-scene-col5.-under .p-scene-col5__inner {
  border-top: 1px solid var(--c-gry);
  border-left: 1px solid var(--c-gry);
  border-right: 1px solid var(--c-gry);
}
.p-scene-col5.-under + .l-footer__cv {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p-scene-col5.-under + .l-footer__cv {
    margin-top: 5rem;
  }
}

body:not([data-page-slug=service][data-page-type=""]) .l-footer .p-service-list01 {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  body:not([data-page-slug=service][data-page-type=""]) .l-footer .p-service-list01 {
    margin-top: 6rem;
  }
}

/* =====================================
 * 下層スライダー
 * ================================== */
body[data-page-slug=case-study][data-page-type=detail] .swiper.c-under-slider {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  body[data-page-slug=case-study][data-page-type=detail] .swiper.c-under-slider {
    margin-top: 3rem;
  }
}
body[data-page-slug=case-study][data-page-type=detail] .swiper.c-under-slider + .c-btn {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  body[data-page-slug=case-study][data-page-type=detail] .swiper.c-under-slider + .c-btn {
    margin-top: 5rem;
  }
}

.swiper.c-under-slider {
  padding-bottom: 2.5rem;
  /* スライダー左の余白 */
  width: 100%;
  overflow: visible;
}
.swiper.c-under-slider + .c-btn {
  margin-top: -3rem;
}
@media (max-width: 767px) {
  .swiper.c-under-slider + .c-btn {
    margin-top: 4rem;
  }
}
.swiper.c-under-slider .c-under-slider-pagination {
  bottom: 0;
  right: 0;
}
.swiper.c-under-slider .c-under-slider-pagination > * {
  letter-spacing: 0.04em;
}
.swiper.c-under-slider .swiper-button-prev.c-under-slider-button-prev {
  top: auto;
  bottom: -0.7rem;
  right: auto;
  left: 0;
  background-color: var(--c-gry);
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  transition: all 0.2s ease-in-out;
}
.swiper.c-under-slider .swiper-button-prev.c-under-slider-button-prev::after {
  content: "";
  width: 0.5rem;
  height: 0.85rem;
  background-size: 100%;
  background-image: url(../img/ico_arr_slider_left_wht.svg);
  margin-left: 0.1rem;
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .swiper.c-under-slider .swiper-button-prev.c-under-slider-button-prev::after {
    width: 0.5rem;
    height: 0.85rem;
  }
}
.swiper.c-under-slider .swiper-button-prev.c-under-slider-button-prev:hover {
  opacity: 0.6;
}
.swiper.c-under-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper.c-under-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}
.swiper.c-under-slider .swiper-button-next.c-under-slider-button-next {
  top: auto;
  bottom: -0.7rem;
  right: auto;
  left: calc(3rem + 4px);
  background-color: var(--c-gry);
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  transition: all 0.2s ease-in-out;
}
.swiper.c-under-slider .swiper-button-next.c-under-slider-button-next::after {
  content: "";
  width: 0.5rem;
  height: 0.85rem;
  background-size: 100%;
  background-image: url(../img/ico_arr_slider_right_wht.svg);
  margin-left: 0.1rem;
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .swiper.c-under-slider .swiper-button-next.c-under-slider-button-next::after {
    width: 0.5rem;
    height: 0.85rem;
  }
}
.swiper.c-under-slider .swiper-button-next.c-under-slider-button-next:hover {
  opacity: 0.6;
}
@media (min-width: 960px) {
  .swiper.c-under-slider .c-under-slider-slide {
    min-width: 480px;
  }
}
.swiper.c-under-slider .c-under-slider-slide img {
  width: fit-content;
  height: inherit;
  object-fit: cover;
}
@media (min-width: 960px) {
  .swiper.c-under-slider .c-under-slider-slide img {
    aspect-ratio: 800/483;
  }
}
@media (max-width: 767px) {
  .swiper.c-under-slider .c-under-slider-slide img {
    width: 100%;
  }
}
.swiper.c-under-slider .c-under-slider-slide img + * {
  margin-top: 1rem;
}
.swiper.c-under-slider .c-under-slider-title {
  font-weight: bold;
}
.swiper.c-under-slider .swiper-pagination-bullet-active {
  background: var(--c-blk);
}

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

.c-under-list__item {
  position: relative;
}
.c-under-list__item a {
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: block;
  padding-bottom: 1rem;
}
@media (min-width: 960px) {
  .c-under-list__item a:hover .c-under-list__img img {
    transform: scale(1.1);
  }
}
@media (min-width: 960px) {
  .c-under-list__item a:hover .c-under-list__title,
  .c-under-list__item a:hover .c-under-list__desc,
  .c-under-list__item a:hover .c-under-list__name {
    opacity: 0.6;
  }
}
@media (min-width: 960px) {
  .c-under-list__item a:hover:after {
    background-position: 100% center;
    opacity: 0.6;
  }
}
.c-under-list__title {
  font-size: 1.5rem;
  font-weight: bold;
}
.c-under-list__title + * {
  margin-top: 0.5rem;
}
.c-under-list__name {
  font-size: 0.875rem;
  font-weight: 300;
}
.c-under-list__name + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .c-under-list__name + * {
    margin-top: 10px;
  }
}
.c-under-list__desc {
  font-weight: 300;
}
.c-under-list__desc + * {
  margin-top: 1.5rem;
}
.c-under-list__img {
  overflow: hidden;
  aspect-ratio: 800/483;
}
.c-under-list__img img {
  transition: all 0.5s ease-in-out;
}
.c-under-list__img + * {
  margin-top: 1.5rem;
}

.c-under__link-list {
  display: flex;
  gap: 3%;
}
@media (max-width: 767px) {
  .c-under__link-list {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.c-under__link-item {
  flex: 1;
  border: 1px solid var(--c-gry);
  padding: 2.5rem;
  transition: all 0.2s ease-in-out;
  position: relative;
}
@media (max-width: 767px) {
  .c-under__link-item {
    padding: 1.5rem;
  }
}
@media (min-width: 960px) {
  .c-under__link-item:hover {
    background-color: var(--c-gry-light);
  }
}
.c-under__link-item:has(.is-current) {
  opacity: 0.6;
  pointer-events: none;
  background-color: var(--c-gry-light);
}
.c-under__link-item a {
  text-decoration: none;
  color: var(--c-blk) !important;
}
.c-under__link-item a::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.c-under__link-item a.is-current {
  pointer-events: none;
}
.c-under__link-item a:hover .c-under__link-item-link::after, .c-under__link-item a:hover .c-under__link-item-link::before {
  right: -0.5rem;
}

.c-under__link-item-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.c-under__link-item-img {
  max-width: 3.5rem;
}

.c-under__link-item-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.c-under__link-item-text {
  margin-top: 1.5rem;
}

.c-under__link-item-link {
  margin-top: 2.5rem;
  position: relative;
  font-weight: 500;
  color: var(--c-blk) !important;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin-left: auto;
  padding-right: 4rem;
}
.c-under__link-item-link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 2.5rem;
  height: 1px;
  background: var(--c-blk);
  transition: right 0.3s ease;
}
.c-under__link-item-link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: right bottom;
  width: 1rem;
  height: 1px;
  background: var(--c-blk);
  transition: right 0.3s ease;
}

.u-under__sub-title {
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 500;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .u-under__sub-title {
    font-size: 1.25rem;
  }
}

/* =====================================
 * アンカーリンク
 * ================================== */
.c-anchor-link + .c-worry {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .c-anchor-link + .c-worry {
    margin-top: 3rem;
  }
}
@media (min-width: 768px) {
  .c-anchor-link__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.875rem;
  }
}
.c-anchor-link__inner.-max3 {
  gap: 1rem;
}
.c-anchor-link__inner.-max2 {
  gap: 1.875rem;
}
.c-anchor-link__inner.-max5 {
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .c-anchor-link__inner.-max2 > * {
    flex-basis: calc(50% - 0.9375rem);
    max-width: calc(50% - 0.9375rem);
  }
}
@media (min-width: 768px) {
  .c-anchor-link__inner.-max3 > * {
    flex-basis: calc(33.333% - 0.6666666667rem);
    max-width: calc(33.333% - 0.6666666667rem);
  }
}
@media (min-width: 768px) {
  .c-anchor-link__inner.-max4 > * {
    flex-basis: calc(25% - 1.40625rem);
    max-width: calc(25% - 1.40625rem);
  }
}
@media (min-width: 768px) {
  .c-anchor-link__inner.-max5 > * {
    flex-basis: calc(33.333% - 0.5rem);
    max-width: calc(33.333% - 0.5rem);
  }
}
@media (min-width: 960px) {
  .c-anchor-link__inner.-max5 > * {
    flex-basis: calc(20% - 0.6rem);
    max-width: calc(20% - 0.6rem);
  }
}
.c-anchor-link__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 1rem;
  background-color: var(--c-wht);
  border: 1px solid var(--c-gry);
  transition: all 0.2s ease-in-out;
  text-align: center;
  height: 100%;
  padding-right: 2.5rem;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .c-anchor-link__btn a {
    justify-content: flex-start;
    padding: 1rem 2rem;
  }
}
@media (min-width: 960px) {
  .c-anchor-link__btn a:hover {
    background-color: var(--c-pri-light);
  }
}
.c-anchor-link__btn a:after {
  content: "";
  display: block;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right_pri.svg);
  background-size: 100%;
  width: 1rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 1.5rem;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .c-anchor-link__btn a:after {
    margin-right: 2rem;
  }
}
.c-anchor-link__btn a:not([class])[href^="#"] {
  color: var(--c-blk);
}
@media (max-width: 767px) {
  .c-anchor-link__btn + .c-anchor-link__btn {
    margin-top: 1rem;
  }
}

.p-collab-company__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .p-collab-company__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.p-collab-company__item {
  border: 1px solid var(--c-gry);
  padding: 2.5rem;
}
@media (max-width: 767px) {
  .p-collab-company__item {
    padding: 1rem;
  }
}

.p-collab-company__item-img {
  max-width: 5rem;
  margin-inline: auto;
}

.p-collab-company__item-text {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-collab-company__item-text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.p-collab-flow {
  display: flex;
  background: var(--c-gry-light);
  padding: 5rem;
  gap: 7%;
}
@media screen and (max-width: 1200px) {
  .p-collab-flow {
    padding: 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-collab-flow {
    flex-direction: column;
    padding: 1.5rem 1rem;
  }
}

.p-collab-flow__left {
  position: sticky;
  width: 16.25rem;
  top: 5rem;
  left: 0;
  height: fit-content;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-collab-flow__left {
    width: 100%;
    background: var(--c-gry-light);
  }
}

.p-collab-flow__right {
  flex: 1;
}

.p-collab-flow__label {
  display: flex;
}
@media (min-width: 768px) {
  .p-collab-flow__label {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-collab-flow__label {
    gap: 1.5rem;
    padding: 1rem 0;
  }
}

.p-collab-flow__label-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.p-collab-flow__label-item.-blk .p-collab-flow__label-box {
  background: var(--c-blk);
}

.p-collab-flow__label-box {
  border: 1px solid var(--c-blk);
  width: 2.5rem;
  height: 1.625rem;
}

.p-collab-flow__label-title {
  letter-spacing: 0.06em;
}

.p-collab-flow__menu li {
  color: var(--c-gry-dark);
}
.p-collab-flow__menu li .en {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}
.p-collab-flow__menu li .jp {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.p-collab-flow__menu li.active {
  color: var(--c-blk);
}
.p-collab-flow__menu li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit !important;
  transition: color 0.3s ease;
  width: fit-content;
}
.p-collab-flow__menu li a:hover {
  color: var(--c-blk) !important;
}
.p-collab-flow__menu li:not(:first-child) {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .p-collab-flow__menu {
    display: none;
  }
}

.p-collab-flow__item:not(:first-child) {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-collab-flow__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.p-collab-flow__item-title {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-gry);
}
@media (max-width: 767px) {
  .p-collab-flow__item-title {
    font-size: 1.125rem;
  }
}
.p-collab-flow__item-title span {
  display: block;
  letter-spacing: 0.16em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .p-collab-flow__item-title span {
    font-size: 1.25rem;
  }
}

.p-collab-flow__box {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-collab-flow__box {
    margin-top: 1rem;
  }
}

.p-collab-flow__box-list {
  background: var(--c-wht);
  border: 1px solid var(--c-blk);
  padding: 1.5rem 3.5rem;
}
@media (max-width: 767px) {
  .p-collab-flow__box-list {
    padding: 1rem;
  }
}
.p-collab-flow__box-list li {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-left: 1.25rem;
}
@media (max-width: 767px) {
  .p-collab-flow__box-list li {
    font-size: 0.85rem;
  }
}
.p-collab-flow__box-list li::after {
  position: absolute;
  content: "";
  top: 30%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.7rem;
  aspect-ratio: 2/1;
  transform: rotate(-45deg);
  border-left: 1px solid var(--c-blk);
  border-bottom: 1px solid var(--c-blk);
}
.p-collab-flow__box-list li:not(:first-child) {
  margin-top: 0.5rem;
}
.p-collab-flow__box-list.-blk {
  background: var(--c-blk);
  color: var(--c-wht);
}
.p-collab-flow__box-list.-blk li::after {
  border-left: 1px solid var(--c-wht);
  border-bottom: 1px solid var(--c-wht);
}

.p-collab-flow__text {
  letter-spacing: 0.06em;
}

.p-collab-flow__info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-collab-flow__info {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-collab-flow__info-cv a {
  width: 15rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blk);
  gap: 0.75rem;
  text-decoration: none;
  color: var(--c-wht) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--c-blk);
}
.p-collab-flow__info-cv a::before {
  content: "";
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: var(--c-wht);
  mask-image: url(../img/ico_mail.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background 0.3s ease;
}
.p-collab-flow__info-cv a:hover {
  background: var(--c-wht);
  color: var(--c-blk) !important;
}
.p-collab-flow__info-cv a:hover::before {
  background: var(--c-blk);
}

.p-collab-flow__info-tel {
  text-align: center;
}
.p-collab-flow__info-tel .head {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
}
.p-collab-flow__info-tel .time {
  display: block;
  font-size: 0.85rem;
}
.p-collab-flow__info-tel a {
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.p-collab-flow__info-tel a::before {
  content: "";
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: var(--c-blk);
  mask-image: url(../img/ico_tel.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-profile-philosophy__title {
  font-size: 2.5rem;
  letter-spacing: 0.16em;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .p-profile-philosophy__title {
    font-size: 1.2rem;
  }
}

.p-profile-philosophy__img {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p-profile-philosophy__img {
    overflow: hidden;
    margin: 0.5rem calc(50% - 50vw) 0;
  }
  .p-profile-philosophy__img img {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: 140%;
    max-width: none;
    margin-inline: auto;
  }
}

.p-profile-philosophy__sp {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .p-profile-philosophy__sp {
    display: none;
  }
}

.p-profile-philosophy__sp-item:not(:first-child) {
  margin-top: 2.5rem;
}

.p-profile-philosophy__sp-item-label {
  background: var(--c-blk);
  color: var(--c-wht);
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-profile-philosophy__sp-item-label .en {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.p-profile-philosophy__sp-item-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.p-profile-philosophy__sp-item-text {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.p-profile-philosophy__bottom-text {
  position: relative;
  margin-top: 8.125rem;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-profile-philosophy__bottom-text {
    font-size: 1rem;
    margin-top: 5rem;
  }
}
.p-profile-philosophy__bottom-text::after {
  position: absolute;
  content: "";
  top: -2.5rem;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 7.5rem;
  aspect-ratio: 120/50;
  background: url(../img/img_service_sign-menu_arrow.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .p-profile-philosophy__bottom-text::after {
    width: 5rem;
    top: -1.5rem;
  }
}

.p-profile-company__wrap {
  border-top: 1px solid var(--c-gry);
}

.p-profile-company__row {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-gry);
  padding: 2.5rem;
}
@media (max-width: 767px) {
  .p-profile-company__row {
    padding: 1.5rem 0.5rem;
  }
}
.p-profile-company__row dt {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  width: 22%;
}
@media (max-width: 767px) {
  .p-profile-company__row dt {
    font-size: 1rem;
    width: 30%;
  }
}
.p-profile-company__row dd {
  line-height: 1.8;
  letter-spacing: 0.06em;
  flex: 1;
}

.p-profile-company__access-map {
  margin-top: 1rem;
}
.p-profile-company__access-map a {
  display: block;
  width: 15rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-blk);
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-profile-company__access-map a {
    width: 13rem;
    height: 3rem;
  }
}
.p-profile-company__access-map a::before {
  content: "";
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: var(--c-blk);
  mask-image: url(../img/ico_access.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background 0.3s ease;
}
.p-profile-company__access-map a:hover {
  background: var(--c-blk);
  color: #fff;
}
.p-profile-company__access-map a:hover::before {
  background: var(--c-wht);
}

.p-equipment-philosophy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-equipment-philosophy__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.p-equipment-philosophy__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 374/240;
  object-fit: cover;
}

.p-equipment-philosophy__item-title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-equipment-philosophy__item-title {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.p-equipment-philosophy__item-sub-title {
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  .p-equipment-philosophy__item-sub-title {
    font-size: 0.7rem;
  }
}

.p-equipment-philosophy__item-text {
  margin-top: 1rem;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-equipment-philosophy__item-text {
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }
}

.p-access-office__wrap {
  display: flex;
}
@media (min-width: 768px) {
  .p-access-office__wrap {
    margin-right: max(-12.5rem, 50% - 50vw);
    gap: 7%;
  }
}
@media (max-width: 767px) {
  .p-access-office__wrap {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-access-office__content {
  flex: 1;
}

.p-access-office__content-row:not(:first-child) {
  margin-top: 2.5rem;
}

.p-access-office__content-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--c-gry);
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .p-access-office__content-title {
    font-size: 1rem;
    padding-bottom: 0.25rem;
  }
}

.p-access-office__content-text {
  margin-top: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-access-office__content-text {
    margin-top: 1rem;
    font-size: 0.85rem;
  }
}

.p-access-office__content-link {
  margin-top: 1rem;
}
.p-access-office__content-link a {
  color: var(--c-blk) !important;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .p-access-office__map {
    width: 57%;
  }
}
.p-access-office__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 800/420;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.p-scene-structure__main-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-scene-structure__main-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-scene-structure__main-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  border: 1px solid var(--c-blk);
  padding: 0.6rem;
  text-align: center;
}

.p-scene-structure__main-img {
  margin-top: 0.5rem;
}
.p-scene-structure__main-img img {
  width: 100%;
}

.p-scene-structure__sub-list {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.5rem;
}

.p-scene-structure__sub-item {
  display: grid;
  gap: 0.5rem;
}

.p-scene-structure__sub-title {
  background: var(--c-blk);
  color: var(--c-wht);
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  padding: 0.6rem;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-scene-structure__sub-title {
    font-size: 1rem;
    padding: 0.25rem;
  }
}

.p-scene-structure__sub-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-scene-structure__sub-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-scene-structure__sub-text {
  background: var(--c-gry-light);
  letter-spacing: 0.06em;
  line-height: 1.8;
  padding: 1.5rem 2.5rem;
}
@media (max-width: 767px) {
  .p-scene-structure__sub-text {
    padding: 1rem;
  }
}

.p-scene-type__item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-scene-type__item {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-scene-type__item:not(:first-child) {
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .p-scene-type__item-img {
    width: 33%;
  }
}
.p-scene-type__item-img img {
  width: 100%;
}

.p-scene-type__item-content {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .p-scene-type__item-content {
    width: 60%;
  }
}

.p-scene-type__item-title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.p-scene-type__item-title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -1rem;
  transform: translate(-100%, -50%);
  width: 7.5rem;
  height: 1px;
  background: var(--c-blk);
}
@media (max-width: 767px) {
  .p-scene-type__item-title::after {
    display: none;
  }
}

.p-scene-type__item-text {
  margin-top: 1.5rem;
  letter-spacing: 0.16em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-scene-type__item-text {
    margin-top: 0.5rem;
  }
}

.p-scene-suggestion__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
@media (max-width: 767px) {
  .p-scene-suggestion__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.p-scene-suggestion__item {
  display: flex;
  flex-direction: column;
}

.p-scene-suggestion__item-label {
  background: var(--c-blk);
  color: var(--c-wht);
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 0.6rem;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 960px) {
  .p-scene-suggestion__item-label {
    font-size: 1.25rem;
  }
}

.p-scene-suggestion__item-body {
  position: relative;
  margin-top: 4rem;
  border: 1px solid var(--c-gry);
  padding: 1rem 1.5rem;
  flex-grow: 1;
}
@media (min-width: 960px) {
  .p-scene-suggestion__item-body {
    padding: 1.5rem 2.5rem;
  }
}
.p-scene-suggestion__item-body::after {
  position: absolute;
  content: "";
  top: -1rem;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 5rem;
  aspect-ratio: 120/50;
  background: url(../img/img_service_sign-menu_arrow.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .p-scene-suggestion__item-body::after {
    width: 4rem;
  }
}

.p-scene-suggestion__item-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
}
@media (min-width: 960px) {
  .p-scene-suggestion__item-title {
    font-size: 1.25rem;
  }
}

.p-scene-suggestion__item-img {
  margin-top: 1rem;
}
.p-scene-suggestion__item-img img {
  width: 100%;
}

.p-scene-suggestion__item-sub-title {
  margin-top: 1rem;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.p-scene-suggestion__item-list {
  margin-top: 0.5rem;
}
.p-scene-suggestion__item-list li {
  position: relative;
  letter-spacing: 0.06em;
  line-height: 1.8;
  padding-left: 1.2rem;
}
.p-scene-suggestion__item-list li::after {
  position: absolute;
  content: "";
  top: 0.7rem;
  left: 0.3rem;
  width: 0.25rem;
  height: 0.25rem;
  display: block;
  background: var(--c-blk);
  border-radius: 100vmax;
}

.p-scene-material__wrap {
  display: grid;
  gap: 3.5rem;
}

.p-scene-material__head {
  display: flex;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .p-scene-material__head {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-scene-material__head-content {
  flex: 1;
}

.p-scene-material__head-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.p-scene-material__head-text {
  margin-top: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .p-scene-material__head-img {
    width: 33%;
  }
}
.p-scene-material__head-img img {
  width: 100%;
}

@media (max-width: 767px) {
  .p-scene-material__table-wrap {
    width: 100%;
    overflow: auto;
  }
}

.p-scene-material__table {
  display: grid;
  grid-template-columns: 70px 1fr 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-scene-material__table {
    width: 60rem;
    grid-template-columns: 50px 1fr 1fr 1fr;
  }
}
.p-scene-material__table .row {
  display: contents;
}
.p-scene-material__table .cell {
  padding: 1.5rem 2.5rem;
  background: var(--c-gry-light);
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-scene-material__table .cell {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
  }
}
.p-scene-material__table .cell.label {
  background: #333;
  color: #fff;
  font-weight: 500;
  text-align: center;
  writing-mode: vertical-rl;
  padding: 0;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-scene-material__table .cell.label {
    font-size: 1rem;
  }
}
.p-scene-material__table .row.header .cell {
  background: #fff;
  font-size: 1.25rem;
  text-align: center;
  border: 1px solid var(--c-blk);
  font-weight: 500;
  padding: 1rem;
}
@media (max-width: 767px) {
  .p-scene-material__table .row.header .cell {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
.p-scene-material__table .cell.empty {
  background: transparent;
  border: none !important;
}

.c-under-list__img img {
  width: 100% !important;
  height: 100% !important;
}

/* =====================================
 * ドロップメニュー
 * ================================== */
@media (min-width: 960px) {
  .l-header {
    background-color: var(--c-wht);
  }
  .l-header.-change-color .l-header__gnav,
  .l-header.-change-color .l-header__logo img {
    margin-top: 0;
  }
  .l-header.-change-color .l-header__logo-title,
  .l-header.-change-color .l-header__link-list {
    opacity: 0;
    height: 0;
  }
  .l-header.-change-color .l-header__logo-title *,
  .l-header.-change-color .l-header__link-list * {
    height: 0;
  }
  .l-header.-change-color .l-header__btn-list li a {
    margin-top: -1.75rem;
    height: 80px;
  }
  .l-header.-change-color .l-header__inner {
    height: 80px;
  }
}

.l-header__menu li[data-dropmenu-trigger*="-"] > a {
  position: relative;
  padding-right: 1.25rem;
}
.l-header__menu li[data-dropmenu-trigger*="-"] > a::before {
  content: "";
  display: block;
  top: 0;
  right: 0;
  width: 1rem;
  height: 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_dropmenu_arr_down.svg);
  background-size: 100%;
  margin-top: 0.25rem;
  position: absolute;
}
@media screen and (max-width: 959px) {
  .l-header__menu li[data-dropmenu-trigger*="-"] > a::before {
    margin-top: 1em;
    opacity: 0.5;
  }
}
.l-header__menu li[data-dropmenu-trigger*="-"] > a:hover::before {
  transform: rotate(180deg);
}
@media (min-width: 960px) {
  .l-header__menu li[data-dropmenu-trigger*="-"] .sub-menu {
    display: none;
  }
}

.c-dropmenu {
  background-color: var(--c-wht);
  padding: 3.5rem;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 99999999;
  max-width: 1200px;
}
.c-dropmenu + .c-dropmenu__list-title {
  margin-top: 2.5rem;
}
.c-dropmenu__list-title {
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-gry);
}
.c-dropmenu__list-title + * {
  margin-top: 2.5rem;
}
.c-dropmenu:has(.c-dropmenu__list-title) {
  max-height: 80vh;
  overflow: auto;
}
.c-dropmenu:has(.c-dropmenu__list-title) .c-dropmenu__body {
  margin-top: 0;
}
.c-dropmenu:has(.c-dropmenu__list-title) .c-dropmenu__list-title:not(:first-of-type) {
  margin-top: 3.5rem;
}
.c-dropmenu:has(.c-dropmenu__list-title) .c-dropmenu__item-menu li a {
  border-bottom: none;
  background-image: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  padding: 1rem 0;
}
.c-dropmenu:has(.c-dropmenu__list-title) .c-dropmenu__img {
  width: 2.5rem;
}
.c-dropmenu:has(.c-dropmenu__list-title) .c-dropmenu__item-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
}
.c-dropmenu:has(.c-dropmenu__list-title) .c-dropmenu__item-menu li {
  flex-basis: calc(25% - 1.125rem);
  max-width: calc(25% - 1.125rem);
}
.c-dropmenu__item + .c-dropmenu__item {
  margin-top: 2.5rem;
}
.c-dropmenu__headline {
  color: var(--c-blk);
  position: relative;
}
.c-dropmenu__headline + * {
  margin-top: 2rem;
}
.c-dropmenu__headline-en {
  color: var(--c-blk);
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.c-dropmenu__headline-bg {
  position: absolute;
  content: "";
  display: block;
  top: calc(50% - 3rem);
  left: calc(50% - 46rem);
  max-width: 923px;
  height: 307px;
  z-index: 0;
}
.c-dropmenu__headline-bg img {
  max-width: 923px;
}
.c-dropmenu__item-inner {
  display: flex;
  gap: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .c-dropmenu__item-inner {
    gap: 1.5rem;
  }
}
.c-dropmenu__item-img {
  position: relative;
  height: fit-content;
}
.c-dropmenu__item-img::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.c-dropmenu__item-img img {
  max-width: 206px;
  aspect-ratio: 206/146;
}
.c-dropmenu__item-img-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--c-wht);
  font-weight: bold;
  z-index: 10;
}
.c-dropmenu__item-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5rem;
  width: 100%;
}
.c-dropmenu__item-menu li {
  flex-basis: calc(50% - 1.25rem);
  max-width: calc(50% - 1.25rem);
}
.c-dropmenu__item-menu li a {
  font-size: 1.125rem;
  text-decoration: none;
  line-height: 1.5;
  position: relative;
  width: 100%;
  display: block;
  padding: 1.5rem 1rem 1.5rem 1rem;
  border-bottom: 1px solid var(--c-gry);
  padding-right: 3rem;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  padding-right: 3rem;
  margin-right: -12px;
  transition: background-position 0.25s ease-in-out !important;
}
@media (min-width: 960px) {
  .c-dropmenu__item-menu li a:hover {
    background-position: 100% center;
  }
}
@media screen and (max-width: 959px) {
  .c-dropmenu {
    display: none !important;
  }
}

/* =====================================
 * 事例ページ
 * ================================== */
.p-case-tag + *,
.p-post-tag + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-case-tag + *,
  .p-post-tag + * {
    margin-top: 4rem;
  }
}
.p-case-tag-title,
.p-post-tag-title {
  font-size: 1.5rem;
}
.p-case-tag-title span,
.p-post-tag-title span {
  font-size: 1rem;
  margin-left: 1rem;
}
.p-case-tag__list,
.p-post-tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.p-case-tag__list li a,
.p-post-tag__list li a {
  background-color: var(--c-gry-dark);
  color: var(--c-wht);
  font-weight: 500;
  padding: 0.25rem 1rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.p-case-tag__list li a:hover,
.p-post-tag__list li a:hover {
  background-color: var(--c-blk);
}
.p-case-tag__list li.is-current a,
.p-post-tag__list li.is-current a {
  background-color: var(--c-blk);
}

body[data-page-slug=blog] .p-case-tag__list li a,
body[data-page-slug=blog] .p-post-tag__list li a {
  background-color: var(--c-wht);
  color: var(--c-gry-dark);
  border: 1px solid var(--c-gry-dark);
}
body[data-page-slug=blog] .p-case-tag__list li a:hover,
body[data-page-slug=blog] .p-post-tag__list li a:hover {
  border: 1px solid var(--c-blk);
  color: var(--c-blk);
}
body[data-page-slug=blog] .p-case-tag__list li.is-current a,
body[data-page-slug=blog] .p-post-tag__list li.is-current a {
  border: 1px solid var(--c-blk);
  color: var(--c-blk);
}

@media (min-width: 768px) {
  .p-case-list-wrap,
  .p-post-list-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5rem 2.5rem;
  }
}
@media (min-width: 768px) {
  .p-case-list-wrap > *,
  .p-post-list-wrap > * {
    flex-basis: calc(33.3333333333% - 1.6666666667rem);
    max-width: calc(33.3333333333% - 1.6666666667rem);
  }
}
@media (max-width: 767px) {
  .p-case-list-wrap > * + *,
  .p-post-list-wrap > * + * {
    margin-top: 2rem;
  }
}

.p-case-list__cat + * {
  margin-top: 0.5rem;
}
.p-case-list__cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.p-case-list__cat-list li span {
  background-color: var(--c-blk);
  color: var(--c-wht);
  font-size: 0.875rem;
  padding: 0.25rem 1rem;
}

.p-case-detail__headline {
  font-size: 1.5rem;
  text-align: center;
}
.p-case-detail__headline + * {
  margin-top: 1.5rem;
}
.p-case-detail__title {
  position: relative;
  font-size: 2.5rem;
  text-align: center;
}
.p-case-detail__title::after {
  position: absolute;
  content: "";
  bottom: -2rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 5rem;
  height: 1px;
  background: var(--c-blk);
}
@media (max-width: 767px) {
  .p-case-detail__title::after {
    bottom: -1.5rem;
    width: 4rem;
  }
}
.p-case-detail__title + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-case-detail__title + * {
    margin-top: 4rem;
  }
}
.p-case-detail__desc {
  font-size: 1.125rem;
  text-align: center;
}

.p-case-detail-imgflex + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-case-detail-imgflex + * {
    margin-top: 4rem;
  }
}
@media (min-width: 960px) {
  .p-case-detail-imgflex__inner {
    display: flex;
    gap: 5rem;
  }
}
.p-case-detail-imgflex__img {
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 720px;
  aspect-ratio: 720/480;
}
.p-case-detail-imgflex__img img {
  width: 100%;
}
@media (max-width: 767px) {
  .p-case-detail-imgflex__img + * {
    margin-top: 2rem;
  }
}
.p-case-detail-imgflex__title {
  font-size: 1.25rem;
  font-weight: bold;
}
.p-case-detail-imgflex__title + * {
  margin-top: 1.5rem;
}
.p-case-detail-imgflex__desc {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-gry);
}
.p-case-detail-imgflex__desc + * {
  margin-top: 1.5rem;
}
.p-case-detail-imgflex__name + * {
  margin-top: 0.25rem;
}
.p-case-detail-imgflex__cat + * {
  margin-top: 1.5rem;
}
.p-case-detail-imgflex__cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.p-case-detail-imgflex__cat-list li span {
  background-color: var(--c-blk);
  color: var(--c-wht);
  font-size: 0.875rem;
  padding: 0.25rem 1rem;
}

/* =====================================
 * 細かい調整
 * ================================== */
.c-section.-xlg {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .c-section.-xlg {
    margin-top: 5rem;
  }
}

.p-case-list__item {
  height: 100%;
}
.p-case-list__item > * {
  height: 100%;
}

.p-service-list01 a {
  text-decoration: none;
}
.p-service-list01 a:hover {
  text-decoration: none !important;
}
.p-service-list01 a.is-current {
  pointer-events: none;
  opacity: 0.6;
}

.p-scene-col5__item.is-current {
  pointer-events: none;
  opacity: 0.6;
  background-color: var(--c-gry-light);
}

.p-scene-col5__title a {
  text-decoration: none;
}
.p-scene-col5__title a:hover {
  text-decoration: none !important;
}
.p-scene-col5__title a::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.c-breadcrumb + * {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .c-breadcrumb + * {
    margin-top: 5rem;
  }
}

.c-breadcrumb {
  margin-top: 1.5rem;
}

.c-breadcrumb li {
  list-style-type: none;
  line-height: 1.5;
  font-size: 0.875rem;
  color: var(--c-gry-dark);
}
.c-breadcrumb li a {
  color: var(--c-blk);
}
.c-breadcrumb li + li:before {
  border-left: none;
  border-bottom: none;
  width: 0.35rem;
  height: 0.35rem;
  margin: 0 1rem 0 0.75rem;
}

/* =====================================
 * ページタイトル
 * ================================== */
.c-pagetitle {
  background-color: var(--c-gry-light);
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.c-pagetitle > * {
  color: var(--c-wht);
}

.c-pagetitle__subtitle,
.c-pagetitle__title {
  line-height: 1.5;
  position: relative;
  z-index: 10;
}

.c-pagetitle__subtitle {
  font-size: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.c-pagetitle__subtitle::first-letter {
  text-transform: uppercase;
}

.c-pagetitle__subtitle::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 7.5rem;
  height: 1px;
  background-color: var(--c-wht);
}

.c-pagetitle__subtitle + * {
  margin-top: 1rem;
}

.c-pagetitle__title {
  font-weight: bold;
  font-size: 2.5rem;
}

.c-pagetitle__title + * {
  margin-top: 1rem;
}

.c-pagetitle__desc {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .c-pagetitle__bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }
}
.c-pagetitle__bg > * {
  width: 100%;
  height: 100%;
}

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

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

.c-pagetitle__bg::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.6);
  position: absolute;
  z-index: 0;
}

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

/* =====================================
 * ページタイトル
 * ================================== */
@media (min-width: 960px) {
  .l-header__logo {
    margin-left: 4rem;
  }
}

body[data-page-slug=case-study][data-page-type=detail] .c-pagetitle {
  opacity: 0;
  height: 0;
  padding: 0;
}
body[data-page-slug=case-study][data-page-type=detail] .c-pagetitle > * {
  height: 0;
}

@media (max-width: 767px) {
  .c-pagetitle {
    margin-top: 52px;
  }
}
@media (min-width: 768px) {
  .c-pagetitle {
    margin-top: 52px;
  }
}
@media (min-width: 960px) {
  .c-pagetitle {
    margin-top: 100px;
  }
}
.c-pagetitle.-case01 {
  height: 400px;
}
@media (max-width: 767px) {
  .c-pagetitle.-case01 {
    height: 300px;
  }
}
@media (min-width: 960px) {
  .c-pagetitle.-case01 {
    margin-left: 4rem;
  }
}
.c-pagetitle.-case01 .c-pagetitle__title {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 7.5rem;
  color: var(--c-gry-light);
  display: block;
  max-width: 1600px;
  text-align: right;
  bottom: -3rem;
  font-weight: normal;
}
@media (max-width: 767px) {
  .c-pagetitle.-case01 .c-pagetitle__title {
    font-size: 4.5rem;
    line-height: 1.25;
    bottom: -1.15rem;
  }
}
.c-pagetitle.-case01 .c-pagetitle__title::first-letter {
  text-transform: uppercase;
}
.c-pagetitle.-case01 .c-pagetitle__title::after {
  content: none;
}
.c-pagetitle.-case02 {
  padding-top: 100px;
  background-color: transparent;
}
.c-pagetitle.-case02 .c-pagetitle__subtitle {
  text-align: center;
  font-size: 7.5rem;
  color: var(--c-gry-light);
  display: block;
}
@media (max-width: 767px) {
  .c-pagetitle.-case02 .c-pagetitle__subtitle {
    font-size: 4.5rem;
    line-height: 1.25;
  }
}
.c-pagetitle.-case02 .c-pagetitle__subtitle::after {
  content: none;
}
.c-pagetitle.-case02 .c-pagetitle__title {
  text-align: center;
  color: var(--c-blk);
  margin-top: -7rem;
  position: relative;
}
@media (max-width: 767px) {
  .c-pagetitle.-case02 .c-pagetitle__title {
    margin-top: -4rem;
  }
}
.c-pagetitle.-case02 .c-pagetitle__title::after {
  content: "";
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1px;
  background-color: var(--c-blk);
  position: absolute;
  margin-bottom: -2.5rem;
}
.c-pagetitle.-case02 + .c-pagetitle__bg {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.c-pagetitle.-case02 + .c-pagetitle__bg:not(:has(img)) {
  height: 0;
}
.c-pagetitle.-case02 + .c-pagetitle__bg img {
  width: 100%;
  height: auto;
}
.c-pagetitle.-case02 + .c-pagetitle__bg::after {
  content: none;
}

body:has(.c-pagetitle.-case02) .c-breadcrumb {
  position: absolute;
  top: 0;
}

/* =====================================
 * ブログページ
 * ================================== */
.p-post-list__title,
.p-post-list__desc,
.p-post-list__name {
  transition: all 0.2s ease-in-out;
}

.p-post-list__item {
  position: relative;
}
.p-post-list__item a {
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: block;
  padding-bottom: 1.75rem;
}
.p-post-list__item a::after {
  content: "";
  display: block;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1rem;
  position: absolute;
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right.svg);
  padding-right: 3rem;
  margin-right: -12px;
  transition: background-position 0.25s ease-in-out !important;
}
@media (min-width: 960px) {
  .p-post-list__item a:hover .p-case-list__img img {
    transform: scale(1.1);
  }
}
@media (min-width: 960px) {
  .p-post-list__item a:hover .p-case-list__title,
  .p-post-list__item a:hover .p-case-list__desc,
  .p-post-list__item a:hover .p-case-list__name {
    opacity: 0.6;
  }
}
@media (min-width: 960px) {
  .p-post-list__item a:hover:after {
    background-position: 100% center;
    opacity: 0.6;
  }
}
.p-post-list__title {
  font-size: 1.5rem;
  font-weight: bold;
}
.p-post-list__title + * {
  margin-top: 0.5rem;
}
.p-post-list__name {
  font-size: 0.875rem;
  font-weight: 300;
}
.p-post-list__name + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-post-list__name + * {
    margin-top: 10px;
  }
}
.p-post-list__desc {
  font-weight: 300;
}
.p-post-list__desc + * {
  margin-top: 1.5rem;
}
.p-post-list__img {
  overflow: hidden;
  aspect-ratio: 480/360;
}
.p-post-list__img img {
  transition: all 0.5s ease-in-out;
  aspect-ratio: 480/360;
  object-fit: cover;
}
.p-post-list__img + * {
  margin-top: 1.5rem;
}/*# sourceMappingURL=style.css.map */