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

*/
/* =====================================
 * メディアクエリ
 * ================================== */
/* 
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 {
    -webkit-box-sizing: border-box;
            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 {
    scroll-behavior: auto;
    font-size: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    html {
        font-size: 87.5%;
    }
}
html.is-firefox body {
    -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
    html.is-mobile.is-safari body * {
        -webkit-text-stroke-width: 0.01em !important;
    }
}

@media (min-width: 768px) {
    /* スクロールの幅の設定 */
    html::-webkit-scrollbar {
        width: 0.625rem;
        height: 0.625rem;
    }
    /* スクロールの背景の設定 */
    html::-webkit-scrollbar-track {
        border-radius: 0.25rem;
        -webkit-box-shadow: 0 0 0.25rem #ddd inset;
                box-shadow: 0 0 0.25rem #ddd inset;
    }
    /* スクロールのつまみ部分の設定 */
    html::-webkit-scrollbar-thumb {
        border-radius: 0.25rem;
        background: #409AD6;
    }
}
body {
    position: relative;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
     -ms-text-size-adjust: 100%;
         text-size-adjust: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.75;
    text-align: left;
    color: #48545D;
    font-weight: normal;
    font-size: 1rem;
    font-family: "Montserrat", "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    min-width: calc(1200px + 2rem);
    width: 100%;
    letter-spacing: 0.04em;
}
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
}
body.is-loaded * {
    -webkit-transition: none !important;
    transition: none !important;
}
@media (max-width: 767px) {
    body {
        min-width: auto;
        overflow-x: hidden;
    }
}
@media (min-width: 1232px) {
    body[data-page-slug=features] .l-main {
        overflow-x: hidden;
    }
}

@media (max-width: 767px) {
    body:not([data-page-slug=home]) {
        margin-top: 48px;
    }
}

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

img {
    image-rendering: -webkit-optimize-contrast;
}

a:not([class]) {
    color: inherit;
    text-decoration: underline;
}
@media (min-width: 768px) {
    a:not([class]):hover {
        text-decoration: none;
    }
}
a:not([class])[href^="#"], a:not([class])[data-type=URL] {
    color: #409AD6;
}

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: 768px) {
    input[type=submit]:hover,
    button:hover {
        cursor: pointer;
    }
}

label {
    cursor: pointer;
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #ddd;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ddd;
}

::-moz-placeholder {
    /* Others */
    color: #ddd;
}

::-ms-input-placeholder {
    /* Others */
    color: #ddd;
}

::placeholder {
    /* Others */
    color: #ddd;
}

::-moz-selection {
    background: #409AD6;
    color: #fff;
}

::selection {
    background: #409AD6;
    color: #fff;
}

::-moz-selection {
    background: #409AD6;
    color: #fff;
}

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

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

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

.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
            transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

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

.swiper-horizontal {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
}

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

.swiper-slide {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    display: block;
}

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

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

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

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

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

.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.swiper-3d {
    -webkit-perspective: 1200px;
            perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

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

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

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

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

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

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
}

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

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
}

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

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

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

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

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

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

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

.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

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

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

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

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

@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
}

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

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

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

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

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

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 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 svg,
.swiper-button-prev svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transform-origin: center;
            transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

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

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

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

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

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

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

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

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

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

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

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

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

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
            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: var(--swiper-pagination-bullet-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;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
}

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

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

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

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
            transform: translate3d(0px, -50%, 0);
}

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

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

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

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

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

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

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

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, 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%;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left top;
            transform-origin: left top;
}

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

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

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

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

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

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

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

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

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

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

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

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

