.bl_swiperWrap {
  position: relative;
  margin-inline: auto;
}

.bl_swiperWrap .swiper-pagination {
  position: static;
  margin-block: 20px;
}

.bl_swiperWrap .swiper-button-prev {
  left: -16px !important;
}

.bl_swiperWrap .swiper-button-next {
  right: -16px !important;
}

@media screen and (min-width: 768px) {
  .bl_swiperWrap {
    max-width: 100%;
  }

  .bl_swiperWrap {
    position: relative;
    margin-inline: auto;
    max-width: 1040px;
  }

  .bl_swiperWrap .swiper-button-prev {
    left: -15px !important;
  }

  .bl_swiperWrap .swiper-button-next {
    right: -15px !important;
  }
}

/*------------------------------------------
  fv ファーストビュー
------------------------------------------*/
.ly_fv {
  height: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 58px;
  display: flex;
  padding-inline: 20px;

  background-image: url(../img/top/halii-fv.png);
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  background-position: 45% center;
}

.bl_fv_txt {
  position: relative;
  letter-spacing: 0.04em;
}

.bl_fv_txt h1 {
  color: #000000;
  font-size: 32px;
  font-weight: 400;
  position: relative;
  /* 複数の text-shadow を重ねることで、より自然なグロー効果を出す */
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.8),
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 12px rgba(255, 255, 255, 0.4);
}

.bl_fv_logo {
  position: absolute;
  top: -50%;
  left: 0;
  transform: translate(-6%, -20%);
  height: auto;
  width: auto;
  max-width: 80px;
  max-height: 40px;
}

.bl_fv_txt p {
  color: #c69d06;
}

.bl_fv_txt p:nth-of-type(1) {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.8),
    0 0 6px rgba(255, 255, 255, 0.6);
}

.bl_fv_txt p:nth-of-type(2) {
  font-size: 14px;
  font-weight: 400;
  margin-top: 16px;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.8),
    0 0 6px rgba(255, 255, 255, 0.6);
}

/*------------------------------------------
  ly_about アバウトセクション
------------------------------------------*/
.ly_about {
  padding-inline: 40px;
  padding-block: 40px;
}

.ly_about .bl_contWrap {
  display: inherit;
  max-width: 580px;
  margin-inline: auto;
}

.ly_about .bl_imgWrap {
  margin-left: 40px;
}

.ly_about .bl_txtCont {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* .ly_about .bl_txtCont .bl_btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 40px;
  border-radius: 50px;
  border: #c69d06 1px solid;
  color: #000;
  text-align: center;
}

.ly_about .bl_txtCont .bl_btn p {
  font-size: 14px;
} */

/*------------------------------------------
  ly_slide スライドセクション
------------------------------------------*/
@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity {
  position: relative;
  z-index: 10;
  margin-top: 80px;
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  gap: 40px;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
  gap: 40px;
}

.scroll-infinity__item:nth-child(even) {
  margin-top: 120px;
}

.scroll-infinity__item:nth-child(odd) {
  margin-bottom: 120px;
}

.scroll-infinity__item {
  /* width: calc(100vw / 3); */
  width: 160px;
  height: 160px;
  overflow: hidden;
}

.scroll-infinity__item>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ly_slideSec {
  display: flex;
  height: 440px;
  position: relative;
  align-items: center;
  overflow: hidden;
}

