/* =========================================================
   Salon Profile
========================================================= */

.salon_profile {
  width: 100%;
  padding: 64px 20px 40px;
  box-sizing: border-box;
  overflow: hidden;
  color: #675748;
  font-family: "Noto Serif JP", serif;
  background: #fffdfc;
}

.salon_profile,
.salon_profile * {
  box-sizing: border-box;
}

.salon_profile__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================================
   Heading
========================================================= */

.salon_profile__header {
  margin: 0 0 24px;
}

.salon_profile__heading-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.salon_profile__title {
  flex: 0 0 auto;
  margin: 0;
  color: #b98787;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.2;
}

.salon_profile__title-line {
  display: block;
  width: 140px;
  height: 1px;
  background: #d7b4b4;
}

.salon_profile__subtitle {
  margin: 5px 0 0;
  color: #b98787;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .08em;
}


/* =========================================================
   Profile table
========================================================= */

.salon_profile__table {
  width: 100%;
  overflow: hidden;
  border: 1px solid #eee4e1;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(103, 87, 72, .04);
}

.salon_profile__row {
  display: grid;
  grid-template-columns: minmax(190px, 24%) minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  border-bottom: 1px solid #eee7e4;
}

.salon_profile__row:last-child {
  border-bottom: 0;
}

.salon_profile__label,
.salon_profile__value {
  min-width: 0;
}

.salon_profile__label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 30px;
  color: #b98787;
  background: #fbf2f1;
}

.salon_profile__label-text {
  font-size: 16px;
  line-height: 1.6;
  white-space: nowrap;
}

.salon_profile__icon {
  flex: 0 0 22px;
  width: 22px;
  color: #d6aaaa;
  font-size: 21px;
  line-height: 1;
  text-align: center;
}

.salon_profile__value {
  display: flex;
  align-items: center;
  padding: 17px 38px;
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.salon_profile__value p {
  margin-top: 0;
}

.salon_profile__value p:last-child {
  margin-bottom: 0;
}

.salon_profile__value--textarea {
  display: block;
}


/* =========================================================
   Concept
========================================================= */

.salon_profile__row--concept .salon_profile__value {
  display: block;
  padding-top: 23px;
  padding-bottom: 23px;
}

.salon_profile__concept-title {
  margin: 0 0 8px;
  color: #bb8585;
  font-size: 20px;
  line-height: 1.6;
}

.salon_profile__concept-description {
  font-size: 14px;
  line-height: 1.9;
}

.salon_profile__concept-description p {
  margin: 0;
}


/* =========================================================
   Features
========================================================= */

.salon_profile__row--features .salon_profile__value {
  padding-top: 15px;
  padding-bottom: 15px;
}

.salon_profile__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 34px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.salon_profile__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  font-size: 15px;
  line-height: 1.6;
}

.salon_profile__check {
  display: inline-flex;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  background: #efb1b5;
}

.salon_profile__feature-text {
  min-width: 0;
  overflow-wrap: anywhere;
}


/* =========================================================
   SNS
========================================================= */

.salon_profile__sns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.salon_profile__sns-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  min-height: 118px;
  padding: 18px 72px 18px 180px;
  overflow: hidden;
  border: 1px solid #f0dcda;
  border-radius: 7px;
  background: #fff8f7;
}

.salon_profile__sns-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.salon_profile__sns-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.salon_profile__sns-title {
  margin: 0 0 5px;
  color: #b98585;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
}

.salon_profile__sns-description {
  font-size: 13px;
  line-height: 1.7;
}

.salon_profile__sns-description p {
  margin: 0;
}

.salon_profile__instagram-icon {
  color: #b98585;
  font-size: 33px;
  line-height: 1;
}

.salon_profile__qr {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-left: 24px;
}

.salon_profile__qr-link {
  display: block;
}

