/* ======================================================================================
  共通
========================================================================================= */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
    color: #444;
}

a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
}

a:hover {
    opacity: 0.6;
}

.inner {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width:1000px) {
    .inner {
        padding: 0.5%;
    }
}

.btn a {
    display: block;
    width: 125px;
    line-height: 40px;
    font-size: 1.3rem;
    background-color: #ff9a44;
    text-align: center;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.btn2 a {
    display: block;
    width: 240px;
    line-height: 50px;
    font-size: 1.6rem;
    background-color: #eff0ef;
    text-align: center;
    color: rgb(29, 29, 29);
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

@media screen and (max-width:440px) {
    .btn a {
        display: block;
        width: 120px;
        line-height: 2;
        font-size: 1.6rem;
        margin-top: 0;
    }
}



/* ===================
  タイトル
====================== */
h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

#top_main .about .br_pc {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0;
}

h2 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.titlearea h2 {
    text-align: left;
}

h2.gr1 span {
    background: -webkit-linear-gradient(left, #fc6076, #ff9a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2.gr2 span {
    background: -webkit-linear-gradient(left, #00c9ff, #3336ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title_01 {
    color: #fff;
    font-size: 5rem;
    font-weight: 600;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: linear-gradient(-20deg, #fc6076 0%, #ff9a44 100%);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.title_02 {
    color: #fff;
    font-size: 5rem;
    font-weight: 600;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: linear-gradient(to right, #00c9ff 0%, #3336ee 100%);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

h3 {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.title_04 {
    text-align: center;
    font-size: 2rem;
    margin-top: 5px;
    margin-bottom: 5px;
}

@media screen and (max-width:550px) {
    h1 {
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    h2 {
        font-size: 3rem;
    }

    #top_main .service .titlearea h2 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .titlearea h2 {
        margin-left: 20px;
    }

    h3 {
        font-size: 2.6rem;
        font-weight: 600;
    }

    .service_title {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .title_01 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .title_02 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .title_04 {
        text-align: center;
        font-size: 1.6rem;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}


/* ======================================================================================
  ヘッダー
========================================================================================= */
header {
    position: sticky;
    top: 0;
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* header .menu_btn{
    display: none;
} */
header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 250px;
    margin-top: 5px;
    margin-left: 0;
    margin-bottom: 5px;
    padding-left: 0;
}


header ul {
    margin: 0;
    padding: 0;
}

header .menu_body>ul {
    display: flex;
}

header .menu_body>ul>li {
    margin-left: 25px;
}

header .menu_body>ul li ul {
    display: none;
    position: absolute;
}

header .menu_body>ul li:hover ul {
    display: block;
}

@media screen and (max-width:960px) {
    header img {
        width: 250px;
    }

    header nav {
        position: fixed;
        background-color: #fcc999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding-top: 64px;
        padding-left: 32px;
        padding-right: 32px;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    header.on nav {
        visibility: visible;
        opacity: 1;
    }

    header .menu_body>ul {
        display: block;
        line-height: 7rem;
    }

    header .menu_body a {
        color: #666;
        display: block;
    }

    header .menu_body>ul>li {
        margin-left: 0px;
        font-size: 3rem;
        border-bottom: 1px solid #666;
    }

    header .menu_body>ul>li:last-child {
        border-bottom: none;
    }

    header .menu_body>ul li ul {
        display: block;
        position: static;
        font-size: 2rem;
        padding-left: 2rem;
    }

    header .menu_body>ul li ul li {
        border-bottom: 1px dotted #666;
    }

    header .menu_body>ul li ul li:first-child {
        border-top: 1px solid #666;
    }

    header .menu_btn {
        width: 24px;
        height: 24px;
        z-index: 100;
    }

    header .menu_btn span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: #333;
        transition: 0.3s;
    }

    header .menu_btn span:nth-child(2) {
        transform: translateY(9px);
    }

    header .menu_btn span:last-child {
        transform: translateY(18px);
    }

    header.on .menu_btn span:first-child {
        transform: translateY(12px) rotate(45deg);
    }

    header.on .menu_btn span:nth-child(2) {
        display: none;
    }

    header.on .menu_btn span:last-child {
        transform: translateY(10px) rotate(-45deg);
    }

}

/*=======max-width:960px=======*/


/* ======================================================================================
  フッター
========================================================================================= */
footer {
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

footer .inner {
    padding: 20px 20px 50px 20px;
    display: flex;
    justify-content: space-between;
}

footer .footer_left img {
    width: 300px;
    margin-bottom: 30px;
}

footer .footer_left .adress {
    line-height: 1.3;
}

footer .footer_right nav {
    display: flex;
    justify-content: space-between;
}

footer .footer_right nav a {
    display: block;
    font-size: 1.6rem;
    margin-top: 9px;
    margin-left: 30px;
    margin-right: 30px;
    color: #333;
}

footer .footer_right .icon img {
    width: 30px;
}

footer .footer_right .icon {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-right: 20px;
}

@media screen and (max-width:700px) {
    footer .footer_left img {
        width: 160px;
        margin-bottom: 5px;
    }

    footer .inner {
        flex-direction: column-reverse;
        padding: 20px;
    }

    footer .inner p {
        font-size: 1.4rem;
    }

    footer .footer_right nav {
        display: flex;
        justify-content: right;
    }

    footer .footer_right nav p {
        font-size: 1rem;
    }

    footer .footer_right .icon {
        margin-top: 15px;
        display: flex;
        justify-content: right;
    }

    footer .footer_right .icon img {
        width: 30px;
        margin-right: 50px;
    }

    footer .footer_right .icon .right img {
        margin-right: 0;
    }

    footer .footer_right nav a {

        margin-left: 15px;
        margin-right: 5px;
    }
}




/* ======================================================================================
  CTA  お問い合わせ
========================================================================================= */
#cta .contact {
    padding-top: 50px;
    padding-bottom: 150px;
}

/* #cta .contact_block{
    display: flex;
    justify-content: space-evenly;
    padding-left: 5%;
    padding-right: 5%;
}   */
#cta .contact_block .btn a {
    width: 300px;
    margin-bottom: 30px;
}

#cta .contact .contact_text {
    text-align: center;
    padding-bottom: 30px;
}

@media screen and (max-width:600px) {

    #cta .contact {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    #cta .contact_block {
        display: block;
    }

    #cta .contact_block .btn a {
        width: 250px;
    }

    #cta .contact .contact_text {
        font-size: 1.4rem;
    }
}

@media screen and (min-width:600px) {
    #cta .contact .contact_text .br_pc {
        display: block !important;
    }

    #cta .contact .contact_text .br_sp {
        display: none !important;
    }
}

@media screen and (max-width:600px) {
    #cta .contact .contact_text .br_pc {
        display: none !important;
    }

    #cta .contact .contact_text .br_sp {
        display: block !important;
    }
}




/* ======================================================================================
  トップページ
========================================================================================= */
#top_main img {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#top_main .about {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ==========
  key_visual
============= */
#key {
    background-image: url(../img/key_02.jpg);
    height: 50vh;
    background-size: cover;
    background-position: center center;
}

#key>div {
    display: table;
    width: 100%;
    max-width: 1000px;
    height: 50vh;
}

#key>div .pc {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/* 
#key > div .pc h1{
    background-color: rgba(245, 244, 244, 0.7);
    display: inline-block;
    color: #000;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
    padding:50px 80px 50px 80px;
}
#key > div .pc h1 span{
    font-size: 4rem; 
}*/

@media screen and (max-width:768px) {
    #key {
        height: 30vh;
    }

    #key>div {
        display: table;

        height: 30vh;
    }

    #key>div .pc p {
        font-size: 2.5rem;
        font-weight: 700;
        padding: 15px;
    }

    #key>div .pc p span {
        line-height: 1.5;
        font-size: 2.5rem;
    }
}


/* @media screen and (max-width:1000px){
    #top_main .key_visual .inner{
        padding:0%;
    }
} */

/* ==========
  about
============= */
#top_main .about {
    max-width: 1000px;
    padding-top: 70px;
    padding-bottom: 70px;
    font-size: 2rem;
}

