/*------------------------------------------
   キャンセルCSS
------------------------------------------*/
a {
  color: unset;
}

h1 {
  line-height: 1.4em;
  letter-spacing: 0.1em;
}

/* サブページのH1 */
.HeroArea__txt {
  background: #c69d06;
}

.HeroArea .s-contsWrap .HeroArea__txt {
  box-shadow:
    10px 0 0 #c69d06,
    -10px 0 #c69d06;
}

/* 記事内に出てくる鉤括弧 */
.ContsArea h2:after,
.MainLabel__block::after,
.SelectList__cont__Label::after {
  border-top: 2px solid #c69d06;
  border-left: 2px solid #c69d06;
}

.ContsArea h2:before,
.MainLabel__block::before,
.SelectList__cont__Label::before {
  border-bottom: 2px solid #c69d06;
  border-right: 2px solid #c69d06;
}

/* メニューリスト */
.MenuList__itemCont__head {
  color: #c69d06;
}

.MainLabel span {
  color: #c69d06;
}

.MenuList__itemCont__desc a span {
  border-top: 1.5px solid #c69d06;
  border-right: 1.5px solid #c69d06;
}

/* メニュー記事ページ */
.LeadArea__txt__head {
  color: #c69d06;
}

.LeadArea__txt__head::before {
  border-bottom: 2px solid #c69d06;
  border-right: 2px solid #c69d06;
}

.LeadArea__txt__head::after {
  border-top: 2px solid #c69d06;
  border-left: 2px solid #c69d06;
}

.BulletPanel__itemCont__img:before {
  background: rgba(198, 157, 6, 0.5);
}

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

.ContsArea h3 {
  color: #c69d06;
}

.MenuPrice__listCont__text h3 {
  background: #c69d06;
}

.MenuPrice__listCont__price li {
  color: #c69d06;
}

.Author.s-contsWrap {
  background: #c69c0600;
}

/* 関連コラム */
.ColumnArticle h2,
.ColumnArticle h3,
.ColumnArticle h4,
.ColumnPickup__cont__box h3 {
  color: #c69d06;
}

/* お悩み一覧 */
.recommendList__itemCont__img:before {
  background-color: rgba(211, 186, 95, .5);
}

.recommendList__itemCont:hover a.recommendList__itemCont__txt span {
  color: #c69d06;
}

/* 施術の流れ */
.Flow__itemCont {
  background: #c69d06;
}

.Flow__txtCont__head:before {
  background: #c69d06;
}

.Flow__txtCont__head {
  color: #c69d06;
}

/* コンタクトフォーム */
.Contact__form__table {
  border: solid 1px #c69d06;
}

.wpcf7-submit,
.Contact__form__submit {
  background-color: #c69d06;
}

/* お悩み一覧 */
.SelectList__cont__Label {
  color: #c69d06;
}

/* faq */
.Faq__listCont__box dt {
  color: #c69d06;
}

.s-contsWrap--whiteblue {
  background-color: #c69d07;
}

.HoverMenu__list {
  display: none !important;
}

.BulletPanel__cont__txt strong {
  color: #c69d06;
}

.Contact__form__table tbody .un_radio {
  margin: 4px 0;
}

.BulletPanel__cont__txt {
  border-top: 2px solid #c69d07;
  border-bottom: 2px solid #c69d07;
}

.HoverPrev {
  display: none !important;
}

/* 著者のスタイル */
.Author.s-contsWrap .Staff__txtCont .Staff__txtCont__head.wp--colorTxt__base.un_authorPosition {
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
}

/*------------------------------------------

   キャンセルCSS ここまで
------------------------------------------*/



/* ---------------subp-headerの設定 ここから--------------- */
.HeroArea.about-hero {
  background-position-x: center;
  background-position-y: 100%, bottom;
}

.HeroArea.results-hero {
  background-position-x: center;
  background-position-y: center;
}

.HeroArea.menu-hero {
  background-position-x: center;
  background-position-y: center;
}

