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

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

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

    Color settings

*/
:root {
    --site-color01: #13AAC0;
    --site-color02: #e3f4f3;
    --site-color03: #27496D;
    --site-color03-rgb: 2, 49, 86;
    --site-color04: #F7941D;
    --site-color05: #6cc0b7;
    --site-color05-rgb: 108, 192, 183;
    --site-color06: #F5F5F5;
    --site-color07: #AEE5EB;
    --site-color08: #333333;
    --site-color09: #f4f4f4;
    --site-color10: #1f496a;
    --site-color11: #d3f5f2;
    --site-color12: #d2ece9;
    --site-color13: #999;
    --site-color14: #34a7aa;
    --site-color15: #6a9f0c;
    --site-color16: #dbdbdb;
    --site-color17: #29a7a9;
    --bg-color01: #edf2f1;
    --bg-color02: #f2f2f2;
}

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

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

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

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

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

ul:not([class]) li::before {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: #067390;
    position: absolute;
    top: 0.25em;
    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: 2rem;
    color: #fff;
    background-color: #f7941d;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 0.1em;
    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: #000;
    transition: opacity 0.6s ease, color 0.6s ease;
}

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

strong {
    font-weight: 700;
}

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

small {
    font-size: 80%;
}

p:not([class]) {
    line-height: 1.7;
    word-break: break-all;
}

#index > p:not([class]) {
    max-width: 100rem;
    margin-right: auto;
    margin-left: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

　p:not([class]) span {
    display: contents;
    font-weight: 700;
    color: #ff4900;
}

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

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

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

    Emphasize 

*/
.marker {
    font-weight: 700;
    background-color: var(--site-color04);
}

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

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

    layout center

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

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

    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: flex-start;
    gap: var(--s2);
}

.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);
    margin-top: 3rem;
    align-items: stretch; /* ← この行を追加 */
}

.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);
    margin-top: 2rem;
}

.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 sidebar

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

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

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

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

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

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

    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;
    padding: 0 1rem;
    /* margin: 2rem auto 5rem; */
}

/*---------------------------------------------
    mainvisual
*/
.mainvisual, .mainvisual-archicad, .mainvisual-epco {
    padding: 4.8rem 0 8rem;
    background: url(img/mainvisual_bg.png) no-repeat right 0 top;
    background-size: auto 48rem;
    position: relative;
}

.mainvisual:before, .mainvisual-archicad:before, .mainvisual-epco:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(img/mv_bg.png) no-repeat center center;
    background-size: 101% auto;
    width: 20vw;
    height: 13.5vw;
    z-index: -1;
}

.mainvisual-archicad {
    padding: 4.8rem 0 8rem;
    background: url(img/mainvisual-archicad_bg.png) no-repeat right 1rem center;
    background-size: auto 48rem;
    position: relative;
}

.mainvisual-epco {
    padding: 4.8rem 0 8rem;
    background: url(img/mainvisual-epco_bg.png) no-repeat right 1.4rem center;
    background-size: auto 45rem;
    position: relative;
}

.mainvisual-low {
    padding: 4rem 0 1rem;
    background: url(img/mainvisual_bg.png) no-repeat right top;
    background-size: 15% auto;
    position: relative;
}

.mainvisual-low:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(img/mv_bg.png) no-repeat center center;
    background-size: 100% auto;
    width: 16vw;
    height: 10.5vw;
    z-index: -1;
}

.main-text, .main-logo {
    width: 100rem;
    margin: 0 auto 10px;
    padding-right: 37rem;
}

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

.main-heading {
    font-size: 4rem;
    color: #13AAC0;
    font-weight: bold;
    line-height: 1.3;
    padding-bottom: 2rem;
}

.main-heading span {
    color: #057e9b;
    font-size: 4.5rem;
}

.lead {
    font-size: 1.8rem;
    /* font-weight: bold; */
    line-height: 1.5;
}

.lead span {
    color: #057e9b;
}
}

/*---------------------------------------------
    pankuzu
*/
/* スクロールバー全体のデザイン */
#pankuzu::-webkit-scrollbar {
    height: 8px;
    /* 横スクロールバーの高さ */
    width: 8px;
    /* 縦スクロールバーの幅 */
}

/* スクロールバーの背景（トラック） */
#pankuzu::-webkit-scrollbar-track {
    background: transparent;
    /* 背景を透明にする */
}

/* スクロールバーのつまみ（サム） */
#pankuzu::-webkit-scrollbar-thumb {
    background: #ccc;
    /* つまみの色を薄いグレーに */
    border-radius: 4px;
    /* つまみを角丸にする */
}

/* つまみにマウスを乗せたとき */
#pankuzu::-webkit-scrollbar-thumb:hover {
    background: #aaa;
    /* 少し濃いグレーにする */
}

/* Firefox用の設定 */
#pankuzu {
    scrollbar-width: thin;
    /* スクロールバーを細くする */
    scrollbar-color: #ccc transparent;
    /* つまみの色と背景色 */
}

/* --- ここまで追加 --- */
#pankuzuWrap {
    margin: 0;
}

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

#pankuzu {
    max-width: 100rem;
    /* 1. 表示エリアの最大幅を100remに設定 */
    overflow-x: auto;
    /* 2. 横方向にはみ出したらスクロールバーを出す */
    white-space: nowrap;
    /* 3. 中のテキストの自動改行を無効にする */
    margin-bottom: 3rem;
}

#pankuzu a {
    text-decoration: none;
}

#pankuzu a:hover {
    color: #13aac0;
}

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

/*---------------------------------------------
    low-page common heading
*/
#low-page h1:not([class]) {
    width: 100%;
    padding: var(--s4);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    /* text-align: center; */
    background-color: var(--site-color09);
    position: relative;
    margin-bottom: 4rem;
}

#low-page h1:not([class])::before, #low-page h1:not([class])::after {
    content: "";
    width: 4rem;
    height: 4rem;
    background-color: var(--site-color03);
    position: absolute;
    z-index: -1;
}