@media screen and (min-width:600px) {
    #top_main .about .br_pc {
        display: block !important;
    }

    #top_main .about .br_sp {
        display: none !important;
    }
}

@media screen and (max-width:600px) {
    #top_main .about .br_pc {
        display: none !important;
    }

    #top_main .about .br_sp {
        display: block !important;
    }

    #top_main .about .br_sp {
        font-size: 1.6rem;
        font-weight: 600;
        text-align: left;
        margin-top: 0;
        margin-bottom: 0;
    }

    #top_main .about .inner {
        padding: 10%;
    }

    #top_main .about {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* ==========
  SERVICE
============= */
#top_main .service {
    background-color: #a7a7a533;
    z-index: -1;
}

#top_main .service {
    padding-top: 30px;
    padding-bottom: 150px;
}

#top_main .service_block_01 {
    background-color: #fff;
    margin-bottom: 100px;
}

#top_main .service_block_02 {
    background-color: #fff;
    margin-bottom: 50px;
    margin-top: 0px;
}

#top_main .block_wrap {
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

#top_main .service_block {
    padding: 30px;
    max-width: 30%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 40px;
}

#top_main #call .block_wrap {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#top_main .service_block_01 .text {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}





/* #top_main .service .service_title::before{
content: "SERVICE";
font-size: 5.5rem;
color: rgba(179, 177, 177, 0.966);
} */

@media screen and (max-width:767px) {
    #top_main .service {
        padding-top: 45px;
        padding-bottom: 10px;
    }

    #top_main .service_block {
        max-width: 90%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    #top_main .service_block_01 {
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 30px;
    }

    #top_main .service_block .text {
        text-align: left;
        font-size: 1.6rem;
    }

    #top_main .service .service_title::before {
        font-size: 4rem;
    }

    #top_main .service_title {
        font-size: 3.5rem;
    }

    #top_main .block_wrap {
        display: block;
        padding: 0;
    }

    #top_main .block_wrap .service_block {
        width: 80%;
    }

    /* #top_main .service_block_02 img{
        width: 150px;
    } */
    #top_main .service {
        padding-top: 20px;
        padding-bottom: 0;
    }

    #top_main .service_block_02 {

        margin-bottom: 50px;
        margin-top: 0;
    }

    #top_main .service {
        background-color: #fff;

    }

    #top_main .service_block_01 {

        margin-bottom: 10px;
    }
}





/* ======================================================================================
◆リフォーム◆ #service_reform
========================================================================================= */
/* .service_reform #key{
    height: 25vh;
} */
#service_reform .leadtext h1 {
    margin: 30px 0 30px 0;
}

#service_reform .leadtext p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: -apple-system, "system-ui", open-sans, source-han-sans-japanese, "Helvetica Neue", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
}

#service_reform .service_list ul {
    display: flex;
    justify-content: space-evenly;
}

#service_reform .service_list {
    margin-bottom: 50px;
}

#service_reform .block {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

#service_reform .block .text {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

#service_reform .block .text02 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

#service_reform .block .img {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

#service_reform .block .img img {
    width: 30%;
}




@media screen and (max-width:767px) {
    #service_reform .service_list ul {
        display: block;
    }

    #service_reform .leadtext .text p {
        text-align: left;
    }

    #service_reform .leadtext .text {
        margin-left: 30px;
        margin-right: 30px;
    }

    #service_reform .block {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #service_reform .block .text {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }

}



