@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dancing+Script:wght@400..700&family=M+PLUS+1p&family=Zen+Maru+Gothic&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dancing+Script:wght@400..700&family=M+PLUS+1p&family=Noto+Serif+JP:wght@200..900&family=Zen+Maru+Gothic&display=swap');

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

body {
  font-family: "Noto Serif JP", serif;

}


/* 共通 -------------------- */
.container {
  max-width: 1096px;
  margin: 0 auto;
  padding: 80px 0;
}

main h2 {
  text-align: center;
  font-size: 48px;
  font-family: "Cormorant Garamond", serif;
  color: #5C4A43;
  margin-bottom: 2px;
}

main h3 {
  text-align: center;
  font-size: 16px;
  color: #5C4A43;
  margin: 4px 0 40px 0;
}

main h4 {
  color: #6E625D;
  font-size: 20px;
}

p {
  font-size: 16px;
  color: #6E625D;
}

/* header -------------------- */
header {
  height: 96px;
  background: #FFF8F5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

h1 {
  width: 10%;
}

.pc-menu {
  width: 50%;
}

.pc-menu-box {
  display: flex;
}

.pc-menu-box li {
  width: calc(100% / 6);
  text-align: center;
}

.pc-menu-box a {
  font-size: min(1.5vw, 24px);
  font-family: "Cormorant Garamond", serif;
  color: #5C4A43;
  position: relative;
}

.sp-menu {
  display: none;
}

/* 下線 */
.pc-menu a::after,
.sp-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  /* 文字との距離調整 */
  width: 100%;
  height: 0.5px;
  background-color: #5C4A43;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* hoverで左→右に伸びる */
.pc-menu a:hover::after,
.sp-menu a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* main -------------------- */

.fv-pc {
  display: block;
}

.fv-sp {
  display: none;
}

/* concept -------------------- */
.concept-sp {
  display: none;
}

.concept-pc {
  background: url(img/concept-bg.png) no-repeat center;
  background-size: cover;
  height: 960px;
}

.concept-pc .container {
  padding: 120px 0 0;
}

.concept-pc h2 {
  text-align: left;
}

.concept-pc h3 {
  margin: 4px auto 0 70px;
  text-align: left;
}

.concept-pc article {
  display: flex;
}

.concept-pc .concept-txt {
  width: 35%;
}

.concept-pc h4 {
  margin: 40px 48px 40px 0;
}

.concept-pc p {
  font-size: 16px;
  margin: 0 48px 0 0;
}

.concept-pc .concept-img {
  width: 65%;
}

/* business -------------------- */
#business {
  background: #F1EEE8;
  background: url(img/business-bg.png) no-repeat center;
  background-size: cover;
  height: 400px;
}

/* salon -------------------- */
.salon-pc {
  max-width: 1096px;
  margin: 0 auto;
  display: block;
}

.salon-sp {
  display: none;
}

#salon {
  padding-bottom: 40px;
}

.salon-article-1,
.salon-article-2,
.salon-article-3 {
  display: flex;
  margin-bottom: 120px;
}

.salon-img img {
  max-width: 500px;
  position: relative;
  z-index: 10;
}

.salon-box1,
.salon-box3 {
  max-width: 500px;
  margin: 40px 0 0 0;
  padding: 40px;
  position: relative;
  z-index: 0;
}

.salon-pc .salon-box1::before,
.salon-pc .salon-box3::before {
  content: "";
  top: 0px;
  left: -100px;
  width: 800px;
  height: 380px;
  background: linear-gradient(to right,
      #F7F5F4 0%,
      #D8C3C9 100%);
  border-radius: 30px 0 0 30px;

  position: absolute;
  z-index: -1;
}

.salon-box2 {
  max-width: 500px;
  margin: 40px 0 0 0;
  padding: 40px;
  position: relative;
  z-index: 0;
}

.salon-pc .salon-box2::before {
  content: "";
  top: 0px;
  left: -100px;
  width: 800px;
  height: 380px;
  background: linear-gradient(to left,
      #F7F5F4 0%,
      #D8C3C9 100%);
  border-radius: 0 30px 30px 0;

  position: absolute;
  z-index: -1;
}

.salon-article-4 {
  display: flex;
  margin-bottom: 32px;
}

.salon-box4 {
  max-width: 500px;
  margin: 40px 0 0 0;
  padding: 40px;
  position: relative;
  z-index: 0;
}

.salon-pc .salon-box4::before {
  content: "";
  top: 0px;
  left: -100px;
  width: 800px;
  height: 600px;
  background: linear-gradient(to left,
      #F7F5F4 0%,
      #D8C3C9 100%);
  border-radius: 0 30px 30px 0;

  position: absolute;
  z-index: -1;
}

#salon a {
  display: inline-block;
  background: #B78681;
  width: 80%;
  margin: 32px 0 0;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 30px;
  letter-spacing: 4px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#salon a::after {
  content: "›";
  position: absolute;
  top: 48%;
  right: 8%;
  transform: translateY(-50%);
  line-height: 1;
}

#salon a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

#salon a:active {
  background: #c5aab1;
  transform: translateY(1px);
}


.rev {
  flex-direction: row-reverse;
  justify-content: space-between;
}

#salon h4 {
  padding: 0 0 24px 0;
}

