@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;600&display=swap");
@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    src: url("fonts/NS-500.woff2") format("woff2"), url("fonts/NS-500.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 900;
    src: url("fonts/NS-900.woff2") format("woff2"), url("fonts/NS-900.woff") format("woff");
    font-display: swap;
}

:root {
    font-size: 62.5%;
    --s-2: calc(var(--s1) / 2);
    --s1: 0.8rem;
    --s2: calc(var(--s1) * 2);
    --s3: calc(var(--s1) * 3);
    --s4: calc(var(--s1) * 4);
    --s5: calc(var(--s1) * 5);
    --s6: calc(var(--s1) * 6);
    --s7: calc(var(--s1) * 7);
    --s8: calc(var(--s1) * 8);
    --s9: calc(var(--s1) * 9);
    --s10: calc(var(--s1) * 10);
    --s11: calc(var(--s1) * 11);
    --s12: calc(var(--s1) * 12);
    --s13: calc(var(--s1) * 13);
    --s14: calc(var(--s1) * 14);
    --s15: calc(var(--s1) * 15);
    --s16: calc(var(--s1) * 16);
    --s17: calc(var(--s1) * 17);
    --s18: calc(var(--s1) * 18);
    --s19: calc(var(--s1) * 19);
    --s20: calc(var(--s1) * 20);
    --fs-s: clamp(1.2rem, 1.11rem + 0.24vw, 1.4rem);
    --fs-m: clamp(1.5rem, 1.31rem + 0.24vw, 1.6rem);
    --fs-l: clamp(1.6rem, 1.24rem + 0.97vw, 2.4rem);
    --fs-xl: clamp(2.0rem, 1.64rem + 0.97vw, 2.8rem);
    --fs-2xl: clamp(2.5rem, 2.14rem + 0.97vw, 3.3rem);
    --fs-xxl: clamp(3.1rem, 1.8rem + 1.33vw, 4.4rem);
    --white: #FFFFFF;
    --gray-back: #4A505F;
    --darkgray: #2D3139;
    --red: #E55329;
    --palered: #ffc4b4;
    --black: #1B1D22;
    --gray: #e7e7e7;
    --white-text: #FFFFFF;
    --sha: rgba(0, 0, 0, 0.08);
    --shh: rgba(0, 0, 0, 0.12);
    --r-xs: var(--s-2);
    --r-sm: var(--s1);
    --r-md: var(--s2);
    --r-lg: var(--s3);
    --r-xl: var(--s4);
    --sd-0: none;
    --sd-1: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
    --sd-2: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.15);
    --sd-3: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1000px) {
    :root {
        font-size: 1vw;
        --s1: 0.6rem;
    }
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Jost", "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    line-height: 1.6;
    color: var(--txt-main);
    min-width: 1100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

::-webkit-scrollbar {
    width: 0.3rem;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--gray-border);
    border-radius: 0.4rem;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--black);
}

* {
    scrollbar-color: var(--gray-border) transparent;
    scrollbar-width: thin;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ul, ol, dl, p, img, form, dt, dd, figure {
    margin: 0;
    padding: 0;
    border: 0;
}

ul li, ol li {
    list-style: none;
    position: relative;
}

ul:not([class]) li {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

ul:not([class]) li::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: var(--red);
    position: absolute;
    bottom: calc(100% - 1.2em);
    left: 0.4em;
}

ol:not([class]) li {
    padding-left: 1.5em;
    margin-bottom: 1em;
    counter-increment: number;
}

ol:not([class]) li::before {
    content: counter(number);
    width: 1.6rem;
    color: white;
    font-size: 1.6rem;
    background: var(--pri);
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 0.2rem;
    left: 0;
}

input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 1.6rem;
    font-family: "Jost", "Noto Sans JP", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    transition: opacity 0.6s ease, color 0.6s ease;
}

a:active, a:hover {
    text-decoration: none;
    opacity: 0.6;
}

strong {
    font-weight: 900;
}

em {
    font-style: italic;
    font-weight: normal;
}

small {
    font-size: 80%;
}

p:not([class]) {
    line-height: 1.8;
	margin: var(--s1) 0 var(--s1);
}

p+p {
    margin-top: 0.6em;
}

* {
    box-sizing: border-box;
}

.sp_br {
    display: none;
}

.pc_br {
    display: inline;
}

.for-sp {
    display: none;
}

.sp-only, .sp_only {
    display: none;
}

.pc-only {
    display: inline;
}

.small {
    font-size: 80%;
}

.marker {
    font-weight: 900;
    background: linear-gradient(var(--acc) calc(100% - 30%), var(--acc) calc(100% - 30%));
}

.txt_bold {
    font-weight: 900;
    color: var(--red);
}

.noise-grad-text {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, rgba(255,255,255,0.15) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: url(#noise);
    display: inline-block;
}

#low-page{
	margin-top: 0;
	overflow-x: hidden;
}

.l-center, .l-container {
    max-width: 1200px;
    box-sizing: content-box;
    margin: 0 auto;
}

.l-sec {
    color: var(--txt);
    padding: var(--s10) 0 var(--s16);
}

.l-sec.is-lower {
    padding-top: var(--s3);
    padding-bottom: var(--s9);
}

.l-stack-xs {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
}

