@charset "UTF-8";
:root {
  --main-text: #222831;
  --red: #ae2a5b;
  --white-gray: #f7f7f7;
  --silver: #c0c0c0;
  --z-bg: -1;
  --z-base: 1;
  --z-base-over: 2;
  --z-header: 20;
  --z-hero: 30;
  --font: "Zen Kaku Gothic New", "Cormorant", sans-serif;
  --font-en: "Cormorant", serif;
}

/*-------------------------------- 
// 自分用の追加リセット・調整 
//--------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.8;
  color: var(--main-text);
  scroll-behavior: smooth;
  font-family: var(--font);
}
@media screen and (max-width: 640px) {
  html, body {
    scroll-behavior: auto;
  }
}

.en {
  font-family: "Cormorant", serif;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-align: center;
}

h4 {
  font-size: 2rem;
  margin: 0 auto 1.6rem;
}

h5 {
  font-size: 1.6rem;
}

.p-red {
  color: #ae2a5b;
  font-weight: bold;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: inherit;
}

@media (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
  p {
    font-size: 1.2rem;
  }
}
.inner-width {
  max-width: 1024px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner-width {
    max-width: 768px;
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .inner-width {
    max-width: 480px;
    padding: 0 1rem;
  }
}

header {
  position: fixed;
  top: 0rem;
  right: 0rem;
  z-index: var(--z-header);
  pointer-events: auto;
}
@media (max-width: 480px) {
  header {
    width: 100vw;
  }
}
header nav {
  position: relative;
  pointer-events: auto;
}
@media (max-width: 480px) {
  header nav {
    width: 100%;
  }
}
header nav::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./img/stone.webp) no-repeat center center;
  z-index: var(--z-bg);
  opacity: 0.8;
  pointer-events: none;
}
header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
header nav ul li {
  font-family: var(--font-en);
  color: var(--main-text);
}
header nav ul li a {
  padding: 0.25rem 1.5rem;
  display: block;
}

.first {
  width: 100%;
  height: 100dvh;
  height: 100vh;
  position: relative;
}
.first .first-img {
  width: 100%;
  height: 100%;
}
.first .first-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 640px) {
  .first .first-img img {
    -o-object-position: 20% center;
       object-position: 20% center;
  }
}
@media screen and (max-width: 480px) {
  .first .first-img img {
    -o-object-position: 30% center;
       object-position: 30% center;
  }
}
.first .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-hero);
  pointer-events: none;
}
.first .cover-black {
  background-color: var(--main-text);
  width: 100%;
  height: 50%;
  animation: blackRight 2s forwards 1s;
}
.first .cover-white {
  background-color: #ffffff;
  width: 100%;
  height: 50%;
  animation: whiteLeft 2s forwards 1s;
}
.first .cover.hide {
  opacity: 0;
  z-index: var(--z-bg);
  pointer-events: none;
  transition: opacity 0.5s, z-index 0s 0.5s;
}
.first .header-logo {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: var(--z-header);
}
.first .header-logo img {
  width: 120px;
  height: auto;
  padding: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 480px) {
  .first .header-logo img {
    width: 80px;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .first .header-logo {
    top: 6rem;
    left: auto;
    right: 0.5rem;
  }
}
.first .message {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
@media (max-width: 1024px) {
  .first .message {
    left: 50%;
    bottom: 3%;
    right: auto;
    transform: translateX(-50%);
    width: 95%;
  }
}
.first .message .line {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: visible;
  margin-bottom: 2rem;
}
.first .message .line .box {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.first .message .line .box .box-shadow {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background-color: var(--main-text);
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
.first .message .line .box p {
  background-color: #ffffff;
  padding: 0.25rem 4rem;
  font-size: 2rem;
  color: var(--main-text);
  position: relative;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
@media (max-width: 1024px) {
  .first .message .line .box p {
    padding: 0.25rem 2rem;
    font-size: 1.4rem;
  }
}
.first .message .line .box:nth-child(3) p {
  background-color: var(--main-text);
  color: #ffffff;
}
.first .message .line .box:nth-child(3) .box-shadow {
  background-color: #ffffff;
}
.first .message .line .box:nth-child(1) p {
  padding: 0.25rem 2rem;
  font-size: 1.2rem;
}
@media (max-width: 390px) {
  .first .message .line .box:nth-child(2) p {
    padding: 0.25rem 2rem;
    font-size: 1.2rem;
  }
}
.first .message .btn {
  padding: 1rem 2rem;
  background-color: var(--main-text);
  color: var(--white-gray);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}
.first .message .btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%) skewX(-20deg);
  pointer-events: none;
  animation: shine 3s linear infinite;
  animation-delay: 1.5s;
}
@media screen and (max-width: 640px) {
  .first .message .btn {
    margin-bottom: 3rem;
  }
}
.first .message .btn .arrow-shin {
  width: 55px;
  height: 0.5px;
  background-color: #ffffff;
  position: relative;
  transition: width 0.3s ease;
}
.first .message .btn .arrow-shin::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
  width: 15px;
  height: 0.5px;
  background-color: #ffffff;
  transform-origin: right bottom;
}
.first .message .btn:hover .arrow-shin {
  width: 70px;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) skewX(-20deg);
    opacity: 0.3;
  }
  60% {
    opacity: 1;
  }
  80% {
    transform: translateX(100%) skewX(-20deg);
    opacity: 0;
  }
  100% {
    transform: translateX(100%) skewX(-20deg);
    opacity: 0;
  }
}
@keyframes blackRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes whiteLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.title {
  font-size: 3rem;
  margin-bottom: 5rem;
  text-align: center;
  position: relative;
  font-family: var(--font-en);
  z-index: var(--z-base);
}
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
}
.title::before {
  content: "MENU";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 12rem;
  background: linear-gradient(90deg, #c9c9c9, #eeeeee, #cdcdcd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: var(--font-en);
  z-index: var(--z-bg);
  opacity: 0.45;
}
@media (max-width: 768px) {
  .title::before {
    font-size: 8rem;
  }
}
@media (max-width: 480px) {
  .title::before {
    font-size: 6rem;
  }
}

.lead {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5rem;
}
@media (max-width: 768px) {
  .lead {
    width: 95%;
    padding: 0 1rem;
  }
}
.lead .highlight {
  display: inline-block;
  background-color: var(--main-text);
  padding: 0 1rem;
  color: var(--white-gray);
  margin: 0 0.3rem;
}

@keyframes arrowDown {
  0% {
    transform: translateY(0) scaleY(1);
  }
  30% {
    transform: translateY(10px) scaleY(1.4);
  }
  60% {
    transform: translateY(0) scaleY(1);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}
.btn-link-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .btn-link-menu {
    width: 100%;
  }
}

.btn-lead {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  color: var(--main-text);
  padding: 0.15rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: var(--z-base-over);
  margin-bottom: -0.5rem;
  font-size: 1.1rem;
}

.btn-link {
  padding: 1rem 5rem;
  background-color: var(--main-text);
  color: var(--white-gray);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-link::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%) skewX(-20deg);
  pointer-events: none;
  animation: shine 3s linear infinite;
  animation-delay: 1.5s;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) skewX(-20deg);
    opacity: 0.3;
  }
  60% {
    opacity: 1;
  }
  80% {
    transform: translateX(100%) skewX(-20deg);
    opacity: 0;
  }
  100% {
    transform: translateX(100%) skewX(-20deg);
    opacity: 0;
  }
}
.link-arrow {
  position: relative;
  display: inline-block;
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 0.5px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.link-arrow::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
  width: 10px;
  height: 0.5px;
  background-color: #ffffff;
  transform-origin: right bottom;
  transition: transform 0.3s ease;
}

.btn-link-menu:hover .link-arrow::after {
  width: 60px;
}

.btn-link-menu:hover .link-arrow::before {
  transform: translateX(20px) rotate(35deg);
}

main {
  padding: 10rem 0;
  width: 100%;
}
main .sec-menu {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  padding: 0 5rem;
}
@media screen and (max-width: 1024px) {
  main .sec-menu {
    flex-direction: column;
    padding: 0 1rem;
  }
}
main .sec-menu .under-lay {
  background: url(./img/002.jpeg);
  padding: 2rem;
}
@media screen and (max-width: 1024px) {
  main .sec-menu .under-lay {
    padding: 1.5rem;
  }
}
main .sec-menu .under-lay .menu-item {
  padding: 4rem;
  background-color: rgba(255, 255, 255, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  main .sec-menu .under-lay .menu-item {
    padding: 2rem;
  }
}
main .sec-menu .under-lay .menu-item::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border: solid 0.5px var(--main-text);
  opacity: 0.25;
}
@media screen and (max-width: 1024px) {
  main .sec-menu .under-lay .menu-item::before {
    opacity: 0;
  }
}
main .sec-menu .under-lay .menu-item .title2 {
  font-size: 1.85rem;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem 0 1rem;
  border-bottom: 0.5px solid var(--main-text);
  border-right: 0.5px solid var(--main-text);
  font-family: var(--font-en);
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  main .sec-menu .under-lay .menu-item .title2 {
    width: 100%;
    text-align: center;
  }
}
main .sec-menu .under-lay .menu-item h5 {
  font-size: 1.4rem;
  border-bottom: 0.5px solid var(--main-text);
  width: -moz-fit-content;
  width: fit-content;
}
main .sec-menu .under-lay .menu-item .menu-img {
  overflow: hidden;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .sec-menu .under-lay .menu-item .menu-img img {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 4/3;
}

.sec-concept {
  padding: 10rem 0;
  overflow: hidden;
  position: relative;
}
.sec-concept::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./img/003.jpeg);
  background-size: cover;
  filter: blur(5px);
  animation: conceptBgMove 10s linear infinite;
  z-index: var(--z-bg);
}
.sec-concept .title::before {
  content: "CONCEPT";
}
@media (max-width: 768px) {
  .sec-concept .title::before {
    font-size: 8rem;
  }
}
@media (max-width: 480px) {
  .sec-concept .title::before {
    font-size: 6rem;
  }
}
.sec-concept .lead {
  font-family: var(--font-en);
  line-height: 2rem;
}
.sec-concept .concept-card {
  width: 60%;
  margin: 0 auto 5rem;
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  border: solid 0.1px var(--main-text);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec-concept .concept-card {
    width: 90%;
  }
}
.sec-concept .concept-card .box-shadow {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background-color: var(--silver);
  opacity: 0.3;
  z-index: var(--z-bg);
}
.sec-concept .concept-card h4 {
  font-size: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  border-bottom: 0.1px solid var(--main-text);
}
@media screen and (max-width: 768px) {
  .sec-concept .concept-card h4 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 420px) {
  .sec-concept .concept-card h4 {
    font-size: 1.2rem;
  }
}
.sec-concept .concept-card .concept {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .sec-concept .concept-card .concept {
    flex-direction: column;
    gap: 1rem;
  }
}
.sec-concept .concept-card .concept .concept-text {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .sec-concept .concept-card .concept .concept-text {
    width: 100%;
  }
}
.sec-concept .concept-card .concept-img {
  width: 300px;
  height: 200px;
}
.sec-concept .concept-card .concept-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

@keyframes conceptBgMove {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  60% {
    transform: scale(1.1);
    opacity: 0.09;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}
.sec-reserve {
  width: 100%;
  padding: 10rem 5rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec-reserve {
    padding: 10rem 2rem 0;
  }
}
.sec-reserve .reserve-bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-bg);
  background-size: cover;
  background-position: center;
  background: url(./img/stone.webp);
  filter: brightness(1.1);
  animation: bgMove 10s linear infinite;
}
.sec-reserve .title::before {
  content: "RESERVE";
}
@media (max-width: 768px) {
  .sec-reserve .title::before {
    font-size: 8rem;
  }
}
@media (max-width: 480px) {
  .sec-reserve .title::before {
    font-size: 6rem;
  }
}
.sec-reserve .reserve {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .sec-reserve .reserve {
    flex-direction: column;
  }
}
.sec-reserve .reserve .web-reserve {
  width: 50%;
  padding: 2rem;
  background-color: #ffffff;
  border: solid 0.5px var(--red);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .sec-reserve .reserve .web-reserve {
    width: 100%;
  }
}
.sec-reserve .reserve .web-reserve::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  z-index: var(--z-bg);
}
.sec-reserve .reserve .web-reserve .reserve-btns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.sec-reserve .reserve .web-reserve .reserve-btns .reserve-btn .arrow {
  background-color: var(--red);
  color: var(--white-gray);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sec-reserve .reserve .web-reserve .reserve-btns .reserve-btn .arrow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%) skewX(-20deg);
  pointer-events: none;
  animation: shine 3s linear infinite;
  animation-delay: 1.5s;
}
.sec-reserve .reserve .web-reserve .reserve-btns .reserve-btn .arrow .arrow-text {
  font-size: 1.1rem;
}
.sec-reserve .reserve .web-reserve .reserve-btns .reserve-btn .arrow .arrow-right {
  display: inline-block;
  animation: arrowRightMove 1.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.sec-reserve .reserve .tel-reserve {
  width: 50%;
  padding: 2rem;
  background-color: #ffffff;
  border: solid 0.5px var(--main-text);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .sec-reserve .reserve .tel-reserve {
    width: 100%;
  }
}
.sec-reserve .reserve .tel-reserve::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--main-text);
  z-index: var(--z-bg);
}
.sec-reserve .reserve .tel-reserve .tel-list .tel-12 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec-reserve .reserve .tel-reserve .tel-list .tel-12 {
    font-size: 1.4rem;
  }
}
.sec-reserve .reserve .tel-reserve .tel-list .tel-12 .label {
  width: 9rem;
}
@media screen and (max-width: 768px) {
  .sec-reserve .reserve .tel-reserve .tel-list .tel-12 .label {
    width: 10rem;
  }
}
.sec-reserve .reserve .tel-reserve .tel-list .tel-12 .number {
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.sec-reserve .reserve .tel-reserve .reserve-tel-img {
  width: 150px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 2rem auto;
}

@keyframes bgMove {
  0% {
    transform: scale(1.05);
    opacity: 0.09;
  }
  50% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.05);
    opacity: 0.09;
  }
}
@keyframes arrowRightMove {
  0% {
    transform: translateX(0) scaleX(1);
  }
  30% {
    transform: translateX(10px) scaleX(1.4);
  }
  60% {
    transform: translateX(0) scaleX(1);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}
.footer-logo {
  margin: 10rem auto 5rem;
  width: 100%;
}
.footer-logo .logo {
  margin: 0 auto;
  width: 100px;
  height: auto;
  cursor: pointer;
}
.footer-logo .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec-map {
  width: 100%;
  padding: 10rem 0 10rem;
  overflow: hidden;
}
.sec-map .title::before {
  content: "SALON";
}
@media (max-width: 768px) {
  .sec-map .title::before {
    font-size: 8rem;
  }
}
@media (max-width: 480px) {
  .sec-map .title::before {
    font-size: 6rem;
  }
}
.sec-map .salon .salon-info {
  background-color: var(--white-gray);
  padding: 2rem;
  margin: 2rem auto;
}
@media screen and (max-width: 480px) {
  .sec-map .salon .salon-info {
    padding: 0.5rem;
  }
}
.sec-map .salon .salon-info li {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  border-bottom: 0.1px dotted var(--main-text);
  margin-bottom: 2rem;
}
.sec-map .salon .salon-info li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .sec-map .salon .salon-info li {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.sec-map .salon .salon-info li .label {
  width: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-map .salon .salon-info li .label2 {
  width: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-map .salon .map {
  width: 100%;
}
.sec-map .salon .map iframe {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .sec-map .salon .map iframe {
    height: 400px;
  }
}

.sec-privacy {
  padding: 10rem 0 0;
  position: relative;
}
.sec-privacy .title::before {
  content: "PRIVACY";
  font-size: 10rem;
}
@media (max-width: 768px) {
  .sec-privacy .title::before {
    font-size: 8rem;
  }
}
@media (max-width: 480px) {
  .sec-privacy .title::before {
    font-size: 6rem;
  }
}
.sec-privacy .privacy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--white-gray);
  padding: 3rem;
}

.sec-company {
  padding: 10rem 0 0;
  margin-bottom: 5rem;
}
.sec-company .title::before {
  font-size: 10rem;
  content: "COMPANY";
}
@media (max-width: 768px) {
  .sec-company .title::before {
    font-size: 8rem;
  }
}
@media (max-width: 480px) {
  .sec-company .title::before {
    font-size: 6rem;
  }
}
.sec-company .company {
  background-color: var(--white-gray);
  padding: 3rem;
}
.sec-company .company p .left {
  width: 3rem;
  display: inline-block;
}

footer {
  width: 100%;
  background-color: var(--main-text);
  color: var(--white-gray);
  padding: 3rem 1rem 1rem;
  margin: 0 auto;
}
footer .footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 428px) {
  footer .footer-info {
    gap: 1rem;
  }
}
footer .footer-tel {
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
}
footer .footer-tel ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-tel ul li {
  font-size: 1.1rem;
}
footer .footer-tel ul .label {
  width: 8rem;
}
footer .footer-tel ul .number {
  display: flex;
  align-items: center;
  width: 13rem;
  gap: 0.1rem;
  letter-spacing: 0.1em;
}
footer .footer-tel ul .icon-insta {
  font-size: 1.1rem;
}
footer .p-small {
  font-size: 0.9rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  footer .p-small {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */