@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;

}


/* 共通 -------------------- */
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1096px;
  margin: 0 auto;
  padding: 120px 0 80px;
}

#line h2 {
  display: none;
}

p {
  font-size: 24px;
  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-box {
  width: 55%;
  display: flex;
}

.pc-menu-box li+li {
  text-align: center;
  margin-left: 24px;
}

.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 {
  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;
}


/* line -------------------- */
#line img {
  display: block;
  margin: 0 auto;
  width: 200px;
}

#line p {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: 2px;
}

#line .btn-white a {
  display: block;
  margin: 64px auto 24px;
}

/* footer(pc) -------------------- */
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: 100%;
  font-size: 20px;
  line-height: 2.2;
  letter-spacing: 2px;
  color: #6E625D;
}

footer ul li a {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

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;
}

footer .phone {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

footer .phone img {
  width: 15%;
  margin: 15px 8px 0;
}

footer p,
footer a {
  font-size: 24px;
  text-align: center;
  letter-spacing: 4px;
}

.btn-white a,
.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);
}

.btn-white a {
  background: #ffffff;
  color: #B78681;
  border: .5px solid #B78681;
}

.btn-pink a {
  background: #B78681;
  color: #ffffff;
}

.btn-white a::after,
.btn-pink a::after {
  content: "›";
  position: absolute;
  top: 48%;
  right: 8%;
  transform: translateY(-50%);
  line-height: 1;
}

.btn-white a:hover,
.btn-pink a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.btn-white a:active,
.btn-pink a:active {
  background: #c5aab1;
  transform: translateY(1px);
}

.footer-sns {
  display: flex;
  margin: 16px 0 40px;
}

.footer-sns img {
  width: 60px;
  height: 60px;
}

.tiktok {
  margin-left: 16px;
}


.footer-sns a img:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

small {
  display: block;
  text-align: center;
  color: #6e625d;
}

@media(max-width:1310px) {
  .container {
    max-width: 750px;
    margin: 0 auto;
    padding: 80px 0;
  }

  h1 {
    width: 20%;
  }
}

@media(max-width:720px) {

  .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px 0;
  }

  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;
  }

  p {
    font-size: 16px;
  }


  #line img {
    width: 160px;
  }

  #line p {
    margin-bottom: 24px;
  }

  #line .btn-white a {
    margin: 32px auto 24px;
  }

  /* header(sp) -------------------- */

  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 {
    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 {
    bottom: 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);
    bottom: 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: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, .8);
    position: fixed;
    top: 0;
    right: 0;
    padding: 100px 10px 0;
    box-sizing: border-box;

    transform: translateX(100%);
    transition: transform .8s ease;
  }

  .sp-menu-box li a {
    display: block;
    color: #5C4A43;
    text-decoration: none;
    text-align: left;
    padding: 10px 16px;
    font-family: "Cormorant Garamond", serif;

    font-size: 24px;
    border-bottom: 1px solid #5C4A43;
    letter-spacing: 3px;
    transition: .5s;
  }

  #menu-btn-check:checked~.sp-menu-box {
    transform: translateX(0);
  }

  .sp-menu-box a:active {
    transform: scale(0.995);
    background: rgba(160, 107, 102, 0.1);
  }

  main {
    padding-top: 72px;
  }

  #concept,
  #business,
  #salon {
    scroll-margin-top: 72px;
  }

  /* footer(sp) -------------------- */
  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,
  footer a {
    font-size: 20px;
  }

  .btn-white a,
  .btn-pink a {
    width: 280px;
    margin: 15px 0 0 0;
    font-size: 16px;
  }

  small {
    order: 4;
  }
}

@media(max-width:500px) {

    #line .btn-white a {
      max-width: 260px;
      box-sizing: border-box;
    }


  .container {
    max-width: 260px;
    margin: 0 auto;
    padding: 32px 0;
  }

  h1 {
    width: 30%;
  }

  #line p {
    text-align: left;
    line-height: 1.6;
    letter-spacing: 1.5px;
  }
}