@charset "UTF-8";

/* CSS Document */
/*メインビジュアル部分*/
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }
.main-visual-content {
    position: relative;
}

.main-visual-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(206, 193, 181, 0.4);
    width: 35vw;
    height: 115%;
    z-index: -1;
}

.main-photo {
    display: inline-block;
    margin-top: 80px;
    width: 100%;
    object-fit: cover;
    height: 190px
}

.background-beige {
    width: 90%;
    margin-left: 10%;
    position: relative;
}

.background-beige h2 {
    position: absolute;
    left: -15px;
    bottom: 70px;
    font-size: 1rem;
    font-weight: 500;
}

.title_about {
    font-size: 2.6rem;
    letter-spacing: 0.09em;
    font-family: "Lora";
    font-weight: 600;
    display: inline-block;
    margin-bottom: -20px;
}
.i {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    font-weight: 500;
}
@media(min-width:750px){
    .main-photo{
        height:auto;
    }
    /*タイトルaboutの文字の部分この３項目*/
    .background-beige h2{
        font-size: 1.2rem;
    }
    .i{
        font-size: 1.4rem;
    }
    .title_about{
        font-size:3.2rem
    }
    .background-beige h2{
        bottom:110px;
    }
}
@media(min-width:960px){
    .background-beige h2{
        bottom:135px;
    }
    .main-photo{
        margin-top:100px;
    }
}

@media(min-width:1160px){
    .background-beige h2{
        font-size: 1.6rem;
        bottom:155px;
    }
    .i{
        font-size: 1.8rem;
    }
    .title_about{
        font-size:5rem;
        font-weight: 500;
    } 
}


/*メイン*/
.about_top {
    max-width: 327px;
    margin: 100px auto 0;
}

.about_top .shop {
    max-width: 250px;
    height: auto;
}
/*擬似要素はimgなど閉じタグないものには効かない
display:inline-blockやheightの表示いる*/
.about-photo-content::after{
    content:"";
    position:absolute;
    bottom:-60px;
    right:0;
    background-image: url(../img/about/mini-about.png);
    background-size: cover;
    width:140px;
    height:155px;
    display: inline-block;
}
.about-photo-content::before{
    content:"";
    position:absolute;
    bottom:-67px;
    right:-7px;
    background-image: url(../img/asirai.png);
    background-size: cover;
    z-index: 1;
    width:40px;
    height:23px;
    display: inline-block;
    
}

.about-photo-content {
    position:relative;
}

.about_description .comment {
    transform: rotate(-5deg);
    display: inline-block;
    margin-bottom: -10px;
}