.bl_bg {
  width: 1130px;
  height: 100%;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.bl_bg svg {
  scale: 1.4;
  -o-object-fit: cover;
  object-fit: cover;
}

:root {
  --dash: 1000;
}

@-webkit-keyframes drawLine {
  0% {
    stroke-dashoffset: var(--dash);
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: var(--dash);
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: var(--dash);
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: var(--dash);
  }
}

.line-anim {
  stroke-width: 0.8;
  fill: none;
  stroke-dasharray: var(--dash);
  stroke-dashoffset: var(--dash);
  -webkit-animation: drawLine 12s ease-in-out infinite;
  animation: drawLine 12s ease-in-out infinite;
}


/*------------------------------------------
  ly_archive
------------------------------------------*/
.ly_archive {
  padding-inline: 5.3%;
  padding-block: 160px 0px;
  background-color: #f0e4de;
}

.ly_archive.ly_result {
  padding-block: 130px 80px;
}

.ly_archive .bl_intro {
  position: relative;
  max-width: 400px;
  margin-inline: auto;
}

.ly_archive .bl_intro::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  min-width: 335px;
  height: 100%;
  min-height: 60px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('../img/top/top-voiceHeading.svg');
}

.ly_archive.ly_result .bl_intro::before {
  background-image: url('../img/top/top-beforeafterHeading.svg');
}

.ly_archive .bl_intro h2 {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 10;
}

.ly_archive .bl_intro p {
  position: absolute;
  font-size: 40px;
  font-weight: 800;
  height: 100%;
  opacity: 0.8;
  line-height: 1em;
  z-index: 0;
}

.ly_archive .bl_intro p:nth-of-type(1) {
  top: -20px;
  left: 0px;
}

.ly_archive .bl_intro p:nth-of-type(2) {
  top: -20px;
  right: 0px;
}

.ly_archive.ly_Comment .bl_intro p:nth-of-type(1) {
  top: -20px;
  left: 8px;
}

.ly_archive.ly_Comment .bl_intro p:nth-of-type(2) {
  top: 20px;
  right: 8px;
}

.ly_archive .bl_contWrap {
  max-width: 100%;
  margin-inline: auto;
}

.ly_archive .bl_contWrap {
  position: relative;
  overflow-x: hidden;
  margin-top: 40px;
}

.bl_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl_archive_list {
  padding-block: 20px;
}

.bl_archive_item {
  margin-inline: auto;
  height: 100%;
  max-width: 335px;
}

.bl_archive_thumb {
  width: 100%;
  overflow: hidden;
  padding: 28px 28px 0 28px;
  border-radius: 16px 16px 0 0;
  background-image: url('../img/footer/footer-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  max-height: 320px;
}

.bl_archive_thumb::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 13.435L1.06066 7.42462L6.01041 12.3744L0 13.435Z' fill='black'/%3E%3Cpath d='M13.435 0L7.42462 1.06066L12.3744 6.01041L13.435 0Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.2922 3.84992L3.88909 10.253L3.18198 9.54594L9.5851 3.14282L10.2922 3.84992Z' fill='black'/%3E%3C/svg%3E");
}

.bl_archive_thumb img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  aspect-ratio: 16 / 9;
  border-radius: 12px 12px 0 0;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s ease;
  object-position: top;
}

.ly_Comment .bl_archive_thumb img {
  max-height: unset;
  object-fit: cover;
  object-position: top;
}

.ly_column .bl_archive_thumb img {
  max-height: unset;
  object-fit: cover;
  object-position: center;
}



.bl_archive_thumb:hover img {
  transform: scale(1.05);
}

.ly_result .bl_archive_thumb {
  padding: 0;
}

.ly_result .bl_archive_thumb img {
  padding: 0;
  border-radius: 0;
  aspect-ratio: unset;
}

.bl_archive_text {
  padding: 20px;
  background-color: #f5f5f5;
}

.ly_archive.ly_Comment .bl_archive_text .bl_content,
.ly_archive.ly_result .bl_archive_text .bl_content {
  /* min-height: 240px; */
  height: fit-content;
}

.bl_archive_text h3 a {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
}

.bl_archive_text p {
  margin-top: 14px;
}

.ly_result .bl_content {
  padding-block: 14px;
}

.ly_result .bl_content p {
  margin-block: 0;
}

.ly_Comment .bl_content {
  min-height: 220px;
}

/* .bl_content>p {
  min-height: 220px;
} */

.bl_archive_text .bl_category {
  color: #c69d06;
  border: #c69d06 1px solid;
  border-radius: 80px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 16px;
}

