.ly_page-mv {
  border-top: solid 1px #ccc;
  /*border-bottom: solid 1px #ccc;*/
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
  align-items: center;
  width: 100%;
  height: clamp(300px, 50vw, 400px);
  background: var(--color-bg);
  background: #f5f5f5;
  /*background: linear-gradient(90deg, rgb(255, 255, 255) 0%, RGB(250, 252, 255) 100%);*/ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.015);
}
/* ã‚³ãƒ³ãƒ†ãƒ³ãƒ„å…¨ä½“ */
.ly_page-mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 76rem;
  padding: 0 1.5rem;
  width: 100%;
}
@media print, screen and (max-width: 40.000em) {
  .ly_page-mv__content {
    width: 100%;
    padding: 0 1.5rem;
    top: 45%;
  }
}
/* ã‚µãƒ–ã‚¿ã‚¤ãƒˆãƒ« */
.ly_page-mv__subtitle {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  color: var(--pink);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  width: fit-content;
}
/* ãƒ¡ã‚¤ãƒ³ã‚¿ã‚¤ãƒˆãƒ« */
.ly_page-mv__title {
  display: block;
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 5vw, 2.5rem);
  letter-spacing: 0;
  font-weight: 400;
  width: fit-content;
}
.ly_page-mv__text span, .ly_page-mv__text h1 {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.ly_page-mv__text span::before, .ly_page-mv__text h1::before {
  content: "";
  display: block;
  background-color: var(--pink);
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
}
.ly_page-mv__text.__anima span::before, .ly_page-mv__text.__anima h1::before {
  animation: anima_bg_6 1.3s ease-out 1 forwards;
  animation-fill-mode: forwards;
}
.ly_page-mv__text span:nth-child(1)::before {
  animation-delay: 0s;
}
.ly_page-mv__text span:nth-child(2)::before {
  animation-delay: 0.3s;
}
.ly_page-mv__text h1::before {
  animation-delay: 0.6s;
}
.ly_page-mv__text.__anima span, .ly_page-mv__text.__anima h1 {
  animation: anima_fadein_6 0.35s ease-out 0.7s 1 forwards;
  animation-fill-mode: forwards;
}
/* ========================= */
/* å…±é€šã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ */
/* ========================= */
@keyframes anima_fadein_6 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anima_bg_6 {
  0% {
    left: 0;
    right: 100%;
  }
  40% {
    left: 0;
    right: 0;
  }
  60% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
.ly_page-mv__breadcrumbs {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 76rem;
  padding: 0 1.5rem;
  width: 100%;
}
.ly_page-mv__breadcrumbs .breadcrumbs {
  width: fit-content;
  z-index: 1;
  opacity: 0;
  position: relative;
}
.ly_page-mv__breadcrumbs .breadcrumbs::before {
  content: "";
  display: block;
  background-color: var(--pink);
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
}
/* ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³é©ç”¨ */
.ly_page-mv__breadcrumbs .breadcrumbs.__anima::before {
  animation: anima_bg_6 1.3s ease-out 1 forwards;
}
/* ãƒ•ã‚§ãƒ¼ãƒ‰ã‚¤ãƒ³ */
.ly_page-mv__breadcrumbs .breadcrumbs.__anima {
  animation: anima_fadein_6 0.5s ease-out 0.9s 1 forwards;
}
.bl-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start; /* å·¦å¯„ã› */
  padding: 0;
  list-style: none;
}
.bl-page-links li {
  margin: 0;
  position: relative;
}
.bl-page-links a {
  display: inline-block;
  padding: 0.65rem 2rem 0.65rem 1rem;
  background-color: var(--pink);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}
/*.bl-page-links a:hover {
  background-color: #0056b3;
}*/
.bl-page-links li::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s;
}
.bl-page-links--4cols, .bl-page-links--3cols, .bl-page-links--2cols {
  justify-content: space-between;
}
.bl-page-links--4cols li {
  flex-basis: 23%;
}
.bl-page-links--3cols li {
  flex-basis: 31%;
}
@media print, screen and (max-width: 431px) {
  .bl-page-links--4cols li, .bl-page-links--3cols li {
    flex-basis: 48%;
  }
}
.bl-page-links--2cols li {
  flex-basis: 48%;
}
.bl-page-links--4cols li a, .bl-page-links--3cols li a, .bl-page-links--2cols li a {
  display: block;
  width: 100%;
  padding: 1rem;
}
.ly_page-teazer img {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  object-fit: cover;
  display: block;
}
@media print, screen and (max-width: 431px) {
  .ly_page-teazer img {
    aspect-ratio: 8 / 5;
  }
}
.access-route {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  justify-content: flex-start; /* ← ここを変更 */
  counter-reset: step;
}
.access-route li {
  width: calc((100% - 2.5rem * 2) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.access-route li::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1rem;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 2;
  background: rgba(240, 127, 161, 0.8); /* #F07FA1 の透過バージョン */
  color: #fff;
}
.access-route img {
  width: 100%;
  height: auto;
}
.access-route h3 {
  font-size: 1.125rem;
  margin: 1rem 0;
}
.access-route p {
  font-size: 0.8125em;
  color: #666;
}
/* ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ–å¯¾å¿œ */
@media (max-width: 821px) {
  .access-route li {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 431px) {
  .access-route {
    flex-direction: column;
  }
  .access-route li {
    flex: 1 1 100%;width: 100%; 
  }
}
.first-intro__monshin {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media print, screen and (max-width: 431px) {
  .first-intro__monshin {
    display: block;
  }
}
.first-intro__monshin > * {
  flex: 1 1 calc(33.333% - 1.333rem); /* 3åˆ—å‡ç­‰é…ç½®ï¼ˆgapã‚’è€ƒæ…®ï¼‰ */
  margin-bottom: 1rem;
}
.first-intro__monshin .button {
  max-width: 100%;
}
.first_reservation__flow {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.first_reservation__flow li {
  flex: 0 0 calc(33.333% - 2rem); /* 3åˆ—ãƒ¬ã‚¤ã‚¢ã‚¦ãƒˆï¼ˆgapè€ƒæ…®ï¼‰ */
}
@media (max-width: 821px) {
  .first_reservation__flow li {
    flex: 1 1 calc(50% - 2rem); /* 2åˆ— */
  }
}
@media (max-width: 431px) {
  .first_reservation__flow li {
    flex: 1 1 100%; /* 1åˆ— */
  }
}
.first_reservation__flow img {
 width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}
.first_reservation__flow h4 {
  margin-top: 1rem;
  font-size: 1.25rem;
}
.first_reservation__flow p {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.bl_types__list .bl_card__item {
  background: var(--color-bg);
  padding: 2rem;
}
.bl_types__list .bl_card__item p {
  font-size: 0.75rem;
}
.bl_types__list .bl_card__item .section-caption {
  font-size: clamp(0.875rem, 4vw, 1.125rem);
}
.bl_treatment__list--page {
  border: solid 1px #ccc;
  padding: 2rem 1rem;
}
.hair-removal__price .table-price__complex th, .hair-removal__price .table-price__complex td {
  font-size: 0.8125rem;
  padding: 1rem;
}
.hair-removal__price .table-price__complex th:nth-child(2), .hair-removal__price .table-price__complex th:nth-child(3), .hair-removal__price .table-price__complex th:nth-child(4) {
  width: 17%;
}
@media print, screen and (max-width: 431px) {
  .table-price__simple th, .table-price__simple td {
    width: 50%;
  }
  .table-price__3cols th, .table-price__3cols td {
    width: 33.333%;
  }
}
.table-price__complex-2 {
  table-layout: fixed;
}
.table-price__complex-2 th, .table-price__complex-2 td {
  font-size: 0.8125rem;
  padding: 1rem 0.875rem;
}
.acne_types {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.acne_types__row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.acne_types__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: calc(50% - 1rem); /* 2åˆ—ã«é…ç½® */
}
.acne_types__item img {
  width: 150px; /* ç”»åƒã‚µã‚¤ã‚ºèª¿æ•´ */
  height: auto;
  flex-shrink: 0;
}
.acne_types__text {
  flex: 1;
}
.acne_types__text h3 {
  margin: 0;
  font-size: 1.125rem;
}
.acne_types__text p {
  margin: 5px 0 0;
  font-size: 0.875rem;
}
@media (max-width: 431px) {
  .acne_types__row {
    flex-direction: column;
  }
  .acne_types__item {
    width: 100%;
  }
}
.shimi_types__row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.shimi_types__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-basis: calc(50% - 1rem); /* 2åˆ—ãƒ¬ã‚¤ã‚¢ã‚¦ãƒˆ */
}
.shimi_types__item img {
  width: 180px; /* ç”»åƒã‚µã‚¤ã‚ºèª¿æ•´ */
  height: auto;
  padding: 1rem;
  background: #fff;
  flex-shrink: 0;
}
.shimi_types__text {
  flex: 1;
}
.shimi_types__text h3 {
  margin: 0;
  font-size: 1.25rem;
}
.shimi_types__text p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .shimi_types__row {
    flex-direction: column;
  }
  .shimi_types__item {
    width: 100%;
    align-items: flex-start;
  }
  .shimi_types__item img {
    width: 130px; /* ç”»åƒã‚µã‚¤ã‚ºèª¿æ•´ */
    padding: 0;
  }
}
.bl_flowchart--zeoflow h3 {
  font-size: clamp(1.1875rem, 1.6vw, 1.25rem);
  margin-top: 1.25rem;
}
.bl_flowchart--zeoflow p {
  font-size: 0.8125rem;
  text-align: left;
  font-family: var(--font-primary);
}
.news-wrap {
  display: flex;
  gap: 3rem;
}
.news-content {
  flex: 7.25;
}
.news-sidebar {
  flex: 2.75;
}
@media (max-width: 768px) {
  .news-wrap {
    flex-direction: column;
  }
  .news-content, .news-sidebar {
    flex: none;
    width: 100%;
  }
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list li {
  position: relative;
  padding: 0;
  border-bottom: 1px solid #ddd;
}
.news-list li:first-child {
  border-top: 1px solid #ddd; /* æœ€åˆä»¥å¤–ã® li ã«é©ç”¨ */
}
.news-list a {
  text-decoration: none;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  padding: 1.75rem 0; /* ä½™ç™½ã‚’ a ã«é©ç”¨ */
  width: 100%; /* ã‚¯ãƒªãƒƒã‚¯ç¯„å›²ã‚’æœ€å¤§åŒ– */
  height: 100%; /* ã‚¯ãƒªãƒƒã‚¯ç¯„å›²ã‚’æœ€å¤§åŒ– */
  box-sizing: border-box; /* padding ã‚’å«ã‚ãŸå¹…ã« */
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.65rem;
}
.news-list time {
  color: #aaa;
}
.news-meta .category {
  background-color: var(--color-bg);
  color: var(--purple);
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.news-list .title {
  font-size: 1.05rem;
  font-weight: 500;
  font-family: var(--font-secondary);
  display: block;
}
.news-list li::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--pink);
  border-right: 1px solid var(--pink);
  transform: translateY(-50%) rotate(45deg);
}
.news-navigation {
  display: flex;
  justify-content: space-between;
  margin: 6rem 0 4rem;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.news_pagination {
  display: flex;
  justify-content: center;
  margin: clamp(3rem, 5vw, 6rem) 0;
  font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
}
.news_pagination a, .news_pagination span {
  margin: 0 5px;
  padding: clamp(8px, 2vw, 10px) clamp(10px, 3vw, 15px);
  border: 1px solid #ddd;
  text-decoration: none;
  color: #555;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.news_pagination a:hover {
  background-color: var(--pink);
  color: #fff;
}
.news_pagination .current {
  background-color: var(--pink);
  color: #fff;
  border: 1px solid var(--pink);
}
.news_pagination a:active {
  background-color: #d66482;
  color: #fff;
}
.news-sidebar .widget {
  margin-bottom: 3rem;
}
.news-sidebar .widget-title {
  font-size: 1.25rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  margin-bottom: 0.65rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid #ddd;
}
.news-sidebar .widget ul li a {
  padding: 0.65rem 0;
  font-size: 0.875rem;
  text-decoration: underline;
  display: block;
  font-family: var(--font-secondary);
}
.news-sidebar .widget ul li a:hover {
  text-decoration: none;
}
.sitemap-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-wrap .menu-item {
  padding: 1rem 1.5rem;
  margin: 10px 0;
  background: #f5f5f5;
  font-size: 1.125rem;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: var(--font-secondary);
}
.sitemap-wrap .menu-item a {
  text-decoration: none;
}
.sitemap-wrap .sub-menu {
  list-style: none;
  margin: 1rem 0 0;
}
.sitemap-wrap .sub-menu .menu-item {
  padding: 5px 0.5rem;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  list-style-type: disc;
  list-style-position: inside;
}
.recruit_job--card {
  margin: 3rem auto;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: solid 1px #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
.recruit_job--card .job-image {
  flex-basis: 35%;
}
.recruit_job--card .job-content {
  flex-basis: 61%;
}
@media print, screen and (max-width: 431px) {
  .recruit_job--card .bl_card__item {
    flex-basis: 100%;
  }
}
.recruit_job--card .job-content .title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.recruit_job--card .job-content .lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-family: var(--font-secondary);
}
.recruit_job--card dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit_job--card dt {
  font-weight: bold;
  width: 20%;
  font-family: var(--font-secondary);
  color: var(--pink);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  padding-bottom: 0.5rem;
}
.recruit_job--card dd {
  width: 75%;
  margin: 0;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  padding-bottom: 0.5rem;
}
.staff-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
}
.staff-requirements .requirement {
  flex: 1 1 calc(50% - 20px);
  background: #ffffff;
  border: solid 1px #ccc;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 0 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media print, screen and (max-width: 431px) {
  .staff-requirements .requirement {
    flex: 1 1 calc(100%);
  }
}
.staff-requirements .requirement h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--purple);
}
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.job-tags span {
  display: inline-block;
  background-color: var(--color-bg);
  color: var(--purple);
  font-size: 0.8125rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.recruit-bonus {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 3rem) 1rem;
  background: rgb(249, 231, 132);
  background: linear-gradient(53deg, rgba(249, 231, 132, 0.75) 100%, rgba(249, 231, 132, 1) 53%, rgba(255, 255, 255, 1) 0%);
  margin-bottom: 3rem;
}
.recruit-bonus .bonus-amount {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-secondary);
  color: var(--pink);
}
.recruit-notice {
  padding: 0.5rem 1rem;
  background:
    rgb(249, 231, 132);
  background:
    linear-gradient(53deg, rgba(249, 231, 132, 0.75) 100%, rgba(249, 231, 132, 1) 53%, rgba(255, 255, 255, 1) 0%);
}
.required-srt {
  padding: 2px 6px 2px 5px;
  background: #CC0000;
  font-size: 0.75rem;
  float: right;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.recruit-table p:last-child,.recruit-table ul:last-child{margin:0;}
.category-posts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PCï¼š4åˆ— */
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .category-posts__list {
    grid-template-columns: repeat(2, 1fr); /* ã‚¿ãƒ–ãƒ¬ãƒƒãƒˆï¼š2åˆ— */
  }
}
@media screen and (max-width: 600px) {
  .category-posts__list {
    grid-template-columns: 1fr; /* ã‚¹ãƒžãƒ›ï¼š1åˆ— */
  }
}
.category-posts__item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.25rem;
}
.category-posts__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.category-posts__thumbnail {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3æ¯”çŽ‡ = 3 / 4 = 0.75 */
  overflow: hidden;
  margin-bottom: 1rem;
}
.category-posts__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-posts__title {
  font-size: 0.9375rem;
  margin: 0.5rem 0 2rem;
}
.category-posts__button {
  font-size: 0.75rem;
  padding: 0.75rem;
  margin: 0 1rem;
  width: calc(100% - 2rem);
}
.price_alllist .grid-container {}
.price_alllist .button {
  display: none;
}
.price_alllist .table-bordered {
  margin: 2rem 0 3rem;
}

