/*============ レイアウトのためのCSS ===================*/
body{
    margin: 0;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
nav{
    padding: 0;
}
ul{
	margin:0;
	padding: 0;
}
li{
	list-style:none
}
a{
	text-decoration: none;
}
h2,h3,h4,p{
	margin: 0;
    padding: 0;
}
.mochiy-pop-one-regular {
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.contact-bottom{
    display: none;
}
.back{
    display: none;
}

/*============ 共通 ===================*/
.bg-img{
    background: url(https://primo-reform.com/wp-content/uploads/ecocute-areapagetopback.png);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 90px;
    height: 100px;
}
.link-destination{
    display: inline-block;
    padding-top: 90px;
    margin-top: -90px;
}
@media screen and (max-width: 480px){
    .link-destination{
        padding-top: 70px;
        margin-top: -70px;
    }
} 
h2.h2-title{
    font-size: 28px;
    font-weight: normal;
    color: #654c43;
}
.h2-border{
    width: calc(100% - 30px);
    position: relative;
    padding: 0 10px;
    margin: auto;
    margin-bottom: 10px;
    border-bottom: 2px dotted #816c64;
}
@media screen and (max-width: 480px){
    h2.h2-title{
        font-size: 26px;
    }
}
.center{
    text-align: center;
}
.double-line{
    position: relative;
    display: inline-block;
    margin: 10px auto;
    padding: 0 55px;
    font-size: 24px;
    font-weight: 400;
    color: #654c43;
}
.double-line:before,
.double-line:after {
position: absolute;
top: calc(50% - 2px);
width: 45px;
height: 4px;
content: '';
border-top: solid 2px #816c64;
border-bottom: solid 2px #816c64;
}
.double-line:before {
    left: 0;
}
.double-line:after {
    right: 0;
}

.link-button a {
    background: #816c64;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    margin: auto;
    max-width: 250px;
    height: 50px;
    padding: 0px 25px;
    color: #fff;
    line-height: 48px;
    transition: 0.3s ease-in-out;
}
.btn-bk a{
    background: #555;
}
.link-button a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}
.link-button a:hover {
    background: #ff9800;
    color: #fff;
}
.link-button a:hover:after {
    right: 1.4rem;
}

.width1200{
    max-width: 1200px;
    margin: auto;
}
.padding0010{
    padding: 0 10px;
}

.bp960-pc{
    display: block !important;
}
.bp960{
    display: none !important;
}
@media screen and (max-width: 960px){
    .bp960-pc {
        display: none !important;
    }
    .bp960{
        display: block !important;
    }
}    

.pc { 
    display: block !important;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 480px){
    .pc {
        display: none !important;
    }
    .sp{
        display: block !important;
    }
} 



/*========= ヘッダー ===============*/
#header100 {
    width: 100%;
    height: 100px;
    background: #fdf4c1;
    border-bottom: 1px dashed #fb9e25;
    border-top: 5px solid #f09300;
    position: fixed;
    z-index: 1000;
    top: 0;
}
.header {
    display: flex;
    justify-content: center;
    width: 1000px;
    height: 100px;
    margin: 0 auto;
}
.logo {
    width: 400px;
    height: 100px;
}
h1.header_description {
    width: 400px;
    height: 15px;
    font-size: 13px;
    padding: 5px 0 5px 0px;
    display: block;
    margin: 0px 0px 5px 0px;
    text-align: center;
    font-weight: 500;
}
div.header_logo {
    width: 400px;
    height: 60px;
}
div.header_logo img{
    display: block;
    margin: auto;
}
.header_tell{
    margin: 5px 10px 10px 0px;
}
.header_tell img{
    width: auto;
    height: 100%;
}
.header_contact{
    width: 155px;
}
.header_mail{
    display: block;
    width: 100%;
    height: auto;
    margin-top: 5px;
}
.header_icon a{
    display: inline-block;
    margin: 10px
}
/**ページトップに戻るボタンS**/
@keyframes scroll-anim {
    0% {
        opacity: 0;
        translate: 0 -20px;
    }
    5% {
        opacity: 0;
        translate: 0 -20px;
    }
    10% {
        opacity: 1;
        translate: 0 0;
    }
    100% {
        opacity: 1;
    }
}
.ptop {
    opacity: 0;
    animation: scroll-anim linear;
    animation-timeline: scroll();
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 50px;
    z-index: 9999;
    text-align: center;
    box-sizing: border-box;
    right: 50px;
    background-color: #ff9c00;
    border-radius: 45px;
    box-shadow: 3px 3px 7px 1px #777;
    font-size: 18px;
}
body .ptop a {
    color: #fff;
    padding: 12px 0 10px 0;
    display: block;
}
/**ページトップに戻るボタンE**/

/*========= フッター ===============*/
.back {
    clear: both;
    width: 154px;
    height: 59px;
    margin: 0 auto;
    padding: 20px 423px 10px 423px;
}
.footer100 {
    clear: both;
    width: 100%;
    background-color: #333;
    overflow: hidden;
}
.footer {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin: 0 auto;
}
.footer100 .footer ul {
    width: 300px;
    margin: 0 auto;
    padding: 40px 0 20px 0;
    background-color: #333;
}
.footer100 .footer ul li {
    height: 15px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}
.footer100 .footer ul li a:visited {
    text-decoration: none;
    color: #fff;
}
.footer100 .footer ul li a:link {
    text-decoration: none;
    color: #fff;
}
.footer100 .footer ul li a::before {
    content: "";
    background-color: #ffa500;
    display: inline-block;
    height: 1rem;
    width: 1rem;
    -webkit-mask: url("https://primo-reform.com/wp-content/uploads/tryangle-r.svg");
    mask: url("https://primo-reform.com/wp-content/uploads/tryangle-r.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    vertical-align: middle;
    margin-right: 5px;
}
.copy {
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    clear: both;
}
.copy a{
    color: #ff9800;
}
.topimg02 img {
    margin: 15px auto 0;
    display: block;
    max-width: 100%;
    height: auto;
}


/*========= ナビゲーションドロップダウンのためのCSS ===============*/
body .drop_down_menu-sp{
    display: none;
}

/*==ナビゲーション全体の設定*/
nav{
    padding-top: 100px;
    background:#f3f1e0;
    text-align: center;
    border-bottom: 2px dotted #816c64;
}
/*ナビゲーションを横並びに*/
nav ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 16px;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
    display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
    position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li .has-child-title{
    display: block;
    color: #000;
    padding:10px 25px;
    transition:all .3s;
}
nav ul li a{
    display: block;
    color: #000;
    padding:10px 25px;
    transition:all .3s;
    &:hover{
        color:#fff; 
    }
    }
nav ul li li a{
    padding:15px 5px;
}
/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
    content:'';
    position: absolute;
    left:10px;
    top:18px;
    width:6px;
    height:6px;
    border-top: 1px solid #000;
        border-right:1px solid #000;
        transform: rotate(135deg);
}
/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
        /*絶対配置で位置を指定*/
    position: absolute;
    left:0;
    top:35px;
    z-index: 5;
    padding-left: 0px;
        /*形状を指定*/
    background:  rgba(255, 255, 255, 0.9);
    width:250px;
        /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
        /*アニメーション設定*/
    transition: all .3s;
}
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
}
nav li.has-child ul li{
    border-bottom: 1px dashed #ccc;
    &:last-child{
        border-bottom: none;
    }
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
    color: #000;
}
nav li.has-child ul li:last-child > a{
    border-bottom:none;
}
nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
    color: #ccc;
}




/*============ パンくずリスト ===================*/
.breadcrumbs {
    background: #f3f1e0;
    padding: 5px 0 5px 10px;
    font-size: 14px;
}
.breadcrumbs span {
    font-size: 14px;
    color: #ff9800;
    font-weight: 400;
}
.breadcrumbs span a {
    color: #555;
}
.drop_down_menu{
    background-color: #e8e8e8;
}



/*========= topスライダーのためのcss ===============*/
h1.title{
    padding: 15px 0;
    font-size: clamp(16px, 4vw, 24px);
    text-align: center;
    line-height: 1.2;
    margin: 0;
    background: #f3f1e0;
    color: #654c43;
}
.topslider{
    display: none;
}
.topslider.slick-initialized{
    display: block; /*slick-initializedが付与されたら表示*/
}
.top_slider{
    position: relative;
    background-color: #fff;
}
.top_slider .slider-item {
    width: 100vw;
    height:auto;
}
.top_slider .slider-item img{
    width: 100%;
    height: auto;
    max-width: 1100px;
    margin: auto;
    opacity: 1;
}
.slick-list{
    background: url(https://primo-reform.com/wp-content/uploads/ecocute-areapagetopback.png);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 90px;
}
.areatop-slider {
    width:100%;
    margin:0 auto;
}
.areatop-slider img {
    box-shadow: none;
}
.areatop-slider .slick-slide {
    transform: scale(1);/*左右の画像のサイズを80%に*/
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    z-index: 5;
    top: 40%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    width: 50px;
    height: 70px;
}
.slick-prev{
    left: 10px;
}
.slick-next{
    right: 10px;
}
.slick-prev::before, .slick-prev::after,
.slick-next::before, .slick-next::after{
    content: ""; /* 疑似要素に指定必須 */
    width: 50px; /* 線の長さを指定 */
    height: 5px; /* 線の幅を指定 */
    display: inline-block; /* インラインブロックにする */
    border-radius: 2px; /* 線を角丸にする */
    background: #fff;   /* 線の色を指定 */
    box-shadow: 0px 2px 5px 0px #999;  position: absolute; /* 相対位置に指定 */
}
.slick-prev::before {
    top: calc(50% - 19px); 
    transform: rotate(-45deg);
}
.slick-prev::after {
    bottom: calc(50% - 19px);
    transform: rotate(45deg);
}
.slick-next::before {
    top: calc(50% - 19px); 
    transform: rotate(45deg);
}
.slick-next::after {
    bottom: calc(50% - 19px);
    transform: rotate(-45deg);
}
@media screen and (max-width: 1280px){
    .slick-prev::before, .slick-prev::after,
    .slick-next::before, .slick-next::after{
        opacity: 0.8;
        background: #fff;   /* 線の色を指定 */
    }
}
@media screen and (max-width: 700px){
    .slick-prev, 
    .slick-next{
        width: 30px;
        height: 50px;
    }
    .slick-prev::before, .slick-prev::after,
    .slick-next::before, .slick-next::after{
        width: 30px; /* 線の長さを指定 */
    }
    .slick-prev::before {
        top: calc(50% - 12px); 
    }
    .slick-prev::after {
        bottom: calc(50% - 12px);
    }
    .slick-next::before {
        top: calc(50% - 12px); 
    }
    .slick-next::after {
        bottom: calc(50% - 12px);
    }
}
/*ドットナビゲーションの設定*/
.slick-dots {
    text-align:center;
margin-top:15px;
padding-bottom: 10px;
}
.slick-dots li {
    display:inline-block;
margin:0 15px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width:15px;/*ドットボタンのサイズ*/
    height:15px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
    border: none;
}
.slick-dots .slick-active button{
    background:#654c43;/*ドットボタンの現在地表示の色*/
}



/*========= チラシ情報 ===============*/
.new_advertisement{
    background-image: url(https://primo-reform.com/wp-content/uploads/japanese-paper_00372.jpg);
    background-repeat: repeat;
    background-size: 20%;
    padding: 30px 0;
}
.new_advertisement .menu{
    color: #654c43;
    font-size: 22px;
    text-align: center;
}
.new_advertisement ul{
    margin: 0 10px 30px 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.new_advertisement .menu-list{
    display: inline-block;
    color: #654c43;
}
.new_advertisement .menu-list a{
    color: #654c43;
    &:hover{
        text-decoration: underline;
    }
}
.new_advertisement .menu-list span::before{
    content: "/";
    display: inline-block;
    text-align: center;
    padding: 10px;
}
@media screen and (max-width: 480px){
    details.sp{
        margin-bottom: 30px;
    }
    .sp .menu{
        position: relative;
        margin: auto;
        width: 350px;
        height: 40px;
        position: relative;
        background-color: #816c64;
        color: #fff;
        line-height: 37px;
        border-radius: 20px; 
        box-shadow: 0 3px 0 0 #654c43;
        list-style: none;
        &:hover{
            top: 3px;
            box-shadow: none;
        }
    }
    summary.menu::after{
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        transform: rotate(135deg);
        top: 30%;
        right: 30px;
        border-radius: 1px;
    }
    details[open] summary.menu::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        transform: rotate(-45deg);
        top: 40%;
        right: 30px;
        border-radius: 1px;
    }
    .new_advertisement .menu-list{
        display: block;
        margin-top: 10px;
    }
    .new_advertisement .menu-list a{
        display: block;
        width: 350px;
        margin: auto;
        padding: 5px 0;
        border-radius: 20px;
        background-color: #fff;
    }
}
/*=== ここまで ===*/


.new_advertisement-title{
    padding-left: 10px;
}
.new_advertisement span.new{
    display: inline-block;
    margin-bottom: 5px;
    padding: 0 5px;
    width: 60px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #816c64;
    border-radius: 10px;
}
.new_advertisement h2{
    display: inline-block;
    margin: 0;
    vertical-align: sub;
}
.new_advertisement p{
    display: inline-block;
    color: #654c43;
    margin: 0;
    vertical-align: sub;
}
.new_advertisement .advertisement{
    display: flex;
    gap: 5px;
    margin: 10px;
}
.new_advertisement .advertisement a .tileimg img{
    max-width: 100%;
    height: auto;
    padding: 5px;
    box-sizing: border-box;
    box-shadow: 0px 0px 8px -3px #452900;
    border-radius: 5px;
    background-color: #fff;
    &:hover{
        opacity: 0.7;
    }
}
@media screen and (max-width: 960px){
    .new_advertisement h2{
        margin-bottom: 0px;
    }
    .new_advertisement p{
        padding-left: 0px;
        display: block;
    }
    .new_advertisement .advertisement{
        overflow: auto;
        &::-webkit-scrollbar{
            height: 7px;
        }
        &::-webkit-scrollbar-track{
            background: #e5e5e5; 
        }
        &::-webkit-scrollbar-thumb{
            background: #b3b3b3;
        }
    }
    .new_advertisement .advertisement a .tileimg img{
        max-width: none;
        width: 300px;
        height: auto;
    }
}



/*========= 補助金関連 ===============*/
.hojokin{
    padding: 0 10px 30px 10px;
    background-image: url(https://primo-reform.com/wp-content/uploads/japanese-paper_00372.jpg);
    background-repeat: repeat;
    background-size: 20%;
    padding: 30px 0;
}
.hojokin p{
    font-size: 18px;
    color: #654c43;
}
@media screen and (max-width: 480px){
    .hojokin h2{
        font-size: 20px;
    }
    .hojokin p{
        font-size: 16x;
    }
}
.tekkyokasan{
    margin: auto;
    max-width: 810px;
}
.tekkyokasan a img{
    display: block;
    margin: auto;
    width: 95%;
    height: auto;
    border: 1px solid #ccc;
    &:hover{
        opacity: 0.7;
    }
}
.hosyou_link{
    display: flex;
    justify-content: center;
    margin: 10px;
    column-gap: 15px;
}
.hosyou_link div{
    max-width: 580px;
    height: auto;
    box-shadow: 0px 0px 10px -3px #777777;
    border-radius: 5px;
    background-color: #fff;
    &:hover{
        opacity: 0.7;
    }
}
.hosyou_link div a:hover{
    text-decoration: none;
}
@media screen and (max-width: 700px){
    .hosyou_link{
        flex-wrap: wrap;
    }
    .hosyou_link div{
        margin-bottom: 10px;
    }
}
.hosyou_link div img{
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
    vertical-align: bottom;
}



/*========= リフォーム事例 ===============*/
.area_jirei{
    padding: 30px 0;
    background: #fff;
}
.area_jirei h2{
    max-width: 1200px;
}
.area_jirei .content p{
    padding-left: 15px;
    color: #654c43;
}
.area_jirei-content{
    padding: 20px 0;
}
.jirei{
    padding-top: 10px;
}
.jirei .slick-list{
    background: none;
}
.jirei_catlist{
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
}
.jirei_catlist .slick-slide {
    transform: scale(1);/*左右の画像のサイズを80%に*/
    opacity: 0.5;/*透過なし*/
}
.jirei_catlist .slick-slide.slick-center{
    transform: scale(1);/*中央の画像のサイズだけ等倍に*/
    opacity: 1;/*透過なし*/
}
.jirei_catlist .jirei_li{
    position: relative;
    margin: 5px 15px;
    width: 380px;
    height: 450px;
    border-radius: 5px;
}
.jirei_catlist li img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0px 0px 10px -3px #777777;
}
.jirei_catlist li a{
    color: #000;
    opacity: 1;
}
.jirei_catlist li .newjirei h3.jirei_post{
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 380px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    border-radius: 0 0 5px 5px;
    background:  rgba(0, 0, 0, 0.6);
    overflow: hidden;
    color: #fff;
    opacity: 0;
}
.jirei_li:hover .newjirei h3.jirei_post{
    height: 80px;
    color: #fff;
    line-height: 80px;
    transition: all .3s;
    background:  rgba(0, 0, 0, 0.6);
    opacity: 1;
}
@media screen and (max-width: 480px){
    .jirei_catlist .jirei_li,
    .jirei_catlist li img{
        width: 370px;
        height: 420px;
    }
    .jirei_catlist li .newjirei h3.jirei_post{
        width: 370px;
    }
}
/*ドットナビゲーションの設定*/
.jirei_catlist .slick-dots {
    text-align:center;
    margin:15px 0 0 0;
}
.jirei_catlist .slick-dots li {
    display:inline-block;
margin:0 15px;
}
.jirei_catlist .slick-dots button {
    color: transparent;
    outline: none;
    width:15px;/*ドットボタンのサイズ*/
    height:15px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#999;/*ドットボタンの色*/
    border: none;
}
.jirei_catlist .slick-dots .slick-active button{
    background:#ff9800;/*ドットボタンの現在地表示の色*/
}




/*========= お客様の声 ===============*/
.area_voice{
    background-image: url(https://primo-reform.com/wp-content/uploads/japanese-paper_00372.jpg);
    background-repeat: repeat;
    background-size: 20%;
    padding: 30px 0;
}
.area_voice h2{
    max-width: 1200px;
}
.voice_title_img{
    max-width: 500px;
    margin: auto;
    margin-top: 15px;
    text-align: center;
}
.voice_title_img img{
    width: 95%;
    height: auto;
}
.area_voice-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.area_voice-box{
    margin: 10px;
    padding: 20px;
    width: 40%;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
}
@media screen and (max-width: 960px){
    .area_voice-box{
        width: 90%;
    }
}
@media screen and (max-width: 480px){
    .area_voice-box{
        padding: 20px 10px;
    }
}
.area_voice-box h3{
    font-size: 16px;
    font-weight: 700;
    color: #654c43;
    text-decoration: underline;
    &:hover{
        opacity: 0.7;
        text-decoration: none;
    }
}
.area_voice_item{
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.area_voice_img{
    margin: auto 5px;
}
.area_voice_img img{
    display: block;
}
.area_voice_manzokudo p{
    font-weight: 700;
    color: #654c43;
}
.area_voice_manzokudo span{
    font-weight: 700;
    color: #ff9800;
}
.area_voice_comment{
    margin-top: 10px;
}



/*========= 標準工事 ===============*/
.hyojunkoji{
    padding: 30px 0 50px 0;
}
.hyojunkoji-detail{
    display: grid;
    grid-template-columns: 350px 350px 350px;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}
.hyojunkoji-detail li{
    width: 335px;
    height: 40px;
    padding-left: 10px;
    line-height: 38px;
    border: 1px solid #816c64;
    border-radius: 10px;
}
.hyojunkoji-note{
    max-width: 1050px;
    margin: 20px auto;
    padding: 10px 10px 20px 10px;
    border: 2px dotted #816c64;
}
.hyojunkoji-note ul{
    margin-top: 5px;
    padding: 0 10px;
}
.hyojunkoji-note ul li{
    list-style: inside;
    margin-left: 1.4em;
	text-indent: -1.4em;
    margin-bottom: 1em;
    line-height: 1.5;
}
@media screen and (max-width: 1140px){
    .hyojunkoji-detail{
        max-width: 720px;
        margin: auto;
        grid-template-columns: 50% 50%;
    }
    .hyojunkoji-detail li{
        width: calc(100% - 10px);
    }
    .hyojunkoji-note{
        max-width: 700px;
    }
}
@media screen and (max-width: 750px){
    .hyojunkoji-detail{
        grid-template-columns: 50% 50%;
        gap: 5px;
    }
    .hyojunkoji-detail li{
        width: calc(100% - 12px);
        padding-left: 10px;
        white-space: nowrap;
    }
}


/*========= エコキュート ===============*/
/*====補助金対象エコキュート====*/
.hojokinn-ecocute{
    padding-top: 30px;
    background-color: #f3f1e0;
}
.hojokinn-ecocute h2{
    margin-bottom: 10px;
    text-align: center;
}
/*====ここまで====*/
.ecocute{
    padding-top: 30px;
    background-color: #f3f1e0;
}
.ecocute-title{
    max-width: 1080px;
    margin: 0 auto 15px;
}
.ecocute h2{
    margin: 0 10px;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    background-color: #ff9800;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 3px 0 0 #93692b;
}
.ecocute h2::after{
    position: absolute;
    border: 2px solid #fff;
    content: "";
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: 7px;
}
.ecocute-subtitle{
    margin-bottom: 5px;
    font-size: 24px;
    color: #654c43;
    text-align: center;
}
.product{
    display: grid;
    grid-template-columns: 350px 350px 350px;
    gap: 20px;
    justify-content: center;
    padding-bottom: 40px;
}
/*=== gridブレイクポイント設定 ===*/
@media screen and (max-width: 1140px){
    .ecocute-title{
        max-width: 720px;
    }
    .product{
        grid-template-columns: 350px 350px;
    }
}
@media screen and (max-width: 750px){
    .ecocute-title{
        max-width: 350px;
    }
    .ecocute h2{
        margin: 0;
    }
    .product{
        grid-template-columns: 350px;
    }
}
/*=== ここまで ===*/

.product-contents{
    width: 350px;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
}
a.product-contents:hover{
    opacity: 0.7;
}
.product-contents img{
    display: block;
    width: 90%;
    height: auto;
    margin: 10px auto;
}
.product-detail{
    text-align: center;
}
.product-detail h4{
    font-size: 20px;
}
.product-num{
    font-size: 18px;
}
.product-detail ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5px 10px;
}
.product-detail ul li{
    margin-right: 5px;
    margin-bottom: 5px;
    width: 160px;
    height: 30px;
    background-color: #ff9800;
    color: #fff;
    border-radius: 10px;
    line-height: 28px;
    &:nth-child(2n){
        margin-right: 0px;
    }
}
.product-detail .set{
    margin-bottom: 10px;
    height: 35px;
    background-color: #654c43;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 33px;
}
.arrow {
    position: relative;
    display: inline-block;
    width: 75.5px;
    height: 32.9px;
    margin-bottom: 5px;
}
.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 3.5px);
    width: 7px;
    height: 40px;
    border-radius: 9999px;
    background-color: #ff9800;
    transform-origin: 50% calc(100% - 3.5px);
}
.arrow::before {
    transform: rotate(55deg);
}
.arrow::after {
    transform: rotate(-55deg);
}
.sales-price{
    margin-top: -5px;
    margin-bottom: 10px;
    color: red;
    font-size: 34px;
    font-weight: 700;
}
.sales-price .yen{
    color: #000;
    font-size: 24px;
    margin-left: 5px;
    font-weight: 500;
}
.sales-price .tax{
    color: #000;
    font-size: 18px;
    margin: 0 -10px;
    font-weight: 500;
}



/*========= セット商品 ===============*/
.others{
    padding: 30px 0;
}

@media screen and (max-width: 700px){
    .others h3{
        font-size: 20px;
    }
}
.others .others-contents{
    margin: 10px auto 30px auto;
}
.others-contents .product{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
}
.others-detail{
    max-width: 780px;
    margin: 5px auto 20px auto;
}
.others-text{
    margin-bottom: 20px;
    line-height: 1.8;
}
.others-detail .price{
    text-align: center;
}
.others-detail .price .sales-price{
    margin: 0;
}
.all-electric {
    border-bottom: 2px dotted #816c64;
}
.all-electric .center p{
    font-size: 20px;
    color: #654c43;
    margin: -5px 0 5px 0;
}
.all-electric .product{
    padding-bottom: 20px;
}
.all-electric .product-contents{
    width: 360px;
    border: 3px solid #ff9800;
}
.all-electric .product-contents h4{
margin-bottom: 10px;
}
.others .ulblo{
    max-width: 800px;
}
.others .ulblo img{
    width: 100%;
    height: auto;
}



/*========= コラム ===============*/
.column{
    padding: 80px 0;
}
.column-contents{
    display: grid;
    gap: 20px;
    grid-template-columns: 360px minmax(300px, 750px);
    justify-content: center;
    margin-bottom: 30px;
}
.column-title{
    background-image: url(https://primo-reform.com/wp-content/uploads/japanese-paper_00372.jpg);
    background-size: 100%;
    position: relative;
    width: 360px;
}
.column-title::after{
    position: absolute;
    border: 2px solid #fff;
    content: "";
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.column-title h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #654c43;
}
.column-title h2::after{
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, 0);
    content: "COLUMN";
    font-size: 45px;
    color: #fff;
    z-index: -1;
}
@media screen and (max-width: 800px){
    .column-contents{
        display: block;
    }
    .column-title{
        width: 100%;
        height: 180px;
        margin-bottom: 20px;
    }
    .column-title h2{
        transform: translate(-50%, -45%);
    }
}
.column_catlist{
    display: flex;
    flex-flow: column;
    border-top: 2px solid #816c64;
}
.column_catlist li{
    border-bottom: 1px dotted #816c64;
    &:last-child{
        border-bottom: 2px solid #816c64;
    }
}
.column_catlist li a{
    position: relative;
    display: block;
    padding: 5px 15px;
    color: #654c43;
}
.column_catlist li a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 15px;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}
.column_catlist li a:hover {
    background: #f3f1e0;
}
.column_catlist li a:hover:after {
    right: 25px;
}
.column_excerpt_date,.category_name{
    display: inline-block;
}
.column_excerpt_date{
    width: 130px;
}
.category_name{
    width: 140px;
    margin: 5px;
    padding: 2px 5px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    background: #816c64;
    border-radius: 5px;
}
.column_title{
    width: 95%;
}