.salon_profile__qr-image {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.salon_profile__sns-decoration {
  position: absolute;
  z-index: 1;
  width: 110px;
  height: 110px;
  pointer-events: none;
  opacity: .35;
}

.salon_profile__sns-decoration--left {
  left: 30px;
  bottom: -15px;
}

.salon_profile__sns-decoration--right {
  right: 20px;
  bottom: -20px;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) and (min-width: 768px) {

  .salon_profile__sns-item {
    padding-left: 35px;
    padding-right: 30px;
  }

  .salon_profile__sns-title {
    font-size: 21px;
  }

  .salon_profile__qr-image {
    width: 72px;
    height: 72px;
  }

}


/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {

  .salon_profile {
    padding: 22px 12px 36px;
  }

  .salon_profile__inner {
    max-width: 100%;
    padding-top: 64px;
  }


  /* Heading */

  .salon_profile__header {
    margin-bottom: 18px;
  }

  .salon_profile__heading-row {
    gap: 10px;
  }

  .salon_profile__title {
    font-size: clamp(28px, 9vw, 36px);
  }

  .salon_profile__title-line {
    display: none;
  }

  .salon_profile__subtitle {
    margin-top: 2px;
    font-size: 11px;
  }


  /* Profile table */

  .salon_profile__row {
    grid-template-columns: 35% minmax(0, 65%);
  }

  .salon_profile__label {
    gap: 7px;
    padding: 14px 10px;
  }

  .salon_profile__icon {
    flex-basis: 17px;
    width: 17px;
    font-size: 16px;
  }

  .salon_profile__label-text {
    min-width: 0;
    font-size: clamp(10px, 3.1vw, 13px);
    white-space: normal;
  }

  .salon_profile__value {
    padding: 14px 16px;
    font-size: clamp(11px, 3.2vw, 14px);
    line-height: 1.7;
  }


  /* Concept */

  .salon_profile__row--concept .salon_profile__value {
    padding: 18px 16px;
  }

  .salon_profile__concept-title {
    margin-bottom: 7px;
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.6;
  }

  .salon_profile__concept-description {
    font-size: clamp(10px, 2.9vw, 12px);
    line-height: 1.8;
  }


  /* Features */

  .salon_profile__row--features .salon_profile__value {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .salon_profile__features {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .salon_profile__feature {
    gap: 6px;
    font-size: clamp(10px, 2.9vw, 12px);
  }

  .salon_profile__check {
    flex-basis: 15px;
    width: 15px;
    height: 15px;
    font-size: 9px;
  }


  /* SNS */

  .salon_profile__sns-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .salon_profile__sns-item {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 105px;
    padding: 14px 26px 14px 82px;
  }

  .salon_profile__sns-title {
    font-size: clamp(20px, 6vw, 26px);
  }

  .salon_profile__sns-description {
    font-size: clamp(9px, 2.8vw, 11px);
    line-height: 1.6;
  }

  .salon_profile__instagram-icon {
    font-size: 27px;
  }

  .salon_profile__qr {
    margin-left: 12px;
  }

  .salon_profile__qr-image {
    width: clamp(60px, 18vw, 76px);
    height: clamp(60px, 18vw, 76px);
  }

}


/* =========================================================
   Small SP
========================================================= */

@media (max-width: 374px) {

  .salon_profile {
    padding-left: 8px;
    padding-right: 8px;
  }

  .salon_profile__row {
    grid-template-columns: 36% minmax(0, 64%);
  }

  .salon_profile__label {
    padding-left: 8px;
    padding-right: 6px;
  }

  .salon_profile__value {
    padding-left: 12px;
    padding-right: 10px;
  }

  .salon_profile__sns-item {
    padding-left: 64px;
    padding-right: 14px;
  }

  .salon_profile__qr {
    margin-left: 8px;
  }

}

/* =========================================================
   Access
========================================================= */

.access {
  width: 100%;
  padding: 64px 20px 52px;
  box-sizing: border-box;
  overflow: hidden;
  color: #675748;
  font-family: "Noto Serif JP", serif;
}

.access,
.access *,
.access *::before,
.access *::after {
  box-sizing: border-box;
}

.access__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================================
   Header
========================================================= */

.access__header {
  margin: 0 0 22px;
  text-align: center;
}

.access__title {
  margin: 0;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .05em;
}

.access__title-ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 10px;
  font-size: 16px;
  line-height: 1.5;
}

.access__title-ja::before,
.access__title-ja::after {
  display: block;
  width: 62px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .45;
}

.access__catch {
  margin: 0 0 3px;
  font-size: 17px;
  line-height: 1.8;
}

.access__lead {
  margin: 0;
  font-size: 10px;
  line-height: 1.8;
}

.access__lead p {
  margin: 0;
  font-size: 17px;
}

@media (max-width: 767px) {

  .access__lead p {
    font-size: 12px;
  }
}
/* =========================================================
   Common box
========================================================= */

.access__visual,
.access__info-item,
.access__cta {
  border: 1px solid rgba(103, 87, 72, .12);
  border-radius: 5px;
  background: rgba(255, 255, 255, .28);
}


/* =========================================================
   Map / exterior
========================================================= */

.access__visual-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 12px;
  margin-bottom: 10px;
}

.access__visual {
  min-width: 0;
  padding: 10px 13px 13px;
}

.access__item-title {
  position: relative;
  margin: 0 0 8px;
  padding-left: 23px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  font-size: 20px;
}

.access__item-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  transform: translateY(-50%);
  color: #c87677;
  font-size: 20px;
  line-height: 1;
}

.access__item-title--map::before {
  content: "⌖";
}

.access__item-title--exterior::before {
  content: "◉";
}

.access__item-title--address::before {
  content: "⌂";
}

.access__item-title--directions::before {
  content: "♟";
}

.access__item-title--parking::before {
  content: "▰";
}

.access__item-title--station::before {
  content: "▣";
}


/* Map */

