@charset "utf-8";
@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
  --text-c: #0a98ff;
}

html {
  font-size: 10px;
  font-weight: normal;
  line-height: 1.75;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
}

.model-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;

  &.type-center {
    justify-content: center;
  }
}

.bgimg {
  background-image: url(../image/bgimg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 20px 20px;
  height: 100vh;
  min-height: 695px;

  @media screen and (max-width:790px) {
    height: 80vh;
    min-height: 500px;
  }
}

.header-h1 {
  width: 250px;
}

.header-nav {
  font-size: 1.4rem;
  color: var(--text-c);
}

.header-cp {
  span {
    font-family: sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
  }

  .cplogoimg {
    width: 40px;
    height: auto;
  }
}

.main-copy {
  padding: 6vw 0 60px 20px;
  text-align: center;
  color: var(--text-c);
  font-size: 4.8rem;


  span {
    font-size: 4.3rem;
  }

  @media screen and (max-width:790px) {
    padding-top: 70px;
    font-size: 3.2rem;
    font-weight: 600;

    span {
      font-size: 2.4rem;
      font-weight: 600;
    }
  }


}

.accessory-btn {
  display: block;
  width: fit-content;
  padding: 2px 18px 3px;
  background-color: var(--text-c);
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 26px;
  margin: 0 auto;

  @media screen and (max-width:790px) {
    font-size: 1.6rem;
  }
}

.sub-copy {
  padding: 20px 0 0 20px;
  font-weight: 500;
  color: #3f3f3f;

  div:first-child {
    font-size: 2.4rem;
    line-height: 1.5;
  }

  div:last-child {
    font-size: 5.4rem;
  }

  @media screen and (max-width:790px) {
    padding-top: 10px;

    &.model-flex{
      flex-direction: column;
      gap: 0;
    }

    div:first-child {
      font-size: 2rem;
      font-weight: 600;
      padding-right: 1em;
    }

    div:last-child {
      font-size: 4rem;
      font-weight: 500;
    }
  }

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

    &.model-flex{
      flex-direction: row;
      gap: 0;
    }

    div:first-child {
      font-size: 1.8rem;
      font-weight: 600;
      padding-right: 1em;
    }

    div:last-child {
      font-size: 3.2rem;
      font-weight: 600;
    }
  }
}

.scroll-hint {
  display: none;
  padding-top: 2rem;
  text-align: center;
  font-size: 1.4rem;
  color: #785c36;

  @media screen and (max-width:790px) {
    display: block;
  }
}

.inner {
  max-width: 1200px;
  width: 76%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100px;
  border-bottom: 1px solid #0a98ff;
}

.salon,
.contact{
  .inner{
    border: 0;
  }
}

section {
  padding: 100px 0 0;
  background-image: url(../image/blue-circle-2.png), url(../image/purple-circle-2.png);
  background-position: top -50px left -240px, bottom -50px right -240px;
  background-repeat: no-repeat;
}

h2 {
  color: #0079D0;
  font-size: 4rem;
  padding-bottom: 60px;

  @media screen and (max-width:790px) {
    font-size: 3.8rem;
  }

  span {
    display: block;
    font-size: 2.4rem;
    text-shadow: none;

    @media screen and (max-width:790px) {
      font-size: 2.2rem;
    }
  }

  span::before {
    content: "／";
  }

}

h3 {
  color: #0079D0;
  /* color: #785c36; */
  font-size: 2rem;
}

.textarea {
  padding: 40px 0;

  &.left {
    text-align: left;
  }

  &.right {
    text-align: right;
  }

  &.center {
    text-align: center;
    padding-top: 100px;
  }
}

.flexcont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;

  @media screen and (max-width:960px) {
    flex-direction: column;
  }

}

.flexcont>* {
  flex-grow: 1;
}

.fix-circle-blue {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translate(-70%, -20%);
}


.whatwedo {
  position: relative;

  .contents {
    padding-top: 60px;
  }

  .visual-1 {
    position: absolute;
    z-index: -1;
    top: -30px;
    right: 0;
    max-width: 250px;
    width: 100%;

    @media screen and (max-width:960px) {
      position: static;
      display: block;
      margin: auto;
    }
  }

}

.dailytask {

  .dailytask-item {
    padding: 80px 0;
  }

  .dailytask-item p {
    text-align: right;
    padding-top: 1.5em;
  }

  .dailytask-img {
    margin: auto;
    max-width: 500px;
    width: 100%;
    display: block;
  }

}

.where {

  .where-text {
    width: 60%;

    @media screen and (max-width:960px) {
      width: 100%;
    }

  }

  .where-img {
    width: 40%;
    min-width: 370px;
    display: block;
    border-radius: 50%;

    @media screen and (max-width:960px) {
      width: 100%;
      max-width: 370px;
      min-width: auto;
    }

  }

  .googlemap {
    padding-top: 30px;

    iframe {
      width: 90%;
      height: 420px;

      @media screen and (max-width:960px) {
        width: 100%;
      }
    }
  }

}

/* where */

.skills {

  .visual-2 {
    max-width: 250px;
    width: 100%;
  }
}

.contact {

  .contents {
    text-align: center;
    font-size: 1.6rem;
  }

  .tel-number {
    font-size: 3.8rem;
    padding: 2rem 0;
    letter-spacing: 0.2rem;

    @media screen and (max-width:790px) {
      font-size: 2.6rem;
    }

    span {
      font-size: 2.8rem;
    }
  }

  .padding-top {
    padding-top: 2rem;
  }

  .tel-number-mobile {
    font-size: 2.4rem;
    padding: 2rem 0;
    letter-spacing: 0.1rem;

    @media screen and (max-width:790px) {
      font-size: 2rem;
    }

    span {
      font-size: 1.6rem;
    }
  }

}

.salon {
  background-image: none;
  background-color: #edeae4;

  .salon-list li {
    background-color: #fff;
    text-align: center;
    line-height: 5em;
    font-size: 1.4rem;
    color: #785c36;
  }
}

footer{
  background-color: #edeae4;
  text-align: center;
  font-size: 1.2rem;
  padding-bottom: 2rem;
}