.l-stack-s {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.l-stack-sm {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.l-stack-m {
    display: flex;
    flex-direction: column;
    gap: var(--s5);
}

.l-stack-md {
    display: flex;
    flex-direction: column;
    gap: var(--s7);
}

.l-stack-l {
    display: flex;
    flex-direction: column;
    gap: var(--s10);
}

.l-stack-xl {
    display: flex;
    flex-direction: column;
    gap: var(--s12);
}

.l-column {
    gap: var(--s2);
}

.l-column__side {
    width: 100%;
}

.l-column__main {
    width: 100%;
}

.l-grid-2 {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.l-grid-3 {
    display: grid;
    gap: var(--s3);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l-grid-two, .l-grid-two-large {
    display: grid;
    gap: var(--s6);
    grid-template-columns: repeat(2, minmax(0, 1fr));
	padding-bottom: 30px;
}

.l-grid-three {
    display: grid;
    gap: var(--s6);
    grid-template-columns: repeat(3, minmax(0, 1fr));
	padding-bottom: 30px;
}

.l-grid-four {
    display: grid;
    gap: var(--s2);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.l-grid-two-flex, .l-grid-three-flex, .l-grid-four-flex {
    --minimum: calc((100% - var(--s2)) / 2);
}

@media screen and (max-width: 768px) {
    .l-sec {
        padding: var(--s9) 0 var(--s12);
    }
    .l-sec.is-lower {
        padding-top: var(--s5);
        padding-bottom: var(--s6);
    }
    .l-stack-l {
        gap: var(--s7);
        padding: 0;
    }
    .l-stack-md{
        gap: var(--s5);
    }
    .l-grid-2, .l-grid-3, .l-grid-two, .l-grid-two-large, .l-grid-three, .l-grid-four {
        display: flex;
        flex-direction: column;
        gap: var(--s8);
    }
}

.l-cluster {
    gap: var(--s2);
    flex-flow: column;
}

.l-center-img {
    max-width: 60rem;
    margin: 0 auto;
    padding-bottom: var(--s2);
    text-align: center;
}

.l-left-img {
    width: 40%;
    margin-right: var(--s4);
    padding-bottom: var(--s1);
    text-align: center;
    float: left;
}

.l-right-img {
    width: 40%;
    margin-left: var(--s3);
    padding-bottom: var(--s1);
    text-align: center;
    float: right;
}

.l-center-img-box, .l-left-img-box, .l-right-img-box {
    display: flow-root;
}

.l-center-img-catch, .l-left-img-catch, .l-right-img-catch {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    color: var(--pri);
    margin-bottom: var(--s1);
    line-height: 1.6;
}

.l-scroll-x {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.l-scroll-x::-webkit-scrollbar {
    height: 0.6rem;
}

.l-scroll-x::-webkit-scrollbar-track {
    border-radius: var(--r-sm);
    background: #eee;
}

.l-scroll-x::-webkit-scrollbar-thumb {
    border-radius: var(--r-sm);
    background: #ddd;
}

.l-scroll-x table {
    width: inherit;
}

.l-scroll-x table th, .l-scroll-x table td {
    min-width: 20rem;
}

.l-header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-gnavi {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

.l-gnavi::-webkit-scrollbar {
    display: none;
}

#pankuzuWrap {
    background: none;
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0rem 0;
    position: absolute;
    color: #fff;
    padding: 0;
    width: 100%;
    z-index: 1;
    top: 8rem;
}

#pankuzuWrap .l-center{
    margin: 0;
    max-width: none;
}

#pankuzuWrap {
    scrollbar-width: none;
}

#pankuzuWrap::-webkit-scrollbar {
    height: 0;
    background: transparent;
}

#pankuzuWrap:hover,
#pankuzuWrap:focus-within,
#pankuzuWrap:active {
    scrollbar-width: thin;
}

#pankuzuWrap:hover::-webkit-scrollbar,
#pankuzuWrap:focus-within::-webkit-scrollbar,
#pankuzuWrap:active::-webkit-scrollbar {
    height: 0.4rem;
}

#pankuzuWrap::-webkit-scrollbar-track {
    background: transparent;
}

#pankuzuWrap::-webkit-scrollbar-thumb {
    background: var(--gray-border);
    border-radius: var(--r-sm);
}

#pankuzu {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 1rem 0;
    color: #fff;
    padding: 0 4rem;
    width: 100%;
}

#pankuzu a {
    color: inherit;
    text-decoration: underline;
}

#pankuzu a:hover {
    text-decoration: none;
}

#pankuzu span {
    color: inherit;
    font-weight: inherit;
}

#low-page h2:not([class])::before {
    content: "";
    display: block;
    width: 10.5rem;
    height: 10.5rem;
    margin: 0 0 var(--s-2);
    background: url("img/h2_icon.png") no-repeat center / contain;
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

#low-page h2:not([class]) {
    width: 100%;
    margin-block: var(--s6) var(--s1);
    font-size: 4.5rem;
    font-weight: 900;
    font-size: var(--fs-xxl);
    padding: var(--s2) var(--s3) var(--s2) var(--s10);
    border-radius: var(--r-md);
    color: var(--black);
    line-height: 1.6;
    position: relative;
    border: none;
}

#low-page h3:not([class]) {
    width: 100%;
    margin-block: var(--s4) var(--s3); padding: var(--s2) var(--s3);
    font-size: var(--fs-xl);
    font-weight: 900;
    line-height: 1.5;
    padding-left: var(--s8);
    min-height: var(--s5);
    background: var(--c0) url(img/h3_icon.svg) no-repeat left 1.3rem center / var(--s5) auto;
}

#low-page h4:not([class]) {
    width: 100%;
    margin-block: var(--s4) var(--s3); padding: var(--s2) var(--s3);
    font-size: var(--fs-l);
    font-weight: 900;
    padding-left: var(--s3);
    line-height: 1.6;
    border-bottom: var(--darkgray) solid 1px;
    position: relative;
}

#low-page h4:not([class])::before {
    content: "";
    display: block;
    width: 22rem;
    height: 0.3rem;
    margin: 0 0 var(--s-2);
    background: var(--pri);
    left: 0;
    position: absolute;
    bottom: -0.3rem;
    margin: auto;
}

#low-page h5:not([class]) {
    width: 100%;
    margin-block: var(--s4) var(--s3); padding-left: var(--s5);
    font-size: var(--fs-m);
    line-height: 1.6;
    font-weight: bold;
    color: var(--red);
    padding: var(--s2) var(--s3);
}

#low-page h2:not([class]) a {
    display: block;
    padding-right: 1.6em;
    text-decoration: none;
    background: url("./img/arrow_red.svg") no-repeat center right / auto 2rem;
}

 #low-page h3:not([class]) a, #low-page h4:not([class]) a, #low-page h5:not([class]) a {
    display: block;
    padding-right: 1.6em;
    text-decoration: none;
    background: url("./img/arrow_red.svg") no-repeat center right / auto 2rem;
}

#low-page h2:not([class]) a:hover, #low-page h3:not([class]) a:hover, #low-page h4:not([class]) a:hover, #low-page h5:not([class]) a:hover {
    opacity: 0.6;
}

.low-center-img {
    max-width: 60%;
    margin: 0 auto;
    padding-bottom: var(--s2);
    text-align: center;
}

.low-left-img {
    width: 40%;
    margin-right: var(--s4);
    padding-bottom: var(--s1);
    text-align: center;
    float: left;
}

.low-right-img {
    width: 40%;
    margin-left: var(--s3);
    padding-bottom: var(--s1);
    text-align: center;
    float: right;
}

.low-center-img-box, .low-left-img-box, .low-right-img-box {
    display: flow-root;
    margin-block: var(--s7); }

 .low-center-img-catch, .low-left-img-catch, .low-right-img-catch {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.5;
    color: var(--red);
    margin-bottom: var(--s2);
    line-height: 1.6;
}

