/*common ------------------------------- */
html {
    font-size: 100%;
}

body {
    color: #555;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

:root {
    --white: #fff;
    --gray: #333;
    --lgray: rgb(167, 167, 167);
    --pink: #E6D5D1;
    --lpink: #f5eeec;
}

h2,
h4 {
    padding-top: 1rem;
}

h3,
h5 {
    padding-top: 6rem;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: .8rem 
}

p {
    padding: 3rem 1rem;
    line-height: 1.7rem;
    letter-spacing: .1em;
}

.price {
    font-size: .8rem;
    line-height: 1rem;
}

.pricetitle {
    font-weight: 400;
}
.comment{
    font-size: .5rem;
}

/*layout ------------------------------- */

section {
    padding-top: 5rem;
}

.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

image {
    width: 100%;
}

.title {
    width: 80%;
    padding-left: 3rem;
    padding-right: 3rem;
}

.title2 {
    width: 50%;
    padding-bottom: 1rem;
}

.title3 {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
}

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

.u_nav a{
    letter-spacing: .5rem;
    position: relative;
    color: var(--white);
    transition: 1s;
}

.u_nav a:hover{
    color: var(--pink);
  }


/* btn ---------------------------------- */

.btn {
    padding: 0 0 3rem 0;
}

.btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 1em 2em;
    width: 200px;
    color: var(--white);
    background-color: var(--lgray);
    transition: 0.3s;
}

.btn a::before {
    content: '';
    position: absolute;
    bottom: -7px;
    right: -7px;
    width: 100%;
    height: 2px;
    background-color: var(--pink);
    transition: 0.2s ease 0s;
}

.btn a::after {
    content: '';
    position: absolute;
    top: 7px;
    right: -7px;
    width: 2px;
    height: 100%;
    background-color: var(--pink);
    transition: 0.2s ease 0.2s;
}

.btn a:hover::before {
    width: 0%;
}

.btn a:hover::after {
    height: 0%;
}

.btn a:hover {
    text-decoration: none;
    background-color: var(--pink);
}

/*header ------------------------------- *

/* header .wrapper{
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

/*hero ------------------------------- */

h1 {
    /* font-family: 'Oswald', sans-serif;
    letter-spacing: .3rem;
    color: var(--white);
    font-size: 3rem; */

    display: inline-block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
}

/*  */
h1 image {
    display: block;
    width: 200px;
    text-align: center;
}

.hero {
    width: 100%;
    height: 90vh;
    position: relative;
}

.hero:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    /*背景画像設定*/
    background: url("./image/IMG_6382.png") no-repeat center;
    filter: brightness(0.5);
    background-size: cover;
}

.container {
    position: relative;
    z-index: 1;
    background: var(--white);
    text-align: center;
}


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

    .hero,
    .hero:before {
        height: 100vh;
    }

    h1 img {
        width: 100%;
    }

}

/* content------------------------------- */

.content {
    margin: 2rem auto;
}

.salon {
    padding-bottom: 3rem;
    background: var(--lpink);
}

.photo img {
    width: 100%;
}

.icon img{
    width: 70%;
    margin-bottom: 2rem;
}
/* access------------------------------- */

.access {
    text-align: center;
}

.address {
    padding: 1rem;
}



/*footer ------------------------------- */

footer {
    text-align: center;
    background: var(--lgray);
    flex: 1;
}

footer p {
    padding-top: 0;
    padding-bottom: 5rem;
    color: var(--white);
}

footer p a {
    border-bottom: 2px solid var(--white);
    transition: 1s;
}

footer p a:hover {
    color: var(--pink);
    border-bottom: 2px solid var(--pink);
}

.copy {
    padding-bottom: 0;
}

.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    filter: grayscale(70%);
    -webkit-filter: grayscale(70%)
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}


/*service ------------------------------- */

.rate img {
    margin: 2rem auto;
    max-width: 1000px;
    width: 80%;
    text-align-last: left;
}

