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

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: #222;
    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(1408px + 2rem);
    letter-spacing: 0.04em;
    width: 100%;
}
@media (min-width: 768px) {
    body {
        padding-top: 170px;
    }
}
body.is-loaded * {
    -webkit-transition: none !important;
    transition: none !important;
}
@media (max-width: 767px) {
    body {
        min-width: auto;
        overflow-x: hidden;
        padding-top: 64px;
    }
}

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

p {
    letter-spacing: 0.04em;
}

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: #DE0105;
}

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: #4B4B4B;
}

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

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

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

::placeholder {
    /* Others */
    color: #4B4B4B;
}

::-moz-selection {
    background: #DE0105;
    color: #fff;
}

::selection {
    background: #DE0105;
    color: #fff;
}

::-moz-selection {
    background: #DE0105;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

.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-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
            perspective: 1200px;
}

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

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

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

.swiper-3d .swiper-slide-shadow-left {
    background-image: -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-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

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

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

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

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

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

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

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

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

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

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    -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: 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:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

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

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

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

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

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

.swiper-pagination {
    position: absolute;
    text-align: center;
    -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: 10px;
    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: 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: 10px;
    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-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -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: 4px;
    left: 0;
    top: 0;
}

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

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

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

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

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

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

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

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

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

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -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;
}

.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 .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,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-cube {
    overflow: visible;
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -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-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

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

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

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

.swiper-flip {
    overflow: visible;
}

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

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

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

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

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -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-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 {
    position: relative;
    /*固定ヘッダーの時にこちらのクラスを付ける*/
}
.l-header::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: 100%;
    position: absolute;
    z-index: -5;
    top: 0;
    left: 0;
}
@media (min-width: 768px) {
    .l-header {
        height: 170px;
    }
    .l-header::before {
        content: "";
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        display: block;
        background-color: #D0D0D0;
        width: 100%;
        height: 1px;
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        margin-top: 74px;
    }
}
@media (min-width: 768px) {
    .l-header.is-scroll-down {
        height: 54px;
    }
    .l-header.is-scroll-down::before {
        margin-top: 53px;
        opacity: 0;
    }
}
.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.is-active {
    background-color: #fff;
    z-index: 100000;
}
.l-header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 2rem;
}
@media (max-width: 767px) {
    .l-header__inner {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
        height: 64px;
    }
}
.l-header__logo-wrapper {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
    .l-header__logo-wrapper {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 1.75rem;
    }
}
@media (min-width: 768px) {
    .l-header.is-scroll-down .l-header__logo-wrapper {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: start;
        padding-top: 0;
    }
}
.l-header__logo-text {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 0.6875rem;
}
.l-header.is-scroll-down .l-header__logo-text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
}
.l-header__logo {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
    .l-header__logo {
        -webkit-transform: translateY(0.625rem);
                transform: translateY(0.625rem);
    }
}
@media (max-width: 767px) {
    .l-header__logo img {
        width: auto;
        max-height: 32px;
    }
}
.l-header__logo img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
    .l-header.is-scroll-down .l-header__logo {
        -webkit-transform: translateY(0.5rem);
                transform: translateY(0.5rem);
    }
}
@media (min-width: 768px) {
    .l-header.is-scroll-down .l-header__logo img {
        width: auto;
        max-height: 38px;
    }
}
.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 (min-width: 768px) {
    .l-header__link-contact {
        margin-right: -2.5rem;
    }
}
.l-header__link-contact + * {
    margin-top: 2.375rem;
}
@media (max-width: 767px) {
    .l-header__link-contact {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-top: 0.875rem;
    }
}
.l-header__link-contact > * + * {
    margin-left: 1.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: 1rem;
    }
}
@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;
}
@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: 64px;
    }
}
.l-header__menu.is-active {
    background-color: #F7F7F7;
    -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;
    }
}
@media (min-width: 768px) {
    .l-header.is-scroll-down .l-header__gnav {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        height: 0;
    }
}
.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;
}
@media (max-width: 767px) {
    .l-header__menu-list {
        display: block;
    }
}
.l-header__menu-list li + li {
    margin-left: 1.5rem;
}
@media (max-width: 767px) {
    .l-header__menu-list li + li {
        margin: 0;
    }
}
.l-header__menu-list li a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    font-weight: bold;
}
@media (max-width: 767px) {
    .l-header__menu-list li a {
        display: block;
        text-align: center;
        padding: 0.75rem 0;
    }
}
.l-header__menu-list li a::after {
    content: "";
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    background-color: #DE0105;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
}
@media (min-width: 768px) {
    .l-header__menu-list li a::after {
        margin-bottom: -0.25rem;
    }
}
@media (max-width: 767px) {
    .l-header__menu-list li a::after {
        background-color: #D0D0D0;
        height: 1px;
        width: 100%;
    }
}
.l-header__menu-list li a[class] {
    color: #DE0105;
}
.l-header__menu-list li a[class]::after {
    left: 0;
    right: auto;
    width: 100%;
    display: none;
}
@media (max-width: 767px) {
    .l-header__menu-list li a[class]::after {
        display: block;
        background-color: #DE0105;
        height: 2px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}
@media (min-width: 768px) {
    .l-header__menu-list li a:hover {
        color: #DE0105;
        text-decoration: none;
    }
    .l-header__menu-list li a:hover::after {
        left: 0;
        right: auto;
        width: 100%;
        display: none;
    }
}
.l-header__menu-list li a.-contact a {
    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: 0 0.5rem;
    font-weight: bold;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    background: #DE0105;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #DE0105), color-stop(50%, #222));
    background-image: linear-gradient(to right, #DE0105 50%, #222 50%);
    background-size: 200% auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.l-header__menu-list li a.-contact a::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_contact_wht.svg);
    background-size: 100%;
}
@media (min-width: 768px) {
    .l-header__menu-list li a.-contact a:hover {
        background-position: -100% 0;
        color: #fff;
    }
}
.l-header__link-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.l-header__link-list li + li {
    margin-left: 1rem;
}
.l-header__link-list li a {
    font-size: 0.875rem;
}
@media (min-width: 768px) {
    .l-header__link-list li a:hover {
        text-decoration: underline;
    }
}
.l-header__link-list li a[target=_blank] {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}
.l-header__link-list li a[target=_blank]::after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    background-position: center center;
    background-image: url(../img/ico_blank.svg);
    background-size: 100%;
}
@media (max-width: 767px) {
    .l-header__link-list {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .l-header__link-list li + li {
        margin-left: 1rem;
    }
    .l-header__link-list li a {
        display: block;
        padding: 0.5rem;
    }
}
@media (min-width: 768px) {
    .l-header.is-scroll-down .l-header__btn-list li a {
        height: 54px;
    }
}
@media (max-width: 767px) {
    .l-header__btn-list {
        display: block;
        margin: 0;
    }
}
.l-header__btn-list li a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #DE0105;
    text-align: center;
    font-weight: bold;
    font-size: 0.875rem;
    padding: 1rem 1rem;
}
@media (min-width: 768px) {
    .l-header__btn-list li a {
        width: 8.5rem;
        height: 74px;
    }
}
.l-header__btn-list li a:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    .l-header__btn-list li a {
        font-size: 1.125rem;
        padding: 0.875rem 0;
    }
    .l-header__btn-list li a br {
        display: none;
    }
}
.l-header__btn-list li.-gry a {
    background-color: #4B4B4B;
}
.l-header__btn-list li.-blk a {
    background-color: #222;
}
@media (max-width: 767px) {
    .l-header__btn-list li + li {
        margin: 0.5rem 0 0 0;
    }
}
.l-header__btn-list[class] li a {
    color: #fff;
}
@media (min-width: 768px) {
    .l-header__contact, .l-footer__contact {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .l-header__contact > * + *, .l-footer__contact > * + * {
        margin-left: 0.5rem;
    }
}
@media (max-width: 767px) {
    .l-header__contact, .l-footer__contact {
        text-align: center;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}
.l-header__contact-tel, .l-footer__contact-tel {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.25rem;
}
.l-header__contact-tel a, .l-footer__contact-tel a {
    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: 0 0.375rem;
}
.l-header__contact-tel a::before, .l-footer__contact-tel a::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_tel_pri.svg);
    background-size: 100%;
}
@media (max-width: 767px) {
    .l-header__contact-tel a::before, .l-footer__contact-tel a::before {
        width: 1.5rem;
        height: 1.5rem;
    }
}
@media (max-width: 767px) {
    .l-header__contact-tel, .l-footer__contact-tel {
        font-size: 1.625rem;
    }
}
.l-header__contact-time, .l-footer__contact-time {
    line-height: 1.5;
    font-size: 0.625rem;
}
@media (max-width: 767px) {
    .l-header__contact-time, .l-footer__contact-time {
        font-size: 0.75rem;
    }
}
.l-header__trigger {
    display: table;
    width: 1.75rem;
    height: 1.75rem;
}
.l-header__trigger-btn {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.l-header__trigger-btn > * {
    display: block;
    -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: #DE0105;
    font-size: 0;
    color: transparent;
    width: 1.75rem;
    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: #DE0105;
    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);
}

.c-dropmenu {
    background-color: #F7F7F7;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 87px;
    left: 0;
}
@media (min-width: 768px) {
    .c-dropmenu:hover {
        -webkit-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out;
    }
}
@media (max-width: 767px) {
    .c-dropmenu {
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
}
@media (min-width: 768px) {
    .c-dropmenu {
        z-index: 950;
        margin-top: 69px;
    }
}
@media (max-width: 767px) {
    .c-dropmenu {
        z-index: 980;
        background-color: #F7F7F7;
        padding-top: calc(64px + 0.25rem);
        padding-bottom: 1.5rem;
        height: 100vh;
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
}
.c-dropmenu::before {
    content: "";
    display: none;
    background-color: #fff;
    height: 64px;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}
@media (max-width: 767px) {
    .c-dropmenu::before {
        display: block;
    }
}
@media (min-width: 768px) {
    .c-dropmenu.is-active {
        -webkit-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out;
    }
}
@media (max-width: 767px) {
    .c-dropmenu.is-active {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
.c-dropmenu.is-active {
    opacity: 1;
    visibility: inherit;
    z-index: 999999;
}
.c-dropmenu__inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
@media (min-width: 768px) {
    .c-dropmenu__header + * {
        margin-top: 2rem;
    }
}
@media (max-width: 767px) {
    .c-dropmenu__header + * {
        margin-top: 1rem;
    }
}
@media (min-width: 768px) {
    .c-dropmenu__body {
        -ms-flex-negative: 1;
            flex-shrink: 1;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
}
.c-dropmenu__footer {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    margin-left: 1.25rem;
    margin-top: 1rem;
}
.c-dropmenu__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -2rem 0 0 -1.875rem;
}
@media (max-width: 767px) {
    .c-dropmenu__list {
        margin: -1rem 0 0 -1rem;
    }
}
.c-dropmenu__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-preferred-size: calc(25% - 1.875rem);
        flex-basis: calc(25% - 1.875rem);
    max-width: calc(25% - 1.875rem);
    margin: 2rem 0 0 1.875rem;
}
@media (max-width: 767px) {
    .c-dropmenu__item {
        -ms-flex-preferred-size: calc(50% - 1rem);
            flex-basis: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        margin: 1rem 0 0 1rem;
    }
}
@media (max-width: 767px) {
    .c-dropmenu__item.-no-link {
        -ms-flex-preferred-size: calc(100% - 1rem);
            flex-basis: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
    }
}
.c-dropmenu__item.-no-link:hover {
    opacity: 1;
    cursor: inherit;
}
.c-dropmenu__title {
    border-bottom: 1px solid #4B4B4B;
    line-height: 1.4;
    font-weight: bold;
    font-size: 1.5rem;
    padding-bottom: 1.375rem;
}
@media (max-width: 767px) {
    .c-dropmenu__title {
        font-size: 1.125rem;
        padding-bottom: 1rem;
    }
}
.c-dropmenu__title a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #222;
    text-decoration: none;
    background-repeat: no-repeat;
    background-size: 2.5rem auto;
    background-position: right center;
    background-image: url(../img/ico_arr_circle_blk.svg);
    padding: 1rem 3.375rem 1rem 0;
}
@media (max-width: 767px) {
    .c-dropmenu__title a {
        background-size: 2.25rem auto;
        padding-right: 3.125rem;
    }
}
@media (min-width: 768px) {
    .c-dropmenu__title a:hover {
        color: #DE0105;
    }
}
.c-dropmenu__headline {
    position: relative;
    font-weight: bold;
    color: #DE0105;
    font-size: 1.125rem;
}
@media (max-width: 767px) {
    .c-dropmenu__headline {
        font-size: 1rem;
    }
}
.c-dropmenu__headline + * {
    margin-top: 0.75rem;
}
@media (max-width: 767px) {
    .c-dropmenu__headline + * {
        margin-top: 0.5rem;
    }
}
* + .c-dropmenu__headline {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    * + .c-dropmenu__headline {
        margin-top: 1rem;
    }
}
.c-dropmenu__headline.-simple {
    color: #222;
    font-size: 1rem;
}
@media (min-width: 768px) {
    .c-dropmenu__headline.-simple + * {
        margin-top: 1rem;
    }
}
.c-dropmenu__headline.-simple a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
@media (min-width: 768px) {
    .c-dropmenu__headline.-simple a:hover {
        color: #DE0105;
    }
}
.c-dropmenu__img {
    position: relative;
    aspect-ratio: 380/180;
}
.c-dropmenu__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.c-dropmenu__img + * {
    margin-top: 0.75rem;
}
.c-dropmenu__link {
    font-weight: bold;
    font-size: 1rem;
}
@media (max-width: 767px) {
    .c-dropmenu__link {
        font-size: 0.875rem;
    }
}
.c-dropmenu__link a {
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    background-repeat: no-repeat;
    background-size: 7px auto;
    background-position: left 0.375rem;
    background-image: url(../img/ico_arr_right_pri.svg);
    padding-left: 1.125rem;
}
@media (max-width: 767px) {
    .c-dropmenu__link a {
        background-position: left 0.25rem;
        background-size: 0.375rem auto;
        padding-left: 1rem;
    }
}
.c-dropmenu__link a:hover {
    text-decoration: none;
}
@media (min-width: 768px) {
    .c-dropmenu__link a:hover {
        color: #DE0105;
    }
}
.c-dropmenu__link-list {
    list-style: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -0.5rem 0 0 -1.5rem;
    padding-top: 1px;
}
@media (max-width: 767px) {
    .c-dropmenu__link-list {
        margin: -0.5rem 0 0 -1rem;
    }
}
.c-dropmenu__link-list li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-preferred-size: calc(50% - 1.5rem);
        flex-basis: calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
    margin: 0.5rem 0 0 1.5rem;
}
@media (max-width: 767px) {
    .c-dropmenu__link-list li {
        -ms-flex-preferred-size: calc(33.3333333333% - 1rem);
            flex-basis: calc(33.3333333333% - 1rem);
        max-width: calc(33.3333333333% - 1rem);
        margin: 0.5rem 0 0 1rem;
    }
}
.c-dropmenu__link-list li a {
    font-size: 0.875rem;
}
@media (max-width: 767px) {
    .c-dropmenu__link-list li a {
        display: inline-block;
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
}
.c-dropmenu__link-list li a::after {
    display: none;
}
.c-dropmenu__trigger-btn {
    padding: 0.5rem 0 0 1.25rem;
}
.c-dropmenu__trigger-btn::before {
    content: "";
    display: block;
    border-bottom: 2px solid #222;
    border-right: 2px solid #222;
    width: 0.5125rem;
    height: 0.5125rem;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    -webkit-transform: rotate(135deg) translateY(-50%);
            transform: rotate(135deg) translateY(-50%);
    margin-top: -0.25rem;
}

.c-dropmenu:hover ~ .c-mask,
.c-dropmenu.is-active ~ .c-mask {
    opacity: 1;
    visibility: inherit;
}

@media (min-width: 768px) {
    .c-dropmenu {
        pointer-events: none;
    }
    .c-dropmenu.is-active {
        pointer-events: auto;
    }
}

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

body[data-page-type=form] .l-header__link, body[data-page-type=form] .l-header__trigger, body[data-page-type=form] .l-header__gnav {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.l-footer[class] a {
    text-decoration: none;
}
.l-footer__logo-address + * {
    margin-top: 4rem;
}
@media (min-width: 768px) {
    .l-footer__logo-wrapper {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5rem;
    }
}
.l-footer__logo-text {
    font-weight: bold;
    font-size: 0.875rem;
}
@media (max-width: 767px) {
    .l-footer__logo-text {
        text-align: center;
    }
}
.l-footer__cv {
    background-color: #303030;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.l-footer__site {
    background-color: #F1F1F1;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}
@media (max-width: 767px) {
    .l-footer__site {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}
@media (max-width: 767px) {
    .l-footer__logo a {
        display: block;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .l-footer__logo img {
        width: auto;
        max-height: 32px;
    }
}
* + .l-footer__address {
    margin-top: 2rem;
}
.l-footer__address + * {
    margin-top: 0.25rem;
}
@media (max-width: 767px) {
    .l-footer__address {
        text-align: center;
    }
}
@media (min-width: 768px) {
    .l-footer__sitemap, .p-sitemap-list__sitemap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 3rem;
    }
}
.l-footer__sitemap + .l-footer__sitemap, .p-sitemap-list__sitemap + .l-footer__sitemap, .l-footer__sitemap + .p-sitemap-list__sitemap, .p-sitemap-list__sitemap + .p-sitemap-list__sitemap {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .l-footer__sitemap + .l-footer__sitemap, .p-sitemap-list__sitemap + .l-footer__sitemap, .l-footer__sitemap + .p-sitemap-list__sitemap, .p-sitemap-list__sitemap + .p-sitemap-list__sitemap {
        margin-top: 1.75rem;
    }
}
@media (min-width: 768px) {
    .l-footer__sitemap-list, .p-sitemap-list__sitemap-list {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(33.3333333333% - 2rem);
            flex-basis: calc(33.3333333333% - 2rem);
        max-width: calc(33.3333333333% - 2rem);
    }
}
@media (max-width: 767px) {
    .l-footer__sitemap-list + .l-footer__sitemap-list, .p-sitemap-list__sitemap-list + .l-footer__sitemap-list, .l-footer__sitemap-list + .p-sitemap-list__sitemap-list, .p-sitemap-list__sitemap-list + .p-sitemap-list__sitemap-list {
        margin-top: 1.75rem;
    }
}
.l-footer__sitemap-list[class] li a, [class].p-sitemap-list__sitemap-list li a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    position: relative;
    font-weight: bold;
}
.l-footer__sitemap-list[class] li a:hover, [class].p-sitemap-list__sitemap-list li a:hover {
    text-decoration: none;
    color: #DE0105;
}
.l-footer__sitemap-list[class] li a[target=_blank], [class].p-sitemap-list__sitemap-list li a[target=_blank] {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}
.l-footer__sitemap-list[class] li a[target=_blank]::before, [class].p-sitemap-list__sitemap-list li a[target=_blank]::before {
    width: 1rem;
    height: 1rem;
    background-image: url(../img/ico_blank_pri.svg);
    background-size: 100%;
}
.l-footer__sitemap-list > li, .p-sitemap-list__sitemap-list > li {
    display: block;
}
.l-footer__sitemap-list > li > a, .p-sitemap-list__sitemap-list > li > a {
    border-bottom: 1px solid #D0D0D0;
    display: block;
    padding-bottom: 1.5rem;
}
.l-footer__sitemap-list > li > a::before, .p-sitemap-list__sitemap-list > li > a::before {
    content: "";
    display: block;
    top: 50%;
    right: 0;
    width: 1rem;
    height: 0.75rem;
    position: absolute;
    margin-top: -1.25rem;
    background-repeat: no-repeat;
    background-size: 1rem auto;
    background-image: url(../img/ico_arr_right_pri.svg);
}
.l-footer__sitemap-list ul[class], .p-sitemap-list__sitemap-list ul[class] {
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
    .l-footer__sitemap-list ul[class], .p-sitemap-list__sitemap-list ul[class] {
        padding-bottom: 1rem;
    }
}
.l-footer__sitemap-list ul[class] li a, .p-sitemap-list__sitemap-list ul[class] li a {
    position: relative;
    font-size: 0.875rem;
    color: #888;
    padding-left: 1rem;
}
.l-footer__sitemap-list ul[class] li a + *, .p-sitemap-list__sitemap-list ul[class] li a + * {
    margin-top: 0.75rem;
}
.l-footer__sitemap-list ul[class] li a::before, .p-sitemap-list__sitemap-list ul[class] li a::before {
    content: "";
    display: block;
    background-color: #DE0105;
    width: 0.5rem;
    height: 2px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
}
.l-footer__sitemap-list ul[class] li.-subtitle > a, .p-sitemap-list__sitemap-list ul[class] li.-subtitle > a {
    display: block;
    pointer-events: none;
    font-size: 1rem;
    color: #222;
    padding-left: 0;
}
.l-footer__sitemap-list ul[class] li.-subtitle > a::before, .p-sitemap-list__sitemap-list ul[class] li.-subtitle > a::before {
    display: none;
}
.l-footer__sitemap-list ul[class] li + li, .p-sitemap-list__sitemap-list ul[class] li + li {
    margin-top: 0.75rem;
}
.l-footer__sitemap-list > li + li, .p-sitemap-list__sitemap-list > li + li {
    margin-top: 1.75rem;
}
.l-footer__sitemap-list.-sm li, .-sm.p-sitemap-list__sitemap-list li {
    font-size: 0.875rem;
}
.l-footer__info {
    background-color: #303030;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
@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;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (max-width: 767px) {
    .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 a {
    color: #fff;
    font-size: 0.75rem;
}
.l-footer__link-list li + li {
    margin-left: 1.5rem;
}
.l-footer__copyright {
    color: #fff;
    font-size: 0.75rem;
}
@media (max-width: 767px) {
    .l-footer__copyright {
        text-align: center;
    }
}

body[data-page-type=form] .l-footer .c-cta,
body[data-page-type=form] .l-footer .c-cta-test, body[data-page-type=form] .l-footer__link, body[data-page-type=form] .l-footer__sitemap, body[data-page-type=form] .p-sitemap-list__sitemap, body[data-page-type=form] .l-footer__cv {
    display: none;
}
body[data-page-type=form] .l-footer__contact, body[data-page-type=form] .l-footer__logo-wrapper, 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;
}

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

.l-main + * {
    margin-top: 7.5rem;
}
@media (max-width: 767px) {
    .l-main + * {
        margin-top: 5rem;
    }
}
@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% - 300px);
            flex-basis: calc(100% - 300px);
        max-width: calc(100% - 300px);
        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: 300px;
            flex-basis: 300px;
        max-width: 300px;
    }
}
@media (max-width: 767px) {
    .l-main__sidebar {
        margin-top: 4rem;
    }
}

/* =====================================
 * extend用のclassをここに集約
 * ================================== */
.c-hover, .c-pagetop__btn, .c-btn[class] > *:not(p), .c-sidebar__cat-list li a, .c-sidebar__bnr-item > *, .l-header__logo > *, .l-header__btn-list li a, .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[class] > :hover:not(p), .c-sidebar__cat-list li a:hover, .c-sidebar__bnr-item > :hover, .l-header__logo > :hover, .l-header__btn-list li a:hover, .l-footer__logo > :hover {
        cursor: pointer;
        text-decoration: none !important;
        opacity: 0.84;
    }
}

.c-img, .p-product-list__img, .p-search-contents__img, .p-search-feature__img, .p-search-product__img, .p-search-mv__img, .p-service-system__img, .p-service-card__img, .p-service-introduction__img, .p-service__item-img, .p-news-detail__img, .p-blog-list__img, .p-home-newsblog .p-blog-list__img, .c-flow__img, .c-item__img, .c-information__img, .c-container__img, .c-other-link__img, .c-table__container-img, .c-sidebar__rank-img {
    aspect-ratio: 16/9;
}
.c-img img, .p-product-list__img img, .p-search-contents__img img, .p-search-feature__img img, .p-search-product__img img, .p-search-mv__img img, .p-service-system__img img, .p-service-card__img img, .p-service-introduction__img img, .p-service__item-img img, .p-news-detail__img img, .p-blog-list__img img, .p-home-newsblog .p-blog-list__img img, .c-flow__img img, .c-item__img img, .c-information__img img, .c-container__img img, .c-other-link__img img, .c-table__container-img img, .c-sidebar__rank-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}

