@charset "UTF-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */


/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/

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

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

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


/*
---------------------------------------------

    base settings

*/

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

@media screen and (max-width: 1100px) {
     :root {
        font-size: 0.9090909091vw;
    }
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
    color: #060E32;
}

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

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

li {
    list-style: none;
}

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

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

a {
    color: #060E32;
    transition: opacity 0.6s ease, color 0.6s ease;
    outline: none;
}

a:active,
a:hover {
    color: #060E32;
    text-decoration: none;
}

p {
    line-height: 2;
}

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

strong {
    font-weight: 700;
}

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

small {
    font-size: 80%;
}

* {
    box-sizing: border-box;
}

.sp_br {
    display: none;
}

.pc_br {
    display: inline;
}

@media screen and (min-width: 768px) {
    .for-sp {
        display: none;
    }
}

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


/*
---------------------------------------------

    animation

*/

@keyframes tabAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*  inView */

.slideLeft {
    opacity: 0;
    transform: translate(-3rem, 0);
    transition: all 0.8s ease;
}

.slideLeft.animated {
    opacity: 1;
    transform: translate(0, 0);
}

.slideRight {
    opacity: 0;
    transform: translate(3rem, 0);
    transition: all 0.8s ease;
}

.slideRight.animated {
    opacity: 1;
    transform: translate(0, 0);
}

.fadeInUp {
    opacity: 0;
    transform: translate(0, 2rem);
    transition: transform 0.5s ease, opacity 0.5s ease, background 0.3s ease;
}

.fadeInUp.animated {
    opacity: 1;
    transform: translate(0, 0);
}

.fadeInDown {
    opacity: 0;
    transform: translate(0, -2rem);
    transition: all 0.5s ease;
}

.fadeInDown.animated {
    opacity: 1;
    transform: translate(0, 0);
}


/*
---------------------------------------------

    layout center

*/

.l-center {
    max-width: 110rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--s3);
    padding-left: var(--s3);
    box-sizing: content-box;
}

.l-center--narrow {
    max-width: 100rem;
}


/*
---------------------------------------------

    layout stack

*/

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

.l-stack>* {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/*
---------------------------------------------

    layout cluster

*/

.l-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s1);
}


/*
---------------------------------------------

    layout grid

*/

.l-grid {
    --minmum: calc((100% - var(--s5)) / 2);
    display: grid;
    grid-gap: var(--s5);
}

.l-grid-wide {
    --minmum: calc((100% - var(--s6)) / 2);
    display: grid;
    grid-gap: var(--s6);
}

.l-grid-three {
    --minmum: calc((100% - var(--s4) * 2) / 3);
    display: grid;
    grid-gap: var(--s5) var(--s4);
}

@supports (width: min(var(--minmum),
100%)) {
    .l-grid,
    .l-grid-wide,
    .l-grid-three {
        grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
    }
}


/*
---------------------------------------------

    layout sidebar

*/

.l-sidebar {
    display: flex;
    gap: var(--s3);
    align-items: flex-start;
}

.l-sidebar__side {
    width: 22.5rem;
    padding-bottom: var(--s10);
    position: sticky;
    top: 9.8rem;
}

.l-sidebar__main {
    flex: 1;
    padding-bottom: var(--s10);
}


/*
---------------------------------------------

    layout column

*/

.l-column {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s5);
}

.l-column__side {
    width: 51rem;
}

.l-column__side02 {
    width: 64rem;
}

.l-column__side03 {
    width: 15rem;
}

.l-column__side04 {
    width: 32rem;
}

.l-column__side05 {
    width: 12rem;
}

.l-column__main {
    flex: 1;
}

.l-column--row-reverse {
    flex-direction: row-reverse;
}

.l-column--align-center {
    align-items: center;
}


/*
---------------------------------------------

    layout grid areas

*/

.l-grid-areas {
    display: grid;
    grid-template-areas: "img catch" "img text";
    grid-template-columns: 64rem 1fr;
    grid-template-rows: auto 1fr;
    grid-gap: var(--s2) var(--s5);
}

.l-grid-areas__cell-01 {
    grid-area: catch;
}

.l-grid-areas__cell-02 {
    grid-area: img;
}

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

.l-grid-areas__cell-03 {
    grid-area: text;
}

.l-grid-areas--row-reverse {
    grid-template-areas: "catch img" "text img";
    grid-template-columns: 1fr 64rem;
    align-items: center;
}

.l-grid-areas--align-center {
    grid-template-rows: auto auto;
}

.l-grid-areas--align-center .l-grid-areas__cell-01 {
    place-self: end start;
}

.l-grid-areas--align-center .l-grid-areas__cell-02 {
    place-self: center;
}

.l-grid-areas--align-center .l-grid-areas__cell-03 {
    place-self: start;
}


/*
---------------------------------------------

    layout float

*/

.l-float {
    display: flow-root;
    margin: var(--s3) auto;
}

.l-float__left-pc {
    width: 27rem;
    margin-right: var(--s5);
    margin-bottom: var(--s2);
    float: left;
}

.l-float__right-pc {
    width: 27rem;
    margin-left: var(--s5);
    margin-bottom: var(--s2);
    float: right;
}

.l-float__center {
    /* width: 50rem; */
    margin: var(--s2) auto;
}

.l-float__left {
    width: 27rem;
    margin: var(--s2) var(--s5) var(--s2) 0;
    float: left;
}

.l-float__right {
    width: 27rem;
    margin: var(--s2) 0 var(--s2) var(--s5);
    float: right;
}


/*
---------------------------------------------

    layout scroll x

*/

.l-scroll-x {
    width: 100%;
    padding-bottom: var(--s1);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-color: #ddd transparent;
    scrollbar-width: 0.6rem;
}

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

.l-scroll-x::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
}

.l-scroll-x::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
}


/*
---------------------------------------------

    list

*/

.main-area .subList li,
.main-area ul:not([class]) li {
    padding: 0 0 0 1.2em;
    font-size: 100%;
    line-height: 1.5;
    position: relative;
}

.main-area .subList li::before,
.main-area ul:not([class]) li::before {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    background: linear-gradient(#FC5516 0%, #1416D3 100%);
    border-radius: 10rem;
    position: absolute;
    top: 0.4em;
    left: 0;
}

.main-area .subList li+li,
.main-area ul:not([class]) li+li {
    margin-top: 1em;
}

.main-area ol:not([class]) {
    counter-reset: number;
}

.main-area ol:not([class]) li {
    padding: 0 0 0 2em;
    font-size: 100%;
    line-height: 1.5;
    position: relative;
    counter-increment: number;
}

.main-area ol:not([class]) li::before {
    content: counter(number);
    width: 1.6em;
    height: 1.6em;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.main-area ol:not([class]) li+li {
    margin-top: 1em;
}


/*
---------------------------------------------

    btn

*/

.btn-internal {
    margin: var(--s5) auto;
    position: relative;
}

.btn-internal a {
    width: 45rem;
    min-height: var(--s9);
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: #1416D3 url("img/arrow-01-black-right.svg") no-repeat center right var(--s3)/auto 2.8rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.4s;
}

.btn-internal a:hover {
    opacity: 0.6;
}

.btn-internal--up a {
    background-image: url(img/arrow-01-black-up.svg);
}

.btn-internal--down a {
    background-image: url(img/arrow-01-black-down.svg);
}

.btn-web {
    margin: var(--s5) auto;
    position: relative;
}

.btn-web a {
    width: 45rem;
    min-height: var(--s9);
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: url("img/arrow-01-black-right.svg") no-repeat center right var(--s3)/auto 2.8rem, linear-gradient(to right, #FC5516 0%, #1416D3 100%);
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.4s;
}

.btn-web a:hover {
    opacity: 0.6;
}

.btn-link {
    margin: var(--s2) auto;
    text-align: right;
}

.btn-link a,
.btn-link div {
    margin: 0;
    padding: var(--s1) var(--s4) var(--s1) 0;
    background: url("img/arrow-01-blue-right.svg") no-repeat center right/auto 2rem;
    display: inline-block;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: underline;
}

.btn-link a:hover,
.btn-link div:hover {
    text-decoration: none;
    opacity: 0.6;
}

.about .btn-link--host {
    margin-top: 1rem;
}

.btn-link--host {
    margin-top: var(--s10);
}

.btn-tel {
    display: none;
}

.ac-btn {
    max-width: 45rem;
    min-height: var(--s9);
    margin: var(--s5) auto;
    padding: var(--s1) var(--s6);
    background: #fff  url(img/icon-more.png) no-repeat right var(--s3) center/auto 3rem;
    border-radius: 10rem;
    border: 2px solid #060E32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.4s;
    position: relative;
}

.ac-btn.is-open{
    background-image: url(img/icon-more-open.png);
}

.ac-btn::before{
  border-bottom: 2px dashed #060E32;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  z-index: -1;
}

.ac-btn span::before {
    content: "もっと見る";
}

.ac-btn.is-open span::before {
    content: "閉じる";
}



/*
---------------------------------------------

    table

*/

table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #060E32;
    border-left: 1px solid #060E32;
}

th,
td {
    padding: var(--s2);
    border-right: solid 1px #060E32;
    border-bottom: solid 1px #060E32;
    line-height: 1.5;
    word-break: break-all;
}

th {
    background: #ECEDEF;
}

tbody th {
    background: #ECEDEF;
}

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

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


/*
---------------------------------------------

    caption

*/

.caption {
    margin: 2rem 0;
    display: block;
    color: #999;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}

.caption_b {
    margin: 2rem 0;
    display: block;
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}

.caption a {
    color: #999;
}

.caption-scroll {
    margin-top: 0.8em;
    color: #999;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-color: #ddd transparent;
    scrollbar-width: thin;
}

.caption-scroll a {
    color: #999;
}

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

.caption-scroll::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
}

.caption-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
}


/*
---------------------------------------------

  catch

*/

.catch-01 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #1416D3;
}