/*========= リフォームの悩み ===============*/
.reform-checklist{
    padding-top: 50px;
}
.reform-checklist,.policy,.warranty,.reason{
    background: #f3f1e0;
}
.reform-checklist h2,.policy h2,
.warranty h2,.reason h2{
    font-size: 24px;
}
.reform-checklist .width1200,
.policy .width1200,
.warranty .width1200,
.reason .width1200{
    padding-bottom: 30px;
}

.reform-checklist ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    padding: 15px;
    margin: 15px auto;
    border-radius: 10px;
    background: #fff;
}
.reform-checklist ul li{
    width: 350px;
    padding: 15px 0;
}
.reform-checklist ul li::before{
    display:inline-block; 
    vertical-align: middle;
    content:'';
    width:1em;
    height: 1em;
    background: #654c43;
    border-radius: 50%;
    margin-right: 8px;
}
.reform-checklist ul li span{
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(transparent 50%, #f6c667 50%);
}
.reform-checklist p{
    margin: 0 10px;
    font-size: 16px;
    text-align: center;
}

.policy .content{
    padding: 0 20px;
}
.policy-contents{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}
.policy-contents div{
    padding: 10px;
    width: 250px;
    height: 100px;
    border-radius: 10px;
    text-align: center;
    background: #fff;
}
.policy-contents p{
    display: inline;
    font-size: 22px;
    font-weight: bold;
}
.policy-contents p span{
    font-size: 48px;
    color: red;
}


/*========= 保証内容について ===============*/
.warranty .content{
    padding: 0 20px;
}
.warranty ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
}
.warranty ul li{
    margin: 10px;
    width: 45%;
    min-height: 150px;
    background-color: #fff;
    border-radius: 10px;
}
@media screen and (max-width: 750px){
    .warranty ul li{
        width: 95%;
        min-height: auto;
        padding-bottom: 10px;
    }
}
.warranty .warranty-title{
    margin: 0 20px;
    padding: 20px 0 10px 0;
    text-align: center;
    color: #ff9900;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #d6d6d6;
}
.warranty .warranty-content{
    margin: 0;
    padding: 10px 25px;
    font-size: 16px;
}