#low-page h1:not([class])::before {
    bottom: -0.5rem;
    left: -0.5rem;
}

#low-page h1:not([class])::after {
    top: -0.5rem;
    right: -0.5rem;
}

#low-page h2:not([class]) {
    width: 100%;
    margin-block: 12rem 2rem;
    padding: var(--s3);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--site-color03);
    background-color: var(--site-color06);
    border-bottom: 5px solid var(--site-color01);
}

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

#low-page h2:not([class]) a:hover {
    opacity: .6;
}

#low-page h3:not([class]) {
    width: 100%;
    margin-block: 10rem 2rem;
    padding: var(--s2);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--site-color03);
    /* border-bottom: 6px solid var(--site-color05); */
    background-color: var(--site-color07);
}

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

#low-page h3:not([class]) a:hover {
    opacity: .6;
}

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

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

#low-page h4:not([class]) a:hover {
    opacity: .6;
}

#low-page h5:not([class]) {
    width: 100%;
    margin-block: 3rem 2rem; padding: 0 var(--s2);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--site-color03);
    border-left: 5px solid var(--site-color01);
}

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

#low-page h5:not([class]) a:hover {
    opacity: .6;
}

/*---------------------------------------------
low-page 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: var(--site-color01);
}

/*---------------------------------------------
low-page 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 {
    margin-bottom: 1.6rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--site-color01);
    line-height: 1.5;
}

/*---------------------------------------------
low-page 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 {
    margin-bottom: 1.6rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--site-color01);
    line-height: 1.5;
}

/*--------------------------------------------
    Caption settings
*/
.caption {
    margin-top: 0.8em;
    color: var(--site-color13);
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    word-break: break-all;
}

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

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

.caption-scroll {
    margin-top: 0.8em;
    color: var(--site-color13);
    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: var(--site-color13);
}

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

table th {
    background-color: #e7f7f9;
    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(--s6) var(--s2) var(--s5);
    background: var(--site-color01) url("img/arrow-01-wht-right.svg") no-repeat center right 2rem / auto 1em;
    display: block;
    color: #FFFFFF;
    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: 5rem;
    font-size: 1.8rem;
}

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

.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(--s6) var(--s2) var(--s5);
    background: var(--site-color01) url("./img/arrow-01-wht-down.svg") no-repeat center right 2rem / auto 0.5em;
    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: 5rem;
    font-size: 1.8rem;
}

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

.btn-ancher:hover a {
    transform: translate(var(--s1), var(--s1));
}

/*--------------------------------------------
    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(--s2) var(--s6) var(--s2) var(--s5);
    background: var(--site-color04) url("img/icon-web.svg") no-repeat center right 2rem / auto 1em;
    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: 5rem;
    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(var(--s1), var(--s1));
    border-radius: 5rem;
}

.btn-web:hover a {
    transform: translate(var(--s1), var(--s1));
}

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

.btn-link a {
    margin: 0;
    padding: 1rem 2rem 1rem 0;
    background: url("./img/arrow-01-black-right.svg") no-repeat center right/auto 1em;
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.btn-link a:hover {
    color: #13aac0;
}

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

/*
---------------------------------------------
    PC footer
*/
.footer-area {
    padding: var(--s8) 0 0;
    background: var(--site-color06);
}

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

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

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

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

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

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

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

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

.footer-menu-title a {
    margin: 0;
    padding: 2rem 2rem;
    background: #fff url(./img/arrow-01-black-right.svg) no-repeat center right 1rem / auto 1em;
    display: block;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 10px;
}

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

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

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

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

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

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

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

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

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

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

.footer-disclaimer__label {
    display: inline;
}

.footer-disclaimer__text {
    display: inline;
}

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

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

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

.footer-copyright__link:hover {
    color: #FFF;
    opacity: .7;
}

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

.footer-sitemap__link:hover {
    color: #FFF;
    opacity: 0.6;
}

/*---------------------------------------------------------
    Page top Button
  */
.page-top {
    width: 6rem;
    height: 6rem;
    border-radius: 10rem;
    position: fixed;
    right: var(--s4);
    bottom: var(--s7);
    z-index: 10;
    overflow: hidden;
}

.page-top__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

/*
  ---------------------------------------------
      sp footer
  */
@media screen and (max-width: 767px) {
    .footer-area {
        padding: var(--s3) 0 0;
    }

    .footer-main {
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }

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

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

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

    .footer-menu-title {
        margin-bottom: 0;
        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/100%;
        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.9em;
    }

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

    .footer-menu__item {
        width: 100%;
        font-size: 1.4rem;
    }

    .footer-menu__link {
        padding: var(--s1) var(--s5) var(--s1) var(--s2);
        background: url("./img/arrow-01-black-right.svg") no-repeat 97% center/auto 1em;
    }

    .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);
        font-size: 1rem;
    }

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

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

    .footer-sitemap {
        display: none;
    }

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

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

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

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

      sp base settings

  */:root {
        font-size: 2.6666666667vw;
    }

    .sp_br {
        display: inline;
    }

    .pc_br {
        display: none;
    }
}

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

      sp layout center

  */.l-center {
        padding-right: calc(var(--s1) + var(--s-2));
        padding-left: calc(var(--s1) + var(--s-2));
        box-sizing: border-box;
    }

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

      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 sidebar

  */
    .l-sidebar__side {
        display: none;
    }

    .l-sidebar__main {
        width: 100%;
    }

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

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

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

    #low-page h2:not([class]) {
        padding: var(--s2);
        font-size: 2.4rem;
        margin-block: 10rem 2rem;
    }

    #low-page h3:not([class]) {
        font-size: 2.1rem;
        /* border-bottom: 3px solid var(--site-color05); */
        margin-block: 8rem 2rem;
    }

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

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

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

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

    /*---------------------------------------------
    low-page 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: #ccc;
    }

    .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) var(--s1) var(--s3) 0;
    }

    .btn-internal a {
        padding: var(--s2) var(--s4);
        background: var(--site-color01) url("img/arrow-01-wht-right.svg") no-repeat center right 1.3rem / auto 1em;
    }

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

    /*--------------------------------------------
      Button Ancher settings
  */
    .btn-ancher {
        margin: var(--s3) var(--s1) var(--s3) 0;
    }

    .btn-ancher a {
        padding: var(--s2) var(--s3) var(--s2) var(--s1);
        background: var(--site-color01) url("./img/arrow-01-bk-down.svg") no-repeat center right 0.8rem / auto 0.5em;
    }

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

    /*--------------------------------------------
      Button Web settings
  */
    .btn-web {
        margin: var(--s3) var(--s1) var(--s3) 0;
        position: relative;
    }

    .btn-web a {
        padding: var(--s2) var(--s3);
        background: var(--site-color04) url("./img/icon-web.svg") no-repeat center right 0.8rem / auto 0.8em;
    }

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

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

    .btn-link a {
        padding: var(--s2) var(--s4);
        border: 1px solid #000;
        border-radius: 4rem;
        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;
        text-align: center;
    }

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

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

    .btn-tel a {
        width: 100%;
        margin: 0 auto;
        padding: 1.4rem 4rem;
        background: #dede4d url("./img/icon-tel.svg") no-repeat center left 2rem / auto 1.2em;
        color: var(--site-color08);
        display: block;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-decoration: none;
        border-radius: 5rem;
        z-index: 1;
        position: relative;
    }

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

