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

/*---------------------------------------------
    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);
    --s11: calc(var(--s1) * 11);
    --s12: calc(var(--s1) * 12);
    --s13: calc(var(--s1) * 13);
    --s14: calc(var(--s1) * 14);
    /* Color settings */
    --site-color01: #818181;
    --site-color02: #C62828;
    --site-color03: #ccc;
    --site-color04: #4A4A4A;
    --site-color05: #111827;
    --site-color06: #f5f7fb;
    --site-color07: #E8F6F5;
    --site-color08: #111827;
    --site-color09: #ccc;
}

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

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #111827;
    min-width: 1100px;
}

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

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

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

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


ul:not([class]) li::before {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: #0085ff;
    position: absolute;
    top: 0.4rem;
    left: 0;
}

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: #fff;
    background-color: #C62828;
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
    position: absolute;
    top: 0.3em;
    left: 0;
}

input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 1.6rem;
    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: #111827;
    transition: opacity 0.6s ease, color 0.6s ease;
}

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

/* すべてのリンク（aタグ）の下線を非表示にする */
a {
    text-decoration: none !important; /* 下線を非表示（!importantで優先度を上げる）*/
    border-bottom: none !important;   /* borderによる下線も非表示にする */
}

/* リンクのさまざまな状態（訪問済み、ホバー時、クリック時）でも下線を非表示にする */
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

strong {
    font-weight: 700;
}

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

small {
    font-size: 80%;
}

p:not([class]) {
    line-height: 1.5;
}

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

* {
    box-sizing: border-box;
}

.sp_br {
    display: none;
}

.pc_br {
    display: inline;
}

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

/*---------------------------------------------
    Emphasize 
*/
.marker {
    font-weight: 700;
    background: linear-gradient(transparent 60%, #cfffbf 60%);
}

.txt_bold,span {
    font-weight: 700;
    color: #C62828;
    /* padding: var(--s2); */
    color: #0085ff;
}

/*---------------------------------------------
    layout center
*/
#contents .l-center {
    width: 100rem;
    margin-right: auto;
    margin-left: auto;
}

/*---------------------------------------------
    layout stack
*/
.l-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s4);
    align-items: stretch;
}

.l-stack-small {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s2);
    border-radius: 1rem;
    /* border: 1px solid #ccc; */
    background: #F5F7FB;
}

.l-stack-xsmall {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s1);
}

.l-stack-large {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s6);
}

.l-stack-xlarge {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s8);
}

/*---------------------------------------------
    layout cluster
*/
.l-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
}

/*---------------------------------------------
    layout grid
*/
.l-grid-two, .l-grid-two-flex {
    --minimum: calc((100% - var(--s2)) / 2);
    display: grid;
    grid-gap: var(--s2);
}

.l-grid-two-large {
    --minimum: calc((100% - var(--s4)) / 2);
    display: grid;
    grid-gap: var(--s4);
}

.l-grid-three, .l-grid-three-flex {
    --minimum: calc((100% - var(--s2) * 2) / 3);
    display: grid;
    grid-gap: var(--s2);
}

.l-grid-four, .l-grid-four-flex {
    --minimum: calc((100% - var(--s2) * 3) / 4);
    display: grid;
    grid-gap: var(--s2);
}

@supports (width: min(var(--minimum), 100%)) {
    .l-grid-two, .l-grid-two-flex, .l-grid-two-large, .l-grid-three, .l-grid-three-flex, .l-grid-four, .l-grid-four-flex {
        grid-template-columns: repeat(auto-fit, minmax(min(var(--minimum), 100%), 1fr));
    }
}

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

.l-column__side {
    width: calc((100% - var(--s5)) * 0.4);
}

.l-column__main {
    width: calc((100% - var(--s5)) * 0.6);
}

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

/*---------------------------------------------
    layout float
*/
.l-float {
    display: flow-root;
}

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

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

.l-float__center {
    width: 64rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--s2);
}

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

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

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

/* chrome safari */
.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;
}

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

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

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

.mv.mv-low {
    position: relative;
    isolation: isolate;
    padding: 1.5vw 0 1.5vw;
    overflow: hidden;
    background: var(--site-color06) url(/wp/wp-content/uploads/mv-low.png) no-repeat center right 1.3rem;
    background-size: 23% auto;
    /* border-bottom: solid 1px #ebebeb; */
}