.c-no-img, .c-dropmenu__img {
    position: relative;
}
.c-no-img::before, .c-dropmenu__img::before {
    content: "";
    display: block;
    background-color: #F7F7F7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -20;
    pointer-events: none;
}
.c-no-img::after, .c-dropmenu__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;
}
.c-no-img.p-case-list__img::before, .p-case-list__img.c-dropmenu__img::before {
    background-color: #fff;
}

.c-all-link, .p-home-howto__item, .p-service__item {
    position: relative;
}
.c-all-link a::after, .p-home-howto__item a::after, .p-service__item a::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* =====================================
 * スマホでメニューを展開状態になった時に、その下にマスクを敷く
 * ================================== */
@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: 4rem;
}
@media (max-width: 767px) {
    .c-sidebar__section + .c-sidebar__section {
        margin-top: 2.5rem;
    }
}
.c-sidebar__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.25rem;
}
.c-sidebar__title + * {
    margin-top: 1.5rem;
}
.c-sidebar__bnr-item + .c-sidebar__bnr-item {
    margin-top: 1rem;
}
.c-sidebar__rank-meta {
    font-weight: bold;
    font-size: 13px;
    color: #888888;
}
.c-sidebar__rank-meta + * {
    margin-top: 4px;
}
.c-sidebar__rank-title a {
    font-size: 0.875rem;
    text-decoration: none;
}
.c-sidebar__rank-title a:hover {
    text-decoration: underline;
}
.c-sidebar__rank-title a::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
}
.c-sidebar__rank-img {
    aspect-ratio: 120/74;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-preferred-size: 7.5rem;
        flex-basis: 7.5rem;
    max-width: 7.5rem;
}
.c-sidebar__rank-img img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-sidebar__rank-text {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.c-sidebar__rank-item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}
.c-sidebar__rank-item {
    position: relative;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
    .c-sidebar__rank-item {
        padding-bottom: 1.25rem;
    }
}
.c-sidebar__rank-item + * {
    padding-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-sidebar__rank-item + * {
        padding-top: 1.25rem;
    }
}
.c-sidebar__rank-item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
.c-sidebar__cat-list li a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: block;
    text-decoration: none;
    border: 1px solid #DE0105;
    line-height: 1.5;
    color: #DE0105;
    text-align: center;
    font-weight: bold;
    padding: 1rem 4rem;
    border-radius: 5rem;
}
@media (max-width: 767px) {
    .c-sidebar__cat-list li a {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.c-sidebar__cat-list li a:after {
    content: "";
    display: block;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_arr_right_pri.svg);
    background-size: 100%;
    width: 1rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 2rem;
}
@media (max-width: 767px) {
    .c-sidebar__cat-list li a:after {
        margin-right: 1.125rem;
    }
}
@media (min-width: 768px) {
    .c-sidebar__cat-list li a:hover {
        background-color: #DE0105;
        color: #fff;
    }
    .c-sidebar__cat-list li a:hover::after {
        background-image: url(../img/ico_arr_right_wht.svg);
    }
}
.c-sidebar__cat-list li + * {
    margin-top: 10px;
}
@media (max-width: 767px) {
    .c-sidebar__cat-list li + * {
        margin-top: 8px;
    }
}

.c-cat01__list li > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-bottom: 1px solid #4B4B4B;
    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: #F7F7F7;
    }
}
.c-cat01__list li:first-child > * {
    border-top: 1px solid #4B4B4B;
}

.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: #F7F7F7;
    padding: 0.25rem 0.5rem;
}

* + .c-pager[class] {
    margin-top: 7.5rem;
}
@media (max-width: 767px) {
    * + .c-pager[class] {
        margin-top: 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] > * {
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    border: 1px solid #DE0105;
    text-align: center;
    font-weight: bold;
    color: #DE0105;
    height: 3rem;
    width: 3rem;
    padding-top: 0.625rem;
    text-decoration: none;
}
.c-pager__item[class] > *:hover {
    text-decoration: none;
}
@media (min-width: 768px) {
    .c-pager__item[class] > *:hover {
        border-color: #DE0105;
        background-color: #DE0105;
        color: #fff;
    }
}
.c-pager__item[class] span {
    border-color: #DE0105;
    background-color: #DE0105;
    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_left02_pri.svg);
}
.c-pager__item[class].-prev > *:hover {
    background-image: url(../img/ico_arr_left02_wht.svg);
}
.c-pager__item[class].-next > * {
    background-image: url(../img/ico_arr_right02_pri.svg);
}
.c-pager__item[class].-next > *:hover {
    background-image: url(../img/ico_arr_right02_wht.svg);
}
.c-pager__item + .c-pager__item {
    margin-left: 0.5rem;
}

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

.c-headline-en {
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    color: #DE0105;
    font-weight: bold;
    display: inline-block;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .c-headline-en {
        letter-spacing: 0.035rem;
    }
}
.c-headline-en + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .c-headline-en + * {
        margin-top: 10px;
    }
}
.c-headline-en::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 3rem;
    height: 1px;
    background-color: #DE0105;
}
.c-headline-main {
    font-size: 3rem;
    line-height: 150%;
    font-weight: bold;
    letter-spacing: 0.12rem;
}
@media (max-width: 767px) {
    .c-headline-main {
        font-size: 2rem;
    }
}
.c-headline-main + * {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .c-headline-main + * {
        margin-top: 35px;
    }
}
.c-headline-main + * + .c-headline-desc {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .c-headline-main + * + .c-headline-desc {
        margin-top: 35px;
    }
}
.c-headline-desc {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.08rem;
}
.c-headline-desc + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .c-headline-desc + * {
        margin-top: 19px;
    }
}
.c-headline-text {
    line-height: 2;
}
.c-headline-text + * {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .c-headline-text + * {
        margin-top: 35px;
    }
}

.c-headline-number {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
.c-headline-number.-center {
    display: block;
    text-align: center;
}
.c-headline-number__sub {
    font-size: 0.875rem;
    line-height: 100%;
    letter-spacing: 0.1em;
    font-weight: bold;
}
@media (max-width: 767px) {
    .c-headline-number__sub {
        font-size: 0.75rem;
    }
}
.c-headline-number__sub.-md {
    font-size: 1rem;
}
.c-headline-number__main {
    font-size: 2.5rem;
    line-height: 100%;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.25rem;
    margin-top: 0.25rem;
}
@media (max-width: 767px) {
    .c-headline-number__main {
        font-size: 2rem;
        text-align: center;
    }
}
.c-headline-number.-sm .c-headline-number__sub {
    font-size: 0.75rem;
}
.c-headline-number.-sm .c-headline-number__main {
    font-size: 2rem;
    text-align: center;
}

.c-headline03 {
    position: relative;
    font-size: 1.5rem;
    padding-left: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .c-headline03 {
        font-size: 1.85rem;
    }
}
.c-headline03::before {
    content: "";
    display: block;
    background-color: #DE0105;
    width: 4px;
    height: calc(100% - 0.25em);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.c-headline03 + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .c-headline03 + * {
        margin-top: 1.5rem;
    }
}

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

.toc_transparent {
    background-color: #F7F7F7;
    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: #222;
}
.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] + .c-btn[class] {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .c-btn[class] + .c-btn[class] {
        margin-top: 10px;
    }
}
.c-btn[class].-lg {
    max-width: 100%;
}
.c-btn[class] > *:not(p) {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: block;
    text-decoration: none;
    border: 1px solid #DE0105;
    line-height: 1.5;
    color: #DE0105;
    text-align: center;
    font-weight: bold;
    padding: calc(1.75rem - 1px) 4rem;
    border-radius: 5rem;
}
@media (max-width: 767px) {
    .c-btn[class] > *:not(p) {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.c-btn[class] > *:not(p):after {
    content: "";
    display: block;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_arr_right_pri.svg);
    background-size: 100%;
    width: 1rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 2rem;
}
@media (max-width: 767px) {
    .c-btn[class] > *:not(p):after {
        margin-right: 1.125rem;
    }
}
@media (min-width: 768px) {
    .c-btn[class] > *:not(p):hover {
        background-color: #DE0105;
        color: #fff;
    }
    .c-btn[class] > *:not(p):hover::after {
        background-image: url(../img/ico_arr_right_wht.svg);
    }
}
@media (min-width: 768px) {
    .c-btn[class].is-max-height > *:not(p) {
        padding-top: 1rem;
        padding-bottom: calc(1rem - 1px);
    }
}
@media (min-width: 768px) {
    .c-btn[class] > *.is-max-height {
        padding-top: 1rem;
        padding-bottom: calc(1rem - 1px);
    }
}
.c-btn[class].-submit > *:not(p) {
    padding: 0;
}
.c-btn[class].-submit > *:not(p) input[type=submit] {
    width: 100%;
    border: 1px solid #DE0105;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    padding: calc(1.75rem - 1px) 4rem;
    border-radius: 5rem;
}
@media (max-width: 767px) {
    .c-btn[class].-submit > *:not(p) input[type=submit] {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.c-btn[class].-wht > *:not(p) {
    color: #fff;
    border-color: #fff;
}
.c-btn[class].-wht > *:not(p)::after {
    background-image: url(../img/ico_arr_right_wht.svg);
}
.c-btn[class].-wht > *:not(p):hover {
    background-color: #fff;
    color: #DE0105;
    opacity: 1;
}
.c-btn[class].-wht > *:not(p):hover::after {
    background-image: url(../img/ico_arr_right_pri.svg);
}
.c-btn[class].-contact {
    max-width: 400px;
}
.c-btn[class].-contact a {
    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: 0 0.5rem;
    font-weight: bold;
    border: none;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    background: #DE0105;
}
.c-btn[class].-contact a::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_contact_wht.svg);
    background-size: 100%;
}
.c-btn[class].-contact a::after {
    background-image: url(../img/ico_arr_right_wht.svg);
}
@media (min-width: 768px) {
    .c-btn[class].-contact a:hover {
        background-color: #E84D50;
    }
}
.c-btn[class].-request {
    max-width: 400px;
}
.c-btn[class].-request a {
    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: 0 0.5rem;
    font-weight: bold;
    border: none;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    background: #222;
}
.c-btn[class].-request a::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_request_wht.svg);
    background-size: 100%;
}
.c-btn[class].-request a::after {
    background-image: url(../img/ico_arr_right_wht.svg);
}
@media (min-width: 768px) {
    .c-btn[class].-request a:hover {
        background-color: #4B4B4B;
    }
}
@media (min-width: 768px) {
    .c-btn[class].-left {
        margin-left: 0;
    }
}