/*========= 選ばれる理由 ===============*/
.reason .content{
    padding: 0 20px;
}
.reason .reason-detai{
	margin: auto;
	margin-bottom: 20px;
	width: 95%;
}
.reason .reason-detai li{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 10px 0;
	padding: 5px 0;
	border-radius: 10px;
	background-color: #fff;
}
.reason .reason-detai li .reason-num{
	width: 80px;
	font-size: 30px;
	font-weight: bold;
	color: #654c43;
	text-align: center;
}
.reason .reason-detai li .reason-subheading{
	width: 150px;
	padding: 5px 0;
	font-size: 20px;
	font-weight: bold;
	color: #ff9900;
}
.reason .reason-detai li .reason-content{
    width: 640px;
	padding: 0 2em;
}
.reason .reason-detai li .reason-content span{
	font-weight: bold;
	color: #ff9900;
}
.br-sp {
    display: none;
}


/*========= お問い合わせ ===============*/
.contact{
	padding: 30px 0;
    text-align: center;
}
.contact h2{
	margin: 10px 0;
	font-size: 24px;
}
.contact .contact_content {
	padding-bottom: 20px;
	border-bottom: 2px dotted #816c64;
}
.contact .contact_content02{
	padding-bottom: 10px;
}
.contact .contact_content p,.contact .contact_content02 p{
	text-align: center;
	padding: 5px 10px;
    font-size: 16px;
    line-height: 1.8;
}
@media screen and (max-width: 750px) {
    .contact .contact_content p,.contact .contact_content02 p{
        text-align: left;
    }
}
.contact h3{
	margin-top: 20px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
.contact .freedial{
	text-align: center;
}
.contact .freedial img{
	max-width: 500px;
	width: 95%;
    height: auto;
}
.contact .contact_link{
	text-align: center;
}
.contact .contact_link img{
	max-width: 400px;
	width: 95%;
    height: auto;
	margin: 5px 10px;
	&:hover{
		opacity: 0.8;
	}
}
.contact span.pc img{
    display: block;
	width: 400px;
    height: auto;
	margin: auto;
	&:hover{
		opacity: 0.8;
	}
}













@media screen and (max-width: 480px){
/*=========ヘッダー===============*/
.float2 {
    width: 100%;
    height: 100px;
    position: fixed;
    float: left;
    z-index: 100;
}
.float2in {
    background: url(https://primo-reform.com/wp-content/uploads/float.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 110px;
    position: absolute;
}
.float2in1 {
    float: right;
    width: 15%;
    height: 90%;
}
.float2in2 {
    float: right;
    width: 15%;
    height: 90%;
    display: block;
}
.float2in3 {
    float: right;
    width: 15%;
    height: 90%;
    display: block;
}
.float2in4 {
    float: right;
    width: 15%;
    height: 90%;
    display: block;
}
.float2in5 {
    float: right;
    width: 37%;
    height: 90%;
    display: block;
}
/**画面下フローティング部分S**/
.float {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 156, 0, 0.8);
    z-index: 1000;
    padding: 10px 0 0 0;
}
/**ドロワー2S**/
#nav-drawer2 {
    float: right;
    width: 15%;
    height: 90%;
}
.nav-unshown2 {
    display: none;
}
#nav-open2 {
    display: inline-block;
    width: 100%;
    height: 88%;
    vertical-align: middle;
}
#nav-open2 span:before {
    bottom: -8px;
}
#nav-open2 span:after {
    bottom: -16px;
}
#nav-close2 {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
#nav-content2 {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
}
#nav-input2:checked~#nav-close2 {
    display: block;
    opacity: .5;
}
#nav-input2:checked~#nav-content2 {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 5px 0 3px rgba(0, 0, 0, 0.40);
}
/**タップで電話**/
.mazuden {
    position: fixed;
    top: calc(100% - 220px);
    right: 0;
    width: 50%;
    height: 130px;
    z-index: 10000;
    border-radius: 10px 0px 0px 10px;
}
.mazuden .slidein {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background: rgba(255, 152, 0, 0.92);
    width: 100%;
    height: 130px;
    border-radius: 10px 0px 0px 10px;
}
@-webkit-keyframes slideInRight {
    from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    }
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInRight {
    from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    }
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
}