.mv.mv-low .mv__inner {
    background-color: unset;
    border-radius: 0;
    padding: 0;
    border: solid 0 #f5f7fb;
}

.mv.mv-low .mv-area-logo {
    width: 25%;
    padding-bottom: 0;
}

.mv.mv-low .mv-area-logo:hover {
    opacity: 0.7;
}

/*---------------------------------------------
    layout gnavi
*/
.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;
}

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

/*---------------------------------------------
    pankuzu
*/
#pankuzuWrap {
    margin: 0;
    width: 100rem;
    margin-right: auto;
    margin-left: auto;
}

#pankuzu {
    font-size: 1.3rem;
    padding: 1.2rem 0;
    line-height: 1.4;
}

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

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

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

/*---------------------------------------------
    low-page common heading
*/
#low-page h1:not([class]) {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    background-color: #0F4C81;
    position: relative;
    margin: 6rem auto 3rem;
    border-radius: 1.5rem;
    color: #fff;
}

#low-page h2:not([class]) {
    width: 100%;
    margin-block: 5rem 2rem; padding: var(--s3) var(--s2);
    font-size: 3rem;
    font-weight: 700;
    /* border-left: 12px solid #484140; */
    border-radius: 1rem;
    background: #e1ebff url(img/sec_bg.png) no-repeat top left;
    background-size: 45% auto;
}

#low-page h2:not([class]) a {
    display: block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url('./img/arrow-01-blue-right.svg') no-repeat center right / auto 1.8rem;
}

#low-page h2:not([class]) a:hover {
    color: #0085ff;
}

#low-page h3:not([class]) {
    width: 100%;
    margin-block: 3rem 2rem; padding: var(--s2);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px solid #707070;
}

#low-page .slider-item__type h3 {
    width: 100%;
    margin-block: auto; border-bottom: 0px solid #707070;
    padding: 0;
    margin: 5px 0 0;
}

#low-page h3:not([class]) a {
    display: block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url('./img/arrow-01-blue-right.svg') no-repeat center right / auto 1.8rem;
}

#low-page h3:not([class]) a:hover {
    color: #0085ff;
}

#low-page h4:not([class]) {
    width: 100%;
    margin-block: 3rem 2rem; padding: var(--s1) var(--s2);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #0F4C81;
}

#low-page h4:not([class]) a {
    display: block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url('./img/arrow-01-blue-right.svg') no-repeat center right / auto 1.8rem;
}

#low-page h4:not([class]) a:hover {
    color: #0085ff;
}

#low-page h5:not([class]) {
    width: 100%;
    margin-block: 3rem 2rem; padding: var(--s1) var(--s2);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
}

#low-page h5:not([class]) a {
    color: #0085ff;
}

#low-page h5:not([class]) a {
    display: block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url('./img/arrow-01-blue-right.svg') no-repeat center right / auto 1.8rem;
}

#low-page h5:not([class]) a:hover {
    color: #0f4c81;
}

.matome .onb-item-title-frame {
    border-radius: 1.2rem;
    margin-top: 6rem;
}

.onb-box-full.matome {
    max-width: 100rem;
    margin-right: auto;
    margin-left: auto;
}

.matome .l-onb-item-title__side {
    font-size: 3.5rem;
    border: solid 1px #ffffff;
    color: #ffffff;
    padding: 10px 5px 5px;
}

.matome span.onb-item-title-catch {
    font-size: 3rem;
    color: #ffffff;
}

/*---------------------------------------------
center-img
*/
.low-center-img-box {
    display: flow-root;
    margin-block: 4rem; }

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

.low-center-img-catch {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #0085ff;
    margin-bottom: 2rem;
}

/*---------------------------------------------
left-img
*/
.low-left-img-box {
    display: flow-root;
    margin-block: 4rem; }

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

.low-left-img-catch {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #0085ff;
    margin-bottom: 1rem;
}

/*---------------------------------------------
right-img
*/
.low-right-img-box {
    display: flow-root;
    margin-block: 4rem; }

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

.low-right-img-catch {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #0085ff;
    margin-bottom: 2rem;
}

