
body {
    /* color: #222; */
    color:rgb(99, 107, 111);
}

.display-none {
    display: none !important;
}
.screen-lock {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.sp-br {
    display: none; /* パソコン時は、brタグを表示しない＝改行しない */
}
@media screen and (max-width: 800px) {
    .sp-br { /* 400px以下のときbrタグ表示＝改行する */
        display: inline; 
    }
    .u-none--sp {
        display: none !important;
    }
    .c-tbl:not(.r-type03) tr {
        display: block;
    }
    .c-tbl:not(.r-type03) .c-tbl__head, .c-tbl:not(.r-type03) .c-tbl__clonehead, .c-tbl:not(.r-type03) .c-tbl__data2,
    .c-tbl:not(.r-type03) .c-tbl__head, .c-tbl:not(.r-type03) .c-tbl__clonehead, .c-tbl:not(.r-type03) .c-tbl__data {
        display: block;
    }

    .c-tbl .c-tbl__head,
    .c-tbl .c-tbl__clonehead {
        width: 100% !important;
    }
    .c-form__icn--require {
        margin-left: 10px;
    }
    

}
.sp-br2 {
    display: none;
}
@media screen and (max-width: 400px) {
    .sp-br2 { /* 400px以下のときbrタグ表示＝改行する */
        display: inline; 
    }
}

.cp_ipselect {
	overflow: hidden;
	/* width: 96%; */
	margin: 2%;
	text-align: center;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
	position: relative;
	border: 1px solid #ddd;
	border-radius: 0px;
    background: #ffffff;
    min-height: 0px !important;
}
.cp_ipselect.cp_sl01::before {
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
	padding: 8px 38px 8px 8px;
    /* color: rgb(99, 107, 111); */
    font-size:16px;
    line-height: 16px;
}

.c-form-textarea textarea {
    border: 1px solid #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: bottom;
    border-radius: 0;
    width: 96%;
    margin: 2%;
    height: 25rem;
    resize: none;
    padding: 1rem 0.5rem;
    font-size: 16px;
}
.c-form__icn--require {
    display: inline-block;
    background-color: #e4002b;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    margin-right: 5px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 1.4rem;
    line-height: 22px;
}
.c-tbl > table {
    border: 1px solid #ddd;
    width: 100%;
}

.c-tbl.r-type04 .c-tbl__head {
	color: #fff;
}

.c-tbl.r-type04 .c-tbl__data2,
.c-tbl.r-type04 .c-tbl__data {
	text-align: center;
}

.c-tbl.r-type04 .c-tbl__data2,
.c-tbl.r-type-form .c-tbl__data {
	vertical-align: middle;
}

.c-tbl .c-tbl__head,
.c-tbl .c-tbl__clonehead {
	color: #333;
    background-color: #f2f2f2;
    width: 18rem;
    text-align: left;
    padding-left: 1rem;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.c-tbl .c-tbl__data2,
.c-tbl .c-tbl__data {
    border-bottom: 1px solid #ddd;
    /* min-height: 6rem; */
}
.c-form-textbox {
    display: flex;
    vertical-align: middle;
    align-items: center;
}
.c-form-textbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 1rem 0.5rem;
    vertical-align: middle;
    width: 96%;
    margin: 2%;
    font-size: 16px;
}

.accordion-box2 {
    position: relative;
}
.accordion-box2 label {
    height: 0rem; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 1.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.accordion-box2 input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box2 label:after {
    content: "詳細を表示する"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 4rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 150%);
    transform: translate(-50%, 150%);
    color: #3fbcef;
    background-color: white;
    border: 1.5px solid #3fbcef;
    width: 18.75rem;
}
.accordion-box2 input {
    display: none;
}
.accordion-box2 .accordion-container {
    display:flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 0rem;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    margin-top: 3rem;
    font-size: 1.5rem;
}

.accordion-box2 .accordion-container p {
    text-align: center;
}

.accordion-box2 input:checked + label:after {
    content: "閉じる";
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.accordion-box2 input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box {
    position: relative;
}
.accordion-box label {
    height: 13rem; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */ 
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.accordion-box input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
    content: "続きをよむ"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    background-color: rgb(99, 107, 111);
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
/* .accordion-box label:before {
    content: "↓";
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    background-color: #fff;
    z-index: 1;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
} */
.accordion-box input {
    display: none;
}
.accordion-box .accordion-container {
    display:flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 13rem;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box .accordion-container p {
    text-align: center;;
}


.accordion-box input:checked + label:after {
    content: "閉じる";
}
/* .accordion-box input:checked + label:before {
    content: "↑";
} */
.accordion-box input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.site-header{
    display: flex;
    position: fixed;
    justify-content: space-between;
    width: 100vw;
    height: 84px;
    background-color: #eee;
    z-index:100;
    transition: all 0.5s ease;
    /* color: white; */
    color: #222 !important;
}

.hidden {
    background: none;
    transition: all 0.5s ease;
    color: #222 !important;
}

/* .header-body, .footer-body {
    color: white;
} */

.header-items2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-items2 a {
    color: inherit;
    text-decoration: none;
}

.header-items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1.5rem;
    background-color: #ffbb00;
}

.header-items > div ion-icon{
    font-size:2.2rem;
    color: white;
}

.header-items > div >div{
    display: flex;
    height:35%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-items > div {
    /* letter-spacing: .05em;
    line-height: 2.5rem;
    bottom: 20px;
    left: 50%; */
    font-size: 1.2rem;
    color: black;
    background-color: #ffd700;
    width: 7.5rem;
    height: 100%;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    border-style: none;
    /* margin: 0px 0.2rem; */
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.25;
}

.header-items > div + div {
    background-color: #ffbb00;
}

.filter {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    background-color: #fff;
    z-index: 10;
}

.btn-std {
    letter-spacing: .05em;
    line-height: 4rem;
    /* bottom: 20px; */
    left: 50%;
    font-size: 1.8rem;
    color: #fff;
    background-color: #ffd700;
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 2rem;
    border-style: none;
    margin: 0.3rem 0.2rem;
    font-weight: 600;
}

.btn-std:focus {
	outline:0;
}

.header-body .logo {
    line-height: 60px;
    margin-left: 5vw;
}

.header-body a {
    text-decoration: none;
    color: #222;
}

.footer-body > div {
    min-height: 42px;
}

.page-head h1::before {
    content: '10年後のお家、想像されていますか？';
    position: absolute;
    top: 16rem;
    font-size: calc(100vw / 26);
    font-family: "Noto Sans JP";
    width: 100vw;
    color: white;
    text-align: center;
    /* text-shadow: 2px 2px 1px rgba(0,0,0,0.6), 
                -2px 2px 1px rgba(0,0,0,0.6), 
                 2px -2px 1px rgba(0,0,0,0.6),
                -2px -2px 1px rgba(0,0,0,0.6),
                 2px 0px 1px rgba(0,0,0,0.6), 
                 0px 2px 1px rgba(0,0,0,0.6), 
                 -2px 0px 1px rgba(0,0,0,0.6), 
                 0px -2px 1px rgba(0,0,0,0.6); */
 text-shadow:  2px  2px 10px #777 ,
               -2px  2px 10px #777 ,
                2px -2px 10px #777 ,
               -2px -2px 10px #777;                 
}

.page-head h1 {
    background-color: #3e3e3e;
    text-align: center;
}

.index {
    padding: 28px 0 3px;
}
/* .index .fixed {

} */

.wrap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
}

.homeHeader {
    /* font-size:2rem; */
}

.index_anchor {
    position: relative;
    display: flex;
    z-index: 0;
    text-align: center;
}
.index_anchor > li {
    position: relative;
    display: flex;
    flex: 1;
    width: 100%;
    background-color: #fff;
}
.index_anchor > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6px 0 34px;
    padding-top: 6px;
    padding-right: 0px;
    padding-bottom: 34px;
    padding-left: 0px;
    /* color: #000; */
    color: rgb(99, 107, 111);
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    z-index: 0;
}
.index_anchor::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
    background-color: #c5bdb1;
    z-index: -1;
}

.index_anchor > li::before, .index_anchor > li:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    min-height: calc(100% - 29px);
    background-color: #e5e5e5;
}
.index_anchor > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    pointer-events: none;
}
.index_anchor > li.type-button1 > a::before {
    background-color: #ae5553;
}
.index_anchor > li.type-button2 > a::before {
    background-color: #665e91;
}
.index_anchor > li.type-button3 > a::before {
    background-color: #6a8ca6;
}
.index_anchor > li.type-button4 > a::before {
    background-color: #c3af56;
}
.index_anchor > li.type-button5 > a::before {
    background-color: #607b85;
}
.index_anchor > li.type-button6 > a::before {
    background-color: #633339;
}
.index_anchor > li > a:hover::before {
    height: 3px;
}
.index_anchor > li > a:hover {
    padding-top: 13px;
    padding-bottom: 27px;
    /* font-size: 1.2em; */
}