.swiper-slide-zoomed {
    cursor: move;
    -ms-touch-action: none;
        touch-action: none;
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

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

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

.swiper-grid-column > .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

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

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

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

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

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

.swiper.swiper-cube {
    overflow: visible;
}

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

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

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

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

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

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

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

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

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

.swiper.swiper-flip {
    overflow: visible;
}

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

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

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

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

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

.swiper.swiper-cards {
    overflow: visible;
}

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

.l-header {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    color: #fff;
    /*固定ヘッダーの時にこちらのクラスを付ける*/
}
@media (min-width: 768px) {
    .l-header {
        height: 75px;
    }
}
@media (max-width: 767px) {
    .l-header {
        height: 48px;
    }
}
.l-header .l-container, .l-header .p-home-service__body-inner {
    padding-inline: 0;
}
@media (max-width: 767px) {
    .l-header .l-container, .l-header .p-home-service__body-inner {
        height: 48px;
    }
}
@media (min-width: 768px) {
    .l-header.is-scroll {
        opacity: 0;
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
}
@media (max-width: 767px) {
    .l-header > .l-container, .l-header > .p-home-service__body-inner {
        padding-right: 0 !important;
    }
}
.l-header__gnav {
    position: relative;
}
.l-header * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.l-header *:before, .l-header *:after {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.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%;
}
.l-header.-change-colored .l-header__logo {
    display: none;
}
.l-header.-change-colored .l-header__logo.-sp {
    display: block;
}
.l-header.-change-color, .l-header.-change-colored {
    z-index: 100000;
}
.l-header.-change-color .l-container, .l-header.-change-color .p-home-service__body-inner, .l-header.-change-colored .l-container, .l-header.-change-colored .p-home-service__body-inner {
    background-color: #fff;
    position: relative;
}
.l-header.-change-color .l-container::before, .l-header.-change-color .p-home-service__body-inner::before, .l-header.-change-colored .l-container::before, .l-header.-change-colored .p-home-service__body-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    min-width: 1232px;
    height: 100%;
    background-color: #f3f3f3;
    z-index: -1;
}
.l-header.-change-color .l-container .l-header__menu-list a, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list a, .l-header.-change-color .l-container .l-header__link-list a, .l-header.-change-color .p-home-service__body-inner .l-header__link-list a, .l-header.-change-color .l-container .l-header__language a, .l-header.-change-color .p-home-service__body-inner .l-header__language a, .l-header.-change-colored .l-container .l-header__menu-list a, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list a, .l-header.-change-colored .l-container .l-header__link-list a, .l-header.-change-colored .p-home-service__body-inner .l-header__link-list a, .l-header.-change-colored .l-container .l-header__language a, .l-header.-change-colored .p-home-service__body-inner .l-header__language a {
    color: #48545D;
}
.l-header.-change-color .l-container .l-header__language-item::before, .l-header.-change-color .p-home-service__body-inner .l-header__language-item::before, .l-header.-change-colored .l-container .l-header__language-item::before, .l-header.-change-colored .p-home-service__body-inner .l-header__language-item::before {
    background-color: #48545D;
}
.l-header.-change-color .l-container .l-header__menu-list > li > a.is-selected::before, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li > a.is-selected::before, .l-header.-change-colored .l-container .l-header__menu-list > li > a.is-selected::before, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li > a.is-selected::before {
    bottom: -16px;
    height: 7px;
}
.l-header.-change-color .l-container .l-header__menu-list > li.-blank a::after, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li.-blank a::after, .l-header.-change-colored .l-container .l-header__menu-list > li.-blank a::after, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li.-blank a::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_blank_blk.svg);
}
.l-header.-change-color .l-container .l-header__menu-list > li.-blank a:hover::after, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li.-blank a:hover::after, .l-header.-change-colored .l-container .l-header__menu-list > li.-blank a:hover::after, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li.-blank a:hover::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_blank_pri.svg);
}
.l-header.-change-color .l-container .l-header__menu-list > li.-service::after, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li.-service::after, .l-header.-change-color .l-container .l-header__menu-list > li.-solution::after, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li.-solution::after, .l-header.-change-colored .l-container .l-header__menu-list > li.-service::after, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li.-service::after, .l-header.-change-colored .l-container .l-header__menu-list > li.-solution::after, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li.-solution::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_down_blk.svg);
}
.l-header.-change-color .l-container .l-header__menu-list > li.-service:hover::after, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li.-service:hover::after, .l-header.-change-color .l-container .l-header__menu-list > li.-solution:hover::after, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li.-solution:hover::after, .l-header.-change-colored .l-container .l-header__menu-list > li.-service:hover::after, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li.-service:hover::after, .l-header.-change-colored .l-container .l-header__menu-list > li.-solution:hover::after, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li.-solution:hover::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_down_pri.svg);
}
.l-header.-change-color .l-container .l-header__menu-list > li > a.is-selected, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li > a.is-selected, .l-header.-change-colored .l-container .l-header__menu-list > li > a.is-selected, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li > a.is-selected {
    color: #409AD6;
}
@media (min-width: 768px) {
    .l-header.-change-color .l-container .l-header__menu-list > li > a.is-selected .sub-menu .is-selected, .l-header.-change-color .p-home-service__body-inner .l-header__menu-list > li > a.is-selected .sub-menu .is-selected, .l-header.-change-colored .l-container .l-header__menu-list > li > a.is-selected .sub-menu .is-selected, .l-header.-change-colored .p-home-service__body-inner .l-header__menu-list > li > a.is-selected .sub-menu .is-selected {
        color: #48545D;
    }
}
@media (max-width: 767px) {
    .l-header {
        z-index: 100000;
    }
    .l-header .l-container, .l-header .p-home-service__body-inner {
        background-color: #f3f3f3;
        position: relative;
    }
    .l-header .l-container::before, .l-header .p-home-service__body-inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 100vw;
        min-width: 1232px;
        height: 100%;
        background-color: #f3f3f3;
        z-index: -1;
    }
    .l-header .l-container .l-header__menu-list a, .l-header .p-home-service__body-inner .l-header__menu-list a, .l-header .l-container .l-header__link-list a, .l-header .p-home-service__body-inner .l-header__link-list a, .l-header .l-container .l-header__language a, .l-header .p-home-service__body-inner .l-header__language a {
        color: #48545D;
    }
    .l-header .l-container .l-header__language-item::before, .l-header .p-home-service__body-inner .l-header__language-item::before {
        background-color: #48545D;
    }
    .l-header .l-container .l-header__menu-list > li > a.is-selected::before, .l-header .p-home-service__body-inner .l-header__menu-list > li > a.is-selected::before {
        bottom: -24px;
        height: 9px;
    }
}
.l-header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 1.25rem;
}
@media (min-width: 768px) {
    .l-header__inner {
        min-width: 1232px;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1400px) {
    .l-header__inner {
        padding-left: 5rem;
    }
}
@media (max-width: 767px) {
    .l-header__inner {
        padding-left: 0;
        height: 48px;
    }
}
.l-header__logo {
    max-width: 224px;
    display: none;
}
.l-header__logo.is-active {
    display: block;
}
@media (max-width: 767px) {
    .l-header__logo.-sp {
        display: block;
    }
}
@media (max-width: 767px) {
    .l-header__logo {
        max-width: 201px;
    }
}
.l-header__language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px;
}
.l-header__language + * {
    margin-left: 2.5rem;
}
@media (max-width: 767px) {
    .l-header__language + * {
        margin-left: 0;
    }
}
.l-header__language-item {
    font-size: 0.875rem;
    color: #fff;
    width: 19px;
    white-space: nowrap;
}
.l-header__language-item.is-active {
    font-weight: bold;
}
.l-header__language-item:hover {
    font-weight: bold;
}
.l-header__language-item + .l-header__language-item {
    position: relative;
}
.l-header__language-item + .l-header__language-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(30deg);
            transform: translateY(-50%) rotate(30deg);
    height: 10px;
    width: 1px;
    background-color: #fff;
}
@media (max-width: 767px) {
    .l-header__language-item + .l-header__language-item::before {
        left: -7px;
        top: 44%;
    }
}
.l-header__link-contact {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
}
@media (max-width: 767px) {
    .l-header__link-contact {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }
}
.l-header__link-contact + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .l-header__link-contact {
        padding-top: 0.875rem;
    }
}
.l-header__link-contact > * + * {
    margin-left: 2.5rem;
}
@media (max-width: 767px) {
    .l-header__link-contact > * + * {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .l-header__link, .l-header__btn {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .l-header__link {
        -webkit-box-ordinal-group: 21;
            -ms-flex-order: 20;
                order: 20;
        margin-top: 2.5rem;
    }
}
@media (max-width: 767px) {
    .l-header__link li {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .l-header__btn {
        -webkit-box-ordinal-group: 11;
            -ms-flex-order: 10;
                order: 10;
        margin-top: 1rem;
    }
}
.l-header__menu {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .l-header__menu {
        display: none;
        background-color: #fff;
        position: absolute;
        z-index: 99999;
        top: 0;
        left: 0;
        width: 100vw;
        padding: 0 1rem 2rem;
        margin-top: 47px;
        overflow-y: scroll;
        height: 100vh;
    }
}
.l-header__menu.is-active {
    background-color: #f3f3f3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.l-header__gnav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .l-header__gnav {
        display: block;
        margin-top: 0;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}
.l-header__menu-list, .l-header__link-list, .l-header__btn-list {
    line-height: 1.5;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.l-header__menu-list {
    margin-left: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
}
@media (max-width: 767px) {
    .l-header__menu-list {
        display: block;
    }
}
.l-header__menu-list > li + li {
    margin-left: 2rem;
}
@media (max-width: 767px) {
    .l-header__menu-list > li + li {
        margin: 0;
    }
    .l-header__menu-list > li + li > a {
        padding-top: 1rem;
    }
}
.l-header__menu-list > li.-recruit > a + .l-drop {
    right: -1rem;
    left: auto;
}
.l-header__menu-list > li.is-selected::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_down_pri.svg) !important;
}
.l-header__menu-list > li.-blank a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
}
.l-header__menu-list > li.-blank a::after {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    min-width: 0.75rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
    .l-header__menu-list > li.-blank a::after {
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_blank_wht.svg);
    }
}
@media (max-width: 767px) {
    .l-header__menu-list > li.-blank a::after {
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_blank_bik.svg);
    }
}
.l-header__menu-list > li.-blank a:hover::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_blank_pri.svg);
}
@media (max-width: 767px) {
    .l-header__menu-list > li:first-child a {
        padding-top: 1.5rem;
    }
}
.l-header__menu-list > li.-service, .l-header__menu-list > li.-solution {
    position: relative;
    padding-right: 1.125rem;
}
@media (max-width: 767px) {
    .l-header__menu-list > li.-service, .l-header__menu-list > li.-solution {
        position: relative;
    }
}
.l-header__menu-list > li.-service::after, .l-header__menu-list > li.-solution::after {
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_down_wht.svg);
    height: 0.875rem;
    width: 0.875rem;
    min-width: 0.875rem;
    position: absolute;
    right: 0;
    top: 47%;
}
@media (min-width: 768px) {
    .l-header__menu-list > li.-service::after, .l-header__menu-list > li.-solution::after {
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
}
@media (max-width: 767px) {
    .l-header__menu-list > li.-service::after, .l-header__menu-list > li.-solution::after {
        top: 1.375rem;
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_down_blk.svg);
    }
}
@media (max-width: 767px) {
    .l-header__menu-list > li.-service.is-active::after, .l-header__menu-list > li.-solution.is-active::after {
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_up_blk.svg);
    }
}
.l-header__menu-list > li.-service > a, .l-header__menu-list > li.-solution > a {
    position: relative;
}
.l-header__menu-list > li.-service > a::before, .l-header__menu-list > li.-solution > a::before {
    z-index: 1;
}
.l-header__menu-list > li.-service > a::after, .l-header__menu-list > li.-solution > a::after {
    content: "";
    position: absolute;
    top: 0;
    width: calc(100% + 1.5rem);
    height: 48px;
    height: 75px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    z-index: 1;
}
@media (max-width: 767px) {
    .l-header__menu-list > li.-service > a::after, .l-header__menu-list > li.-solution > a::after {
        width: calc(100% + 1.25rem);
        height: 100%;
    }
}
@media (min-width: 768px) {
    .l-header__menu-list > li.-service > a:hover + .l-drop, .l-header__menu-list > li.-solution > a:hover + .l-drop {
        opacity: 1;
        visibility: visible;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }
}
@media (max-width: 767px) {
    .l-header__menu-list > li.-service > a + ul, .l-header__menu-list > li.-solution > a + ul {
        display: none;
    }
    .l-header__menu-list > li.-service > a + ul.is-active, .l-header__menu-list > li.-solution > a + ul.is-active {
        display: block;
    }
    .l-header__menu-list > li.-service > a + ul > li > a, .l-header__menu-list > li.-solution > a + ul > li > a {
        line-height: 1.5;
        font-weight: bold;
        padding-bottom: 12px;
        display: block;
        position: relative;
    }
    .l-header__menu-list > li.-service > a + ul > li > a::before, .l-header__menu-list > li.-solution > a + ul > li > a::before {
        content: "";
        position: absolute;
        inset: 0 auto auto 0;
        width: calc(100% + 1.25rem);
        height: 100%;
    }
    .l-header__menu-list > li.-service > a + ul > li:last-child a, .l-header__menu-list > li.-solution > a + ul > li:last-child a {
        padding-bottom: 1.5rem;
    }
}
@media (max-width: 767px) {
    .l-header__menu-list > li {
        border-bottom: 1px solid #CFCCC6;
    }
}
.l-header__menu-list > li > a {
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
    line-height: 1.5;
    display: block;
    font-size: 0.875rem;
}
@media (max-width: 767px) {
    .l-header__menu-list > li > a {
        display: block;
        font-size: 1.125rem;
        padding-bottom: 1rem;
    }
}
.l-header__menu-list > li > a:hover {
    color: #409AD6 !important;
}
.l-header__menu-list > li[class] > a {
    color: #fff;
}
.l-header__menu-list > li[class] > a:hover {
    color: #409AD6;
}
.l-header__menu-list > li[class] > a.is-selected {
    color: #409AD6;
}
.l-header__link-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.l-header__link-list li + li {
    margin-left: 2.5rem;
}
.l-header__link-list li a {
    font-size: 0.875rem;
}
.l-header__link-list li a[target*=_blank] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    color: #fff;
}
.l-header__link-list li a[target*=_blank]::after {
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    min-width: 14px;
}
@media (min-width: 768px) {
    .l-header__link-list li a:hover {
        text-decoration: underline;
    }
}
@media (max-width: 767px) {
    .l-header__link-list li a {
        font-size: 1rem;
    }
}
@media (max-width: 767px) {
    .l-header__link-list {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: start;
    }
    .l-header__link-list li + li {
        margin-left: 1rem;
    }
    .l-header__link-list li a {
        display: block;
        padding: 0.5rem;
    }
}
@media (max-width: 767px) and (max-width: 767px) {
    .l-header__link-list li a {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .l-header__btn-list {
        display: block;
        margin: 0;
    }
}
.l-header__btn-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    background-color: #F98938;
    width: 7.5rem;
    height: 75px;
    min-width: 7.5rem;
}
@media (max-width: 767px) {
    .l-header__btn-list li a {
        width: 100%;
        gap: 0.5rem;
        height: 5rem;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}
.l-header__btn-list li a::before {
    content: "";
    display: block;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_mail_wht.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
}
.l-header__btn-list li a:hover {
    background-color: #dd7123;
}
.l-header__btn-list li + li {
    margin-left: 1rem;
}
@media (max-width: 767px) {
    .l-header__btn-list li + li {
        margin: 10px 0 0 0;
    }
}
.l-header__btn-list[class] li a {
    color: #fff;
}
@media (max-width: 767px) {
    .l-header__contact {
        text-align: center;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}
.l-header__contact-tel {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .l-header__contact-tel {
        font-size: 2rem;
    }
}
.l-header__contact-time {
    line-height: 1.5;
    font-size: 0.75rem;
}
@media (max-width: 767px) {
    .l-header__contact-time {
        font-size: 1rem;
    }
}
.l-header__trigger-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}
.l-header__trigger {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.l-header__trigger-btn {
    width: 100%;
    height: calc(100% + 2px);
    height: 100%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    background-color: #409AD6;
}
.l-header__trigger-btn > * {
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 1;
    position: relative;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    font-size: 0;
    color: transparent;
    width: 1.5rem;
    height: 2px;
}
.l-header__trigger-btn > *::before, .l-header__trigger-btn > *::after {
    content: "";
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -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 {
    -webkit-transform: translate(-50%, 8px) rotate(-45deg);
            transform: translate(-50%, 8px) rotate(-45deg);
}
.l-header__trigger-btn.is-active > * {
    background-color: transparent;
}
.l-header__trigger-btn.is-active > *::after {
    -webkit-transform: translate(-50%, -8px) rotate(45deg);
            transform: translate(-50%, -8px) rotate(45deg);
}

body[data-page-type=form] .l-header__trigger, body[data-page-type=form] .l-header__menu, body[data-page-type=form] .l-header__language {
    display: none;
}
@media (min-width: 768px) {
    body[data-page-type=form] .l-header__inner {
        height: 75px;
    }
}

.l-footer[class] a {
    color: #fff;
    text-decoration: none;
}
.l-footer[class] a:hover {
    text-decoration: underline;
}
.l-footer__cv {
    position: relative;
    overflow: hidden;
}
.l-footer__cv-inner {
    color: #fff;
    padding-block: 5rem;
    text-align: center;
}
@media (max-width: 767px) {
    .l-footer__cv-inner {
        padding-block: 3.5rem;
    }
}
.l-footer__cv-img {
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    z-index: -2;
}
@media (max-width: 767px) {
    .l-footer__cv-img {
        height: 100%;
    }
}
.l-footer__cv-filter {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 49, 87, 0.8);
    z-index: -1;
}
.l-footer__cv-head {
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: bold;
}
@media (max-width: 767px) {
    .l-footer__cv-head {
        font-size: 0.75rem;
    }
}
.l-footer__cv-subhead {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .l-footer__cv-subhead {
        font-size: 2.5rem;
    }
}
.l-footer__cv-subhead + * {
    margin-top: 4px;
}
.l-footer__cv-lead {
    line-height: 1.5;
    font-weight: bold;
    font-size: 2rem;
}
@media (max-width: 767px) {
    .l-footer__cv-lead {
        font-size: 1.5rem;
    }
}
.l-footer__cv-lead + * {
    margin-top: 1.5rem;
    text-align: center;
}
@media (max-width: 767px) {
    .l-footer__cv-lead + * {
        text-align: left;
        margin-top: 1.25rem;
        font-size: 0.875rem;
    }
}
.l-footer__cv-pop {
    font-size: 0.875rem;
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10.5px;
}
.l-footer__cv-pop::before {
    content: "";
    width: 1px;
    height: 1rem;
    background-color: #fff;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
}
.l-footer__cv-pop::after {
    content: "";
    width: 1px;
    height: 1rem;
    background-color: #fff;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
}
.l-footer__cv-pop + * {
    margin-top: 0.75rem;
}
.l-footer__site {
    padding-top: 7.5rem;
    padding-bottom: 5rem;
    padding-bottom: 1px solid #CFCCC6;
}
@media (max-width: 767px) {
    .l-footer__site {
        padding-top: 3.5rem;
        padding-bottom: 2.5rem;
    }
}
@media (min-width: 768px) {
    .l-footer__site-inner {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (max-width: 767px) {
    .l-footer__logo {
        max-width: 201px;
    }
}
.l-footer__logo + * {
    margin-top: 148px;
}
@media (max-width: 767px) {
    .l-footer__logo + * {
        margin-top: 3.5rem;
    }
}
@media (max-width: 767px) {
    .l-footer__logo a {
        display: block;
        text-align: center;
    }
}
.l-footer__address {
    font-size: 0.875rem;
}
.l-footer__site {
    background-color: #3C3C3C;
}
@media (min-width: 768px) {
    .l-footer__sitemap {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.l-footer__sitemap-list > li > a {
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
}
.l-footer__sitemap-list > li > a + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .l-footer__sitemap-list > li > a + * {
        margin-top: 1.25rem;
    }
}
.l-footer__sitemap-list > li > ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
}
.l-footer__sitemap-list > li > ul > li > a::before {
    content: "";
    width: 0.5rem;
    height: 1px;
    background-color: #fff;
}
.l-footer__sitemap-list > li > ul > li + li {
    margin-top: 1rem;
}
.l-footer__sitemap-list > li li > a {
    font-size: 0.875rem;
}
.l-footer__sitemap-list > li + li {
    margin-top: 0.5rem;
}
.l-footer__sitemap-list.-sm li {
    font-size: 0.875rem;
}
.l-footer__sitemap-list + * {
    margin-left: 3rem;
}
.l-footer__info {
    background-color: #3C3C3C;
    padding-block: 5rem;
    position: relative;
}
.l-footer__info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background-color: #CFCCC6;
}
@media (max-width: 767px) {
    .l-footer__info {
        padding-top: 1rem;
        padding-bottom: 2.5rem;
    }
}
.l-footer__info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (min-width: 768px) {
    .l-footer__info-inner {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .l-footer__info-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2.5rem;
    }
}
@media (max-width: 767px) {
    .l-footer__link {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
    .l-footer__link + * {
        margin-top: 1rem;
    }
}
.l-footer__link-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .l-footer__link-list {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
.l-footer__link-list li {
    line-height: 1;
}
.l-footer__link-list li a {
    font-size: 0.75rem;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .l-footer__link-list li a {
        font-size: 10px;
    }
}
.l-footer__link-list li a.-blank {
    position: relative;
    padding-right: 1.25rem;
}
.l-footer__link-list li a.-blank::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_blank_wht.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.75rem;
    height: 0.75rem;
    min-width: 0.75rem;
}
.l-footer__link-list li + li {
    margin-left: 1.5rem;
}
.l-footer__copyright {
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .l-footer__copyright {
        text-align: center;
        font-size: 0.675rem;
    }
}
.l-footer__banner img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.l-footer__banner:hover {
    opacity: 0.7;
}

body[data-page-type=form] .l-footer__link, body[data-page-type=form] .l-footer__sitemap, body[data-page-type=form] .l-footer__cv, body[data-page-type=form] .l-footer__site {
    display: none;
}
body[data-page-type=form] .l-footer__info-inner, body[data-page-type=form] .l-footer__site-inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
body[data-page-type=form] .l-footer__address, body[data-page-type=form] .l-footer__logo {
    text-align: center;
}
body[data-page-type=form] .l-footer__info {
    padding-block: 1rem;
}

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

.l-main + * {
    margin-top: 8rem;
}
@media (max-width: 767px) {
    .l-main + * {
        margin-top: 6rem;
    }
}
@media (min-width: 768px) {
    .l-main__inner.-col2 {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (min-width: 768px) {
    .l-main__inner.-col2 .l-main__content {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
        -ms-flex-preferred-size: calc(100% - 260px);
            flex-basis: calc(100% - 260px);
        max-width: calc(100% - 260px);
        padding-right: 3rem;
    }
}
@media (min-width: 768px) {
    .l-main__sidebar {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
        -ms-flex-preferred-size: 260px;
            flex-basis: 260px;
        max-width: 260px;
    }
}
@media (max-width: 767px) {
    .l-main__sidebar {
        margin-top: 4rem;
    }
}

.l-drop {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767px) {
    .l-drop {
        display: none;
    }
}
.l-drop:hover {
    opacity: 1;
    visibility: visible;
}
.l-drop a {
    text-decoration: none;
}
.l-drop__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1200px;
    margin-inline: auto;
    background-color: #fff;
}
.l-drop__item-wrapper {
    position: fixed;
    left: 0;
    top: 75px;
    z-index: 99;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.l-drop__item-wrapper::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
}
.l-drop__item-wrapper.is-active {
    visibility: visible;
    opacity: 1;
}
.l-drop__item {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 75px;
    width: 100%;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
    .l-drop__item {
        max-width: 1200px;
        margin-inline: auto;
    }
}
.l-drop__item.is-active {
    visibility: visible;
    opacity: 1;
}
.l-drop__content {
    padding: 5.5rem 7.5rem 5.5rem 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.5rem;
}
@media (max-width: 1232px) {
    .l-drop__content {
        padding: 2.5rem;
        gap: 1.5rem;
    }
}
@media (max-width: 1000px) {
    .l-drop__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}
.l-drop__img {
    width: 100%;
    aspect-ratio: 1/1 !important;
    max-width: 380px;
}
.l-drop__subtitle, .l-drop__title {
    font-weight: bold;
    color: #409AD6;
    line-height: 1.5;
}
.l-drop__subtitle {
    font-size: 2rem;
}
.l-drop__title {
    font-size: 0.75rem;
}
.l-drop__links {
    padding-left: 2.5rem;
    border-left: 1px solid #CFCCC6;
}
@media (max-width: 1232px) {
    .l-drop__links {
        padding-left: 1.5rem;
    }
}
@media (max-width: 1000px) {
    .l-drop__links {
        border-top: 1px solid #CFCCC6;
        border-left: 0px solid #CFCCC6;
        padding-left: 0;
        padding-top: 1rem;
    }
}
.l-drop__link {
    font-weight: bold;
    line-height: 1.5;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.l-drop__link:hover {
    color: #409AD6;
}
.l-drop__link + * {
    margin-top: 1.5rem;
}
@media (max-width: 1000px) {
    .l-drop__link + * {
        margin-top: 1rem;
    }
}
.l-drop__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 2.5rem;
}
@media (max-width: 1232px) {
    .l-drop__list {
        gap: 1.5rem;
    }
}
.l-drop__list ul {
    padding-left: 0 !important;
}
.l-drop__list ul li {
    list-style-type: none;
}
.l-drop__list ul li a {
    line-height: 1.5;
    font-weight: bold;
    font-size: 0.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}
@media (max-width: 1232px) {
    .l-drop__list ul li a {
        font-size: 0.75rem;
    }
}
.l-drop__list ul li a::before {
    content: "";
    display: block;
    height: 1px;
    width: 0.5rem;
    background-color: #409AD6;
}
.l-drop__list ul li a:hover {
    color: #409AD6;
}
.l-drop__list ul li + li a {
    margin-top: 1.5rem;
}
@media (max-width: 1000px) {
    .l-drop__list ul li + li a {
        margin-top: 0.75rem;
    }
}
.l-drop__list ul + ul {
    margin-top: 0;
}

#js-protected-content {
    display: none;
}

.hidden {
    display: none;
}

/* =====================================
 * extend用のclassをここに集約
 * ================================== */
.c-color-grad, .p-home-section__subhead > *, .p-home-section__head > *, .c-under-mv__head > *, .c-under-mv__subhead > *, body .c-btn[class] a, .c-btn[class] > * {
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.c-color-grad-hover, body .c-btn[class] a:hover {
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: unset;
}

.c-hover, .c-pagetop__btn, .c-btn-faq[class] > *, .c-btn-cta[class] > *, .c-btn[class] > *, .c-sidebar__bnr-item > *, .l-header__logo > *, .l-footer__logo > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
    .c-hover:hover, .c-pagetop__btn:hover, .c-btn-faq[class] > :hover, .c-btn-cta[class] > :hover, .c-btn[class] > :hover, .c-sidebar__bnr-item > :hover, .l-header__logo > :hover, .l-footer__logo > :hover {
        cursor: pointer;
        text-decoration: none !important;
        opacity: 0.84;
    }
}

.c-img, .p-first__flow-img, .p-first__img, .p-features__reason-ico, .p-features__reason-img, .p-solution__img, .p-service__partner-logo, .p-service__partner-img, .p-service__group-img, .p-service__group-logo, .p-service__implementation-panel, .p-service__implementation-img, .p-service__implementation-achievements, .p-service__other-img, .p-service__panel, .p-service__swiper-img, .p-home-first__flow-ico, .p-home-cta__logo, .p-home-section__gallery-item, .p-home-solution__header-panel, .p-home-service__footer-panel, .p-home-service__img, .p-home-service__header-panel, .p-home-panel__item, .p-home-mv__achievements-img, .p-home-mv__bg, .p-home-section__gallery-img, .c-pagetitle__img, .l-footer__cv-img, .l-drop__img {
    aspect-ratio: 16/9;
}
.c-img img, .p-first__flow-img img, .p-first__img img, .p-features__reason-ico img, .p-features__reason-img img, .p-solution__img img, .p-service__partner-logo img, .p-service__partner-img img, .p-service__group-img img, .p-service__group-logo img, .p-service__implementation-panel img, .p-service__implementation-img img, .p-service__implementation-achievements img, .p-service__other-img img, .p-service__panel img, .p-service__swiper-img img, .p-home-first__flow-ico img, .p-home-cta__logo img, .p-home-section__gallery-item img, .p-home-solution__header-panel img, .p-home-service__footer-panel img, .p-home-service__img img, .p-home-service__header-panel img, .p-home-panel__item img, .p-home-mv__achievements-img img, .p-home-mv__bg img, .p-home-section__gallery-img img, .c-pagetitle__img img, .l-footer__cv-img img, .l-drop__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}

.c-no-img::before {
    content: "";
    display: block;
    background-color: #f3f3f3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -20;
    pointer-events: none;
}
.c-no-img.c-card01__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%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.24;
}

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

.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 > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-bottom: 1px solid #ddd;
    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: 768px) {
    .c-cat01__list li > *:hover {
        background-color: #f3f3f3;
    }
}
.c-cat01__list li:first-child > * {
    border-top: 1px solid #ddd;
}

.c-tag01__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    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: #f3f3f3;
    padding: 0.25rem 0.5rem;
}

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

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

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