.caption {
    margin-top: 0.8em;
    color: var(--txt-sub);
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    word-break: break-all;
}

.caption a {
    color: var(--txt-sub);
}

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

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

.caption-scroll {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.caption-scroll a {
    color: var(--txt-sub);
}

.caption-scroll::-webkit-scrollbar {
    height: 0.6rem;
}

.caption-scroll::-webkit-scrollbar-track {
    border-radius: var(--r-sm);
    background: #eee;
}

.caption-scroll::-webkit-scrollbar-thumb {
    border-radius: var(--r-sm);
    background: #ddd;
}

table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    background: var(--c0);
}

table th, table td {
    padding: var(--s1);
    border-bottom: 1px solid var(--ln);
    word-break: break-word;
}

table th {
    text-align: left;
    border-color: var(--pri);
}

#low-page table {
    margin-block: 4rem; }

#low-page ul:not([class]), #low-page ol:not([class]) {
    margin-block: 2rem;
    margin-left: var(--s2);
    margin-right: var(--s2);
}

.btn-internal, .btn-anchor, .btn-web, .btn-tel {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

#index .btn-web, #index .btn-tel, #index .btn-internal, #index .btn-anchor {
    width: 95%;
    margin: 0 auto var(--s1);
}

.btn-internal a, .btn-anchor a, .btn-web a, .btn-tel a {
    width: 100%;
    margin: 0;
    display: block;
    color: var(--white);
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    padding: var(--s2) var(--s6) var(--s2) var(--s5);
    border-radius: 50vh;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--sd-3);
}

.btn-internal:hover a, .btn-anchor:hover a, .btn-web:hover a, .btn-tel:hover a {
    transform: translateY(var(--s-2));
    box-shadow: none;
    opacity: 1;
}

.btn-internal a {
    background: url("./img/arrow_white.svg") no-repeat center right 1.4em / auto 1em, var(--pri-dark);
}

.btn-anchor a {
    padding: var(--s2) var(--s6) var(--s2) var(--s5);
    background: url("./img/arrow-down.png") no-repeat center right 2rem / auto 0.8em, linear-gradient(to right, #999, #666);
}

.btn-web {
    z-index: 5;
}

.btn-web a {
    padding: var(--s2) var(--s5);
    background: url("img/arrow_white.svg") no-repeat center right 1.4em / auto 1em, var(--acc-dark);
}

.btn-link {
    text-align: right;
}

.btn-link a {
    margin: 0;
    background: url("./img/arrow_red.svg") no-repeat top 0.3em right/auto 0.8em;
    display: inline-block;
    font-weight: 900;
    line-height: 1.4;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding-right: 1.5rem;
}

.btn-link a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background: var(--ln);
}

.btn-link a:hover {
    opacity: 0.4;
}

.btn-link a:hover::before {
    opacity: 0;
}

.btn-tel {
    display: none;
}

.btn-internal a, .btn-anchor a, .btn-web a {
    background-size: auto 1.4em;
}

.footer-area {
    padding: var(--s5) 0 0;
    background: var(--black);
    color: var(--white);
    position: relative;
}

.footer-area a {
    color: var(--white);
}

.footer-area a:hover {
    opacity: 0.6;
    transition: 0.2s;
}

.footer-area-logo {
    width: 100%;
    max-width: 100%;
    margin: 0 0 var(--s4);
}

.footer-area-logo a {
    display: block;
}

.footer-main {
    max-width: 120rem;
    margin-right: auto;
    margin-left: auto;
    padding: var(--s3) 0;
    box-sizing: content-box;
    display: flex;
    align-items: flex-start;
    gap: var(--s6);
}

.footer-left {
    flex: 0 0 28rem;
}

.footer-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s6) var(--s4);
}

.footer-bottom {
    padding: var(--s2) 0;
    background: var(--black);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-box+.footer-box {
    margin-top: 0;
}

.footer-menu-title {
    margin-bottom: var(--s1);
    font-size: 1.4rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-menu-title__link {
    padding: var(--s1);
    display: block;
    text-decoration: none;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-menu__item {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.6;
}

.footer-menu__item::before {
    display: none;
}

.footer-menu__link {
    padding: var(--s1);
    display: block;
    text-decoration: none;
}

.footer-menu-sub {
    margin-left: var(--s1);
}

.footer-menu-sub__item {
    font-size: 1.2rem;
    line-height: 1.6;
}

.footer-menu-sub__item::before {
    display: none;
}

.footer-menu-sub__link {
    padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
    display: block;
    text-decoration: none;
    position: relative;
}

.footer-menu-sub__link::before {
    content: "└";
    position: absolute;
    top: var(--s-2);
    left: 0;
}

.footer-disclaimer {
    width: 100%;
    margin: var(--s4) 0 0;
    padding: 0;
    background: transparent;
    font-size: 1.2rem;
    line-height: 1.6;
}

.footer-disclaimer__label {
    display: inline;
}

.footer-disclaimer__text {
    display: inline;
}

.footer-nocopy {
    margin: var(--s5) 0;
    font-size: 1.2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 1.2rem;
}

.footer-copyright__link {
    color: var(--white);
    text-decoration: none;
}

.footer-sitemap {
    font-size: 1.2rem;
}

.footer-sitemap__link {
    padding: 0 1.2em 0 0;
    background: url("./img/arrow_white.svg") no-repeat center right/auto 1em;
    color: var(--white);
    text-decoration: none;
}

.page-top {
    width: 8.4rem;
    height: 8.4rem;
    position: fixed;
    right: var(--s4);
    bottom: var(--s7);
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-top.js-show {
    opacity: 1;
}

.page-top__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url(img/icon_bg.png) no-repeat center / contain;
    padding: 20% 15% 15%;
}

.page-top__link img {
  width: 80%;
  height: auto;
}

.related-article01-frame {
    border: 1px solid var(--ln);
    margin: var(--s6) auto;
    padding: var(--s1) var(--s3) var(--s4) var(--s3);
    background: var(--c0);
    position: relative;
}

.related-article01-title {
    padding: var(--s2) var(--s2) var(--s3) var(--s8);
    color: var(--txt);
    font-size: var(--fs-m);
    font-weight: bold;
    line-height: 1;
    background: url("./img/dummy.png") no-repeat left center;
    background-size: 5rem auto;
    position: relative;
    border-bottom: 1px solid var(--ln);
}

.related-article01-list {
    padding: var(--s2) 0 var(--s2) var(--s2);
    font-weight: 900;
}

.related-article01-list li {
    margin: 0 0 0 var(--s2);
    padding-left: 1.5em;
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}

.related-article01-list li+li {
    margin-top: 10px;
}

.related-article01-list li::before {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: var(--pri);
    position: absolute;
    top: .6rem;
    left: 0;
}

.related-article01-list a {
    display: block;
    text-decoration: none;
}

.related-article01-list a:hover {
    opacity: 0.6;
}

.relations-box.relations-box--column {
    display: flex;
    gap: 10px;
}

.relations-box__pic {
    flex: 0 0 150px;
}

.is-hidden {
    display: none;
}

.related-article01-more {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, var(--white) 50%);
    background-color: transparent;
    width: 100%;
    height: 25%;
    position: absolute;
    bottom: -40px;
    left: 0;
    padding: 2rem 0;
}

.related-article01-more.is-closed {
    display: none;
}

.related-article01-btn {
    border: 1px solid var(--ln);
    background: var(--white);
    border-radius: 100px;
    padding: 1rem 5rem 1rem 2rem;
    position: relative;
}

.related-article01-btn::before {
    content: "";
    width: 1.8rem;
    height: .2rem;
    background: var(--txt);
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translate(0, -50%);
}

.related-article01-btn::after {
    content: "";
    width: .2rem;
    height: 1.8rem;
    background: var(--txt);
    position: absolute;
    top: 50%;
    right: 2.3rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.related-article01-btn:hover {
    opacity: 0.6;
}

.mainvisual-lower .mv-sec__content {
    max-width: none;
    margin: 8rem auto 5rem;
}

.mainvisual-lower .mv-sec__title {
    font-size: clamp(2.5rem, 3vw, 5rem);
    color: #fff;
    margin-bottom: var(--s3);
}

.mainvisual-lower .mv-sec__lead {
    font-size: var(--fs-m);
    font-weight: 500;
    color: #fff;
}

.mainvisual-lower .mv-sec__inner {
    padding: 1rem var(--s3) var(--s5);
}

.mainvisual-lower .mv-sec {
    min-height: 20rem;
    align-items: flex-start;
    padding-top: 4rem;
	margin-bottom: var(--s10);
}


.mainvisual-lower--no-mb .mv-sec {
    margin-bottom: 0;
}

.mainvisual-lower .mv-sec__bg-photo {
    background: url(img/cta_bg.jpg) center right / cover no-repeat;
    filter: grayscale(100%);
}

.mainvisual-lower .mv-sec__bg-grad {
    background: rgb(44 57 89 / 90%);
}

.mainvisual-lower .mv-sec__title::before {
    display: none;
}

@media screen and (max-width: 767px) {
    .mainvisual-lower .mv-sec {
        margin-bottom: var(--s4);
    }

    .mainvisual-lower--no-mb .mv-sec {
        margin-bottom: 0;
    }
}

#low-page.l-center {
    max-width: none;
    padding: 0;
    margin-block: 0 15rem;
}

@media screen and (max-width: 767px) {
    #low-page.l-center {
    max-width: none;
    padding: 0;
    margin-block: 0 var(--s5);
}
}

.mainvisual-lower {
    margin-top: -3rem;
}
section.cat-sec.l-center {
    margin-bottom: 10rem;
}

#low-page.l-center:has(.faq-page),
#low-page.l-center:has(.guide-page) {
    margin-block: 0;
}

h2.cat-flow-midasi {
    display: flex;
    align-items: center;
    gap: var(--s1);
    font-size: var(--fs-xxl);
    font-weight: 900;
    color: var(--black);
    padding-bottom: .2rem;
    border-bottom: none;
    width: fit-content;
    margin: var(--s8) auto var(--s1);
}

h2.cat-flow-midasi::before {
    content: "" !important;
    display: block !important;
    width: 6rem;
    min-height: 6rem;
    background-image: url(img/shield_icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    flex-shrink: 0;
    transform: translateY(-0.12em);
}

#low-page .btn-web a, #low-page .btn-internal a, #low-page .btn-anchor a, #low-page .btn-tel a {
    white-space: inherit;
    max-width: 100%;
    padding: 2rem 4rem;
    background-position: right 1rem center;
}

.column-medium {
padding-top: var(--s0);
    padding-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
    border: 1px solid var(--site-color09);
}

.onb-box-full {
    width: calc(100% + var(--s8));
    margin-left: calc(var(--s4) * -1);
}

.onb-casebox02-frame {
    padding: var(--s4);
    background-color: var(--c0);
    position: relative;
}

.onb-casebox02-sub {
    padding: var(--s1) var(--s3);
    background-color: #818181;
    color: #fff;
    font-size: 2.1rem;
    border-radius: 5rem;
    transform: translateX(-50%);
    position: absolute;
    top: -2rem;
    left: 50%;
}

.l-onb-casebox02 {

    flex-wrap: wrap;
    gap: var(--s3);
}

.l-onb-casebox02__side {
    width: calc((100% - var(--s3))*.3);
}

.l-onb-casebox02__main {
    width: calc((100% - var(--s3))*.7);
}

.onb-casebox02-imgcap {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.onb-casebox02-catch {
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--black);
    border-bottom: 0.2rem var(--pri) solid;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.onb-casebox02-caption {
    text-align: left;
}

.onb-casebox03-frame {
    margin-top: 2rem;
    position: relative;
}

.onb-casebox03-sub {
    padding: var(--s1) var(--s3);
    background-color: #818181;
    color: #fff;
    font-size: 2.1rem;
    border-radius: 5rem;
    transform: translateX(-50%);
    position: absolute;
    top: -2rem;
    left: 50%;
}

.l-onb-casebox03 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    margin-bottom: 2rem;
}

.l-onb-casebox03__side {
    width: 100%;
    margin-bottom: var(--s3);
}

.l-onb-casebox03__main {
    width: calc((100% - var(--s2))*.75);
}

.onb-casebox03-table {
    width: 100%;
    border: 1px solid #EEE;
    background-color: #fff;
    border-collapse: collapse;
}

.onb-casebox03-table th {
    font-weight: normal;
    text-align-last: left;
    background-color: #D2D2D2;
}

.onb-casebox03-table th, .onb-casebox03-table td {
    border: 1px solid #eee;
    padding: var(--s1);
}

.onb-casebox03-catch {
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 2rem;
}

.onb-casebox03-caption {
    text-align: left;
}

.onb-iconbox03-frame p {
    font-size: 1.4rem;
}

.onb-iconbox03-sub {
    text-align: center;
}

.onb-iconbox03-sub span {
    padding: var(--s1) var(--s2);
    display: inline-block;
    background-color: #D1D1D1;
    border: 1px solid #707070;
}

.onb-iconbox03-img {

    margin-bottom: 2rem;
}