/* ======================================================================================
◆駆け付けサービス◆ #service_kaketsuke
========================================================================================= */
/* .service_reform #key{
    height: 25vh;
} */
#service_kaketsuke .leadtext h1 {
    margin: 30px 0 30px 0;
}

#service_kaketsuke .leadtext p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: -apple-system, "system-ui", open-sans, source-han-sans-japanese, "Helvetica Neue", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
}

#service_kaketsuke .service_list ul {
    display: flex;
    justify-content: space-evenly;
}

#service_kaketsuke .service_list {
    margin-bottom: 50px;
}

#service_kaketsuke .block {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

#service_kaketsuke .block .text {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

#service_kaketsuke .block .text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#service_kaketsuke .block .text02 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

#service_kaketsuke .block .img {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

#service_kaketsuke .block .img img {
    width: 30%;
}




@media screen and (max-width:767px) {
    #service_kaketsuke .service_list ul {
        display: block;
    }

    #service_kaketsuke .leadtext .text p {
        text-align: left;
    }

    #service_kaketsuke .leadtext .text {
        margin-left: 30px;
        margin-right: 30px;
    }

    #service_kaketsuke .block {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #service_kaketsuke .block .text {
        max-width: 700px;
        margin-top: 30px;
    }

    #service_kaketsuke .block .text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

}



/* ======================================================================================
◆コールセンター◆ #callcenter
========================================================================================= */
#callcenter .text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: -apple-system, "system-ui", open-sans, source-han-sans-japanese, "Helvetica Neue", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;

    margin-bottom: 50px;
}

@media screen and (max-width:767px) {
    #callcenter .text {
        margin-left: 30px;
        margin-right: 30px;
    }
}

#callcenter .bosyuu {
    margin-top: 200px;
}

#callcenter .text_02 .title {
    font-size: 2rem;
    color: #ef6c00;
    font-weight: 400;
}

#callcenter .orenge {
    color: #ef6c00;
}




/* ======================================================================================
  会社概要 company
========================================================================================= */
#company div.cmp_info {
    width: 50%;
    margin: 0 auto;
}

#company div.cmp_info .line {
    margin: 0 0 30px 0;
    border-bottom: #cccccc solid 1px;
}

#company div.cmp_info .line .name {
    font-weight: bold;
}

#company div.cmp_info .line .val {
    color: #000000;
}

#company .top_message {
    padding: 100px 0 50px 0;
}

#company .top_message .img_text {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#company .top_message .img_text p {
    width: 45%;
}

#company div.cmp_info.shoplist .val {
    font-size: 1.3rem;
}

#company div.cmp_info.shoplist .kenmei {
    font-weight: 900;
    background-color: #04b4f863;
    margin-top: 80px;
}

@media screen and (min-width:600px) {
    #company .br_pc {
        display: block !important;
    }

    #company .br_sp {
        display: none !important;
    }
}

@media screen and (max-width:600px) {
    #company .br_pc {
        display: none !important;
    }

    #company .br_sp {
        display: block !important;
    }
}

/* ===================
  提携会社募集
===============*/
#company div.cmp_info_02 {
    width: 60%;
    margin: 0 auto;
}

#company div.cmp_info_02 .line {
    margin: 0 0 30px 0;
    border-bottom: #cccccc solid 1px;
}

#company div.cmp_info_02 .line .name {
    font-weight: bold;
}

#company div.cmp_info_02 .line .val {
    color: #000000;
}


@media screen and (max-width:600px) {
    #company div.cmp_info {
        width: 70%;
        margin: 0 auto;
    }

    #company div.cmp_info_02 {
        width: 80%;
        margin: 0 auto;
    }

    #company .top_message .img_text p {
        width: 100%;
        text-align: left;
    }

    #company .top_message .img_text {
        flex-direction: column;
        width: 80%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #company .top_message {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    #company .top_message .img_text img {
        margin-bottom: 20px;
    }
}