/*nav ------------------------------- */
.nav ul li {
    float: left;
    width: 200px;
    /* height: 50px; */
}

.nav ul {
    list-style-type: none;
}

.nav a {
    color: var(--white);
    font-weight: 600;
    display: block;
    padding: 10%;
}

.nav {
    position: fixed;
    width: 100%;
    background-color: var(--gray);
    height: 50px;
    transition: 1s;
}

.nav :hover {
    color: var(--pink);
}

/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */

/*mobile ------------------------------- */
@media (min-width:768px) {

    h2,
    h3,
    h4 {
        padding-top: 2rem;
    }

    p {
        padding: 2rem 5rem;
    }

    .item {
        padding-top: 0;
    }

    /* wrapper  */

    .wrapper {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .flex-reverse {
        flex-direction: row-reverse;
    }


    /* layout */

    .title {
        width: 60%;
    }

    .title2 {
        width: 280px;
    }

    /*access ------------------------------- */
    .address {
        padding: 1rem;
    }

    .rate {
        width: 100%;
    }
}
    /*gallery ------------------------------- */
    .wrap {
        margin: 5rem auto;
        display: flex;
        flex-wrap: wrap;
      }
      
      .item {
        padding: 30px;
        width: 32%;
        background-color: #fff;
      }

      .item img{
          width: 100%;
          border-radius: 30px;
      } 
      
      .item:not(:nth-child(3n+3)) {
        margin-right: 2%;
      }
      
      .item:nth-child(n+4) {
        margin-top: 30px;
      }
      
      @media not all and (min-width: 768px) {
        .item {
          width: 100%;
        }
      
        .item:not(:nth-child(3n+3)) {
          margin-right: 0;
        }
      
        .item:nth-child(n+2) {
          margin-top: 30px;
        }
      }

/*est ------------------------------- */

.est-icon{
    width: 80%;
    margin: 0 auto;
}
figure .room{
    width: 80%;
    margin: 3rem auto;
}


    /*faq ------------------------------- */

.faq{
  margin:3rem auto;
  padding: 2em;
  border-radius: 1em;
  background: var(--lpink);
  text-align: left;
  max-width: 720px;
}
.faq dt{
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dotted;
  font-weight: 500;
}
.faq dt:before{
  content: "Q";
  font-weight: normal;
  background: var(--lgray);
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.6;
  text-align: center;
  display: inline-block;
  border-radius: 1em;
  margin-right: .5em;
}
.faq dd{
  margin-bottom: 4rem;
}
.faq dd:last-child{
  margin-bottom: 0;
}



/*contact ------------------------------- */


.Form {
    margin: 80px auto 0px;
    max-width: 768px;
}

@media screen and (max-width: 768px) {
    .Form {
        margin-top: 40px;
    }
}

.Form-Item {
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .Form-Item {
        flex-wrap: wrap;
    }
}

.Form-Item-Label {
    text-align: left;
    font-size: .8rem;
    font-weight: 400;
    width: 100%;
    max-width: 320px;
}

@media screen and (max-width: 768px) {
    .Form-Item-Label {
        padding-bottom: 0;
        max-width: inherit;
        display: flex;
        align-items: center;
    }

}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 768px) {
    .Form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.Form-Item-Label-Required {
    margin-right: 1rem;
    font-size: .5rem;
    border-radius: 4px;
    width: 30px;
    display: inline-block;
    text-align: center;
    background: var(--pink);
    color: #fff;

}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 40px;
    padding: 0 1em;
    height: 3rem;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
}

@media screen and (max-width: 768px) {
    .Form-Item-Input {
        margin-left: 0;
        margin-top: 18px;
        height: 40px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 40px 0 0 40px;
    padding: 0 1rem;
    height: 300px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
}

@media screen and (max-width: 768px) {
    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Btn {
    width: 300px;
    border-radius: 4px;
    margin: 5rem auto;
    padding: 1rem 0;
    display: block;
    background: var(--gray);
    color: var(--white);
    font-weight: 500;
}