/*---------------------------------------------
    Caption settings
*/
.caption {
    margin-top: 0.8em;
    color: #9e9e9e;
    font-size: 1.2rem;
    line-height: 1.1;
    text-align: center;
    word-break: break-all;
}

.caption a {
    color: var(--site-color06);
}

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

.caption-scroll {
    margin-top: 0.8em;
    color: #999;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    word-break: break-all;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    /* chrome safari */
}

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

/*---------------------------------------------
    Table settings
*/
table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

table th, table td {
    padding: var(--s1);
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

table th {
    background-color: #F5F7FB;
    text-align: left;
}

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

/*---------------------------------------------
    low-page list
*/
#low-page ul:not([class]), #low-page ol:not([class]) {
    margin-block: 4rem; }

/*---------------------------------------------
    Button Internal settings
*/
.btn-internal {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

.btn-internal a {
    width: 100%;
    margin: 0;
    padding: var(--s2) var(--s5);
    background: #0085ff url(./img/arrow-01-wht-right.svg) no-repeat center right 2rem / auto 1em;
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    transition: transform 0.3s;
    border-radius: 1rem;
    font-size: 1.8rem;
}

.btn-internal::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0.8rem, 0.8rem);
    border-radius: 1rem
}

.btn-internal:hover a {
    transform: translate(0.8rem, 0.8rem);
}

/*---------------------------------------------
    Button Ancher settings
*/
.btn-ancher {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

.btn-ancher a {
    width: 100%;
    margin: 0;
    padding: var(--s2) var(--s5);
    background: #0085ff url("./img/arrow-01-wht-down.svg") no-repeat center right 2rem/auto 0.6em;
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    transition: transform 0.3s;
    border-radius: 1rem;
    font-size: 1.8rem;
}

.btn-ancher::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0.8rem, 0.8rem);
    border-radius: 1rem;
}

.btn-ancher:hover a {
    transform: translate(0.8rem, 0.8rem);
}

/*---------------------------------------------
    Button Web settings
*/
.btn-web {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
    z-index: 5;
}

.btn-web a {
    width: 100%;
    margin: 0;
    padding: var(--s3) var(--s5);
    background: var(--site-color02) url("./img/icon-web.svg") no-repeat center left 1rem/auto 0.8em;
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    transition: transform 0.3s;
    border-radius: 1rem;
    font-size: 1.8rem;
}

.btn-web::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0.8rem, 0.8rem);
    border-radius: 1rem;
}

.btn-web:hover a {
    transform: translate(0.8rem, 0.8rem);
}

/*---------------------------------------------
    Text Link settings
*/
.btn-link {
    text-align: right;
}

.btn-link a {
    margin: 0 3rem 1rem;
    padding: 0.7rem 2rem 1rem 0;
    background: url("./img/arrow-01-blue-right.svg") no-repeat center right/auto 0.8em;
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    text-decoration: underline;
    color: #0085ff;
}

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

/*---------------------------------------------
    Tel Link settings
*/
.btn-tel {
    display: none;
}

/*---------------------------------------------
  footer
*/
.footer-area {
    padding: var(--s5) 0 0;
    background: var(--site-color06);
    margin-top: var(--s4);
    position: relative;
}

.footer-area a:hover {
    opacity: .6;
    transition: .2s;
}

.footer-area-logo {
    width: 24rem;
    max-width: 100%;
    margin: 0 auto var(--s5);
}

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

.footer-main {
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--s3);
    padding-left: var(--s3);
    box-sizing: content-box;
    width: 140rem;
    max-width: 80vw;
}

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

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--s3);
    padding-left: var(--s3);
    box-sizing: content-box;
    width: 140rem;
    max-width: 80vw;
}

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

.footer-menu-title {
    margin-bottom: var(--s1);
    font-size: 1.8rem;
    line-height: 1.6;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}

.footer-menu-title a {
    color: #111827;
}

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

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

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

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

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

.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;
    color: #0f4c81;
}

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

.footer-disclaimer {
    width: 70rem;
    margin: var(--s5) auto;
    padding: var(--s2) var(--s4);
    background: #fff;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 1rem;
}

.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: #FFF;
    text-decoration: none;
}

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

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