.content-layout {
    position: relative;
    padding: 60btんーstd
}

.content-layout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;
}

.content-1::before {
    background-color: #633339;
}
.content-2::before {
    background-color: #665e91;
}
.content-3::before {
    background-color: #6a8ca6;
}
.content-4::before {
    background-color: #c3af56;
}
.content-5::before {
    background-color: #607b85;
}

.index_tab .tab_nav {
    display: flex;
    justify-content: center;
    margin: 0 -1px 0 0;
}
.index_tab .tab_nav.type-footer {
    margin-top: 88px;
}
.index_tab .tab_nav > li {
    display: flex;
    justify-content: center;
    width: 185px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.index_tab {
    margin: 70px 0 0;
}
.index_tab .tab_nav {
    display: flex;
    justify-content: center;
    margin: 0 -1px 0 0;
}
.index_tab .tab_nav > li + li {
    margin-left: 10px;
}
    
.index_tab .tab_nav > li > a {
    /* display: block; */
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: white;
    background-color: #a3afa6;
    /* width: 160px; */
    width: 95%;
    height: 6rem;
    line-height: 6rem;
    font-size: 2.0rem;
}

.index_tab .tab_nav > li > a::before {
    content:'実例';
    font-size: 1.2rem;
    /* line-height: 62px; */
    /* padding-right: 1rem; */
}

.index_tab .tab_nav > li.is-current img {
    opacity: 0;
}

.heading {
    padding-top: 9rem;
    text-align: center;
    color:rgb(99, 107, 111);
    font-size: 5rem;
    line-height: 5rem;
}
.heading-sub {
    /* color: #222; */
    color:rgb(99, 107, 111);
    text-align: center;
    font-size: 1.4rem;
}
.heading-detail {
    display: -webkit-flex;
    display: flex;
    flex-wrap:wrap;
    -webkit-justify-content: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.5rem;
    padding: 5% 1%;
}
.heading-detail > p {
    line-height: 3rem;
    text-align: center;
}
.works-example {
    padding: 1rem 1rem;
}

.works-example > .title {
    color:rgb(99, 107, 111);
    font-size: 2.5rem;
    display: flex;
    justify-content: center;    
}
.works-example > .body {
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.works-example  .description {
    max-width: 720px;
    width: 90%;
    padding-left:10px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.works-example img {
    /* width: 45vw; */
    max-width: 720px;
    width: 90%;
    margin: 0px 3%;
    height: 100%;
    object-fit: contain;
}

.qa-frame {
    padding: 10px 0px;
}
.qa-question {
    display: flex;
    /* font-size: 2rem; */
    background-color: #c5bdb1;
}
.qa-question::before {
    position: absolute;
    content: "Q";
    font-size: 4rem;
    margin: 0 1vw;
    color: #888;
    line-height:1.2;
}
.qa-question::after {
    position: absolute;
    content: "＋";
    font-size: 4rem;
    right: 2vw;
    color: #888;
    line-height: 1.2;
}

.qa-question > p {
    padding: 0px 4rem;
    margin: 10px;
    line-height: 3rem;
}

.qa-answer {
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
}
.qa-answer::before {
    content: "A";
    position: absolute;
    font-size: 4rem;
    margin: 0 1vw;
    color: #ae5553;
    line-height: 1.2;
}

.qa-answer > p {
    padding: 0 0 0 4rem;
    margin: 10px;
    line-height: 3rem;
}

.process ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

#breadcrumbs-two{
    overflow: hidden;
    /* width: 100%; */
}

#breadcrumbs-two li{
    float: left;
    margin: 0.2em 0.2em 0 1em;
}

#breadcrumbs-two .frame{
    background: #ddd;
    padding: 0em 1em;
    float: left;
    text-decoration: none;
    color: #444;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
    position: relative;
    height: 18rem;
    display: flex;
    flex-direction: column;
    align-content: space-between;
}