.onb-iconbox03-catch {
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--red);
    margin-bottom: var(--s2);
}

.onb-iconbox03-caption {
    text-align-last: left;
}

.onb-iconbox04-frame {
    margin-top: 2rem;
    padding: var(--s4);
    background-color: var(--c0);
    position: relative;
}

.onb-iconbox04-frame .btn-internal{
    margin: var(--s4) auto 0;
}

.onb-iconbox04-catch {
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--black);
    border-bottom: 0.2rem var(--pri) solid;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.onb-iconbox04-caption {
    text-align-last: left;
}

.arrow-down-icon {
    display: block;
    margin: var(--s2) auto;
}

.onb-com-box01-r-frame {
    margin-block: 4rem; }

.l-onb-com-box01-r {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
}

.l-onb-com-box01-r__side {
    width: calc((100% - var(--s3))*0.3);
}

.l-onb-com-box01-r__side img {
    max-width: 100%;
}

.l-onb-com-box01-r__main {
    width: calc((100% - var(--s3))*0.7);
}

.onb-com-box01-r-catch {
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 2rem;
}

.onb-com-box01-r-imgcap {
    margin-top: var(--s1);
    text-align: center;
    font-size: 1.2rem;
}

.onb-com-box01-r-caption {
    text-align-last: left;
}

.onb-listbox-area {
    padding: 4rem;
    background-color: var(--c0);
    position: relative;
    margin-block: 5rem 10rem; }

.onb-listbox-title {
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--pri);
    margin-bottom: 2rem;
}

.onb-listbox-title span {
    padding: .8rem;
    color: #fff;
    background-color: #484140;
    display: inline-block;
}

.onb-listbox-subtitle {
    text-align: center;
    font-weight: 900;
}

.onb-listbox-list {
    width: 100%;
}

.onb-listbox-list li {
    padding-left: var(--s4);
    line-height: 1.5;
    background: url('./img/list_icon.svg') no-repeat center left 1rem;
    background-size: 0.8rem 0.8rem;
    margin-bottom: 0.5rem;
}

.onb-listbox-list li span {
    margin-right: var(--s1);
    display: block;
    text-align: center;
}

.c-comment-sec {
    position: relative;
    background: linear-gradient(to bottom, #9f9f9f, #fff);
    padding: var(--s6) var(--s10);
    margin-block: 5rem 10rem;
}

.c-comment-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch' result='noiseOut'/%3E%3CfeColorMatrix type='saturate' values='0' in='noiseOut' result='grayNoise'/%3E%3CfeBlend in='SourceGraphic' in2='grayNoise' mode='overlay' result='blended'/%3E%3CfeComposite in='blended' in2='SourceGraphic' operator='in'/%3E%3C/filter%3E%3C/svg%3E#n");
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.c-comment-sec > * {
    position: relative;
    z-index: 1;
}

.c-comment-sec .c-h2 {
    text-align: left;
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 2rem;
    FONT-WEIGHT: 900;
}

.c-comment-wrap {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--s5);
    align-items: center;
}

.c-comment-img img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.c-comment-body {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
}

.c-comment-tit {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.c-comment-body p {
    margin: 0;
    color: var(--txt);
    line-height: 1.8;
    font-size: var(--fs-s);
}

.c-comment-body span {
    padding-left: 1.5rem;
}

.c-comment-credit {
    text-align: right;
    color: var(--txt-sub);
    font-size: var(--fs-s);
    FONT-WEIGHT: 900;
}

.c-comment-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s6);
    padding: var(--s4);
    background: var(--c0);
    margin-top: var(--s5);
}

.c-comment-action p {
    margin: 0;
    font-weight: 900;
    color: var(--txt);
}

.c-comment-action .btn-web {
    margin: 0;
    flex-shrink: 0;
}

.c-company-intro-sec {
    margin-block: 5rem 10rem; }

.c-company-intro-title {
    text-align: center;
    display: flex;
    align-items: center;
    gap: var(--s1);
    font-size: var(--fs-xxl);
    font-weight: 900;
    color: var(--black);
    padding-bottom: .2rem;
    border-bottom: none;
    width: fit-content;
    margin: 0 auto var(--s5);
}

.c-company-intro-title::before {
    content: "" !important;
    display: block !important;
    width: 6rem;
    min-height: 6rem;
    background-image: url(img/shield_icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    flex-shrink: 0;
}

.c-company-intro-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--s5);
    padding: var(--s5);
    background: var(--pri-dark) url(img/bg_grid.svg) repeat;
    background-size: 217px 305px;
}

.c-company-intro-logo img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

