@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #fff;
    text-align: center;
    color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 400px;
}

/* fadeUpをするアイコンの動き */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


a {
    color: #333;
}

a:hover {
    text-decoration: none;
}

.wrapper {
    width: 1100px;
    height: auto;
    /* background-color: blanchedalmond; */
    margin: 0 auto;
    padding-right: 80px;
    padding-left: 80px;
}

header {
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 150px;
    /* background-color: aqua; */
    display: flex;
}

.logo {
    width: 35%;
}

.logo img {
    width: 100%;
}

.blank01 {
    width: 20%;
    height: 100%;
    /* background-color: black; */
}

.phone {
    width: 45%;
    height: 100%;
    /* background-color: azure; */
    text-align: center;
}

.catch_copy {
    width: 100%;
}

.phone_upper {
    display: flex;
    justify-content: center;
}

.phone_upper img {
    padding: 5px;
}

.phone_upper a {
    font-size: 2.5rem;
    font-weight: 800;
    color: #707070;
}

.phone_upper a:hover {
    color: #d8d8d8;
}

.phone_lower {
    display: flex;
    justify-content: center;
    margin-top: -10px;
}

.phone_lower img {
    padding: 5px;
}

.phone_lower a {
    font-size: 2.5rem;
    font-weight: 800;
    color: #707070;
}

.phone_lower a:hover {
    color: #d8d8d8;
}

.slide {
    position: relative;
    width: 100%;
    height: 600px;
    padding-top: 40%;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 50px;
    filter: drop-shadow(1px 2px 3px #848484);
    /* border: 1px solid lightgoldenrodyellow; */
}

.slide img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    animation: slideshow 30s linear infinite;
}

.slide img:nth-child(2) {
    animation-delay: 8s;
}

.slide img:nth-child(3) {
    animation-delay: 16s;
}

@keyframes slideshow {
    0% {
        opacity: 0;
        transform: scale(1)
    }


    10% {
        opacity: 1;
    }

    28% {
        opacity: 1;
    }

    38% {
        opacity: 0;
        transform: scale(1.3);
    }

    100% {
        opacity: 0;
    }
}

.precious_word {
    width: 100%;
    height: 100px;
    margin-top: 20px;
    /* background-color: #d8d8d8; */
    text-align: center;
}

.precious_word p {
    font-size: 2.5em;
    color: #707070;
    padding: 30px;
    font-weight: 700;
}

.navigation {
    width: 100%;
    height: 100px;
    /* background-color: aliceblue; */
    margin-top: 40px;
}

.navigation nav {
    padding: 20px;
}

.navigation nav ul {
    display: flex;
    justify-content: space-around;

}

.navigation nav ul li a {
    color: #707070;
    font-size: 2em;
    font-weight: 600;
    border-bottom: 3px solid #d8d8d8;
}

.navigation nav ul li a:hover {
    color: #d8d8d8;
    border-bottom: 3px solid #707070;
}

.yurihome_features {
    width: 100%;
    height: auto;
    /* background-color: #707070; */
    margin-top: 40px;
}

.yurihome_features img {
    width: 100%;
}

.about_yurihome {
    width: 100%;
    height: auto;
    margin-top: 200px;
    /* background-color: antiquewhite; */
    text-align: center;
}

.about_yurihome img {
    width: 80%;
}


.sentence {
    width: 80%;
    margin-top: 80px;
    margin-bottom: 40px;
}

.viewmore {
    margin-top: 100px;
    text-align: center;
}

.viewmore a {
    width: 400px;
    height: 100px;
    background-color: #707070;
    color: #fff;
    font-size: 2em;
    padding: 30px;
    text-align: center;
    border-radius: 80px;
    letter-spacing: 10px;
}

.viewmore a:hover {
    background-color: #fff;
    color: #707070;
    border: 1px solid #707070;
}

.what_can_do_yurihome {
    width: 100%;
    height: auto;
    margin-top: 200px;
    /* background-color: #848484; */
    text-align: center;
}

.can_do {
    width: 50%;
}

.icons {
    width: 100%;
    height: auto;
    /* background-color: lavenderblush; */
    display: flex;
    margin-top: 30px;
    text-align: center;
}

.reform {
    width: 25%;
    height: 100%;
    /* background-color: #707070; */
    padding: 5px;
}

.reform img {
    width: 80%;
    margin-bottom: 30px;
}

.reform:hover {
    opacity: 0.7;
}