.c-headline03.-grad {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.75rem;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .c-headline03.-grad {
        font-size: 1.5rem;
        gap: 0.75rem;
    }
}
.c-headline03.-grad::before, .c-headline03.-grad::after {
    content: "";
    height: 2px;
    width: 1.5rem;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
}
.c-headline03.-grad + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .c-headline03.-grad + * {
        margin-top: 2rem;
    }
}

.c-headline03.-square {
    line-height: 1.5;
    font-weight: bold;
    font-size: 2.5rem;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
}
@media (max-width: 767px) {
    .c-headline03.-square {
        font-size: 1.75rem;
        text-align: center;
        gap: 1.5rem;
    }
}
.c-headline03.-square::before, .c-headline03.-square::after {
    content: "";
    height: 0.75rem;
    width: 0.75rem;
    min-width: 0.75rem;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
}
.c-headline03.-square + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .c-headline03.-square + * {
        margin-top: 2.5rem;
    }
}

* + .c-headline03.-grad {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    * + .c-headline03.-grad {
        margin-top: 3.5rem;
    }
}

.toc_transparent {
    background-color: #f3f3f3;
    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: #48545D;
}
.toc_list[class] li ul {
    margin-top: 0.5rem;
}
.toc_list[class] li + li {
    margin-top: 0.5rem;
}

/* =====================================
 * ボタン基準
 * ================================== */
