@charset "utf-8"; /* ---------------------------------------------
navigation02 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
    padding: var(--s1) var(--s1) var(--s1) 3rem;
    text-align: right;
}

.header-title {
    font-size: 1.2rem;
    display: inline-block;
    position: relative;
}

.header-title::before {
    content: "PR";
    padding: .2rem;
    color: #fff;
    background-color: #333;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -25px;
}

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

.header-title a:hover {
    text-decoration: underline;
}

/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
    background: #fff;
    position: relative;
    width: 75rem;
    background-color: #fff;
    margin: 10rem auto 5rem;
    border: 1px solid #d6d6d6;
    padding: 15px;
    border-radius: 1rem;
    gap: 0;
}

.related-article01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s2);
    color: var(--site-color03);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
    cursor: pointer;
    background: none;
}

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

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

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

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

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

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

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

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

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

.header-area-upper {
    text-align: left;
    position: absolute;
    width: 100%;
    z-index: 1;
    /*半透明カラーの透明度*/
    /*ぼかし度*/
    width: 100rem;
    margin: 0 auto 10px;
    left: 0;
    right: 0;
}

.header-title {
    font-size: 1.2rem;
    display: inline-block;
    position: relative;
}



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

.header-title a:hover {
    text-decoration: none;
    color: #057eb5;
}

.gnavi-btn-close {
    display: none;
}

.toggle-content {
    display: none;
}

.gnavi-ctrl {
    transition: opacity 0.6s, visibility 0.6s;
    opacity: 0;
    visibility: hidden;
}

.gnavi-ctrl.is-show {
    opacity: 1;
    visibility: visible;
}

#low-page .gnavi-ctrl {
    opacity: 1;
    visibility: visible;
}

.gnavi-btn {
    width: var(--s7);
    height: var(--s6);
    /* background: #333; */
    display: block;
    position: fixed;
    top: var(--s5);
    right: 0;
    z-index: 200;
    cursor: pointer;
}

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

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

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

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

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

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

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

.gnavi-btn-close {
    width: 80%;
    margin: 0 auto;
    padding: var(--s2);
    background: #e7f7f9;
    display: block;
    text-align: center;
    border-radius: 5rem;
    border: solid #027e9b 1px;
    position: sticky;
    bottom: -7rem;
    left: 0;
    right: 0;
}

.gnavi-btn-close__inner {
    padding: 0 0 0 var(--s3);
    display: inline-block;
    color: #027e9b;
    font-weight: 700;
    position: relative;
}

.gnavi-btn-close__inner::before {
    content: "";
    width: 1em;
    height: 0.1rem;
    background: #027e9b;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(45deg);
}

.gnavi-btn-close__inner::after {
    content: "";
    width: 1em;
    height: 0.1rem;
    background: #027e9b;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(135deg);
}

.gnavi-area {
    width: 100%;
    max-width: 37.5rem;
    height: 80vh;
    padding: var(--s2) var(--s1) var(--s11);
    display: block;
    background: #f5f5f5;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 82px;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}

.gnavi-title {
    min-height: var(--s6);
    margin: 0 var(--s8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    display: none;
}

.gnavi-pc {
    display: none;
}

.gnavi-list {
    /* border-bottom: 1px solid #333; */
    position: relative;
}

.gnavi-list li {
    padding-left: 0;
}

.gnavi-list__item .gnavi-list li {
    padding-left: 0;
    font-size: 1rem;
}

.gnavi-list__item::before {
    display: none;
}

.gnavi-list__link {
    width: 100%;
    margin: 0 auto;
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    /* border-top: 1px solid #333; */
    display: block;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    position: relative;
}

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

.gnavi-list__link--toggle::after {
    background-image: url("img/arrow-01-black-down.svg");
    background-size: 100% auto;
}

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

.gnavi-list__sub {
    width: 100%;
    /* background: #fff; */
    font-size: 1.5rem;
    padding-left: 2rem;
    font-weight: normal;
    margin-bottom: 2rem;
}

.gnavi-list__low .gnavi-list__link {
    padding: var(--s2) var(--s4) var(--s2) var(--s4);
}

.gnavi-list__low .gnavi-list__link::after {
    content: "└";
    background: none;
    transform: translateY(-50%);
    position: absolute;
    top: 40%;
    left: 1rem;
}

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

.gnavi-area .l-stack-small {
}

.conclusion-area {
    padding: var(--s6);
    background: var(--site-color03);
    margin: 8rem auto;
    background: url(img/conclusion-area_bg.jpg) no-repeat left center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
}

.conclusion-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.conclusion-title-deco {
    position: relative;
    color: #ffeb3b;
}

.conclusion-title-deco::before, .conclusion-title-deco::after {
    content: "";
    width: 40%;
    height: 0.1rem;
    background-color: #ffeb3b;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
}

.conclusion-title-deco::before {
    left: -50%;
}

.conclusion-title-deco::after {
    right: -50%;
}

.conclusion-box {
    padding: var(--s4) var(--s4);
    border: solid 1px #fff;
    border-radius: 10px;
    gap: var(--s2);
    background: rgb(21 40 60 / .6);
}

.conclusion-box__wht {
    color: #fff;
    line-height: 2;
}

.conclusion-box__wht .txt_bold {
    font-weight: 700;
    color: #ffeb3b;
    border-bottom: 0.3rem solid #f7651d;
}

.conclusion-catch {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

.conclusion-catch span {
    /* border-bottom: 6px solid var(--site-color04); */
}

.conclusion-btn-area {
    z-index: 5;
}

.btn-conclusion {
    margin: 0 auto;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .conclusion-area {
        padding: var(--s4) var(--s2);
        background: url(img/conclusion-area_bg.jpg) no-repeat left center;
        background-size: cover;
    }

    .conclusion-title {
        font-size: 2.4rem;
    }

    .conclusion-title-deco::before, .conclusion-title-deco::after {
        content: "";
        width: 10%;
    }

    .conclusion-title-deco::before {
        left: -20%;
    }

    .conclusion-title-deco::after {
        right: -20%;
    }

    .conclusion-box {
        padding: var(--s2);
    }

    .conclusion-catch {
        font-size: 1.8rem;
        line-height: 2;
    }

    .btn-conclusion {
        width: 80%;
    }
}

/*------------------------------------------
    3box column settings
*/
.column-small {
    padding: 0 var(--s2) var(--s2);
    border: 1px solid #ccc;
    border-radius: 1rem;
}

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

.arrow-title {
    margin-bottom: 2.3rem;
    padding: var(--s2);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    background-color: #057e9b;
    text-align: center;
    line-height: 1.5;
    position: relative;
    border-radius: 0.7rem 0.7rem 0 0;
}

.arrow-title::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 1.5rem solid transparent;
    border-left: 1.5rem solid transparent;
    border-right: 1.5rem solid #077e9b;
    border-bottom: 1.5rem solid #077e9b;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    bottom: -1.3rem;
    border-radius: 0 0 0.7rem 0;
}

.arrow-title-sub {
    padding: var(--s1);
    margin: 0 auto .8rem;
    /* background-color: #fff; */
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1;
    display: block;
    width: 75%;
}

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

.m-title01 {
    padding: var(--s1) var(--s1) var(--s2)var(--s1);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--site-color03);
    text-align: center;
    line-height: 1.5;
}

.thb-listbox-bg-colored {
    padding-top: 2rem;
    margin-top: 3rem;
}

.thb-listbox-area {
    padding: 2.7rem var(--s2) var(--s2) var(--s2);
    background-color: #e3f4f3;
    position: relative;
    border-radius: 1rem;
    justify-content: flex-start;
}

.thb-listbox-area .thb-listbox-list {
    padding-left: 0;
}

.thb-listbox-area .thb-listbox-list li span {
    display: contents;
    font-weight: 700;
    color: #ff4900;
}

.thb-listbox-area .thb-listbox-list li {
    padding: 0 0 0 var(--s3);
}

.thb-listbox-area .thb-listbox-list li::before {content: "";width: 1.5rem;height: 1.5rem;background: #077e9b;top: 0.5rem;left: 0;border-radius: 50%;}

.thb-listbox-title {
    padding: var(--s1) var(--s1);
    color: #fff;
    background-color: #077e9b;
    text-align: center;
    width: 90%;
    margin: -5.5rem auto 0;
    font-weight: bold;
    line-height: 1.3;
}

.thb-listbox-subtitle {
    text-align: center;
    font-weight: 700;
}

.thb-listbox-list {
    width: 100%;
    padding-left: 2rem;
}

.thb-listbox-list li {
    padding: 0 0 0 var(--s1);
    line-height: 1.5;
    position: relative;
}

.thb-listbox-list li::before {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    background: url("./img/icon-check.svg") no-repeat left top;
    background-size: contain;
    position: absolute;
    top: -0.1rem;
    left: -2.2rem;
}

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .thb-listbox-area {
        padding: var(--s5) var(--s2) var(--s2) var(--s2);
    }

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

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

    .thb-listbox-title {
        width: 80%;
        margin: -5rem auto 0 auto;
        padding: var(--s1);
        font-size: 1.4rem;
        text-align: center;
    }
}

.simplified-chart .btn-web a,
.simplified-chart th a {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}


.simplified-chart th .link-text {
    color: #ffffff;
    margin: 1rem 0 0;
    line-height: 1;
    font-size: 1rem;
}

section {
    padding: 2rem 0;
    margin: 5rem auto 0;
}

section.sec01 {
}

section.sec01 .column-small .caption {

    text-align: center;
}

 section.sec01 .l-grid-three {
    row-gap: 0;
}

 section.sec01 .l-grid-three > .caption {
    grid-column: 1 / -1;
  }

 section.sec01 .l-grid-three > .caption br {
    display:none;
  }

section.sec01.sec_archicad .l-center {
    max-width: 150rem;
}
section.sec01 .arrow-title-small {
    background-color: #f5f5f5;
    margin: auto;
    font-weight: bold;
    color: #057e9b;
    padding: 1rem 0.5rem;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 1.2rem;
}

section.sec01.sec_epco .btn-web {
    margin: var(--s3) auto;
}

section.sec01 .column-small img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
    height: 21rem;
    object-position: center left;
    width: 100%;
}

section.sec01.sec_epco .section-title01-bg {
    border-radius: 1rem;
}

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

section.sec01.sec_epco .m-title01 {
    border-top: solid 1px #333333;
    font-size: 2.5rem;
    margin-top: 1.8rem;
}

section.sec01.sec_epco ul:not([class]) li {
    line-height: 1.2;
    font-size: 1.5rem;
    color: #000000;
    font-weight: bold;
}

section.sec01.sec_epco ul:not([class]) li::before {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url(./img/icon-check.svg) no-repeat left top;
    background-size: contain;
    position: absolute;
    top: -0.1rem;
    left: -0.2rem;
}

section.sec02 {
    background: #f5f5f5;
    padding: 5rem 0;
}

section.sec02.sec_archicad {
}

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

section.sec02.sec_archicad .onb-img-title-sub {
    padding-bottom: var(--s2);
}

.column-medium.company-box .onb-center-img {
    margin: 5rem auto;
}

section.sec02.sec_epco .content-box .onb-casebox02-sub {
    line-height: 1.2;
    top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto !important;
}

section.sec02.sec_epco .onb-center-img {
    margin: 5rem auto;
}

section.sec02.sec_epco .onb-center-img .caption {
    text-align: center;
}

section.sec02.sec_epco .content-box .onb-casebox02-frame {
    margin-top: 3rem;
    padding: var(--s6) var(--s4) var(--s4);
    background-color: var(--site-color06);
    position: relative;
    border-radius: 1rem;
}

section.sec02.sec_epco .content-box .onb-casebox02-frame .low-left-img-catch {
    color: var(--site-color03);
}

section.sec02.sec_epco .content-box .onb-casebox02-frame .low-left-img-box {
    margin-block: 2rem; }

section.sec03 {
}

section.sec03 table th {
    width: 35%;
}

section.sec03.sec_archicad .column-medium {
    margin-top: 15rem;
}

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

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

section.sec03 .section-title06 {
    color: #fff;
}

section.sec03 .section-title06 a {
    color: #fff;
    text-decoration: none;
}

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

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

section.sec03 .twb-arrow-title a {
    text-decoration: none;
}

section.sec03 .twb-arrow-title a:hover {
    color: #13aac0;
}

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

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

section.sec04 {
}

section.sec04.sec_archicad {
    /* background: #f5f5f5; */
    padding: 1rem 0;
    margin: 1rem auto;
}

section.sec04.sec_archicad .section-title06-frame::after {
    display:none;
}

.section-title08 {
	margin-top: 5rem;
	margin-bottom: 5rem;
	padding: var(--s3);
	font-size: 3.6rem;
	font-weight: 700;
	color: #fff;
	background-color: var(--site-color01);
	text-align: center;
	line-height: 1.5;
	border-radius: .5rem;
	position: relative;
}
.section-title08::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 2rem solid transparent;
	border-left: 2rem solid transparent;
	border-right: 2rem solid var(--site-color01);
	border-bottom: 2rem solid var(--site-color01);
	transform: translateX(-50%) rotate(45deg);
	position: absolute;
	left: 50%;
	bottom: -2rem;
}

.section-title08 a {color: #fff;background: url(img/arrow-01-right.svg) no-repeat right / 2rem auto;display: block;text-decoration: none;}
.section-title08 a:hover,
.pickup-contents01-catch a:hover {
	    color: #ffeb3b;
}



/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.section-title08 {
		padding: var(--s2);
		font-size: 2.8rem;
		line-height: 1.3;
	}
	.section-title08::after {
		bottom: -1.5rem;
	}

	
section.sec01.sec_archicad .l-center {
    max-width: 100%;
}
	
}








section.sec05 {/* background: #f5f5f5; */padding: 1rem 0;margin: 1rem auto;}

section.sec06 {
}

section.sec07 {
}

section.sec07.sec_archicad .l-grid-two {
    margin-top: 5rem;
}

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

section.sec07 .twb-arrow-title a {
    background: url(img/arrow-01-black-right.svg) no-repeat center right 2rem / auto 0.9em;
    display: block;
    text-decoration: none;
    padding: 1rem 1rem;
    font-size: 2.5rem;
}

section.sec07 .twb-arrow-title a:hover {
    color: #12b3c7;
}

section.sec07 .twb-arrow-title a span {
    display: block;
    font-size: 2rem;
}

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

section.sec07.sec_archicad .low-left-img-catch {
    background-color: #12b3c7;
    border-radius: 1rem;
    padding: 1rem 2rem;
    color: #fff;
    width: 38%;
    text-align: center;
    margin: -3.3rem auto 2rem;
}

section.sec07.sec_archicad .low-left-img-box {
    background: #e7f7f9;
    border-radius: 1rem;
    padding: 1rem 2rem 2rem 2rem;
    margin: auto;
}

section.sec07.sec_archicad .content-box {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

section.sec07.sec_archicad table th {
    width: 25%;
}

section.sec08 {
}

section.sec09 {
}

.contents-banner {margin-top: 15rem;}

.contents-banner .l-grid-two {
    grid-gap: 0;
    margin-top: 0;
}

.l-contents-banner03 {
    background-color: var(--site-color07);
    display: flex;
}

.l-contents-banner03.cat_archicad {
    background: url(img/cat_archicad_bg.png) no-repeat left center;
    background-size: cover;
}

.l-contents-banner03.cat_epco {
    background: url(img/cat_epco_bg.png) no-repeat left center;
    background-size: cover;
}

.contents-banner03-content {
    width: 100%;
    padding: var(--s1) var(--s8) var(--s1) var(--s4);
    z-index: 5;
}

.contents-banner03-catch {
    font-size: 2.6vw;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-align: right;
}

.contents-banner03-catch span {
    margin-bottom: 1rem;
    padding: var(--s1);
    display: inline-block;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--site-color03);
    background-color: #ffffff;
}
.contents-banner03-catch span.banner03-span {
    margin-bottom: 0;
    padding: 0;
    font-size: 6.5rem;
    background: none;
    color: #ffe500;
}

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