/* .viewmore02 {
    width: 120px;
    font-size: 1.5em;
    color: #707070;
    border-bottom: 3px solid #d8d8d8;
}

.viewmore02:hover {
    color: #d8d8d8;
    border-bottom: 3px solid #707070;
} */

.paint {
    width: 25%;
    height: 100%;
    /* background-color: #7d1f1f; */
}

.paint img {
    width: 80%;
    margin-bottom: px;
}

.paint:hover {
    opacity: 0.7;
}

.clean {
    width: 25%;
    height: 100%;
    /* background-color: #9424e5; */
}

.clean img {
    width: 80%;
    margin-bottom: 30px;
}

.clean:hover {
    opacity: 0.7;
}

.others {
    width: 25%;
    height: 100%;
    /* background-color: #f2ff37; */
}

.others img {
    width: 80%;
    margin-bottom: 30px;
}

.others:hover {
    opacity: 0.7;
}

/* swiper js */

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 1000px;
    height: 600px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

/* swiper java */

.range {
    width: 100%;
    margin-top: 40px;
}

.bottom {
    width: 100%;
    height: 200px;
    /* background-color: cornsilk;  */
    margin-top: 150px;
    display: flex;
}

.left01 {
    width: 60%;
    height: 100%;
    margin-right: 10px;
    /* background-color: chocolate; */
    text-align: center;
}

.phonecall {
    width: 95%;
}

.bottom_phone_upper {
    display: flex;
    justify-content: center;
}

.bottom_phone_upper img {
    padding: 10px;
}

.bottom_phone_upper a {
    font-size: 4rem;
    font-weight: 800;
    color: #707070;
}

.bottom_phone_upper a:hover {
    color: #d8d8d8;
}

.bottom_phone_lower {
    display: flex;
    justify-content: center;
    margin-top: -10px;
}

.bottom_phone_lower img {
    padding: 10px;
}

.bottom_phone_lower a {
    font-size: 4rem;
    font-weight: 800;
    color: #707070;
}

.bottom_phone_lower a:hover {
    color: #d8d8d8;
}


.middle01 {
    width: 20%;
    height: 100%;
    /* background-color: lightcoral; */
    text-align: center;

}

.middle01 img {
    width: 100%;
}

.right01 {
    width: 20%;
    height: 100%;
    /* background-color: rgb(82, 17, 103); */
    text-align: center;
}

.right01 img {
    width: 100%;
}

#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #707070;
    opacity: 0.6;
}

#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

footer {
    width: 100%;
    height: 300px;
    margin-top: 80px;
    border-top: 4px solid #707070;

}

.footer_upper {
    width: 100%;
    height: 90%;
    display: flex;
}

.left02 {
    width: 40%;
    height: 100%;
    /* background-color: #707070; */
    text-align: center;
}

.left02 img {
    margin-top: 150px;
    margin-bottom: 20px;
}

.left02 p {
    font-size: 1.4em;
    color: #707070;
}

.middle02 {
    width: 10%;
    height: 100%;
    /* background-color: aquamarine; */
}

.right02 {
    width: 50%;
    height: 100%;
    /* background-color: lightblue; */
}

.right02_upper {
    width: 100%;
    height: 60%;
    /* background-color: aliceblue; */
}

.right02_lower {
    width: 100%;
    height: 40%;
    /* background-color: rebeccapurple; */
    text-align: center;
}

.right02_lower nav {
    width: 100%;
    display: flex;
}

.ul_upper {
    margin-top: 30px;
    margin-left: 80px;
}

.ul_lower {
    margin-top: 30px;
}

.ul_upper li {
    margin-top: 20px;
}

.ul_lower li {
    margin-top: 20px;
}

.right02_lower nav ul li {
    width: 200px;
}

.right02_lower nav ul li a {
    color: #707070;
    font-size: 1.7em;
    border-bottom: 3px solid #d8d8d8;
}

.right02_lower nav ul li a:hover {
    color: #d8d8d8;
    border-bottom: 3px solid #707070;
}

.footer_lower {
    width: 100%;
    height: 20%;
    /* background-color: salmon; */
    text-align: center;
    margin-top: 100px;
}

.footer_lower p {
    color: #707070;
}

/* ================== about ====================== */

.top_view {
    width: 100%;
    margin-top: 40px;
    /* background-color: antiquewhite; */
}

.pc_about_topview {
    width: 100%;
    height: 500px;
    margin: 0 auto;
}