.c-btn[class] {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .c-btn[class] {
        max-width: 320px;
    }
}
.c-btn[class].-lg {
    max-width: 100%;
}
.c-btn[class] > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: block;
    text-decoration: none;
    background: #fff;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    padding: 1rem 3.125rem;
    border: 1px solid #409AD6;
    transition: all 0.2s ease-in-out;
    min-height: 78px;
    display: -ms-grid;
    display: grid;
    place-items: center;
}
@media (max-width: 767px) {
    .c-btn[class] > * {
        padding: 1rem 2rem;
        font-size: 0.875rem;
        min-height: 100%;
    }
}
.c-btn[class] > *:after {
    content: "";
    display: block;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_arr_right_grad.svg);
    background-size: 100%;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1.0625rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .c-btn[class] > *:after {
        margin-right: 1.125rem;
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
    }
}
.c-btn[class] > *:hover {
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
    color: #fff;
}
.c-btn[class] > *:hover:after {
    background-image: url(../img/ico_arr_right_wht.svg);
}
.c-btn[class].-submit > * {
    padding: 0;
}
.c-btn[class].-submit > * input[type=submit] {
    width: 100%;
    padding: 1rem 3rem;
}
@media (max-width: 767px) {
    .c-btn[class].-submit > * input[type=submit] {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

body .c-btn[class] a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
body .c-btn[class] a:hover {
    color: #fff;
}

.c-btn-cta[class] {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .c-btn-cta[class] {
        max-width: 320px;
    }
}
.c-btn-cta[class].-lg {
    max-width: 100%;
}
.c-btn-cta[class] > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: block;
    text-decoration: none;
    background: #F98938;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 25.5px 3.125rem;
    font-size: 1.125rem;
    border: 1px solid #F98938;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .c-btn-cta[class] > * {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
}
.c-btn-cta[class] > *:after {
    content: "";
    display: block;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_arr_right_wht.svg);
    background-size: 100%;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 17px;
}
.c-btn-cta[class] > *:hover {
    background-color: #DD7123;
}
.c-btn-cta[class].-submit > * {
    padding: 0;
}
.c-btn-cta[class].-submit > * input[type=submit] {
    width: 100%;
    padding: 26.5px 3rem;
}
@media (max-width: 767px) {
    .c-btn-cta[class].-submit > * input[type=submit] {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.c-btn-faq[class] {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .c-btn-faq[class] {
        max-width: 320px;
    }
}
.c-btn-faq[class].-lg {
    max-width: 100%;
}
.c-btn-faq[class] > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: block;
    text-decoration: none;
    background: #fff;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 27px 3.125rem;
    border: 1px solid #409AD6;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .c-btn-faq[class] > * {
        padding: 1.5rem 3.125rem;
    }
}
.c-btn-faq[class] > *: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: 1rem;
    min-width: 1rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1.0625rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .c-btn-faq[class] > *:after {
        margin-right: 1.125rem;
    }
}
.c-btn-faq[class] > *:hover {
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
    color: #fff;
}
.c-btn-faq[class] > *:hover:after {
    background-image: url(../img/ico_arr_right_wht.svg);
}
.c-btn-faq[class].-submit > * {
    padding: 0;
}
.c-btn-faq[class].-submit > * input[type=submit] {
    width: 100%;
    padding: 1rem 3rem;
}
@media (max-width: 767px) {
    .c-btn-faq[class].-submit > * input[type=submit] {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

body .c-btn[class] a {
    color: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.c-btn-text.-right a {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.c-btn-text.-wht a {
    color: #fff;
}
.c-btn-text.-wht a::after {
    background-image: url("../img/ico_arr_right_wht.svg");
}
.c-btn-text.-wht a:hover {
    color: #fff;
}
.c-btn-text.-wht a:hover::after {
    background-image: url("../img/ico_arr_right_wht.svg");
}
.c-btn-text a {
    color: #409AD6;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.c-btn-text a:after {
    content: "";
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../img/ico_arr_right_pri.svg");
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-btn-text a:hover {
    color: #1E2678;
    text-decoration: underline;
}
.c-btn-text a:hover:after {
    background-image: url("../img/ico_arr_right_sec.svg");
}
.c-btn-text a[target*=_blank] {
    position: relative;
    padding-right: 1.5rem;
}
.c-btn-text a[target*=_blank]:after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../img/ico_arr_right_pri.svg");
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-btn-text a[target*=_blank]:hover {
    color: #1E2678;
    text-decoration: underline;
}
.c-btn-text a[target*=_blank]:hover:after {
    background-image: url("../img/ico_arr_right_sec.svg");
}
.c-btn-text a[href*=".pdf"]:after,
.c-btn-text a[download]:after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../img/ico_arr_right_pri.svg");
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-btn-text a[href*=".pdf"]:hover,
.c-btn-text a[download]:hover {
    color: #1E2678;
    text-decoration: underline;
}
.c-btn-text a[href*=".pdf"]:hover:after,
.c-btn-text a[download]:hover:after {
    background-image: url("../img/ico_arr_right_sec.svg");
}

/* =====================================
 * 横並び
 * ================================== */
.c-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.c-flex.-max2 {
    margin-left: -2rem;
}
@media (max-width: 767px) {
    .c-flex.-max2 {
        display: block;
        margin-left: 0;
    }
}
.c-flex.-max2 .c-flex__item {
    -ms-flex-preferred-size: calc(50% - 2rem);
        flex-basis: calc(50% - 2rem);
    max-width: calc(50% - 2rem);
    margin-left: 2rem;
}
.c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .c-flex.-max2 .c-flex__item, .c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
        margin-top: 1.5rem;
    }
}
.c-flex.-max3 {
    margin-left: -2rem;
}
@media (max-width: 767px) {
    .c-flex.-max3 {
        display: block;
        margin-left: 0;
    }
}
.c-flex.-max3 .c-flex__item {
    -ms-flex-preferred-size: calc(33.3333333333% - 2rem);
        flex-basis: calc(33.3333333333% - 2rem);
    max-width: calc(33.3333333333% - 2rem);
    margin-left: 2rem;
}
.c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .c-flex.-max3 .c-flex__item, .c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
        margin-top: 1.5rem;
    }
}
.c-flex.-max4 {
    margin-left: -2rem;
}
@media (max-width: 767px) {
    .c-flex.-max4 {
        margin-left: -1.5rem;
    }
}
.c-flex.-max4 .c-flex__item[class] {
    -ms-flex-preferred-size: calc(25% - 2rem);
        flex-basis: calc(25% - 2rem);
    max-width: calc(25% - 2rem);
    margin-left: 2rem;
}
@media (max-width: 767px) {
    .c-flex.-max4 .c-flex__item[class] {
        margin-left: 1.5rem;
    }
}
.c-flex.-max4 .c-flex__item[class]:nth-of-type(4) ~ * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .c-flex.-max4 .c-flex__item[class], .c-flex.-max4 .c-flex__item[class]:nth-of-type(4) ~ * {
        margin-top: 1.5rem;
    }
}
@media (max-width: 767px) {
    .c-flex.-max4 .c-flex__item[class] {
        -ms-flex-preferred-size: calc(50% - 1.5rem);
            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 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
        flex-grow: 0;
}
@media (max-width: 767px) {
    .c-flex[class] .c-flex__item {
        -ms-flex-preferred-size: 100%;
            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;
    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::after {
    content: "";
    display: block;
    clear: both;
}
.c-imgbox + * {
    margin-top: 3rem;
}
.c-imgbox .c-imgbox__right {
    float: right;
    margin: 0 0 1.5rem 2.5rem;
}
.c-imgbox .c-imgbox__left {
    float: left;
    margin: 0 2.5rem 1.5rem 0;
}
@media (max-width: 767px) {
    .c-imgbox .c-imgbox__right,
    .c-imgbox .c-imgbox__left {
        text-align: center;
        float: none;
        margin: 0;
    }
    .c-imgbox .c-imgbox__right + *,
    .c-imgbox .c-imgbox__left + * {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    *:has(> .c-img-scroll) {
        overflow-x: hidden;
    }
    .c-img-scroll::-webkit-scrollbar {
        display: block;
    }
}
@media (max-width: 767px) {
    .c-img-scroll {
        overflow-x: scroll;
    }
    .c-img-scroll img {
        min-width: 650px;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover;
        padding-bottom: 1rem;
    }
}

/* =====================================
 * 表組み
 * ================================== */
.c-table {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    width: 100%;
}
* + .c-table {
    margin-top: 3rem;
}
.c-table th,
.c-table td {
    background-clip: padding-box;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.c-table th {
    width: 240px;
    font-weight: bold;
    background: #409AD6;
    color: #fff;
}
.c-table td {
    background-color: #fff;
}
.c-table th,
.c-table td {
    padding: 0.875rem 1.5rem;
}
@media (max-width: 767px) {
    .c-table th,
    .c-table td {
        display: block;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .c-table.-wide th {
        width: 32%;
    }
}
@media (max-width: 767px) {
    .c-table.-wide th,
    .c-table.-wide td {
        display: table-cell;
    }
}
.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: #fff;
        background-repeat: no-repeat;
        background-size: 2rem auto;
        background-position: center 1rem;
        background-image: url(../img/ico_scroll.svg);
        -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.24);
                box-shadow: 0 0 1rem rgba(0, 0, 0, 0.24);
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        padding: 4rem 1.25rem 0.5rem;
        position: absolute;
        z-index: 10;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(150%, -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 {
        -webkit-animation: table_scroll_show 3s ease 0.4s 1 alternate forwards running;
                animation: table_scroll_show 3s ease 0.4s 1 alternate forwards running;
    }
}

@-webkit-keyframes table_scroll_show {
    0% {
        visibility: inherit;
        opacity: 1;
        -webkit-transform: translate(150%, -50%);
                transform: translate(150%, -50%);
    }
    40% {
        visibility: inherit;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
    41% {
        visibility: inherit;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
    100% {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
}

@keyframes table_scroll_show {
    0% {
        visibility: inherit;
        opacity: 1;
        -webkit-transform: translate(150%, -50%);
                transform: translate(150%, -50%);
    }
    40% {
        visibility: inherit;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
    41% {
        visibility: inherit;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
    100% {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
}
/* =====================================
 * ページトップへ戻る
 * ================================== */
.c-pagetop {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: fixed;
    z-index: 1;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}
.c-pagetop.is-active {
    opacity: 1;
    visibility: inherit;
    pointer-events: auto;
}
.c-pagetop__btn {
    background-color: #409AD6;
    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 {
    background-color: #f3f3f3;
    padding-block: 1rem;
}
@media (max-width: 767px) {
    .c-breadcrumb {
        padding-block: 0.75rem;
    }
}
.c-breadcrumb + * {
    margin-top: 8rem;
}
@media (max-width: 767px) {
    .c-breadcrumb + * {
        margin-top: 3rem;
    }
}
.c-breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
@media (max-width: 767px) {
    .c-breadcrumb__list {
        overflow-x: auto;
        -ms-flex-wrap: nowrap;
            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: 1.5px solid #CFCCC6;
    border-left: none;
    border-bottom: none;
    width: 0.375rem;
    height: 0.375rem;
    -webkit-transform: rotate(45deg) translateY(-1px);
            transform: rotate(45deg) translateY(-1px);
    margin: 0 0.5rem 0 0.25rem;
    border-radius: 2px;
}

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

/* =====================================
 * ページタイトル
 * ================================== */
.c-pagetitle {
    padding-top: 208px;
    padding-bottom: 88px;
    position: relative;
    color: #fff;
}
@media (max-width: 767px) {
    .c-pagetitle {
        padding-top: 4.5rem;
        padding-bottom: 3rem;
    }
}
.c-pagetitle__img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    position: absolute;
    inset: 0 auto auto 0;
    z-index: -2;
}
.c-pagetitle__filter {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    background-color: #1C3157;
    opacity: 0.8;
    z-index: -1;
}
.c-pagetitle__subtitle, .c-pagetitle__title {
    line-height: 1.5;
    font-weight: bold;
}
.c-pagetitle__subtitle {
    position: relative;
    padding-left: 5.5rem;
    font-size: 1.125rem;
}
@media (max-width: 767px) {
    .c-pagetitle__subtitle {
        font-size: 1rem;
        padding-left: 3.5rem;
    }
}
.c-pagetitle__subtitle::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    height: 3px;
    width: 5rem;
    background-color: #fff;
}
@media (max-width: 767px) {
    .c-pagetitle__subtitle::before {
        height: 2px;
        width: 3rem;
    }
}
.c-pagetitle__title {
    font-size: 5rem;
}
@media (max-width: 767px) {
    .c-pagetitle__title {
        font-size: 2.5rem;
    }
}
.c-pagetitle__title::first-letter {
    text-transform: uppercase;
}
.c-pagetitle__title + * {
    margin-top: 1rem;
}
.c-pagetitle__desc {
    font-size: 0.875rem;
}

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

.has-normal-font-size[class] {
    font-size: inherit;
}

.has-medium-font-size[class] {
    font-size: 125%;
}

.has-large-font-size[class] {
    font-size: 200%;
}

.has-huge-font-size[class] {
    font-size: 300%;
}

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

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

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

.wp-block-image {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    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: #f3f3f3;
    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: #409AD6;
    text-decoration: underline;
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
    .wp-block-quote cite a:hover {
        text-decoration: none;
    }
}

.wp-block-file {
    text-align: center;
    border: 1px solid #ddd;
    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: 768px) {
    .wp-block-file a[download]:hover {
        text-decoration: none;
    }
}

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

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

* + .c-section {
    margin-top: 8rem;
}
@media (max-width: 767px) {
    * + .c-section {
        margin-top: 5rem;
    }
}
* + .c-section.-lg {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    * + .c-section.-lg {
        margin-top: 4rem;
    }
}
* + .c-section.-sm {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    * + .c-section.-sm {
        margin-top: 3rem;
    }
}
* + .c-section.-md {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    * + .c-section.-md {
        margin-top: 3.5rem;
    }
}
* + .c-section.-xs {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    * + .c-section.-xs {
        margin-top: 2.5rem;
    }
}

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

/* ================================== */
h2[class*=has-text-align],
h2[class*=font-size],
h2:not([class]) {
    font-size: 2.5rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}
@media (max-width: 767px) {
    h2[class*=has-text-align],
    h2[class*=font-size],
    h2:not([class]) {
        font-size: 1.5rem;
        gap: 1rem;
    }
}
h2[class*=has-text-align]::before, h2[class*=has-text-align]::after,
h2[class*=font-size]::before,
h2[class*=font-size]::after,
h2:not([class])::before,
h2:not([class])::after {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    min-width: 0.75rem;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
}
h2[class*=has-text-align] + *,
h2[class*=font-size] + *,
h2:not([class]) + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    h2[class*=has-text-align] + *,
    h2[class*=font-size] + *,
    h2:not([class]) + * {
        margin-top: 3rem;
    }
}

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

/* ================================== */
.p-flow-headline {
    position: relative;
    font-size: 1.75rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    font-weight: bold;
}
@media (max-width: 767px) {
    .p-flow-headline {
        font-size: 1.25rem;
    }
}
.p-flow-headline::before, .p-flow-headline::after {
    content: "";
    height: 1px;
    width: 50%;
    background-color: #CFCCC6;
}
.p-flow-headline + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .p-flow-headline + * {
        margin-top: 2rem;
    }
}

h3[class*=has-text-align],
h3[class*=font-size],
h3:not([class]) {
    position: relative;
    font-size: 1.75rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
}
@media (max-width: 767px) {
    h3[class*=has-text-align],
    h3[class*=font-size],
    h3:not([class]) {
        font-size: 1.25rem;
    }
}
h3[class*=has-text-align]::before, h3[class*=has-text-align]::after,
h3[class*=font-size]::before,
h3[class*=font-size]::after,
h3:not([class])::before,
h3:not([class])::after {
    content: "";
    height: 1px;
    width: 50%;
    background-color: #CFCCC6;
}
h3[class*=has-text-align] + *,
h3[class*=font-size] + *,
h3:not([class]) + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    h3[class*=has-text-align] + *,
    h3[class*=font-size] + *,
    h3:not([class]) + * {
        margin-top: 2rem;
    }
}

* + h3[class*=has-text-align],
* + h3[class*=font-size],
* + h3:not([class]),
.p-flow-headline {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    * + h3[class*=has-text-align],
    * + h3[class*=font-size],
    * + h3:not([class]),
    .p-flow-headline {
        margin-top: 3.5rem;
    }
}

/* ================================== */
h4[class*=has-text-align],
h4[class*=font-size],
h4:not([class]) {
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    h4[class*=has-text-align],
    h4[class*=font-size],
    h4:not([class]) {
        font-size: 1.125rem;
    }
}
h4[class*=has-text-align] + *,
h4[class*=font-size] + *,
h4:not([class]) + * {
    margin-top: 1.25rem;
}
@media (max-width: 767px) {
    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[class*=font-size] {
    list-style: decimal;
}

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

ol:not([class]),
ul:not([class]),
ol[class*=font-size],
ul[class*=font-size] {
    padding: 0 0 0 1.375rem;
}
ol:not([class]) li::marker,
ul:not([class]) li::marker,
ol[class*=font-size] li::marker,
ul[class*=font-size] li::marker {
    color: #409AD6;
}
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;
    }
}

.c-check-list.-col2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content 1.5rem -webkit-max-content;
    -ms-grid-columns: max-content 1.5rem max-content;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    gap: 0.5rem 1.5rem;
}
@media (max-width: 767px) {
    .c-check-list.-col2 {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.c-check-list.-col2 li + li {
    margin-top: 0;
}
.c-check-list li {
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .c-check-list li {
        padding-left: 1.125rem;
        font-size: 0.875rem;
    }
}
.c-check-list li::before {
    content: "";
    position: absolute;
    inset: 6px auto auto 0;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_check.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.75rem;
    height: 0.75rem;
    min-width: 0.75rem;
}
.c-check-list li + li {
    margin-top: 0.5rem;
}

.c-under-mv__inner {
    position: relative;
}
.c-under-mv__inner::before {
    content: "";
    position: absolute;
    inset: -10px auto auto -45px;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/img_under-mv_panel01.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 103px;
    min-width: 103px;
    aspect-ratio: 103/80;
}
@media (max-width: 1400px) {
    .c-under-mv__inner::before {
        left: -1rem;
    }
}
@media (max-width: 767px) {
    .c-under-mv__inner::before {
        width: 75px;
        min-width: 75px;
        left: -1.375rem;
        top: -20px;
    }
}
.c-under-mv__inner::after {
    content: "";
    position: absolute;
    right: -66px;
    bottom: 0;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/img_under-mv_panel02.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 121px;
    min-width: 121px;
    aspect-ratio: 121/104;
}
@media (max-width: 1400px) {
    .c-under-mv__inner::after {
        right: -1rem;
    }
}
@media (max-width: 767px) {
    .c-under-mv__inner::after {
        width: 80px;
        min-width: 80px;
        right: -1.375rem;
        bottom: -3rem;
        z-index: -1;
    }
}
.c-under-mv__title {
    font-weight: bold;
    line-height: 1.5;
    font-size: 2.5rem;
}
@media (max-width: 767px) {
    .c-under-mv__title {
        font-size: 1.5rem;
        padding-top: 1rem;
    }
}
.c-under-mv__title + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .c-under-mv__title + * {
        margin-top: 1.5rem;
    }
}
@media (min-width: 768px) {
    .c-under-mv__desc {
        text-align: center;
    }
}
.c-under-mv__desc + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .c-under-mv__desc + * {
        margin-top: 1.5rem;
    }
}
.c-under-mv__content + * {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    .c-under-mv__content + * {
        margin-top: 3rem;
    }
}
.c-under-mv__subhead {
    text-align: center;
}
.c-under-mv__subhead > * {
    line-height: 1.5;
    font-weight: bold;
}
.c-under-mv__head {
    padding-bottom: 27px;
    text-align: center;
    position: relative;
}
@media (max-width: 767px) {
    .c-under-mv__head {
        padding-bottom: 1.25rem;
    }
}
.c-under-mv__head::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
    height: 3px;
    width: 5rem;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
}
.c-under-mv__head > * {
    font-weight: bold;
    line-height: 1.5;
    font-size: 2rem;
}
@media (max-width: 767px) {
    .c-under-mv__head > * {
        font-size: 1.75rem;
    }
}
.c-under-mv__flow-wrapper {
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.c-under-mv__flow {
    border: 1px solid #CFCCC6 !important;
}
.c-under-mv__flow li::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_right_gry_flow.png) !important;
}
.c-under-mv__flow li {
    font-weight: bold;
}
@media (min-width: 768px) {
    .c-under-mv__flow {
        max-width: 800px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

.c-under-flow__item {
    padding: 5rem;
    padding-top: 3.5rem;
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
}
@media (max-width: 767px) {
    .c-under-flow__item {
        padding: 2rem 1.25rem;
    }
}
.c-under-flow__item + * {
    margin-top: 106px;
    position: relative;
}
@media (max-width: 767px) {
    .c-under-flow__item + * {
        margin-top: 4rem;
    }
}
.c-under-flow__item + *::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -66px;
    width: 0;
    height: 0;
    border-left: 1.25rem solid transparent;
    border-right: 1.25rem solid transparent;
    border-top: 1.675rem solid #1E2678;
}
@media (max-width: 767px) {
    .c-under-flow__item + *::before {
        top: -2.5rem;
        border-left: 1rem solid transparent;
        border-right: 1rem solid transparent;
        border-top: 1.25rem solid #1E2678;
    }
}
.c-under-flow__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
}
@media (max-width: 767px) {
    .c-under-flow__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1.5rem;
    }
}
@media (min-width: 768px) {
    .c-under-flow__content {
        min-width: 480px;
    }
}
@media (min-width: 768px) {
    .c-under-flow__img {
        min-width: 520px;
    }
}
@media (max-width: 767px) {
    .c-under-flow__img {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}
.c-under-flow__number-list {
    padding: 1.5rem;
    padding-left: 3rem;
    border: 1px solid #CFCCC6;
}
.c-under-flow__number-list li {
    list-style-type: decimal;
    font-weight: bold;
}
.c-under-flow__note {
    font-size: 0.75rem;
    color: #989797;
}
@media (min-width: 768px) {
    .c-under-flow__desc {
        text-align: center;
    }
}
.c-under-flow__col {
    counter-reset: item;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .c-under-flow__col {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.c-under-flow__card {
    border: 1px solid #CFCCC6;
    padding: 1.5rem 2rem;
}
@media (min-width: 768px) {
    .c-under-flow__card {
        max-width: 300px;
    }
}
@media (max-width: 767px) {
    .c-under-flow__card {
        padding: 1.25rem;
    }
}
.c-under-flow__number-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
}
.c-under-flow__number-title::before {
    content: counter(item);
    counter-increment: item;
    background-color: #409AD6;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-weight: bold;
    color: #fff;
    line-height: 0.8;
}
.c-under-flow__number-title + * {
    margin-top: 1rem;
}
.c-under-flow__card-content {
    padding-top: 1rem;
    position: relative;
}
.c-under-flow__card-content::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 0;
    width: 2.5rem;
    height: 1px;
    background-color: #CFCCC6;
}
@media (min-width: 768px) {
    .c-under-flow__note-list {
        padding-inline: 7.5rem;
    }
}
.c-under-flow__note-list dt + * {
    margin-top: 0.75rem;
}
@media (max-width: 767px) {
    .c-under-flow__note-list dt + * {
        margin-top: 0.5rem;
    }
}
.c-under-flow__note-list dd + * {
    margin-top: 1.25rem;
}
.c-under-flow__box {
    border: 1px solid #CFCCC6;
    padding: 1.5rem;
}
@media (max-width: 767px) {
    .c-under-flow__box {
        padding: 1.25rem;
    }
}
.c-under-flow__box-item + * {
    margin-top: 0.5rem;
}

* + .c-under-flow__list {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    * + .c-under-flow__list {
        margin-top: 1.25rem;
    }
}
* + .c-under-flow__number-list {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    * + .c-under-flow__number-list {
        margin-top: 1rem;
    }
}

.c-square-head {
    font-weight: bold;
    padding-left: 1.25rem;
    position: relative;
}
.c-square-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    min-width: 0.75rem;
    background-color: #CFCCC6;
}

.c-anchor__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 280px 7px 280px 7px 280px 7px 280px;
    grid-template-columns: repeat(4, 280px);
    gap: 7px;
}
@media (max-width: 767px) {
    .c-anchor__list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}
.c-anchor__item a {
    padding: 1rem 2.5rem;
    text-align: center;
    font-weight: bold;
    color: #409AD6;
    border: 1px solid #409AD6;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: block;
}
@media (max-width: 767px) {
    .c-anchor__item a {
        font-size: 0.95rem;
        padding: 1rem 2.25rem;
    }
}
.c-anchor__item a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 15px;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_down_pri_anchor.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .c-anchor__item a::after {
        right: 9px;
    }
}
.c-anchor__item a:hover {
    background-color: #409AD6;
    color: #fff;
}
.c-anchor__item a:hover::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_down_wht_anchor.svg);
}