.onb-index01-frame {
    width: 75rem;
    background-color: #fff;
    margin: 3rem auto;
    border: 1px solid #d6d6d6;
    padding: 0;
    border-radius: 1rem;
}

.onb-index01-wrap {
    margin: 0 auto;
    padding: var(--s1) var(--s1);
    background-color: transparent;
    position: relative;
}

.onb-index01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s7);
    color: var(--site-color03);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/icon-gear.svg") no-repeat left center;
    background-size: 4rem auto;
    position: relative;
    cursor: pointer;
}

.onb-index01-title::before {
    content: "";
    width: 2rem;
    height: 0.1rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 1.9rem;
    transform: translate(0, -50%);
}

.onb-index01-title::after {
    content: "";
    width: 0.1rem;
    height: 2rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2.8rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.onb-index01-title.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
    display: none;
}

#toc .onb-index01-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s3);
    font-weight: 700;
    counter-reset: number 0;
    font-size: 1.6rem;
}

#toc ul li.chapter-h-two::before, #toc ul li.onb-index01-chapter-h-two::before {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    color: var(--site-color14);
    position: absolute;
    top: 0;
    left: -1.8em;
}

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

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

#toc ul li.onb-index01-chapter-h a:hover {
    opacity: .6;
}

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

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

#toc ul li.onb-index01-chapter-h-two::before, #toc ul li.onb-index01-chapter-h-three::before {
    color: var(--site-color14);
    position: absolute;
    top: 0;
    left: -1.8em;
}

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

.more-content {
    display: none;
}

.onb-index01-content {
    margin-top: 0.5rem;
    /* border-top: 1px solid #d6d6d6; */
}

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

.pc-fix-banner04 {
    width: 17.5rem;
    position: fixed;
    right: 0;
    bottom: 15rem;
    z-index: 50;
}

.pc-fix-banner04-color1 {
    background-color: var(--site-color03);
}

.pc-fix-banner04-color1.pc-fix-banner04-text p {
    color: #ffffff;
}

.pc-fix-banner04-color1.pc-fix-banner04-text .text-small {
    color: #004c60;
}

.pc-fix-banner04-text p span {
    color: #ffe500;
    font-size: 1.8rem;
}

.pc-fix-banner04-color2 {
    background-color: #13aac0;
}

.pc-fix-banner04-color2.pc-fix-banner04-text a {
    color: #087390;
}

.pc-fix-banner04-text {
    padding: var(--s1) 0 var(--s1) var(--s1);
    /* color: #fff; */
    position: relative;
    font-weight: bold;
    border-radius: 0.5rem 0 0 0.5rem;
}

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

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

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

.pc-fix-banner04-text p {
    margin: 0;
    font-size: 1.4rem;
    /* text-align: center; */
    line-height: 1.2;
    color: #ffffff;
}

.pc-fix-banner04-text .text-small {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 0.9rem;
    color: #004c60;
    background: #fff;
    padding: 0.3rem;
}

.pc-fix-banner04-color2 .text-small {
    /* color: #f7941d; */
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner04 {
        width: 100%;
        right: auto;
        left: 0;
        bottom: 0;
        z-index: 50;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .pc-fix-banner04 .l-stack-small {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        width: 100%;
    }

    .pc-fix-banner04-text {
        padding: var(--s1);
        /* color: #fff; */
        position: relative;
        font-weight: bold;
        border-radius: 0;
        width: 100%;
    }

    .pc-fix-banner04-text p {
        font-size: 1.3rem;
        line-height: 1.1;
    }

    .pc-fix-banner04-text p span {
    font-size: 4vw;
}
    
}

.sp-scroll-table {
    display: none;
}

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

.related-article01-frame {
    margin: var(--s6) auto;
    padding: var(--s2) var(--s3) var(--s4) var(--s3);
    background-color: var(--site-color09);
    position: relative;
}

.related-article01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s7);
    color: var(--site-color03);
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/icon-gear.svg") no-repeat left center;
    background-size: 4rem auto;
    position: relative;
}

.related-article01-list {
    padding: var(--s2) var(--s2) var(--s2) var(--s7);
    font-weight: 700;
    border-top: 0px solid var(--site-color03);
}

.related-article01-list li {
    padding-left: 1.2em;
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}

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

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

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

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

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .related-article01-list {
        padding: 0;
    }

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

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

.section-title01-frame {
    padding-top: 15rem;
    position: relative;
}

.section-title01-frame::before {
    content: "";
    width: 100%;
    min-height: 38.8rem;
    background: url("./img/dummy.jpg") no-repeat center center;
    background-size: cover;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
}

.section-title01-frame p {
    color: #fff;
}