.mazuden .gohumei {
    margin: 0px 0 5px 0;
    font-weight: 500;
    color: #fff;
    padding-top: 15px;
    text-align: center;
}
.mazuden .whitebox {
    width: 160px;
    background-color: #fff;
    margin: 0 auto;
    border-radius: 10px;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    text-align: center;
}
.mazuden .whitebox .delayPOPa {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 0px 10px 10px;
    box-sizing: border-box;
    color: #ff9800;
}
.mazuden .whitebox p {
    background: url(https://primo-reform.com/wp-content/uploads/tell01.png);
    background-size: 14%;
    background-repeat: no-repeat;
    background-position: 10% 50%;
}
@-webkit-keyframes pulse {
    from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
}
.float2in2 {
    float: right;
    width: 15%;
    height: 90%;
    display: block;
}
.float2in3 {
    float: right;
    width: 15%;
    height: 90%;
    display: block;
}
.float2in4 {
    float: right;
    width: 15%;
    height: 90%;
    display: block;
}
.float2in5 {
    float: right;
    width: 37%;
    height: 90%;
    display: block;
}

#header100 {
    width: 100%;
    height: 0px;
    margin: 0;
    background-color: #ffffff;
    z-index: 10;
    position: relative;
    border: none;
    padding: 0 0 23% 0;
}
.header {
    display: none;
}
.logo {
    width: 100%;
    height: 77px;
    float: left;
    text-align: center;
}
h1.header_description {
    width: 100%;
    height: 15px;
    font-size: 12px;
    padding: 10px 0 10px 0px;
    display: block;
    margin-bottom: 20px;
    background-color: #ffa500;
    color: #fff;
}
div.header_logo {
    width: auto;
    height: auto;
    text-align: center;
}
div.header_logo img {
    width: auto;
}
.mail {
    display: none;
}
.tell {
    width: 70px;
    height: 50px;
    float: right;
    padding: 5px 0px 2px 0;
    display: none;
}
.tell_img {
    width: 70%;
    height: 50px;
}
/**ページトップに戻るボタンS**/
.ptop {
    padding-top: 3px;
    width: 70px;
    height: 70px;
    position: fixed;
    bottom: 30px;
    right: 20px;
}
body .ptop a {
    padding: 8px 0 10px 0;
    font-size: 16px;
}
/**ページトップに戻るボタンE**/