.sub-comment {
    position: absolute;
    font-size: 1rem;
    top: -15px;
    left: 8px;
    transform: rotate(-22deg);
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.about_top h2 {
    font-weight: 600;
    border-bottom: dotted 1.5px #3D3D3D;
    margin: 10px 0 30px;
}

.about_description {
    margin-top: 80px;
    display: inline-block;
}

.description-inner {
    position: relative;
}
@media(min-width:750px){
   
    .about_top{
        max-width: 700px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        margin-top:150px;
    }
    .description-inner{
        max-width: 320px;
    }
    .about_top .shop{
        display: inline-block;
        margin-right:56px;
    }
    .about-photo-content{
        text-align: 0;
        display: inline-block;
    }
    .about-photo-content::after{
        bottom:-30px;
        right:0;
    }
    .about-photo-content::before{
        bottom:-35px;
    }
    .about_description{
        margin-top:0;
    }
}

@media(min-width:1200px){
    .about_top{
        max-width: 1100px;
    }
    .about_top .shop{
        max-width: 450px;
        margin-right:80px;
    }
    .about-photo-content::after{
        width: 230px;
        height:260px;
        bottom:-80px;
        right:-1px;
    }
    .about-photo-content::before{
        height:35px;
        bottom:-88px;
        right:-10px;
    }
    .about_top h2{
        font-size: 2.2rem;
        padding-bottom: 10px;
    }
    .description-inner{
        max-width: 490px;
        padding-top:60px;
    }
    .comment{
        margin-left: 310px;
    }
    .sub-comment{
        display: inline-block;
        font-size: 1.4rem;
        transform: rotate(14deg);
        top:44px;
        right:-310px;
    }
    .about_description .comment{
        transform: rotate(26deg);
        width: 170px;
    }
    .about_description .salon-description{
        line-height: 2.1;
    }
}


/*and iの意味*/
.i_mean {
    background-color: rgba(206, 193, 181, 0.4);
    position: relative;
    margin: 100px auto 0;
    width: 100%;
}

.i_mean::before,
.i_mean::after {
    width: calc(100% - 20px);
    height: 0;
    display: block;
    position: absolute;
    left: 0;
    content: "";
}

.i_mean::before {
    border-bottom: solid 20px rgba(206, 193, 181, 0.4);
    border-right: solid 20px transparent;
    bottom: 100%;
}

.i_mean::after {
    border-top: solid 20px rgba(206, 193, 181, 0.4);
    border-left: solid 20px transparent;
    top: 100%;
}

.mean-wrap {
    max-width: 327px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
    position:relative;
}
.mean-wrap::before{
    content:"";
    position:absolute;
    top:130px;
    left:70px;
    background-image: url(../img/about/i_namephoto.png);
    background-size: cover;
    width:200px;
    height:190px;
    display: inline-block;
}

.mean_logo {
    width: 70px;
    height: auto;
}

.i_mean h2 span {
    display: inline-block;
    padding-bottom: 17px;
}

.i_mean h2 {
    margin-bottom: 40px;
}

.mean_description {
    text-align: left;
    margin-top: 250px;
}
@media(min-width:750px){
    .i_mean{
        max-width: 700px;
        margin:160px auto 0;
        display: block;
        position:relative;
    }
    .i_mean::before{
        border-right: 0;
        border-left: solid 20px transparent;
    }
    .i_mean::after{
        border-top:0;
    }

    .i_mean h2{
        text-align: left;
        padding-left: 252px;
        margin-bottom: 30px;
    }
    .i_mean h2 span{
        font-size: 1.8rem;
        padding-bottom: 14px
    }
    .mean-wrap{
        position: relative;
        max-width: 600px;
    }
    .mean-wrap::before{
        content:"";
        position:absolute;
        top:90px;
        left:0;
        background-image: url(../img/about/i_namephoto.png);
        background-size: cover;
        width:200px;
        height:200px;
        display: inline-block;
    }
    .mean-wrap::after{
        content:"";
        position:absolute;
        bottom:-12px;
        right:-60px;
        background-image: url(../img/asirai.png);
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 2;
        width: 50px;
        height: 55px;
        display: inline-block;
    }
    .mean_description{
        margin:10px 0 0 auto;
        width: 350px;
        margin-bottom: 30px;
    }
}

@media(min-width:1200px){
    .i_mean{
        max-width: 1100px;
        margin:220px auto 0;
        padding-bottom:120px;
    }
    .i_mean::before{
        width: calc(100% - 40px);
        border-bottom:solid 40px rgba(206, 193, 181, 0.4);
        border-left: solid 40px transparent;
    }

    .i_mean h2{
        padding: 90px 0 0 382px;
    }
    .mean-wrap::after{
        bottom:-132px;
        right:-110px;
    }
    .mean-wrap::before{
        width: 270px;
        height:290px;
        top:57px;
    }
    .mean-wrap{
        max-width: 900px;
        padding:0;
    }
    .mean_description{
        width: 520px;
        margin: 0 0 0 auto;
        
    }
}


/*ストレートパーマ*/

.straight-title-wrap h2 {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.straight-title-wrap {
    text-align: center;
    position: relative;
    max-width: 327px;
    margin: 0 auto;
}

.st-comment {
    position: absolute;
    top: -65px;
    right: -10px;
}

.st-comment img {
    max-width: 146px;
    transform: rotate(-5deg);
}

.mini-comment {
    font-size: 1.2rem;
    position: absolute;
    top: 7px;
    right: 14px;
    transform: rotate(15deg);
}

.mini-comment span {
    font-size: 1.4rem;
    font-family: 'Lora';
    letter-spacing: 0.02em;
}
.straight-photo-box {
    display: flex;
    justify-content: space-between;
    max-width: 375px;
    margin: 50px auto 0;
}
.straight-photo-box p{
    text-align: center;
    letter-spacing: 0.07em;
}
.st-before_inner {
    max-width: 140px;
}
.st-before_inner p{
    font-size: 1.8rem;
    font-family: "Lora";
    letter-spacing: 0.06em;
}
.st-after_inner {
    max-width: 220px;
    margin-top:40px;
    position: relative;
}
.st-after_inner p{
    font-size: 2rem;
    font-family: "Lora";
    letter-spacing: 0.06em;
}

.st-after_inner::before {
    content: "";
    background-image: url(../img/straight/yajirushi.png);
    position: absolute;
    top: 155px;
    left: -70px;
    width: 55px;
    height: 48px;
    display: inline-block;
    background-size: cover;
    z-index: 1;
}
.straight-perm h3{
    font-size: 2.6rem;
    letter-spacing: 0.03em;
    color:#CEC1B5;
    font-weight: 500;
    line-height: 1.6;
    margin:30px 0;
}
.straight-perm{
    margin-bottom:100px;
    padding-top:150px;
}
.perm-description{
    max-width: 327px;
    margin: 0 auto;
}
.perm-description p{
    font-size: 1.5rem;
}
.st-perm_description2{
    margin-top:50px;
}
.st-linewrap .st1{
    font-weight: 600;
    border-bottom: dotted 2px #CEC1B5;
    display: inline-block;
    margin-top:10px;
}
.st-linewrap .st2{
    border-bottom: dotted 2px #CEC1B5;
    font-weight: 600;
    margin:5px 0 10px;
    display: inline-block;
}

@media(min-width:760px){
    .perm-description{
        max-width: 375px;
    } 
}
@media(min-width:960px){
    .straight-perm{
        max-width: 900px;
        margin:0 auto 160px;
        padding-top:190px;
    }
    .st-comment{
    right:-30px;
    top:-60px;
    }
    .straight-title-wrap{
        max-width: 370px;
    }
    .straight-title-wrap h2{
        font-size: 3rem;
    }
  
    .st-linewrap .st1{
        margin-right:60px;
    }

    .st-before_inner p{
        font-size: 2rem;
        font-family: "Lora";
        letter-spacing: 0.06em;
    }
    
    .st-after_inner p{
        font-size: 2.4rem;
        font-family: "Lora";
        letter-spacing: 0.06em;
        margin-left:20px;
    }
    .st-after_inner::before{
        width:60px;
        height:58px;
        top:210px;
        left:-85px;
    }
    .st-after_inner{
        margin-top:0;
        max-width: 240px;
    }
/*ここからやり直しの分*/
    .perm-description{
        margin:0;
        max-width:420px;
    }
    .st_1content,.st_2content{
        display: flex;
        justify-content: space-between;
    }
    .st_1content,.st_2content{
        margin-top:70px;
    }
    .st_2content{
    flex-direction: row-reverse;
    }
    .straight-photo-box{
        max-width:460px;
        justify-content: space-between;
        margin:0;
        gap:20px;
    }
    .straight-perm h3{
        margin:0 0 20px 0;
    }
    .st-perm_description2{
        margin-top:0;
    }
}

@media(min-width:1200px){
    .st-after_inner{
        max-width:350px;
    }
    .st-after_inner::before{
        top:260px;
    }
    .st-before_inner{
        max-width: 190px;
    }
    
    /*ここまでがやり直したぶん*/
    .straight-perm{
        max-width: 1100px;
        margin:0 auto 160px;
        padding-top:210px;
    }
    .straight-title-wrap{
        margin-bottom:100px;
        max-width:420px;
    }
    .straight-title-wrap h2{
        font-size: 3rem;
    }
    .st-comment img {
        max-width: 200px;
    }
    .st-comment{
        right:-50px;
        top:-80px;
    }
    .st_1content,.st_2content{
        display: flex;
    }
    .st_2content{
        flex-direction: row-reverse;
        margin-top:90px;
    }
    
    .straight-photo-box{
        max-width: 550px;
        margin-top:0;
    }
    .perm-description p{
        display: block;
    }
    .perm-description{
        max-width: 460px;
    }
    .straight-perm h3{
        margin:0 0 30px;
    }
    .st-perm_description2{
        margin-top:0;
    }
    .st-linewrap .st1{
        margin-right:90px;
    }
  
    .mini-comment{
        font-size: 1.6rem;
        top:10px;
        right:23px;
    }
    .mini-comment span{
        font-size: 1.8rem;
    }
}


/*ヴィラロドラ*/
.villalodola{
    background-color: #3D3D3D;
    color:#fff;
    padding:130px 0 70px;
}
.villalodola-inner{
    max-width: 327px;
    margin:0 auto ;
}

.villa-photo-wrap::before{
    content:"";
    background-image: url(../img/villalodola/Villa\ Lodola.png);
    width: 275px;
    height:90px;
    position:absolute;
    top:-70px;
    left:20px;
    z-index: 1;
    background-size : cover;
    display: block;
}
.villa-photo-wrap{
    position: relative;
}
.main-villa{
    max-width: 240px;
}

.sub-villa{
    max-width: 130px;
    display: inline-block;
    margin:0 0 -100px -80px;
}
.villa-title{
    margin-top:125px;
    color:#CEC1B5;
}
.villa-title::before{
    content:"";
    width: 15px;
    height:15px;
    border-radius: 50%;
    display: inline-block;
    background-color: #CEC1B5;
    margin-right:5px;
}

.villalodola h2 span{
    font-size: 2.2rem;
}
.villalodola h2{
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: dotted 1px #fff;
    margin-bottom:20px;
    font-size:1.5rem;
    letter-spacing: 0.02em;
}
.villalodola h4{
    font-size: 2rem;
    margin:30px 0;
}
.villalodola p{
    font-size: 1.5rem;
    line-height: 2.1;
}
.villalodola .villa-title{
    font-size: 1.4rem;
    font-family: 'Noto Serif JP';
    letter-spacing: 0.02em;
}

@media(min-width:750px){
    .villalodola-inner{
        max-width: 700px;
    }
    .villa-photo-wrap{
        margin-top:30px;
        text-align: center;
    }
  
    .villa-photo-wrap::before{
        top:-80px;
        left:100px;
        width:300px;
        height:140px;
    }
    .villalodola-description{
        max-width: 375px;
        margin:100px auto 0;
    }
    .villa-title{
        margin-top:0;
    }
    .villalodola h2 span{
        font-size: 2.4rem;
    }
    .sub-villa{
        margin: 0 0px -50px -30px;
        max-width: 135px;
    }
    .villalodola h4{
        font-size: 2.2rem;
        margin:32px 0;
    }
}
@media(min-width:1100px){
    .villalodola{
        padding-bottom:130px;
    }
    .villalodola-inner{
        max-width: 1000px; 
        display: flex;
        justify-content: space-between;
        margin-top:50px;
    }
    .main-villa{
        max-width: 370px;
    }
    .sub-villa{
        max-width: 220px;
        display: inline-block;
        margin:0 0 -150px -120px;    
    }
    .villa-photo-wrap{
        text-align: right;
        margin-top:0;
    }
    .villalodola-inner{
        max-width: 1000px;
    }
    .villalodola-description{
        max-width: 460px;
        margin:0;
    }
    .villa-photo-wrap::before{
        top:-115px;
        left:0;
        width: 400px;
        height:190px;
    }
    .villalodola h2 span{
        font-size: 3rem;
    }
}

/*プロフィール*/
.owner-profile{
    background-color: rgba(206, 193, 181, 0.4);
    margin:190px 0 100px;
    padding-bottom: 50px;
}
.profile-photo{
    text-align: center;

}
.profile-photo img{
    max-width: 240px;
    height:auto;
    object-fit: cover;
    display: inline-block;
    margin-top:-90px;
}
.owner-profile h4{
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 35px;
}
.owner{
    font-size: 1rem;
    font-family: 'Noto Serif JP';
    margin:35px 0 -5px;
    text-align: center;
}
.owner_text{
    display: inline-block;
    padding-left:5px;
}
.name_i{
    padding-left:15px;
}
.profile_description{
    max-width: 327px;
    margin:0 auto;
}

@media(min-width:750px){
    .owner-profile{
        margin-top:210px;
        margin-bottom: 150px;
    }
    .profile-photo img{
        max-width: 290px;
    }
    .owner-profile h4{
        margin-bottom:40px;
    }
    .owner{
        margin-top:40px;
    }
    .profile_description{
        max-width:700px;
    }
}
@media(min-width:1100px){
    .profile-wrap{
        max-width: 1000px;
        margin:0 auto;
        display: flex;
        justify-content: space-between;
    }
    .owner{
        text-align: left;
        margin-top:60px;
    }
    .owner-profile h4{
        text-align: left;
        margin-bottom: 30px;
    }
    .owner-profile{
        padding-bottom:70px;
        margin:220px 0 160px;
    }
    .owner_text {
        margin-left: 0;
    }
    .profile-content-wrap{
        max-width: 580px;
    }
    .profile-photo img {
        max-width: 360px;
    }
}  

/*access*/
/*accessのみpcから書いてる*/
.access {
    max-width: 1100px;
    margin: 0 auto 170px;
}

.access h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size:4rem;
    letter-spacing: 0.09em;
    line-height: 0.8;
}
.access h2 span{
    font-family: 'Noto Serif JP';
    font-weight: 500;
    font-size: 1.6rem;
}
.access_map{
    height:500px;
}
.googlemap {
    width: 100%;
    max-height: 100%;
}

.access p {
    text-align: center;
}

.map-address {
    font-size: 2.2rem;
    margin: 40px 0 30px;
}

.access p span {
    border-bottom: solid 1px #3D3D3D;
    font-weight: 600;
}
@media(max-width:750px){
    .access h2{
        font-size: 2.6rem;
    }
    .access h2 span{
        font-size: 1.2rem;
    }
    .access_map{
        height:450px;
    }
}

@media(max-width:600px) {
    .access h2 {
        margin-bottom: 50px;
    }

    .map-address {
        font-size: 1.8rem;
        margin: 40px 0 30px;
    }

    .access {
        margin-bottom: 130px;
    }
    .access_map{
        height:380px;
    }

    .access-description {
        max-width: 327px;
        margin: 0 auto;
    }

    .access-description p {
        text-align: left;
    }

    .access .map-address {
        text-align: center;
    }
}
@media(max-width:414px){
    .googlemap{
        max-width: 327px;
        max-height: 400px;
    }
    .access_map{
        text-align: center;
        height:380px;
    }
}