/*header*/
header{
    width: 100%;
    height: 90px;
    background: linear-gradient(blanchedalmond, white);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}
header img{
    width: 15%;
    height: auto;
}
@media(max-width: 750px){
    header img{
        width: 38%;
        height: auto;
    }    
}
/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content: center;
    align-items: center;
    background: chocolate;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    color: beige;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
}
#page-top a:hover{
    background: rebeccapurple;
}
/*リンクを固定*/
#page-top{
    position: fixed;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
}
/*上に上がる動き*/
#page-top.UpMove{
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
    from{
        opacity: 0;
        transform: translateY(100px);        
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
/*下に下がる動き*/
#page-top.DownMove{
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
    from{
        opacity: 1;
        transform: translateY(0);}
        to{
            opacity: 1;
            transform: translateY(100px);
        }
    }

/*header*/
/*ボタン外側*/
.openbtn{
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    background: lightpink;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    /*アニメーション*/
    transition: all .4s;
    position: absolute;
}
.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
    background: white;
    width: 62%;
    left: 10px;
}
.openbtn span:nth-of-type(1){
    top: 13px;
}
.openbtn span:nth-of-type(2){
    top: 19px;
    left: 11px;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: black;
}
.openbtn span:nth-of-type(3) {
    top: 36px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.mainblur{
    filter: blur(5px);
}
/*ナビゲーション*/
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overfow-scrolling: touch;
}
#g-nav ul{
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
nav ul{
    list-style: none;
    text-align: center;
}
nav ul li a{
    display: inline-block;
    text-decoration: none;
    color: black;
    padding: 10px;
}
#g-nav{
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: lightpink;
    transition: all 0.6s;
}
#g-nav.panelactive{
    right: 0;
    opacity: 1;
    z-index: 999;
}
.gnavi li{
    color: rgba(255,255,255,0);
}
.gnavi li a{
    position: relative;
}
.gnavi li.current a,
.gnavi li a:hover{
    color: lightskyblue;
}
.gnavi li a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: yellow;
    transition: all .3s;
    transform: scale(0,1);
    transform-origin: center top;
}
.gnavi li.current a::after,
.gnavi li a:hover::after{
    transform: scale(1,1);
}
/*body*/
body{
    font-family: serif;
}
/*title*/
.title{
    display: flex;
    padding-top: 3%;
    padding-bottom: 3%;
}
.title p{
    padding-top: 5%;
    padding-left: 3%;
    font-size: 50px;
}
@media (max-width: 720px){
    .title{
        display: block;
    }
    .title img{
        width: 100%;
        height: auto;
    }
    .title p{
        font-size: 17px;
    }
}
/*onayami*/
.otitle{
    background: linear-gradient(blanchedalmond, white);
}
.onayami{
    display: flex;
}
.onayami2{
    padding-left: 10%;
}
.onayami2 img{
    width: 50%;
    height: auto;
}
.huke img{
    width: 50%;
    height: auto;
}
@media (max-width: 720px){
    .onayami{
        display: block;
    }
    .otitle{
        font-size: 20px;
    }
    .onayami2, .huke{
        padding-left: 0%;
    }
    .onayami2 img, .huke img{
        width: 100%;
        height: auto;
    }
    .onayami p, .huke h3{
        font-size: 13px;
    }
}
/*setsumei*/
.ptitle{
    background: linear-gradient(blanchedalmond, white);
}
.setsumei{
    display: flex;
    padding-left: 3%;
}
.setsumei img{
    width: 50%;
    height: auto;
}
.bieki, .gijutu{
    padding-left: 3%;
    border-left: rgb(250, 209, 148) 1px solid;
}
@media (max-width: 720px){
    .ptitle{
        font-size: 20px;
    }
    .setsumei{
        display: block;
        padding-left: 0%;
    }
    .setsumei img{
        text-align: center;
    }
    .bieki, .gijutu{
        padding-left: 0%;
        border-left: none;
    }
    .bigan p, .bieki p, .gijutu h3{
        font-size: 20px;
    }
    .bigan p, .bieki p, .gijutu p{
        font-size: 13px;
    }

}
/*nagare*/
.ntitle{
    background: linear-gradient(blanchedalmond, white);
}
.nagare{
    display: flex;
}
.nagare img{
    width: 50%;
    height: auto;
}
.step2, .step3, .step4{
    padding-left: 3%;
    border-left: rgb(250, 209, 148) 1px solid;
}
@media (max-width: 720px){
    .ntitle{
        font-size: 20px;
    }
    .nagare{
        display: block;
    }
    .step1 h3, .step2 h3, .step3 h3, .step4 h3{
        font-size: 17px;
    }
    .step1 p, .step2 p, .step3 p, .step4 p{
        font-size: 13px;
    }
}
/*care*/
.ctitle{
    background: linear-gradient(blanchedalmond, white);
}
.care{
    display: flex;
}
.care img{
    width: 50%;
    height: auto;
}
.care2, .care3, .care4{
    padding-left: 3%;
    border-left: rgb(250, 209, 148) 1px solid;
}
@media (max-width: 720px){
    .ctitle{
        font-size: 20px;        
    }
    .care{
        display: block;
    }
    .care2, .care3, .care4{
        padding-left: 0%;
        border-left: none;
    }
    .care1 p, .care2 p, .care3 p, .care4 p{
        font-size: 13px;
    }
}
/*beforeafter*/
.batitle{
    background: linear-gradient(blanchedalmond, white);
}
.beforeafter{
    display: flex;
}
.beforeafter img{
    width: 50%;
    height: auto;
}
.ba1, .ba2, .ba3{
    display: block;
}
.ba2, .ba3{
    padding-left: 3%;
    border-left: rgb(250, 209, 148) 1px solid;
}
@media(max-width: 720px){
    .batitle{
        font-size: 20px;
    }
    .beforeafter{
        display: block;
    }
    .ba2, .ba3{
    padding-left: 0%;
    border-left: none;
}
.ba1, .ba2, .ba3{
    display: block;
}
.ba1 p, .ba2 p, .ba3 p{
    font-size: 13px;
    padding-left: 3%;
}
.ba1{
    padding-bottom: 1.5%;
}
.ba2{
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    border-top: rgb(238, 192, 123) 1px solid;
    border-bottom: rgb(238, 192, 123) 1px solid;    
}
.ba3{
    padding-top: 1.5%;
}
}
/*koe*/
.ktitle{
    background: linear-gradient(blanchedalmond, white);
}
.koeqa{
    display: flex;
}
.koe p{
    padding-left: 5%;
}
.qa{
    display: flex;
    padding-left: 5%;
}
.qa img{
    width: 20%;
    height: auto;
    padding-left: 5%;
    border-left: rgb(250, 209, 148) 1px solid;
}
.qa h3{
    padding-left: 3%;
}
@media(max-width: 720px){
    .ktitle{
        font-size: 20px;
    }
    .koeqa{
        display: block;
    }
    .koe h2{
        font-size: 17px;
    }
    .qa{
    display: flex;
    padding-left: 0%;
    }
.qa img{
    width: 20%;
    height: 20%;
    padding-left: 0%;
    border-left: none;
    }
.qa h3{
    padding-left: 3%;
    font-size: 13px;
    }    
}
/*ryoukin*/
.rtitle{
    background: linear-gradient(blanchedalmond, white);
}
.ryoukin{
    display: flex;
}
.yoyaku{
    display: flex;
    padding-left: 5%;
}
.yoyaku img{
    width: 20%;
    height: auto;
    padding-left: 5%;
    border-left: rgb(250, 209, 148) 1px solid;
}
.yoyaku h3{
    padding-left: 3%;
}
@media(max-width: 720px){
    .rtitle{
    font-size: 20px;
    }
.ryoukin{
    display: block;
    }
    .menu h2{
        font-size: 17px;
    }
.yoyaku{
    display: flex;
    padding-left: 5%;
    }
.yoyaku img{
    width: 30%;
    height: auto;
    padding-left: 0%;
    border-left: none;
    }
.yoyaku h3{
    padding-left: 3%;
    font-size: 17px;
    }    
}
/*footer*/
footer{
    clear: left; 
    background-color: chocolate;
    padding: 40px;
}
footer ul{
    list-style-type: none;
    margin: 0 0 5px;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

footer ul li{
    margin: 0 0 0 0px;
}
footer ul li a,
footer ul li a:link,
footer ul li a visited{
    text-decoration: none;
    font-size: 13px;
    font-family: serif;
    color: black;
    background: chocolate;
}