.c-btn-text a {
    color: #222;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-right: 1.625rem;
    font-weight: bold;
}
.c-btn-text a:hover {
    text-decoration: underline;
}
.c-btn-text a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../img/ico_arr_right_pri.svg");
}
.c-btn-text a[target*=_blank] {
    padding-right: 1.75rem;
    color: #222;
}
.c-btn-text a[target*=_blank]:after {
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    right: 0;
    background-image: url("../img/ico_blank.svg");
}
.c-btn-text a[href*=".pdf"],
.c-btn-text a[download] {
    padding-right: 1.75rem;
    color: #222;
}
.c-btn-text a[href*=".pdf"]:after,
.c-btn-text a[download]:after {
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    background-image: url("../img/ico_pdf.svg");
}

.c-arr-btn.c-arr-box-btn > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-arr-btn.c-arr-box-btn > *:hover {
    color: #DE0105;
}
.c-arr-btn.c-arr-box-btn > *:hover::after {
    background-color: #DE0105;
}
.c-arr-btn.c-arr-box-btn > *::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}
.c-arr-btn.c-arr-box-btn.-left > * {
    display: inline-block;
    padding-right: 3rem;
}
.c-arr-btn.c-arr-box-btn.-left.-lg > * {
    padding-right: 4rem;
}
.c-arr-btn.c-arr-box-btn.-right.-deg {
    padding-right: 0;
    color: #DE0105;
}
.c-arr-btn.c-arr-box-btn.-right.-deg > * {
    padding-right: 3rem;
    line-height: 1.85;
}
.c-arr-btn.c-arr-box-btn.-right.-link > * {
    padding-right: 3rem;
}
@media (max-width: 767px) {
    .c-arr-btn.c-arr-box-btn.-right.-link > * {
        letter-spacing: -0.01em;
    }
}
.c-arr-btn.c-arr-box-btn.-right.-link > *::after {
    content: "";
    display: block;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_blank.svg);
    background-size: 100%;
    margin-left: 1rem;
    position: absolute;
    background-color: inherit;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-arr-btn.c-arr-box-btn.-right.-link > *:hover {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-arr-btn.c-arr-box-btn.-right.-link > *:hover::after {
    background-image: url(../img/ico_blank_blue.svg);
}

.c-arr-btn {
    color: #DE0105;
}
.c-arr-btn > * {
    text-decoration: none !important;
    font-weight: bold;
    padding-bottom: 0.1rem;
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-arr-btn.-right {
    text-align: right;
    padding-right: 3rem;
}
.c-arr-btn.-left {
    display: inline-block;
    padding-right: 3rem;
}
.c-arr-btn.-left.-lg {
    padding-right: 4rem;
}

.c-arr-box-btn > * {
    position: relative;
}
.c-arr-box-btn > *::after {
    content: "";
    display: block;
    bottom: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    background-color: #DE0105;
    background-position: center 45%;
    background-repeat: no-repeat;
    background-image: url(../img/ico_arr_box.svg);
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-arr-box-btn.-deg > *::after {
    background-image: url(../img/ico_arr_box_down.svg);
    background-position: 55% center;
}
.c-arr-box-btn.-lg > * {
    line-height: 3;
}
.c-arr-box-btn.-lg > *::after {
    width: 3rem;
    height: 3rem;
}
@media (max-width: 767px) {
    .c-arr-box-btn.-lg > * {
        line-height: 1.5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 3rem;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}
.c-arr-box-btn.-lg.-right {
    padding-right: 0;
}
.c-arr-box-btn.-lg.-right > * {
    padding-right: 4rem;
    padding-bottom: 0;
}

.c-arr-box {
    position: relative;
}
.c-arr-box::after {
    content: "";
    display: block;
    bottom: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    background-color: #DE0105;
    background-position: center 45%;
    background-repeat: no-repeat;
    background-image: url(../img/ico_arr_box.svg);
    position: absolute;
}
.c-arr-box.-deg::after {
    background-image: url(../img/ico_arr_box_down.svg);
    background-position: 55% center;
}
.c-arr-box.-lg::after {
    width: 3rem;
    height: 3rem;
}
.c-arr-box.-lg > * {
    line-height: 2.85;
}
.c-arr-box.-lg.-right {
    padding-right: 4rem;
}

/* ここから下がボタンのCSS　*/
.btn-surround {
    position: relative;
    opacity: 1 !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-surround:before,
.btn-surround:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #DE0105;
    top: 0;
    pointer-events: none;
    z-index: 100;
}

.btn-surround:before {
    left: 0;
    width: 0;
    height: 1px;
}

.btn-surround:after {
    right: 0;
    width: 1px;
    height: 0;
}

@media (min-width: 768px) {
    .btn-surround:hover:before {
        width: 100%;
        -webkit-transition: width 0.1s 0.1s;
        transition: width 0.1s 0.1s;
    }
    .btn-surround:hover:after {
        height: 100%;
        -webkit-transition: height 0.1s 0.2s;
        transition: height 0.1s 0.2s;
    }
    .btn-surround:hover > *:before {
        width: 100%;
        -webkit-transition: width 0.1s 0.3s;
        transition: width 0.1s 0.3s;
    }
    .btn-surround:hover > *:after {
        height: 100%;
        -webkit-transition: height 0.1s 0.4s;
        transition: height 0.1s 0.4s;
    }
}
.btn-surround > *:before,
.btn-surround > *:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #DE0105;
    bottom: 0;
    pointer-events: none;
    z-index: 100;
}

.btn-surround > *:before {
    right: 0;
    width: 0;
    height: 1px;
}

.btn-surround > *:after {
    left: 0;
    width: 1px;
    height: 0;
}

/* =====================================
 * 横並び
 * ================================== */
.c-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.c-flex.-max2 {
    margin-left: -1.5rem;
}
@media (max-width: 767px) {
    .c-flex.-max2 {
        display: block;
        margin-left: 0;
    }
}
.c-flex.-max2 .c-flex__item {
    -ms-flex-preferred-size: calc(50% - 1.5rem);
        flex-basis: calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
    margin-left: 1.5rem;
}
.c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-flex.-max2 .c-flex__item, .c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
        margin-top: 14px;
    }
}
.c-flex.-max3 {
    margin-left: -1.5rem;
}
@media (max-width: 767px) {
    .c-flex.-max3 {
        display: block;
        margin-left: 0;
    }
}
.c-flex.-max3 .c-flex__item {
    -ms-flex-preferred-size: calc(33.3333333333% - 1.5rem);
        flex-basis: calc(33.3333333333% - 1.5rem);
    max-width: calc(33.3333333333% - 1.5rem);
    margin-left: 1.5rem;
}
.c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-flex.-max3 .c-flex__item, .c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
        margin-top: 14px;
    }
}
.c-flex.-max4 {
    margin-left: -1.5rem;
}
@media (max-width: 767px) {
    .c-flex.-max4 {
        margin-left: -14px;
    }
}
.c-flex.-max4 .c-flex__item[class] {
    -ms-flex-preferred-size: calc(25% - 1.5rem);
        flex-basis: calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
    margin-left: 1.5rem;
}
@media (max-width: 767px) {
    .c-flex.-max4 .c-flex__item[class] {
        margin-left: 14px;
    }
}
.c-flex.-max4 .c-flex__item[class]:nth-of-type(4) ~ * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-flex.-max4 .c-flex__item[class], .c-flex.-max4 .c-flex__item[class]:nth-of-type(4) ~ * {
        margin-top: 14px;
    }
}
@media (max-width: 767px) {
    .c-flex.-max4 .c-flex__item[class] {
        -ms-flex-preferred-size: calc(50% - 14px);
            flex-basis: calc(50% - 14px);
        max-width: calc(50% - 14px);
    }
}
@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;
    }
}

@media (max-width: 767px) {
    .c-imgflex + .c-imgflex {
        margin-top: 2rem;
    }
}
.c-imgflex-wrap {
    background-color: #E84D50;
    padding: 3rem;
}
@media (min-width: 768px) {
    .c-imgflex-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0 4.1875rem;
    }
}
@media (max-width: 767px) {
    .c-imgflex-wrap {
        padding: 28px;
    }
}
@media (min-width: 768px) {
    .c-imgflex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0 1.25rem;
    }
}
.c-imgflex.-bg-whi {
    background-color: #fff;
    padding: 3rem;
}
@media (min-width: 768px) {
    .c-imgflex.-bg-whi {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .c-imgflex.-bg-whi {
        padding: 2rem;
    }
}
.c-imgflex.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.c-imgflex.-itemcenter {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media (max-width: 767px) {
    .c-imgflex.-itemcenter .c-imgflex__img {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .c-imgflex.-itemcenter .c-imgflex__img img {
        width: auto;
    }
}
@media (min-width: 768px) {
    .c-imgflex.-between {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}
.c-imgflex.-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .c-imgflex.-wrap > * {
        -ms-flex-preferred-size: calc(50% - 1.5rem);
            flex-basis: calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }
}
.c-imgflex.-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .c-imgflex.-center > * {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        text-align: left;
    }
}
.c-imgflex.-harf {
    gap: 0;
}
@media (min-width: 768px) {
    .c-imgflex.-harf > * {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%;
    }
}
.c-imgflex.-border *.-left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
@media (min-width: 768px) {
    .c-imgflex.-border *.-left + * {
        padding-left: 4rem;
        border-left: 1px solid #4B4B4B;
        margin-left: 4rem;
    }
}
@media (max-width: 767px) {
    .c-imgflex.-border *.-left + * {
        padding-top: 1rem;
        border-top: 1px solid #4B4B4B;
        margin-top: 1rem;
    }
}
@media (min-width: 768px) {
    .c-imgflex.-gap40 {
        gap: 0 2.5rem;
    }
}
@media (max-width: 767px) {
    .c-imgflex.-gap40 > * + * {
        margin-top: 2rem;
    }
}
.c-imgflex.-gap40 + .-gap40 {
    margin-top: 3.25rem;
}
@media (max-width: 767px) {
    .c-imgflex.-gap40 + .-gap40 {
        margin-top: 35px;
    }
}
@media (min-width: 768px) {
    .c-imgflex.-gap48 {
        gap: 0 3rem;
    }
}
.c-imgflex.-gapnone {
    gap: 0;
}
@media (min-width: 768px) {
    .c-imgflex.-gapnone > * {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%;
    }
}
@media (min-width: 768px) {
    .c-imgflex.-gapnone > * img {
        height: 100%;
        width: 100%;
    }
}
.c-imgflex.-gapnone > * > * {
    text-decoration: none;
}
.c-imgflex__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
@media (max-width: 767px) {
    .c-imgflex__img img {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .c-imgflex__img.-border-left {
        border-left: 1px solid #4B4B4B;
    }
}
@media (max-width: 767px) {
    .c-imgflex__img.-border-left {
        border-top: 1px solid #4B4B4B;
        padding-top: 2rem;
        margin-top: 2rem;
    }
}
.c-imgflex__img.-border-left.-center > * > img {
    padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
    .c-imgflex__img.-border-left.-center > * > img {
        padding-bottom: 5px;
    }
}
.c-imgflex__img.-center {
    text-align: center;
}
.c-imgflex__img.-bg-color {
    position: relative;
    display: block;
}
.c-imgflex__img.-bg-color > * {
    display: block;
}
.c-imgflex__img.-bg-color::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 38, 125, 0.7);
}
.c-imgflex__img.-bg-color .c-arr-btn.c-arr-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 99;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 1.5rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-imgflex__img.-bg-color .c-arr-btn.c-arr-box::after {
    position: static;
    width: 3rem;
    height: 3rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
.c-imgflex__img.-bg-color .c-arr-btn.c-arr-box:hover::after {
    background-color: inherit;
}
.c-imgflex__img.-bg-color .c-arr-btn.c-arr-box > * {
    color: #fff;
    font-size: 1.25rem;
}
@media (min-width: 768px) {
    .c-imgflex__img.-bg-color .c-arr-btn.c-arr-box > * {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
    }
}
.c-imgflex__img.-bg-color .c-arr-btn.c-arr-box > *::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.c-imgflex__img.-bg-color .c-arr-btn.c-arr-box.-full {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-imgflex__img.-bg-color .c-arr-btn.c-arr-box.-full:hover::after {
    background-color: #DE0105;
}
.c-imgflex__img.-bg-color .c-arr-btn.c-arr-box.-full:hover {
    background-color: rgba(29, 38, 125, 0.85);
}
@media (max-width: 767px) {
    .c-imgflex__img.-bg-color + .-bg-color {
        margin-top: 19px;
    }
}
@media (max-width: 767px) {
    .c-imgflex__img.-mgtop32-sp {
        margin-top: 19px;
    }
}
@media (max-width: 767px) {
    .c-imgflex__text {
        margin-top: 1rem;
    }
}
.c-imgflex__text.-recruit > * {
    text-decoration: none !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-imgflex__text.-recruit > *:hover > * {
    background: linear-gradient(256deg, #009DDC 100%, #0097EC 0%);
}
.c-imgflex__desc + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .c-imgflex__desc + * {
        margin-top: 24px;
    }
}
.c-imgflex__title {
    font-size: 1.5rem;
    font-weight: bold;
}
.c-imgflex.-bg-prilight > * {
    background-color: #E84D50;
    padding: 2.5rem;
}

/* =====================================
 * 画像とテキスト配置
 * ================================== */
.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: 10px;
    }
}

.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 0 1.5rem 0;
    }
    .c-imgbox .c-imgbox__right + *,
    .c-imgbox .c-imgbox__left + * {
        margin-top: 1.5rem;
    }
}

/* =====================================
 * 表組み
 * ================================== */