.about_topview768px {
    display: none;
}

.about_topview393px {
    display: none;
}

.navigation2 {
    width: 100%;
    height: 100px;
    /* background-color: aliceblue; */
    margin-top: 40px;
}


.navigation2 nav ul {
    display: flex;
    justify-content: space-around;

}

.navigation2 nav ul li a {
    color: #707070;
    font-size: 2em;
    font-weight: 600;
    border-bottom: 3px solid #d8d8d8;
}

.navigation2 nav ul li a:hover {
    color: #d8d8d8;
    border-bottom: 3px solid #707070;
}

.precious_word2 {
    width: 100%;
    height: 100px;
    margin-top: 20px;
    /* background-color: #d8d8d8; */
    text-align: center;
}

.precious_word2 p {
    font-size: 2.5em;
    color: #707070;
    padding: 30px;
    font-weight: 700;
}

.about_features {
    width: 100%;
    height: auto;
    margin-top: 50px;
    /* background-color: lightblue; */
    text-align: center;
}

.features {
    width: 80%;
}


.differences {
    width: 100%;
    margin-top: 50px;
}

.if_yurihome {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.features_sentence {
    width: 100%;
}

.about_important {
    width: 100%;
    height: auto;
    /* background-color: #d8d8d8; */
    margin-top: 150px;
    text-align: center;
}

.what_our_precious {
    width: 80%;
}

.clients_price {
    width: 100%;
    height: auto;
    margin-top: 50px;
    /* background-color: #707070; */
    display: flex;
}

.clients {
    width: 50%;
    height: 100%;
    /* background-color: lightpink; */
    padding: 30px;
}

.clients img {
    width: 100%;
}

.price {
    width: 50%;
    height: 100%;
    /* background-color: olive; */
    padding: 30px;
}

.price img {
    width: 100%;
}

.arounds_cheeper {
    width: 100%;
    height: auto;
    margin-top: 50px;
    /* background-color: #707070; */
    display: flex;
    margin-top: -5px;
}

.pay_arounds {
    width: 50%;
    height: 100%;
    /* background-color: lightpink; */
    padding: 20px;
}

.pay_arounds img {
    width: 75%;
}

.pay_cheeper {
    width: 50%;
    height: 100%;
    /* background-color: olive; */
    padding: 20px;
}

.pay_cheeper img {
    width: 75%;

}

.noprofits {
    width: 100%;
    height: 100%;
    margin-top: -70px;
}

.noprofits_sentence {
    width: 70%;
    height: 3.8%;
    margin-top: 80px;
    margin-bottom: 40px;
}

.most_important {
    width: 80%;
    height: 20%;
}

.reform_flow {
    width: 100%;
    height: auto;
    margin-top: 150px;
    text-align: center;
}

.flow {
    width: 70%;
}

.chart {
    width: 100%;
    margin-top: 50px;
}

.cautions {
    width: 90%;
    margin-left: -60px;
    margin-top: 20px;
}

/* ================== about ====================== */

/* ================== example ====================== */

.top_view2 {
    width: 100%;
    margin-top: 40px;
    /* background-color: antiquewhite; */
}

.pc_example_topview {
    width: 100%;
    height: 500px;
    margin: 0 auto;
}

.example_topview768px {
    display: none;
}

.example_topview393px {
    display: none;
}


.example_cando {
    width: 100%;
    height: auto;
    margin-top: 50px;
    /* background-color: lightblue; */
    text-align: center;
}

#example_reform {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 150px;
    background-color: #e8e8e8;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.example_title1 {
    width: 80%;
    margin-top: -90px;
}

.example_title {
    width: 60%;
    margin-top: -90px;
}

#example_paint {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 150px;
    background-color: #e8e8e8;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

#example_clean {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 150px;
    background-color: #e8e8e8;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

#example_others {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 150px;
    background-color: #e8e8e8;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.example_price {
    width: 80%;
}

/* ================== example ====================== */

/* ================== company ====================== */

.top_view3 {
    width: 100%;
    margin-top: 40px;
    /* background-color: antiquewhite; */
}

.pc_company_topview {
    width: 100%;
    height: 500px;
    margin: 0 auto;
}

.company_topview768px {
    display: none;
}

.company_topview393px {
    display: none;
}

.company_overview {
    width: 100%;
    height: auto;
    /* background-color: #e8e8e8; */
    padding: 50px;
    text-align: center;
    margin-bottom: 150px;
}