@media (min-width: 768px) {
    .u-hidden-pc {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .u-hidden-sp {
        display: none !important;
    }
}
* + .u-mt12 {
    margin-top: 0.75rem;
}
@media (max-width: 767px) {
    * + .u-mt12 {
        margin-top: 0.5rem;
    }
}

* + .u-mt16 {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    * + .u-mt16 {
        margin-top: 0.75rem;
    }
}

* + .u-mt24 {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    * + .u-mt24 {
        margin-top: 1.25rem;
    }
}

* + .u-mt28 {
    margin-top: 1.75rem;
}
@media (max-width: 767px) {
    * + .u-mt28 {
        margin-top: 1.5rem;
    }
}

* + .u-mt32 {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    * + .u-mt32 {
        margin-top: 1.5rem;
    }
}

* + .u-mt40 {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    * + .u-mt40 {
        margin-top: 2rem;
    }
}

* + .u-mt56 {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    * + .u-mt56 {
        margin-top: 3rem;
    }
}

* + .u-mt80 {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    * + .u-mt80 {
        margin-top: 4rem;
    }
}

/* =====================================
* 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%;
    -webkit-transform-origin: 8px 8px;
            transform-origin: 8px 8px;
    -webkit-animation-name: spin;
            animation-name: spin;
    -webkit-animation-duration: 1000ms;
            animation-duration: 1000ms;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
    .wpcf7-spinner::before {
        -webkit-animation-name: blink;
                animation-name: blink;
        -webkit-animation-duration: 2000ms;
                animation-duration: 2000ms;
    }
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-webkit-keyframes blink {
    from {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@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__thanks-title {
    font-weight: bold;
    line-height: 1.5;
    font-weight: bold;
    font-size: 2rem;
}
@media (max-width: 767px) {
    .p-form__thanks-title {
        font-size: 1.5rem;
    }
}
.p-form__thanks-title + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-form__thanks-title + * {
        margin-top: 1rem;
    }
}
.p-form__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.p-form__inner + * {
    margin-top: 2rem;
}
.p-form__inner dt {
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}
.p-form__inner dt + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-form__inner dt + * {
        margin-top: 1rem;
    }
}
@media (min-width: 768px) {
    .p-form__inner dt {
        border-bottom: 1px solid #CFCCC6;
        width: 40%;
    }
}
@media (max-width: 767px) {
    .p-form__inner dt {
        padding-top: 1.25rem;
    }
}
.p-form__inner dd {
    width: 60%;
    border-bottom: 1px solid #CFCCC6;
    padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
    .p-form__inner dd {
        width: 100%;
        padding-bottom: 1rem;
    }
}
.p-form__req {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: calc(7.5rem + 1px);
}
@media (max-width: 767px) {
    .p-form__req {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .p-form__req {
        padding-right: 0;
    }
}
.p-form__req:after {
    content: "必須";
    display: inline-block;
    background-color: #F98938;
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
    width: 57px;
    height: 25px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    line-height: 1.5;
}
.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: #ffe5e5;
    display: none;
    margin: 0 0 2rem;
    padding: 1.5rem;
}
.p-form__error-message.is-show {
    display: block;
}
.p-form__error-headline {
    color: #B70000;
    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: #B70000;
    font-size: 1.125rem;
}
.p-form .is-error[class] {
    border: 1px solid #B70000;
    background-color: #ffe5e5;
}
.p-form .wpcf7-not-valid-tip[class],
.p-form .error[class] {
    display: block;
    color: #B70000;
    font-size: 0.875rem;
    margin: 0.75rem 0 0;
}
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form input[type=text],
.p-form textarea,
.p-form select {
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
}
@media (max-width: 767px) {
    .p-form input[type=email],
    .p-form input[type=tel],
    .p-form input[type=number],
    .p-form input[type=text],
    .p-form textarea,
    .p-form select {
        padding: 1.25rem;
    }
}
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form input[type=text],
.p-form textarea {
    -webkit-appearance: none;
}
.p-form select {
    padding-right: 2.5rem;
    background-repeat: no-repeat;
    background-size: 0.75em auto;
    background-position: right center;
    background-position-x: calc(100% - 1rem);
    background-image: url(../img/ico_arr_down_ter.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;
}
@media (min-width: 768px) {
    .p-form textarea {
        min-height: 200px;
    }
}
.p-form textarea:focus,
.p-form select:focus,
.p-form input:focus {
    border-color: #409AD6;
}
.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: #B70000;
}

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

.p-sitemap {
    background-color: #f3f3f3;
    padding: 3rem 4rem;
}
@media (max-width: 767px) {
    .p-sitemap {
        padding: 1.5rem;
    }
}
.p-sitemap ul {
    list-style: none;
}
.p-sitemap ul li + li {
    margin-top: 0.5rem;
}
.p-sitemap__list[class] a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.p-sitemap__list[class] a:hover {
    color: #409AD6;
}
.p-sitemap__list[class] a[target*=_blank]::after {
    content: "";
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_blank_blk.svg);
    width: 0.75rem;
    min-width: 0.75rem;
    height: 0.75rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.p-sitemap__list[class] > li + li {
    margin-top: 1.25rem;
}
@media (max-width: 767px) {
    .p-sitemap__list[class] > li + li {
        margin-top: 1rem;
    }
}
.p-sitemap__list[class] > li > a {
    font-weight: bold;
    font-size: 1rem;
}
.p-sitemap__list[class] > li:first-child > a {
    font-size: 1.25rem;
}
.p-sitemap__list[class] > li > ul > li > a {
    font-size: 0.875rem;
}
.p-sitemap__list[class] > li > ul > li + li {
    margin-top: 0.375rem;
}
.p-sitemap__list[class] ul {
    padding: 0 0 0 2.5rem;
    margin-top: 0.5rem;
}
@media (max-width: 767px) {
    .p-sitemap__list[class] ul {
        padding: 0 0 0 2rem;
    }
}
.p-sitemap__list[class] ul li {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.p-sitemap__list[class] ul li::before {
    content: "";
    display: block;
    background-color: #409AD6;
    width: 0.5rem;
    height: 1px;
    margin-right: 0.5rem;
}

@media (min-width: 768px) {
    .p-home-section {
        overflow-x: hidden;
    }
}
.p-home-section + .p-home-section {
    margin-top: 7.5rem;
}
@media (max-width: 767px) {
    .p-home-section + .p-home-section {
        margin-top: 5rem;
    }
}
.p-home-section + .p-home-contact {
    margin-top: -7.5rem;
}
.p-home-section + .p-home-service {
    padding-top: 5.5rem;
    margin-top: 0;
}
@media (max-width: 767px) {
    .p-home-section + .p-home-gallery {
        margin-top: 2.5rem;
    }
}
.p-home-section__header + * {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    .p-home-section__header + * {
        margin-top: 3rem;
    }
}
.p-home-section__body + * {
    margin-top: 4rem;
}
.p-home-section__head > * {
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 88px;
    position: relative;
}
@media (max-width: 767px) {
    .p-home-section__head > * {
        padding-left: 3rem;
        font-size: 0.75rem;
    }
}
.p-home-section__head > *::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 80px;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
}
@media (max-width: 767px) {
    .p-home-section__head > *::before {
        width: 2.5rem;
        height: 2px;
    }
}
.p-home-section__subhead > * {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .p-home-section__subhead > * {
        font-size: 3.5rem;
    }
}
.p-home-section__subhead + * {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .p-home-section__subhead + * {
        margin-top: 1.5rem;
    }
}
@media (min-width: 768px) {
    .p-home-section__subhead.-center {
        text-align: center;
    }
}
.p-home-section__lead {
    line-height: 1.5;
    font-weight: bold;
    font-size: 2.5rem;
}
@media (max-width: 767px) {
    .p-home-section__lead {
        font-size: 2rem;
    }
}
@media (min-width: 768px) {
    .p-home-section__lead.-center {
        text-align: center;
    }
}
.p-home-section__lead + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-home-section__lead + * {
        margin-top: 1.5rem;
    }
}
.p-home-section__gallery-img {
    width: 100%;
    aspect-ratio: 338/316;
}

.p-home-mv {
    position: relative;
}
.p-home-mv__bg {
    width: 100%;
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.p-home-mv__filter {
    background: rgba(28, 49, 87, 0.8);
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.p-home-mv__inner {
    padding-block: 11.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
}
@media (max-width: 767px) {
    .p-home-mv__inner {
        padding-block: 5rem;
        padding-top: calc(5rem + 48px);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1.5rem;
    }
}
.p-home-mv__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 3.5rem;
    color: #fff;
}
@media (max-width: 767px) {
    .p-home-mv__title {
        font-size: 2rem;
    }
}
.p-home-mv__title + * {
    margin-top: 1.5rem;
    color: #fff;
}
@media (max-width: 767px) {
    .p-home-mv__title + * {
        margin-top: 1.25rem;
    }
}
.p-home-mv__achievements {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (max-width: 767px) {
    .p-home-mv__achievements {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}
.p-home-mv__achievements-img {
    width: 100%;
    aspect-ratio: 220/220;
}
@media (min-width: 768px) {
    .p-home-mv__achievements-img {
        min-width: 220px;
    }
}
.p-home-mv__btn.c-btn-cta {
    margin-inline: 0;
}
.p-home-contact {
    position: relative;
}
.p-home-contact + * {
    margin-top: 7.5rem;
}
@media (max-width: 767px) {
    .p-home-contact + * {
        margin-top: 5rem;
    }
}
.p-home-contact__inner {
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    padding: 49px 63.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.5rem;
    background-color: #fff;
    margin-bottom: 2rem;
}
@media (max-width: 767px) {
    .p-home-contact__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 1.25rem;
        gap: 1.5rem;
    }
}
@media (min-width: 768px) {
    .p-home-contact__header {
        min-width: 697px;
    }
}
.p-home-contact__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .p-home-contact__title {
        font-size: 1.125rem;
    }
}
.p-home-contact__title::after {
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #CFCCC6;
}
.p-home-contact__title + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-home-contact__title + * {
        margin-top: 1.25rem;
    }
}
@media (min-width: 768px) {
    .p-home-contact__body {
        min-width: 320px;
    }
}
.p-home-contact__lead {
    line-height: 1.5;
    font-weight: bold;
}
.p-home-contact__lead + * {
    margin-top: 0.75rem;
}

.p-home-panel {
    position: relative;
}
.p-home-panel__item {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: calc(100% + 2rem);
    width: 100%;
    aspect-ratio: 134/100;
    max-width: 134px;
    height: 100px;
    z-index: 1;
}

.p-home-service__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.25rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-home-service__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1.5rem;
    }
}
@media (max-width: 767px) {
    .p-home-service__header + * {
        margin-top: 9.5rem;
    }
}
.p-home-service__header-panel {
    display: block;
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: calc(100% + 2rem);
    width: 100%;
    aspect-ratio: 134/100;
    max-width: 134px;
    height: 100px;
    z-index: 1;
}
@media (max-width: 767px) {
    .p-home-service__header-panel {
        left: auto;
        right: -1.25rem;
        bottom: auto;
        top: -1.25rem;
        max-width: 100px;
        height: 72px;
    }
}
.p-home-service__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    position: relative;
}
@media (min-width: 768px) {
    .p-home-service__img {
        min-width: 480px;
    }
}
@media (max-width: 767px) {
    .p-home-service__img {
        gap: 2rem;
        max-width: calc(100% - 3rem);
    }
}
.p-home-service__img::after {
    content: "";
    position: absolute;
    width: 15rem;
    height: 15rem;
    min-width: 15rem;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
    bottom: -170px;
    right: -170px;
    z-index: -1;
}
@media (max-width: 767px) {
    .p-home-service__img::after {
        width: 35vw;
        height: 35vw;
        min-width: 5rem;
        bottom: -5rem;
        right: -4.25rem;
    }
}
.p-home-service__body {
    position: relative;
}
.p-home-service__body + * {
    margin-top: 160px;
}
@media (max-width: 767px) {
    .p-home-service__body + * {
        margin-top: 4rem;
    }
}
.p-home-service__footer {
    position: relative;
}
.p-home-service__footer::after {
    content: "";
}
.p-home-service__footer-panel {
    position: absolute;
    width: 100%;
    aspect-ratio: 260/252;
    max-width: 260px;
    z-index: -1;
    bottom: 12rem;
    left: -130px;
}

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

.p-home-solution__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: relative;
}
@media (max-width: 767px) {
    .p-home-solution__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
@media (max-width: 767px) {
    .p-home-solution__header + * {
        margin-top: 1.5rem;
    }
}
.p-home-solution__header-panel {
    position: absolute;
    top: 1rem;
    left: 100%;
    width: 100%;
    aspect-ratio: 121/104;
    max-width: 121px;
}
@media (max-width: 767px) {
    .p-home-solution__header-panel {
        max-width: 90px;
        left: auto;
        right: -1.25rem;
    }
}
.p-home-solution__body {
    position: relative;
    margin-right: calc(50% - 50vw);
}
@media (min-width: 768px) {
    .p-home-solution__body {
        min-width: 1232px;
    }
}
.p-home-solution__body::before {
    content: "";
    position: absolute;
    bottom: 51px;
    left: -5rem;
    width: 240px;
    height: 240px;
    min-width: 240px;
    background-color: #f3f3f3;
}
@media (max-width: 767px) {
    .p-home-solution__body::before {
        left: -1.25rem;
        bottom: 110px;
    }
}
.p-home-solution__body + * {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .p-home-solution__body + * {
        margin-top: 2rem;
    }
}
@media (max-width: 767px) {
    .p-home-solution__content + * {
        margin-top: 1rem;
    }
}

.p-home-features__header {
    position: relative;
}
@media (min-width: 768px) {
    .p-home-features__header {
        padding-top: 5.5rem;
    }
}
.p-home-features__header + * {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .p-home-features__header + * {
        margin-top: 3rem;
    }
}
.p-home-features__header-panel {
    position: absolute;
    top: 12.5rem;
    left: -140px;
}
@media (min-width: 768px) {
    .p-home-features__head {
        position: relative;
        display: -ms-grid;
        display: grid;
        place-items: center;
    }
    .p-home-features__head > * {
        padding-left: 0;
    }
    .p-home-features__head > *::before {
        content: "";
        width: 3px;
        height: 5rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: -5.5rem;
    }
}
.p-home-features__body {
    position: relative;
    padding-bottom: 8rem;
}
@media (max-width: 767px) {
    .p-home-features__body {
        padding-bottom: 2rem;
    }
}
.p-home-features__body::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 34px);
    left: calc(100% - 34px);
    width: 7.5rem;
    min-width: 7.5rem;
    height: 7.5rem;
    background: #f3f3f3;
    z-index: -1;
}
@media (max-width: 767px) {
    .p-home-features__body::before {
        width: 5rem;
        left: auto;
        right: -1.25rem;
    }
}
.p-home-features__body::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50rem;
    height: 50rem;
    min-width: 50rem;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
    z-index: -1;
}
@media (max-width: 767px) {
    .p-home-features__body::after {
        width: 7.5rem;
        height: 7.5rem;
        min-width: 7.5rem;
        left: auto;
        right: -1.25rem;
        bottom: -1.5rem;
    }
}

.p-home-works__footer {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}
@media (max-width: 1232px) {
    .p-home-works__footer {
        margin-inline: 0;
        min-width: 1232px;
    }
}
@media (max-width: 767px) {
    .p-home-works__footer {
        margin-inline: 0;
        min-width: 100%;
        width: 100%;
    }
}
@media (max-width: 1232px) {
    .p-home-works__footer .c-btn {
        margin-inline: 1.25rem;
    }
}
.p-home-works__header {
    position: relative;
}
.p-home-works__header-panel {
    position: absolute;
    bottom: 60px;
    right: -56px;
    aspect-ratio: 123/100;
    width: 100%;
    max-width: 134px;
    z-index: -1;
}
@media (max-width: 767px) {
    .p-home-works__header-panel {
        right: -1.25rem;
        bottom: 0;
        max-width: 100px;
    }
}
.p-home-works__body {
    position: relative;
}
.p-home-works__body::before {
    content: "";
    position: absolute;
    width: 10rem;
    height: 10rem;
    min-width: 10rem;
    background-color: #f3f3f3;
    top: calc(100% - 2.5rem);
    right: calc(100% - 2.5rem);
    z-index: -1;
}
.p-home-works__body + * {
    margin-top: 2.25rem;
}

.p-home-section__gallery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
    .p-home-section__gallery {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.p-home-section__gallery-item {
    width: 100%;
    aspect-ratio: auto;
    height: 400px;
}

.p-home-cta__logo {
    width: 100%;
    aspect-ratio: 54/38;
    max-width: 54px;
    margin-inline: auto;
}
.p-home-cta__logo + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-home-cta__logo + * {
        margin-top: 2rem;
    }
}
.p-home-cta__body, .p-service__cta-body {
    background-color: #fff;
    padding: 3rem 117px;
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 94px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 94px;
    position: relative;
}
@media (min-width: 768px) {
    .p-home-cta__body, .p-service__cta-body {
        max-width: 1100px;
        margin-inline: auto;
    }
}
@media (max-width: 767px) {
    .p-home-cta__body, .p-service__cta-body {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 2.75rem;
        padding: 2rem 1.5rem;
    }
}
.p-home-cta__body::before, .p-service__cta-body::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 100%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 48px solid #fff;
    z-index: 1;
}
@media (max-width: 767px) {
    .p-home-cta__body::before, .p-service__cta-body::before {
        border-left: 2.5rem solid transparent;
        border-right: 2.5rem solid transparent;
        border-top: 1.5rem solid #fff;
        top: calc(100% - 1px);
    }
}
.p-home-cta__body::after, .p-service__cta-body::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 3rem;
    width: 1px;
    height: calc(100% - 6rem);
    background-color: #CFCCC6;
}
@media (max-width: 767px) {
    .p-home-cta__body::after, .p-service__cta-body::after {
        width: calc(100% - 2.5rem);
        height: 1px;
        left: 1.25rem;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
}
.p-home-cta__body-title {
    line-height: 1.5;
    font-weight: bold;
}
.p-home-cta__body-title span {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
    color: #409AD6;
}
@media (max-width: 767px) {
    .p-home-cta__body-title span {
        font-size: 1.25rem;
    }
}
.p-home-cta__body-title + * {
    margin-top: 1rem;
}
.p-home-cta__footer, .p-service__cta-footer {
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
    padding: 248px 160px 5rem 160px;
    color: #fff;
    margin-top: -168px;
}
@media (min-width: 768px) {
    .p-home-cta__footer, .p-service__cta-footer {
        max-width: 1400px;
        margin-inline: auto;
    }
}
@media (max-width: 767px) {
    .p-home-cta__footer, .p-service__cta-footer {
        padding: 5rem 1.25rem;
        padding-top: 4rem;
        margin-top: 0;
    }
}
.p-home-cta__footer-title, .p-service__cta-title {
    font-weight: bold;
    line-height: 1.5;
    font-size: 2rem;
}
@media (max-width: 767px) {
    .p-home-cta__footer-title, .p-service__cta-title {
        font-size: 1.25rem;
    }
}
.p-home-cta__footer-title + *, .p-service__cta-title + * {
    margin-top: 1.5rem;
    text-align: center;
}
@media (max-width: 767px) {
    .p-home-cta__footer-title + *, .p-service__cta-title + * {
        margin-top: 1.25rem;
        text-align: left;
        font-size: 0.875rem;
    }
}
.p-home-cta__footer-box, .p-service__cta-footer-box {
    border: 1px solid #fff;
    padding: 2rem 5.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.75rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 4px;
}
@media (max-width: 767px) {
    .p-home-cta__footer-box, .p-service__cta-footer-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem;
    }
}
@media (max-width: 767px) {
    .p-home-cta__footer-box .c-btn-cta, .p-service__cta-footer-box .c-btn-cta {
        min-width: 100%;
    }
}
.p-home-cta__footer-list li {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 1rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-home-cta__footer-list li {
        font-size: 0.75rem;
    }
}
.p-home-cta__footer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
}
@media (min-width: 768px) {
    .p-home-cta__footer-list li + * {
        margin-top: 0.5rem;
    }
}
.p-home-cta__footer-btn {
    min-width: 320px;
    margin-inline: 0 !important;
}
.p-home-first__header {
    position: relative;
}
.p-home-first__header-panel {
    position: absolute;
    right: -60px;
    top: 250px;
    width: 100%;
    aspect-ratio: 134/100;
    max-width: 134px;
}
@media (max-width: 767px) {
    .p-home-first__header-panel {
        z-index: -1;
        top: 0px;
        max-width: 5rem;
        right: -1.25rem;
    }
}
.p-home-first__flow {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 28px 1fr 28px 1fr 28px 1fr 28px 1fr 28px 1fr;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    counter-reset: item;
    padding-top: 0.875rem;
}
@media (min-width: 768px) {
    .p-home-first__flow {
        padding-inline: 5rem;
    }
}
@media (max-width: 767px) {
    .p-home-first__flow {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.375rem;
    }
}
.p-home-first__flow + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .p-home-first__flow + * {
        margin-top: 3rem;
    }
}
.p-home-first__flow-item {
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    position: relative;
    padding-block: 31px;
}
@media (max-width: 767px) {
    .p-home-first__flow-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-block: 0.5rem;
        padding-right: 2rem;
        padding-left: 4.875rem;
    }
}
.p-home-first__flow-item::before {
    content: "0" counter(item);
    counter-increment: item;
    line-height: 1;
    font-weight: bold;
    font-size: 1.5rem;
    color: #409AD6;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -12px;
}
@media (max-width: 767px) {
    .p-home-first__flow-item::before {
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 2.25rem;
    }
}
.p-home-first__flow-item + .p-home-first__flow-item::after {
    content: "";
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -1.75rem;
    height: 1.25rem;
    width: 0.875rem;
    background-color: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    position: absolute;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media (max-width: 767px) {
    .p-home-first__flow-item + .p-home-first__flow-item::after {
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: -1.4rem;
        width: 1rem;
        height: 0.5rem;
    }
}
.p-home-first__flow-ico {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 56px;
    margin-inline: auto;
}
@media (max-width: 767px) {
    .p-home-first__flow-ico {
        max-width: 32px;
        margin-right: 0;
    }
}
.p-home-first__flow-ico + * {
    margin-top: 0.5rem;
}
.p-home-first__flow-title {
    font-weight: bold;
    line-height: 1.5;
    color: #409AD6;
    text-align: center;
}
@media (max-width: 767px) {
    .p-home-first__flow-title {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}
.p-home-first__footer {
    position: relative;
}
@media (min-width: 768px) {
    .p-home-first__footer .p-faq__list {
        padding-inline: 5rem;
    }
}
.p-home-first__footer::before {
    content: "";
    position: absolute;
    bottom: 1.25rem;
    left: -2.5rem;
    width: 10rem;
    height: 10rem;
    min-width: 10rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f3f3f3;
    z-index: -1;
}
@media (max-width: 767px) {
    .p-home-first__footer::before {
        width: 5rem;
        min-width: 5rem;
        height: 5rem;
        left: -1.25rem;
        bottom: 5rem;
    }
}

.p-home-section.p-home-solution {
    display: none;
}

.l-footer__sitemap-list li:has(a[href="/business/cloud/salesforce/solution/"]) {
    display: none;
}

@media (min-width: 768px) {
    .js-service-scroll {
        padding-bottom: 160px;
    }
}
@media (max-width: 767px) {
    .js-service-scroll {
        margin-bottom: 6rem;
    }
}

.l-container:has(.p-home-section__footer.p-home-service__footer), .p-home-service__body-inner:has(.p-home-section__footer.p-home-service__footer) {
    margin-top: 0;
}

@media (min-width: 768px) {
    .p-service {
        overflow: hidden;
    }
    .p-service__scroll-wrapper[class] {
        height: auto;
        position: relative;
    }
    .p-service__scroll-wrapper[class]::after {
        bottom: auto;
        top: 0;
        margin-top: 210px;
    }
    .p-service__swiper-wrapper {
        display: block;
        height: 1856px;
    }
    .p-service__scroll-pagination, .p-service__flow-title, .p-service__flow-title::before, .p-service__flow-item {
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .p-service__slide {
        opacity: 1;
        height: auto;
    }
    .p-service__slide + .p-service__slide {
        opacity: 0;
        height: 0;
    }
}

@media (min-width: 768px) {
    body.is-index01 .p-service__slide, body.is-index02 .p-service__slide, body.is-index03 .p-service__slide, body.is-index04 .p-service__slide {
        opacity: 0;
        height: 0;
    }
    body.is-index01 .p-service__slide:nth-of-type(1), body.is-index02 .p-service__slide:nth-of-type(2), body.is-index03 .p-service__slide:nth-of-type(3), body.is-index04 .p-service__slide:nth-of-type(4) {
        opacity: 1;
    }
    body.is-index01 .p-service__scroll-pagination > *:nth-of-type(1), body.is-index02 .p-service__scroll-pagination > *:nth-of-type(2), body.is-index03 .p-service__scroll-pagination > *:nth-of-type(3), body.is-index04 .p-service__scroll-pagination > *:nth-of-type(4) {
        background-color: #fff;
    }
}

@media (min-width: 768px) {
    body.is-service-fixed.is-index02 .p-service__flow-item.-implementation, body.is-service-fixed.is-index03 .p-service__flow-item.-system-cooperation, body.is-service-fixed.is-index04 .p-service__flow-item.-rebuild {
        background-color: #409AD6;
    }
    body.is-service-fixed.is-index02 .p-service__flow-item.-implementation .p-service__flow-title {
        color: #fff;
    }
    body.is-service-fixed.is-index02 .p-service__flow-item.-implementation .p-service__flow-title::before {
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow02_wht.png);
    }
    body.is-service-fixed.is-index03 .p-service__flow-item.-system-cooperation .p-service__flow-title {
        color: #fff;
    }
    body.is-service-fixed.is-index03 .p-service__flow-item.-system-cooperation .p-service__flow-title::before {
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow03_wht.png);
    }
    body.is-service-fixed.is-index04 .p-service__flow-item.-rebuild .p-service__flow-title {
        color: #fff;
    }
    body.is-service-fixed.is-index04 .p-service__flow-item.-rebuild .p-service__flow-title::before {
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow04_wht.png);
    }
}

@media (min-width: 768px) {
    body.is-service-fixed.is-index02 .p-service__flow-item.is-active, body.is-service-fixed.is-index03 .p-service__flow-item.is-active, body.is-service-fixed.is-index04 .p-service__flow-item.is-active, body.is-service-fixed-end.is-index02 .p-service__flow-item.is-active, body.is-service-fixed-end.is-index03 .p-service__flow-item.is-active, body.is-service-fixed-end.is-index04 .p-service__flow-item.is-active {
        background-color: #fff;
    }
    body.is-service-fixed.is-index02 .p-service__flow-item.is-active .p-service__flow-title, body.is-service-fixed.is-index03 .p-service__flow-item.is-active .p-service__flow-title, body.is-service-fixed.is-index04 .p-service__flow-item.is-active .p-service__flow-title, body.is-service-fixed-end.is-index02 .p-service__flow-item.is-active .p-service__flow-title, body.is-service-fixed-end.is-index03 .p-service__flow-item.is-active .p-service__flow-title, body.is-service-fixed-end.is-index04 .p-service__flow-item.is-active .p-service__flow-title {
        color: #409AD6;
    }
    body.is-service-fixed.is-index02 .p-service__flow-item.is-active .p-service__flow-title::before, body.is-service-fixed.is-index03 .p-service__flow-item.is-active .p-service__flow-title::before, body.is-service-fixed.is-index04 .p-service__flow-item.is-active .p-service__flow-title::before, body.is-service-fixed-end.is-index02 .p-service__flow-item.is-active .p-service__flow-title::before, body.is-service-fixed-end.is-index03 .p-service__flow-item.is-active .p-service__flow-title::before, body.is-service-fixed-end.is-index04 .p-service__flow-item.is-active .p-service__flow-title::before {
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow01.png);
    }
    body.is-service-fixed.is-index04 .p-service__flow-item.-rebuild, body.is-service-fixed-end.is-index04 .p-service__flow-item.-rebuild {
        background-color: #409AD6;
    }
    body.is-service-fixed.is-index04 .p-service__flow-item.-rebuild .p-service__flow-title, body.is-service-fixed-end.is-index04 .p-service__flow-item.-rebuild .p-service__flow-title {
        color: #fff;
    }
    body.is-service-fixed.is-index04 .p-service__flow-item.-rebuild .p-service__flow-title::before, body.is-service-fixed-end.is-index04 .p-service__flow-item.-rebuild .p-service__flow-title::before {
        background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow04_wht.png);
    }
}

@media (max-width: 767px) {
    .p-service {
        padding-top: 0.5rem;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}
.p-service__pri {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.75rem;
    color: #409AD6;
}
@media (max-width: 767px) {
    .p-service__pri {
        font-size: 1.25rem;
    }
}
.p-service__pri + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-service__pri + * {
        margin-top: 2rem;
    }
}
.p-service__flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}
@media (max-width: 767px) {
    .p-service__flow {
        gap: 1rem;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: none;
    }
}
.p-service__flow::before {
    content: "";
    width: 1155px;
    height: 54px;
    background-color: #409AD6;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    z-index: -1;
}
@media (max-width: 767px) {
    .p-service__flow::before {
        width: calc(100% - 60px);
    }
}
.p-service__flow::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 48px solid transparent;
    border-bottom: 48px solid transparent;
    border-left: 61px solid #409AD6;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    z-index: -1;
}
.p-service__flow + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-service__flow + * {
        margin-top: 2rem;
    }
}
.p-service__flow-item {
    background-color: #fff;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    max-width: 200px;
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    display: -ms-grid;
    display: grid;
    place-items: center;
}
@media (max-width: 767px) {
    .p-service__flow-item {
        max-width: 160px;
        padding: 1.5rem;
        margin-block: 1rem;
    }
}
.p-service__flow-item.is-active {
    background-color: #409AD6;
}
.p-service__flow-item.is-active .p-service__flow-title {
    color: #fff;
}
.p-service__flow-item.is-active .p-service__flow-title.-consulting::before {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow01_wht.png);
}
.p-service__flow-item.is-active .p-service__flow-title.-implementation::before {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow02_wht.png);
}
.p-service__flow-item.is-active .p-service__flow-title.-system-cooperation::before {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow03_wht.png);
}
.p-service__flow-item.is-active .p-service__flow-title.-rebuild::before {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow04_wht.png);
}
.p-service__flow-title {
    color: #409AD6;
    line-height: 1.5;
    font-weight: bold;
    gap: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media (max-width: 767px) {
    .p-service__flow-title {
        text-align: center;
        font-size: 0.875rem;
    }
}
.p-service__flow-title::before {
    content: "";
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.p-service__flow-title.-consulting::before {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow01.png);
}
.p-service__flow-title.-implementation::before {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow02.png);
}
.p-service__flow-title.-system-cooperation::before {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow03.png);
}
.p-service__flow-title.-rebuild::before {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_service_flow04.png);
}
.p-service__scroll-wrapper {
    position: relative;
}
@media (min-width: 768px) {
    .p-service__scroll-wrapper {
        height: 464px;
    }
}
.p-service__scroll-wrapper::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    min-width: 320px;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
    bottom: -60px;
    right: calc(100% - 120px);
    z-index: -1;
}
@media (max-width: 767px) {
    .p-service__scroll-wrapper::after {
        width: 35vw;
        height: 35vw;
        bottom: -30px;
    }
}
.p-service__scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 464px;
}
@media (min-width: 768px) {
    .p-service__scroll {
        overflow-y: scroll;
    }
}
@media (max-width: 767px) {
    .p-service__scroll {
        position: static;
        height: 100%;
    }
}
.p-service__scroll::-webkit-scrollbar {
    display: none;
}
.p-service__scroll-pagination {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 99;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
@media (max-width: 767px) {
    .p-service__scroll-pagination {
        right: 0.375rem;
        top: 1.25rem;
        display: none;
    }
}
.p-service__scroll-pagination span {
    display: block;
    border: 1px solid #fff;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
}
.p-service__scroll-pagination span + * {
    margin-top: 1rem;
}
.p-service__scroll-pagination span.is-active {
    background-color: #fff;
}
.p-service__item {
    position: relative;
    padding: 5rem;
}
@media (min-width: 768px) {
    .p-service__item {
        aspect-ratio: 1200/464;
    }
}
@media (max-width: 767px) {
    .p-service__item {
        padding: 2.5rem 1.25rem;
        height: 100%;
    }
}
@media (min-width: 768px) {
    .p-service__item:hover .p-service__swiper-filter {
        opacity: 0.8;
    }
}
.p-service__item.-under {
    padding: 3.5rem 5rem;
    width: 100%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .p-service__item.-under {
        padding: 1.25rem;
        padding-block: 2rem;
    }
}
.p-service__item.-under .p-service__swiper-content {
    width: 100%;
}
@media (max-width: 767px) {
    .p-service__item.-under .p-service__swiper-title + * {
        margin-top: 1rem;
    }
}
@media (max-width: 767px) {
    .p-service__item.-under .p-service__swiper-subtitle + * {
        margin-top: 0.75rem;
    }
}
@media (max-width: 767px) {
    .p-service__item + * {
        margin-top: 1rem;
    }
}
.p-service__item-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-service__item-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 3rem;
    }
}
.p-service__item-wrapper::before {
    content: "";
    position: absolute;
    left: 72px;
    top: 0;
    width: 54px;
    height: calc(100% - 30px);
    background-color: #409AD6;
    z-index: -1;
}
@media (max-width: 767px) {
    .p-service__item-wrapper::before {
        height: calc(160px + 1rem);
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 50px;
    }
}
.p-service__item-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 58px;
    width: 0;
    height: 0;
    border-right: 2.5rem solid transparent;
    border-top: 2.5rem solid #409AD6;
    border-left: 2.5rem solid transparent;
    z-index: -1;
}
@media (max-width: 767px) {
    .p-service__item-wrapper::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: 173px;
        border-right: 2.5rem solid transparent;
        border-left: 2.5rem solid transparent;
        border-top: 2.5rem solid #409AD6;
    }
}
@media (max-width: 767px) {
    .p-service__item-wrapper + * {
        margin-top: 3rem;
    }
}
@media (min-width: 768px) {
    .p-service__swiper {
        height: 100%;
    }
}
@media (max-width: 767px) {
    .p-service__swiper {
        overflow: auto;
        position: static;
    }
}
@media (max-width: 767px) {
    .p-service__swiper-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 767px) {
    .p-service__swiper-slide {
        height: 100%;
    }
}
.p-service__swiper-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}
.p-service__swiper-filter {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    background-color: #409AD6;
    opacity: 0.9;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.p-service__swiper-title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 2rem;
}
@media (max-width: 767px) {
    .p-service__swiper-title {
        font-size: 1.375rem;
    }
}
.p-service__swiper-title + * {
    margin-top: 2rem;
}
.p-service__swiper-content {
    position: relative;
    color: #fff;
}
@media (max-width: 767px) {
    .p-service__swiper-content {
        height: 100%;
    }
}
.p-service__swiper-subtitle {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .p-service__swiper-subtitle {
        font-size: 1rem;
    }
}
.p-service__swiper-subtitle + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-service__swiper-subtitle + * {
        font-size: 0.875rem;
    }
}
.p-service__swiper-flow, .c-under-mv__flow {
    border: 1px solid #fff;
    padding: 1rem 2rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0.5rem 38px;
    border-radius: 0.25rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
@media (max-width: 767px) {
    .p-service__swiper-flow, .c-under-mv__flow {
        gap: 0.25rem 1.5rem;
        padding: 0.5rem 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.p-service__swiper-flow li, .c-under-mv__flow li {
    font-size: 0.875rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-service__swiper-flow li, .c-under-mv__flow li {
        text-align: center;
        font-size: 0.75rem;
    }
}
.p-service__swiper-flow li::after, .c-under-mv__flow li::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: calc(-1rem - 10px);
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_right_wht_flow.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.75rem;
    height: 0.75rem;
    min-width: 0.75rem;
}
@media (max-width: 767px) {
    .p-service__swiper-flow li::after, .c-under-mv__flow li::after {
        right: calc(-1rem - 0px);
    }
}
.p-service__swiper-flow li:last-child::after, .c-under-mv__flow li:last-child::after {
    display: none;
}
@media (max-width: 767px) {
    .p-service__swiper-btn {
        bottom: 0;
        right: 1rem;
    }
}
.p-service__swiper-btn a {
    color: #fff;
    font-weight: bold;
}
.p-service__swiper-btn a::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_right_wht.svg);
}
.p-service__swiper-btn a:hover {
    color: #fff;
}
.p-service__swiper-btn a:hover::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_right_wht.svg);
}
.p-service__swiper-btn a::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.p-service__panel {
    position: absolute;
    top: calc(100% - 60px);
    left: calc(100% - 60px);
    aspect-ratio: 201/200;
    z-index: -1;
}
@media (min-width: 768px) {
    .p-service__panel {
        min-width: 201px;
    }
}
@media (max-width: 767px) {
    .p-service__panel {
        left: auto;
        right: -1.25rem;
        min-width: 30px;
        max-width: 100px;
    }
}
.p-service__other {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 768px) {
    .p-service__other {
        padding-inline: 5rem;
    }
}
@media (max-width: 767px) {
    .p-service__other {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
}
.p-service__other-item {
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    padding: 2.5rem 0;
    background-color: #fff;
}
@media (max-width: 767px) {
    .p-service__other-item {
        padding: 2rem 1.25rem;
        -webkit-box-shadow: 0px 4px 20px -4px rgba(30, 38, 120, 0.1);
                box-shadow: 0px 4px 20px -4px rgba(30, 38, 120, 0.1);
    }
}
.p-service__other-title {
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.p-service__other-title + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service__other-title + * {
        margin-top: 1.25rem;
    }
}
.p-service__other-img {
    width: 100%;
    aspect-ratio: 276/58;
    max-width: 274px;
    margin-inline: auto;
}
@media (max-width: 767px) {
    .p-service__other-img {
        max-width: 225px;
    }
}
.p-service__other-img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service__other-img + * {
        margin-top: 1.25rem;
    }
}
.p-service__other-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.25rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.p-service__other-list li {
    font-weight: bold;
    line-height: 1.5;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border: 1px solid #48545D;
}
@media (max-width: 767px) {
    .p-service__other-list li {
        padding: 0.25rem;
        padding-bottom: 0.125rem;
        display: -ms-grid;
        display: grid;
        place-items: center;
    }
}
.p-service__other-list + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-service__other-list + * {
        margin-top: 0.875rem;
    }
}
.p-service__other-subtitle {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .p-service__other-subtitle {
        font-size: 1rem;
    }
}
.p-service__solutions {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
@media (max-width: 767px) {
    .p-service__solutions {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}
.p-service__solutions-item {
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
}
.p-service__solutions-problem {
    background-color: #fff;
    padding: 2.5rem 3.5rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-service__solutions-problem {
        padding: 1.25rem;
    }
}
.p-service__solutions-problem::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 100%;
    width: 0;
    height: 0;
    border-left: 1.875rem solid transparent;
    border-right: 1.875rem solid transparent;
    border-top: 1.5rem solid #fff;
    z-index: 1;
}
.p-service__solutions-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .p-service__solutions-flex {
        gap: 1rem;
    }
}
.p-service__solutions-flex + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service__solutions-flex + * {
        margin-top: 1.25rem;
    }
}
.p-service__solutions-title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
    color: #409AD6;
}
@media (max-width: 767px) {
    .p-service__solutions-title {
        font-size: 1.25rem;
    }
}
.p-service__solutions-title span {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1rem;
    color: #48545D;
    margin-left: 0.5rem;
}
.p-service__solutions-solution {
    padding: 2.5rem 3.5rem;
    background-color: #409AD6;
    color: #fff;
    position: relative;
}
@media (max-width: 767px) {
    .p-service__solutions-solution {
        padding: 1.25rem;
        padding-top: 2.5rem;
    }
}
.p-service__solutions-content {
    margin-block: 9.5px;
    padding-block: calc(1rem + 13.5px);
    border-top: 1px dashed #fff;
    border-bottom: 1px dashed #fff;
    position: relative;
    font-weight: bold;
}
.p-service__solutions-content + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service__solutions-content + * {
        margin-top: 1.25rem;
    }
}
.p-service__solutions-subtitle {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    line-height: 1.5;
    background-color: #409AD6;
    padding-inline: 1rem;
    font-size: 0.875rem;
}
.p-service__solutions-btn a::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
}
.p-service__solutions-btn a:hover {
    text-decoration: none;
}
.p-service__another {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}
@media (max-width: 767px) {
    .p-service__another {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.p-service__another-item {
    position: relative;
    padding: 3.5rem 5rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .p-service__another-item {
        padding: 2rem 1.5rem;
    }
}
.p-service__another-item.is-current {
    opacity: 0.5;
}
.p-service__another-item.is-current a {
    pointer-events: none;
}
.p-service__another-item:hover {
    opacity: 0.5;
}
.p-service__another-item:hover a {
    text-decoration: none;
}
.p-service__another-item .p-service__swiper-img {
    z-index: -2;
}
.p-service__another-item .p-service__swiper-filter {
    z-index: -1;
}
.p-service__another-item .p-service__swiper-content {
    position: static;
}
.p-service__another-item a::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
}
.p-service__implementation {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-service__implementation {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}
@media (min-width: 768px) {
    .p-service__implementation-content {
        min-width: 600px;
    }
}
.p-service__implementation-title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.75rem;
}
@media (max-width: 767px) {
    .p-service__implementation-title {
        font-size: 1.25rem;
    }
}
.p-service__implementation-title + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service__implementation-title + * {
        margin-top: 1.25rem;
    }
}
.p-service__implementation-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .p-service__implementation-flex {
        gap: 0.75rem;
    }
}
.p-service__implementation-achievements {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 220px;
}
.p-service__implementation-img {
    width: 100%;
    aspect-ratio: 640/600;
}
@media (min-width: 768px) {
    .p-service__implementation-img {
        min-width: 640px;
    }
}
@media (max-width: 1232px) {
    .p-service__implementation-img {
        min-width: 100%;
    }
}
@media (max-width: 767px) {
    .p-service__implementation-img {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}
.p-service__implementation-panel {
    width: 100%;
    aspect-ratio: 120/147;
    max-width: 120px;
    position: absolute;
    right: calc(100% + 40px);
    top: -1.75rem;
}
@media (max-width: 767px) {
    .p-service__implementation-panel {
        right: calc(100% - 3.25rem);
        top: -2.5rem;
        max-width: 5rem;
    }
}
.p-service__implementation-panel.-second {
    aspect-ratio: 193/196;
    right: auto;
    top: auto;
    left: 100%;
    bottom: -30px;
    max-width: 193px;
    z-index: -1;
}
@media (max-width: 1400px) {
    .p-service__implementation-panel.-second {
        right: 0;
        left: auto;
    }
}
@media (max-width: 767px) {
    .p-service__implementation-panel.-second {
        max-width: 5rem;
        left: auto;
        right: -2.5rem;
    }
}
.p-service__qualification {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-inline: 7.5rem;
}
@media (max-width: 767px) {
    .p-service__qualification {
        -ms-grid-columns: 1fr 1.25rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding-inline: 0;
    }
}
.p-service__qualification-item {
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    padding: 1.5rem;
    padding-bottom: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
}
@media (max-width: 767px) {
    .p-service__qualification-item {
        padding: 1.25rem;
        -webkit-box-shadow: 0px 4px 20px -4px rgba(30, 38, 120, 0.1);
                box-shadow: 0px 4px 20px -4px rgba(30, 38, 120, 0.1);
    }
}
.p-service__qualification-name {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.25rem;
    text-align: center;
}
@media (max-width: 767px) {
    .p-service__qualification-name {
        font-size: 1rem;
    }
}
.p-service__qualification-number {
    font-weight: bold;
    line-height: 1.5;
    color: #409AD6;
    font-size: 3.5rem;
    line-height: 36px;
    vertical-align: bottom;
}
@media (max-width: 767px) {
    .p-service__qualification-number {
        font-size: 3rem;
    }
}
.p-service__qualification-number span {
    line-height: 1.5;
    font-size: 1.5rem;
}
@media (min-width: 768px) {
    .p-service__cta-pri {
        text-align: center;
    }
}
.p-service__cta-pri + * {
    margin-top: 2rem;
}
.p-service__cta-body {
    display: block;
    padding-inline: 67.5px;
}
@media (max-width: 767px) {
    .p-service__cta-body {
        padding-inline: 1.5rem;
    }
}
.p-service__cta-body::after {
    content: none;
}
.p-service__group-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
}
@media (max-width: 767px) {
    .p-service__group-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.p-service__group {
    border: 1px solid #08204F;
    height: 100%;
}
@media (min-width: 768px) {
    .p-service__group {
        min-width: 520px;
    }
}
.p-service__group.-blue {
    border: 1px solid #2A61FF;
    color: #2A61FF;
}
.p-service__group.-blue .p-service__group-title {
    background-color: #2A61FF;
}
.p-service__group.-blue .p-service__group-lead {
    color: #2a61ff;
}
.p-service__group.-blue .p-service__group-logo {
    aspect-ratio: 310/67;
}
.p-service__group-title {
    background-color: #08204F;
    text-align: center;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.5;
    padding-block: 1.5px;
}
@media (max-width: 767px) {
    .p-service__group-title {
        font-size: 1rem;
        padding-block: 12.5px;
    }
}
.p-service__group-lead {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.125rem;
    color: #08204F;
    text-align: center;
}
@media (min-width: 768px) {
    .p-service__group-lead {
        white-space: nowrap;
    }
}
.p-service__group-lead + * {
    margin-top: 1.5rem;
}
.p-service__group-content {
    padding: 2rem;
}
@media (max-width: 767px) {
    .p-service__group-content {
        padding: 1.25rem;
    }
}
.p-service__group-logo {
    width: 100%;
    aspect-ratio: 276/54;
    max-width: 400px;
    margin-inline: auto;
}
@media (max-width: 767px) {
    .p-service__group-logo {
        padding: 1rem;
        text-align: center;
    }
}
@media (min-width: 768px) {
    .p-service__group-logo img {
        max-height: 64px;
    }
}
@media (max-width: 767px) {
    .p-service__group-logo img {
        width: 100%;
        max-height: 40px;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
.p-service__group-logo + * {
    margin-top: 1rem;
}
.p-service__group-list {
    border-top: 3px solid #CFCCC6;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content 1.5rem -webkit-max-content;
    -ms-grid-columns: max-content 1.5rem max-content;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    gap: 1rem 1.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 1rem;
}
@media (max-width: 767px) {
    .p-service__group-list {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.p-service__group-list li {
    color: #48545D;
}
.p-service__group-ul {
    border-top: 3px solid #CCD7F7;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content 36px -webkit-max-content;
    -ms-grid-columns: max-content 36px max-content;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    gap: 0 36px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 1rem;
}
@media (max-width: 767px) {
    .p-service__group-ul {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}
.p-service__group-ul li {
    color: #48545D;
    line-height: 1.5;
    font-size: 1.25rem;
    list-style-type: disc;
    margin-left: 2rem;
}
.p-service__group-img {
    width: 100%;
    aspect-ratio: 161/20;
    max-width: 175px;
}
.p-service__group-img.-second {
    aspect-ratio: 161/27;
}
.p-service__group-img.-third {
    aspect-ratio: 161/27;
}
.p-service__partner {
    padding: 5rem;
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
}
@media (max-width: 767px) {
    .p-service__partner {
        padding: 2.5rem 1.25rem;
        margin-right: 0.5rem;
        margin-left: 0.5rem;
        -webkit-box-shadow: 0px 4px 20px -4px rgba(30, 38, 120, 0.1);
                box-shadow: 0px 4px 20px -4px rgba(30, 38, 120, 0.1);
    }
}
.p-service__partner-img {
    width: 100%;
    aspect-ratio: 780/112;
}
.p-service__partner-img + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-service__partner-img + * {
        margin-top: 1.25rem;
    }
}
.p-service__partner-title {
    font-weight: bold;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .p-service__partner-title {
        font-size: 1rem;
    }
}
.p-service__partner-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
}
@media (max-width: 767px) {
    .p-service__partner-flex {
        gap: 1.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.p-service__partner-logo {
    width: 100%;
    aspect-ratio: 520/102;
}
@media (min-width: 768px) {
    .p-service__partner-logo {
        min-width: 520px;
    }
}
.p-service__partner-logo img {
    -o-object-fit: contain;
       object-fit: contain;
}

/* Chrome, Safari, Opera 用 */
.element .element {
    scrollbar-width: none;
    /* Firefox でスクロールバー非表示 */
}

/* IE 10+ 用 */
.element {
    -ms-overflow-style: none;
}

/* 必要に応じて、overflow-y の設定を追加 */
.element {
    overflow-y: scroll;
}

.js-service-scroll.is-fixed {
    overflow: hidden;
}

.p-solution__swiper-arrow {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .p-solution__swiper-arrow {
        max-width: 136px;
    }
}
.p-solution__next, .p-solution__prev {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_circle_right_wht.svg);
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: static;
    margin-top: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.p-solution__next::after, .p-solution__prev::after {
    display: none;
}
.p-solution__next:hover, .p-solution__prev:hover {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_circle_right_pri.svg);
}
.p-solution__prev {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_circle_left_wht.svg);
}
.p-solution__prev:hover {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_circle_left_pri.svg);
}
.p-solution__swiper {
    padding-bottom: 2rem;
}
.p-solution__item {
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    position: relative;
    background-color: #fff;
}
@media (min-width: 768px) {
    .p-solution__item {
        max-width: 600px;
    }
}
.p-solution__item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
.p-solution__img {
    width: 100%;
    aspect-ratio: 600/240;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .p-solution__img {
        min-width: 600px;
    }
}
.p-solution__img img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.p-solution__filter {
    position: absolute;
    inset: 0 auto auto 0;
    background-color: #3c3c3c;
    opacity: 0.7;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.p-solution__title-wrapper {
    position: absolute;
    inset: 50% auto auto 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
}
@media (max-width: 767px) {
    .p-solution__title-wrapper {
        white-space: nowrap;
    }
}
.p-solution__lead {
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    font-size: 0.75rem;
}
.p-solution__lead + * {
    margin-top: 4px;
}
.p-solution__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
}
@media (max-width: 767px) {
    .p-solution__title {
        font-size: 1.125rem;
    }
}
.p-solution__content {
    padding: 2rem 2.5rem 43px 2.5rem;
}
@media (max-width: 767px) {
    .p-solution__content {
        padding: 1.25rem;
    }
}
.p-solution__subtitle {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    padding-top: 2rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-solution__subtitle {
        padding-top: 2rem;
        font-size: 1.125rem;
    }
}
.p-solution__subtitle::before {
    content: "";
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    position: absolute;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_arr_down_gry.png);
    width: 2.5rem;
    height: 1rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.p-solution__subtitle + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-solution__subtitle + * {
        margin-top: 0.875rem;
        font-size: 0.875rem;
    }
}
.p-solution__btn-text {
    text-align: right;
}
.p-solution__btn-text a::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    .p-solution__slide {
        max-width: 600px;
    }
}
@media (max-width: 767px) {
    .p-solution__slide {
        max-width: 320px;
    }
}
.p-solution__swiper-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
}
@media (min-width: 768px) {
    .p-solution__swiper-content {
        min-width: 424px;
    }
}
@media (max-width: 767px) {
    .p-solution__swiper-content {
        width: 100%;
        position: relative;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}
.p-solution__scrollbar {
    width: 100%;
    height: 4px;
    max-width: 240px;
}
@media (min-width: 768px) {
    .p-solution__scrollbar {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        position: static !important;
    }
}
@media (max-width: 767px) {
    .p-solution__scrollbar {
        height: 4px;
        top: 50% !important;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        max-width: 50% !important;
    }
}
.p-solution__scrollbar .swiper-scrollbar-drag {
    background-color: #409AD6 !important;
}
@media (max-width: 767px) {
    .p-solution__scrollbar .swiper-scrollbar-drag {
        position: absolute;
    }
}
.p-solution__header {
    position: relative;
}
.p-solution__swiper-wrapper {
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

.p-features__reason {
    padding: 4rem 7.5rem;
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    background-color: #fff;
    position: relative;
}
@media (max-width: 767px) {
    .p-features__reason {
        padding: 1.1rem;
    }
}
.p-features__reason-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.5rem;
}
@media (min-width: 768px) {
    .p-features__reason-flex {
        padding-inline: 52px;
    }
}
@media (max-width: 767px) {
    .p-features__reason-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }
}
.p-features__reason-flex + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .p-features__reason-flex + * {
        margin-top: 3rem;
    }
}
@media (min-width: 768px) {
    .p-features__reason-content {
        min-width: 480px;
    }
}
.p-features__reason-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 320/330;
}
@media (min-width: 768px) {
    .p-features__reason-img {
        min-width: 320px;
    }
}
@media (max-width: 767px) {
    .p-features__reason-img {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}
.p-features__reason-title {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .p-features__reason-title {
        text-align: center;
    }
}
.p-features__reason-title + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-features__reason-title + * {
        margin-top: 1.5rem;
    }
}
.p-features__reason-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 767px) {
    .p-features__reason-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
}
.p-features__reason-list + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .p-features__reason-list + * {
        margin-top: 2rem;
    }
}
.p-features__reason-detail-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .p-features__reason-detail-wrapper {
        padding-block: 10px;
    }
}
@media (max-width: 767px) {
    .p-features__reason-detail-wrapper {
        gap: 1.25rem;
    }
}
.p-features__reason-detail-wrapper + * {
    margin-top: 26px;
}
@media (max-width: 767px) {
    .p-features__reason-detail-wrapper + * {
        margin-top: 1rem;
    }
}
.p-features__reason-ico {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 60px;
}
.p-features__reason-detail {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.25rem;
}