.map {
  max-width: 1096px;
  position: relative;
  z-index: 2;
}

.map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
  border-radius: 30px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, .08);
}

/* message -------------------- */
#message {
  background: #F1EEE8;
  background-size: cover;
}

#message .container {
  padding: 0 0 80px;
}

#message h3 {
  margin: 4px 0 40px 0;
}

.message-pc {
  display: block;
}

.message-sp {
  display: none;
}

#message article {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

#message p {
  margin-bottom: 24px;
  line-height: 1.8;
}

#message article p {
  margin-right: 32px;
  width: 60%;
}

.message-img {
  width: 40%;
}

/* footer -------------------- */
footer {
  background: #FDF8F5;
}

footer h2 {
  padding: 24px 0 0 24px;
  color: #6E625D;
  letter-spacing: 2px;
}

footer .container {
  padding: 40px 0;
}

footer h3 img {
  display: block;
  width: 8%;
  margin: 0 auto;
}

footer ul {
  width: 50%;
  font-size: 20px;
  line-height: 2.2;
  letter-spacing: 2px;
  color: #6E625D;
}

footer ul li a {
  position: relative;
  display: inline-block;
}

footer a {
  color: #6E625D;
}

/* 下線 */
footer ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  /* 文字との距離調整 */
  width: 100%;
  height: 0.5px;
  background-color: #5C4A43;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* hoverで左→右に伸びる */
footer ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

footer article {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

footer .phone-and-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* text-align: right;  */
  /* margin: 0 0 40px 240px; */
}