.c-table {
    border-right: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    width: 100%;
}
* + .c-table {
    margin-top: 3rem;
}
.c-table.-product th,
.c-table.-product td {
    vertical-align: middle;
    text-align: center;
}
.c-table.-product td.-th {
    text-align: center;
    font-weight: bold;
    background: #F7F7F7;
}
.c-table.-container th, .c-table.-container td {
    vertical-align: middle;
}
.c-table.-container th {
    min-width: 400px;
}
.c-table.-container td p:not([class]) + .c-note {
    margin-top: 0.5rem;
}
@media (max-width: 767px) {
    .c-table.-container td p:not([class]) + .c-note {
        margin-top: 0.25rem;
    }
}
.c-table__container-img {
    width: 100%;
    aspect-ratio: 48/48;
    max-width: 3rem;
    margin-inline: auto;
}
.c-table__container-img + * {
    margin-top: 0.5rem;
    text-align: center;
}
.c-table th,
.c-table td {
    background-clip: padding-box;
    border-top: 1px solid #D0D0D0;
    border-left: 1px solid #D0D0D0;
}
.c-table th {
    width: 240px;
    font-weight: bold;
    background: #F7F7F7;
}
.c-table td {
    background-color: #fff;
}
.c-table th,
.c-table td {
    padding: 1.25rem 1.25rem;
}
@media (max-width: 767px) {
    .c-table th,
    .c-table td {
        display: block;
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
@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-table-search {
    border-right: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    width: 100%;
}
* + .c-table-search {
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .c-table-search tr th:first-child {
        max-width: 240px;
        width: 240px;
    }
}
@media (min-width: 768px) {
    .c-table-search tr th:nth-of-type(2) {
        min-width: 480px;
    }
}
@media (min-width: 768px) {
    .c-table-search tr th:nth-of-type(3) {
        min-width: 480px;
    }
}
.c-table-search tr:first-child th:nth-of-type(2) {
    color: #fff;
    background-color: #303030;
}
@media (min-width: 768px) {
    .c-table-search tr:first-child th:nth-of-type(2) {
        width: 480px;
    }
}
.c-table-search tr:first-child th:nth-of-type(3) {
    color: #fff;
    background-color: #DE0105;
}
.c-table-search tr td:last-child {
    background-color: #FFF1F1;
}
.c-table-search th,
.c-table-search td {
    background-clip: padding-box;
    border-top: 1px solid #D0D0D0;
    border-left: 1px solid #D0D0D0;
    text-align: center;
    padding: 1.5rem;
    vertical-align: middle;
}
@media (max-width: 767px) {
    .c-table-search th,
    .c-table-search td {
        display: block;
        width: 100%;
        padding: 1.25rem;
    }
}
.c-table-search th {
    font-weight: bold;
    background: #F7F7F7;
}
@media (max-width: 767px) {
    .c-table-search th {
        width: 240px;
    }
}
.c-table-search td {
    background-color: #fff;
}
@media (max-width: 767px) {
    .c-table-search.-wide th {
        width: 32%;
    }
}
@media (max-width: 767px) {
    .c-table-search.-wide th,
    .c-table-search.-wide td {
        display: table-cell;
    }
}
.c-table-search.-side th,
.c-table-search.-side td {
    width: auto;
}
@media (max-width: 767px) {
    .c-table-search.-side th,
    .c-table-search.-side td {
        width: auto;
    }
}
@media (max-width: 767px) {
    .c-table-search.-scroll {
        position: relative;
        display: block;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .c-table-search.-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-search.-scroll tbody {
        min-width: 640px;
    }
}
@media (max-width: 767px) {
    .c-table-search.-scroll th,
    .c-table-search.-scroll td {
        display: table-cell;
        width: auto;
    }
}
@media (max-width: 767px) {
    .c-table-search.-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;
    }
}

/* =====================================
 * ページトップへ戻る
 * ================================== */
.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;
}
.c-pagetop.is-active {
    opacity: 1;
    visibility: inherit;
    pointer-events: auto;
}
.c-pagetop__btn {
    background-color: #DE0105;
    background-repeat: no-repeat;
    background-size: 0.875rem auto;
    background-position: center center;
    background-image: url(../img/ico_arr_up_wht.svg);
    font-size: 0;
    height: 3.5rem;
    width: 3.5rem;
}

/* =====================================
 * パンくずリスト
 * ================================== */
.c-breadcrumb {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-breadcrumb {
        margin-top: 1rem;
    }
}
.c-breadcrumb + * {
    margin-top: 7.5rem;
}
@media (max-width: 767px) {
    .c-breadcrumb + * {
        margin-top: 3.5rem;
    }
}
.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 {
    position: relative;
    list-style-type: none;
    line-height: 1.5;
    font-size: 0.75rem;
}
.c-breadcrumb__list li a {
    text-decoration: none;
    color: #888;
}
@media (min-width: 768px) {
    .c-breadcrumb__list li a:hover {
        color: #DE0105;
    }
}
.c-breadcrumb__list li + li {
    padding-left: 1.5rem;
}
.c-breadcrumb__list li + li:before {
    content: "";
    display: block;
    background-color: #DE0105;
    width: 0.5rem;
    height: 1px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    margin-left: 0.5rem;
}

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

/* =====================================
 * ページタイトル
 * ================================== */
.c-pagetitle {
    position: relative;
    background-color: #F7F7F7;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}
@media (max-width: 767px) {
    .c-pagetitle {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}
.c-pagetitle__img {
    background-color: #303030;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.c-pagetitle__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.7;
}
.c-pagetitle__text {
    position: relative;
    z-index: 10;
}
.c-pagetitle__subtitle, .c-pagetitle__title {
    line-height: 1.5;
}
.c-pagetitle__subtitle {
    letter-spacing: 0.035rem;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    color: #DE0105;
    font-weight: bold;
    display: inline-block;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .c-pagetitle__subtitle {
        letter-spacing: 0.035rem;
    }
}
.c-pagetitle__subtitle + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .c-pagetitle__subtitle + * {
        margin-top: 10px;
    }
}
.c-pagetitle__subtitle::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 3rem;
    height: 1px;
    background-color: #DE0105;
}
.c-pagetitle__title {
    color: #fff;
    font-size: 3rem;
    line-height: 150%;
    font-weight: bold;
    letter-spacing: 0.12rem;
}
@media (max-width: 767px) {
    .c-pagetitle__title {
        font-size: 2rem;
    }
}
.c-pagetitle__title + * {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .c-pagetitle__title + * {
        margin-top: 35px;
    }
}
.c-pagetitle__title + * + .c-headline-desc {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .c-pagetitle__title + * + .c-headline-desc {
        margin-top: 35px;
    }
}
.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: #F7F7F7;
    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: #DE0105;
    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 #4B4B4B;
    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__wrapper {
    aspect-ratio: 16/9;
}
.wp-block-embed__wrapper iframe {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}

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

.c-section.-gry {
    background-color: #F7F7F7;
    padding-block: 7.5rem;
    border-top-left-radius: 7.5rem;
    border-top-right-radius: 7.5rem;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}
@media (max-width: 1432px) {
    .c-section.-gry {
        min-width: 1432px;
        width: 100%;
        margin-inline: -7.5rem;
    }
}
@media (max-width: 767px) {
    .c-section.-gry {
        padding-block: 5rem;
        border-top-left-radius: 2.5rem;
        border-top-right-radius: 2.5rem;
        min-width: 100%;
        padding-inline: 1.25rem;
        width: calc(100% + 2.5rem);
        margin-inline: -1.25rem;
    }
}
* + .c-section {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    * + .c-section {
        margin-top: 3.5rem;
    }
}
* + .c-section.-nomal {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    * + .c-section.-nomal {
        margin-top: 3.5rem;
    }
}
* + .c-section.-xlg {
    margin-top: 10rem;
}
@media (max-width: 767px) {
    * + .c-section.-xlg {
        margin-top: 7.5rem;
    }
}
* + .c-section.-lg {
    margin-top: 7.5rem;
}
@media (max-width: 767px) {
    * + .c-section.-lg {
        margin-top: 5rem;
    }
}
* + .c-section.-sm {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    * + .c-section.-sm {
        margin-top: 2rem;
    }
}
* + .c-section.-xsm {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    * + .c-section.-xsm {
        margin-top: 1rem;
    }
}
* + .c-section.-md {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    * + .c-section.-md {
        margin-top: 3rem;
    }
}

/* ================================== */
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]) {
    border-bottom: 2px solid #888;
    padding-bottom: 1.5rem;
    position: relative;
    font-size: 2rem;
}
h2[class*=has-text-align]::before,
h2[class*=font-size]::before,
h2:not([class])::before {
    content: "";
    position: absolute;
    inset: auto auto -2px 0;
    width: 5rem;
    height: 2px;
    background-color: #DE0105;
}
@media (max-width: 767px) {
    h2[class*=has-text-align]::before,
    h2[class*=font-size]::before,
    h2:not([class])::before {
        width: 3rem;
    }
}
h2[class*=has-text-align] + *,
h2[class*=font-size] + *,
h2:not([class]) + * {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    h2[class*=has-text-align] + *,
    h2[class*=font-size] + *,
    h2:not([class]) + * {
        margin-top: 3.5rem;
    }
}

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

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

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

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

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

/* ================================== */
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 + 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]) li::marker,
ul:not([class]) li::marker,
ol[class*=font-size] li::marker,
ul[class*=font-size] li::marker {
    color: #DE0105;
    font-weight: bold;
}

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

h2 + ol:not([class]), h2 + ul:not([class]), h2 + ol[class*=font-size], h2 + ul[class*=font-size] {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    h2 + ol:not([class]), h2 + ul:not([class]), h2 + ol[class*=font-size], h2 + ul[class*=font-size] {
        margin-top: 2rem;
    }
}
h2 + .c-section {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    h2 + .c-section {
        margin-top: 3rem;
    }
}

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

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

.l-main {
    overflow: hidden;
    position: relative;
}

.c-mv-bg-inner {
    position: relative;
    background: -webkit-gradient(linear, left top, right top, from(rgba(48, 48, 48, 0.8)), to(rgba(48, 48, 48, 0.2)));
    background: linear-gradient(90deg, rgba(48, 48, 48, 0.8) 0%, rgba(48, 48, 48, 0.2) 100%);
    overflow: hidden;
}

.c-mv-bg {
    position: absolute;
    z-index: -1;
    top: -2rem;
    left: 0;
    width: 100vw;
}
@media screen and (min-width: 768px) and (max-width: 1264px) {
    .c-mv-bg {
        width: 100%;
    }
}
@media screen and (min-width: 2000px) {
    .c-mv-bg {
        top: -14rem;
    }
}
.c-mv-bg img {
    height: 100%;
    width: 100%;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -o-object-fit: cover;
       object-fit: cover;
    background-repeat: repeat;
}
@media screen and (min-width: 2000px) {
    .c-mv-bg img {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
@media (max-width: 767px) {
    .c-mv-bg img {
        min-height: 473px;
    }
}

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

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

.c-cta {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
    background: rgba(48, 48, 48, 0.7);
}
@media (min-width: 768px) {
    .c-cta__text {
        max-width: 380px;
    }
}
@media (max-width: 767px) {
    .c-cta__text + * {
        margin-top: 3rem;
    }
}
@media (min-width: 768px) {
    .c-cta__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}
@media (min-width: 768px) {
    .c-cta__list > * {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%;
    }
}
.c-cta__desc {
    color: #fff;
}
.c-cta__en {
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    color: #DE0105;
    font-weight: bold;
    display: inline-block;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .c-cta__en {
        letter-spacing: 0.035rem;
    }
}
.c-cta__en + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .c-cta__en + * {
        margin-top: 10px;
    }
}
.c-cta__en::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 3rem;
    height: 1px;
    background-color: #DE0105;
}
.c-cta__headline {
    font-size: 2rem;
    color: #fff;
    line-height: 150%;
    font-weight: bold;
    letter-spacing: 0.12rem;
}
.c-cta__headline + * {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .c-cta__headline + * {
        margin-top: 35px;
    }
}
.c-cta__tel a {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    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: 0 0.5rem;
    line-height: 1.5;
}
.c-cta__tel a::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_tel_wht.svg);
    background-size: 100%;
}
.c-cta__tel-time {
    font-size: 0.75rem;
    text-align: center;
    color: #fff;
    padding-left: 1rem;
}
.c-cta__tel-time span {
    position: relative;
    margin-left: 6px;
    padding-left: 6px;
}
.c-cta__tel-time span::before {
    content: "";
    display: block;
    top: 2px;
    left: 0;
    width: 1px;
    height: 10px;
    background-color: #D0D0D0;
    background-size: 100%;
    position: absolute;
}
.c-cta__btn .c-btn.-request + * {
    margin-top: 1rem;
}
.c-cta__btn .c-btn.-contact + .c-btn {
    margin-top: 1rem;
}

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

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

.p-home-case {
    position: relative;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}
@media (max-width: 767px) {
    .p-home-case {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
.p-home-case::after {
    content: "";
    display: block;
    background-color: #F7F7F7;
    width: calc(50% + 50rem);
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    border-top-left-radius: 7.5rem;
}

.swiper.c-case-slider {
    padding-bottom: 7rem;
    /* スライダー左の余白 */
    width: 100%;
    overflow: visible;
}
.swiper.c-case-slider + * {
    position: relative;
    z-index: 5;
}
.swiper.c-case-slider + .c-btn {
    margin-top: -3rem;
}
@media (max-width: 767px) {
    .swiper.c-case-slider + .c-btn {
        margin-top: 4rem;
    }
}
.swiper.c-case-slider .c-case-slider-pagination {
    bottom: 0;
    right: 0;
    text-align: left;
    padding-left: 7.5rem;
}
.swiper.c-case-slider .c-case-slider-pagination > * {
    letter-spacing: 0.04em;
}
.swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev {
    top: auto;
    bottom: -0.7rem;
    right: auto;
    left: 0;
    border: 1px solid #D0D0D0;
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev::after {
    content: "";
    width: 0.5rem;
    height: 0.75rem;
    background-image: url(../img/ico_arr_left_slider.svg);
    margin-right: 0.1rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-repeat: no-repeat;
}
@media (max-width: 767px) {
    .swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev::after {
        width: 0.5rem;
        height: 0.85rem;
    }
}
.swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev:hover {
    background-color: #DE0105;
    border: 1px solid #DE0105;
}
.swiper.c-case-slider .swiper-button-prev.c-case-slider-button-prev:hover::after {
    background-image: url(../img/ico_arr_left_slider_wht.svg);
}
.swiper.c-case-slider .swiper-button-next.c-case-slider-button-next {
    top: auto;
    bottom: -0.7rem;
    right: auto;
    left: calc(3rem + 4px);
    border: 1px solid #D0D0D0;
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.swiper.c-case-slider .swiper-button-next.c-case-slider-button-next::after {
    content: "";
    width: 0.5rem;
    height: 0.75rem;
    background-image: url(../img/ico_arr_right_slider.svg);
    margin-left: 0.1rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-repeat: no-repeat;
}
@media (max-width: 767px) {
    .swiper.c-case-slider .swiper-button-next.c-case-slider-button-next::after {
        width: 0.5rem;
        height: 0.85rem;
    }
}
.swiper.c-case-slider .swiper-button-next.c-case-slider-button-next:hover {
    background-color: #DE0105;
    border: 1px solid #DE0105;
}
.swiper.c-case-slider .swiper-button-next.c-case-slider-button-next:hover::after {
    background-image: url(../img/ico_arr_right_slider_wht.svg);
}
@media (min-width: 768px) {
    .swiper.c-case-slider .c-case-slider-slide {
        min-width: 372px;
    }
}
.swiper.c-case-slider .c-case-slider-slide img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: inherit;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (min-width: 768px) {
    .swiper.c-case-slider .c-case-slider-slide img {
        min-width: 372px;
    }
}
@media (max-width: 767px) {
    .swiper.c-case-slider .c-case-slider-slide img {
        width: 100%;
    }
}
.swiper.c-case-slider .c-case-slider-slide img + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .swiper.c-case-slider .c-case-slider-slide img + * {
        margin-top: 10px;
    }
}
.swiper.c-case-slider .c-case-slider-title {
    font-weight: bold;
}
.swiper.c-case-slider .swiper-pagination-bullet-active {
    background: #DE0105;
}

@media (min-width: 768px) {
    .p-case-list.-col3 .p-case-list__list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 4rem 2.5rem;
    }
}
@media (min-width: 768px) {
    .p-case-list.-col3 .p-case-list__item {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(33.3333333333% - 1.6666666667rem);
            flex-basis: calc(33.3333333333% - 1.6666666667rem);
        max-width: calc(33.3333333333% - 1.6666666667rem);
    }
}
@media (max-width: 767px) {
    .p-case-list.-col3 .p-case-list__item + .p-case-list__item {
        margin-top: 2.5rem;
    }
}
.p-case-list__medal {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #DE0105;
    color: #fff;
    font-weight: bold;
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
    border-bottom-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    z-index: 100;
}
.p-case-list__item {
    position: relative;
}
.p-case-list__item a {
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: block;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D0D0D0;
}
.p-case-list__item a::after {
    content: "";
    display: block;
    bottom: 1.28rem;
    right: 0;
    width: 1rem;
    height: 0.75rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 1rem auto;
    background-image: url("../img/ico_arr_right_pri.svg");
}
.p-case-list__item a::before {
    content: "";
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    background-color: #DE0105;
    right: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
}
@media (min-width: 768px) {
    .p-case-list__item a:hover::before {
        left: 0;
        right: auto;
        width: 100%;
    }
}
@media (min-width: 768px) {
    .p-case-list__item a:hover .p-case-list__img img {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}
.p-case-list__title {
    font-size: 1.5rem;
    font-weight: bold;
}
.p-case-list__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-case-list__title + * {
        margin-top: 10px;
    }
}
.p-case-list__desc {
    font-weight: normal;
}
.p-case-list__desc + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-case-list__desc + * {
        margin-top: 14px;
    }
}
.p-case-list__img {
    overflow: hidden;
    border: 1px solid #D0D0D0;
    border-radius: 0.5rem;
    aspect-ratio: 372/230;
}
.p-case-list__img img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-radius: 0.5rem;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}
.p-case-list__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-case-list__img + * {
        margin-top: 14px;
    }
}
.p-case-list__btn {
    font-size: 0.875rem;
}

.c-other-link__inner {
    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) {
    .c-other-link__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
}
.c-other-link__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}
.c-other-link__item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
.c-other-link__item.is-current {
    opacity: 0.5;
    pointer-events: none;
}
.c-other-link__img {
    width: 100%;
    aspect-ratio: 278/232;
    border-radius: 0.5rem;
    overflow: hidden;
}
@media (min-width: 768px) {
    .c-other-link__img {
        min-width: 278px;
    }
}
.c-other-link__img img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .c-other-link__img {
        max-width: 160px;
        min-width: 160px;
        height: 100%;
    }
}
.c-other-link__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
}
@media (min-width: 768px) {
    .c-other-link__content {
        min-width: 278px;
    }
}
.c-other-link__title {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .c-other-link__title {
        font-size: 1.25rem;
    }
}
.c-other-link__title + * {
    margin-top: 1rem;
}
.c-other-link__btn a, .c-container__btn a {
    border-bottom: 1px solid #D0D0D0;
    display: block;
    padding-bottom: 1rem;
    font-size: 0.875rem;
    -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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    padding-right: 0;
}
.c-other-link__btn a::after, .c-container__btn a::after {
    -webkit-transform: none;
            transform: none;
    margin-top: 4px;
    position: static;
}
.c-other-link__btn a:hover, .c-container__btn a:hover {
    text-decoration: none;
    color: #DE0105;
}
.c-other-link__btn a::before, .c-container__btn a::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
}

