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

    /** ーーーーーーーーーーーーーーーー  スマホ用CSS  ーーーーーーーーーーーーーーーー **/

    .pc {
        display: none;
    }


    img{
    max-width: 100%;
    height: auto;
    width /***/:auto;
    }

    body {
    background-color:#F0E8DC ;   
    color:#4A5644;
    font-family: sans-serif ;
    width:100%;
    }
    
    header {
        display: flex; /* 配下の要素を縦並びではなく横並びにする */
        width: 100%;
        height: 70px;
        background-color: #F0E8DC;
        color: #4A5644;
        position: fixed;
        z-index: 99;
    }


     .fa-line{
        font-size: 33px;
        padding-top: 19px;
        color: #76896C;
    }


   header .line{
        margin: 0 23px 0 auto;    
    }



   .fa-instagram{
        font-size: 40px;
        padding-top: 15px;
        color: #76896C;
    }



   header .insta{
        margin: 0 75px 0 0;    
    }



/** グローバルナビ **/
    .nav-logo {
        padding-top: 1px;
    }


    .nav-logo img{
        width:70px;
        height:70px;
    }

    .sns-logo {
    display: flex; /* 配下の要素を縦並びではなく横並びにする */
    font-size: 40px;
    margin: auto 0 auto 0;
    }


/* ーーーーーーーーーーーーーーーーハンバーガー用の記述 ーーーーーーーーーーーーーーーーーーーーー*/

.menu-btn {
    position: fixed;
    top: 5px;
    right: 8px;
    display: flex; /* 配下の要素を縦並びではなく横並びにする */
    height: 60px;
    width: 60px;
    justify-content: center; /* flexの時に左右中央寄せ */
    align-items: center; /* flexの時に上下中央寄せ */
    background-color: #F0E8DC;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {


    content: '';
    display: block;
    height: 3px;
    width: 30px;
    background-color: #76896C;
    position: absolute;
    transition: 0.3s;
}
.menu-btn span:before {
    bottom: 10px;
    transition: 0.5s;
}
.menu-btn span:after {
    top: 10px;
    transition: 0.5s;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

.globalnavi {
    width: 100%;
    display: inline-block;
    text-align: center;
    background-color: #F0E8DC;
    margin-top: 70px;
    color: #4A5644;
    font-size: 20px;
    position: absolute;
    left: 100%;
    transition: 0.5s;
    z-index: 90;
}

#menu-btn-check:checked ~ .globalnavi {
    left: 0;/*メニューを画面内へ*/
}

.globalnavi ul li {
    width: 100%;
    height: 70px;
    padding-top: 25px;
    border-bottom: solid #a8a8a8;
}

.globalnavi ul li:nth-child(4) {
    width: 100%;
    height: 70px;
    padding-top: 25px;
    border-bottom: none;
}

/* ーーーーーーーーーーーーーーーーハンバーガー用の記述 ーーーーーーーーーーーーーーーーーーーーー*/


/** コンセプトワードとイメージ **/
    .content-concept {
        padding-top: 100px;
        width: 100%;
        text-align: center;
        font-size: 23px;
        font-family: sans-serif;
        color: #76896C;
    }

    .content-concept p{
        padding-top: 15px;
        letter-spacing: 2px;
        font-weight: 300;
        opacity: 0;
        transition: opacity 3s;
    }

    .content-concept img{
        width: 100%;
        aspect-ratio: 3/2;
        padding-top: 50px;
        opacity: 0;
        transition: opacity 5s;
        z-index: 999;
    }
    
    .content-concept p.view {
        opacity: 1;
    }

    .content-concept img.view {
        opacity: 1;
    }


/** ニュース **/

.content-news{
        width: 100%;
        display: inline-block;
        padding-top: 50px;
    }

    .content-news .news{
        font-size: 30px;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: solid 1px;
        border-color: #4A5644;
        text-align: center;
    }

    .eachnews .title{
        text-align: left;
        width: 100%;
        font-size: 17px;
        padding-top: 8px;
        padding-left: 15px;
        padding-bottom: 5px;
    }

    .eachnews .date{
        text-align: right;
        font-size: 14px;
        width: 100%;
        padding-right: 15px;
        padding-bottom: 8px;
        border-bottom: solid 1px;
        border-color: #4A5644;
    }