/*---------------------------------------------
  Page top Button
*/
.page-top {
    width: var(--s7);
    height: 6rem;
    border-radius: 10rem;
    position: fixed;
    right: var(--s2);
    bottom: var(--s7);
    z-index: 100;
    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;
    filter: grayscale(65%);
}

@media screen and (max-width: 767px) {
    /*---------------------------------------------
      sp base settings
  */:root {
        font-size: 2.6666666667vw;
    }

    body {
        min-width: auto;
    }

    .sp_br {
        display: inline;
    }

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

    /*---------------------------------------------
      sp layout center
  */
    #contents .l-center {
        padding-right: 5%;
        padding-left: 5%;
        box-sizing: border-box;
        max-width: fit-content;
        width: 100%;
    }

    #contents section.sec02.low-sec .l-center {
        padding-right: 0;
        padding-left: 0;
    }

    #contents section.sec02.low-sec .section-title08 {
        padding: var(--s2);
        font-size: 2.8rem;
        margin: 0;
        margin-bottom: 5rem;
    }

    /*---------------------------------------------
      sp layout stack
  */
    .l-stack {
        gap: var(--s2);
    }

    /*---------------------------------------------
      sp layout cluster
  */
    .l-cluster {
        gap: var(--s1);
    }

    /*---------------------------------------------
      sp layout grid
  */
    .l-grid-two, .l-grid-two-large {
        grid-template-columns: 100%;
    }

    .l-grid-three {
        grid-template-columns: 100%;
    }

    .l-grid-four {
        grid-template-columns: 100%;
    }

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

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

    /*---------------------------------------------
      sp layout column
  */
    .l-column {
        gap: var(--s2);
    }

    .l-column__side {
        width: 100%;
    }

    .l-column__main {
        width: 100%;
    }

    /*---------------------------------------------
      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: hidden;
        overflow-x: scroll;
        overflow-y: visible;
        /* chrome safari */
    }

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

    /*---------------------------------------------
    pankuzu
  */
    #pankuzuWrap {
        position: relative;
        overflow: auto;
        margin: 0 auto var(--s3);
        padding: 1.0rem 0;
        white-space: nowrap;
        width: 100%;
    }

    #pankuzu {
        padding: 0.7rem 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 common heading
  */
    #low-page h1:not([class]) {
        padding: var(--s2);
        font-size: 2.4rem;
        line-height: 1.5;
        margin: 5rem auto 2rem;
    }

    #low-page h1:not([class])::before, #low-page h1:not([class])::after {
        width: 6rem;
        height: 6rem;
    }

    #low-page h1:not([class])::before {
        top: -4rem;
    }

    #low-page h1:not([class])::after {
        bottom: -4rem;
    }

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

    #low-page h3:not([class]) {
        font-size: 2.1rem;
        border-bottom: 3px solid #818181;
    }

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

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

    #low-page .slider-item__type h3 {
        width: 100%;
        margin-block: auto; border-bottom: 0px solid #707070;
        padding: 0;
        margin: 5px 0 0;
    }

    /*---------------------------------------------
  center-img
  */
    .low-center-img {
        max-width: 100%;
    }