.HeroArea.menu-archive-hero {
  background-position-x: center;
  background-position-y: 80%, bottom;
}

.HeroArea.news-hero {
  background-position-x: center;
  background-position-y: 80%, bottom;
}

.HeroArea.recruit-hero {
  background-position-x: center;
  background-position-y: center;
}

/* contactページのHeroArea - より具体的なセレクタで制御 */
body.wp--colorBack__brand .HeroArea[style*="rs_6M0A9818pc_"] {
  background-image: url(../img/subp-header/header-contact.webp) !important;
  background-position-x: center !important;
  background-position-y: 80%, bottom;
}

.HeroArea.voice-hero {
  background-position-x: center;
  background-position-y: center;
}

/* モーダル */
/* =======================
   モーダル用スタイル
   ======================= */

/* 最初は表示非表示の制御をdisplay: none;にしておく */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  /* ほかの要素より全面に表示 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 半透明背景オーバーレイ */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* モーダルコンテンツ（画像+クローズボタン） */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 横・縦が大きすぎる場合にスクロールできるようにする */
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  background: #fff;
  /* 必要に応じて背景色など調整 */
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  padding: 16px;
  box-sizing: border-box;
}

/* 閉じるボタン（右上に設置） */
.close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 24px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* ドラッグ選択されないように */
}

/* 実際に拡大表示する画像 */
#modal-img {
  display: block;
  width: 80vw;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

/*------------------------------------------
  ly_symptom　お悩み一覧セクション
------------------------------------------*/
.ly_symptom {
  width: 100%;
  padding: 80px 20px 40px 20px;
  background-image: url(../img/footer/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
}

.ly_archiveSymptom .ly_symptom {
  background-image: none;
}

.ly_symptom>h2 {
  letter-spacing: 0.02em;
  text-align: center;
}

.bl_tabCont {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin-inline: auto;
  margin-top: 40px;
}

.symptom-tabs .tabs {
  display: flex;
  gap: 16px;
}

.symptom-tabs .tab-link {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 16px;
  transition: color 1.3s ease;
  position: relative;
  color: #707070;
}

.symptom-tabs .tab-link.active {
  color: #000000;
}

.symptom-tabs .tab-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 80px;
  transition: background-color 0.3s ease;
  background-color: #cecece;
}

.symptom-tabs .tab-link.active::after {
  color: #000000;
  background-color: #c69d06;
}

.symptom-tabs .tab-content {
  display: none;
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
  margin-top: 72px;
}

.symptom-tabs .tab-content.active {
  display: block;
}

/*------------------------------------------
  ly_menu　メニュー一覧セクション
------------------------------------------*/
.ly_menu {
  padding-top: 80px;
  padding-inline: 20px;
}

.ly_menu .bl_contWrap {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  margin-inline: auto;
}

.ly_menu .bl_menu_intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ly_menu h2 {
  position: relative;
  display: inline-block;
  font-size: 20px;
}

.ly_menu h2::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 29px;
  background-image: url('../img/top/top-menuIcon.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.bl_menu_intro>p {
  font-size: 14px;
  margin-top: 16px;
}