.c-container__img {
    border-radius: 0.5rem;
    width: 100%;
    aspect-ratio: 372/230;
    overflow: hidden;
}
@media (min-width: 768px) {
    .c-container__img {
        max-width: 372px;
    }
}
.c-container__img img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-container__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-container__img + * {
        margin-top: 1.25rem;
    }
}
.c-container__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.75rem 1fr 2.75rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2.75rem;
}
@media (max-width: 767px) {
    .c-container__inner {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.c-container__item {
    position: relative;
}
.c-container__item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
.c-container__tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.25rem;
    position: absolute;
    right: 1rem;
    top: 190px;
}
@media (max-width: 767px) {
    .c-container__tag {
        top: 41%;
    }
}
.c-container__tag li {
    border-radius: 50%;
    background-color: #222;
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    color: #fff;
    padding: 1.125rem 0.75rem;
    font-weight: bold;
    line-height: 1.25;
    font-size: 0.75rem;
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.c-container__title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.25;
}
@media (max-width: 767px) {
    .c-container__title {
        font-size: 1.25rem;
    }
}
.c-container__title + * {
    margin-top: 1rem;
}
.c-container__detail + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-container__detail + * {
        margin-top: 1.25rem;
    }
}
.c-container__size span {
    font-size: 0.75rem;
}
.c-information__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
}
@media (max-width: 767px) {
    .c-information__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }
}
.c-information__img {
    width: 100%;
    aspect-ratio: 536/332;
    border-radius: 0.5rem;
    overflow: hidden;
}
@media (min-width: 768px) {
    .c-information__img {
        min-width: 536px;
    }
}
@media (min-width: 768px) {
    .c-information__content {
        min-width: 600px;
    }
}
.c-information__detail-item {
    border-top: 1px solid #D0D0D0;
    padding-block: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}