.low-center-img-box {
    margin-block: 2rem 0;
}
    /*---------------------------------------------
  left-img
  */
    .low-left-img {
        width: 100%;
        margin-right: 0;
        padding-bottom: var(--s2);
        float: inherit;
        text-align: center;
    }

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

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

    .table-label thead {
        display: none;
    }

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

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

    /*---------------------------------------------
      Button Internal settings
  */
    .btn-internal {
        margin: var(--s3) auto;
        width: 90%;
    }

    .btn-internal a {
        padding: var(--s2) var(--s3);
        background: #005fff url(./img/arrow-01-wht-right.svg) no-repeat center right 1rem / auto 1em;
    }

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

    /*---------------------------------------------
      Button Ancher settings
  */
    .btn-ancher {
        margin: var(--s3) auto;
        width: 90%;
    }

    .btn-ancher a {
        padding: var(--s2) var(--s3);
        background: #005fff url(./img/arrow-01-wht-down.svg) no-repeat center right 0.8rem / auto 0.6em;
    }

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

    /*---------------------------------------------
      Button Web settings
  */
    .btn-web {
        margin: var(--s3) auto;
        width: 90%;
    }

    .btn-web a {
        padding: var(--s2) var(--s4);
        background: var(--site-color02) url("./img/icon-web.svg") no-repeat center left 1rem/auto 1em;
        /* width: 90%; */
    }

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

    /*---------------------------------------------
  	Btn Link settings
  */
    .btn-link {
        margin: var(--s1) auto;
    }

    .btn-link a {
        padding: var(--s2) var(--s3) var(--s2) var(--s2);
        border: 1px solid #000;
        /* background: url("./img/arrow-01-black-right.svg") no-repeat 95% center/auto 1em; */
        text-align: left;
        line-height: 1.5;
        display: block;
        text-decoration: none;
    }

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

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

    /*---------------------------------------------
  	Button Tel settings
  */
    .btn-tel {
        margin: var(--s3) auto;
        display: block;
        position: relative;
        width: 90%;
    }

    .btn-tel a {
        width: 100%;
        margin: 0 auto;
        padding: 1.4rem 4rem;
        background: #009f63 url(./img/icon-tel.svg) no-repeat center left 1rem / auto 1.5em;
        color: #fff;
        display: block;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-decoration: none;
        transition: transform 0.3s;
        border-radius: 1rem;
    }

    .btn-tel::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-color: var(--site-color03);
        border-width: 0 1px 1px 0;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
        transform: translate(0.8rem, 0.8rem);
        border-radius: 1rem;
    }

    .btn-tel:hover a {
        transform: translate(0.8rem, 0.8rem);
    }

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

    /*---------------------------------------------
  	footer
  */
    .footer-area {
        padding: var(--s3) 0 0;
        margin-top: var(--s12);
        position: relative;
    }

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

    .footer-main {
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
        width: 100%;
        max-width: none;
    }

    .footer-bottom {
        padding: var(--s1) 0 var(--s9) 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;
        font-size: 1.5rem;
    }

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

    .footer-menu-title__link::after {
        content: "";
        width: var(--s2);
        height: 100%;
        background: url("./img/arrow-01-black-down.svg") no-repeat center/80%;
        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-01-black-right.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);
        background: url("./img/arrow-01-black-right.svg") no-repeat 95% center/auto 0.7em;
    }

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

    .page-top {
        width: 6rem;
        height: 6rem;
        right: var(--s1);
        bottom: 13%;
    }

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

.gnavi-area .l-stack-small {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2.section-title02 a {
    padding: var(--s2) var(--s5);
    background: url(./img/arrow-01-blue-right.svg) no-repeat center right 1.5rem/ auto 0.5em;
    display: block;
}

.arrow-title a, .m-title01 a {
    padding: 0 var(--s3);
    background: url(./img/arrow-01-blue-right.svg) no-repeat center right / auto 0.7em;
    display: block;
    width: 100%;
}

.pickup-contents02-catch a, .profile-catch a, .profile-box-ttl a {
    padding: 0 var(--s5) 0 0;
    background: url(./img/arrow-01-wht-right.svg) no-repeat center right 1.5rem/ auto 0.5em;
    display: block;
    color: #fff;
}

.profile-box-ttl a {
    padding: 0 var(--s5) 0 0;
    background: url(./img/arrow-01-blue-right.svg) no-repeat center right 1.5rem/ auto 0.5em;
    display: block;
    color: #111827;
}

a:-webkit-any-link {
    text-decoration: none;
    line-height: 1.4;
}

a:-webkit-any-link span:hover, h2.section-title02 a:hover, .arrow-title a:hover, .m-title01 a:hover, .pickup-contents02-catch a:hover, .profile-catch a:hover, .profile-box-ttl a:hover {
    color: #0085ff;
}

.sp-scroll-table {
    display: none;
}
#low-page.l-center.page-sitemap ul:not([class]) li a {
   text-decoration: underline !important;
}
#low-page.l-center.page-sitemap ul:not([class]) li a:hover {
   color: #0085ff;
}


/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .sp-scroll-table {
        margin-bottom: 1rem;
        display: block;
        padding: var(--s1);
        border: 1px solid #ccc;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 2rem;
    }
}