.bl_archive_text span {
  padding-block: 4px;
  border-bottom: 1px solid #000000;
  display: block;
}

.modal img {
  max-width: unset;
  height: unset;
}

/* Swiper ナビゲーション */
.swiper-button-prev.un_top,
.swiper-button-next.un_top {
  width: 40px;
  height: 40px;
  color: transparent !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev.un_top {
  left: 0;
  background: none;
}

.swiper-button-next.un_top {
  right: 0;
  background: none;
}

.swiper-button-prev.un_top::after,
.swiper-button-next.un_top::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
}

.swiper-button-prev.un_top::after {
  border-width: 10px 15px 10px 0;
  border-color: transparent #cca721 transparent transparent;
}

.swiper-button-next.un_top::after {
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #cca721;
}

.swiper-button-prev.un_top::before,
.swiper-button-next.un_top::before {
  content: none;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: none;
  background: #F5F5F5;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #D9D9D9;
}



/* .ly_archive a .bl_btn {
  width: 100%;
  max-width: 400px;
  padding-block: 8px;
  margin-inline: auto;
  margin-top: 40px;
  text-align: center;
  border: #c69d06 1px solid;
  border-radius: 80px;
  color: #000;
} */

/*------------------------------------------
 column　コラムのボタン
------------------------------------------*/
/* .ly_column a .bl_btn {
  width: 100%;
  max-width: 400px;
  padding-block: 8px;
  margin-inline: auto;
  margin-top: 40px;
  text-align: center;
  border: #c69d06 1px solid;
  border-radius: 80px;
  color: #000;
} */

/*------------------------------------------
  ly_column　コラム
------------------------------------------*/
.ly_column {
  padding-block: 124px 80px;
  padding-inline: 20px;
}

.ly_column .bl_intro {
  position: relative;
  max-width: 400px;
  margin-inline: auto;
  text-align: center;
}

.ly_column .bl_intro p {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  transform: translate(-50%, -40px);

  font-size: 40px;
  font-weight: 800;
  height: 100%;
}

.ly_column .bl_intro h2::before,
.ly_column .bl_intro h2::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 132px;
  height: 10px;
  transform: translate(0%, -50%);
}

.ly_column .bl_intro h2::before {
  top: 50%;
  left: 20px;
  background-image: url('../img/top/top-column-headingL.svg');
}

.ly_column .bl_intro h2::after {
  top: 50%;
  right: 20px;
  background-image: url('../img/top/top-column-headingR.svg');
}

/* 記事リストのスタイル */

.ly_column .bl_contWrap {
  max-width: 1050px;
  margin-inline: auto;
}

.ly_column .bl_contWrap .bl_archive_list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-block: unset;
  margin-top: 60px;
}

.ly_column .bl_contWrap .bl_archive_item {
  width: 100%;
  height: unset;
  padding-inline: 0;
  margin-inline: 0;
  gap: 20px;
}

.ly_column .bl_contWrap .bl_archive_item .bl_archive_thumb {
  width: 100%;
  overflow: hidden;
  padding: unset;
  border-radius: 0;
}

.ly_column .bl_contWrap .bl_archive_item .bl_archive_thumb img {
  border-radius: 0;
}

.ly_column .bl_contWrap .bl_archive_item .bl_archive_thumb::after {
  background-image: unset;
}

.ly_column .bl_contWrap .bl_archive_item .bl_archive_text {
  background-color: unset;
  padding: 20px 0;
}