.contents-banner03-btn {
    width: 35rem;
    margin: 0;
    float: right;
}

.l-contents-banner03.cat_epco .contents-banner03-catch {
    text-align: left;
}

.l-contents-banner03.cat_epco .contents-banner03-content {
    padding: var(--s1) var(--s4) var(--s1) var(--s8);
}

.l-contents-banner03.cat_epco .contents-banner03-btn {
    float: left;
}
	


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

    .contents-banner03-content,.l-contents-banner03.cat_epco .contents-banner03-content {
        padding: var(--s3);
    }

    .contents-banner03-catch {
        font-size: 9vw;
    }

	.contents-banner03-catch span {
    font-size: 5vw;
}

	.contents-banner03-catch span.banner03-span {
 font-size: 11vw;
}
	
	
    .contents-banner03-text {
        font-size: 1.8rem;
    }

    .contents-banner03-btn {
        padding: 0;
        width: 80%;
    }
}

.acc-more-btn {
    max-width: 30rem;
    width: 100%;
    height: 7rem;
    display: flex;
    margin: var(--s5) auto;
    padding: 1rem 3rem;
    border: .2rem solid #e0e0e0;
    border-radius: 4rem;
    background: #f5f5f5;
    background-size: 1.9rem auto;
    text-align: center;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    font-weight: bold;
}

.acc-more-btn:hover {
   color: #13aac0;
   background: #e3e3e3;
}

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .acc-more-btn {
        transition: none;
        transform: none;
    }

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

    .main-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .main-logo {
        width: 40%;
        padding-right: 0;
        margin: 0 0 4rem;
    }

    .gnavi-btn {
        width: var(--s7);
        height: var(--s6);
        /* background: #333; */
        display: block;
        position: fixed;
        top: var(--s1);
        right: 0;
        z-index: 200;
        cursor: pointer;
    }

    section.sec01.sec_archicad .section-title01-frame::before {

        width: 100%;
        min-height: 28rem;
        border-radius: 0;
    }

    section.sec03 table th {
        width: 100%;
    }

    section.sec03 table tr {
        display: grid;
    }

    section.sec02 .column-medium {
        padding-top: 0;
    }

    section.sec02.sec_epco .onb-center-img {
        margin: 2rem auto 0;
    }

    .onb-m-title5 {
        margin: 5rem auto 2rem;
    }

    section.sec02 .column-medium .onb-flex-table tr {
        display: grid;
    }

    section.sec02 .column-medium .onb-flex-table th {
        width: 100%;
    }

    section.sec03 .section-title06 a::after {
        background: url(img/arrow-01-right.svg) no-repeat center / 60% auto;
    }

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

    section.sec01.sec_epco .section-title01-bg {
        padding: var(--s3) var(--s2) var(--s4) var(--s2);
    }

    .header-area-upper {
        padding: var(--s1) var(--s1) var(--s1) var(--s4);
        text-align: left;
        backdrop-filter: none;
        width: 100%;
    }

    section.sec07.sec_archicad table th {
        width: 100%;
    }

    section.sec07 .twb-arrow-title {
        padding: 1rem ;
        line-height: 2.5rem;
    }

.related-article01-frame {width: 95%;padding-bottom: 35px;}
.header-title {
    font-size: 3vw;
    padding-right: 25%;
    line-height: 3.8vw;
}

.header-title::before {
    padding: 0.1rem .2rem .2rem;
    top: 25%;
}


section.sec01.sec_epco .section-title01-frame::before {

    width: 100%;

    background: url(img/sec_epco_bg.jpg) no-repeat top center;
    background-size: cover;
 
    border-radius: 0;
}




section.sec01 .l-grid-three {
    row-gap: 3rem;
}

section.sec01 .l-grid-three > .caption {
    margin-top:-2rem;
}








	
}
