/**
 * File: main.css
 * Usage: トップページのスタイルを定義します。
*/

.ly_fv {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.bl_fvText {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 20px;
  z-index: 1;
  width: 32vw;
}

.bl_fvText img {
  width: 100%;
}

.bl_fvText::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 118 / 68;
  background: url(../img/common/logo.svg) no-repeat center/contain;
  transform: translateY(40%);
  z-index: -1;
}

.bl_fvText::after {
  content: '';
  position: absolute;
  background: #fff;
  opacity: 0.6;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.bl_fvImgsWrapper {
  aspect-ratio: 375 / 500;
  width: 100%;
  z-index: -1;
}

.bl_fvImgs {
  position: relative;
  height: 100%;
}

.bl_fvImgs .bl_fvImg {
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.bl_fvImg.is-visible:nth-child(1) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: none;
}

.bl_fvImg.is-visible:nth-child(2) {
  transition-delay: 0.8s;
  opacity: 1;
  transform: none;
}

.bl_fvImg.is-visible:nth-child(3) {
  transition-delay: 1.4s;
  opacity: 1;
  transform: none;
}

.bl_fvImgs img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.bl_fvImgs .bl_fvImg:nth-child(1) {
  position: absolute;
  top: 0;
  right: 20px;
  width: 56vw;
  aspect-ratio: 212 / 225;
}

.bl_fvImgs .bl_fvImg:nth-child(2) {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 38vw;
  aspect-ratio: 140 / 200;
}

.bl_fvImgs .bl_fvImg:nth-child(3) {
  position: absolute;
  bottom: 0px;
  left: 20px;
  width: 38vw;
  aspect-ratio: 140 / 100;
}

.bl_secTop {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ly_mind {
  margin-block: 80px 120px;
  padding-inline: 20px;
  line-height: 1.4;
}

.ly_mind h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 28px;
}

.bl_mindImgs {
  margin-top: 76px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  max-width: 1440px;
  margin-inline: auto;
}

.bl_mindImg:nth-child(1) {
  max-width: 252px;
}

.bl_mindImg:nth-child(2) {
  margin-top: 80px;
  max-width: 195px;
}

.ly_reason {
  padding-inline: 20px;
}

.bl_reasonTop {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bl_reasonTop p {
  letter-spacing: 0.1em;
}

.bl_reasonCont {
  margin-top: 80px;
  position: relative;
}

.bl_reasonCont::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  width: 1px;
  background: #acacac;
  z-index: 0;
}

.bl_reasonCont_item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  margin-left: 10vw;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.bl_reasonCont_item.is-visible {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .bl_reasonCont_item {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.bl_reasonCont_item::before {
  content: '';
  position: absolute;
  width: 21px;
  height: 21px;
  transform: translateX(-10vw);
  background: linear-gradient(180deg, #ddefa1 0%, #c5e7a8 100%);
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bl_reasonCont_item span {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 50%,
      rgba(170, 214, 21, 1) 50%,
      rgba(110, 195, 37, 1) 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  border-radius: 50%;
  padding-bottom: 30px;
  font-size: 16px;
  color: #333;
  z-index: 0;
  transition:
    transform 0.3s,
    background 0.3s,
    color 0.3s;
  transform: translate(-20%, -50%);
}

.bl_reasonCont_itemCont {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl_reasonCont_itemImg {
  aspect-ratio: 18 / 12;
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
}

.bl_reasonCont_itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl_reasonCont_itemCont p {
  font-weight: 500;
}

.ly_symptoms {
  padding: 80px 20px 40px;
  background: #f8f5e9;
}

.bl_symptomsTop {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.bl_symptomSwiper {
  margin-block: 40px;
}

.bl_symptomCategories {
  padding-inline: 0;
}

.ly_beforeAfter {
  padding: 80px 20px;
}

.bl_beforeAfterTop {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bl_beforeAfter_slider {
  aspect-ratio: 360 / 475;
  position: relative;
  overflow: hidden;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.beer-slider>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.beer-reveal {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.beer-reveal>img {
  width: var(--slider-width, 800px);
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.beer-reveal[data-beer-label]::after {
  content: attr(data-beer-label);
  position: absolute;
  z-index: 3;
  color: #df6d14;
  font-size: 20px;
  background: #f8f5e9;
  top: 0;
  left: 0;
  padding: 12px 20px;
  font-weight: 700;
}

.beer-slider[data-beer-label]::after {
  content: attr(data-beer-label);
  position: absolute;
  z-index: 1;
  color: #df6d14;
  font-size: 20px;
  background: #f8f5e9;
  bottom: 0;
  right: 0;
  padding: 12px 20px;
  font-weight: 700;
}

.beer-handle {
  position: absolute;
  top: 50%;
  left: var(--beer-position, 50%);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
  pointer-events: auto;
}

.beer-handle::before,
.beer-handle::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.beer-handle::before {
  border-right: 10px solid #333;
  margin-right: 6px;
}

.beer-handle::after {
  border-left: 10px solid #333;
  margin-left: 6px;
}

.beer-slider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--beer-position, 50%);
  width: 2px;
  background: #ffffff;
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
}

.bl_exampleSwiper,
.bl_voiceSwiper,
.bl_recommendSwiper {
  --swiper-navigation-color: #df6d14;
}

.bl_exampleSwiper .swiper-slide,
.bl_voiceSwiper .swiper-slide,
.bl_recommendSwiper .swiper-slide {
  border-radius: 8px;
  padding: 20px;
  background: #f8f5e9;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_exampleSwiper .swiper-slide h3 {
  font-weight: 700;
  letter-spacing: 0;
  font-size: 18px;
  line-height: 120%;
  margin: 0;
}

.bl_swiperNavigation {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-block: 40px;
}

.bl_exampleSwiper .swiper-button-prev,
.bl_exampleSwiper .swiper-button-next,
.bl_voiceSwiper .swiper-button-prev,
.bl_voiceSwiper .swiper-button-next,
.bl_recommendSwiper .swiper-button-prev,
.bl_recommendSwiper .swiper-button-next {
  position: static;
  margin: 0;
  height: auto;
}

.bl_exampleSwiper .swiper-pagination,
.bl_voiceSwiper .swiper-pagination,
.bl_recommendSwiper .swiper-pagination {
  position: static;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-align: center;
  -webkit-text-stroke: 1.8px var(--color-base);
}

.ly_voice {
  padding: 80px 20px;
  background: #f8f5e9;
}

.bl_voiceSwiper {
  margin-bottom: 40px;
}

.bl_voiceSwiper .swiper-slide {
  background: #fff;
  border-radius: 8px;
  border: 4px solid var(--color-accent);
}

.bl_voiceSwiper .bl_voiceThumb {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 295 / 200;
}

.bl_voiceSwiper .bl_voiceThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl_voiceSwiper .bl_voiceText {
  display: contents;
}

.bl_voiceSwiper .swiper-slide h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.0714rem + 0.8929vw, 1.5rem);
  line-height: 100%;
  letter-spacing: 0.04em;
  color: #df6d14;
  margin: 0;
}

.bl_voiceSwiper .swiper-slide small {
  font-size: 14px;
}

.ly_recommend {
  padding: 80px 20px;
}

.ly_recommend .el_btn {
  margin-top: 40px;
}

.bl_recommendSwiper .swiper-slide {
  background: #ebf2e8;
  padding: 48px 20px 20px;
  border-radius: 16px;
}

.bl_recommendSwiper .swiper-slide h3 {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  line-height: 120%;
  margin: 0;
}

.bl_recommendThumb {
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: white;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.bl_recommendThumb img {
  -o-object-fit: contain;
     object-fit: contain;
}

.bl_recommendItemTop {
  position: relative;
}

.bl_recommendBadge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 126px;
}

.bl_recommendHeader {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.bl_recommendText {
  position: relative;
}

.bl_recommendText h4 {
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
  line-height: 120%;
  color: #df6d14;
  margin-block: 20px;
}

.bl_recommendText::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 80px;
  height: 72px;
  background: url(../img/common/quote-left.svg) no-repeat center/contain;
}

.bl_recommendText::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 80px;
  height: 72px;
  background: url(../img/common/quote-right.svg) no-repeat center/contain;
}

.bl_readMore_summary {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  justify-content: center;
}

.bl_readMore_content {
  padding: 16px 0;
  margin-top: 12px;
}

.ly_director {
  position: relative;
  padding-left: 10px;
  margin-bottom: 120px;
}

.bl_director {
  padding: 18px 20px 18px 120px;
  background: linear-gradient(278.1deg,
      rgba(34, 172, 56, 0.3) 0%,
      rgba(250, 238, 0, 0.18) 39.61%,
      rgba(34, 172, 56, 0.3) 99.03%);
  background-size: 200%;
  border-top-left-radius: 20px;
}

.bl_directorImg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32vw;
  max-width: 120px;
}

.bl_director p {
  font-weight: 700;
  font-size: clamp(1rem, 0.2857rem + 3.5714vw, 2rem);
  line-height: 140%;
}

.bl_director p span {
  font-weight: 700;
  font-size: clamp(1.75rem, 1.1429rem + 3.0357vw, 3.875rem);
  line-height: 140%;
}

.bl_director .el_btn {
  color: #000;
  margin-top: 20px;
}

.ly_location {
  padding-inline: 20px;
  padding-bottom: 120px;
}

.bl_clinicList {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.bl_clinicList > .bl_clinicItem:not(:last-child) {
  padding-bottom: 80px;
  border-bottom: 2px solid #999;
}

.ly_info {
  padding: 80px 20px;
  background: #f8f5e9;
}

.bl_infoList {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ly_info .el_btn {
  margin-top: 40px;
  justify-content: flex-end;
}

.ly_recruit {
  background: #ebf2e8;
}

.bl_recruit {
  padding: 40px 20px;
  position: relative;
  overflow: clip;
  z-index: 2;
}

.bl_recruit img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scaleX(-1) rotate(-45deg);
  z-index: 1;
  opacity: 0.4;
}

.bl_recruit>* {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: clamp(1rem, 0.9643rem + 0.1786vw, 1.125rem);
}

.bl_recruit h3 {
  font-size: clamp(1.25rem, 1.1071rem + 0.7143vw, 1.75rem);
  text-align: center;
  margin: 0 0 20px 0;
}

.bl_recruitLink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #df6d14;
}

.ly_column {
  padding: 80px 20px;
}

@media screen and (min-width: 768px) {
  .bl_fvImgsWrapper {
    aspect-ratio: unset;
  }

  .ly_fv {
    position: -webkit-sticky;
    position: sticky;
    margin-top: 0;
    top: 100px;
    max-height: calc(100vh - 100px);
  }

  .bl_fvText {
    background: #fff;
    left: unset;
    right: 80px;
    width: min(20vw, 300px);
    height: 100%;
    max-height: 648px;
    padding: 40px min(4vw, 68px) 40px;
  }

  .bl_fvText::before {
    max-width: 260px;
    left: 50%;
    transform: translate(-50%, -20%);
  }

  .bl_fvSwiper {
    max-height: 640px;
  }

  .bl_fvSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
  }

  .bl_fvSwiper .swiper-slide {
    height: 640px;
    border-radius: 8px;
    overflow: hidden;
    max-width: min(38vw, 560px);
  }

  .bl_fvSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .ly_secOver,
  .ly_mindOver {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.8) 80px,
        #ffffff 160px,
        #ffffff 100%);
  }

  .ly_mindOver {
    z-index: 2;
    padding-top: 230px;
  }

  .bl_secTop {
    max-width: 1120px;
    margin-inline: auto;
  }

  .bl_secTop p {
    font-size: 16px;
    padding-inline: 20px;
  }

  .bl_mindText {
    max-width: 506px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: auto;
  }

  .ly_mind {
    height: 100vh;
    padding-top: 240px;
    padding-inline: 0;
    z-index: 1;
  }

  .ly_mind h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    margin: 0;
    letter-spacing: 0.1em;
  }

  .ly_mind p {
    font-weight: 500;
    font-size: 18px;
    line-height: 180%;
    margin-top: 40px;
    letter-spacing: 0.1em;
  }

  .ly_reason {
    max-width: 1160px;
    margin-inline: auto;
    display: flex;
    padding-inline: 20px;
    gap: 20px;
    margin-bottom: 120px;
    justify-content: space-around;
  }

  .bl_reasonTop {
    max-width: 320px;
    gap: 20px;
    flex-shrink: 0;
  }

  .bl_reasonTop .bl_secHeader {
    padding-inline: 0;
  }

  .bl_reasonCont {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 20px;
  }

  .bl_reasonCont_item {
    margin: 0;
    flex-direction: column;
    gap: 6px;
    max-width: 180px;
  }

  .bl_reasonCont_item:hover>span {
    color: #fff;
    background-position: 0% 100%;
  }

  .bl_reasonCont::before {
    content: none;
  }

  .bl_reasonCont_item::before {
    content: none;
  }

  .bl_reasonCont_item span {
    padding-left: 10px;
    z-index: -1;
  }

  .ly_reason .el_btn {
    margin-top: 44px;
    justify-content: flex-end;
  }

  .bl_reasonTop p {
    font-size: 16px;
    padding-inline: 0px;
  }

  .ly_symptoms {
    padding-inline: 0;
    padding-bottom: 80px;
  }

  .bl_symptomCategories {
    max-width: 1120px;
    margin: 0 auto;
    gap: 0px;
    padding-bottom: 0;
  }

  .bl_symptomCategory {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px;
  }

  .bl_symptomCategory_list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 640px;
    max-width: unset;
    gap: 40px;
  }

  .bl_symptomCategory svg {
    width: 80px;
    height: 80px;
  }

  .bl_symptomCategory_list a {
    gap: 16px;
    padding-bottom: 16px;
  }

  .ly_symptoms {
    padding-block: 80px;
  }

  .ly_beforeAfter {
    padding-inline: 0;
    overflow: hidden;
  }

  .bl_beforeAfterTop {
    margin: 0 auto;
  }

  .bl_beforeAfterCont {
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: clip;
  }

  .bl_beforeAfterCont .bl_swiperNavigation {
    margin-right: 20px;
  }

  .bl_beforeAfter_slider .el_before::before {
    width: 45px;
    height: 45px;
  }

  .ly_beforeAfter .el_btn {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 20px;
  }

  .bl_exampleSwiper {
    padding-block: 80px 40px;
    overflow: visible;
  }

  .bl_exampleSwiper .swiper-slide {
    max-width: 400px;
  }

  .bl_swiperNavigation {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(calc(-100% - 80px));
  }

  .bl_exampleSwiper .swiper-slide h3 {
    text-align: center;
  }

  .bl_voiceSwiper {
    padding-top: 80px;
    overflow: visible;
    overflow-x: clip;
    max-width: 1120px;
    margin-inline: auto;
  }

  .bl_voiceSwiper .swiper-slide {
    flex-direction: row;
    padding: 40px 50px;
    gap: 40px;
  }

  .bl_voiceSwiper .bl_voiceThumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 30 / 28;
    flex-shrink: 0;
    max-width: 300px;
    max-height: 280px;
  }

  .bl_voiceSwiper .bl_voiceText {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .bl_voiceName {
    font-size: 20px;
  }

  .ly_voice .el_btn,
  .ly_recommend .el_btn {
    max-width: 1120px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
  }

  .bl_recommendSwiper {
    padding-top: 80px;
    overflow: visible;
    overflow-x: clip;
    max-width: 1120px;
    margin-inline: auto;
  }

  .bl_recommendItemTop {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 260px;
    flex-shrink: 0;
  }

  .bl_recommendSwiper .swiper-slide {
    flex-direction: row;
    gap: 0 100px;
  }

  .bl_recommendThumb {
    grid-area: 1 / 1 / 2 / 2;
    max-width: 260px;
    aspect-ratio: 260 / 155;
  }

  .bl_readMore_summary {
    display: none;
  }

  .bl_readMore_content {
    margin: 0;
  }

  .bl_recommendBadge {
    top: 0;
    right: 0;
    transform: translate(50%, 0);
  }

  .bl_recommendText {
    margin: 0;
  }

  .bl_recommendText::before,
  .bl_recommendText::after {
    width: 120px;
    height: 100px;
  }

  .ly_recommend {
    position: relative;
    padding-block: 120px;
  }

  .ly_recommend::after {
    content: '';
    position: absolute;
    width: 80vw;
    aspect-ratio: 1120 / 640;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -30%);
    max-width: 1120px;
    background: url(../img/common/logo.svg) no-repeat center/contain;
  }

  .ly_director {
    padding-top: 100px;
    max-width: calc(100vw - (50vw - 560px));
    margin-inline: auto 0;
    margin-bottom: 0px;
  }

  .bl_director {
    background-size: 100%;
    padding: min(60px, 4vw) 0 min(60px, 4vw) min(18vw, 250px);
    display: flex;
    gap: min(11vw, 160px);
  }

  .bl_directorImg {
    left: 10px;
    width: 18vw;
    max-width: 250px;
  }

  .bl_directorName {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }

  .bl_directorName p {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
  }

  .bl_directorName div {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .bl_directorName p.un_txtBig {
    display: inline-flex;
    font-size: 36px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    letter-spacing: 0.2em;
  }

  .bl_directorName p.un_txtBig small {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }

  .ly_location {
    max-width: 1120px;
    margin-inline: auto;
    padding: 120px 0;
  }

  .bl_clinicList {
    padding-inline: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(5.5vw, 80px) min(11vw, 160px);
  }

  .bl_clinicList > .bl_clinicItem:not(:last-child) {
    padding-bottom: 0;
    border-bottom: none;
  }

  .bl_clinicItem .el_clinicMore {
    height: 60px;
  }

  .bl_info {
    max-width: 1120px;
    margin-inline: auto;
  }

  .bl_infoList {
    max-width: 860px;
    margin-inline: auto 0;
  }

  .ly_recruit {
    position: relative;
    overflow: hidden;
  }

  .ly_recruit picture {
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: 0;
    height: 100%;
    margin-right: -90px;
    background: url(../img/top/recruit-pc.webp) no-repeat center/contain;
  }

  .ly_recruit picture img {
    height: 100%;
  }

  .bl_recruit {
    padding-block: clamp(2.5rem, 1.0714rem + 2.9762vw, 3.75rem);
    position: static;
    max-width: 1120px;
    margin-inline: auto;
  }

  .bl_recruit img {
    transform: scaleX(-1) rotate(180deg) scale(2) translateY(-20%);
  }

  .bl_recruit h3,
  .bl_recruit>* {
    text-align: left;
  }

  .bl_recruitLink {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .bl_reasonCont {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 50px;
  }
}

@media screen and (min-width: 1120px) {
  .ly_reason {
    justify-content: space-between;
    gap: min(6.25vw, 90px);
  }

  .bl_reasonTop {
    max-width: 390px;
  }

  .bl_reasonCont {
    gap: 80px 50px;
  }

  .ly_recruit picture {
    margin-right: 0;
  }

  .ly_beforeAfter .el_btn {
    padding-inline: 0;
  }

  .bl_beforeAfterCont .bl_swiperNavigation {
    margin-right: 0px;
  }

  .ly_mind {
    height: 100vh;
    padding-top: 240px;
    padding-inline: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
  }
}