dt {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #515151;
}

dd {
    font-size: 1.3em;
    color: #707070;
}

.yurihome_staff {
    width: 100%;
    height: auto;
    text-align: center;
}

.staff {
    width: 50%;
    margin-bottom: 50px;
}

.yuri_aono {
    width: 100%;
    height: 40%;
    /* background-color: lavender; */
    display: flex;
    text-align: center;
}

.yuri_aono1 {
    width: 50%;
    height: 100%;
    /* background-color: yellow; */
    text-align: center;
    margin-top: 50px;
}

.yuri_aono1 img {
    width: 80%;
    margin-left: 70px;
}

.yuri_aono2 {
    width: 50%;
    height: 100%;
    /* background-color: honeydew; */
    padding: 30px 0;
}

.yuri_aono2 img {
    width: 70%;
    margin-top: -10px;
    margin-right: 70px;
}

.takaaki_aono {
    width: 100%;
    height: 60%;
    /* background-color: rgb(6, 6, 110); */
    display: flex;
}

.takaaki_aono1 {
    width: 50%;
    height: 100%;
    /* background-color: yellow; */
    text-align: center;

}

.takaaki_aono1 img {
    width: 60%;
    margin-left: 70px;
    margin-top: 20px;
}

.takaaki_aono2 {
    width: 50%;
    height: 100%;
    /* background-color: honeydew; */
}

.takaaki_aono2 img {
    width: 70%;
    margin-top: 100px;
    margin-right: 70px;
}

.map {
    width: 100%;
    margin-top: 80px;
}

iframe {
    width: 100%;
    height: 500px;
}

/* ================== company ====================== */

/* ================== 768px ====================== */

@media (max-width: 768px) {

/* ================== index ====================== */

    body {
        width: 768px;
        max-width: 100%;
        margin: 0 auto;
        font-family: 'Noto Sans JP', sans-serif;
        overflow-x: hidden;
    }


    .wrapper {
        width: 708px;
        height: auto;
        /* background-color: blanchedalmond; */
        margin: 0 auto;
        padding-right: 30px;
        padding-left: 30px;
    }

    header {
        padding-top: 30px;
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        height: 150px;
        /* background-color: aqua; */
        display: flex;
    }

    .logo {
        margin-top: 20px;
    }

    .phone_upper a {
        font-size: 1.8rem;
        font-weight: 800;
        color: #707070;
    }

    .phone_lower a {
        font-size: 1.8rem;
        font-weight: 800;
        color: #707070;
    }

    .precious_word p {
        font-size: 2em;
        margin-top: -150px;
    }

    .bottom_phone_upper a {
        font-size: 2rem;
        font-weight: 800;
        color: #707070;
    }

    .bottom_phone_lower a {
        font-size: 2rem;
        font-weight: 800;
        color: #707070;
    }

    .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 600px;
        height: 400px;
    }

    .left02 {
        width: 100%;
        height: 100%;
        /* background-color: lemonchiffon; */
    }

    .left02 img {
        width: 60%;
        margin-top: 100px;
    }

    .middle02 {
        display: none;
    }

    .right02 {
        display: none;
    }
/* ================== index ====================== */

/* ================== about ====================== */

.pc_about_topview {
    display: none;
}

.about_topview768px {
    display: block;
}

.about_topview393px {
    display: none;
}

.precious_word2 p {
    font-size: 2em;
    margin-top: 50px;
}

.clients {
    padding: 10px;
}

.price {
    padding: 10px;
}

.arounds_cheeper {
    margin-top: -50;
}

/* ================== about ====================== */

/* ================== example ====================== */

.pc_example_topview {
    display: none;
}

.example_topview768px {
    display: block;
}

.example_topview393px {
    display: none;
}

/* ================== example ====================== */

/* ================== comapny ====================== */

.pc_company_topview {
    display: none;
}

.company_topview768px {
    display: block;
}

.conpany_topview393px {
    display: none;
}

/* ================== comapny ====================== */

    
}

/* ================== 768px ====================== */

/* ================== 393px ====================== */
@media (max-width: 393px) {

/* ================== index ====================== */

body {
    width: 393px;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
}

#splash_logo img {
    width: 300px;
}

.wrapper {
    width: 333px;
    height: auto;
    /* background-color: blanchedalmond; */
    margin: 0 auto;
    padding-right: 10px;
    padding-left: 10px;
}

header {
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 100px;
    /* background-color: aqua; */
    display: flex;
}

.logo {
    margin-top: 20px;
}

.phone {
    margin-top: 10px;
}

.phone_upper a {
    font-size: 0.6em;
    font-weight: 800;
    color: #707070;
    margin-top: 5px;
}

.phone_upper img {
    display: none;
}

.phone_lower a {
    font-size: 0.6em;
    font-weight: 800;
    color: #707070;
    margin-top: 10px;
}

.phone_lower img {
    display: none;
}

.slide {
    height: 200px;
    padding: 0;
    margin-top: 0px;
}

.navigation {
    margin-top: 0px;
}

.navigation nav {
    padding: 0px;
    margin-top: 0px;
}

.precious_word p {
    font-size: 0.9em;
    margin-top: 0px;
    margin-bottom: 0px;
}

.navigation nav ul li a {
    font-size: 1em;
}

.navigation2 nav ul li a {
    font-size: 1em;
}

.yurihome_features img {
    margin-top: -10px;
    margin-bottom: -120px;
}

.sentence {
    margin-top: 20px;
}

.viewmore {
    margin-top: 50px;
}

.viewmore a {
    width: 200px;
    height: 50px;
    background-color: #707070;
    color: #fff;
    font-size: 1em;
    padding: 15px;
    text-align: center;
    border-radius: 80px;
    letter-spacing: 10px;
}

.what_can_do_yurihome {
    margin-top: 100px;
}


.bottom_phone_upper a {
    font-size: 1rem;
    font-weight: 800;
    color: #707070;
}

.bottom_phone_lower a {
    font-size: 1rem;
    font-weight: 800;
    color: #707070;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px;
    height: 150px;
}

.bottom_phone_upper img {
    display: none;
}

.bottom_phone_upper a {
    margin-top: 5px;
}

.bottom_phone_lower a {
    margin-top: 10px;
}

.bottom_phone_lower img {
    display: none;
}

footer {
    height: 150px;
    margin-top: -50px;
}

.footer_lower p {
    font-size: 0.8em;
}

.left02 {
    width: 100%;
    height: 100%;
    /* background-color: lemonchiffon; */
}

.left02 p {
    font-size: 1em;
}

.left02 img {
    width: 60%;
    margin-top: 50px;
}

.middle02 {
    display: none;
}

.right02 {
    display: none;
}


/* ================== index ====================== */

/* ================== about ====================== */

.top_view {
    margin-top: 10px;
}

.pc_about_topview {
    display: none;
}

.about_topview768px {
    display: none;
}

.about_topview393px {
    width: 100%;
    display: block; 
}

.precious_word2 p {
    font-size: 0.8em;
    margin-top: -30px;
}

.navigation2 {
    height: 50px;
    margin-top: -30px;
}

.about_features {
    margin-top: 50px;
}

.about_important {
    margin-top: 80px;
}

.reform_flow {
    margin-top: 80px;
}

/* ================== about ====================== */

/* ================== example ====================== */

.pc_example_topview {
    display: none;
}

.example_topview768px {
    display: none;
}

.example_topview393px {
    width: 100%;
    display: block;
}

.can_do {
    margin-bottom: 20px;
}

.sentence {
    margin-bottom: 10px;
}

#example_reform {
    margin-top: 50px;
    padding: 30px;
}

.example_title1 {
    width: 100%;
}

.flow {
    width: 80%;
}

.chart {
    width: 100%;
}

.cautions {
    margin-left: 1px;
}

#example_paint {
    margin-top: 50px;
    padding: 30px;
}

.example_title {
    width: 70%;
}

#example_clean {
    margin-top: 50px;
    padding: 30px;
}

#example_others {
    margin-top: 50px;
    padding: 30px;
}

/* ================== example ====================== */

/* ================== company ====================== */

.pc_example_topview {
    display: none;
}

.company_topview768px {
    display: none;
}

.company_topview393px {
    width: 100%;
    display: block;
}

.company_overview {
    margin-bottom: 50px;
}

.staff {
    width: 80%;
    margin-bottom: 20px;
}

.yuri_aono1 img {
    margin-left: 20px;
}

.yuri_aono2 img {
    margin-right: 20px;
    margin-top: 10px;
}

.takaaki_aono1 img {
    margin-left: 20px;
}

.takaaki_aono2 img {
    margin-right: 20px;
    margin-top: 50px;
}

/* ================== company ====================== */

}
/* ================== 393px ====================== */