footer .phone {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

footer .phone img {
  width: 15%;
  margin: 15px 8px 0;
}

footer p {
  font-size: 24px;
  text-align: center;
  letter-spacing: 4px;
}

footer .btn-white a,
footer .btn-pink a {
  display: inline-block;
  width: 320px;
  margin: 24px 0 0 0;
  font-size: 20px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 30px;
  letter-spacing: 1.5px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer .btn-white a {
  background: #ffffff;
  color: #B78681;
  border: .5px solid #B78681;
}

footer .btn-pink a {
  background: #B78681;
  color: #ffffff;
}

footer .btn-white a::after,
footer .btn-pink a::after {
  content: "›";
  position: absolute;
  top: 48%;
  right: 8%;
  transform: translateY(-50%);
  line-height: 1;
}

footer .btn-white a:hover,
footer .btn-pink a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

footer .btn-white a:active,
footer .btn-pink a:active {
  background: #c5aab1;
  transform: translateY(1px);
}

.footer-sns {
  display: flex;
  margin: 16px 0 40px;
}

.footer-sns img {
  width: 60px;
  height: 60px;
  /* width: 100%; */
}

.tiktok {
  margin-left: 16px;
}


.footer-sns a img:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

small {
  display: block;
  text-align: center;
  color: #8C817C;
}

@media(max-width:1310px) {
  .container {
    max-width: 750px;
    margin: 0 auto;
    padding: 80px 0;
  }

  /* concept -------------------- */
  .concept-pc {
    background: url(img/concept-bg.png) no-repeat center;
    background-size: cover;
    height: 800px;
  }

  .concept-pc .concept-txt {
    width: 50%;
  }

  .concept-pc p {
    font-size: 16px;
    margin: 0 24px 0 0;
  }

  .concept-pc .concept-img img {
    width: 100%;
    margin-top: 96px;
    align-items: center;
  }


  /* salon -------------------- */

  .salon-article-1 {
    display: flex;
    margin-bottom: 64px;
  }

  .salon-article-2 {
    display: flex;
    margin-bottom: 80px;
  }

  .salon-article-3 {
    display: flex;
    margin-bottom: 140px;
  }

  .salon-pc .salon-img img {
    max-width: 350px !important;
    position: relative;
    z-index: 10;
  }

  .salon-box1,
  .salon-box3 {
    max-width: 300px;
    margin: 40px 0 0 0;
    padding: 40px;
    position: relative;
    z-index: 0;
  }

  .salon-pc .salon-box1::before {
    content: "";
    top: 0px;
    left: -240px;
    width: 60vw;
    height: 440px;
    background: linear-gradient(to right,
        #F7F5F4 0%,
        #D8C3C9 100%);
    border-radius: 30px 0 0 30px;
    position: absolute;
    z-index: -1;
  }


  .salon-pc .salon-box3::before {
    content: "";
    top: 0px;
    left: -240px;
    width: 60vw;
    height: 300px;
    background: linear-gradient(to right,
        #F7F5F4 0%,
        #D8C3C9 100%);
    border-radius: 30px 0 0 30px;
    position: absolute;
    z-index: -1;
  }

  .salon-pc .salon-box2::before {
    content: "";
    top: 0px;
    left: 0px;
    width: 60vw;
    height: 340px;
    background: linear-gradient(to left,
        #F7F5F4 0%,
        #D8C3C9 100%);
    border-radius: 0 30px 30px 0;

    position: absolute;
    z-index: -1;
  }


  .salon-pc .salon-box4::before {
    content: "";
    top: 0px;
    left: 0px;
    width: 60vw;
    height: 560px;
    background: linear-gradient(to left,
        #F7F5F4 0%,
        #D8C3C9 100%);
    border-radius: 0 30px 30px 0;

    position: absolute;
    z-index: -1;
  }


}

@media(max-width:1000px) {

  /* salon -------------------- */
  .salon-pc .salon-box1::before {
    content: "";
    top: 0px;
    left: -240px;
    width: 80vw;
    height: 440px;
    background: linear-gradient(to right,
        #F7F5F4 0%,
        #D8C3C9 100%);
    border-radius: 30px 0 0 30px;
    position: absolute;
    z-index: -1;
  }


  .salon-pc .salon-box3::before {
    content: "";
    top: 0px;
    left: -240px;
    width: 80vw;
    height: 300px;
    background: linear-gradient(to right,
        #F7F5F4 0%,
        #D8C3C9 100%);
    border-radius: 30px 0 0 30px;
    position: absolute;
    z-index: -1;
  }

  footer h3 img {
  display: block;
  width: 15%;
  margin: 0 auto;
}
}

@media(max-width:720px) {

  h1 {
    width: 20%;
    position: fixed;
  }

  main h2 {
  text-align: center;
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  color: #5C4A43;
  margin-bottom: 2px;
}

  main h3 {
    text-align: center;
    font-size: 16px;
    color: #5C4A43;
    margin: 4px 0 24px 0;
  }

  .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px 0;
  }

  /* header -------------------- */

  header {
    height: 72px;
    background: #FFF8F5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
  }

  .pc-menu {
    display: none;
  }

  .sp-menu {
    display: block;
  }

  .menu-btn {
    position: fixed;
    top: 8px;
    right: 16px;
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
  }

  .menu-btn span {
    /* content: ""; */
    background: rgba(92, 74, 67, 0);
    width: 40px;
    height: 2px;
    position: absolute;
  }

  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    background: rgba(92, 74, 67, 1);
    width: 40px;
    height: 2px;
    position: absolute;
    transition: all .6s;
  }

  .menu-btn span::before {
    top: -6px;
  }

  .menu-btn span::after {
    top: 6px;
  }

  #menu-btn-check:checked+.menu-btn span {
    background: rgba(92, 74, 67, 0);
  }

  #menu-btn-check:checked+.menu-btn span::before {
    background: rgba(92, 74, 67, 1);
    transform: rotate(45deg);
    top: 0;
  }

  #menu-btn-check:checked+.menu-btn span::after {
    background: rgba(92, 74, 67, 1);
    transform: rotate(-45deg);
    top: 0;
  }

  #menu-btn-check {
    display: none;
  }

  .sp-menu-box {
    width: 250px;
    height: 100vh;
    background: rgba(255, 255, 255, .8);
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 100px;

    transform: translateX(100%);
    transition: transform .5s ease;
  }

  #menu-btn-check:checked~.sp-menu-box {
    transform: translateX(0);
  }

  .sp-menu-box li a {
    display: block;
    font-family: "Cormorant Garamond", serif;
    color: #5C4A43;
    text-align: center;
    padding: 10px 16px;
    font-size: 20px;
    letter-spacing: 3px;
    text-align: left;
  }

  main {
    padding-top: 72px;
    /* headerと同じ高さ */
  }

  /* concept -------------------- */

  .concept-pc {
    display: none;
  }

  .concept-sp {
    display: block;
    background: url(img/concept-bg.png) no-repeat center;
    background-size: cover;
    height: 744px;
  }

  .concept-sp h4 {
    margin: 20px auto;
  }

  .concept-sp .container {
    padding: 32px 0;
  }

  .concept-sp .concept-img {
    width: 100%;
    margin-top: 24px;
    background: pink;
    display: inline-block;
    text-align: center;
  }

  /* business -------------------- */
  #business {
    background: #F1EEE8;
    background: url(img/business-bg.png) no-repeat center;
    background-size: cover;
  }

  /* salon -------------------- */
  #salon {
    padding-bottom: 0px;

  }

  /* salon -------------------- */
  .salon-pc {
    display: none;
  }

  .salon-sp {
    display: block;
  }

  .salon-sp .salon-img {
    width: 100%;
  }

  .salon-sp .salon-box1,
  .salon-sp .salon-box3 {
    max-width: none;
    width: 100%;
    margin: 0 auto 40px;
    padding: 24px 0;
  }

  .salon-sp .salon-box1::before {
    content: "";
    top: -32px;
    left: 50%;
    width: 100vw;
    height: 114%;
    transform: translateX(-50%);
    position: absolute;
    z-index: -1;
    background: linear-gradient(to left,
        #F7F5F4 0%,
        #D8C3C9 100%);
  }

  .salon-sp .salon-box3::before {
    content: "";
    top: -32px;
    left: 50%;
    width: 100vw;
    height: 116%;
    transform: translateX(-50%);
    position: absolute;
    z-index: -1;
    background: linear-gradient(to left,
        #F7F5F4 0%,
        #D8C3C9 100%);
  }

  .salon-sp .salon-box2 {
    max-width: none;
    width: 100%;
    margin: 0 auto 24px;
    padding: 24px 0;
  }

  .salon-sp .salon-box4 {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 24px 0 16px;

  }

  .salon-sp .salon-box2::before {
    content: "";
    top: -32px;
    left: 50%;
    width: 100vw;
    height: 106%;
    transform: translateX(-50%);
    position: absolute;
    z-index: -1;
    background: linear-gradient(to right,
        #F7F5F4 0%,
        #D8C3C9 100%);
  }

  .salon-sp .salon-box4::before {
    content: "";
    top: -32px;
    left: 50%;
    width: 100vw;
    height: 216%;
    transform: translateX(-50%);
    position: absolute;
    z-index: -1;
    background: linear-gradient(to right,
        #F7F5F4 0%,
        #D8C3C9 100%);
  }

  #salon a {
    display: block;
    background: #B78681;
    width: 60%;
    margin: 24px auto;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    padding: 12px 16px;
    border-radius: 30px;
    letter-spacing: 4px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .message-bg-up {
    margin-top: 40px;
  }

  #message .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px 0;
  }


  .message-pc {
    display: none;
  }

  .message-sp {
    display: block;
  }

  .message-sp .message-img {
    width: 100%;
    margin-bottom: 24px;
  }


  /* footer -------------------- */
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .container {
    order: 3;
    padding: 16px 0;
  }

  footer article,
  footer .footer-nav-sns,
  footer .phone-and-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  footer h3 {
    order: 1;
    width: 100%;
  }
  

  footer h2 {
    order: 2;
    padding: 24px 0 16px;
    text-align: center;
  }

  footer h3 img {
    width: 20%;
    margin-top: 32px;
  }

  footer ul {
    width: 100%;
    font-size: 16px;
    padding: 0;
    margin-bottom: 24px;
  }

  .footer-sns {
    justify-content: center;
    margin: 0 0 30px;
  }

  footer .phone {
    margin-right: 0;
    justify-content: center;
    margin-bottom: 10px;
  }

  footer .phone img {
    width: 25px;
    margin: 0 8px 0 0;
  }

  footer p {
    font-size: 20px;
  }

  footer .btn-white a,
  footer .btn-pink a {
    width: 280px;
    margin: 15px 0 0 0;
    font-size: 16px;
  }

  small {
    order: 4;
  }
}

@media(max-width:500px) {

  .container {
    max-width: 360px;
    margin: 0 auto;
    padding: 32px 0;
  }

  /* main -------------------- */

  .fv-pc {
    display: none;
  }

  .fv-sp {
    display: block;
  }

  /* concept -------------------- */
  .concept-sp {
    display: block;
    background: url(img/concept-bg-sp.png) no-repeat center;
    background-size: cover;
    /* height: 744px; */
  }


  /* message -------------------- */
  #message .container {
    max-width: 360px;
    margin: 0 auto;
    padding: 32px 0;
  }


}