.l-contents-banner01 {
    margin-top: 15rem;
    margin-left: 15rem;
    display: flex;
    position: relative;
    border-radius: 1.5rem;
    background: #111827 url(img/sec_bg.png) no-repeat top left;
    background-size: 120% auto;
}

.contents-banner01-img {
    width: 43rem;
    margin-top: -5rem;
    margin-left: -17.5rem;
}

.contents-banner01-content {
    width: calc(100% - 43rem + 20rem);
    padding: var(--s4);
}

.contents-banner01-catch {
    font-size: 4rem;
    font-weight: 700;
    color: var(--site-color14);
    line-height: 1.2;
    color: #fff;
}

.contents-banner01-catch span {
    margin-bottom: 1rem;
    padding: var(--s1);
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
    background-color: #00C77B;
    border-radius: 10rem;
}

.contents-banner01-text {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.contents-banner01-btn {
    max-width: 36rem;
    z-index: 10;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-contents-banner01 {
        margin-left: 1rem;
        margin-right: 1rem;
        flex-direction: column;
    }

    .contents-banner01-img {
        width: 100%;
        margin-left: -2.5rem;
    }

    .contents-banner01-content {
        width: 100%;
        padding: var(--s2);
    }

    .contents-banner01-catch {
        font-size: 2.3rem;
    }

    .contents-banner01-text {
        font-size: 1.8rem;
    }
}

.section-title09 {
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: flow-root;
    /* border: 1px solid #ccc; */
    border-radius: 1.5rem;
    /* padding: 4rem; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.section-title09-img {
    width: 40%;
    margin-right: var(--s3);
    padding-bottom: var(--s1);
    float: left;
}

.section-title09-title {
    margin-bottom: var(--s4);
    font-size: 2.8rem;
    font-weight: 700;
    color: #0085ff;
    margin-top: 2rem;
}

.section-title09-catch {
    margin-bottom: 1.6rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--site-color14);
    line-height: 1.5;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title09-img {
        width: 100%;
        margin-bottom: 0;
        margin-right: 0;
    }

    .section-title09-title {
        margin-bottom: var(--s4);
        font-size: 2rem;
        line-height: 1.3;
    }

#low-page .section-title09 {
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: flow-root;
    /* border: 1px solid #ccc; */
    /* border-radius: 1.5rem; */
    /* padding: 4rem; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}




}

.onb-index02-frame {
    width: 80%;
    margin: auto;
}

.onb-index02-wrap {
    margin: var(--s6) auto;
    padding: var(--s1) var(--s3);
    background: #fff;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 1.5rem;
}

.onb-index02-title {
    padding: var(--s2);
    color: #0f4c81;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    background: url("img/icon-gear.svg") no-repeat left center;
    background-size: 4rem auto;
    position: relative;
    border-bottom: 1px solid var(--site-color03);
}

.onb-index02-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
    counter-reset: number 0;
    background: #fff;
    border-radius: 0;
}

#toc ul.onb-index02-chapter li {
    position: relative;
}

#toc ul.onb-index02-chapter li:not(.onb-index02-chapter-h-three)::before {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    color: #0085ff;
    position: absolute;
    top: 0;
    left: -1.8em;
}

#toc ul li.onb-index02-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}

#toc ul li.onb-index02-chapter-h a {
    display: block;
    text-decoration: none;
}

#toc ul li.onb-index02-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}

#toc ul li.onb-index02-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}

#toc ul li.onb-index02-chapter-h-two::before, #toc ul li.onb-index02-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.8em;
}

#toc ul li.onb-index02-chapter-h-three::before {
    content: "└";
}

/*----------------------------------------------
	more content settings
*/
#toc.onb-index02-gradation {
    margin-top: 1.4rem;
    height: auto;
    max-height: 9rem;
    overflow: hidden;
    transition: max-height 1s;
    /* border-top: 1px solid var(--site-color03); */
    position: relative;
}
#toc.onb-index02-gradation.is-open {
    max-height: fit-content;
}
#toc.onb-index02-gradation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}

#toc.onb-index02-gradation.is-open::after {
    display: none;
}

.onb-index02-btn {
    max-width: 32rem;
    margin: 2rem auto 0 auto;
    position: relative;
    z-index: 5;
}