.ly_column .bl_contWrap .bl_archive_item .bl_archive_text .bl_infroWrap {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ly_column .bl_contWrap .bl_archive_item .bl_archive_text .bl_infroWrap p {
  margin-top: 0;
  font-size: 14px;
}

.ly_column .bl_contWrap .bl_archive_item .bl_archive_text .bl_content p {
  margin-top: 20px;
  font-size: 16px;
  min-height: unset;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ly_column .bl_contWrap .bl_archive_item .bl_archive_text .bl_infroWrap .bl_category {
  border-bottom: unset;
  border: #cca721 1px solid;
  border-radius: 80px;
  padding: 2px 16px;
  padding-block: 0;
  white-space: nowrap;
  color: #cca721;
}

@media (min-width: 375px) {}

@media (min-width: 768px) {

  /*------------------------------------------
  fv ファーストビュー
------------------------------------------*/
  .ly_fv {
    padding-inline: 40px;
  }

  .bl_fv_txt h1,
  .bl_fv_txt p {
    letter-spacing: 0.04em;
  }

  .bl_fv_txt h1 {
    line-height: normal;
    font-size: 60px;
  }

  .bl_fv_logo {
    max-width: 120px;
    max-height: 60px;
  }

  .bl_fv_txt p:nth-of-type(1) {
    font-size: 34px;
  }

  .bl_fv_txt p:nth-of-type(2) {
    font-size: 16px;
  }

  /*------------------------------------------
  ly_about アバウトセクション
------------------------------------------*/
  .ly_about {
    display: flex;
    justify-content: space-between;
  }

  .ly_about .bl_contWrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1040px;
    justify-content: space-between;
    margin-inline: auto;
  }

  .ly_about .bl_contWrap .bl_imgWrap {
    max-width: 400px;
    width: 48%;
    margin-left: 0;
  }

  .ly_about .bl_contWrap .bl_txtCont {
    max-width: 588px;
    /*     width: 45%; */
    margin-top: 0;
  }

  .ly_about .bl_txtCont {
    margin-top: 0;
    justify-content: space-between;
  }


  /*------------------------------------------
  ly_archive
------------------------------------------*/

  .ly_archive {
    padding-block: 200px 0;
    padding-inline: 10.4%;
  }

  .ly_archive.ly_result {
    padding-block: 264px 80px;
  }

  .ly_archive .bl_intro h2 {
    font-size: 32px;
  }

  .ly_archive .bl_intro p {
    font-size: 80px;
    height: 80px;
  }

  .ly_archive .bl_intro p:nth-of-type(1) {
    top: -20px;
    left: -190px;
  }

  .ly_archive .bl_intro p:nth-of-type(2) {
    top: -20px;
    right: -190px;
  }

  .ly_archive.ly_Comment .bl_intro p:nth-of-type(1) {
    top: -30px;
    left: -190px;
  }

  .ly_archive.ly_Comment .bl_intro p:nth-of-type(2) {
    top: 30px;
    right: -220px;
  }

  /* .ly_archive a .bl_btn {
    margin-top: 80px;
  } */

  .ly_archive .bl_intro::before {
    scale: 1.68;
    left: 85%;
    top: -100px;
  }

  .swiper-button-prev.un_top::after {
    border-width: 20px 25px 20px 0;
    border-color: transparent #cca721 transparent transparent;
  }

  .swiper-button-next.un_top::after {
    border-width: 20px 0 20px 25px;
    border-color: transparent transparent transparent #cca721;
  }

  .bl_archive_item {
    max-width: 480px;
    width: 46%;
  }

  .swiper-pagination {
    margin-top: 12px;
  }

  /*------------------------------------------
 column　コラム
------------------------------------------*/
  .ly_column {
    padding-block: 234px 160px;
  }

  /* .ly_column a .bl_btn {
    padding-block: 16px;
    margin-top: 80px;
  } */

  .ly_column .bl_intro p {
    top: -40px;
    left: 50%;
    font-size: 80px;
    height: 1em;
    line-height: 80px;
  }

  .ly_column .bl_intro h2::before,
  .ly_column .bl_intro h2::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    width: 132px;
    height: 10px;
    transform: translate(0%, -50%);
    scale: 2.4;
  }

  .ly_column .bl_intro h2::before {
    top: 80%;
    left: -50px;
    background-image: url('../img/top/top-column-headingL.svg');
  }

  .ly_column .bl_intro h2::after {
    top: 80%;
    right: -70px;
    background-image: url('../img/top/top-column-headingR.svg');
  }

  .ly_column .bl_contWrap .bl_archive_list {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 1280px) {

  /*------------------------------------------
  fv ファーストビュー
------------------------------------------*/
  .ly_fv {
    height: 720px;
  }

  .bl_fv_txt {
    width: 1280px;
    margin-inline: auto;
  }

  .bl_fv_txt h1 {
    line-height: normal;
    font-size: 80px;
  }

  .bl_fv_logo {
    max-width: 160px;
    max-height: 80px;
  }

  .bl_fv_txt p:nth-of-type(1) {
    font-size: 32px;
    margin-top: 28px;
  }

  .bl_fv_txt p:nth-of-type(2) {
    margin-top: 24px;
  }

  /*------------------------------------------
  ly_about アバウトセクション
------------------------------------------*/
  .ly_about {
    padding-block: 80px 140px;
  }

  .ly_about .bl_contWrap {
    max-width: 1280px;
    gap: 177px;
    justify-content: flex-end;
  }

  .ly_about .bl_txtCont p {
    letter-spacing: 0.02em;
  }

  .scroll-infinity {
    margin-top: 0;
  }

  .scroll-infinity__item {
    width: 320px;
    height: 320px;
    overflow: hidden;
  }

  /* .ly_about .bl_txtCont .bl_btn {
    width: 400px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  } */

  /*------------------------------------------
  ly_slide スライドセクション
------------------------------------------*/

  .ly_slideSec {
    height: 620px;
  }

  .bl_bg {
    width: 100%;
  }

  .bl_bg svg {
    scale: 1.6;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .line-anim {
    stroke-width: 0.6;
  }



  /*------------------------------------------
  ly_archive
------------------------------------------*/

  .ly_archive {
    padding-block: 200px 0;
    padding-inline: 13.88%;
  }

  .ly_archive .bl_intro p:nth-of-type(1) {
    top: -20px;
    left: -280px;
  }

  .ly_archive .bl_intro p:nth-of-type(2) {
    top: -20px;
    right: -220px;
  }

  .ly_archive.ly_Comment .bl_intro p:nth-of-type(1) {
    top: -20px;
    left: -360px;
  }

  .ly_archive.ly_Comment .bl_intro p:nth-of-type(2) {
    top: -20px;
    right: -380px;
  }

  /* .ly_archive a .bl_btn {
    margin-top: 103px;
  } */

  /* .ly_archive a .bl_btn {
    padding-block: 16px;
  } */

  .swiper-button-prev.un_top::after {
    border-width: 26px 40px 26px 0;
    transform: translate(-200%, -50%);
    border-color: transparent #cca721 transparent transparent;
  }

  .swiper-button-next.un_top::after {
    border-width: 26px 0 26px 40px;
    transform: translate(90%, -50%);
    border-color: transparent transparent transparent #cca721;
  }

  .ly_archive.ly_result {
    padding-inline: 200px;
  }

  /* BeforeAfter */
  .ly_archive.ly_result .bl_swiperWrap {
    max-width: 1040px;
  }

  .ly_archive.ly_result .bl_contWrap {
    width: 100%;
  }

  .ly_result .bl_contWrap .bl_archive_list .bl_archive_item {
    max-width: 480px;
  }

  /*------------------------------------------
  .ly_menu  推薦者のお声
------------------------------------------*/
  .ly_menu .bl_contWrap {
    flex-direction: row;
    max-width: unset;
  }

  /*------------------------------------------
  ly_column　コラム
------------------------------------------*/
  /* 記事リストのスタイル */

  .ly_column .bl_contWrap {
    max-width: 1050px;
  }

  .ly_column .bl_contWrap .bl_archive_list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-block: unset;
    margin-top: 60px;
  }

  .ly_column .bl_contWrap .bl_archive_list li {
    width: 320px;
  }
}

@media (min-width: 1640px) {}