.c-company-intro-body {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.c-company-intro-name {
    font-size: var(--fs-l);
    font-weight: 900;
    color: #ffffff;
}

.c-company-intro-meta {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
    font-size: var(--fs-s);
    color: var(--txt);
}

.c-company-intro-meta p {
    margin: 0;
}

.c-company-intro-meta a {
    color: #ffffff;
    text-decoration: none;
}

.c-company-intro-meta a:hover {
    opacity: 0.6;
}

.c-company-intro-body p {
    margin: 0;
    color: #ffffff;
    line-height: 1.8;
    font-size: var(--fs-s);
}

.flow-sec.cat-flow {
    margin-inline: calc(50% - 50vw);
    padding-inline: calc(50vw - 50%);
}

.faq-sec.cat-flow {
    margin-inline: calc(50% - 50vw);
    padding-inline: calc(50vw - 50%);
}

.guide-page .faq-sec.cat-flow {
    margin-top: var(--s14);
}

.faq-sec.cat-flow .faq-content.l-stack-m {
    flex: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    margin-block: 5rem 10rem; gap: 0;
}

.faq-sec.cat-flow .faq-title {
    text-align: center;
    display: flex;
    align-items: center;
    gap: var(--s1);
    font-size: var(--fs-xxl);
    font-weight: 900;
    color: var(--white);
    padding-bottom: .2rem;
    border-bottom: none;
    width: fit-content;
    margin: 0 auto var(--s5);
}

.faq-sec.cat-flow .faq-title::before {
    content: "" !important;
    display: block !important;
    width: 6rem;
    min-height: 6rem;
    background-image: url(img/shield_icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    flex-shrink: 0;
    transform: translateY(-0.12em);
    filter: brightness(0) invert(1);
}

.faq-sec.cat-flow .faq-item {
    background: var(--white);
    overflow: hidden;
}

.faq-sec.cat-flow dt.faq-item__q {
    display: flex;
    align-items: center;
    gap: var(--s2);
    font-size: var(--fs-l);
    font-weight: 900;
    color: var(--black);
    padding: var(--s3) var(--s4) var(--s3) var(--s3);
    line-height: 1.6;
}

.faq-sec.cat-flow .faq-item__a {
    align-items: center;
}

.cases-sec.cat-flow {
    margin-inline: calc(50% - 50vw);
    padding-inline: calc(50vw - 50%);
}

.cases-sec .cat-cases-title {
    display: flex;
    align-items: center;
    gap: var(--s1);
    font-size: var(--fs-xxl);
    font-weight: 900;
    color: var(--white);
    padding-bottom: .1rem;
    border-bottom: none;
    width: fit-content;
    margin: 0 auto var(--s1);
}

.cases-sec .cat-cases-title::before {
    content: "";
    display: block;
    width: 6rem;
    min-height: 6rem;
    background-image: url(img/shield_icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    flex-shrink: 0;
    transform: translateY(-0.12em);
    filter: brightness(0) invert(1);
}

.cases-sec .cat-cases-title a {
    color: inherit;
    text-decoration: none;
}

.cases-sec .cat-cases-title a::after {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1em;
    background: url("img/arrow_white.svg") no-repeat center / contain;
    vertical-align: -0.8rem;
    margin-left: var(--s2);
}

.cases-card__body .cat-cases-card-tit {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.cases-card__body .cat-cases-card-tit a {
    color: inherit;
    text-decoration: none;
}

.cases-card__body .cat-cases-card-tit a::after {
    content: "";
    display: inline-block;
    width: 1.4rem;
    height: 1em;
    background: url("img/arrow_white.svg") no-repeat center / contain;
    vertical-align: -0.15em;
    margin-left: var(--s1);
}

/* ===================================================
   見出しモーション: 下線が左→右に伸び、続けてアイコンと文字がせり上がる
   対象: h2.cat-flow-midasi / .c-company-intro-title / .faq-title / .cat-cases-title
       / .l-sec h2:not([class])（TOPページの無クラスh2）
   JS側で画面内に入ったタイミングのみ data-inview 属性を付与（common.js参照）。
   h2:not([class]) が対象に含まれるため、判定は class ではなく属性で行う
   （class を付けると :not([class]) の条件から外れて基本スタイルが崩れるため）
   =================================================== */
.cat-flow-midasi,
.c-company-intro-title,
.faq-sec.cat-flow .faq-title,
.cases-sec .cat-cases-title,
.l-sec h2:not([class]) {
    position: relative;
}

.cat-flow-midasi::after,
.c-company-intro-title::after,
.faq-sec.cat-flow .faq-title::after,
.cases-sec .cat-cases-title::after,
.l-sec h2:not([class])::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s cubic-bezier(.25, .1, .25, 1);
}

.cat-flow-midasi[data-inview]::after,
.c-company-intro-title[data-inview]::after,
.faq-sec.cat-flow .faq-title[data-inview]::after,
.cases-sec .cat-cases-title[data-inview]::after,
.l-sec h2:not([class])[data-inview]::after {
    transform: scaleX(1);
}

.cat-flow-midasi::after {
    height: .2rem;
    background: var(--black);
}

.c-company-intro-title::after,
.faq-sec.cat-flow .faq-title::after {
    height: .2rem;
    background: var(--white);
}

.cases-sec .cat-cases-title::after {
    height: .1rem;
    background: var(--white);
}

.l-sec h2:not([class])::after {
    height: .2rem;
    background: var(--black);
}

.h2--wh h2:not([class])::after {
    background: var(--white);
}

.cat-flow-midasi::before,
.c-company-intro-title::before,
.faq-sec.cat-flow .faq-title::before,
.cases-sec .cat-cases-title::before,
.l-sec h2:not([class])::before,
.ttl-text {
    opacity: 0;
    translate: 0 1.2rem;
    transition: opacity .6s ease .45s, translate .6s ease .45s;
}

.cat-flow-midasi[data-inview]::before,
.c-company-intro-title[data-inview]::before,
.faq-sec.cat-flow .faq-title[data-inview]::before,
.cases-sec .cat-cases-title[data-inview]::before,
.l-sec h2:not([class])[data-inview]::before,
[data-inview] .ttl-text {
    opacity: 1;
    translate: 0 0;
}

.ttl-text {
    display: inline-block;
}

#low-page .cases-card table {
    margin-block: 0;
}

@media screen and (max-width: 767px) {
    .cases-sec .cat-cases-title {
        font-size: clamp(2.8rem, 7vw, 3.1rem);
        gap: var(--s1);
    }

    .cases-sec .cat-cases-title::before {
        width: 4.2rem;
        min-height: 4.2rem;
        align-self: center;
        transform: translateY(-0.05em);
    }

    .cases-sec .cat-cases-title a::after {
        height: 0.8em;
        vertical-align: -0.1em;
    }

    .cases-card__body .cat-cases-card-tit {
        font-size: clamp(2.0rem, 5vw, 2.4rem);
    }
}

@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }

    .for-sp, .sp-only, .sp_only {
        display: block;
    }

    .sp_br {
        display: inline;
    }

     :root {
        font-size: 2.6666666667vw;
    }

    body {
        min-width: auto;
        font-size: 1.4rem;
    }

    .sp_br {
        display: inline;
    }

    .pc_br, .for-pc {
        display: none;
    }

    .l-center, .l-container, .c-card .pad-xl {
        padding-right: calc(var(--s2) + var(--s-2));
        padding-left: calc(var(--s2) + var(--s-2));
        box-sizing: border-box;
    }

    .l-cluster {
        gap: var(--s1);
        flex-flow: column;
    }

    .l-column {
        gap: var(--s2);
    }

    .l-column__side, .l-column__main {
        width: 100%;
    }

    .toggle-sp-content {
        display: none;
    }

    .l-float__left-pc, .l-float__right-pc, .l-float__center {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        float: none;
    }

    .l-float__left {
        width: 45%;
        margin-right: var(--s2);
        margin-bottom: var(--s1);
    }

    .l-float__right {
        width: 45%;
        margin-left: var(--s2);
        margin-bottom: var(--s1);
    }

    .l-center-img, .l-left-img, .l-right-img {
        width: 100%;
    }

    .l-scroll-x-sp {
        width: 100%;
        padding-bottom: 0.6rem;
        overflow: hidden;
        overflow-x: scroll;
        overflow-y: visible;
    }

    .l-scroll-x-sp::-webkit-scrollbar {
        height: 0.6rem;
    }

    .l-scroll-x-sp::-webkit-scrollbar-track {
        border-radius: var(--r-sm);
        background: #eee;
    }

    .l-scroll-x-sp::-webkit-scrollbar-thumb {
        border-radius: var(--r-sm);
        background: #ddd;
    }

    .c-hero__inner {
        grid-template-columns: 1fr;
    }

    #pankuzuWrap {
        overflow: auto;
        margin: 0 auto var(--s3);
        padding: var(--s1) 0;
        white-space: nowrap;
        top: 4rem;
    }

    #pankuzu {
        padding: var(--s-2) 0;
        letter-spacing: 0.05em;
        font-size: 1.1rem;
        line-height: 1.2;
    }

    #pankuzu a {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
    }

    #pankuzu a:hover {
        text-decoration: underline;
    }

    #pankuzu span:last-child {
        margin-right: calc(var(--s1) + var(--s-2));
    }

    #pankuzu a span:last-child {
        margin-right: 0;
    }

    #low-page h1:not([class]) {
        padding: var(--s2);
        font-size: 2.4rem;
        line-height: 1.5;
        margin: var(--s6) auto;
    }

    #low-page h1:not([class])::before {
        font-size: 1.8rem;
        padding-left: var(--s1);
    }

    #low-page h1:not([class])::after {
        top: 0.9em;
        width: 0.8rem;
        height: 0.8rem;
    }

    #low-page h2:not([class]) {
        font-size: 2.4rem;
        padding: var(--s2) 0 var(--s2) var(--s6);
    }

    #low-page h3:not([class]) {
        font-size: 2.2rem;
    }

    #low-page h4:not([class]) {
        font-size: 2rem;
    }

    #low-page h5:not([class]) {
        font-size: 1.8rem;
    }

    .low-center-img {
        max-width: 100%;
    }

    .low-center-img iframe {
        width: 100%;
        aspect-ratio: 16/9;
        height: auto;
    }

    .low-left-img, .low-right-img {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: var(--s2);
        float: inherit;
        text-align: center;
    }

    #low-page table {
        margin-block: 0 4rem;
    }

    .sp-table-vertical th, .sp-table-vertical td {
        width: 100%;
        display: block;
    }

    .table-label thead {
        display: none;
    }

    .table-label tbody th {
        background: var(--c0);
    }

    .table-label td {
        padding: 0;
        display: flex;
        position: relative;
    }

    .table-label td::before {
        content: attr(data-label);
        width: 7em;
        background: #efefef;
        border-right: solid 1px #000;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-weight: 900;
        text-align: center;
    }

    .table-label__cell {
        padding: var(--s1) var(--s2);
    }

    .l-scroll-x table thead, .l-scroll-x-sp table thead {
        display: table-header-group;
    }

    .l-scroll-x table tbody, .l-scroll-x-sp table tbody {
        display: table-row-group;
    }

    .l-scroll-x table tr, .l-scroll-x-sp table tr {
        display: table-row;
    }

    .l-scroll-x table th, .l-scroll-x table td, .l-scroll-x-sp table th, .l-scroll-x-sp table td {
        width: inherit;
        min-width: 15rem;
        display: table-cell;
    }

    .l-scroll-x-sp table {
        width: inherit;
    }

    .btn-internal, .btn-anchor, .btn-web {
        margin: var(--s3) auto;
        width: 95%;
    }

    .btn-internal:hover a, .btn-anchor:hover a, .btn-web:hover a {
        transform: none;
    }

    .btn-anchor a {
        padding: var(--s2) var(--s3) var(--s2) var(--s1);
        background: #818181 url("./img/arrow-down.png") no-repeat center right 0.8rem / auto 0.8em;
    }

    .btn-link {
        width: 95%;
        margin: var(--s1) auto;
    }

    .btn-link a {
        border-radius: var(--r-sm);
        padding: var(--s2) var(--s5);
        border: 1px solid #000;
        background: url("./img/arrow_red.svg") no-repeat 97% center/auto 1em;
        text-align: center;
        line-height: 1.5;
        display: block;
        text-decoration: none;
    }

    .btn-link a:hover {
        opacity: 1;
    }

    .btn-link:hover a {
        transform: none;
    }

    .btn-tel {
        margin: var(--s3) auto;
        display: block;
        position: relative;
    }

    .btn-tel a {
        width: 100%;
        margin: 0 auto;
        background: #f3dc6c url(./img/icon-tel.svg) no-repeat center right 1em / auto 1.5em;
        color: var(--txt);
        display: block;
        font-weight: 900;
        line-height: 1.6;
        text-align: center;
        text-decoration: none;
        transition: transform 0.3s;
        border-radius: var(--r-sm);
    }

    .btn-tel:hover a {
        transform: none;
    }

    .footer-area {
        padding: var(--s3) 0 0;
    }

    .footer-area a:hover {
        opacity: 1;
        transition: unset;
    }

    .footer-area-logo {
        width: 60%;
        margin: 0 0 var(--s3);
    }

    .footer-main {
        padding: var(--s3) var(--s2);
        box-sizing: border-box;
        display: block;
    }

    .footer-right {
        display: block;
    }

    .footer-bottom {
        padding: var(--s1) 0;
    }

    .footer-logo {
        margin: var(--s3) var(--s1);
        font-size: 1.8rem;
    }

    .footer-box+.footer-box {
        margin-top: var(--s2);
    }

    .footer-menu-title {
        margin-bottom: 0;
    }

    .footer-menu-title__link {
        padding: var(--s1) var(--s4) var(--s1) var(--s2);
        position: relative;
    }

    .footer-menu-title__link::after {
        content: "";
        width: var(--s3);
        height: 100%;
        background: url("./img/arrow-down.png") no-repeat center/0.6em;
        position: absolute;
        top: 0;
        right: var(--s2);
        transform: rotate(0);
        transition: transform 0.3s;
    }

    .footer-menu-title__link.is-open::after {
        transform: rotate(180deg);
    }

    .footer-menu-title__link--not-toggle::after {
        background: url("./img/arrow_white.svg") no-repeat center/auto 0.7em;
    }

    .footer-menu {
        padding: var(--s1) 0;
        background: rgba(255, 255, 255, 0.8);
        gap: 0;
    }

    .footer-menu__item {
        width: 100%;
    }

    .footer-menu__link {
        padding: var(--s1) var(--s5) var(--s1) var(--s2);
        background: url("./img/arrow_white.svg") no-repeat 95% center/auto 0.8em;
    }

    .footer-menu-sub {
        margin-left: var(--s2);
    }

    .footer-menu-sub__link {
        padding: var(--s1) var(--s2) var(--s1) 1.1em;
    }

    .footer-menu-sub__link::before {
        top: var(--s1);
    }

    .footer-disclaimer {
        width: 100%;
        margin: var(--s3) 0 0;
        padding: 0;
    }

    .footer-nocopy {
        margin: var(--s2) var(--s1);
        font-size: 1rem;
    }

    .footer-copyright {
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .footer-sitemap {
        display: none;
    }

    .page-top {
        width: 6.4rem;
        height: 6.4rem;
        right: var(--s1);
        bottom: var(--s3);
    }

    .page-top__link {
        background-size: 7rem auto;
    }

    .related-article01-list {
        padding: 0;
    }

    .related-article01-list li {
        margin-left: 0;
    }

    .relations-box__pic {
        flex: 0 0 100px;
    }

    .column-medium {
        padding: var(--s2) 0;
        margin-block: 0;
    }

    .column-medium.iconbox03-frame {
        padding: 0 0 var(--s2);
        border: none;
        margin-block: 0;
    }

    .onb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }

    .l-onb-com-box01-r {
        display: flow-root;
    }

    .l-onb-com-box01-r__side {
        width: 30%;
        margin-right: var(--s2);
        margin-bottom: var(--s2);
        float: left;
    }

    .l-onb-com-box01-r__main {
        width: 100%;
    }

    .onb-com-box01-r-catch {
        font-size: 1.8rem;
    }

    .onb-com-box01-r-imgcap {
        font-size: 1rem;
    }

    .onb-listbox-area {
        padding: var(--s2) var(--s2) var(--s2) var(--s2);
    }

    .onb-listbox-list li {
        font-size: 1.4rem;
    }

    .onb-listbox-list--three li {
        width: calc((100% - var(--s2)) / 2);
    }

    .onb-listbox-title {
        margin: 0 auto;
        padding: var(--s2);
        font-size: 1.8rem;
        text-align: center;
    }

    .c-comment-wrap {
        grid-template-columns: 1fr;
        gap: var(--s3);
    }

    .c-comment-action {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--s3);
    }

    .c-comment-action .btn-web {
        width: 100%;
    }

    .c-company-intro-wrap {
        grid-template-columns: 1fr;
        gap: var(--s3);
    }

    .c-company-intro-title {
        font-size: clamp(1.8rem, 6vw, 3.1rem);
        margin-bottom: var(--s5);
        font-size: var(--fs-xxl);
        line-height: 1.5;
        text-align: left;
    }

    .mainvisual-lower .mv-sec__content {
        margin: 4rem auto 0;
        width: 100%;
    }

    #low-page h2:not([class])::before {
        width: 6.5rem;
        height: 6.5rem;
    }

    .onb-casebox02-frame, .onb-iconbox04-frame,.onb-casebox03-frame {
        margin-top: 0;
    }

    .onb-iconbox03-catch{
        margin-bottom: 0;
        font-size: 1.8rem;
    }

    .c-comment-sec {
        padding: var(--s6) var(--s2);
        margin-block: 3rem 5rem; }

    h2.cat-flow-midasi {
        font-size: var(--fs-xxl);
        line-height: 1.5;
        margin: var(--s1) auto var(--s1);
}
    }

    h2.cat-flow-midasi::before, .c-company-intro-title::before,.faq-sec.cat-flow .faq-title::before {
        width: 4rem;
        min-height: 4rem;
    }

    .c-company-intro-sec {
        margin-block: 3rem 5rem; }

    .faq-sec.cat-flow .faq-content.l-stack-m {
        margin-block: 3rem 5rem; }

    .faq-sec.cat-flow {
        margin-inline: calc(50% - 50vw);
        padding-inline: calc(50vw - 50%);
    }

    .c-company-intro-sec .l-container {
        padding-right: 0;
        padding-left: 0;
    }

    .faq-sec.cat-flow .faq-item__a {
    align-items: flex-start;
    display: flex;
}