.price_alllist .table-bordered th {
  width: 30%;
  
}
.price_alllist .table-bordered td:last-child {
  text-align: right;
}
.age-questions {
  padding: 2rem 2.5rem;
  background: #f5f5f5;
}
.age-questions li {
  padding: 0.45rem;
  line-height: 1;
}
.age-questions li label {
  font-size: 0.9375rem;
}
.age-questions .age-check-item {
  display: inline-block;
  content: "";
  margin: 0 0.65rem 0 0;
  width: 20px;
  height: 20px;
  border: 2px #c3a71f solid;
  border-color: var(--pink);
  border-radius: 5px;
}
.age-button {
  background-color: #fff;
  color: var(--pink);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 1.125rem 1rem;
  border: solid 1px #ccc;
  border-top-color: rgb(204, 204, 204);
  border-right-color: rgb(204, 204, 204);
  border-bottom-color: rgb(204, 204, 204);
  border-left-color: rgb(204, 204, 204);
  border-radius: 30px;
  border-color: var(--pink);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
  line-height: 1;
  letter-spacing: 0;
  width: 100%;
  max-width: 300px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  margin-bottom: 1.5rem;
}
.age-diagnosis {
  color: var(--pink);
  font-size: 1rem;
  font-weight: 500;
}
.hair-removal--table td:nth-child(2) {white-space:nowrap;}
@media screen and (max-width: 431px) {
  .hair-removal--table th {width:40%;}
}