.onb-index02-btn span {
    width: 100%;
    margin: var(--s5) auto;
    padding: 2rem 3rem;
    border: .2rem solid #ccc;
    border-radius: 4rem;
    background: url('img/acc-off.svg') no-repeat 95% center #fff;
    background-size: 1.4rem auto;
    display: block;
    text-align: center;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}

.onb-index02-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    transform: translate(.8rem, .8rem);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.onb-index02-btn:hover span {
    transform: translate(.8rem, .8rem);
}

.onb-index02-btn.is-open span {
    background: url('img/acc-on.svg') no-repeat 95% center #fff;
    background-size: 1.4rem auto;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    #toc .onb-index02-chapter {
        padding-left: var(--s4);
    }

    .onb-index02-btn:hover span {
        transform: none;
    }
}

.pc-fix-banner01 {
    width: 24rem;
    background-color: #0f4c81;
    position: fixed;
    right: 0;
    bottom: 18rem;
    z-index: 50;
    border-radius: 1rem 0 0 1rem;
}

.pc-fix-banner01 a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.pc-fix-banner01 a:hover {
    opacity: .7;
}

.pc-fix-banner01-img {
    position: relative;
}

.pc-fix-banner01-img img {
    border-radius: 1rem 0 0 0;
}

.pc-fix-banner01-text {
    padding: var(--s2);
    color: #fff;
    position: relative;
}

.pc-fix-banner01-text::after {
    content: "";
    width: 0.1rem;
    height: 0.1rem;
    border-top: .5rem solid transparent;
    border-left: .5rem solid transparent;
    border-right: .5rem solid #fff;
    border-bottom: .5rem solid #fff;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
}

.pc-fix-banner01-text p {
    margin: 0;
    font-size: 1.6rem;
    text-align: center;
    font-weight: bold;
}

.pc-fix-banner01-text p.text-small {
    font-size: 2rem;
    line-height: 1.5;
    color: #00C77B;
}

.pc-fix-banner01 {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pc-fix-banner01.js-show {
    opacity: 1;
    visibility: visible;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner01 {
        display: none;
    }
}

.sp-fix-banner01 {
    display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .sp-fix-banner01 {
        display: block;
        width: 100%;
        background-color: #0F4C81;
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 50;
    }

    .sp-fix-banner01-text {
        padding: var(--s1) var(--s2) var(--s1) 23vw;
        color: #fff;
        position: relative;
    }

    .sp-fix-banner01-text::before {
        content: "";
        width: 8rem;
        height: 3rem;
        background: url("/wp/wp-content/uploads/za-nac-00000397.jpg") no-repeat center center;
        background-size: cover;
        /* border: 1px solid #fff; */
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5;
        height: 100%;
        width: 20vw;
    }

    .sp-fix-banner01-text p {
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.2;
        font-weight: bold;
    }

    .sp-fix-banner01-text a {
        padding-right: 1.6rem;
        color: #fff;
        text-decoration: none;
        background: url("img/arrow-01-wht-right.svg") no-repeat right center / 1rem auto;
        display: block;
        line-height: 1;
    }

    .sp-fix-banner01-text a:hover {
        opacity: .7;
    }

    .onb-index02-frame {
        width: 100%;
    }

    .onb-index02-title {
        font-size: 1.6rem;
    }

    #toc ul li.onb-index02-chapter-h a {
        font-size: 1.5rem;
    }

    #toc ul.onb-index02-chapter li:not(.onb-index02-chapter-h-three)::before {
        line-height: 1.2;
    }

    .onb-box-full.matome {
        max-width: fit-content;
    }

    section.sec02.low-sec .l-center {
        width: 100%;
    }
}

section.sec02.low-sec {
    background-color: #fff;
    margin: 5rem auto;
    padding: 0;
}

section.sec02.low-sec .l-center {
    padding-right: 0;
    padding-left: 0;
}

section.sec02.low-sec .column-medium {
    padding: 0;
    background: #fff;
    border: 0;
    box-shadow: none;
}

section.sec06.low-sec .btn-web {
    margin: var(--s5) auto 1rem;
}

section.sec06.low-sec .m-title01 {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

section.sec06.low-sec .m-title01 span {
    font-size: 1.7rem;
    color: #9e9e9e;
    font-weight: normal;
}