.section-title01-bg {
    padding: 4rem 7rem;
    background-color: rgb(18 179 199 / 0.9);
    position: relative;
    z-index: 2;
    border-radius: 1rem 1rem 0 0;
}

.section-title01 {
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    position: relative;
}

.section-title01::after {
    content: "";
    height: 1px;
    transform: translateX(-50%);
    background-color: #ccc;
    position: absolute;
    top: -2rem;
    left: 50%;
    z-index: 2;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title01-bg {
        padding: var(--s7) var(--s2) var(--s1) var(--s2);
    }

    .section-title01 {
        margin-bottom: var(--s3);
        font-size: 2.4rem;
    }

    .section-title01::before {
        font-size: 1.8rem;
        top: -3.2rem;
    }

    section.sec01.sec_epco .section-title01-frame::before {
        content: "";
        width: 80%;
        min-height: 38.8rem;
        background: url(img/sec_epco_bg.jpg) no-repeat top -10rem center;
        background-size: cover;
        transform: translateX(-50%);
        position: absolute;
        top: 0;
        left: 50%;
        z-index: -1;
        border-radius: 1rem;
    }
}

.simplified-chart-cpt {
    display: none;
}

.simplified-chart {
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.simplified-chart th.acc_color {
    background: #027e9b;
    font-size: 2.3rem;
}

.simplified-chart th.acc_color:hover {
    /* background: #004757; */
    /* font-size: 2.3rem; */
}

.simplified-chart th.acc_color span {
    display: block;
    font-size: 2.1rem;
    line-height: 1.3;
    border-bottom: solid 1px #fff;
    padding-bottom: 1rem;
    margin-bottom: 0.8rem;
    color: #ffeb3b;
}

.simplified-chart th.acc_color span span {
    display: block;
    font-size: 1.8rem;
    background: #fff;
    color: #004757;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.simplified-chart th, .simplified-chart td {
    min-width: 20rem;
    padding: 0.9rem;
    line-height: 1.5;
}

.simplified-chart th {
    background-color: #159ab0;
    text-align: center;
    color: #ffffff;
    font-size: 1.6rem;
    width: 100vw;
}

.simplified-chart .title-text {
    font-size: 2.5rem;
}

.simplified-chart tr:nth-child(1) th {
    /* background-color: #E8F6F5; */
    /* color: #159ab0; */
    width: 100vw;
}

.simplified-chart td {
    background-color: #fff;
    text-align: center;
    width: 100vw;
}

.simplified-chart tr:hover {
    background-color: #fdffdc;
}

.simplified-chart td span.check {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF5722;
}

.simplified-chart tr:hover td {
    background-color: #fdffdc;
}

.simplified-chart td.acc_color {
    /* background-color: #fdffdc; */
}

.simplified-chart td span {
    display: block;
    font-weight: 700;
    color: #f7651d;
}

.simplified-chart td span.acc_size {
    display: block;
    font-size: 1rem;
    color: #333333;
}

.simplified-chart td .font-large {
    font-size: 2.1rem;
}

.simplified-chart td .font-small {
    font-size: 1.2rem;
}

.simplified-chart-img {
    text-align: center;
}

.simplified-chart .btn-web {
    margin: var(--s2) 0;
    font-size: 1.4rem;
}

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

    .l-scroll-x-sp .simplified-chart {
        width: fit-content;
    }

    .simplified-chart th.acc_color a span span {
        font-size: 4vw;
    }

    .l-scroll-x-sp .simplified-chart th, .l-scroll-x-sp .simplified-chart td {
        min-width: 25rem;
    }

    .simplified-chart th.acc_color span span {
        font-size: 4vw;
    }

    .simplified-chart th.acc_color span {
        font-size: 4.5vw;
    }

    .simplified-chart .title-text {
        font-size: 5vw;
    }
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title02 {
        font-size: 2.8rem;
        line-height: 1.5;
    }
}

/*------------------------------------------
    1box column settings
*/
.column-medium {
    padding: var(--s4);
    border: 1px solid #ccc;
}

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .column-medium {
        padding: var(--s2);
    }

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

.onb-img-title-box {
    width: calc(100% + 6.4rem);
    margin-left: -3.2rem;
}

.onb-img-title-area {
    display: flex;
    background-color: #12b3c7;
    align-items: end;
    border-radius: 1rem 1rem 0 0;
    justify-content: center;
}

.onb-img-title-image {
    width: 20%;
    padding-left: var(--s4);
}

.onb-img-title-image img {
    margin-top: -6rem;
    width: 100%;
}

.onb-img-title {
    width: 100%;
    padding: var(--s1) var(--s1) 0 var(--s1);
    color: #fff;
    line-height: 1.5;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
}

.onb-img-title-sub {
    margin: 0 auto var(--s1);
    padding: var(--s2);
    color: #ffeb3b;
    font-size: 2.5rem;
    line-height: 1.3;
    /* border-bottom: 1px solid #ffffff; */
    display: block;
    background: #159ab0;
    border-radius: 1rem;
}

.onb-img-title-small {
    font-size: 1.4rem;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-img-title-box {
        width: calc(100% + 3.2rem);
        margin-left: -1.6rem;
    }

    .onb-img-title-image {
        width: 40%;
        padding-left: var(--s1);
    }

    .onb-img-title {
        width: 100%;
        font-size: 2.4rem;
    }
}

.onb-icon-title-frame {
    padding: 0 var(--s4) var(--s1);
    background-color: #12b3c7;
    position: relative;
}

.onb-icon-title-icon {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -4rem;
    left: 0;
}

.onb-icon-title-icon img {
    width: 100%;
}

.onb-icon-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.onb-icon-title .onb-icon-title-catch {
    font-size: 3.5rem;
}

.onb-icon-title .underline {
    border-bottom: 5px solid var(--site-color15);
}

.onb-icon-title small {
    font-size: 2.1rem;
    border: none;
}