@media screen and (max-width: 767px){
    .faq-sec.cat-flow .faq-item{
        margin-left: var(--s1);
        margin-right: var(--s1);
    }
}

#ab-materials .l-onb-com-box01-r {
    display: grid;
    grid-template-columns: calc((100% - var(--s3)) * 0.3) calc((100% - var(--s3)) * 0.7);
    gap: var(--s3);
    align-items: start;
}

#ab-materials .l-onb-com-box01-r__side {
    width: auto;
    grid-row: 1 / span 2;
}

#ab-materials .l-onb-com-box01-r__main {
    width: auto;
}

.ab-com-effect {
    display: flex;
    flex-direction: column;
    gap: 0;
}
#low-page .ab-com-effect h3:not([class]){
    margin-block: var(--s2) 0;
}

.ab-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s5);
    padding: var(--s4) var(--s6);
}

.ab-cta-strip p {
    margin: 0;
    flex: 1;
}

.ab-cta-strip__btn {
    flex-shrink: 0;
    margin: 0;
    min-width: 20rem;
}

#ab-comic{
    background: var(--gray) url(img/bg_grid.svg) repeat;
    background-size: 217px 305px;
}

#ab-reason{
    position: relative;
    background: linear-gradient(to bottom, #9f9f9f, #fff);
}