.main-area--tag .catch-01 {color: #060e32;}

.catch-02 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #1416D3;
}


/*
---------------------------------------------

  text

*/

.marker {
    border-bottom: solid 0.3rem #F1AE7F;
    font-weight: 700;
}

.txt_bold {
    font-weight: 700;
    color: #FC5516;
}


/*
---------------------------------------------

  subgrid card

*/

.subgrid-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    grid-gap: var(--s2);
}


/*
---------------------------------------------

  pankuzu

*/

#pankuzu {
    width: 100%;
    margin: var(--s1) auto var(--s2);
    padding: var(--s1) 0;
    color: #060E32;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

#pankuzu>span {
    color: #060E32;
}


/*
---------------------------------------------

    footer

*/

.footer-area {
    padding: var(--s10) 0 0;
    background: #EDECE7;
}

.footer-column {
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: var(--s3);
    display: flex;
}

.footer-column__side {
    width: 23.5%;
}

.footer-main {
    flex: 1;
    max-width: 110rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--s4);
    box-sizing: content-box;
}

.footer-bottom {
    padding: var(--s2) 0;
    background: #060E32;
    color: #FFF;
}

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

.footer-logo {
    max-width: 22.8rem;
    margin: 0 auto var(--s3) auto;
}

.footer-logo__link {
    display: block;
    text-decoration: none;
}

.footer-logo__link:hover {
    opacity: 0.6;
}

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

.footer-menu-title {
    margin-bottom: var(--s1);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px solid #060E32;
}

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

.footer-menu-title__link:hover {
    opacity: 0.6;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
}

.footer-menu__item {
    width: calc((100% - var(--s2) * 3) / 4);
    font-size: 1.2rem;
    line-height: 1.5;
}

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

.footer-menu__link:hover {
    opacity: 0.6;
}

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

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

.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-menu-sub__link:hover {
    opacity: 0.6;
}

.footer-disclaimer {
    max-width: 70rem;
    margin: var(--s3) auto;
    padding: var(--s2) var(--s4);
    background: #fff;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-disclaimer__label {
    display: inline;
}

.footer-disclaimer__text {
    display: inline;
}

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

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

.footer-copyright__link {
    color: #FFF;
    text-decoration: none;
}

.footer-copyright__link:hover {
    color: #FFF;
    text-decoration: underline;
}

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

.footer-sitemap__link {
    color: #FFF;
    text-decoration: none;
}

.footer-sitemap__link:hover {
    color: #FFF;
    text-decoration: underline;
}


/*
---------------------------------------------

    gnavi

*/

.gnavi-btn {
    width: 7rem;
    height: 7rem;
    background: #fff;
    border: solid 0.3rem #FC5516;
    border-radius: var(--s1);
    display: block;
    position: fixed;
    top: var(--s1);
    right: var(--s1);
    z-index: 200;
    cursor: pointer;
}

.gnavi-btn span {
    width: 4rem;
    height: 0.3rem;
    display: inline-block;
    background: #FC5516;
    position: absolute;
    left: 1.2rem;
    transform: translate(0, -50%);
    transition: transform 0.4s, opacity 0.4s;
}

.gnavi-btn span:nth-of-type(1) {
    top: 1.9rem;
}

.gnavi-btn span:nth-of-type(2) {
    top: 3.2rem;
}

.gnavi-btn span:nth-of-type(3) {
    top: 4.5rem;
}

.gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(1.2rem) rotate(-45deg);
}

.gnavi-btn.is-active span:nth-of-type(2) {
    display: none;
}

.gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-1.4rem) rotate(45deg);
}

.gnavi-area {
    width: 40rem;
    height: 100vh;
    padding: 9rem 0 10rem;
    background: #EDECE7;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.gnavi-box__title {
    padding: 1.2rem var(--s6) 1.2rem var(--s2);
    border-bottom: 1px solid #999;
    font-weight: 900;
    line-height: 1.5;
    display: block;
    cursor: pointer;
    transition: opacity 0.5s;
    position: relative;
}

.gnavi-box__title::after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: url("img/arrow-02-black-down.svg") no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
}

.gnavi-box__title:hover {
    opacity: 1;
}

.gnavi-box__title.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
}

.gnavi-box__content {
    background: rgba(255, 255, 255, 0.4);
}

.gnavi-box:first-child {
    border-top: 1px solid #999;
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
    position: relative;
}

.gnavi-menu__item::before,
.gnavi-menu-sub__item::before {
    content: "└";
    position: absolute;
    top: var(--s2);
    left: var(--s2);
}

.gnavi-menu__link,
.gnavi-menu-sub__link {
    padding: 1.2rem var(--s2) 1.2rem var(--s5);
    display: block;
    font-weight: 900;
    line-height: 1.5;
    text-decoration: none;
}

.gnavi-menu__link:hover,
.gnavi-menu-sub__link:hover {
    opacity: 0.6;
}

.gnavi-menu__item {
    border-bottom: 1px solid #999;
}

.gnavi-menu-sub__item {
    border-top: 1px solid #999;
}

.is-gnavi-open .gnavi-area {
    opacity: 1;
    transform: translateX(0);
}


/*
---------------------------------------------

    page

*/

.page-top {
    width: 7rem;
    height: 7rem;
    position: fixed;
    right: var(--s2);
    bottom: var(--s2);
    z-index: 8;
    overflow: hidden;
}

.page-top__link {
    width: 100%;
    height: 100%;
}

.page-top__link:hover {
    opacity: 0.6;
}


/*
---------------------------------------------

    toggle sp

*/

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


/*
---------------------------------------------

    toggle

*/

.toggle-btn {
    position: relative;
    transition: opacity 0.3s;
    cursor: pointer;
}

.toggle-btn::before {
    content: "";
    width: 3.6rem;
    height: 3.6rem;
    background: url(img/icon-more.png) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: var(--s3);
    transform: translateY(-50%);
}

.toggle-btn.is-open::before {
    background-image: url(img/icon-more-open.png);
}

.toggle-content {
    display: none;
}


/*
---------------------------------------------

    toc

*/

.toc-wrap {
    max-width: 100rem;
    position: relative;
    margin: 0 auto;
}

.toc-wrap__title {
    display: block;
    margin-bottom: var(--s3);
    padding: 0.2rem var(--s-2);
    border-left: solid 0.9rem #1416D3;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
}

.toc-wrap__title.js-more-btn::before {
    content: "";
    width: 2.1rem;
    height: 0.3rem;
    background: #FC5516;
    position: absolute;
    top: 50%;
    right: 5rem;
    transform: translate(0, -50%);
}

.toc-wrap__title.js-more-btn::after {
    content: "";
    width: 0.3rem;
    height: 2.1rem;
    background: #FC5516;
    position: absolute;
    top: 50%;
    right: 5.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.toc-wrap__title.js-more-btn:hover {
    opacity: 0.6;
}

.toc-wrap__title.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}

.toc-wrap__title--relations {
    background-image: url(img/txt-links.png);
}

.toc-wrap__main {
    padding: var(--s1) 0;
    border-top: dotted 0.2rem #BFBFBF;
}

.toc-wrap ul {
    margin-top: 0;
    margin-bottom: 0;
}

.toc-wrap ul li {
    font-weight: 700;
}

.toc-wrap ul li+li {
    margin-top: 1em;
}

.toc-wrap ul li.chapter-h-two {
    border-bottom: dotted 0.2rem #BFBFBF;
    font-size: 1.4rem;
    font-weight: 700;
}

.toc-wrap ul li.chapter-h-two a {
    padding: var(--s2) var(--s4) var(--s2) 0;
    background: url(img/arrow-02-black-down.svg) no-repeat right center/2rem auto;
}

.toc-wrap a {
    display: block;
    text-decoration: none;
}

.toc-wrap a:hover {
    text-decoration: underline;
}


/*
---------------------------------------------

    more

*/

.more-btn {
    width: 35rem;
    margin: var(--s6) auto;
    padding: 1.8rem var(--s7);
    background: #fff url(img/icon-more.png) no-repeat center right var(--s3)/2.8rem auto;
    border: 0.2rem solid #060E32;
    border-radius: var(--s8);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
}