.onb-icon-title-catch {
    margin-bottom: .8rem;
    font-size: 1.8rem;
    display: block;
    line-height: 1.5;
    border: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-icon-title-frame {
        padding: 0 var(--s2) var(--s2);
        margin-top: -1px;
    }

    .onb-icon-title {
        font-size: 2.4rem;
    }

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

    .onb-icon-title-catch {
        padding-left: 0;
        font-size: 1.4rem;
    }

    .onb-icon-title-icon {
        width: 6rem;
        height: 6rem;
        position: absolute;
        top: -2rem;
        left: -.5rem;
    }
}

.onb-center-img {
    max-width: 64%;
    margin: 0 auto;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-center-img {
        max-width: 100%;
    }

    .onb-m-title5 span {
        font-size: 6vw;
    }
}

.onb-sp-scroll-table table {
    width: 100%;
    border-collapse: collapse;
}

.onb-sp-scroll-table table th, .onb-sp-scroll-table table td {
    min-width: 15rem;
    padding: var(--s2);
    border: 1px solid #ccc;
}

.onb-sp-scroll-table table th:first-child {
    width: 10%;
}

.onb-sp-scroll-table table th {
    background-color: #e3f4f3;
    width: 25%;
}

.onb-sp-scroll-table-cpt {
    display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-sp-scroll-table {
        padding-right: .5rem;
    }

    .onb-sp-scroll-table table {
        width: inherit;
        position: relative;
    }

    .onb-sp-scroll-table table::after {
        content: "";
        width: .5rem;
        height: 1px;
        position: absolute;
        top: 0;
        right: -.5rem;
    }

    .onb-sp-scroll-table table th, .onb-sp-scroll-table table td {
        min-width: 15rem;
    }

    .onb-sp-scroll-table-cpt {
        margin-bottom: 1rem;
        display: block;
        padding: var(--s1);
        /* border: 1px solid #ccc; */
        text-align: center;
        font-size: 1.2rem;
        border-radius: 2rem;
    }
}

.onb-iconbox02-frame {
    padding: var(--s4);
    background-color: var(--site-color09);
}

.onb-iconbox02-catch {
    padding: 0 var(--s1) var(--s3) var(--s5);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px solid var(--site-color03);
    background: url('./img/icon-gear.svg') no-repeat top left;
    background-size: 3rem auto;
}

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

.text-area {
    line-height: 2;
}

.summary-box-l {
    padding: var(--s4);
    border: 1px solid #d6d6d6;
    display: grid;
    grid-auto-rows: minmax(10px, auto) 1fr;
    grid-template-areas: "catch img" "content img";
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.summary-box-l-catch {
    padding: var(--s2) var(--s1) var(--s2) var(--s9);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    background: url('./img/icon-summary.svg') no-repeat center left / auto 2em;
    background-size: 6rem 6rem;
    grid-area: catch;
}

.summary-box-l-img {
    padding-left: var(--s4);
    grid-area: img;
    object-fit: cover;
    height: 100%;
}

.summary-box-l-content {
    grid-area: content;
}

.summary-box-r-content ul, .summary-box-l-content ul {
    margin: 2rem auto;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .text-area {
        font-size: 1.4rem;
    }

    .summary-box-l {
        padding: var(--s2);
        display: block;
    }

    .summary-box-l-catch {
        margin-bottom: var(--s2);
        font-size: 5vw;
    }

    .summary-box-l-img {
        padding-left: 0;
        margin-bottom: var(--s2);
        margin-top: 2rem;
    }
}

.text-area {
    line-height: 2;
}

.text-area.text-catch {
    margin-bottom: 1rem;
    margin-top: 3rem;
    font-size: 2rem;
    font-weight: 700;
    color: #f7941d;
    line-height: 1.3;
}

.summary-box-r {
    padding: var(--s4);
    border: 1px solid #d6d6d6;
    display: grid;
    grid-auto-rows: minmax(10px, auto) 1fr;
    grid-template-areas: "img catch" "img content";
    border-radius: 1rem;
}

.summary-box-r-catch {
    padding: var(--s2) var(--s1) var(--s2) var(--s9);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    background: url('./img/icon-summary.svg') no-repeat center left / auto 2em;
    background-size: 6rem 6rem;
    grid-area: catch;
}

.summary-box-r-img {
    padding-right: var(--s4);
    grid-area: img;
}

.summary-box-r-content {
    grid-area: content;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .text-area {
        font-size: 1.4rem;
    }

    .summary-box-r {
        padding: var(--s2);
        display: block;
    }

    .summary-box-r-catch {
        margin-bottom: var(--s2);
        font-size: 5vw;
    }

    .summary-box-r-img {
        padding-right: 0;
        margin-bottom: var(--s2);
    }
}

.right-img-box {
    display: flow-root;
}

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

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .right-img {
        width: 100%;
        margin-left: 0;
        padding-bottom: var(--s2);
        float: inherit;
        text-align: center;
    }
}

.l-onb-flex-table {
    display: flex;
    flex-direction: column;
}

.onb-flex-table {
    border-collapse: collapse;
    word-break: break-all;
    tr {
        display: table-row;
        vertical-align: inherit;
        unicode-bidi: isolate;
        border-color: inherit;
    }
}

.onb-flex-table th, .onb-flex-table td {
    padding: var(--s2);
    border: 1px solid #d3d3d3;
}

.onb-flex-table th {
    width: 34%;
    background-color: #e3f4f3;
    vertical-align: middle;
    font-weight: normal;
}

.onb-flex-table td {
    background-color: #fff;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-onb-flex-table {
        flex-direction: column;
    }

    .onb-flex-table + table {
        margin-top: -1px;
    }
}

.section-title05 {
    width: 100%;
    margin-top: 5rem;
    margin-bottom: 3rem;
    padding: var(--s4);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    text-align: center;
    background-color: #e3f4f3;
    position: relative;
    border-radius: 1rem;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title05 {
        padding: var(--s2);
        font-size: 2.4rem;
    }
}

.section-title06-frame {
    margin-top: 5rem;
    position: relative;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title06 {
        padding: var(--s2);
        font-size: 2.4rem;
    }
}

.onb-exbox-frame {
    padding: var(--s2);
    background-color: #e3f4f3;
    border-radius: 1rem;
}

