@charset "UTF-8";
/* A Modern CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Liter&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Liter&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-weight: 400;
}

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

:root {
  --bk: #000;
  --wh: #fff;
  --text-color-dark: #222;
  --accent-color: #84cac6;
  --sub-color: #a8d7d4;
}

@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}
@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}
/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  color: var(--text-color-dark);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
  background-color: #f9f9f7;
  position: relative;
}

.inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.inner-w {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #222;
}

/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
Slider
==================================================== */
.text-slider {
  overflow: hidden;
  white-space: nowrap;
  margin: 0 0 4rem;
}
@media screen and (max-width: 834px) {
  .text-slider {
    margin: 0 0 3rem;
  }
}
@media screen and (max-width: 640px) {
  .text-slider {
    margin: 0 0 2rem;
  }
}
.text-slider__inner {
  display: inline-block;
  animation: scroll-left 240s linear infinite;
  white-space: nowrap;
}
.text-slider__item {
  display: inline-block;
  font-size: 96px;
  font-family: "Noto Serif Display", serif;
  color: rgba(195, 228, 226, 0.4);
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .text-slider__item {
    font-size: 64px;
  }
}
@media screen and (max-width: 640px) {
  .text-slider__item {
    font-size: 48px;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ====================================================
Controller
==================================================== */
.shop__controller {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 1300px) {
  .shop__controller {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .shop__controller {
    gap: 0.5rem;
  }
}
.shop__controller-item {
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding: 0 5rem;
  border-radius: 100vmax;
  border: 1px solid #c1bfbc;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 16px;
}
@media screen and (max-width: 834px) {
  .shop__controller-item {
    height: 44px;
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .shop__controller-item {
    height: 40px;
    padding: 0 2.5rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 499px) {
  .shop__controller-item {
    height: 36px;
    padding: 0 1.5rem;
    font-size: 13px;
  }
}
@media screen and (max-width: 376px) {
  .shop__controller-item {
    height: 32px;
    padding: 0 1rem;
    font-size: 12px;
  }
}
.shop__controller-item.active {
  background-color: #84cac6;
  color: var(--wh);
  border: none;
}
.shop__controller-item.active a {
  color: var(--wh);
}
.shop__controller-item:hover {
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .shop__controller .h-roll__link {
    height: 15.5px;
    line-height: 1;
  }
}
@media screen and (max-width: 640px) {
  .shop__controller .h-roll__link {
    line-height: 1.3;
  }
}

.area__controller {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 1300px) {
  .area__controller {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .area__controller {
    gap: 0;
  }
}
.area__controller-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  white-space: nowrap;
  font-size: 20px;
  font-family: "Liter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .area__controller-item {
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .area__controller-item {
    font-size: 18px;
  }
}
.area__controller-item a.h-roll__link {
  line-height: 1.3;
  height: 22px;
}
.area__controller-item.active {
  color: var(--accent-color);
}
.area__controller-item.active a {
  color: var(--accent-color);
}
.area__controller-item:hover {
  cursor: pointer;
}
.area__controller-item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: var(--text-color-dark);
  transform: rotate(45deg);
  margin-right: 3rem;
}
@media screen and (max-width: 834px) {
  .area__controller-item:not(:last-of-type)::after {
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .area__controller-item:not(:last-of-type)::after {
    margin-right: 1.5rem;
  }
}

/* ====================================================
Pagination
==================================================== */
.pagination {
  font-size: 20px;
  font-family: "Liter", sans-serif;
}

/* ====================================================
Under
==================================================== */
.under .ttl-en {
  font-family: "Liter", sans-serif;
  font-size: 16px;
  position: relative;
  padding-left: 1.2em;
  line-height: 1;
}
.under .ttl-en::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 11px;
  height: 11px;
  background: url(../img/common/ast.webp) no-repeat center/contain;
}

:root {
  --bk: #000;
  --wh: #fff;
  --text-color-dark: #222;
  --accent-color: #84cac6;
  --sub-color: #a8d7d4;
}

@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
.under .salon__container {
  position: relative;
  padding: 20rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .under .salon__container {
    padding: 10rem 0 0;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__container {
    padding: 5rem 0 0;
  }
}
@media screen and (max-width: 640px) {
  .under .salon__container {
    padding: 3rem 0 0;
  }
}
.under .salon__map {
  max-width: 1200px;
  min-width: 910px;
  position: absolute;
  right: -10%;
  top: -400px;
  z-index: -1;
}
@media screen and (max-width: 1680px) {
  .under .salon__map {
    width: 910px;
    min-width: auto;
  }
}
@media screen and (max-width: 1200px) {
  .under .salon__map {
    width: 800px;
    right: -10%;
    top: -300px;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__map {
    width: 600px;
    right: -15%;
    top: -250px;
  }
}
@media screen and (max-width: 640px) {
  .under .salon__map {
    width: 400px;
    right: -23%;
    top: -200px;
  }
}
.under .salon__map-img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.under .salon__category-section {
  padding: 18rem 0 0;
}
@media screen and (max-width: 1200px) {
  .under .salon__category-section {
    padding: 10rem 0 0;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__category-section {
    padding: 8rem 0 0;
  }
}
@media screen and (max-width: 640px) {
  .under .salon__category-section {
    padding: 5rem 0 0;
  }
}
.under .salon__category-title {
  font-size: 50px;
  font-family: "Noto Serif Display", serif;
  line-height: 1;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 1200px) {
  .under .salon__category-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__category-title {
    scroll-margin-top: 0;
  }
}
.under .salon__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 834px) {
  .under .salon__img {
    max-width: 100%;
    height: auto;
  }
}
.under .salon__img.no-image {
  -o-object-fit: contain;
     object-fit: contain;
}
.under .salon__img-wrap {
  width: 100%;
  max-width: 550px;
  height: 350px;
  flex-shrink: 0;
  background-color: #DDDDDD;
}
@media (max-width: 1100px) {
  .under .salon__img-wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__img-wrap {
    height: auto;
  }
}
.under .salon__list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin-top: 6.5rem;
}
@media screen and (max-width: 1200px) {
  .under .salon__list {
    gap: 8rem;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__list {
    gap: 5rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .under .salon__list {
    gap: 3rem;
  }
}
.under .salon__item {
  display: flex;
  align-items: center;
  gap: 7.6rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .under .salon__item {
    gap: 5rem;
  }
}
@media (max-width: 1100px) {
  .under .salon__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__item {
    gap: 3rem;
  }
}
.under .salon__item-content {
  width: 100%;
}
.under .salon__item-title {
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .under .salon__item-title {
    font-size: 24px;
  }
}
.under .salon__item-slug {
  font-size: 20px;
  font-family: "Liter", sans-serif;
  margin-top: 1rem;
}
@media screen and (max-width: 834px) {
  .under .salon__item-slug {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .under .salon__item-slug {
    font-size: 16px;
  }
}
@media screen and (max-width: 376px) {
  .under .salon__item-slug {
    font-size: 14px;
  }
}
.under .salon__item-info {
  margin-top: 5.5rem;
}
@media screen and (max-width: 1200px) {
  .under .salon__item-info {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__item-info {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .under .salon__item-info {
    margin-top: 2rem;
  }
}
.under .salon__item-zip {
  line-height: 1.85;
}
.under .salon__item-addr {
  line-height: 1.85;
}
.under .salon__item-tel {
  font-size: 20px;
  font-family: "Liter", sans-serif;
  margin-top: 1.5rem;
}
.under .salon__item-tel span {
  font-size: 15px;
}
.under .salon__item-map {
  font-size: 12px;
  text-decoration: underline;
}
.under .salon__item-map span {
  text-decoration: none;
  font-size: 17px;
  transform: translateY(5px);
  margin-left: 5px;
}
.under .salon__item-sns {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .under .salon__item-sns {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .under .salon__item-sns {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .under .salon__item-sns {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 376px) {
  .under .salon__item-sns {
    gap: 0.5rem;
  }
}
.under .salon__item-reservebtn {
  font-size: 16px;
  width: 105px;
  height: 32px;
  border-radius: 100vmax;
  background-color: #c3e4e2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .under .salon__item-reservebtn {
    height: 25px;
    font-size: 13px;
  }
}
.under .salon__item-reservebtn:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.under .salon__item-instagram {
  font-size: 14px;
  font-family: "Liter", sans-serif;
  width: 109px;
  height: 32px;
  border-radius: 100vmax;
  background-color: var(--wh);
  border: 1px solid #c1bfbc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .under .salon__item-instagram {
    height: 25px;
    font-size: 13px;
  }
}
.under .salon__item-instagram:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.under .salon__item-instagram svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.under .salon__item-detail {
  width: 109px;
  height: 32px;
  background-color: #464544;
  color: var(--wh);
  font-size: 14px;
  font-family: "Liter", sans-serif;
  border-radius: 100vmax;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 640px) {
  .under .salon__item-detail {
    height: 25px;
    font-size: 13px;
  }
}
.under .salon__item-detail:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}/*# sourceMappingURL=salon.css.map */