#breadcrumbs-two .vert {
    writing-mode: vertical-rl;
    line-height: 2rem;
    height: 14rem;
    text-decoration: none;
}

#breadcrumbs-two .vert + div {
    text-align: center;
    color: red;
    font-weight: 900;
}
#breadcrumbs-two .frame::before{
    content: "";
    position: absolute;
    /* top: 50%;
    margin-top: -1.5em; */
    border-width: 9rem 0 9rem 1em;
    border-style: solid;
    border-color: #ddd #ddd #ddd transparent;
    left: -1em;
}

#breadcrumbs-two .frame::after{
    content: "";
    position: absolute;
    /* top: 50%;
    margin-top: -1.5em; */
    border-top: 9rem solid transparent;
    border-bottom: 9rem solid transparent;
    border-left: 1em solid #ddd;
    right: -1em;
}
#breadcrumbs-two .free {
    background: yellow !important;
}
#breadcrumbs-two .free::before {
    border-color: yellow yellow yellow transparent !important;
}
#breadcrumbs-two .free::after {
    border-left-color: yellow !important;
}

/* #breadcrumbs-two div:hover{
background: #99db76;
}

#breadcrumbs-two div:hover::before{
border-color: #99db76 #99db76 #99db76 transparent;
}

#breadcrumbs-two div:hover::after{
border-left-color: #99db76;
} */

/* #breadcrumbs-two .current,
#breadcrumbs-two .current:hover{
    font-weight: bold;
    background: none;
}

#breadcrumbs-two .current::after,
#breadcrumbs-two .current::before{
    content: normal;
} */

.index_tab .tab_nav > li > .selected {
    background-color: #1e90ff;
}

.errmsg {
    color: red;
    font-size: 1.2rem;
    transform: translate(2%, -50%);
}

.step {
    margin: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.step .header {
    display: flex;
    font-size: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step .step-label {
    padding: 0 1rem;
    font-weight: 900;
    /* color: red; */
    /* background-color: red; */
    height: 3.5rem;
    line-height: 3.5rem;
}

.step .step-label::before {
    content: 'STEP';
    font-size:1.3rem;
}

.step .step-label + div {
    padding-left: 1.5rem;
    line-height: 3.5rem;
}

.step .selector {
    display: flex;
    justify-content: center;
}

.step .detail {
    margin-top:2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5rem;
}

.step .header .hold {
    width: 29rem;
    /* color: rgb(200,0,0); */
    font-weight: 900;
}
.step .header .hold2 {
    width: 38rem;
    color: rgb(200,0,0);
    text-align: center;
}

.step-margin {
    margin-top: 3rem;
}

.works-process {
    display: flex;
    justify-content: center;
}

.div-input {
    border: 1px solid #888;
}

.div-input > input {
    border: 0px solid;
    font-size: 3rem;
    line-height: 3rem;
    width: 12rem;
    text-align: right;
}

.div-input > input:focus {
    outline: none;
}

.h-unit {
    line-height: 3rem;
    padding-left: 2rem;
    font-size: 2.5rem;
}

/* .description {
    display: none;
    position: absolute;
    padding: 1rem;
    font-size: 1.3rem;
    line-height: 1.6em;
    color: #fff;
    border-radius: 5px;
    background: #000;
    width: 20rem;
}
.description:before {
    content: "";
    position: absolute;
    top: -24px;
    right: 60%;
    border: 15px solid transparent;
    border-top: 15px solid #000;
    margin-left: -15px;
    transform: rotateZ(180deg);
}
.tooltip:hover .description{
    display: block;
} */

.estimate-ret {
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} 

.estimate-ret .header {
    text-align: center;
    color: rgb(200, 0, 0);
    font-size: 2rem;
    line-height: 2.5rem;
}

.estimate-ret table {
    width: 94vw;
    max-width: 720px;
    font-size: 1.8rem;
}

.estimate-ret #th-total-area {
    text-align: left;
}

.estimate-ret .cal-price {
    text-align: right;
}

.estimate-ret .cell {
    border-bottom: 1px solid #ccc;
    padding: 0.5rem;
}

.estimate-ret .total {
    padding: 0.5rem;
    color: rgb(200,0,0);
}

.estimate-ret .att {
    /* width: 94vw;
    max-width: 720px; */
    font-size: 1.4rem;
    margin-bottom: 8rem;
    color: red;
}

.estimate-ret .att p {
    line-height: 1.6rem;
}

.area-unit {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    position: relative;
    top: 0.4rem;
}

.area-unit .separa {
    border-right: 1px solid #ccc;
}
.area-unit label{
    padding: 0.5rem 3rem;
}
.area-unit input {
    display: none;
}

.area-unit input:checked + label {
    background-color: #3fbcef;
    color: #fff;
}

.heading-detail .label {
    font-size: 2.0rem;
    padding: 1% 0;
    font-weight: 900;
}

.bullets{
    margin: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5rem;
}