.onb-exbox-frame p {
    font-size: 1.4rem;
    line-height: 1.4;
}

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

.l-onb-exbox__side {
    width: calc((100% - var(--s3))*.35);
    padding: var(--s2);
    background-color: #fff;
}

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

.onb-exbox-bgbox {
    padding: var(--s2);
    background-color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    word-break: break-all;
}

.onb-exbox-bgbox span {
    margin-bottom: 1rem;
    font-size: 2rem;
    display: block;
}

.onb-exbox-img {
    /* padding-left: var(--s4); */
    /* padding-right: var(--s4); */
    text-align: center;
}

.onb-exbox-catch {
    margin: var(--s2) 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-onb-exbox {
        flex-direction: column;
    }

    .l-onb-exbox__side, .l-onb-exbox__main {
        width: 100%;
    }

    .ex-box {
        display: flex;
        gap: var(--s1);
    }

    .onb-exbox-img {
        width: calc((100% - var(--s1))* .25);
        padding: 0;
    }

    .onb-exbox-catch {
        margin: var(--s1) 0 0 0;
    }

    .ex-box-content {
        width: calc((100% - var(--s1))* .75);
        text-align-last: left;
    }
}

.section-title06-frame {
    margin-top: 8rem;
    position: relative;
    margin-bottom: 3rem;
    z-index: 1;
}

.section-title06-frame::after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #12b3c7;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 0 1rem 1rem 0;
}

.section-title06 {
    width: 100%;
    padding: var(--s4) var(--s12);
    font-size: 3.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    position: relative;
}

.sec_archicad .section-title06 a {
    color: #ffffff;
    text-decoration: none;
}

.sec_archicad .section-title06 a::after {
    content: "";
    width: 1.4rem;
    height: 3rem;
    background: url(img/arrow-01-right.svg) no-repeat center / 100% auto;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
}

.sec_archicad .section-title06 a:hover {
    color: #ffeb3b;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title06 {
        padding: var(--s2) var(--s4) var(--s2) var(--s2);
        font-size: 6vw;
    }
}

.left-img-box {
    display: flow-root;
}

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

.left-img-catch {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .left-img {
        width: 100%;
        margin-right: 0;
        padding-bottom: var(--s2);
        float: inherit;
        text-align: center;
    }
}

.l-pickup-contents01 {
    width: 100%;
    min-height: 52rem;
    display: flex;
    align-items: center;
    background-color: var(--site-color09);
    position: relative;
}

.l-pickup-contents01--reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
    border-radius: 1rem;
}

.l-pickup-contents01-box {
    flex: 1;
}

.l-pickup-contents01-box img {
    min-height: 52rem;
    display: block;
    object-fit: cover;
    border-radius: 0 1rem 1rem 0;
}

.l-pickup-contents01-content {
    max-width: 50rem;
    padding: 0 var(--s8);
    position: relative;
    z-index: 5;
}

.l-pickup-contents01-content--reverse {
    margin-left: auto;
    padding: 3rem var(--s3);
}

.pickup-contents01-catch {
    margin-bottom: 3rem;
    font-size: 3.2rem;
    font-weight: 700;
    color: #087390;
    line-height: 1.5;
}

.pickup-contents01-catch a {
    margin: 0;
    padding: 2rem 2rem 2rem 0;
    background: url(./img/arrow-01-black-right.svg) no-repeat center right 1rem / auto 0.8em;
    display: block;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 10px;
}

section.sec06 .pickup-contents01-catch a:hover{
 color: #087390;
}

.btn-pickup-contents01 {
    margin: var(--s5) auto 0 auto;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .l-pickup-contents01 {
        min-height: inherit;
        flex-direction: column;
    }

    .l-pickup-contents01-content {
        max-width: inherit;
        padding: var(--s4) var(--s2);
    }

    .l-pickup-contents01-box img {
        min-height: inherit;
        object-fit: inherit;
    }

    .pickup-contents01-catch {
        font-size: 2.4rem;
    }

    .btn-pickup-contents01 {
        margin-right: var(--s1);
    }
}

.onb-m-title6 {
    padding: .5rem 1rem .8rem 1rem;
    line-height: 1.5;
    font-size: 2.8rem;
    font-weight: 700;
    /* border-left: .5rem solid var(--site-color14); */
    border-bottom: 1px solid #d6d6d6;
    margin: 5rem auto 3rem;
    color: #0e8999;
    text-align: center;
}

/*------------------------------------------
    2box column settings
*/
.column-medium {
    padding: 0 var(--s4) var(--s4);
    border: 1px solid #ccc;
    border-radius: 1rem;
    margin-top: 5rem;
    background: #fff;
}

section.sec07.sec_archicad .l-grid-two .column-medium {
    margin-top: 0;
}

section.sec07.sec_archicad .l-grid-two .column-medium p {min-height: 12rem;}

section.sec07.sec_archicad .l-grid-two .column-medium .btn-internal {
    margin: var(--s5) auto 0;
}

.l-grid-two .column-medium .btn-link {
    margin-top: 1rem;
}

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .column-medium {
        padding: var(--s2);
    }

    section.sec07.sec_archicad .l-grid-two .column-medium {
        padding-top: 0;
    }

    section.sec07.sec_archicad .l-grid-two .column-medium .btn-box {
        margin: 0 auto 3rem;
    }

    section.sec07.sec_archicad .l-grid-two .column-medium table tr {
        display: grid ;
    }

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

    section.sec07.sec_archicad .low-left-img-catch {
        font-size: 1.5rem;
    }

    .l-grid-two .column-medium .btn-link {
        margin-top: 3rem;
    }
}

.twb-arrow-title {
    margin-bottom: 2.8rem;
    padding: var(--s2);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--site-color03);
    background-color: var(--site-color03);
    border: 1px solid var(--site-color03);
    text-align: center;
    line-height: 1.5;
    position: relative;
    border-radius: 1rem 1rem 0 0;
}