@media (max-width: 767px) {
    .c-information__detail-item {
        padding-block: 1.25rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.c-information__detail-item:last-child {
    border-bottom: 1px solid #D0D0D0;
}
.c-information__detail-title {
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media (min-width: 768px) {
    .c-information__detail-title {
        min-width: calc(150px - 1rem);
    }
}
.c-information__detail-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14px 1fr 14px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
}
@media (max-width: 767px) {
    .c-information__detail-list {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.c-information__detail-list li {
    background-color: #F7F7F7;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    line-height: 1.5;
    font-size: 0.875rem;
    text-align: center;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

.c-check-list li {
    position: relative;
    padding-left: 1.75rem;
}
.c-check-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    background-image: url(/assets/img/ico_check_pri.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
}
.c-check-list li + * {
    margin-top: 0.5rem;
}

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

.c-worries__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.625rem 1fr 2.625rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.625rem;
}
@media (max-width: 767px) {
    .c-worries__inner {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.c-worries__item {
    border: 1px solid #D0D0D0;
    border-radius: 0.5rem;
    padding: 2.5rem;
}
@media (max-width: 767px) {
    .c-worries__item {
        padding: 1.25rem;
    }
}
.c-worries__pop {
    padding: 1.45rem;
    border-radius: 0.5rem;
    background-color: #F7F7F7;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}
.c-worries__pop::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -1rem;
    width: 0;
    height: 0;
    border-left: 0.75rem solid transparent;
    border-right: 0.75rem solid transparent;
    border-top: 1rem solid #F7F7F7;
}
@media (max-width: 767px) {
    .c-worries__pop {
        padding: 1.25rem;
    }
}
.c-worries__pop + * {
    margin-top: 2rem;
}
.c-worries__lead {
    display: inline-block;
    border-radius: 0.5rem;
    background-color: #303030;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    font-size: 0.875rem;
    padding: 0.5rem 1.53125rem;
}
.c-worries__lead + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .c-worries__lead + * {
        margin-top: 0.75rem;
    }
}
.c-worries__subtitle {
    text-align: center;
    font-size: 1.125rem;
    font-weight: bold;
    color: #888;
}
.c-worries__title {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.25rem;
    text-align: center;
}
s .c-worries__title + * {
    margin-top: 1rem;
}
.c-worries__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .c-worries__title + * {
        margin-top: 0.5rem;
    }
}

.c-item__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.625rem 4rem;
}
@media (max-width: 767px) {
    .c-item__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
}
.c-item__item {
    position: relative;
}
.c-item__item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
body[data-page-slug=case-study] .c-item__img {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
}
.c-item__img {
    width: 100%;
    aspect-ratio: 372/230;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}
.c-item__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-item__img + * {
        margin-top: 1rem;
    }
}
.c-item__img img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.c-item__tag {
    background-color: #DE0105;
    color: #fff;
    padding: 10px 14px;
    border-top-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    position: absolute;
    inset: 0 auto auto 0;
    font-size: 0.875rem;
}
@media (max-width: 767px) {
    .c-item__tag {
        padding: 0.5rem;
    }
}
.c-item__title {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .c-item__title {
        font-size: 1.25rem;
    }
}
.c-item__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .c-item__title + * {
        margin-top: 0.875rem;
    }
}

.c-flow__inner {
    counter-reset: item;
}
.c-flow__inner.-under {
    padding: 0;
    border-radius: 0;
}
.c-flow__item {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 2.5rem 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) {
    .c-flow__item {
        padding: 1.25rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1.5rem;
    }
}
@media (max-width: 767px) {
    .c-flow__item {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }
}
.c-flow__item + .c-flow__item {
    margin-top: 68px;
    position: relative;
}
@media (max-width: 767px) {
    .c-flow__item + .c-flow__item {
        margin-top: 3rem;
    }
}
.c-flow__item + .c-flow__item::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -2.75rem;
    width: 0;
    height: 0;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1.25rem solid #DE0105;
}
@media (max-width: 767px) {
    .c-flow__item + .c-flow__item::before {
        top: -2rem;
    }
}
.c-flow__item + * {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .c-flow__item + * {
        margin-top: 2rem;
    }
}
@media (min-width: 768px) {
    .c-flow__content {
        -ms-flex-negative: 1;
            flex-shrink: 1;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
}
.c-flow__number {
    font-weight: bold;
    text-transform: capitalize;
    font-weight: bold;
    color: #DE0105;
    padding-left: 4rem;
    position: relative;
}
@media (max-width: 767px) {
    .c-flow__number {
        padding-left: 2.5rem;
    }
}
.c-flow__number::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 3rem;
    height: 1px;
    background-color: #DE0105;
}
@media (max-width: 767px) {
    .c-flow__number::before {
        width: 1.75rem;
    }
}
.c-flow__number::after {
    content: counter(item);
    counter-increment: item;
}
.c-flow__title {
    font-weight: bold;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .c-flow__title {
        font-size: 1.25rem;
    }
}
.c-flow__title + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .c-flow__title + * {
        margin-top: 1.25rem;
    }
}
@media (min-width: 768px) {
    .c-flow__btn[class] {
        min-width: 320px;
    }
}
@media (max-width: 767px) {
    .c-flow__btn[class] {
        margin-left: 0;
        min-width: 100%;
    }
}
@media (max-width: 767px) {
    .c-flow__btn[class] a {
        width: 100%;
    }
}
.c-flow__subtitle {
    font-weight: bold;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .c-flow__subtitle {
        font-size: 1.125rem;
    }
}
.c-flow__subtitle + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .c-flow__subtitle + * {
        margin-top: 0.875rem;
    }
}
.c-flow__img {
    width: 100%;
    aspect-ratio: 300/186;
    border-radius: 0.5rem;
    overflow: hidden;
}
@media (min-width: 768px) {
    .c-flow__img {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: 300px;
            flex-basis: 300px;
        max-width: 300px;
    }
}
@media (max-width: 767px) {
    .c-flow__img {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}

body[data-page-slug=howto][data-page-type=detail] .c-flow {
    background-color: #F7F7F7;
    border-radius: 3rem;
    padding: 5rem;
}
@media (max-width: 767px) {
    body[data-page-slug=howto][data-page-type=detail] .c-flow {
        border-radius: 1.5rem;
        padding: 1.25rem;
    }
}

.c-alink__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 42px 1fr 42px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}
@media (max-width: 767px) {
    .c-alink__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
}
.c-alink__item a {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    padding: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #222 !important;
    display: block;
    font-size: 1.25rem;
    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;
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .c-alink__item a {
        padding: 1.25rem;
    }
}
@media (max-width: 767px) {
    .c-alink__item a {
        gap: 1rem;
    }
}
.c-alink__item a::after {
    content: "";
    background-image: url(/assets/img/ico_arr_bottom_alink.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.75rem;
    height: 0.75rem;
    min-width: 0.75rem;
}

@media (min-width: 768px) {
    .u-hidden-pc {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .u-hidden-sp {
        display: none !important;
    }
}
* + *.-margin-lg[class] {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    * + *.-margin-lg[class] {
        margin-top: 35px;
    }
}

* + *.-margin-md[class] {
    margin-top: 2.5rem;
}

* + *.-margin-sm[class] {
    margin-top: 1.5rem;
}

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

/* =====================================
* 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__inner + * {
    margin-top: 2rem;
}
.p-form__inner dt {
    font-weight: bold;
}
.p-form__inner dt + * {
    margin-top: 1rem;
}
.p-form__inner dd + * {
    margin-top: 3rem;
}
.p-form__req {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 1rem;
}
@media (max-width: 767px) {
    .p-form__req {
        padding-right: 0;
    }
}
.p-form__req:after {
    content: "必須";
    display: inline-block;
    background-color: #B70000;
    color: #fff;
    font-weight: normal;
    font-size: 0.75rem;
    padding: 0 0.5rem;
    margin-left: 1rem;
}
.p-form__item + .p-form__item {
    margin-top: 2rem;
}
.p-form__item-headline + * {
    margin-top: 1rem;
}
.p-form__item-headline + * {
    margin-left: 0;
}
.p-form__error-list li[data-error-name=住所] + li[data-error-name=住所] {
    display: none !important;
}
.p-form__error-message {
    background-color: #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 #4B4B4B;
    padding: 1rem 1rem;
}
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form input[type=text],
.p-form textarea {
    -webkit-appearance: none;
}
.p-form select {
    padding-right: 2.5rem;
    background-repeat: no-repeat;
    background-size: 0.75em auto;
    background-position: right center;
    background-position-x: calc(100% - 1rem);
    background-image: url(../img/ico_arr_down_pri.svg);
}
@media (max-width: 767px) {
    .p-form select {
        width: 100%;
    }
}
.p-form input[type=checkbox],
.p-form input[type=radio] {
    vertical-align: middle;
    padding: 0;
    width: 1.25em;
    height: 1.25em;
    opacity: 0.4;
}
.p-form input[type=checkbox] + *,
.p-form input[type=radio] + * {
    vertical-align: middle;
}
.p-form input[type=checkbox]:checked,
.p-form input[type=radio]:checked {
    opacity: 1;
}
.p-form textarea {
    display: block;
}
.p-form textarea:focus,
.p-form select:focus,
.p-form input:focus {
    border-color: #DE0105;
}
.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;
}

.p-form ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #D0D0D0;
}
.p-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #D0D0D0;
}
.p-form ::-moz-placeholder {
    /* Others */
    color: #D0D0D0;
}
.p-form ::-ms-input-placeholder {
    /* Others */
    color: #D0D0D0;
}
.p-form ::placeholder {
    /* Others */
    color: #D0D0D0;
}
.p-form input[type=tel],
.p-form input[type=email],
.p-form input[type=number],
.p-form select,
.p-form input[type=text],
.p-form textarea {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    width: 100%;
    padding: 1.5rem;
}
.p-form__inner {
    margin-top: -1.5rem;
}
@media (min-width: 768px) {
    .p-form__inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.p-form dt,
.p-form dd {
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 1.5rem;
    margin-top: 1.5rem;
}
.p-form dt {
    display: block;
}
@media (min-width: 768px) {
    .p-form dt {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: 15rem;
            flex-basis: 15rem;
        max-width: 15rem;
        padding-right: 0;
        padding-top: 1.25rem;
    }
}
@media (max-width: 767px) {
    .p-form dt {
        border: none;
        padding-bottom: 0;
    }
}
@media (min-width: 768px) {
    .p-form dt.-no-input {
        margin-top: 0.375rem;
    }
}
@media (min-width: 768px) {
    .p-form dd {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(100% - 15rem);
            flex-basis: calc(100% - 15rem);
        max-width: calc(100% - 15rem);
        padding-left: 7.5rem;
    }
}
@media (max-width: 767px) {
    .p-form dd {
        margin-top: 0.875rem;
    }
}
.p-form dd a {
    color: #DE0105;
}
.p-form__req {
    position: relative;
}
.p-form__req::after {
    border-radius: 0.5rem;
    background-color: #DE0105;
    font-size: 0.75rem;
    padding: 0.125rem 1rem;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
}
@media (min-width: 768px) {
    .p-form__req::after {
        margin-top: 1.25rem;
    }
}
* + .p-form__btn {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    * + .p-form__btn {
        margin-top: 2rem;
    }
}

.wpcf7-response-output[class] {
    display: none;
}

@media (min-width: 768px) {
    .p-form-mv__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 2.5rem;
    }
}
@media (min-width: 768px) {
    .p-form-mv__img {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: 460px;
            flex-basis: 460px;
        max-width: 460px;
    }
    .p-form-mv__img img {
        -o-object-fit: cover;
           object-fit: cover;
        height: 100%;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .p-form-mv__img {
        text-align: center;
    }
    .p-form-mv__img + * {
        margin-top: 1.25rem;
    }
}
.p-form-mv__img img {
    border-radius: 0.5rem;
}
@media (min-width: 768px) {
    .p-form-mv__text {
        -ms-flex-negative: 1;
            flex-shrink: 1;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
}
.p-form-mv__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 2rem;
}
@media (max-width: 767px) {
    .p-form-mv__title {
        font-size: 1.5rem;
    }
}
.p-form-mv__title + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-form-mv__title + * {
        margin-top: 1rem;
    }
}
.p-form-mv.-center .p-form-mv__text, .p-form-mv.-center .p-form-mv__desc {
    text-align: center;
}

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-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__header + * {
    margin-top: 2rem;
}
.p-home-section__body + * {
    margin-top: 4rem;
}

.p-home-section__body {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    .p-home-section__body {
        margin-top: 49px;
    }
}

@media (min-width: 768px) {
    .p-home-mv {
        padding-top: 16.9375rem;
        padding-bottom: 8.5rem;
    }
}
@media (max-width: 767px) {
    .p-home-mv {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
}
@media (min-width: 768px) {
    .p-home-mv__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (max-width: 767px) {
    .p-home-mv__img {
        text-align: center;
    }
    .p-home-mv__img img {
        width: 125px;
    }
}
@media (min-width: 768px) {
    .p-home-mv__img + * {
        margin-left: 5rem;
    }
}
.p-home-mv__text-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .p-home-mv__text-img {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
.p-home-mv__text-img img {
    display: block;
}
@media (min-width: 768px) {
    .p-home-mv__text-img img {
        width: 261px;
    }
}
@media (max-width: 767px) {
    .p-home-mv__text-img img {
        max-width: 176px;
        width: 100%;
    }
}
.p-home-mv__text-img img + * {
    margin-left: 1.5rem;
}
@media (max-width: 767px) {
    .p-home-mv__text-img img + * {
        margin-left: 0.25rem;
    }
}
.p-home-mv__text-img + * {
    margin-top: 1.5rem;
}
.p-home-mv__lead {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #fff;
}
@media (max-width: 767px) {
    .p-home-mv__lead {
        margin-top: 1rem;
        font-size: 0.9375rem;
        text-align: center;
        line-height: 1.5;
    }
}
.p-home-mv__lead + * {
    margin-top: 0.5rem;
}
@media (max-width: 767px) {
    .p-home-mv__lead + * {
        margin-top: 0.25rem;
    }
}
.p-home-mv__title {
    font-size: 4rem;
    line-height: 1.5;
    font-weight: bold;
    color: #fff;
}
@media (max-width: 767px) {
    .p-home-mv__title {
        font-size: 1.625rem;
        text-align: center;
    }
}
.p-home-mv__title + * {
    margin-top: 3rem;
}
.p-home-mv__title span {
    font-size: 3.125rem;
}
@media (max-width: 767px) {
    .p-home-mv__title span {
        font-size: 1.625rem;
        letter-spacing: 0.05em;
    }
}
.p-home-mv__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}
@media (max-width: 767px) {
    .p-home-mv__btn {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
@media (max-width: 767px) {
    .p-home-mv__btn > * + * {
        margin-top: 1.125rem;
    }
}
.p-home-mv__btn .c-btn[class] {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    max-width: 320px;
    text-align: center;
}
.p-home-mv__btn .c-btn[class] > * {
    max-width: 320px;
}
.p-home-mv__btn .c-btn[class] + .c-btn[class] {
    margin-top: 0;
}
.p-home-mv__btn .c-btn[class] > *:has(span) + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-home-mv__btn .c-btn[class] > *:has(span) + * {
        margin-top: 10px;
    }
}
.p-home-mv__btn .c-btn[class] span {
    color: #fff;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.5;
    position: relative;
    font-weight: bold;
}
.p-home-mv__btn .c-btn[class] span::after {
    content: "";
    display: block;
    top: 0.65rem;
    right: -1rem;
    width: 0.875rem;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(-65deg);
            transform: rotate(-65deg);
    position: absolute;
    border-radius: 2px;
}
.p-home-mv__btn .c-btn[class] span::before {
    content: "";
    display: block;
    top: 0.65rem;
    left: -1rem;
    width: 0.875rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    background-size: 100%;
    -webkit-transform: rotate(65deg);
            transform: rotate(65deg);
    position: absolute;
}

@media (min-width: 768px) {
    .p-home-search__inner,
    .p-home-product__inner,
    .p-home-case__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: end;
    }
}
@media (min-width: 768px) {
    .p-home-search__inner > *,
    .p-home-product__inner > *,
    .p-home-case__inner > * {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%;
    }
}

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

@media (max-width: 767px) {
    .p-home-search__header + *,
    .p-home-product__header + *,
    .p-home-case__header + * {
        margin-top: 1.5rem;
    }
}

.p-home-news__body,
.p-home-blog__body {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .p-home-news__body,
    .p-home-blog__body {
        margin-top: 35px;
    }
}

.p-home-case__body {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    .p-home-case__body {
        margin-top: 49px;
    }
}

.banner {
    position: fixed;
    margin: 1.5rem;
    z-index: 99998;
    bottom: 0;
    right: 0;
}
@media (max-width: 767px) {
    .banner {
        margin: 15px 0 15px 0;
        right: 50%;
        -webkit-transform: translateX(50%);
                transform: translateX(50%);
    }
}

.banner a {
    text-decoration: none;
}

.banner-back {
    width: 300px;
    border-radius: 25px;
}

.banner-body {
    width: 300px;
    font-weight: bold;
    text-align: center;
}

.banner-body:hover {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.banner-close {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 99999;
    border: none;
    padding: 0;
    cursor: pointer;
}

.p-banner-img {
    text-align: center;
}
.p-banner-img a {
    display: block;
}

.p-home-newsblog .p-blog-list__img {
    width: 100%;
    aspect-ratio: 120/74;
    max-width: 120px;
    height: 100%;
}

.p-home-news__inner,
.p-home-blog__inner {
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) {
    .p-home-news__inner,
    .p-home-blog__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (min-width: 768px) {
    .p-home-news__header,
    .p-home-blog__header {
        -ms-flex-negative: 1;
            flex-shrink: 1;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        padding-right: 5rem;
    }
}
@media (max-width: 767px) {
    .p-home-news__header + *,
    .p-home-blog__header + * {
        margin-top: 1.5rem;
    }
}
@media (min-width: 768px) {
    .p-home-news__body,
    .p-home-blog__body {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: 890px;
            flex-basis: 890px;
        max-width: 890px;
    }
}
@media (max-width: 767px) {
    .p-home-news__body + *,
    .p-home-blog__body + * {
        margin-top: 1.5rem;
    }
}
* + .p-home-news__btn[class],
* + .p-home-blog__btn[class] {
    margin-top: 2.5em;
}
@media (max-width: 767px) {
    * + .p-home-news__btn[class],
    * + .p-home-blog__btn[class] {
        margin-top: 1.5rem;
    }
}
.p-home-news__btn[class] a,
.p-home-blog__btn[class] a {
    font-size: 1rem;
    padding: 1rem;
}

.p-news-list__item,
.p-blog-list__item {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 3.5rem;
    border-bottom: 1px solid #D0D0D0;
}
@media (max-width: 767px) {
    .p-news-list__item,
    .p-blog-list__item {
        padding-right: 2.5rem;
        padding-bottom: 1.25rem;
    }
}
.p-news-list__item + .p-news-list__item,
.p-news-list__item + .p-blog-list__item,
.p-blog-list__item + .p-news-list__item,
.p-blog-list__item + .p-blog-list__item {
    padding-top: 2rem;
}
@media (max-width: 767px) {
    .p-news-list__item + .p-news-list__item,
    .p-news-list__item + .p-blog-list__item,
    .p-blog-list__item + .p-news-list__item,
    .p-blog-list__item + .p-blog-list__item {
        padding-top: 1.25rem;
    }
}
.p-news-list__item::after,
.p-blog-list__item::after {
    content: "";
    display: block;
    top: 50%;
    right: 0;
    width: 1rem;
    height: 0.75rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 1rem auto;
    background-image: url("../img/ico_arr_right_pri.svg");
}
.p-news-list__meta,
.p-blog-list__meta {
    color: #DE0105;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.p-news-list__meta > * + *,
.p-blog-list__meta > * + * {
    color: #DE0105;
    margin-left: 0.5rem;
}
.p-news-list__meta + *,
.p-blog-list__meta + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-news-list__meta + *,
    .p-blog-list__meta + * {
        margin-top: 10px;
    }
}
.p-news-list__time,
.p-blog-list__time {
    font-size: 0.875rem;
    font-weight: bold;
    color: #989C9E;
}
@media (min-width: 768px) {
    .p-news-list__time,
    .p-blog-list__time {
        width: 90px;
    }
}
@media (max-width: 767px) {
    .p-news-list__time,
    .p-blog-list__time {
        -webkit-transform: translateY(0.125rem);
                transform: translateY(0.125rem);
        width: 80px;
    }
}
.p-news-list__img img,
.p-blog-list__img img {
    border-radius: 0.5rem;
}
.p-news-list__cat-list,
.p-blog-list__cat-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.25rem;
}
.p-news-list__cat-list li,
.p-blog-list__cat-list li {
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.p-news-list__cat-list li > *,
.p-blog-list__cat-list li > * {
    background-color: #DE0105;
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 0.5rem 1rem 0.45rem;
    line-height: 1.5;
    min-width: 7.5rem;
    display: block;
    text-align: center;
    text-decoration: none !important;
    line-height: 1;
    border-radius: 1.875rem;
}
@media (max-width: 767px) {
    .p-news-list__cat-list li > *,
    .p-blog-list__cat-list li > * {
        line-height: 1.25;
    }
}
.p-news-list__cat-list li a,
.p-blog-list__cat-list li a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.p-news-list__cat-list li a:hover,
.p-blog-list__cat-list li a:hover {
    background-color: #E84D50;
    text-decoration: none;
    color: #DE0105;
}
.p-news-list__title > *,
.p-blog-list__title > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.p-news-list__title a,
.p-blog-list__title a {
    text-decoration: none;
}
.p-news-list__title a::before,
.p-blog-list__title a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
    .p-news-list__title a:hover,
    .p-blog-list__title a:hover {
        color: #DE0105;
    }
}

@media (max-width: 767px) {
    .p-news-list + *,
    .p-blog-list + * {
        margin-top: 24px;
    }
}
.p-news-list + *,
.p-blog-list + * {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .p-news-list + *,
    .p-blog-list + * {
        margin-top: 28px;
    }
}

.p-blog-list__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}
.p-blog-list__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    aspect-ratio: 240/148;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
}
@media (min-width: 768px) {
    .p-blog-list__img {
        max-width: 240px;
    }
}
@media (max-width: 767px) {
    .p-blog-list__img {
        text-align: center;
    }
}
.p-blog-list__img img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.p-blog-list__text {
    width: 100%;
}
.p-blog-list__item {
    overflow: hidden;
    border-radius: 0.5rem;
}
.p-blog-list__item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
body[data-page-slug=blog] .p-blog-list__item {
    border-radius: 0;
}

@media (min-width: 768px) {
    body[data-page-slug=home] .p-blog-list__img img {
        max-width: 114px;
        height: 100%;
        max-height: 69px;
    }
}

@media (min-width: 768px) {
    .p-blog-list__title.text-overflow > * {
        display: block;
        max-width: 53%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

* + .p-blog-list__desc.text-overflow {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    * + .p-blog-list__desc.text-overflow {
        margin-top: 14px;
    }
}

.p-blog-list__desc.text-overflow > * {
    display: block;
    max-width: 600px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .p-blog-list__desc.text-overflow > * {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .p-news-list__title.text-overflow > * {
        display: block;
        max-width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    body[data-page-slug=home] .p-blog-list__title > * {
        display: block;
        max-width: 393px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}
@media (min-width: 768px) {
    body[data-page-slug=home] .p-news-list__title > * {
        display: block;
        max-width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .p-home-newsblog__item {
        -ms-flex-preferred-size: calc(50% - 2rem);
            flex-basis: calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
}
@media (max-width: 767px) {
    .p-home-newsblog__item + .p-home-newsblog__item {
        margin-top: 4rem;
    }
}

@media (min-width: 768px) {
    .p-home-newsblog__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 4rem;
    }
}

.dot-text {
    position: relative;
}

.dot-text::before {
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    padding-top: 12px;
    background: radial-gradient(circle 12px, #FE544A 50%, transparent 50%);
    background: -moz-radial-gradient(circle 12px, #FE544A 50%, transparent 50%);
}
@media (max-width: 767px) {
    .dot-text::before {
        top: 5px;
        padding-top: 13px;
        background: radial-gradient(circle 9px, #FE544A 50%, transparent 50%);
        background: -moz-radial-gradient(circle 9px, #FE544A 50%, transparent 50%);
    }
}

.c-cta-headline,
.p-news-headline,
.p-blog-headline {
    position: relative;
}
.c-cta-headline + *,
.p-news-headline + *,
.p-blog-headline + * {
    margin-top: 4rem;
}
.c-cta-headline::before,
.p-news-headline::before,
.p-blog-headline::before {
    content: "";
    display: block;
    bottom: -1.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background-color: #DE0105;
    position: absolute;
}
.c-cta-headline__main,
.p-news-headline__main,
.p-blog-headline__main {
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
}
@media (max-width: 767px) {
    .c-cta-headline__main,
    .p-news-headline__main,
    .p-blog-headline__main {
        font-size: 2rem;
    }
}
.c-cta-headline__sub,
.p-news-headline__sub,
.p-blog-headline__sub {
    color: #DE0105;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 150%;
    color: #fff;
}
.c-cta-headline__sub + *,
.p-news-headline__sub + *,
.p-blog-headline__sub + * {
    margin-top: 0.5rem;
}
@media (max-width: 767px) {
    .c-cta-headline__sub + *,
    .p-news-headline__sub + *,
    .p-blog-headline__sub + * {
        margin-top: 5px;
    }
}

.p-news-detail__img {
    width: 100%;
    aspect-ratio: 835/518;
}
.p-news-detail__title {
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .p-news-detail__title {
        font-size: 1.5rem;
    }
}
.p-news-detail__meta {
    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-news-detail__meta {
        gap: 1rem;
    }
}
.p-news-detail__meta + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-news-detail__meta + * {
        margin-top: 0.875rem;
    }
}
.p-news-detail__time {
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #888;
}
.p-news-detail__cat {
    border-radius: 30px;
    background-color: #DE0105;
    padding: 6px 35px;
    color: #fff;
}

.p-news-relation {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
}
@media (max-width: 767px) {
    .p-news-relation {
        gap: 2rem;
    }
}
.p-news-relation__next > *, .p-news-relation__prev > * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-repeat: no-repeat;
    background-size: 0.625rem auto;
    font-weight: bold;
    color: #222;
    text-decoration: none;
}
@media (min-width: 768px) {
    .p-news-relation__next > *:hover, .p-news-relation__prev > *:hover {
        color: #DE0105;
    }
}
.p-news-relation__prev > * {
    background-position: left center;
    background-image: url(../img/ico_arr_left02_pri.svg);
    padding-left: 1.75rem;
}
.p-news-relation__next > * {
    background-position: right center;
    background-image: url(../img/ico_arr_right02_pri.svg);
    padding-right: 1.75rem;
}
.p-news-relation__ico {
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: left center;
    background-image: url(../img/ico_blob_doc.svg);
    width: 1.5rem;
    height: 1.5rem;
}

.p-home-service {
    position: relative;
    padding-top: 7.5rem;
    margin-top: 41.25rem !important;
}
@media (max-width: 767px) {
    .p-home-service {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
.p-home-service::after {
    content: "";
    display: block;
    background-color: #fff;
    width: calc(50% + 43.75rem);
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    border-top-right-radius: 7.5rem;
}
@media (max-width: 767px) {
    .p-home-service::after {
        width: 100%;
    }
}
.p-home-service__bg {
    position: absolute;
    z-index: -10;
    top: -31.25rem;
    left: calc((100vw - 1600px) / 2);
    overflow: hidden;
}
.p-home-service__bg img {
    width: 100%;
    min-width: 1600px;
    display: block;
}
@media (max-width: 767px) {
    .p-home-service__bg img {
        min-width: 1200px;
    }
}

.p-service {
    overflow: hidden;
}
.p-service-title {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
}
.p-service-title + * {
    margin-top: 5rem;
}
@media (max-width: 767px) {
    .p-service-title + * {
        margin-top: 49px;
    }
}
.p-service__inner {
    position: relative;
    padding-bottom: 7.5rem;
}
@media (max-width: 767px) {
    .p-service__inner {
        padding-bottom: 5rem;
    }
}
.p-service__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
@media (min-width: 768px) {
    .p-service__list {
        gap: 0 4rem;
    }
}
@media (min-width: 768px) {
    .p-service__list > * {
        -ms-flex-preferred-size: calc(50% - 2rem);
            flex-basis: calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
}
@media (max-width: 767px) {
    .p-service__item-wrap-wrap {
        width: 100%;
    }
}
.p-service__item-wrap-wrap:first-child {
    border-top: 1px solid #D0D0D0;
}
@media (max-width: 767px) {
    .p-service__item-wrap-wrap:first-child {
        border-bottom: 1px solid #D0D0D0;
    }
}
.p-service__item-wrap-wrap:first-child:hover {
    border-top: 1px solid #F7F7F7;
}
@media (min-width: 768px) {
    .p-service__item-wrap-wrap:nth-child(2) {
        border-top: 1px solid #D0D0D0;
    }
}
@media (max-width: 767px) {
    .p-service__item-wrap-wrap + .p-service__item-wrap-wrap {
        border-bottom: 1px solid #D0D0D0;
    }
}
.p-service__item {
    padding: 2rem;
    padding-bottom: 4.25rem;
}
@media (min-width: 768px) {
    .p-service__item {
        border-bottom: 1px solid #D0D0D0;
    }
}
@media (max-width: 767px) {
    .p-service__item {
        width: 100%;
    }
}
.p-service__item-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 56/56;
    max-width: 56px;
}
@media (max-width: 767px) {
    .p-service__item-img img {
        max-width: 115px;
    }
}
.p-service__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
}
.p-service__item-inner + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service__item-inner + * {
        margin-top: 14px;
    }
}
.p-service__subtitle {
    color: #888;
    font-size: 1rem;
}
.p-service__subtitle + * {
    margin-top: 0.5rem;
}
.p-service__title {
    line-height: 150%;
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 700;
}
.p-service__title + * {
    margin-top: 1rem;
}
.p-service__desc {
    line-height: 1.5;
}
.p-service__desc a {
    display: block;
    text-decoration: none;
}
.p-service__desc a::after {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-position-y: calc(100% - 2rem);
    background-position-x: calc(100% - 2rem);
    background-repeat: no-repeat;
    background-size: 1rem auto;
    background-image: url("../img/ico_arr_right_pri.svg");
}

.p-service-introduction__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
}
@media (max-width: 767px) {
    .p-service-introduction__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }
}
@media (min-width: 768px) {
    .p-service-introduction__content {
        min-width: 600px;
    }
}
.p-service-introduction__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}
@media (max-width: 767px) {
    .p-service-introduction__list {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}
.p-service-introduction__list li {
    list-style-type: disc;
    margin-left: 1.25rem;
}
.p-service-introduction__list li::marker {
    color: #DE0105;
}
.p-service-introduction__img {
    width: 100%;
    aspect-ratio: 536/332;
    border-radius: 0.5rem;
    overflow: hidden;
}
@media (min-width: 768px) {
    .p-service-introduction__img {
        min-width: 536px;
    }
}

.p-service-card__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.625rem 1fr 2.625rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.625rem;
}
@media (max-width: 767px) {
    .p-service-card__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
}
.p-service-card__list + * {
    margin-top: 2.625rem;
}
@media (max-width: 767px) {
    .p-service-card__list + * {
        margin-top: 1.25rem;
    }
}
.p-service-card__item {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    padding: 2.5rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-service-card__item {
        padding: 1.25rem;
    }
}
.p-service-card__item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
.p-service-card__img {
    width: 100%;
    aspect-ratio: 292/130;
    border-radius: 0.5rem;
    overflow: hidden;
}
.p-service-card__img img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.p-service-card__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service-card__img + * {
        margin-top: 1.25rem;
    }
}
.p-service-card__title {
    font-weight: bold;
    font-size: 1.5rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .p-service-card__title {
        font-size: 1.25rem;
    }
}
.p-service-card__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-service-card__title + * {
        margin-top: 0.75rem;
    }
}
.p-service-card__btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.p-service-card__btn a::after {
    content: "";
    background-image: url(/assets/img/ico_arr_right_pri.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
}
.p-service-card__btn a::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
}
.p-service-card__card {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    padding: 2.5rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 44px;
}
@media (max-width: 767px) {
    .p-service-card__card {
        gap: 1.25rem;
        padding: 1.25rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.p-service-card__card:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
@media (min-width: 768px) {
    .p-service-card__card .p-service-card__img {
        min-width: 536px;
    }
}
.p-service-card__card .p-service-card__img + * {
    margin-top: 0;
}
@media (min-width: 768px) {
    .p-service-card__card .p-service-card__content {
        min-width: 528px;
    }
}
.p-service-card__subtitle {
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .p-service-card__subtitle {
        font-size: 1.125rem;
    }
}
.p-service-card__subtitle + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-service-card__subtitle + * {
        margin-top: 0.5rem;
    }
}

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

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

.p-service-system__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
}
@media (max-width: 767px) {
    .p-service-system__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
@media (min-width: 768px) {
    .p-service-system__content {
        min-width: 536px;
    }
}
.p-service-system__title span {
    font-size: 1.25rem;
}
.p-service-system__img {
    width: 100%;
    aspect-ratio: 600/500;
}
@media (max-width: 767px) {
    .p-service-system__img {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}
.p-service-system__btn[class] {
    margin-left: 0;
}
.p-service-system__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}
@media (max-width: 767px) {
    .p-service-system__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}
.p-service-system__list + * {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .p-service-system__list + * {
        margin-top: 2rem;
    }
}
.p-service-system__item .p-service-system__img {
    aspect-ratio: 568/134;
}
.p-service-system__item .p-service-system__img + * {
    margin-top: 1rem;
}

* + .p-service-system__btn {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    * + .p-service-system__btn {
        margin-top: 1.5rem;
    }
}

.p-service-container__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}
@media (max-width: 767px) {
    .p-service-container__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 2.5rem;
    }
}
.p-service-container__item {
    border: 1px solid #D0D0D0;
    border-radius: 0.5rem;
    padding: 2.5rem;
}
@media (max-width: 767px) {
    .p-service-container__item {
        padding: 1.25rem;
    }
}
.p-service-container__item + .p-service-container__item {
    position: relative;
}
.p-service-container__item + .p-service-container__item::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -2.5rem;
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    border-left: 15px solid #DE0105;
}
@media (max-width: 767px) {
    .p-service-container__item + .p-service-container__item::before {
        left: 50%;
        -webkit-transform: rotate(90deg) translateX(-50%);
                transform: rotate(90deg) translateX(-50%);
        top: -0.875rem;
        -webkit-transform-origin: top;
                transform-origin: top;
        border-left: 12px solid #DE0105;
    }
}
.p-service-container__title {
    font-weight: bold;
    text-align: center;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .p-service-container__title {
        font-size: 1.125rem;
    }
}
.p-service-container__title + * {
    margin-top: 0.5rem;
    line-height: 1.5;
    text-align: center;
}
.p-service-container__check-list li {
    font-weight: bold;
}

@media (min-width: 768px) {
    .p-service-use-list__list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 4rem;
    }
}
@media (min-width: 768px) {
    .p-service-use-list__item {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(50% - 2rem);
            flex-basis: calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
}
@media (max-width: 767px) {
    .p-service-use-list__item + .p-service-use-list__item {
        margin-top: 3rem;
    }
}
.p-service-use-list__title, .p-search-imgbox__title, .p-service-use-example__title {
    position: relative;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
    padding-left: 1.125rem;
}
.p-service-use-list__title + *, .p-search-imgbox__title + *, .p-service-use-example__title + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-service-use-list__title + *, .p-search-imgbox__title + *, .p-service-use-example__title + * {
        margin-top: 1.5rem;
    }
}
.p-service-use-list__title::before, .p-search-imgbox__title::before, .p-service-use-example__title::before {
    content: "";
    display: block;
    background-color: #DE0105;
    width: 2px;
    height: calc(100% - 0.25em);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.p-service-use-list__img + * {
    margin-top: 1rem;
}
.p-service-use-list__comment {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .p-service-use-example__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 4rem;
    }
}
* + .p-service-use-example__desc {
    margin-top: 2rem;
}
.p-service-use-example__comment {
    font-size: 0.875rem;
}
.p-service-use-example__comment + * {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .p-service-use-example__comment + * {
        margin-top: 1.5rem;
    }
}
@media (min-width: 768px) {
    .p-service-use-example__img {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: 600px;
            flex-basis: 600px;
        max-width: 600px;
    }
}
@media (max-width: 767px) {
    .p-service-use-example__img + * {
        margin-top: 1rem;
    }
}
@media (min-width: 768px) {
    .p-service-use-example__text {
        -ms-flex-negative: 1;
            flex-shrink: 1;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
}
.p-service-use-example__btn > *[class] {
    margin-left: 0;
}

@media (min-width: 768px) {
    .p-service-filling-list__list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 4rem 2.5rem;
    }
}
.p-service-filling-list.-col2 .p-service-filling-list__list {
    gap: 4rem 4rem;
}
@media (min-width: 768px) {
    .p-service-filling-list__item {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(33.3333333333% - 1.6666666667rem);
            flex-basis: calc(33.3333333333% - 1.6666666667rem);
        max-width: calc(33.3333333333% - 1.6666666667rem);
    }
}
@media (max-width: 767px) {
    .p-service-filling-list__item + .p-service-filling-list__item {
        margin-top: 2rem;
    }
}
@media (min-width: 768px) {
    .p-service-filling-list.-col2 .p-service-filling-list__item {
        -ms-flex-preferred-size: calc(50% - 2rem);
            flex-basis: calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
}
.p-service-filling-list__img {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 372/230;
}
.p-service-filling-list__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}
.p-service-filling-list__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service-filling-list__img + * {
        margin-top: 1.25rem;
    }
}
.p-service-filling-list__label {
    border-bottom-right-radius: 0.5rem;
    background-color: #DE0105;
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    font-size: 0.875rem;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 0.625rem 0.875rem;
}
.p-service-filling-list__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
}
.p-service-filling-list__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-service-filling-list__title + * {
        margin-top: 0.5rem;
    }
}
.p-service-filling-list__desc > * + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-service-filling-list__desc > * + * {
        margin-top: 1rem;
    }
}