/*=========フッター===============*/
.back {
    clear: both;
    width: 154px;
    height: 59px;
    margin: 0 auto;
    padding: 20px 0 10px 0;
}
.footer {
    width: auto;
    margin: 0 10px;
    padding-top: 30px;
}
.footer100 .footer ul {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0px 0 0 0;
    box-sizing: border-box;
    position: relative;
}
.footer100 .footer ul li {
    color: #fff;
    padding: 20px 0 20px 30px;
    border: 1px solid #777;
    position: relative;
}

.footer100 .footer ul li a::before {
    height: 20px;
    width: 20px;
}
.footer100 .footer ul li a::after {
    content: "";
    background-color: #ffa500;
    display: inline-block;
    height: 20px;
    width: 20px;
    -webkit-mask: url(https://primo-reform.com/wp-content/uploads/wgreaterthan-r.svg);
    mask: url(https://primo-reform.com/wp-content/uploads/wgreaterthan-r.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    vertical-align: middle;
    margin-right: 5px;
    position: absolute;
    right: 10px;
    top: 17px;
}
.footer100 .footer ul {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0px 0 0 0;
    box-sizing: border-box;
    position: relative;
}
.footer100 .footer ul li {
    color: #fff;
    padding: 20px 0 20px 30px;
    border: 1px solid #777;
    position: relative;
}
.copy {
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 20px 0 20px 0;
    clear: both;
}


/*========= ナビゲーションドロップダウンのためのCSS ===============*/
body .drop_down_menu{
    display: none
}
body .drop_down_menu-sp{
    display: block;
}

    nav{
        padding: 0;
        border-bottom: none;
    }
    
    nav ul{
        display: block;
    }
    
    nav li.has-child ul,
    nav li.has-child ul ul{
        position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;/*JSで制御するため一旦表示*/
    opacity:1;/*JSで制御するため一旦表示*/
    display: none;/*JSのslidetoggleで表示させるため非表示に*/
    transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}    
/*矢印の位置と向き*/
nav ul li.has-child::before{
    left:20px;
}
nav ul ul li.has-child::before{
        transform: rotate(135deg);
    left:20px;
}
nav ul li.has-child.active::before{
        transform: rotate(-45deg);
}
.has-child-title{
    border-bottom: 1px solid #ccc;
}
nav ul li li a{
    padding: 10px;
}
nav li.has-child ul{
box-shadow: none;
border-radius: 0px;
}
nav li.has-child ul li{
    background-color: #fff;
}
.drop_down_menu-sp nav ul.has-child-item li{
    background-color: #f6c667;
    border-bottom: 1px dashed #fff;
}
.drop_down_menu-sp nav ul.has-child-item li a{
    color: #fff;
}
.link_icon{
    margin: 20px;
    vertical-align: top;
}






}