.twb-arrow-title::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 2rem solid transparent;
    border-left: 2rem solid transparent;
    border-right: 2rem solid var(--site-color03);
    border-bottom: 2rem solid var(--site-color03);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    bottom: -1.3rem;
    border-radius: 0.5rem;
}

.twb-arrow-title-sub {
    padding: var(--s1);
    margin-bottom: .8rem;
    background-color: #fff;
    font-size: 1.4rem;
    color: var(--site-color03);
    line-height: 1;
    display: inline-block;
}

.twb-arrow-title-small {
    font-size: 1.4rem;
}

.twb-iconbox01-bg-colored {
    padding-top: 0rem;
    margin-bottom: 2rem;
}

.twb-iconbox01-area {
    padding: var(--s3);
    background-color: var(--site-color06);
    position: relative;
    border-radius: 1rem;
    margin: 2rem auto;
}

.twb-iconbox01-bg-colored.implementing {
    margin-top: 3rem;
}

.twb-iconbox01-bg-colored.implementing .twb-iconbox01-area {
    background-color: var(--site-color02);
    font-size: 1.3rem;
}

.twb-iconbox01-area span {
    font-weight: 700;
    color: var(--site-color03);
    padding-right: 2rem;
}

.twb-iconbox01-image {
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: -3.2rem;
    left: -1.6rem;
}

.twb-iconbox01-title {
    /* padding-left: var(--s2); */
    padding-bottom: var(--s2);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--site-color03);
    text-align: center;
    border-bottom: 1px solid var(--site-color03);
    margin-bottom: 2rem;
}

.twb-iconbox01-sub {
    padding: var(--s1) var(--s3);
    background-color: var(--site-color01);
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    transform: translateX(-50%);
    position: absolute;
    top: -1.5rem;
    left: 50%;
    width: 40%;
    text-align: center;
    border-radius: 1rem;
}

.twb-iconbox01-title span {
    margin-bottom: var(--s1);
    font-size: 1.4rem;
    line-height: 1.5;
    display: block;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .twb-iconbox01-image {
        width: 8rem;
        height: 8rem;
        top: -1.6rem;
    }

    .twb-iconbox01-title {
        padding-left: 0;
    }

section.sec07.sec_archicad .l-grid-two .column-medium p {
    min-height: auto;
}


    
}

.section-title02-frame {
    margin-top: 5rem;
    text-align: center;
    position: relative;
    margin-bottom: 5rem;
}

.section-title02 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--site-color03);
    text-align: center;
    line-height: 1.5;
}

.section-title02-sub {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--site-color05);
    text-align: center;
    position: absolute;
    top: -1.5em;
    left: 0;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .section-title02 {
        font-size: 2.8rem;
        line-height: 1.3;
    }
}

.onb-taglist-bg {
    padding: var(--s4) var(--s4) 0;
    background-color: #077e9b;
    width: calc(100% + var(--s8));
    margin-left: calc(var(--s4) * -1);
    border-radius: 0.7rem 0.7rem 0 0;
}

.onb-taglist-title {
    text-align: center;
    font-size: 2.1rem;
}

.tag-list-6c {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    justify-content: space-between;
}

.tag-list-6c li {
    width: calc((100% - var(--s10))/ 3);
    padding: .8rem;
    text-align: center;
    line-height: 1.4;
    font-size: 1.8rem;
    border-radius: 1rem;
}

.tag-list-6c li::before {
    display: none;
}

.onb-tag-colored {
    background-color: #ffffff;
    color: var(--site-color14);
}

.onb-tag-white {
    border: 1px solid var(--site-color16);
    background-color: #fff;
    color: var(--site-color16);
}

.onb-tag-colored .tag-name, .onb-tag-white .tag-name {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-weight: bold;
    color: var(--site-color03);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-taglist-bg {
        padding: var(--s2) var(--s2) 0;
        width: calc(90% + var(--s8));
        margin-left: calc(var(--s2) * -1);
    }

    .tag-list-6c {
        gap: var(--s1);
    }

    .tag-list-6c li {
        width: 100%;
    }

    .onb-tag-colored .tag-name, .onb-tag-white .tag-name {
        /* width: 100%; */
        /* height: 100%; */
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        /* padding: 0; */
        /* font-weight: bold; */
        /* color: var(--site-color03); */
        font-size: 4.5vw;
    }
}

.onb-item-title-frame {
    /* padding: var(--s2); */
    background-color: #057e9b;
    position: relative;
    width: calc(100% + var(--s8));
    margin-left: calc(var(--s4) * -1);
}

.onb-item-title-icon {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -4rem;
    left: -2rem;
}

.onb-item-title-icon img {
    width: 100%;
}

.l-onb-item-title {
    color: #fff;
    display: flex;
    align-items: center;
    gap: var(--s2);
    justify-content: center;
}

.l-onb-item-title__side, .l-onb-item-title__main {
    padding: var(--s2);
    text-align: center;
    line-height: 1.2;
}

.l-onb-item-title__side span {
    font-size: 1.4rem;
}

.l-onb-item-title__side {
    width: calc((100% - var(--s2))*.3);
    font-size: 3.2rem;
    font-weight: 700;
    background-color: var(--site-color14);
}

.l-onb-item-title__main {
    width: 100%;
}

.onb-item-title-catch {
    margin-bottom: var(--s1);
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
}

.onb-item-title-catch--underline {
    color: #ffeb3b;
    font-size: 4.5rem;
}

.onb-item-title-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-item-title-frame {
        padding: 0 var(--s2);
        width: calc(90% + var(--s8));
        margin-left: calc(var(--s2) * -1);
    }

    .onb-item-title-icon {
        width: 6rem;
        height: 6rem;
        position: absolute;
        top: -2rem;
        left: -1rem;
    }

    .l-onb-item-title {
        flex-direction: column;
    }

    .l-onb-item-title__side, .l-onb-item-title__main {
        width: 100%;
        font-size: 2.4rem;
    }

    .l-onb-item-title__side span, .l-onb-item-title__main span {
        font-size: 1.2rem;
    }

    .onb-item-title-catch {
        font-size: 5vw;
    }

    .onb-item-title-title {
        font-size: 7vw;
    }
}

.onb-m-title5 {
    line-height: 1.5;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 8rem auto 3rem;
}

.onb-m-title5 span {
    display: flex;
    align-items: center;
    color: #077e9b;
}

.onb-m-title5 span::before, .onb-m-title5 span::after {
    content: "";
    min-width: 5%;
    height: 1px;
    background-color: #cccccc;
    flex-grow: 1;
}

.onb-m-title5 span::before {
    margin-right: var(--s2);
}

.onb-m-title5 span::after {
    margin-left: var(--s2);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-m-title5 span::before, .onb-m-title5 span::after {
        width: 4rem;
    }

    .onb-m-title5 span::before {
        margin-right: var(--s1);
    }

    .onb-m-title5 span::after {
        margin-left: var(--s1);
    }
}

.onb-com-box-area {
    padding: var(--s3) var(--s3);
    border: 1px solid #d6d6d6;
    border-radius: 1rem;
}

.onb-com-box-img {
    width: 11.2rem;
    margin-left: var(--s2);
    margin-bottom: var(--s2);
    float: right;
}

.onb-com-box-img span {
    margin-top: var(--s1);
    display: block;
    font-size: 1.2rem;
    text-align: center;
}

.onb-com-box-catch {
    margin-bottom: var(--s2);
    font-size: 2rem;
    font-weight: 700;
    color: var(--site-color01);
    line-height: 1.5;
}

.onb-casebox02-frame {
    margin-top: 2rem;
    padding: var(--s4);
    background-color: var(--site-color06);
    position: relative;
    border-radius: 1rem;
}

.onb-casebox02-sub {
    padding: var(--s1) var(--s3);
    background-color: var(--site-color03);
    color: #fff;
    font-size: 2.1rem;
    transform: translateX(-50%);
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 38%;
    text-align: center;
    border-radius: 1rem;
}

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

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

.l-onb-casebox02__main {
    width: 100%;
}

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

.onb-casebox02-catch {
    font-size: 2rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
}

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

/*----------------------------------------------
	more content settings
*/
.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 50rem;
    overflow: hidden;
    /* overflow-x: auto; */
    transition: max-height 1s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 0 1rem 1rem;
    border-bottom: 1px solid #ccc;
}

.more-content-gradation::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 30%;
    transition: 0.3s;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}

.more-content-gradation.is-open::after {
    display: none;
}

.acc-list-more-btn {
    max-width: 32rem;
    margin: 0 auto;
    position: relative;
    transform: translate3d(0, 0, 0);
    /* 描画対策のGPU処理 */
}

.acc-list-more-btn span {
    width: 100%;
    margin: var(--s5) auto;
    padding: 2rem 3rem;
    border: .2rem solid #e0e0e0;
    border-radius: 4rem;
    background: #f5f5f5;
    display: block;
    background-size: 1.9rem auto;
    text-align: center;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}

.acc-list-more-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #8b8b8b;
    border-width: 0 1px 1px 0;
    transform: translate(.8rem, .8rem);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.acc-list-more-btn:hover span {
    transform: translate(.8rem, .8rem);
}

.acc-list-more-btn.is-open span {
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    #index > p:not([class]) {
        padding: 5rem 1rem 1rem;
    }

    .acc-list-more-btn span {
        transition: none;
        transform: none;
    }

    .acc-list-more-btn:hover span {
        transform: none;
    }

    section.sec02.sec_epco .content-box .onb-casebox02-sub {
        line-height: 1.2;
        top: -3.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .low-left-img-box {
        margin-block: 2rem; }

    .footer-menu-title a {
        background: none;
        padding: 1rem 4rem 1rem 2rem;
    }

    .footer-area-logo {
        width: 45%;
        margin: 0 2rem var(--s5);
    }

    .onb-index01-frame {
        width: 90%;
    }

    .main-heading {
        font-size: 7vw;
    }

    .main-heading span {
        font-size: 8vw;
    }

    .lead {
        font-size: 1.6rem;
        width: 100% !important;
    }

    .mainvisual:before, .mainvisual-archicad:before, .mainvisual-epco:before {
        width: 30vw;
        height: 18.5vw;
        z-index: -1;
    }

    .mainvisual, .mainvisual-archicad, .mainvisual-epco {
        padding: 5rem 1rem 1rem;
        background: url(img/mainvisual_bg.png) no-repeat right -2rem top;
        background-size: 60% auto;
        position: relative;
    }

    .mainvisual-archicad {
        background: url(img/mainvisual-archicad_bg.png) no-repeat right 1rem top 1rem;
        background-size: 44%;
    }

    .mainvisual-epco {
        background: url(img/mainvisual-epco_bg.png) no-repeat right 1rem top 1rem;
        background-size: 50% auto;
    }

    .is-gnavi-open .gnavi-area {
        width: 100%;
        height: 100vh;
        padding: var(--s8) var(--s1) var(--s11);
        top: 0;
    }

    section.sec02.sec_archicad .onb-img-title-sub {
        font-size: 5vw;
    }

    section.sec02.sec_archicad .column-medium {
        padding: 0 var(--s2) var(--s2);
    }

    .onb-icon-title .onb-icon-title-catch {
        font-size: 9vw;
    }

    .onb-m-title6 {
        font-size: 6vw;
    }

    .onb-com-box-catch {
        font-size: 5vw;
    }

    section.sec03.sec_archicad .column-medium table {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    section.sec03.sec_archicad .column-medium table tr {
        display: grid;
    }

    .mainvisual-low {
        padding: 5rem 1rem 0;
        position: relative;
        background-size: 40% auto;
    }

    .mainvisual-low .main-logo {
        margin: 0;
    }

    table tbody tr {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 1299px) {
    .lead {
        font-size: 1.8rem;
        /* font-weight: bold; */
        line-height: 1.5;
        width: 45vw;
    }

    .simplified-chart th.acc_color span span {
        font-size: 1.3vw;
    }

    .simplified-chart th.acc_color span {
        font-size: 1.4vw;
    }