@media (min-width: 768px) {
    .p-service-maintenance__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 4rem;
    }
    .p-service-maintenance__inner > * {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(50% - 2rem);
            flex-basis: calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
}
.p-service-maintenance__inner > * {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    padding: 2.5rem;
}
@media (max-width: 767px) {
    .p-service-maintenance__inner > * {
        padding: 1.5rem 1.25rem;
    }
}
.p-service-maintenance__before + .p-service-maintenance__after {
    position: relative;
}
@media (max-width: 767px) {
    .p-service-maintenance__before + .p-service-maintenance__after {
        margin-top: 3rem;
    }
}
.p-service-maintenance__before + .p-service-maintenance__after::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 0.875rem solid transparent;
    border-right: 0.875rem solid transparent;
    border-top: 1rem solid #DE0105;
    position: absolute;
}
@media (min-width: 768px) {
    .p-service-maintenance__before + .p-service-maintenance__after::before {
        left: 0;
        top: 50%;
        -webkit-transform: translate(-2.75rem, -50%) rotate(-90deg);
                transform: translate(-2.75rem, -50%) rotate(-90deg);
    }
}
@media (max-width: 767px) {
    .p-service-maintenance__before + .p-service-maintenance__after::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: -2rem;
    }
}
.p-service-maintenance__list li, .p-search-imgbox__list li {
    font-weight: bold;
    font-size: 1.25rem;
    padding-left: 2rem;
    background-repeat: no-repeat;
    background-size: 1.5rem auto;
    background-position: left 0.25rem;
    background-image: url(../img/ico_check_pri.svg);
}
@media (max-width: 767px) {
    .p-service-maintenance__list li, .p-search-imgbox__list li {
        font-size: 1.125rem;
    }
}
.p-service-maintenance__desc {
    text-align: center;
    font-weight: bold;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .p-service-maintenance__desc {
        font-size: 1.125rem;
    }
}
.p-service-maintenance__comment {
    text-align: center;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .p-service-merit-list__list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5rem;
    }
}
.p-service-merit-list__item {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    padding: 2.5rem;
}
@media (min-width: 768px) {
    .p-service-merit-list__item {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(50% - 0.75rem);
            flex-basis: calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 2.5rem;
    }
}
@media (max-width: 767px) {
    .p-service-merit-list__item {
        padding: 1.5rem 1.25rem;
    }
}
@media (max-width: 767px) {
    .p-service-merit-list__item + .p-service-merit-list__item {
        margin-top: 1.5rem;
    }
}
.p-service-merit-list__img {
    -ms-flex-preferred-size: 3.5rem;
        flex-basis: 3.5rem;
    max-width: 3.5rem;
}
@media (min-width: 768px) {
    .p-service-merit-list__img {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
    }
}
@media (max-width: 767px) {
    .p-service-merit-list__img {
        -ms-flex-preferred-size: 2.5rem;
            flex-basis: 2.5rem;
        max-width: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    .p-service-merit-list__img + * {
        margin-top: 1rem;
    }
}
.p-service-merit-list__text {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.p-service-merit-list__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .p-service-merit-list__title {
        font-size: 1.25rem;
    }
}
.p-service-merit-list__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-service-merit-list__title + * {
        margin-top: 0.75rem;
    }
}

@media (min-width: 768px) {
    .p-search-list__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 2rem 1.5rem;
    }
}
@media (min-width: 768px) {
    .p-search-list__inner > * {
        -ms-flex-preferred-size: calc(25% - 1.125rem);
            flex-basis: calc(25% - 1.125rem);
        max-width: calc(25% - 1.125rem);
    }
}
.p-search-list__title {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 150%;
}
.p-search-list__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-search-list__title + * {
        margin-top: 10px;
    }
}
.p-search-list__desc {
    font-weight: normal;
}
.p-search-list__btn {
    font-size: 0.875rem;
}
.p-search-list__img {
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 282/174;
}
.p-search-list__img img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 0.5rem;
}
@media (max-width: 767px) {
    .p-search-list__img img {
        width: 100%;
    }
}
.p-search-list__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-search-list__img + * {
        margin-top: 14px;
    }
}
.p-search-list__desc + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-search-list__desc + * {
        margin-top: 14px;
    }
}
.p-search-list__item a {
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: block;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D0D0D0;
}
.p-search-list__item a::after {
    content: "";
    display: block;
    bottom: 1.28rem;
    right: 0;
    width: 1rem;
    height: 0.75rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 1rem auto;
    background-image: url("../img/ico_arr_right_pri.svg");
}
.p-search-list__item a::before {
    content: "";
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    background-color: #DE0105;
    right: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
}
@media (min-width: 768px) {
    .p-search-list__item a:hover::before {
        left: 0;
        bottom: -1px;
        right: auto;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .p-search-list__item + .p-search-list__item {
        margin-top: 4rem;
    }
}
@media (min-width: 768px) {
    .p-search-list__item:hover .p-search-list__img img {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}

.p-search-mv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4rem;
}
@media (max-width: 767px) {
    .p-search-mv__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }
}
@media (min-width: 768px) {
    .p-search-mv__content {
        min-width: 536px;
    }
}
.p-search-mv__lead, .p-search-mv__title {
    font-weight: bold;
    line-height: 1.5;
}
.p-search-mv__lead {
    color: #DE0105;
    font-size: 1.25rem;
}
.p-search-mv__lead + * {
    margin-top: 1rem;
}
.p-search-mv__title {
    font-size: 2rem;
}
.p-search-mv__title + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-search-mv__title + * {
        margin-top: 1.5rem;
    }
}
.p-search-mv__img {
    width: 100%;
    aspect-ratio: 600/400;
}
@media (min-width: 768px) {
    .p-search-mv__img {
        min-width: 600px;
    }
}
@media (max-width: 767px) {
    .p-search-mv__img {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}
@media (min-width: 768px) {
    body[data-page-slug=case-study] .p-search-mv__inner {
        gap: 2.5rem;
    }
}
@media (min-width: 768px) {
    body[data-page-slug=case-study] .p-search-mv__content {
        -ms-flex-negative: 1;
            flex-shrink: 1;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        min-width: auto;
    }
}
body[data-page-slug=case-study] .p-search-mv__img {
    position: relative;
}
@media (min-width: 768px) {
    body[data-page-slug=case-study] .p-search-mv__img {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: 460px;
            flex-basis: 460px;
        max-width: 460px;
        min-width: auto;
    }
}

.p-search-product + .p-search-product {
    margin-top: 7.5rem;
    padding-top: 7.5rem;
    border-top: 1px solid #D0D0D0;
}
@media (max-width: 767px) {
    .p-search-product + .p-search-product {
        margin-top: 5rem;
        padding-top: 5rem;
    }
}
.p-search-product__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
}
@media (max-width: 767px) {
    .p-search-product__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }
}
.p-search-product__inner + * {
    margin-top: 4rem;
}
@media (max-width: 767px) {
    .p-search-product__inner + * {
        margin-top: 2rem;
    }
}
@media (min-width: 768px) {
    .p-search-product__content {
        min-width: 568px;
    }
}
.p-search-product__title {
    position: relative;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
    padding-left: 1.125rem;
}
.p-search-product__title + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-search-product__title + * {
        margin-top: 1.5rem;
    }
}
.p-search-product__title::before {
    content: "";
    display: block;
    background-color: #DE0105;
    width: 2px;
    height: calc(100% - 0.25em);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.p-search-product__subtitle {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .p-search-product__subtitle {
        font-size: 1.125rem;
    }
}
.p-search-product__subtitle + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-search-product__subtitle + * {
        margin-top: 1.25rem;
    }
}
.p-search-product__size, .c-container__size, .p-search-product__material, .c-container__material {
    padding-left: 1.625rem;
    font-size: 0.875rem;
    position: relative;
}
.p-search-product__size::before, .c-container__size::before, .p-search-product__material::before, .c-container__material::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/assets/img/ico_size_pri.svg);
    width: 1.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
}
.p-search-product__size + *, .c-container__size + *, .p-search-product__material + *, .c-container__material + * {
    margin-top: 0.25rem;
}
.p-search-product__material::before, .c-container__material::before {
    background-image: url(/assets/img/ico_material_pri.svg);
}
.p-search-product__img {
    width: 100%;
    aspect-ratio: 568/358;
    border-radius: 0.5rem;
    overflow: hidden;
}
@media (min-width: 768px) {
    .p-search-product__img {
        min-width: 568px;
    }
}
@media (max-width: 767px) {
    .p-search-product__img {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}
.p-search-product__img + .p-search-product__textarea {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-search-product__img + .p-search-product__textarea {
        margin-top: 1.25rem;
    }
}
.p-search-product__item-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 4rem;
}
@media (max-width: 767px) {
    .p-search-product__item-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}

* + .p-search-product__detail, * + .c-container__detail {
    margin-top: 1.5em;
}

.p-search-feature__inner {
    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-search-feature__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
}
.p-search-feature__item {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    padding: 2.5rem;
}
@media (max-width: 767px) {
    .p-search-feature__item {
        padding: 1.25rem;
    }
}
.p-search-feature__title {
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.5rem;
    text-align: center;
}
.p-search-feature__title + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-search-feature__title + * {
        margin-top: 1.25rem;
    }
}
.p-search-feature__img {
    width: 100%;
    aspect-ratio: 56/56;
    max-width: 3.5rem;
    margin-inline: auto;
}
.p-search-feature__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-search-feature__img + * {
        margin-top: 1.25rem;
    }
}

.p-search-contents__inner {
    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-search-contents__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
}
.p-search-contents__item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 2.5rem;
}
@media (max-width: 767px) {
    .p-search-contents__item {
        padding: 1.25rem;
    }
}
@media (min-width: 768px) {
    .p-search-contents__item.-col2 {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/3;
    }
}
.p-search-contents__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 580/244;
    position: absolute;
    inset: 0 auto auto 0;
    z-index: -2;
}
.p-search-contents__filter {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 48, 48, 0.5);
    z-index: -1;
}
.p-search-contents__content {
    position: relative;
}
.p-search-contents__title {
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .p-search-contents__title {
        font-size: 1.25rem;
    }
}
.p-search-contents__title + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-search-contents__title + * {
        margin-top: 1.25rem;
    }
}
.p-search-contents__desc {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    padding: 1.5rem;
    text-align: center;
}
@media (max-width: 767px) {
    .p-search-contents__desc {
        padding: 1.25rem;
    }
}