.more-btn::after {
    content: "";
    width: 16rem;
    height: 1px;
    background-image: linear-gradient(to right, #1416D3 0.5rem, transparent 0.5rem);
    background-size: 1rem 0.5rem;
    background-repeat: repeat-x;
    background-position: left bottom;
    position: absolute;
    top: 50%;
    left: 100%;
}

.more-btn::before {
    content: "";
    width: 16rem;
    height: 1px;
    background-image: linear-gradient(to right, #1416D3 0.5rem, transparent 0.5rem);
    background-size: 1rem 0.5rem;
    background-repeat: repeat-x;
    background-position: left bottom;
    position: absolute;
    top: 50%;
    right: 100%;
}

.more-btn:hover {
    opacity: 0.7;
}

.more-btn.is-open {
    background-image: url(img/icon-more-open.png);
}

.more-content {
    display: none;
}


/*
---------------------------------------------

  sidebar

*/

.sidebar-menu:first-child {
    border-top: dotted 0.2rem #707070;
}

.sidebar-menu__title a {
    display: block;
    width: 100%;
    padding: 2.2rem var(--s3) 2.2rem 0;
    background: url(img/arrow-01-white-right.svg) no-repeat center right/1.8rem auto;
    border-bottom: dotted 0.2rem #707070;
    font-weight: 700;
    text-decoration: none;
}

.sidebar-menu__title a:hover {
    opacity: 0.5;
}

.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
    font-weight: 700;
}

.main-area--low h1,
.main-area--low h2,
.main-area--low h3,
.main-area--low h4,
.main-area--low h5,
.main-area--low h6 {
    margin: var(--s5) auto var(--s3);
}

.main-area--low h1 a,
.main-area--low h2 a,
.main-area--low h3 a,
.main-area--low h4 a,
.main-area--low h5 a,
.main-area--low h6 a {
    display: block;
    padding-right: 3rem;
    text-decoration: none;
}

.main-area--low h1 a:hover,
.main-area--low h2 a:hover,
.main-area--low h3 a:hover,
.main-area--low h4 a:hover,
.main-area--low h5 a:hover,
.main-area--low h6 a:hover {
    opacity: 0.6;
}

.main-area--low .sub-h1 {
    margin-top: var(--s5);
    font-size: 2.2rem;
    font-weight: 700;
    color: #1416D3;
    text-align: center;
}

.main-area--low h1 {
    margin: var(--s1) auto var(--s1) 0;
    padding-bottom: var(--s1);
    border-bottom: solid 1px #060E32;
    font-size: 3rem;
    text-align: center;
}

.main-area--low h2 {
    padding: var(--s2) var(--s3) var(--s2) var(--s5);
    background: #EDECE7;
    font-size: 2.6rem;
    position: relative;
}

.main-area--low h2:before {
    content: "";
    width: 3.5rem;
    height: 5.5rem;
    background: url(img/icon-ring.png) no-repeat center/contain;
    position: absolute;
    left: -1.8rem;
    top: 50%;
    transform: translateY(-50%);
}

.main-area--low h2 a {
    background: url(img/arrow-01-blue-right.svg) no-repeat right center;
    background-size: 2.4rem auto;
}

.main-area--low h3 {
    padding: 1.2rem var(--s3);
    font-size: 2.4rem;
    position: relative;
    background: url(img/icon-h3-lt.png) no-repeat left top/var(--s4) auto, url(img/icon-h3-rb.png) no-repeat right bottom/var(--s4) auto;
}

.main-area--low h3 a {
    background: url(img/arrow-01-blue-right.svg) no-repeat right center;
    background-size: 2.4rem auto;
}

.main-area--low h4,
.main-area--low h5 {
    padding-bottom: 1rem;
    font-size: 2.2rem;
    position: relative;
}

.main-area--low h4:before,
.main-area--low h5:before {
    content: "";
    width: 4rem;
    height: 0.3rem;
    background: #FC5516;
    position: absolute;
    left: 0;
    bottom: 0;
}

.main-area--low h4 a,
.main-area--low h5 a {
    background: url(img/arrow-01-blue-right.svg) no-repeat right center;
    background-size: 2.4rem auto;
}

.tag-01 {
    padding: var(--s-2) var(--s2);
    border-radius: var(--s1);
    background: #f37444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    text-decoration: none;
}

.main-area--tag .l-grid .subgrid-card {
    grid-row: span 3;
}

.main-area.cat_top .l-grid .subgrid-card {
    grid-row: span 3;
}


/*
---------------------------------------------

    header

*/

.header-area {
    width: 100%;
    padding: 1rem;
    background: #060E32;
}

.header-area-name {
    font-size: 1.2rem;
    text-align: right;
    color: #fff;
}

.header-area-name a {
    color: #fff;
    text-decoration: none;
}

.header-area-name a:hover {
    opacity: 0.6;
}

.header-area-logo {
    display: block;
    width: 30.2rem;
}

.header-area--low {
    padding: var(--s3);
    background: #F9F8F6 url(img/mv-low.png) no-repeat right var(--s1) bottom var(--s1)/auto 11.2rem;
}

.headTopTxt {
    background: #edece7;
    color: #1416d3;
    font-size: 1.4rem;
    padding: var(--s2);
}
.headTopTxt p {
    max-width: 100rem;
    margin: 0 auto;
    line-height:1.4;
}

.header-menu {
    width: 100%;
    padding: var(--s1) 9rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    left: 0;
    top: 0;
    transition: all 0.4s;
    z-index: 9;
}

.header-menu.js-header-appear {
    opacity: 0;
    visibility: hidden;
}

.header-menu.js-header-appear.is-fixed {
    opacity: 1;
    visibility: visible;
}

.header-menu .btn-web {
    margin: 0 0 0 auto;
}

.header-menu .btn-web a {
    width: 34rem;
}

a.header-area-logo:hover {
    opacity: 0.6;
}

.header-nav {
    display: flex;
}

.header-nav__list {
    padding: 0 var(--s4);
    text-align: center;
}

.header-nav__list a {
    text-decoration: none;
}

.header-nav__list a:hover {
    opacity: 0.7;
}

.header-nav__list+.header-nav__list {
    border-left: solid 1px #C2CCD5;
}

.logo-lower {
    width: 30rem;
}

.logo-lower a:hover {
    opacity: 0.7;
}

.mainvisual {
    padding: var(--s5) 0;
    background: url(img/mv-pic.png) no-repeat, url(img/mv-bg.png) no-repeat;
    background-size: 60.8rem auto, 100% calc(100% - 3rem);
    background-position: left calc(50% + 47rem) top var(--s2), center bottom;
}

.mainvisual-inner {
    margin-bottom: var(--s7);
    max-width: 62rem;
}

.mainvisual-lead {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
    font-weight: 700;
}

.mainvisual-lead span {
    padding: 0 var(--s1);
    margin-right: var(--s1);
    background: linear-gradient(#060E32 0%, #676767 100%);
    color: #fff;
}

.mainvisual-title {
    margin-bottom: var(--s6);
    font-size: 3.2rem;
    font-weight: 700;
    color: #FC5516;
}

.mainvisual-inner .logo {
    display: block;
}

.mainvisual-title span img {
    width: 35.2rem;
}

span.line {
    margin-bottom: var(--s3);
    display: inline-block;
    border-bottom: solid 1px #FC5516;
}

.mainvisual-column {
    grid-gap: 1rem;
}

.mainvisual-point {
    height: 20rem;
    /* padding-bottom: 3.5rem; */
    border-radius: 50%;
    background: #060E32 url(img/ico01.png) no-repeat center/9.5rem auto;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainvisual-point:nth-of-type(2) {
    background-image: url(img/ico03.png);
    background-size: 11rem auto;
}

.mainvisual-point:nth-of-type(3) {
    background-image: url(img/ico02.png);
    background-size: 7rem auto;
}

.main-area {
    overflow: clip;
}

.main-area--low {
    overflow: initial;
}

.main-area--low ul,
.main-area--low ol{
    margin: var(--s3) 0;
}



/*
---------------------------------------------

    lower Parts

*/

.lower-eyecatch {
    position: relative;
}

.lower-eyecatch img {
    display: block;
}

.lower-eyecatch__tag {
    padding: var(--s2);
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: var(--s3);
    width: 100%;
}

.lower-eyecatch__tag:before {
    content: "";
    width: 100%;
    height: calc(100% + var(--s5));
    background: linear-gradient(transparent 0%, #060e32a1 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.lower-eyecatch .l-cluster {
    flex-wrap: wrap-reverse;
    position: relative;
    z-index: 1;
}

.lower-eyecatch .l-cluster .tag-01 {
    text-decoration: none;
    color: #fff;
}

.lower-eyecatch .l-cluster .tag-01:hover {
    opacity: .6;
    color: #060E32;
}

.lower-parts {
    margin: var(--s10) auto;
    border-top: 1px solid #060E32;
    border-bottom: 1px solid #060E32;
    padding: var(--s3) 0;
}

.sponserd {
    text-align: center;
    font-size: 1rem;
    color: #999;
}

.sponserd+.card-post__date {
    margin-top: var(--s3);
}

.date {
    margin: var(--s4) 0;
    font-size: 1.2rem;
}

.date span {
    font-weight: 400;
}

.box-summary {
    margin: 14rem 0 var(--s4);
    padding: var(--s10) var(--s5) var(--s5);
    background: #F9F8F6;
    position: relative;
}

.box-summary:before {
    content: "";
    width: 25rem;
    height: 9.2rem;
    background: url(img/logo2.png) no-repeat center/contain;
    position: absolute;
    left: -3rem;
    top: -2.8rem;
}

.box-summary:after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(img/dot-bg.png) repeat left top/3rem auto;
    position: absolute;
    left: -7rem;
    top: -6rem;
    z-index: -2;
    opacity: 0.2;
}

.box-summary__catch {
    margin-bottom: var(--s3);
    padding-bottom: var(--s2);
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
}

.box-summary__catch:before {
    content: "";
    width: var(--s8);
    height: 1px;
    background: #1416D3;
    position: absolute;
    left: 0;
    bottom: 0;
}

.box-introduction {
    margin: 10rem 0 var(--s4);
    padding: 0 var(--s5) var(--s5) var(--s5);
    border: solid 1px #060E32;
}

.box-introduction__title {
    margin: -1.6rem auto var(--s3) 0;
    padding: 0 var(--s2);
    width: fit-content;
    background: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.box-introduction__title img {
    margin-right: var(--s2);
    width: 22.4rem;
}

.box-introduction__info {
    align-items: flex-end;
}

.box-introduction__company {
    margin-bottom: var(--s2);
    font-size: 2rem;
    font-weight: 700;
}

.box-introduction__name {
    font-size: 1.8rem;
    font-weight: 700;
}

.box-introduction__name2 {
    margin-bottom: var(--s1);
    color: #6A6E84;
}

.box-introduction__inner {
    margin-top: var(--s5);
    position: relative;
}

.box-introduction__inner:before {
    content: "";
    width: calc(100% + var(--s10));
    height: calc(100% - var(--s6));
    background: #1416D3;
    position: absolute;
    left: -4rem;
    top: var(--s2);
    opacity: 0.05;
    z-index: -1;
}

.box-introduction__catch {
    margin-bottom: var(--s1);
    font-size: 2.2rem;
    font-weight: 700;
    color: #1416D3;
}

.box-introduction .btn-web {
    margin-bottom: 0;
}

.box-qa {
    margin: var(--s10) 0;
}

.box-qa__title,
h2.box-qa__title,
h3.box-qa__title{
    min-height: 7rem;
    padding: 1.2rem 0 var(--s1) 9rem;
    font-size: 2rem;
    font-weight: 700;
    background: none;
    position: relative;
}

.box-qa__title:before,
h2.box-qa__title:before,
h3.box-qa__title:before{
    content: "";
    width: 7rem;
    height: 7rem;
    background: url(img/icon-q.png) no-repeat left top/contain;
    position: absolute;
    left: 0;
    top: 0;
    transform: unset;
    
}

.box-qa__answer,
h2.box-qa__answer,
h3.box-qa__answer{
    min-height: 7rem;
    margin-top: 2.6rem;
    margin-bottom: 2rem;
    padding: 0 0 0 9rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    background: none;
}

.box-qa__answer:before,
h2.box-qa__answer:before,
h3.box-qa__answer:before{
    content: "";
    width: 7rem;
    height: 7rem;
    background: url(img/icon-a.png) no-repeat left top/contain;
    position: absolute;
    left: 0;
    top: 0;
    transform: unset;
}

.box-qa__answer:after {
    content: "";
    width: 1px;
    height: 2.6rem;
    background: #1416D3;
    position: absolute;
    left: 3.5rem;
    top: -2.6rem;
}

.box-qa__answer span {
    min-height: 7rem;
    padding: var(--s1) var(--s3);
    display: flex;
    align-items: center;
    border: solid 1px #1416D3;
}

.box-qa__txt {
    margin-top: var(--s2);
    padding: 0 0 0 9rem;
}

.box-alpha {
    max-width: 71.5rem;
    margin: var(--s4) 0 var(--s10) auto;
    padding: var(--s4) var(--s5) var(--s4) var(--s10);
    background: rgba(20, 22, 211, 0.05);
    position: relative;
}

.box-alpha:before {
    content: "";
    width: 8.6rem;
    height: 8.6rem;
    background: url(img/icon-alpha.png) no-repeat center/contain;
    position: absolute;
    left: -3.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.box-alpha .catch-01 {
    margin-bottom: var(--s2);
}

.box-sv {
    margin: var(--s10) 0;
    padding: var(--s4);
    background: #F9F8F6;
    position: relative;
}

.box-sv:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #FC5516 0%, #1416D3 100%);
    position: absolute;
    left: -2rem;
    bottom: -2rem;
    z-index: -1;
}

.box-sv__title {
    margin-bottom: var(--s3);
    padding: var(--s2);
    background: #060E32;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    display: flex;
    gap: 14rem;
    align-items: center;
    justify-content: center;
}

.box-sv__title span.pic {
    width: 13rem;
    position: relative;
}

.box-sv__title span.pic:after {
    content: "";
    width: 10rem;
    height: 1px;
    background: #fff;
    position: absolute;
    left: calc(100% + var(--s2));
    top: 50%;
}

.box-sv__title span.pic img {
    display: block;
}

.lower-common {
    margin-top: var(--s3);
}

.lower-common .card-post__title {
    margin-top: var(--s2);
}

.lower-common .card-post__catch {
    margin-top: var(--s2);
    margin-bottom: 0;
}

.lower-common .card-post:nth-of-type(2) {
    position: relative;
}

.lower-common .card-post:nth-of-type(2):before {
    content: "";
    width: 1px;
    height: 100%;
    background: #1416D3;
    position: absolute;
    left: -2.4rem;
    top: 0;
}

.tagpage-title {
    margin: 0 auto var(--s4);
    padding: var(--s1) var(--s3);
    background: #F9F8F6;
    font-size: 2.8rem;
    font-weight: 700;
}

.related-title {
    font-size: 2.4rem;
    font-weight: 700;
    border-left: 10px solid #060E32;
    padding: 1rem 2rem;
    margin: var(--s3) 0;
}



/*
---------------------------------------------

    TOP common

*/

section {
    padding: 10rem 0;
}

.common-title {
    margin: 0 auto var(--s6) auto;
    padding-top: 18.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FC5516;
    position: relative;
}

.common-title a {
    display: inline-block;
    padding-right: var(--s7);
    background: url(img/arrow-01-blue-right.svg) no-repeat right center/3.8rem auto;
    text-decoration: none;
    color: #FC5516;
}

.common-title a:hover {
    opacity: 0.6;
}

.common-title span.ex {
    position: absolute;
    left: 0;
    top: 6.4rem;
    font-size: 8.8rem;
    font-weight: 700;
    line-height: 1;
    color: #060E32;
    white-space: nowrap;
}

.common-title span.ex:first-letter {
    color: #FC5516;
}

.common-title--01 {
    background: url(img/icon-grass.png) no-repeat left top/5.6rem auto, url(img/txt-keywords.png) no-repeat left top 6rem/auto 11.2rem;
}

.common-title--02 {
    margin-bottom: 0;
    display: inline-block;
    background: url(img/icon-relation.png) no-repeat left top/5.6rem auto;
    text-align: right;
}

.common-title--03 {
    margin-bottom: 0;
    padding-top: 12.2rem;
    background: url(img/txt-check.png) no-repeat left top/auto 7.6rem;
}

.common-title--03 a {
    color: #fff;
    background-image: url(img/arrow-01-white-right.svg);
}

.common-title--04 {
    background: url(img/icon-cloud.png) no-repeat left top/auto 4.8rem, url(img/txt-about.png) no-repeat left top 6rem/auto 11.2rem;
}

.common-title--05 {
    margin-bottom: 0;
    padding: var(--s1) 0 var(--s1) var(--s3);
    border-left: solid 1px #1416D3;
}

.common-title--05 span.cl {
    color: #FC5516;
}

.common-title--05 a {
    display: inline;
    color: #060E32;
}

.common-subtitle {
    padding-top: var(--s7);
    font-size: 3.4rem;
    font-weight: 700;
    position: relative;
}

.common-subtitle:before {
    font-size: 2.2rem;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: var(--s2);
    color: #060E32;
}

.common-subtitle:after {
    content: "";
    width: 6rem;
    height: 0.2rem;
    background: #FC5516;
    position: absolute;
    left: -8rem;
    top: var(--s4);
}

.common-subtitle--01:before {
    content: "Different";
}

.common-subtitle--02:before {
    content: "Voice";
}

.common-lead {
    max-width: 96rem;
    margin: 0 auto var(--s4);
}


/*
---------------------------------------------

    TOP parts

*/

.bg-pattern {
    background: url(img/bg-pattern.png) no-repeat, #EDECE7;
    background-size: 50rem auto, auto;
    background-position: left calc(50% - 57rem) bottom;
}

.bg-pattern .l-center {
    position: relative;
}

.bg-pattern .l-center:before {
    content: "";
    width: 50rem;
    height: 80rem;
    opacity: 0.3;
    background: url(img/bg-motif.png) no-repeat center/contain;
    position: absolute;
    right: -37rem;
    top: 0;
    transform: rotate(-51deg);
}

.sec01-btns {
    min-height: 62.5rem;
    background: url(img/bg-lines.png) no-repeat center/96.2rem auto;
    position: relative;
}

.sec01-btn {
    width: 22rem;
    height: 22rem;
    background: #F9F8F6 url(img/arrow-03-black-right.svg) no-repeat center bottom var(--s3)/1.5rem auto;
    border-radius: 50%;
    border: solid 1px #F09B7D;
    box-shadow: 0 0 1rem #F09B7D;
    font-size: 2.4rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
}

.sec01-btn span.sm {
    font-size: 1.5rem;
}

.sec01-btn--01 {
    left: 11rem;
    /* top: var(--s); */
}

.sec01-btn--02 {
    left: 45rem;
    top: var(--s7);
}

.sec01-btn--03 {
    right: 7rem;
    top: 0;
}

.sec01-btn--04 {
    left: 0;
    bottom: 7rem;
}

.sec01-btn--05 {
    left: 45rem;
    bottom: 5rem;
}

.sec01-btn--06 {
    left: 49rem;
    bottom: 7rem;
}

.sec01-btn--07 {
    right: 7rem;
    top: 3rem;
}

.sec01-btn--08 {
    right: 0rem;
    bottom: 1rem;
}

.sec01-btn:hover {
    background-color: #FFE1D6;
}

.bg-deco {
    background: #e9e7e0;
}

.bg-deco .l-center {
    position: relative;
    z-index: 0;
}

.bg-deco .l-center:before {
    content: "";
    width: 50rem;
    height: 80rem;
    background: url(img/bg-motif.png) no-repeat center/contain;
    position: absolute;
    left: -38rem;
    opacity: 0.3;
    top: -5rem;
    transform: rotate(51deg);
    z-index: -1;
}

.title-block {
    text-align: right;
}

.title-block-wrap {
    margin-bottom: var(--s8);
    align-items: flex-end;
}

.sec02-grid {
    align-items: flex-start;
}

.box-more {
    background: #fff;
}

.box-more__title {
    padding: var(--s4);
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-more .toggle-content {
    padding: var(--s4);
    position: relative;
}

.box-more .toggle-content:before {
    content: "";
    width: calc(100% - var(--s8));
    height: 0.1rem;
    background: #060E32;
    position: absolute;
    left: var(--s4);
    top: 0;
}

.box-more .btn-link {
    margin-bottom: 0;
}

.box-overwrap {
    margin-bottom: 11.5rem;
    padding-bottom: var(--s7);
    position: relative;
}

.box-overwrap:after {
    content: "";
    width: calc(100% + 10rem);
    height: calc(100% - var(--s7));
    background: #fff;
    position: absolute;
    left: -5rem;
    top: var(--s7);
    z-index: -1;
}

.box-overwrap:before {
    content: "";
    width: 50rem;
    height: 66.6rem;
    background: url(img/bg-pattern.png) no-repeat center/contain;
    position: absolute;
    right: -44rem;
    top: -18rem;
    z-index: -2;
}

.card-post a {
    text-decoration: none;
}

.card-post a:hover {
    opacity: 0.6;
}

.card-post a:hover .card-post__pic img {
    transform: scale(1.1);
}

.card-post__pic {
    margin-bottom: var(--s2);
    height: 18rem;
    overflow: hidden;
}

.card-post__pic img {
    transition: transform 0.3s ease;
}

.card-post__pic02 {
    margin-bottom: var(--s1);
}

.card-post__pic02 img {
    display: block;
}

.card-post__date {
    margin-bottom: var(--s2);
    font-size: 1.2rem;
}

.card-post--tag .card-post__date {
    color: #060E32;
    font-weight: 400;
}

.card-post--tag .l-cluster {
    margin-bottom: auto;
    text-align: left;
}

.main-area--low.cat_top .card-post--tag .l-cluster {
    display: block;
}

.card-post--tag .l-cluster div {
    display: inline-block;
    max-height: 50px;
}

.main-area--low.cat_top .card-post--tag .l-cluster div {
    margin: 0 10px var(--s2) 0;
}

.card-post--tag .l-cluster .tag-01 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    display: block;
    text-align: left;
}

.card-post--tag .l-cluster .tag-01:hover {
    color: #060E32;
    opacity: .6;
}

.card-post__catch {
    margin-top: var(--s3);
    margin-bottom: var(--s2);
    font-size: 1.8rem;
    font-weight: 700;
}

.card-post__catch .catch-01 {
    color: #060E32;
}

.card-post__catch h2 {
    padding: 0;
    background: none;
    font-size: 2rem;
    margin: var(--s2) auto;
}

.card-post__catch h2:before {
    content: none;
}

.card-post__catch--type1 {
    padding-left: var(--s2);
    position: relative;
}

.card-post__catch--type1:before {
    content: "";
    width: 0.6rem;
    height: 100%;
    background: linear-gradient(#1416D3 0%, #FC5516 100%);
    position: absolute;
    left: 0;
    top: 0;
}

.card-post__catch02 {
    margin-bottom: var(--s2);
    font-size: 2.4rem;
    font-weight: 700;
}

.card-post__catch02 a {
    display: inline-block;
    padding-right: var(--s5);
    background: url(img/arrow-01-blue-right.svg) no-repeat right center/3rem auto;
}

.card-post__catch02 a:hover {
    opacity: 0.6;
}

.card-post__catch03 {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
    font-weight: 700;
}

.card-post__subcatch {
    font-size: 1.8rem;
    font-weight: 700;
    margin: var(--s2) 0 var(--s2);
    color: #1416D3;
}

.card-post__title {
    margin-bottom: var(--s2);
    font-size: 2.4rem;
    font-weight: 700;
    color: #1416D3;
}

.card-post__link {
    padding-right: var(--s5);
    background: url(img/arrow-01-blue-right.svg) no-repeat right center/3rem auto;
    display: block;
    text-decoration: none;
}

.card-post__link:hover {
    opacity: 0.6;
}

.card-post a.card-post__title {
    display: block;
    padding-right: var(--s4);
    background: url(img/arrow-01-blue-right.svg) no-repeat right center/2.8rem auto;
}

.card-post a.card-post__title:hover {
    color: #1416D3;
    opacity: 0.6;
}

.card-post--tag {
    border-bottom: solid 1px #060E32;
}

.sec02-subtitle {
    max-width: 93rem;
    margin-bottom: var(--s4);
    padding: var(--s5) var(--s3) var(--s5) 0;
    background: #060E32;
    font-size: 3.4rem;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.sec02-subtitle:before {
    content: "";
    width: 50vw;
    height: 100%;
    background: #060E32;
    position: absolute;
    right: 100%;
    top: 0;
}

.sec02-subtitle span.sm {
    display: block;
    font-size: 1.8rem;
}

.sec02-grid {
    margin-bottom: var(--s7);
}

.l-grid--tone {
    position: relative;
}

.l-grid--tone:before {
    content: "";
    width: calc(100% + 10rem);
    height: 100%;
    background: linear-gradient(to right, rgba(252, 85, 22, 0.2) 50%, rgba(20, 22, 211, 0.2) 50%, rgba(20, 22, 211, 0.2) 100%);
    position: absolute;
    left: -5rem;
    top: 0;
}

.l-grid--tone:after {
    content: "";
    width: 50rem;
    height: 66.6rem;
    background: url(img/bg-pattern2.png) no-repeat center/contain;
    position: absolute;
    left: -29rem;
    top: -20rem;
    z-index: -2;
}

.deco-wrap {
    position: relative;
}

.deco-wrap:after {
    content: "";
    width: 50rem;
    height: 66.6rem;
    background: url(img/bg-pattern2.png) no-repeat center/contain;
    position: absolute;
    right: -44rem;
    top: -48rem;
    z-index: -2;
}

.card-compare {
    padding: var(--s5) 3rem var(--s6) 0;
}

.card-compare:nth-of-type(2) {
    padding-right: 0;
    padding-left: 3rem;
}

.card-compare:nth-of-type(2) .card-compare__inner ul:not([class]) li::before {
    background: #1416D3;
}

.card-compare__title {
    margin-bottom: var(--s4);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #FC5516;
}

.card-compare__title--blue {
    color: #1416D3;
}

.card-compare__inner {
    margin-top: var(--s3);
    padding: var(--s3) var(--s4);
    background: #fff;
    position: relative;
}

.card-compare__inner:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.6rem 2.4rem 0 2.4rem;
    border-color: #FC5516 transparent transparent transparent;
    position: absolute;
    left: 50%;
    top: -1.2rem;
    transform: translateX(-50%);
}

.card-compare__inner--blue:before {
    border-color: #1416D3 transparent transparent transparent;
}

.card-compare__inner ul:not([class]) li::before {
    background: #FC5516;
}

.card-compare__check {
    margin-bottom: var(--s3);
    padding-bottom: var(--s3);
    border-bottom: solid 1px #060E32;
}

.icon-check {
    display: block;
    margin: 0 auto var(--s2) -3.2rem;
    width: 11.7rem;
}

.icon-check img {
    display: block;
}

.box-pr {
    padding: var(--s10) 0;
    position: relative;
    z-index: 0;
}

.box-pr:after {
    content: "";
    width: calc(100% + 10rem);
    height: 100%;
    background: linear-gradient(to right, #1416D3 0%, #FC5516 100%);
    position: absolute;
    left: -5rem;
    top: 0;
    z-index: -1;
}

.box-pr:before {
    content: "";
    width: 100vw;
    height: calc(100% - var(--s4));
    background: url(img/dot-bg-red.png) repeat left top/3rem auto;
    position: absolute;
    left: 50%;
    bottom: -7rem;
    transform: translateX(-50%);
    z-index: -2;
}

.box-pr p {
    color: #fff;
}

.box-pr .btn-web {
    margin: var(--s3) auto var(--s3) 0;
}

.box-pr .btn-web a {
    margin-left: 0;
    width: 90%;
    background: #060E32 url("img/arrow-01-black-right.svg") no-repeat center right var(--s3)/auto 2.8rem;
}

.bg-beige {
    padding-bottom: 21rem;
    background: url(img/bg-pattern.png) no-repeat, #EDECE7;
    background-size: 50rem auto, auto;
    background-position: left calc(50% - 57rem) bottom -16.7rem;
}

.bg-beige .l-center {
    position: relative;
    z-index: 0;
}

.bg-beige .l-center:before {
    content: "";
    width: 50rem;
    height: 80rem;
    background: url(img/bg-motif.png) no-repeat center/contain;
    position: absolute;
    right: -27rem;
    opacity: 0.3;
    top: -6rem;
    transform: rotate(-51deg);
    z-index: -1;
}

.box-intro {
    max-width: 85.5rem;
    margin-bottom: var(--s9);
    padding: 0 var(--s6) var(--s3) var(--s6);
    align-items: flex-end;
    position: relative;
    z-index: 0;
}

.box-intro:before {
    content: "";
    width: calc(100% + 50vw);
    height: calc(100% - var(--s4));
    background: #fff;
    position: absolute;
    right: 0;
    top: var(--s4);
    z-index: -1;
}

.box-intro__name {
    text-align: center;
}

.card-post-stack .card-post+.card-post {
    margin-top: var(--s10);
    position: relative;
}

.card-post-stack .card-post+.card-post:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #060E32;
    position: absolute;
    left: 0;
    top: calc(var(--s5) * -1);
}

.column-sticky {
    display: flex;
    align-items: flex-start;
}

.column-sticky__left {
    margin-left: calc(15.4rem * -1);
    padding-right: var(--s4);
    width: 15.4rem;
    position: sticky;
    top: 0;
    text-align: right;
}

.column-sticky__main {
    width: 100%;
}

.column-sticky__title {
    width: 100%;
    height: fit-content;
    margin: 0 auto;
    padding-top: 15rem;
    font-size: 4.4rem;
    font-weight: 700;
    font-family: "Noto Sans JP vertical";
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.column-sticky__title--01 {
    background: url(img/icon-object.png) no-repeat center top/12.2rem auto, url(img/txt-object.png) no-repeat left var(--s2) top 15rem/3.3rem auto;
}

.column-sticky__title--02 {
    background: url(img/icon-report.png) no-repeat center top/12.2rem auto, url(img/txt-report.png) no-repeat left var(--s2) top 15rem/3.3rem auto;
}

.column-sticky__title--03 {
    background: url(img/icon-dashboard.png) no-repeat center top/12.2rem auto, url(img/txt-dashboard.png) no-repeat left var(--s2) top 15rem/3.3rem auto;
}

.column-sticky__title--04 {
    background: url(img/icon-listview.png) no-repeat center top/12.2rem auto, url(img/txt-listview.png) no-repeat left var(--s2) top 15rem/3.3rem auto;
}

.column-sticky__title--05 {
    background: url(img/icon-record.png) no-repeat center top/12.2rem auto, url(img/txt-record.png) no-repeat left var(--s2) top 15rem/3.3rem auto;
}

.column-sticky__title--06 {
    background: url(img/icon-case.png) no-repeat center top/12.2rem auto, url(img/txt-case.png) no-repeat left var(--s2) top 15rem/3.3rem auto;
}

.bg-none {
    background: url(img/bg-pattern3.png) no-repeat;
    background-size: 50rem auto, auto;
    background-position: left calc(50% + 70rem) top;
}

.bg-none--beige {
    background-color: #F9F8F6;
}

.about .l-center {
    background: #EDECE7 url(img/about-bg.png) right bottom no-repeat;
    padding: 7rem;
}

.about h2 {
    margin: 2rem;
    color: #060E32;
}

.cat_parts {
    margin: 80px 0 0 0;
}

.cat_parts_inner {
    max-width: 1000px;
    margin: 0 auto;
}

.cat_parts .cat_parts_block {
    display: flex;
    flex-wrap: wrap;
}

.cat_parts .cat_parts_block .box:nth-child(n+3) {
    width: calc(100%/3 - 10px);
    margin: 0 0 50px 15px;
}

.cat_parts .cat_parts_block .box:nth-child(1),
.cat_parts .cat_parts_block .box:nth-child(2) {
    width: calc(100%/2 - 15px);
    margin: 0 0 50px 0;
}

.cat_parts .cat_parts_block .box:nth-child(2) {
    margin: 0 0 50px 30px;
}

.cat_parts .cat_parts_block .box:nth-child(3n) {
    margin: 0 0 50px 0;
}

.cat_parts .card-post__subcatch{
    margin: var(--s1) 0;
}

.cat_parts .card-post__catch {
    margin: 0 0 var(--s3) 0;
}

.cat_parts .card-post__catch h2 {
    margin: 0 auto;
}

.main-area--low.cat_top .cat_parts  .card-post--tag .l-cluster div {
    margin-bottom: var(--s1);
}

.cat_parts .card-post--tag .card-post__date {
    margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

      sp base settings

  */
     :root {
        font-size: 2.6666666667vw;
    }
    body {
        font-size: 1.4rem;
    }
    .sp_br {
        display: inline;
    }
    .pc_br {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

      sp layout center

  */
    .l-center {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
        box-sizing: border-box;
    }
    /*
  ---------------------------------------------

      sp layout stack

  */
    .l-stack {
        gap: var(--s3);
    }
    /*
  ---------------------------------------------

      sp layout cluster

  */
    .l-cluster {
        gap: var(--s1);
    }
    .main-area--low ul.l-cluster{ margin:0 }
    /*
  ---------------------------------------------

      sp layout grid

  */
    .l-grid {
        grid-gap: var(--s2);
        grid-template-columns: 100%;
    }
    .l-grid-wide {
        grid-gap: var(--s6);
        grid-template-columns: 100%;
    }
    .l-grid-three {
        grid-gap: var(--s4);
        grid-template-columns: 100%;
    }
    /*
  ---------------------------------------------

      sp layout sidebar

  */
    .l-sidebar__side {
        display: none;
    }
    .l-sidebar__main {
        width: 100%;
    }
    /*
  ---------------------------------------------

      sp layout column

  */
    .l-column {
        gap: var(--s2);
    }
    .l-column__side,
    .l-column__side02,
    .l-column__side03,
    .l-column__side04 {
        width: 100%;
    }
    .l-column__side05 {
        width: 9rem;
    }
    .l-column__main {
        width: 100%;
    }
    /*
  ---------------------------------------------

      sp layout grid areas

  */
    .l-grid-areas {
        grid-template-areas: "catch" "img" "text";
        grid-template-columns: 100%;
        grid-template-rows: auto auto auto;
        grid-gap: var(--s2);
    }
    /*
  ---------------------------------------------

      sp layout float

  */
    .l-float__left-pc {
        width: 100%;
        margin-right: 0;
        float: none;
    }
    .l-float__right-pc {
        width: 100%;
        margin-left: 0;
        float: none;
    }
    .l-float__center {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .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);
    }
    /*
  ---------------------------------------------

      sp layout scroll

  */
    .l-scroll-x-sp {
        width: 100%;
        padding-bottom: 0.6rem;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .l-scroll-x-sp::-webkit-scrollbar {
        height: 0.6rem;
    }
    .l-scroll-x-sp::-webkit-scrollbar-track {
        border-radius: 0.3rem;
        background: #eee;
    }
    .l-scroll-x-sp::-webkit-scrollbar-thumb {
        border-radius: 0.3rem;
        background: #ddd;
    }
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

      sp btn

  */
    .btn-internal,
    .btn-web {
        width: 90%;
        margin: var(--s3) auto;
    }
    .btn-internal a,
    .btn-web a {
        min-height: var(--s7);
        width: 100%;
        padding: var(--s2) var(--s5);
        font-size: 1.5rem;
        background-size: 1.9rem auto, auto;
    }
    .btn-internal:hover a,
    .btn-web:hover a {
        transform: translate(0, 0);
    }
    .btn-link {
        margin: var(--s1) auto;
    }
    .btn-link a:hover {
        text-decoration: underline;
        opacity: 1;
    }
    .btn-tel {
        display: block;
        width: 90%;
        margin: var(--s3) auto;
    }
    .btn-tel a {
        width: 100%;
        min-height: var(--s7);
        margin: 0 auto;
        padding: var(--s2) var(--s7);
        background: url("img/icon-tel.png") no-repeat center left var(--s3)/auto 2.8rem, #060E32;
        border-radius: 10rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.5;
        text-align: center;
        text-decoration: none;
        transition: opacity 0.4s;
    }
    .btn-tel a:hover {
        opacity: 0.6;
    }
    
    .ac-btn {
        width: 90%;
    }
    /*
  ---------------------------------------------

      sp table

  */
    .table_box {
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .table_box .sticky {
        position: sticky;
        top: 0;
        left: 0;
        background: none;
        border-left: none;
        border-right: none;
    }
    .table_box .sticky::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-left: 1px solid #060E32;
        border-right: 1px solid #060E32;
        background: #ccc;
        z-index: -1;
    }
    .table_box table {
        border-left: none;
    }
    .table_box td {
        white-space: nowrap;
    }
    .table-label thead {
        display: none;
    }
    .table-label tbody th {
        background: #ECEDEF;
    }
    .table-label td {
        padding: 0;
        display: flex;
        position: relative;
    }
    .table-label td::before {
        content: attr(data-label);
        width: 7em;
        background: #ECEDEF;
        border-right: solid 1px #060E32;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-weight: 700;
        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;
    }
    /*
  ---------------------------------------------

      sp caption

  */
    .caption {
        font-size: 0.9rem;
    }
    .caption-scroll {
        font-size: 0.9rem;
    }
    .caption-scroll::-webkit-scrollbar {
        height: 0.4rem;
    }
    .caption-scroll::-webkit-scrollbar-track {
        border-radius: 0.2rem;
    }
    .caption-scroll::-webkit-scrollbar-thumb {
        border-radius: 0.2rem;
    }
    /*
  ---------------------------------------------

    catch

  */
    .catch-01 {
        font-size: 1.8rem;
    }
    .catch-02 {
        font-size: 1.6rem;
    }
    /*
  ---------------------------------------------

    sp pankuzu

  */
    #pankuzu {
        margin-bottom: var(--s1);
    }
    /*
  ---------------------------------------------

      sp footer

  */
    .footer-area {
        padding: var(--s3) 0 0;
    }
    .footer-column {
        padding-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .footer-column__side {
        width: 100%;
    }
    .footer-main {
        margin: 0;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }
    .footer-bottom {
        padding: var(--s1) 0 var(--s8);
    }
    .footer-logo {
        width: 19rem;
        margin: var(--s2) auto var(--s3);
    }
    .footer-logo__link:hover {
        opacity: 1;
    }
    .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: 1.4rem;
        height: 1.4rem;
        background: url("img/arrow-02-black-down.svg") no-repeat center/100%;
        position: absolute;
        top: 50%;
        right: var(--s2);
        transform: translate(0, -50%) rotate(0);
        transition: transform 0.3s;
    }
    .footer-menu-title__link:hover {
        opacity: 1;
    }
    .footer-menu-title__link.is-open::after {
        transform: translate(0, -50%) rotate(180deg);
    }
    .footer-menu-title__link--not-toggle::after {
        background: url("img/arrow-02-black-right.svg") no-repeat center/auto 1em;
    }
    .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(--s2);
    }
    .footer-menu__link:hover {
        opacity: 1;
    }
    .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-menu-sub__link:hover {
        opacity: 1;
    }
    .footer-disclaimer {
        width: calc(100% - var(--s2));
        margin: var(--s2) auto;
        padding: var(--s1) var(--s2);
    }
    .footer-nocopy {
        margin: var(--s2) var(--s1);
        font-size: 1rem;
    }
    .footer-copyright {
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }
    .footer-sitemap {
        display: none;
    }
    /*
  ---------------------------------------------

    sp gnavi

  */
    .gnavi-btn {
        width: var(--s6);
        height: var(--s6);
        right: 0.6rem;
        top: 0.6rem;
    }
    .gnavi-btn span {
        width: var(--s3);
        left: 0.9rem;
    }
    .gnavi-btn span:nth-of-type(1) {
        top: 1.4rem;
    }
    .gnavi-btn span:nth-of-type(2) {
        top: 2.2rem;
    }
    .gnavi-btn span:nth-of-type(3) {
        top: 3rem;
    }
    .gnavi-btn.is-active span:nth-of-type(1) {
        transform: translateY(0.6rem) rotate(-45deg);
    }
    .gnavi-btn.is-active span:nth-of-type(3) {
        transform: translateY(-1rem) rotate(45deg);
    }
    .gnavi-area {
        width: 100%;
        padding: var(--s2) 0;
    }
    .gnavi-area__logo {
        width: 19rem;
        margin: 0 auto var(--s2) var(--s3);
    }
    .gnavi-logo {
        width: 22rem;
        margin: 0 auto var(--s2);
        padding-right: var(--s3);
    }
    /*
  ---------------------------------------------

      sp page

  */
    .page-top {
        width: var(--s6);
        height: var(--s6);
        right: var(--s1);
        bottom: 9rem;
    }
    .page-top__link:hover {
        opacity: 1;
    }
    /*
  ---------------------------------------------

       sp toggle sp

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

      toggle

  */
    .toggle-btn:before {
        width: 2.4rem;
    }
    /*
  ---------------------------------------------

      toc

  */
    .toc-wrap__title {
        padding: var(--s2);
        font-size: 1.6rem;
        background-size: 7rem auto;
        background-position: right var(--s6) center;
    }
    .toc-wrap__title span {
        padding-right: 8rem;
        background-size: auto 2.6rem;
    }
    .toc-wrap__title.js-more-btn:before {
        width: 1.9rem;
        right: 1.6rem;
    }
    .toc-wrap__title.js-more-btn:after {
        height: 1.9rem;
        right: 2.4rem;
    }
    .toc-wrap ul {
        margin: 0;
    }
    .toc-wrap__main {
        padding: var(--s2);
    }
    .toc-wrap--low {
        margin: var(--s4) auto;
    }
    .toc-wrap--low .toc-wrap__main:before {
        width: calc(100% - var(--s4));
        left: var(--s2);
    }
    /*
  ---------------------------------------------

       more

  */
    .more-btn {
        max-width: 80%;
        padding: 1.2rem var(--s6);
        font-size: 1.5rem;
    }
    .more-btn:before,
    .more-btn:after {
        width: 4rem;
    }
    .more-btn:hover {
        opacity: 1;
    }
    .main-area--low h2,
    .main-area--low h3,
    .main-area--low h4,
    .main-area--low h5,
    .main-area--low h6 {
        margin: var(--s4) auto var(--s2);
    }
    .main-area--low .sub-h1 {
        margin-top: var(--s5);
        font-size: 1.8rem;
    }
    .main-area--low h1 {
        font-size: 2.4rem;
    }
    .main-area--low h2 {
        padding: var(--s1) var(--s2) var(--s1) var(--s3);
        font-size: 2.2rem;
    }
    .main-area--low h2:before {
        width: 2.5rem;
        height: 3.6rem;
        left: -1rem;
    }
    .main-area--low h2 a {
        background-size: 1.8rem auto;
    }
    .main-area--low h3 {
        padding: var(--s1) var(--s2);
        background-size: var(--s3) auto, var(--s3) auto;
        font-size: 1.8rem;
    }
    .main-area--low h3:before {
        width: 1.7rem;
        height: 1.7rem;
        top: 0.4em;
    }
    .main-area--low h3 a {
        background-size: 1.8rem auto;
        background-position: right center;
    }
    .main-area--low h3.icon-title {
        padding-left: 9rem;
    }
    .main-area--low h3.icon-title .icon-title__tag {
        width: 8rem;
        height: 8rem;
        font-size: 1.4rem;
    }
    .main-area--low h3.icon-title .icon-title__tag span.st {
        font-size: 2rem;
    }
    .main-area--low h3.icon-title span.small {
        font-size: 1.5rem;
    }
    .main-area--low h4 {
        font-size: 1.6rem;
    }
    .main-area--low h4:before {
        width: var(--s4);
    }
    .main-area--low h4 a {
        background-size: 1.8rem auto;
        background-position: right center;
    }
    .main-area--low h5 {
        font-size: 1.5rem;
    }
    .main-area--low h5 a {
        background-size: 1.8rem auto;
        background-position: right center;
    }
    .main-area--low .icon-title {
        margin-left: var(--s4);
        padding: var(--s2);
        padding-left: var(--s5);
        font-size: 1.8rem;
    }
    .main-area--low .icon-title:before {
        width: 6rem;
        left: calc(var(--s4) * -1);
    }
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

      sp Header

  */
    .header-area {
        padding: var(--s-2);
    }
    .header-area-logo {
        width: 20rem;
    }
    .header-area--low {
        padding: var(--s2);
        background-size: 90% auto;
    }
    
    .headTopTxt {
      font-size: 1.2rem;
      padding: var(--s1);
    }
    
    .header-menu .btn-web {
        width: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
    }
    .header-menu .btn-web a {
        width: 100%;
        border-radius: 0;
    }
    .mainvisual {
        padding: var(--s1) 0 var(--s4);
        background: url(img/mv-bg.png) no-repeat center bottom/100% 98%;
    }
    .mainvisual-lead {
        margin-bottom: 0;
        font-size: 1.55rem;
    }
    .mainvisual-title {
        margin-bottom: var(--s1);
        padding-bottom: 5rem;
        background: url(img/mv-pic.png) no-repeat right bottom/auto 13.5rem;
    }
    .mainvisual-title span.line {
        margin-bottom: var(--s2);
        font-size: 1.8rem;
    }
    .mainvisual-title span img {
        width: 20rem;
    }
    .mainvisual-inner {
        margin-bottom: var(--s2);
    }
    .mainvisual-column {
        grid-gap: var(--s-2);
        grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
    }
    .mainvisual-point {
        height: 12rem;
        /* padding-bottom: var(--s3); */
        background-size: 6rem auto;
        /* background-position: center top var(--s1); */
        font-size: 1.5rem;
    }
    .mainvisual-point:nth-of-type(2) {
        background-size: 7.5rem auto;
    }
    .mainvisual-point:nth-of-type(3) {
        background-size: 5rem auto;
    }
    .lower-eyecatch__tag {
        background: #EDECE7;
        position: relative;
    }
    .lower-eyecatch__tag:before {
        content: none;
    }
    .lower-parts {
        margin: var(--s5) auto;
    }
    .box-summary {
        margin-top: 6rem;
        padding: var(--s7) var(--s3) var(--s3);
    }
    .box-summary:before {
        width: 15rem;
        left: -1rem;
        top: -3rem;
    }
    .box-summary:after {
        left: -1rem;
        top: -4rem;
        background-size: 1.5rem auto;
    }
    .box-summary__catch {
        margin-bottom: var(--s2);
        font-size: 1.8rem;
    }
    .box-introduction {
        padding: 0 var(--s2) var(--s3);
    }
    .box-introduction__title {
        margin: -1.6rem auto var(--s3) auto;
        font-size: 1.6rem;
    }
    .box-introduction__title img {
        width: 18rem;
    }
    .box-introduction__company {
        margin-bottom: var(--s1);
        font-size: 1.6rem;
    }
    .box-introduction__info {
        align-items: center;
    }
    .box-introduction__name {
        font-size: 1.6rem;
    }
    .box-introduction__name2 {
        margin-bottom: 0;
        font-size: 1.3rem;
    }
    .box-introduction__catch {
        font-size: 1.8rem;
    }
    .box-introduction__inner {
        margin-top: var(--s3);
    }
    .box-introduction__inner:before {
        width: calc(100% + var(--s4));
        left: -1.6rem;
    }
    .box-qa {
        margin: var(--s5) 0;
    }
    .box-qa__title,
    h2.box-qa__title,
    h3.box-qa__title{
        font-size: 2rem;
        padding: 0 0 0 5.5rem;
    }
    .box-qa__title:before,
    h2.box-qa__title:before,
    h3.box-qa__title:before{
        width: 4.5rem;
        height: 7rem;
        left: 0;
        top: 0;
    }
    .box-qa__answer,
    h2.box-qa__answer,
    h3.box-qa__answer{
        margin-top: var(--s2);
        font-size: 1.8rem;
        padding: 0 0 0 5.5rem
    }
    .box-qa__answer:before,
    h2.box-qa__answer:before,
    h3.box-qa__answer:before{
        width: 4.5rem;
        height: 7rem;
        left: 0;
        top: 0;
    }
    .box-qa__answer:after {
        left: 2.2rem;
    }
    .box-qa__answer span {
        padding: var(--s1) var(--s2);
    }
    .box-qa__txt {
        padding-left: 5.5rem;
    }
    .box-alpha {
        padding: var(--s4) var(--s3) var(--s3);
    }
    .box-alpha:before {
        width: 5.5rem;
        left: -1rem;
        top: -4rem;
        transform: none;
    }
    .tagpage-title {
        padding: var(--s1) var(--s2);
        font-size: 2rem;
    }
    .related-title {
        font-size: 2.2rem;
        border-left: 5px solid #060E32;
        padding: 0.5rem 1rem;
    }
    .box-sv {
        padding: var(--s2);
    }
    .box-sv:before {
        left: -0.8rem;
        bottom: -0.8rem;
    }
    .box-sv__title {
        padding: 1rem var(--s2);
        font-size: 1.8rem;
        display: block;
    }
    .box-sv__title span.pic {
        display: block;
        width: 10rem;
        margin-bottom: var(--s-2);
    }
    .box-sv .l-column {
        flex-direction: column-reverse;
    }
    .lower-common .card-post:nth-of-type(2):before {
        width: 100%;
        height: 1px;
        left: 0;
        top: calc(var(--s3) * -1);
    }
    section {
        padding: var(--s6) 0;
    }
    .common-title {
        margin-bottom: var(--s4);
        padding-top: 9.5rem;
        font-size: 2rem;
    }
    .common-title span.ex {
        top: 4rem;
        font-size: 4.4rem;
    }
    .common-title--01 {
        background-size: 3.5rem auto, auto 6rem;
        background-position: left top, left top var(--s4);
    }
    .common-title--02 {
        background-size: 3.5rem auto;
    }
    .common-title--03 {
        padding-top: var(--s8);
        background-size: auto 4.8rem;
    }
    .common-title--04 {
        background-size: 3.5rem auto, auto 4.8rem;
        background-position: left top, left top var(--s4);
    }
    .common-title--05 {
        padding-top: 0;
        padding-left: var(--s2);
    }
    .common-title a {
        padding-right: 3.6rem;
        background-size: 2rem auto;
    }
    .common-subtitle {
        padding-top: var(--s5);
        font-size: 2rem;
    }
    .common-subtitle:before {
        left: var(--s2);
        font-size: 1.4rem;
    }
    .common-subtitle:after {
        left: -5rem;
        top: 2.6rem;
    }
    /* Top parts   ----  */
    .bg-pattern {
        background-size: 22rem auto, auto;
        background-position: left calc(50% - 11rem) bottom;
    }
    .bg-pattern .l-center:before {
        width: 15rem;
        height: 23rem;
        right: -3rem;
        top: -4rem;
    }
    .sec01-btns {
        display: flex;
        flex-wrap: wrap;
        gap: var(--s1);
        justify-content: space-around;
        background: url(img/bg-lines-sp.png) no-repeat center/80% 90%;
    }
    .sec01-btn {
        width: 16rem;
        height: 16rem;
        font-size: 1.8rem;
        position: static;
    }
    .sec01-btn span.sm {
        font-size: 1.3rem;
    }
    .sec01-btn--01 {
        margin-top: -1rem;
    }
    .sec01-btn--02 {
        margin-top: var(--s5);
    }
    .sec01-btn--04 {
        margin-top: -3rem;
    }
    .sec01-btn--05 {
        margin-right: -0.8rem;
        margin-top: var(--s5);
    }
    .sec01-btn--07 {
        margin-top: -4rem;
    }
    .sec01-btn--08 {
        margin-top: var(--s5);
    }
    .title-block {
        text-align: left;
    }
    .bg-deco .l-center:before,
    .bg-beige .l-center:before {
        width: 13rem;
        height: 21rem;
        left: auto;
        right: -2rem;
        top: -4rem;
        transform: rotate(-48deg);
    }
    .bg-beige {
        padding-bottom: var(--s10);
        background-size: 20rem auto, auto;
        background-position: right bottom;
    }
    .title-block-wrap {
        margin-bottom: var(--s3);
        gap: 0;
    }
    .box-more__title {
        padding: var(--s3) var(--s7) var(--s3) var(--s3);
        font-size: 2rem;
    }
    .box-more .toggle-content {
        padding: var(--s2) var(--s3);
    }
    .box-overwrap {
        margin-bottom: var(--s10);
    }
    .box-overwrap:before {
        content: none;
    }
    .sec02-subtitle {
        padding: var(--s2) var(--s2) var(--s2) 0;
        font-size: 2.2rem;
    }
    .sec02-subtitle span.sm {
        font-size: 1.5rem;
    }
    .card-post__catch {
        font-size: 1.6rem;
    }
    .card-post__catch02 {
        font-size: 1.8rem;
    }
    .card-post__pic {
        height: auto;
    }
    .card-post__subcatch {
        font-size: 1.6rem;
    }
    .card-post__title {
        font-size: 2rem;
    }
    .l-grid--tone {
        grid-gap: 0;
    }
    .l-grid--tone:before {
        content: none;
    }
    .card-compare {
        padding: var(--s3) 0;
    }
    .card-compare:before {
        content: "";
        width: 100vw;
        height: 100%;
        background: rgba(252, 85, 22, 0.2);
        position: absolute;
        left: -1.2rem;
        top: 0;
        z-index: -1;
    }
    .card-compare__title {
        margin-bottom: var(--s2);
        font-size: 2.2rem;
    }
    .card-compare:nth-of-type(2) {
        padding: var(--s2) 0;
    }
    .card-compare:nth-of-type(2):before {
        background: rgba(20, 22, 211, 0.2);
    }
    .card-compare__inner {
        padding: var(--s3);
    }
    .icon-check {
        margin-bottom: var(--s1);
    }
    .box-pr {
        padding: var(--s4) var(--s3);
    }
    .box-pr:after {
        width: 100%;
        left: 0;
    }
    .box-pr:before {
        top: -3rem;
        background-size: 1.3rem auto;
    }
    .box-pr .btn-web {
        margin: var(--s2) auto;
    }
    .box-pr .btn-web a {
        width: 100%;
    }
    .box-intro {
        margin-bottom: var(--s6);
        padding: 0 var(--s3) var(--s3);
    }
    .box-intro__pic {
        width: 10rem;
    }
    .box-intro .l-column__side03 {
        display: flex;
        align-items: flex-end;
        gap: var(--s2);
    }
    .column-sticky__left {
        width: 6.5rem;
        margin-left: 0;
        padding-right: var(--s1);
    }
    .column-sticky__main {
        flex: 1;
    }
    .column-sticky__title {
        padding-top: var(--s9);
        font-size: 2.4rem;
        background-size: 100% auto, 1.8rem auto;
        background-position: center top, var(--s-2) var(--s9);
    }
    .about .l-center {
        margin: 2rem;
        padding: 4rem;
    }
    .about h2 {
        margin: 2rem 0;
    }
    .card-post__catch h2 {
        padding: 0;
        background: none;
        font-size: 2rem;
        margin: var(--s2) auto;
    }
    .cat_parts {
        margin: 40px 0 0;
    }
    .cat_parts_inner {
        padding: 0 15px;
    }
    .cat_parts .cat_parts_block .box:nth-child(1),
    .cat_parts .cat_parts_block .box:nth-child(2),
    .cat_parts .cat_parts_block .box:nth-child(n+3) {
        width: 100%;
    }
    .cat_parts .cat_parts_block .box:nth-child(2),
    .cat_parts .cat_parts_block .box:nth-child(n+3) {
        margin: 0 0 50px 0;
    }
}