.p-features__reason-body {
    padding: 2.5rem;
    border: 1px solid #CFCCC6;
}
@media (max-width: 767px) {
    .p-features__reason-body {
        padding: 1.5rem;
    }
}
.p-features__reason-body-title {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 150%;
}
.p-features__reason-body-title + * {
    margin-top: 1.5rem;
}
.p-features__reason-body-desc + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-features__reason-body-img {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .p-features__reason-body-img img {
        max-height: 168px;
        -o-object-fit: contain;
           object-fit: contain;
        width: auto;
    }
}
@media (max-width: 767px) {
    .p-features__reason-body-img img {
        width: 100%;
    }
}
.p-features__reason-body-img + * {
    margin-top: 1.5rem;
}
.p-features__reason-body-subtitle {
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: bold;
    color: #409AD6;
}
.p-features__reason-body-subtitle + * {
    margin-top: 0.5rem;
}
.p-features__reason-body-note {
    font-size: 0.75rem;
    color: #989797;
}
.p-features__reason-body-note + * {
    margin-top: 1.5rem;
}
.p-features__reason-body + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .p-features__reason-body + * {
        margin-top: 3rem;
    }
}

.p-faq__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 2rem 20px;
}
@media (max-width: 767px) {
    .p-faq__list {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.p-faq__item {
    padding: 1rem 3rem 1rem 1.5rem;
    background-color: #fff;
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    cursor: pointer;
}
.p-faq__item.is-active .p-faq__question::after {
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_minus_pri.png);
}
.p-faq__question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: b;
        -ms-flex-align: b;
            align-items: b;
    gap: 1rem;
    position: relative;
    padding-left: calc(21px + 1rem);
    font-weight: bold;
}
@media (max-width: 767px) {
    .p-faq__question {
        font-size: 0.875rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.p-faq__question::before {
    content: "Q";
    color: #409AD6;
    line-height: 1;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 767px) {
    .p-faq__question::before {
        font-size: 1.25rem;
        top: 4px;
    }
}
.p-faq__question::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -1.5rem;
    background-image: url(/wp-content/themes/chuosystem/assets/salesforce/img/ico_plus_pri.png);
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.p-faq__question + * {
    margin-top: 1.25rem;
}
@media (max-width: 767px) {
    .p-faq__question + * {
        margin-top: 1.125ren;
    }
}
.p-faq__answer {
    padding-left: calc(21px + 1rem);
}
.p-faq__answer-wrapper {
    display: none;
}
.p-faq__answer-wrapper.is-active {
    display: block;
}

@media (max-width: 767px) {
    .p-works {
        padding-top: 0.5rem;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}
.p-works__mv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
}
@media (max-width: 767px) {
    .p-works__mv {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }
}
.p-works__mv-video {
    width: 100%;
    height: 100%;
    aspect-ratio: 600/337;
}
@media (min-width: 768px) {
    .p-works__mv-video {
        min-width: 600px;
    }
}
.p-works__mv-video iframe {
    width: 100%;
    height: 100%;
}
.p-works__mv-name {
    font-weight: bold;
    line-height: 1.5;
}
.p-works__mv-name + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-works__mv-name + * {
        margin-top: 1.25rem;
    }
}
.p-works__mv-title {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .p-works__mv-title {
        font-size: 1.125rem;
    }
}
.p-works__mv-title + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-works__mv-title + * {
        margin-top: 1.5rem;
    }
}
.p-works__mv-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem;
}
.p-works__mv-list li {
    padding: 3px 1rem;
    background-color: #409AD6;
    color: #fff;
}
.p-works__slide {
    max-width: 326px;
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem;
    padding-block: 1.5rem;
    background-color: #fff;
}
@media (max-width: 767px) {
    .p-works__slide {
        max-width: 300px;
        padding-inline: 0.5rem;
        -webkit-box-shadow: 0px 4px 20px -4px rgba(30, 38, 120, 0.1);
                box-shadow: 0px 4px 20px -4px rgba(30, 38, 120, 0.1);
    }
}
.p-works__slide:has(img) {
    width: 216px;
    height: 79px;
}
.p-works__name {
    font-weight: bold;
    line-height: 1.5;
    color: #409AD6;
}
@media (max-width: 767px) {
    .p-works__name {
        text-align: center;
    }
}
.p-works__company {
    line-height: 1.5;
    font-size: 0.75rem;
}
@media (max-width: 767px) {
    .p-works__company {
        letter-spacing: 0;
    }
}
.p-works__swiper {
    padding-top: 1.75rem;
    padding-bottom: 1rem;
}
.p-works__swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
}
.p-works__swiper + .p-works__swiper {
    padding-top: 1rem;
    padding-bottom: 1.75rem;
}
.p-works__swiper-wrapper {
    margin-inline: calc(50% - 50vw);
}
@media (max-width: 1232px) {
    .p-works__swiper-wrapper {
        margin-inline: -1rem;
    }
}
@media (max-width: 767px) {
    .p-works__swiper-wrapper {
        margin-inline: -1.25rem;
    }
}
.p-works__swiper-wrapper + * {
    margin-top: 1.75rem;
}
@media (min-width: 768px) {
    .p-works__swiper-inner {
        margin-right: calc(50% - 50vw);
        width: 100vw;
    }
}
.p-works__company-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (min-width: 768px) {
    .p-works__company-list {
        padding-inline: 5rem;
    }
}
@media (max-width: 767px) {
    .p-works__company-list {
        -ms-grid-columns: 1fr 1.25rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.p-first__flex {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
@media (max-width: 767px) {
    .p-first__flex {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}
.p-first__item {
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    padding: 3.5rem;
    text-align: center;
    position: relative;
}
@media (max-width: 767px) {
    .p-first__item {
        padding: 1.5rem 1.25rem;
    }
}
.p-first__item.is-current {
    opacity: 0.5;
}
.p-first__img {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 3.5rem;
    margin-inline: auto;
}
.p-first__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-first__img + * {
        margin-top: 1.25rem;
    }
}
.p-first__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .p-first__title {
        gap: 1.25rem;
        font-size: 1.5rem;
    }
}
.p-first__title::before, .p-first__title::after {
    content: "";
    width: 1.5rem;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(#409AD6), to(#1E2678));
    background: linear-gradient(90deg, #409AD6 0%, #1E2678 100%);
}
.p-first__title + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-first__title + * {
        margin-top: 1.5rem;
        text-align: left;
    }
}
.p-first__btn a {
    font-weight: bold;
}
.p-first__btn a::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
}
.p-first__btn a.is-current {
    pointer-events: none;
}
.p-first__flow {
    counter-reset: item;
}
@media (min-width: 768px) {
    .p-first__flow {
        padding-inline: 7.5rem;
    }
}
.p-first__flow-item {
    position: relative;
}
.p-first__flow-item + * {
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .p-first__flow-item + * {
        margin-top: 3rem;
    }
}
.p-first__flow-item::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 100%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
}
.p-first__flow-item:last-child::after {
    display: none;
}
.p-first__flow-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    font-weight: bold;
    color: #409AD6;
    line-height: 1.5;
    font-size: 1.25rem;
}
.p-first__flow-step::after {
    content: "0" counter(item);
    counter-increment: item;
    font-size: 2.5rem;
}
.p-first__flow-step + * {
    margin-top: 0.5rem;
}
.p-first__flow-box {
    -webkit-box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
            box-shadow: 4px 4px 30px 0px rgba(30, 38, 120, 0.1);
    padding: 2.5rem 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
}
@media (max-width: 767px) {
    .p-first__flow-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
}
.p-first__flow-img {
    width: 100%;
    aspect-ratio: 56/56;
    max-width: 56px;
    margin-inline: auto;
}
.p-first__flow-img + * {
    margin-top: 0.5rem;
}
.p-first__flow-title {
    font-weight: bold;
    color: #409AD6;
    line-height: 1.5;
    text-align: center;
    font-size: 1.25rem;
}
.p-first__flow-img-wrapper {
    min-width: 174px;
}
.p-first__flow-btn.c-btn-cta {
    margin-left: 0;
}
.p-first__flow-btn.c-btn-cta a {
    padding: 16.5px 50px;
}

* + .p-first__btn {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    * + .p-first__btn {
        margin-top: 1rem;
    }
}