.access__map {
  position: relative;
  width: 100%;
  min-height: 165px;
  overflow: hidden;
}

.access__map iframe {
  display: block;
  width: 100% !important;
  height: 165px !important;
  border: 0;
}


/* Exterior */

.access__exterior {
  width: 100%;
  height: 165px;
  margin: 0;
  overflow: hidden;
}

.access__image {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
}


/* =========================================================
   Information
========================================================= */

.access__info-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1.15fr)
    minmax(0, .95fr)
    minmax(0, 1fr);
  gap: 9px;
  margin-bottom: 10px;
}

.access__info-item {
  min-width: 0;
  min-height: 126px;
  padding: 11px 13px;
}

.access__text {
  font-size: 9px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: normal;
}

.access__text p {
  margin: 0;
  font-size: 16px;
}

.access__text p + p {
  margin-top: 4px;
}

@media (max-width: 767px) {

.access__text p{
   font-size: 11px;}

  }

/* =========================================================
   CTA
========================================================= */

.access__cta-grid {
  display: grid;
  grid-template-columns: .95fr 1.1fr;
  gap: 10px;
}

.access__cta {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  gap: 15px;
  padding: 9px 12px 9px 14px;
}

.access__cta--reservation {
  background: rgba(231, 166, 166, .22);
}

.access__cta-content {
  min-width: 0;
  flex: 1 1 auto;
}

.access__cta-title {
  position: relative;
  margin: 0 0 3px;
  padding-left: 28px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.access__cta-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.access__cta-title--map::before {
  content: "📍";
  font-size: 20px;
}

.access__cta-title--reservation::before {
  content: "▦";
  color: #c87677;
  font-size: 21px;
}

.access__cta-description {
  padding-left: 28px;
  font-size: 8px;
  line-height: 1.55;
}

.access__cta-description p {
  margin: 0;
  font-size: 16px;
}

@media (max-width: 767px) {

.access__cta-description p {
  font-size: 11px;
}
}

/* =========================================================
   Button
========================================================= */

.access__button {
  display: inline-flex;
  width: 138px;
  min-width: 138px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  border: 1px solid rgba(103, 87, 72, .14);
  border-radius: 999px;
  background: #fff;
  color: #675748;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition:
    opacity .2s ease,
    transform .2s ease;
}

.access__button::after {
  margin-left: 8px;
  content: "→";
}

.access__button:hover {
  opacity: .75;
  transform: translateY(-1px);
}


/* =========================================================
   Tablet adjustment
========================================================= */

@media (min-width: 768px) and (max-width: 900px) {

  .access {
    padding-right: 30px;
    padding-left: 30px;
  }

  .access__inner {
    max-width: 100%;
  }

  .access__info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access__info-item {
    min-height: 0;
  }
}


/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {

  .access {
    padding: 64px 20px 32px;
  }

  .access__inner {
    max-width: 100%;
  }


  /* Heading */

  .access__header {
    margin-bottom: 18px;
  }

  .access__title {
    font-size: 40px;
  }

  .access__title-ja {
    margin-top: 5px;
    margin-bottom: 8px;
    font-size: 11px;
  }

  .access__title-ja::before,
  .access__title-ja::after {
    width: 43px;
  }

  .access__catch,
  .access__lead {
    font-size: 12px;
    line-height: 1.7;
  }


  /* Map / exterior */

  .access__visual-grid {
    display: block;
    margin-bottom: 7px;
  }

  .access__visual {
    width: 100%;
    padding: 9px 8px 8px;
  }

  .access__visual + .access__visual {
    margin-top: 7px;
  }

  .access__item-title {
    margin-bottom: 7px;
    font-size: 14px;
  }

  .access__map {
    min-height: 132px;
  }

  .access__map iframe {
    height: 132px !important;
  }

  .access__exterior {
    height: auto;
    aspect-ratio: 2 / 1;
  }


  /* Information */

  .access__info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 7px;
  }

  .access__info-item {
    min-width: 0;
    min-height: 100%;
    padding: 9px 8px;
  }

  .access__text {
    font-size: 8px;
    line-height: 1.65;
  }


  /* CTA */

  .access__cta-grid {
    display: block;
  }

  .access__cta {
    width: 100%;
    min-height: 0;
    gap: 8px;
    padding: 9px;
  }

  .access__cta + .access__cta {
    margin-top: 7px;
  }

  .access__cta-title {
    padding-left: 25px;
    font-size: 14px;
  }

  .access__cta-description {
    padding-left: 25px;
    font-size: 7px;
  }

  .access__button {
    width: 104px;
    min-width: 104px;
    min-height: 26px;
    padding: 5px 8px;
    font-size: 12px;
  }
}


/* =========================================================
   Very small devices
========================================================= */

@media (max-width: 374px) {

  .access {
    padding-right: 14px;
    padding-left: 14px;
  }

  .access__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .access__button {
    width: 100%;
    min-width: 0;
  }
}