/** 治療処ふについて **/

    .content-aboutus {
        width: 100%;
    }

    .content-aboutus h1{
        display: inline-block;
        font-size: 28px;
        text-align: left;
        padding-top: 80px;
        padding-left: 10px;
        padding-bottom: 8px;
        border-bottom: solid 1px;
        border-color: #4A5644;

    }

    .content-aboutus .sentence{
        display: inline-block;
        font-size: 18px;
        text-align: left;
        padding-left: 15px;
        padding-Right: 15px;
        letter-spacing: 1.7px;
        line-height: 26px;
    }

    .content-aboutus .sentence p{
        height: auto;
        }

    .content-aboutus img{
        width: 100%;
        aspect-ratio: 4/3.2;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .button {
        display: inline-block;
        text-align: center;
        background-color:#76896C;
        color: white;
        width:280px;
        font-size: 20px;
        margin-top: 25px;
        height: 40px;
        padding-top: 8px;
        border-radius: 4px;
        letter-spacing: 0.5px;
    }
    
    .button2 {
        display: inline-block;
        text-align: center;
        color: #76896C;
        width:280px;
        font-size: 15px;
        margin-top: 5px;
        height: 40px;
        padding-top: 8px;
        border-radius: 4px;
        letter-spacing: 0.5px;
    }

    .content-aboutus a{
        text-align: center;
    }

    .content-button {
        width: 100%;
        text-align: center;
    }



/** 施術内容 **/


    .content-service {
        width: 100%;
    }

    .content-service h1{
        display: inline-block;
        font-size: 28px;
        text-align: left;
        padding-top: 30px;
        padding-left: 10px;
        padding-bottom: 8px;
        border-bottom: solid 1px;
        border-color: #4A5644;

    }

    .content-service .sentence{
        display: inline-block;
        font-size: 18px;
        text-align: left;
        padding-left: 15px;
        padding-Right: 15px;
        letter-spacing: 1.7px;
        line-height: 26px;
    }

    .content-service .sentence p{
        height: auto;
        }

    .content-service img{
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
/** 「手当て」について **/


    .content-aboutteate {
        width: 100%;
    }

    .content-aboutteate h1{
        display: inline-block;
        font-size: 28px;
        text-align: left;
        padding-top: 80px;
        padding-left: 10px;
        padding-bottom: 8px;
        border-bottom: solid 1px;
        border-color: #4A5644;

    }

    .content-aboutteate .sentence{
        display: inline-block;
        font-size: 18px;
        text-align: left;
        padding-left: 15px;
        padding-Right: 15px;
        letter-spacing: 1.7px;
        line-height: 26px;
    }

    .content-aboutteate .sentence p{
        height: auto;
        }

    .content-aboutteate img{
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

 
/** 施術事例 **/


.content-case-title{
    width: 100%;
    display: inline-block;
    padding-top: 50px;
    text-align: center;
}

.content-case-title .title{
    font-size: 30px;
    display: inline-block;
    padding-top: 50px;
    padding-bottom: 30px;
}

.content-case {
    width: 95%;
    background-color: white;
    margin-left: 2.5%;
    margin-right: auto;
}

.content-case h2{
    font-size: 20px;
    text-align: left;
}

.content-case p{
    font-size: 15px;
    text-align: left;
    padding-left: 2.5%;
}

.content-case img{
    width: 100%;
    aspect-ratio: 4/2.8;
}

/** ご挨拶・ご予約 **/

.content-contact-title{
    width: 100%;
    display: inline-block;
    padding-top: 50px;
    text-align: center;
}

.content-contact-title .title{
    font-size: 30px;
    display: inline-block;
    padding-bottom: 30px;
}

.content-contact-card img{
    width: 200px;
    aspect-ratio: 1/1;
    margin-right: 2.5%;
}

.float_l {
    float: left;
}

.content-contact-card {
    padding-left: 2.5%;
    margin-bottom: 10px;
    height: 210px;
    width: 100%;
}

.content-contact-card .sentence{
    font-size: 13px ;
}


.content-contact-card p{
    margin-left: 20%;
}

.content-contact {
    text-align: center;
    margin-bottom: 50px;
}

/** フッター **/

footer {
    display: inline-block;
    width: 100%;
    height: auto;
    background-color: #76896C;
    color: white;
    margin-top: 30px;
}

.footer-logo {
    font-size: 25px;
    margin-top: 5%;
    margin-left: 5%;
}

.footer-list {
    font-size: 15px;
    margin-top: 2%;
    margin-left: 10%;
}

.footer-list li{
    margin-top: 4px;
}

.footer-end {
    padding-top: 6px;
    font-size: 8px;
    text-align: center;
    padding-bottom: 6px;
}

/** フワッと表示 **/

.fv {
    animation-name: fade;
    animation-duration: 10s;
    animation-iteration-count: 1;
    z-index:0;
}


}

/** フワッと表示 **/

@keyframes fade{
    0%{
      opacity: 0;
    }
    100%{
      opacity: 1;
    }
}


    /** ーーーーーーーーーーーーーーーー  PC用CSS  ーーーーーーーーーーーーーーーー **/


  @media screen and (min-width: 671px) {

    .sp{
        display: none;
    }

    body {
        background-color: #F0E8DC;
        color:#4A5644;
        font-family: sans-serif ;
        width: 100%;
        }    


/* ナビゲーション */

    header {
        width: 100%;
        background-color: #F0E8DC;
        height: 70px;
        text-align: right;
        z-index: 90;
        position: fixed;
    }

    .nav-logo{
        font-size: 20px;
        color: white;
        display: inline-block;
        float: left;
    }


    .globalnavi ul{
        display: flex;
        text-align: center;
    }


    .globalnavi li{
        margin-left: 50px;
        margin-top: 25px;
        list-style: none;
    }


    .nav-logo img{
        width:70px;
        height:70px;
    }


    .menu{
        display: inline-block;
        margin: 0 40 0 auto;
        margin-top: 25px;
   }


    .menu li{
        color: white;
        display: inline-block;
        font-size: 20px;
        width: auto;
        margin-right: 30px;
    }

    .pc img{
        width: 100%;
    }



/* コンセプト */

    .content-concept{
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        text-align: center;
        color: #76896C;
        font-family: sans-serif;
    }

    .content-concept p{
        font-size: 35px;
        display: inline-block;
        text-align: center;
        letter-spacing: 2.0px;
        margin-top: 100px;
        height: 45px;
        opacity: 0;
        transition: 3s;
    }

    .content-concept img{
        opacity: 0;
        transition: 3s;
        width: 50%;
        min-width: 600px;
        aspect-ratio: 3/2;
        margin-top: 100px;
    }

    .content-concept p.view {
        font-size: 35px;
        display: inline-block;
        text-align: center;
        letter-spacing: 2.0px;
        margin-top: 75px;
        height: 45px;
        opacity: 1;
    }

    .content-concept img.view {
        opacity: 1;
        width: 50%;
        min-width: 600px;
        aspect-ratio: 3/2;
        margin-top: 100px;
    }


/* ニュース */

    .content-news{
        margin-top: 100px;
        width: 80%;
        margin-left: 10%;
        margin-right: auto;
    }

    .news {
        text-align: center;
        font-size: 50px;
        border-bottom: solid 1px;
        border-color: #4A5644;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }


    .eachnews {
        width: 70%;
        margin-left: 15%;
        border-bottom: solid 1px;
        border-color: #4A5644;
    }

    .eachnews .title{
        font-size: 20px;
        letter-spacing: 1.7px;
        margin-top: 30px;
        margin-left: 3%;
    }
    
    .eachnews .date{
        font-size: 15px;
        text-align: left;
        margin-top: 5px;
        margin-bottom: 10px;
        margin-left: 5%;
    }
    
/* 治療処ふについて */


    .content-aboutus {
        margin-top: 150px;
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        text-align: center;
    }

    .content-aboutus h1{
        font-size: 50px;
    }

    .content-aboutus img{
        width: 50%;
        min-width: 600px;
    }

    .content-aboutus .sentence{
        font-size: 25px;
        letter-spacing: 2px;
        margin-top: 50px;
    }

    .content-aboutus .sentence p{
        margin-top: 5px;
    }

    .content-button{
        text-align: center;
    }

    .button {
        display: inline-block;
        background-color: #4A5644;
        width: 400px;
        height: 50px;
        font-size: 25px;
        color: white;
        border-radius: 10px;
        text-align: center;
        padding-top: 11px;
        margin-top: 25px;
    }

/* 「手当て」について */

.content-aboutteate {
    margin-top: 50px;
    width: 80%;
    margin-left: 10%;
    margin-right: auto;
    text-align: center;
}

.content-aboutteate h1{
    font-size: 50px;
}

.content-aboutteate img{
    width: 50%;
    min-width: 600px;
}

.content-aboutteate .sentence{
    font-size: 25px;
    letter-spacing: 2px;
    margin-top: 50px;
    line-height: 26px;
}

.content-aboutteate .sentence p{
    margin-top: 5px;
}

/* 施術事例 */

.content-case-title {
    font-size: 50px;
    text-align: center;
    margin-top: 150px;
}

.content-case {
    margin-top: 30px;
    width: 40%;
    min-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: white;
}

.content-case img{
    width: 100%;
    margin-bottom: 10px;
}

.case-card {
    text-align: left;
}

.card-title {
    font-size: 20px;
}

.card-text{
    margin-left: 10px;
}

/* ご予約・ご連絡 */

.content-contact-title {
    font-size: 50px;
    text-align: center;
    margin-top: 150px;
}

.content-contact-card {
    width: 50%;
    float: left;
    text-align: left;
    margin-left: 20%;
    margin-top: 50px;
}

.content-contact-card img{
    width: 200px;
    height: auto;
    display: block;
    margin-left: 10%;
}

.content-contact-card .sentence{
    width: 60%;
    margin-left: 40%;
    margin-top: 20px;
}

.content-contact p{
    display: block;
    height: 30px;
}

.float_l{
    float: left;
}

.content-contact {
    text-align: center;
    margin-bottom: 50px;
}

.lastimage {
    width: 60%;
    margin-left: 20%;
    margin-right: auto;
}

.lastimage img{
    display: block;
    width: 100%;
}

/** フッター **/

footer {
    display: inline-block;
    width: 100%;
    height: auto;
    background-color: #76896C;
    color: white;
    margin-top: 30px;
}

.footer-logo {
    font-size: 25px;
    margin-top: 2%;
    margin-left: 5%;
}

.footer-list {
    font-size: 15px;
    margin-top: 2%;
    margin-left: 10%;
}

.footer-list li{
    margin-top: 4px;
    height: 25px;
}

.footer-end {
    padding-top: 15px;
    font-size: 12px;
    text-align: center;
    padding-bottom: 10px;
}



}