@media (min-width: 768px) {
    .p-search-imgbox__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 4rem;
    }
}
@media (min-width: 768px) {
    .p-search-imgbox__img {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: 536px;
            flex-basis: 536px;
        max-width: 536px;
    }
}
@media (max-width: 767px) {
    .p-search-imgbox__img {
        text-align: center;
    }
    .p-search-imgbox__img + * {
        margin-top: 1.5rem;
    }
}
@media (min-width: 768px) {
    .p-search-imgbox__text {
        -ms-flex-negative: 1;
            flex-shrink: 1;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
}
.p-search-imgbox__title + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-search-imgbox__title + * {
        margin-top: 1rem;
    }
}
.p-search-imgbox__desc + * {
    margin-top: 1rem;
}
.p-search-imgbox__list li {
    font-weight: normal;
    background-size: 1.25rem auto;
    font-size: 1rem;
}
.p-search-imgbox__list li + li {
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .p-product-list__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 4rem 2.62rem;
    }
}
@media (min-width: 768px) {
    .p-product-list__inner > * {
        -ms-flex-preferred-size: calc(33.3333333333% - 1.7466666667rem);
            flex-basis: calc(33.3333333333% - 1.7466666667rem);
        max-width: calc(33.3333333333% - 1.7466666667rem);
    }
}
.p-product-list__title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 150%;
}
.p-product-list__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-product-list__title + * {
        margin-top: 10px;
    }
}
.p-product-list__desc {
    font-weight: normal;
}
.p-product-list__desc + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-product-list__desc + * {
        margin-top: 10px;
    }
}
.p-product-list__size {
    font-size: 0.875rem;
    font-weight: normal;
    padding-left: 1.625rem;
    position: relative;
}
.p-product-list__size + * {
    margin-top: 0.25rem;
}
.p-product-list__size::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    margin-top: 0.2rem;
    width: 1.125rem;
    height: 1.125rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_size.svg);
    background-size: 100%;
    position: absolute;
}
.p-product-list__material {
    font-size: 0.875rem;
    font-weight: normal;
    position: relative;
    padding-left: 1.625rem;
}
.p-product-list__material::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    margin-top: 0.2rem;
    width: 1.125rem;
    height: 1.125rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ico_material.svg);
    background-size: 100%;
    position: absolute;
}
.p-product-list__material + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-product-list__material + * {
        margin-top: 14px;
    }
}
.p-product-list__btn {
    font-size: 0.875rem;
}
.p-product-list__img-wrap {
    position: relative;
}
.p-product-list__img-wrap + * {
    margin-top: 1.5rem;
}
.p-product-list__img {
    overflow: hidden;
    min-height: 230px;
    border-radius: 0.5rem;
    aspect-ratio: 372/230;
    width: 100%;
}
.p-product-list__img img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 0.5rem;
}
@media (max-width: 767px) {
    .p-product-list__img img {
        width: 100%;
    }
}
.p-product-list__img + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-product-list__img + * {
        margin-top: 14px;
    }
}
.p-product-list__medal01, .p-product-list__medal02 {
    text-align: center;
    line-height: 1.5;
}
.p-product-list__medal01 {
    position: absolute;
    bottom: -1.5rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    border-radius: 4rem;
    background-color: #222;
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 0.75rem;
    z-index: 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;
}
.p-product-list__medal02 {
    position: absolute;
    right: 5.25rem;
    bottom: -1.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 4rem;
    background-color: #222;
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 0.75rem;
    z-index: 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;
}
.p-product-list__item a {
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: block;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D0D0D0;
}
.p-product-list__item a::after {
    content: "";
    display: block;
    bottom: 1.28rem;
    right: 0;
    width: 1rem;
    height: 0.75rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 1rem auto;
    background-image: url("../img/ico_arr_right_pri.svg");
}
.p-product-list__item a::before {
    content: "";
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    background-color: #DE0105;
    right: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
}
@media (min-width: 768px) {
    .p-product-list__item a:hover::before {
        left: 0;
        right: auto;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .p-product-list__item + .p-product-list__item {
        margin-top: 4rem;
    }
}
@media (min-width: 768px) {
    .p-product-list__item:hover .p-product-list__img img {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}

@media (min-width: 768px) {
    .p-product-check-list__list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5rem;
    }
    .p-product-check-list__list > * {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(33.3333333333% - 1rem);
            flex-basis: calc(33.3333333333% - 1rem);
        max-width: calc(33.3333333333% - 1rem);
    }
}
.p-product-check-list__list > * {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    padding: 2.5rem;
}
@media (max-width: 767px) {
    .p-product-check-list__list > * {
        padding: 1.5rem 1.25rem;
    }
}
.p-product-check-list__list > *::before {
    content: "";
    display: block;
    width: 100%;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-size: 1.5rem auto;
    background-position: center center;
    background-image: url(../img/ico_check_pri.svg);
    margin-bottom: 1rem;
}
@media (max-width: 767px) {
    .p-product-check-list__list > * + * {
        margin-top: 1.5rem;
    }
}

@media (min-width: 768px) {
    .p-product-type-list__list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 2.5rem;
    }
}
.p-product-type-list__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .p-product-type-list__item {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-preferred-size: calc(50% - 1.25rem);
            flex-basis: calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}
@media (max-width: 767px) {
    .p-product-type-list__item {
        gap: 1rem;
    }
}
@media (max-width: 767px) {
    .p-product-type-list__item + .p-product-type-list__item {
        margin-top: 1.5rem;
    }
}
.p-product-type-list__img {
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 278/232;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-preferred-size: 232px;
        flex-basis: 232px;
    max-width: 232px;
}
@media (max-width: 767px) {
    .p-product-type-list__img {
        -ms-flex-preferred-size: 6rem;
            flex-basis: 6rem;
        max-width: 6rem;
    }
}
.p-product-type-list__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}
.p-product-type-list__text {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.p-product-type-list__title {
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .p-product-type-list__title {
        font-size: 1.25rem;
    }
}
.p-product-type-list__title + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-product-type-list__title + * {
        margin-top: 0.5rem;
    }
}
.p-product-type-list__desc {
    font-size: 0.875rem;
}

.c-cta-test {
    background-color: #DE0105;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.c-cta-test .l-container, .c-cta-test .c-section__inner {
    max-width: calc(1600px + 2rem);
}
@media (min-width: 768px) {
    .c-cta-test > * {
        text-align: center;
    }
}
.c-cta-test__subtitle {
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
    .c-cta-test__subtitle {
        letter-spacing: 0.02rem;
        text-align: center;
    }
}
.c-cta-test__subtitle + * {
    margin-top: 0.5rem;
}
.c-cta-test__title {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
    .c-cta-test__title {
        text-align: center;
    }
}
.c-cta-test__desc {
    margin-top: 2rem;
    color: #fff;
}
@media (max-width: 767px) {
    .c-cta-test__desc {
        margin-top: 19px;
    }
}
.c-cta-test__desc + * {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .c-cta-test__desc + * {
        margin-top: 19px;
    }
}
.c-cta-test__text {
    padding: 5rem 6.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1640px) {
    .c-cta-test__text {
        padding: 5rem 1.25rem;
    }
}
@media (max-width: 767px) {
    .c-cta-test__text {
        padding: 2rem 0rem;
    }
}
.c-cta-test__text-img {
    background-color: #fff;
    display: inline-block;
    padding: 2.125rem;
    border-radius: 7.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
.c-cta-test__text-img img {
    width: 4rem;
    height: 4rem;
}
@media screen and (min-width: 768px) and (max-width: 1640px) {
    .c-cta-test__text-img img {
        width: 3rem;
        height: 3rem;
    }
}
.c-cta-test__text-img + * {
    margin-top: 0.5rem;
}
.c-cta-test__text-title {
    color: #fff;
    font-weight: bold;
    letter-spacing: 0;
}
@media (max-width: 767px) {
    .c-cta-test__text-title {
        text-align: center;
    }
}
.c-cta-test__text-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1640px) {
    .c-cta-test__text-list {
        gap: 0.5rem;
    }
}
@media (max-width: 767px) {
    .c-cta-test__text-list {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}
.c-cta-test__text-list > * {
    -ms-flex-preferred-size: calc(25% - 1.125rem);
        flex-basis: calc(25% - 1.125rem);
    max-width: calc(25% - 1.125rem);
    min-width: 8.25rem;
}
@media (max-width: 767px) {
    .c-cta-test__text-list > * {
        -ms-flex-preferred-size: calc(50% - 0.75rem);
            flex-basis: calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        text-align: center;
    }
}
.c-cta-test__text-list + * {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .c-cta-test__text-list + * {
        margin-top: 28px;
    }
}
@media (min-width: 768px) {
    .c-cta-test__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: right;
            -ms-flex-pack: right;
                justify-content: right;
    }
}
@media (min-width: 768px) {
    .c-cta-test__list > * {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%;
    }
}
.c-cta-test__item {
    padding: 4rem;
}
@media (max-width: 767px) {
    .c-cta-test__item {
        padding: 2rem;
    }
}
@media (max-width: 767px) {
    .c-cta-test__img {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
    }
}
@media (min-width: 768px) {
    .c-cta-test__img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: absolute;
    }
    .c-cta-test__img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
.c-cta-test__desc + .c-btn {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .c-cta-test__desc + .c-btn {
        margin-top: 24px;
    }
}

.p-home-howto {
    position: relative;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}
@media (max-width: 767px) {
    .p-home-howto {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
.p-home-howto::after {
    content: "";
    display: block;
    background-color: #F7F7F7;
    width: calc(50% + 43.75rem);
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    border-top-right-radius: 7.5rem;
}
@media (max-width: 767px) {
    .p-home-howto::after {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .p-home-howto__text {
        max-width: 380px;
        padding-right: 5rem;
    }
}
.p-home-howto__text * + .c-btn {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .p-home-howto__text * + .c-btn {
        margin-top: 28px;
    }
}
@media (max-width: 767px) {
    .p-home-howto__text + * {
        margin-top: 2rem;
    }
}
@media (min-width: 768px) {
    .p-home-howto__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (min-width: 768px) {
    .p-home-howto__list > * {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%;
    }
}
@media (max-width: 767px) {
    .p-home-howto__btn + * {
        margin-top: 3rem;
    }
}
.p-home-howto__desc + .c-btn {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-home-howto__desc + .c-btn {
        margin-top: 24px;
    }
}

.p-home-howto {
    overflow: hidden;
}
.p-home-howto__item-wrap-wrap:first-child {
    border-top: 1px solid #D0D0D0;
}
@media (max-width: 767px) {
    .p-home-howto__item-wrap-wrap:first-child {
        border-bottom: 1px solid #D0D0D0;
    }
}
@media (max-width: 767px) {
    .p-home-howto__item-wrap-wrap + .p-home-howto__item-wrap-wrap {
        border-bottom: 1px solid #D0D0D0;
    }
}
.p-home-howto__item-wrap-wrap:hover .p-home-howto__title {
    color: #DE0105;
}
.p-home-howto__item {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 2rem;
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 768px) {
    .p-home-howto__item {
        border-bottom: 1px solid #D0D0D0;
    }
}
@media (max-width: 767px) {
    .p-home-howto__item {
        width: 100%;
    }
}
.p-home-howto__item a:not([class])::after {
    background-position-y: 50%;
}
.p-home-howto__item-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
@media (max-width: 767px) {
    .p-home-howto__item-img img {
        max-width: 115px;
    }
}
.p-home-howto__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
}
.p-home-howto__item-inner + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-home-howto__item-inner + * {
        margin-top: 14px;
    }
}
.p-home-howto__title {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 150%;
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 700;
}
.p-home-howto__title + * {
    margin-top: 1rem;
}
.p-home-howto__desc {
    line-height: 1.5;
}
.p-home-howto__desc a {
    display: block;
    text-decoration: none;
}
.p-home-howto__desc a::after {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-position-y: calc(100% - 2rem);
    background-position-x: calc(100% - 2rem);
    background-repeat: no-repeat;
    background-size: 1rem auto;
    background-image: url("../img/ico_arr_right_pri.svg");
}
@media (max-width: 767px) {
    .p-home-howto__desc a::after {
        background-position-x: calc(100% - 0.85rem);
    }
}

.p-howto__btn {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}
@media (max-width: 767px) {
    .p-howto__btn {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
}
.p-howto__item {
    position: relative;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    padding-block: 2rem;
}
@media (max-width: 767px) {
    .p-howto__item {
        padding-block: 1.25rem;
    }
}
.p-howto__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media (max-width: 767px) {
    .p-howto__item-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.p-howto__item-inner + * {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .p-howto__item-inner + * {
        margin-top: 0.875rem;
    }
}
.p-howto__item-text {
    font-weight: bold;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .p-howto__item-text {
        font-size: 1.25rem;
    }
}
.p-howto__desc * {
    text-decoration: none;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2.5rem;
    display: block;
}
@media (max-width: 767px) {
    .p-howto__desc * {
        gap: 1.25rem;
        padding-bottom: 1.25rem;
    }
}
.p-howto__desc *::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(/assets/img/ico_arr_right_pri.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
}
.p-howto__title {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
}
.p-howto__title a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
.p-howto__title a::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.p-howto__item-wrap-wrap:hover .p-howto__title a {
    color: #DE0105;
}
.p-faq-list__item {
    border-radius: 0.5rem;
    border: 1px solid #D0D0D0;
    padding: 2rem;
}
@media (max-width: 767px) {
    .p-faq-list__item {
        padding: 1.5rem 1.25rem;
    }
}
.p-faq-list__item + .p-faq-list__item {
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .p-faq-list__item + .p-faq-list__item {
        margin-top: 1.25rem;
    }
}
.p-faq-list__q, .p-faq-list__a {
    position: relative;
    padding-left: 4rem;
    padding-top: 0.25rem;
}
.p-faq-list__q::before, .p-faq-list__a::before {
    border-radius: 50%;
    border: 1px solid #DE0105;
    line-height: 1;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding-top: 0.75rem;
}
@media (max-width: 767px) {
    .p-faq-list__q::before, .p-faq-list__a::before {
        padding-top: 0.625rem;
    }
}
.p-faq-list__q {
    font-weight: bold;
    font-size: 1.25rem;
}
.p-faq-list__q::before {
    content: "Q";
    color: #DE0105;
}
.p-faq-list.-accordion .p-faq-list__q {
    padding-right: 2rem;
}
.p-faq-list.-accordion .p-faq-list__q:hover {
    cursor: pointer;
}
.p-faq-list.-accordion .p-faq-list__q::after {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: left center;
    background-image: url(../img/ico_plus.svg);
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    margin-top: 0.75rem;
}
.p-faq-list.-accordion .p-faq-list__q.is-active::after {
    background-image: url(../img/ico_minus.svg);
}
* + .p-faq-list__a {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    * + .p-faq-list__a {
        margin-top: 0.5rem;
    }
}
.p-faq-list__a::before {
    content: "A";
    background-color: #DE0105;
    color: #fff;
    margin-top: 0.125rem;
}
.p-faq-list.-accordion .p-faq-list__a {
    display: none;
}
.p-faq-list.-accordion .p-faq-list__a.is-show {
    display: block;
}

.p-home-feature {
    position: relative;
    padding-top: 7.5rem;
}
@media (max-width: 767px) {
    .p-home-feature {
        padding-top: 5rem;
    }
}
@media (min-width: 768px) {
    .p-home-feature__text {
        max-width: 380px;
    }
}
.p-home-feature__text * + .c-btn {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .p-home-feature__text * + .c-btn {
        margin-top: 28px;
    }
}
@media (max-width: 767px) {
    .p-home-feature__text + * {
        margin-top: 2rem;
    }
}
@media (min-width: 768px) {
    .p-home-feature__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (min-width: 768px) {
    .p-home-feature__list > .p-home-feature__text {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%;
        min-width: 600px;
    }
}
@media (max-width: 767px) {
    .p-home-feature__btn + * {
        margin-top: 3rem;
    }
}
.p-home-feature__desc + .c-btn {
    margin-top: 2.5rem;
}
@media (max-width: 767px) {
    .p-home-feature__desc + .c-btn {
        margin-top: 24px;
    }
}
@media (min-width: 768px) {
    .p-home-feature__img {
        padding-left: 4rem;
        margin-right: calc((-100vw + 1200px + 2rem) / 2);
        min-width: 826px;
    }
}
.p-home-feature__img img {
    border-radius: 0.5rem;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (min-width: 768px) {
    .p-home-feature__img img {
        min-width: 826px;
        height: 100%;
    }
}
@media (max-width: 767px) and (max-width: 767px) {
    .p-home-feature__img + * {
        margin-top: 2rem;
    }
}

@media (min-width: 768px) {
    .p-home-feature-col3 {
        padding-top: 1.5rem;
    }
}
.p-home-feature-col3__inner {
    counter-reset: number 0;
}
@media (min-width: 768px) {
    .p-home-feature-col3__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 3.5rem 1.5rem;
    }
}
@media (min-width: 768px) {
    .p-home-feature-col3__inner > * {
        -ms-flex-preferred-size: calc(33.333% - 1rem);
            flex-basis: calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
}
.p-home-feature-col3__title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 150%;
    text-align: center;
}
.p-home-feature-col3__title + * {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .p-home-feature-col3__title + * {
        margin-top: 14px;
    }
}
.p-home-feature-col3__num {
    position: absolute;
    top: -2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    letter-spacing: 0.03rem;
    font-weight: bold;
    color: #DE0105;
    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;
    background-color: #fff;
    padding-left: 1rem;
    padding-right: 1rem;
}
.p-home-feature-col3__num::after {
    counter-increment: number 1;
    content: "0" counter(number) "";
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #DE0105;
    line-height: 0.85;
}
.p-home-feature-col3__item {
    padding: 2.5rem;
    border: 1px solid #D0D0D0;
    border-radius: 0.5rem;
    position: relative;
}
@media (max-width: 767px) {
    .p-home-feature-col3__item + .p-home-feature-col3__item {
        margin-top: 4rem;
    }
}