#ab-reason::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch' result='noiseOut'/%3E%3CfeColorMatrix type='saturate' values='0' in='noiseOut' result='grayNoise'/%3E%3CfeBlend in='SourceGraphic' in2='grayNoise' mode='overlay' result='blended'/%3E%3CfeComposite in='blended' in2='SourceGraphic' operator='in'/%3E%3C/filter%3E%3C/svg%3E#n");
    z-index: 0;
    mix-blend-mode: hard-light;
    pointer-events: none;
}

#ab-reason > .l-container {
    position: relative;
    z-index: 1;
}

#ab-reason .l-grid-two, .l-grid-two-large{
    gap: var(--s10);
}

#ab-reason .btn-internal{
    margin-top: 0;
}

#ab-combination{
    background-color: var(--c0);
}

#ab-proof ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s3);
    list-style: none;
    padding: var(--s4) var(--s5) var(--s3);
    background: var(--c0);
    margin: 0;
}

@media screen and (max-width: 767px) {
    .onb-com-box01-r-frame {
        margin-block: 0;
    }
    #ab-materials .l-onb-com-box01-r {
        grid-template-columns: 1fr;
    }

    #ab-materials .l-onb-com-box01-r__side {
        grid-row: auto;
    }

    .ab-cta-strip {
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--s2) var(--s7);
    }

    .ab-cta-strip__btn {
        min-width: auto;
    }

    #ab-proof ul {
        grid-template-columns: 1fr;
    }
    #ab-reason .l-grid-two, .l-grid-two-large{
        gap: var(--s5);
    }

}