.ly_menu .bl_menu_list {
  margin-top: 20px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ly_menu .bl_menu_list .bl_menu_item {
  border: #c69d06 0.8px solid;
  padding: 20px;
}

.ly_menu .bl_menu_list .bl_menu_item .bl_menu_thumb {
  width: 100%;
  height: 167px;
  overflow: hidden;
}

.ly_menu .bl_menu_list .bl_menu_item .bl_menu_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ly_menu .bl_menu_list .bl_menu_item .bl_menu_text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ly_menu .bl_menu_list .bl_menu_item .bl_menu_text a {
  color: #000;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: none;
  border: none;
}

.ly_menu .bl_menu_list .bl_menu_item .bl_menu_text a::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='4' viewBox='0 0 15 4' fill='none'%3E%3Cpath d='M0 3.5H14L10 1' stroke='%23C69D06' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.ly_menu .bl_menu_list .bl_menu_item .bl_menu_text a:hover {
  background-color: unset;
  color: #c69d06;
  transform: scale(1);
  box-shadow: unset;
}

/* 任意：フェードイン用アニメーション */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*------------------------------------------
  投稿リストのスタイル例（新しい構造用）
------------------------------------------*/
.symptom-tabs .symptomWrap {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.symptom-tabs .symptomWrap a {
  width: 50%;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-inline: 8px;
  padding-block: 36px;
  aspect-ratio: 1 / 1;
  justify-content: space-between;
  gap: 8px;
  /* 背景線の設定 */
  background-image: linear-gradient(to right, #c69d06, #c69d06 6px, transparent 6px);
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.symptom-tabs .symptomWrap a:nth-child(odd) {
  /* 奇数番目は2種類の背景線を重ねる */
  background-image:
    linear-gradient(to right, #c69d06, #c69d06 6px, transparent 6px),
    linear-gradient(to top, #c69d06, #c69d06 6px, transparent 6px);
  background-size: 10px 1px, 1px 10px;
  background-position: left bottom, right top;
  background-repeat: repeat-x, repeat-y;
}

.symptom-tabs .symptomWrap a .el_imgWrap {
  height: 100%;
  max-height: 60px;
  width: 100%;
}

.symptom-tabs .symptomWrap a .el_imgWrap img {
  width: 100%;
  height: 100%;
}

/* 既存の a タグのスタイル（必要に応じて調整） */
.symptom-tabs a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.symptom-tabs a:hover,
.symptom-tabs a:focus,
.symptom-tabs a:active {
  color: #c69d06;
}

.symptom-tabs a span {
  height: 3em;
}

/* （オプション）もし特定の a 要素に個別スタイルが必要な場合は追加してください */
.symptom-tabs .acf-tag {
  margin-left: 8px;
  font-size: 14px;
  color: var(--primary-color);
}


/* ＝＝＝＝＝＝＝＝＝＝ここまで＝＝＝＝＝＝＝＝＝＝ */

/*------------------------------------------
  ly_voice 推薦者のお声
------------------------------------------*/
.ly_voice {
  padding-inline: 20px;
  padding-block: 80px;
}

.bl_voice_intro {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  width: 224px;
  margin-top: 88px;
  margin-inline: auto;
  position: relative;
  font-weight: 600;
}

.bl_voice_intro::before {
  position: absolute;
  content: '';
  top: -92px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  background-image: url('../img/top/top_voice_heading.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.bl_voice_intro h2 {
  font-size: 20px;
}

.bl_voice_intro p {
  font-size: 14px;
  white-space: nowrap;
}

.ly_voice ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin-top: 40px;
  margin-inline: auto;
}

.ly_voice ul li {
  display: flex;
  flex-direction: column;
  position: relative;
}

.ly_voice ul li .el_comment p {
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  position: relative;
  padding: 4px;
}

.ly_voice ul li .el_comment p::before {
  content: '';
  position: absolute;
  left: -6px;
  bottom: -6px;
  width: 40px;
  height: 40px;
  background-image: url('../img/top/top-voiceComment-svgL.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.ly_voice ul li .el_comment::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -6px;
  width: 40px;
  height: 40px;
  background-image: url('../img/top/top-voiceComment-svgR.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.ly_voice ul li .el_imgWrap {
  margin-top: 20px;
}

.ly_voice ul li .el_voiceName {
  font-size: 18px;
  font-weight: 800;
  margin-top: 16px;
}

.ly_voice ul li>p {
  font-size: 14px;
  margin-top: 10px;
}

/*------------------------------------------
  ly_voice 初めての方へ のスタイル
------------------------------------------*/
.ly_about .ly_voice {
  padding-block: 0 80px;
}

.ly_about .ly_voice ul li {
  max-width: 400px;
}

.ly_about .ly_voice ul li .bl_commentWrap>p {
  margin-top: 20px;
}

.ly_about .ly_voice ul li .el_imgWrap {
  width: 100%;
}

.ly_about .ly_voice ul li .el_imgWrap img {
  width: 100%;
}

/*------------------------------------------
  news ニュース
------------------------------------------*/
.ly_news {
  padding-inline: 20px;
  padding-block: 80px;
}

.bl_newsHeading {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

.bl_newsHeading p {
  font-size: 40px;
  line-height: 1em;
  height: 40px;
  letter-spacing: 0.02em;
}

.bl_shoplistNewsCont {
  margin-top: 40px;
}

.ly_news .bl_shoplistNewsList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1040px;
  margin-inline: auto;
}

.ly_news .bl_shoplistNewsList li {
  padding-block: 8px;
  border-bottom: #f5f5f5 1px solid;
}

.ly_news .bl_shoplistNewsList li .bl_news_ttlCatWrap {
  display: flex;
  justify-content: space-between;
}

/* アコーディオンコンテンツの初期状態 */
.accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

/* アコーディオンヘッダーがアクティブな場合のスタイル例 */
.news-header.accordion-toggle.active {}

.news-taxonomy {
  border: #cca721 1px solid;
  border-radius: 80px;
  padding: 2px 16px;
  white-space: nowrap;
  color: #cca721;
  max-height: 32px;
}

/*------------------------------------------
 shoplist　店舗一覧
------------------------------------------*/
.ly_shoplist {
  width: 100%;
  padding: 160px 20px 40px 20px;
  background-image: url(../img/footer/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
}

.ly_shoplist .bl_intro p {
  opacity: 1;
}

.ly_shoplist .bl_contWrap .shoplist-items {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.ly_shoplist .bl_contWrap .shoplist-item {
  max-width: 365px;
  width: 100%;
  margin-inline: auto;
}

.ly_shoplist .bl_contWrap .shoplist-item .shoplist-title {
  font-size: 16px;
  font-weight: 800;
  padding-bottom: 4px;
  border-bottom: #000 1px solid;
}

.ly_shoplist .bl_contWrap .shoplist-item .shoplist-thumb {
  width: 100%;
  max-height: 180px;
  overflow: hidden;
  margin-top: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.ly_shoplist .bl_contWrap .shoplist-item .shoplist-thumb img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}

.ly_shoplist .shoplist-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding-top: 20px;
  background-color: #ffffff;
}

.ly_shoplist .shoplist-info .shop-address,
.ly_shoplist .shoplist-info .shop-tel {
  width: calc(100% - 40px);
  display: flex;
  gap: 16px;
}

.ly_shoplist .shoplist-info .shop-address span:nth-of-type(1),
.ly_shoplist .shoplist-info .shop-tel span:nth-of-type(1) {
  white-space: nowrap;
}

.ly_shoplist .bl_contWrap .shoplist-item .shop-reservation {
  display: flex;
  text-align: center;
  align-items: center;
  height: 40px;
  width: 270px;
  border: 1px solid #c69d06;
  border-radius: 80px;
}

.ly_shoplist .bl_contWrap .shoplist-item .shop-reservation p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.shoplist-info .shop-detail-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 20px;
  background-color: #c69d06;
  color: #ffffff;
}

.ly_shoplist .shoplist-info a {
  width: 100%;
}

/* グループ店舗 */
.ly_shoplist .bl_contWrap .shoplist-item.group-shop .shop-reservation {
  border: 1px solid #00ADA9;
}

.shoplist-item.group-shop .shoplist-info .shop-detail-btn {
  background-color: #eb5405;
}


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

@media (min-width: 768px) {
  #modal-img {
    display: block;
    width: 60vw;
    height: auto;
    margin: 0 auto;
  }

  /*------------------------------------------
  ly_symptom　お悩み一覧セクション
------------------------------------------*/
  .ly_symptom {
    padding-block: 160px;
  }

  .ly_archiveSymptom .ly_symptom {
    padding-block: 40px 120px;
  }

  .bl_tabCont {
    max-width: 800px;
    margin-top: 80px;
  }

  .symptom-tabs .tab-link {
    width: 400px;
    transition: width 1.3sease;
  }

  .symptom-tabs .tab-link.active::after {
    width: 400px;
  }

  .bl_tabCont .tabs .tab-link span {
    font-size: 32px;
  }

  /* 新しい症状リスト */
  .symptom-tabs .symptomWrap {
    position: relative;
  }

  .symptom-tabs .symptomWrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    background-image: linear-gradient(to bottom, #c69d06 6px, transparent 6px);
    background-size: 1px 10px;
    background-repeat: repeat-y;
  }

  .symptom-tabs .symptomWrap a {
    width: 25%;
    padding-block: 48px 16px;
  }

  .symptom-tabs .symptomWrap a .el_imgWrap {
    max-height: 68px;
  }

  /*------------------------------------------
  ly_voice 推薦者のお声
------------------------------------------*/
  .ly_voice {
    padding-top: 160px;
  }

  .bl_voice_intro {
    max-width: 355px;
    width: 100%;
  }

  .bl_voice_intro h2 {
    font-size: 32px;
  }

  .bl_voice_intro::before {
    top: -142px;
    width: 668px;
    height: 240%;
  }

  .ly_voice ul {
    margin-top: 80px;
    flex-direction: row;
    align-items: flex-start;
    margin-inline: auto;
    width: 100%;
    max-width: 1040px;
    justify-content: space-between;
  }

  .ly_voice ul li .el_comment {
    max-width: 256px;
  }

  .ly_voice ul li .el_comment::before {
    left: -12px;
    bottom: -12px;
  }

  .ly_voice ul li .el_comment::after {
    right: -12px;
    top: -12px;
  }

  /*------------------------------------------
  ly_voice 初めての方へ のスタイル
------------------------------------------*/
  .ly_about .ly_voice {
    padding-block: 0 120px;
  }

  .ly_about .ly_voice ul {
    flex-direction: column;
    gap: 80px;
  }

  .ly_about .ly_voice ul li {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .ly_about .ly_voice ul li .bl_commentWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 56%;
    padding-top: 32px;
  }

  .ly_about .ly_voice ul li .el_comment {
    position: relative;
    width: 98%;
    max-width: unset;
  }

  .ly_voice ul li .el_comment p {
    font-size: 16px;
  }

  .ly_about .ly_voice ul li .bl_commentWrap>p {
    margin-top: 40px;
  }


  .ly_about .ly_voice ul li .bl_personInfo {
    width: 30%;
  }

  .ly_about .ly_voice ul li .el_imgWrap {
    width: 100%;
    max-width: 320px;
    overflow: hidden;
  }

  .ly_about .ly_voice ul li .el_imgWrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  /*------------------------------------------
  news ニュース
------------------------------------------*/
  .ly_news {
    padding-block: 160px;
  }

  .bl_newsHeading p {
    font-size: 80px;
    line-height: 1em;
    height: 76px;
  }

  .bl_newsHeading h2 {
    font-size: 32px;
    margin-top: 40px;
  }

  .news-header.accordion-toggle {
    display: flex;
    gap: 20px;
  }

  .ly_news .bl_shoplistNewsList li .bl_news_ttlCatWrap {
    width: 100%;
  }

  /*------------------------------------------
 shoplist　店舗一覧
------------------------------------------*/

  .ly_shoplist {
    width: 100%;
    padding: 210px 20px 80px 20px;
    background-image: url(../img/footer/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
  }

  .ly_shoplist .bl_contWrap .shoplist-item .shoplist-title {
    font-size: 20px;
    height: 2.6em;
  }

  /*------------------------------------------
  ly_menu　メニュー一覧セクション
------------------------------------------*/
  .ly_menu .bl_contWrap {
    flex-direction: column;
    /* max-width: unset; */
  }
}

@media (min-width: 1280px) {

  /*------------------------------------------
  ly_symptom　お悩み一覧セクション
------------------------------------------*/
  .ly_symptom {
    padding-block: 160px;
  }

  .bl_tabCont {
    max-width: 800px;
    margin-top: 80px;
  }

  .symptom-tabs .tab-link {
    width: 400px;
    transition: width 1.3sease;
  }

  .symptom-tabs li .el_imgWrap {
    max-height: 86px;
  }

  .symptom-tabs .tab-link.active::after {
    width: 400px;
  }

  .bl_tabCont .tabs .tab-link span {
    font-size: 32px;
  }

  .symptom-tabs ul {
    max-width: 1040px;
  }

  /*------------------------------------------
  ly_menu　メニュー一覧セクション
------------------------------------------*/
  .ly_menu {
    /* padding-inline: 13.88%; */
    padding-top: 160px;
  }

  .ly_archiveMenu .ly_menu {
    padding-block: 80px;
  }

  .ly_menu h2 {
    font-size: 32px;
  }

  .bl_contWrap {
    flex-direction: row;
    max-width: 1040px;
  }

  .ly_menu .bl_contWrap {
    flex-direction: row;
    max-width: unset;
  }

  .ly_archiveMenu .ly_menu .bl_contWrap {
    justify-content: space-between;
  }

  .ly_archiveShoplist .bl_contWrap {
    margin-inline: auto;
  }

  .ly_menu .bl_contWrap {
    margin-inline: auto;
    max-width: 1040px;
    justify-content: space-between;
  }

  .ly_menu .bl_menu_list {
    margin-top: 0px;
    margin-inline: unset;
    gap: 0px;
  }

  .ly_archiveMenu .ly_menu .bl_menu_list {
    width: unset;
    margin-inline: unset;
  }

  .ly_menu .bl_menu_list .bl_menu_item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 0;
    border: none;
    border-bottom: 0.8px solid #dddcdc;
    max-width: 760px;
  }


  .ly_menu .bl_menu_list .bl_menu_item:first-child {
    border-top: 0.8px solid #dddcdc;
  }

  .ly_menu .bl_menu_list .bl_menu_item .bl_menu_thumb {
    width: 200px;
    height: 112px;
    overflow: hidden;
  }

  .ly_menu .bl_menu_list .bl_menu_item .bl_menu_text {
    margin-top: 0px;
    max-width: 524px;
  }

  .ly_menu .bl_menu_list .bl_menu_item .bl_menu_text a {
    text-align: end;
    background: none;
    margin-inline: auto 54px;
  }

  .ly_menu .bl_menu_list .bl_menu_item .bl_menu_text a::after {
    scale: 1.6;
  }

  /*------------------------------------------
  ly_symptom　お悩み一覧セクション
------------------------------------------*/
  .ly_symptom {
    padding-block: 160px;
  }

  .bl_tabCont {
    max-width: 1040px;
  }

  .symptom-tabs .symptomWrap a {
    padding-block: 68px 16px;
  }

  .symptom-tabs .symptomWrap a .el_imgWrap {
    max-height: 86px;
  }

  /*------------------------------------------
  ly_voice 推薦者のお声
------------------------------------------*/
  .ly_voice {
    padding-top: 0px;
    padding-block: 160px;
  }

  /*------------------------------------------
 shoplist　店舗一覧
------------------------------------------*/
  .ly_shoplist {
    width: 100%;
    padding-block: 210px 80px;
    padding-inline: 13.88%;
    background-image: url(../img/footer/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
  }

  .ly_archive .bl_contWrap {
    max-width: 1040px;
  }

  .ly_shoplist .bl_contWrap .shoplist-item {
    max-width: 480px;
    width: 47%;
    margin-inline: unset;
  }
}

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