/**
 * File: base.css
 * Usage: 全ページ共通のスタイルを定義します。レイアウト、モジュールなど。
 * Example: ly_header, ly_footer, el_btn, el_gradientGold, el_subpTtl, el_normalTtl
*/

@charset "UTF-8";

/* ================================================  
 リセットの記述
================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

html::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  /* Fallback */
  text-rendering: optimizeSpeed;
  line-height: 1.4;
  overflow-x: hidden;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

a {
  text-decoration: none;
  color: inherit;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================================================  
 ログイン時に出るWordPress管理画面のツールバーを非表示
================================================ */
#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

/* ================================================  
 フォントの読み込み
================================================ */
@font-face {
  font-family: 'ZenKakuGothicNew';
  font-weight: 400;
  src: url(../fonts/ZenKakuGothicNew-Regular.woff2) format('woff');
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  font-weight: 500;
  src: url(../fonts/ZenKakuGothicNew-Medium.woff2) format('woff');
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  font-weight: 700;
  src: url(../fonts/ZenKakuGothicNew-Bold.woff2) format('woff');
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  font-weight: 900;
  src: url(../fonts/ZenKakuGothicNew-Black.woff2) format('woff');
}

/* ================================================  
 スタイルの適用(モバイルファーストで記述)
================================================ */

:root {
  --color-base: #364238;
  --color-accent: #3a7d44;
}

body {
  background-color: #fff;
  color: var(--color-base);
  font-size: 16px;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'ZenKakuGothicNew', sans-serif;
  overscroll-behavior: none;
}

body.noScroll {
  overflow: hidden;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
  margin-top: 0.6em;
  margin-bottom: 0.4em;
}

h4 {
  font-size: 1.12em;
}

.clearfix::after {
  clear: both;
  content: '';
  display: block;
}

li {
  list-style: none;
}

/* メディアクエリ用の表示・非表示 */
.sm_only {
  display: block !important;
}

.md_only,
.lg_only {
  display: none !important;
}

/* ================================================  
  自由記入フィールドの画像をレスポンシブに
================================================ */
@media (max-width: 768px){
  img.alignright, img.alignleft{
    float: none !important;
    display: block;
    margin: 16px auto !important;
    max-width: 100%;
    height: auto;
  }
}

/* ================================================  
  レイアウト
================================================ */
/* 全体のレイアウト */
.ly_cont {
  padding-inline: 20px;
}

/* ヘッダー */
.ly_header {
  position: sticky;
  width: 100%;
  height: 64px;
  top: 0;
  display: flex;
  background: #fff;
  z-index: 1000;
  padding-inline: 20px;
  transition: transform 0.25s ease;
}

.ly_header.is-hidden {
  transform: translateY(-100%);
}

/* ================================================  
 ブロックモジュール
================================================ */
/* ヘッダー */
.bl_headerCont {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_headerCont h1 {
  height: fit-content;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.bl_headerCont h1 span {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
}

.bl_headerCont h1 svg,
.bl_header_logo svg {
  width: 56px;
  height: auto;
}

.bl_header_nav {
  font-size: 13px;
  align-items: center;
  display: none;
}

/* ================================================  
  エレメントモジュール
================================================ */
/* ボタン */
.el_btn {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.el_btn.arrowDown svg {
  transform: rotate(90deg);
}

.isOpen .el_btn.arrowDown svg {
  transform: rotate(-90deg);
}

/* セクションヘッダー */

.bl_secHeader {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bl_secHeader>span {
  width: 120px;
  height: 120px;
  background: linear-gradient(180deg,
      rgba(170, 214, 21, 0.4) 0%,
      rgba(110, 195, 37, 0.4) 100%);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 1;
  transform: translate(-45%, 0);
}

.bl_secHeader small {
  font-size: 16px;
  color: #0070ae;
  line-height: 1;
  z-index: 3;
}

.bl_secHeader h2 {
  font-weight: 500;
  font-size: 24px;
  z-index: 3;
}

/* ================================================  
 CTAセクション
================================================ */

.ly_cta {
  background: url(../img/common/cta-bg.webp);
  padding: 24px 20px;
}

.bl_cta {
  border-radius: 4px;
  background: #fff;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.bl_ctaStaff {
width: 100%;
}
.bl_ctaStaff img {
width: 100%;
}

.bl_cta>* {
  z-index: 1;
}

.bl_cta::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: url(../img/common/cta-logo.svg) no-repeat center/contain;
}

.bl_ctaQuote {
  position: absolute;
  margin-inline: 0;
  bottom: 17%;
}

.bl_ctaCount {
  background: #fff;
  border: 2px solid #3a7d44;
  width: calc(100% + 10px);
  margin-left: -5px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 31px;
  box-shadow: 4px 4px 4px 0px #00000040;
  color: var(--color-base);
  position: absolute;
  top: -45px;
}

.bl_ctaCount::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background: transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #3a7d44;
  border-bottom: none;
  z-index: 1;
}

.bl_ctaCount::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background: transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  z-index: 2;
  pointer-events: none;
}

.bl_ctaCount span {
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
}

.js_countNum {
  position: relative;
}

.js_countNum::before {
  top: 0;
  left: 0;
  transform: translateY(-50%);
  content: '';
  position: absolute;
  width: 40px;
  height: 10px;
  background: url(../img/common/cta-count.svg) no-repeat center/contain;
}

.el_ctaBtn {
  margin-top: 100px;
  position: relative;
  background: linear-gradient(180deg,
      rgba(52, 210, 76, 1) 0%,
      rgba(58, 125, 68, 1) 100%);
  color: #fff;
  border-radius: 20px;
  width: 100%;
  text-align: center;
  padding-block: 20px;
  font-size: clamp(1.25rem, 0.8929rem + 1.7857vw, 2.5rem);
  font-weight: 700;
  box-shadow: 4px 4px 4px 0px #00000040;
}

/* ================================================  
 お悩みスワイパー
================================================ */

.bl_symptomSwiper {
  margin-block: 40px;
  background: #fff;
  padding-block: 40px 20px;
  border-radius: 8px;
  --swiper-pagination-bullet-size: 15px;
  --swiper-theme-color: var(--color-accent);
  --swiper-pagination-bullet-inactive-color: #e6ead6;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.bl_symptomSwiper h2 {
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.25rem, 0.8929rem + 1.7857vw, 1.75rem);
  line-height: 1;
  margin-bottom: 20px;
}

.bl_symptomSwiper .swiper-slide {
  max-width: 60vw;
  border-radius: 20px;
}

.bl_symptomSwiper .swiper-pagination {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  padding-inline: 20px;
  position: static;
}

.bl_symptomSwiper .swiper-slide h3 {
  font-size: clamp(1.125rem, 0.9464rem + 0.8929vw, 1.75rem);
  margin-block: 16px 8px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.bl_symptomSwiper .swiper-slide p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bl_symptomSwiper_img {
  border-radius: 8px;
  aspect-ratio: 220 / 120;
  overflow: hidden;
  position: relative;
  background: #e6ead6;
}

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

.bl_symptomSwiper_img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000029;
  z-index: 1;
  content: '';
}

div:not(.ly_main).ly_column {
  padding: 80px 20px;
}

.bl_columnRecent {
  margin-block: 40px;
}

.bl_columnItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_columnItem_thumb {
  width: 100%;
  aspect-ratio: 335 / 200;
  overflow: hidden;
}

.bl_columnItem_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.bl_columnItem_meta {
  display: flex;
  gap: 24px;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.bl_columnItem_meta time {
  font-family: 'Inter', sans-serif;
}

.bl_columnItem_category {
  font-size: 14px;
  font-weight: 700;
  color: #f38353;
  letter-spacing: 0.04em;
}

.bl_columnItem_content h3 {
  font-weight: 500;
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bl_columnMore .bl_columnList {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bl_columnMore .bl_columnItem {
  flex-direction: row;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.bl_columnMore .bl_columnItem_thumb {
  aspect-ratio: 120 / 68;
  width: 120px;
  flex-shrink: 0;
}

.bl_columnMore .bl_columnItem_content h3 {
  font-weight: 500;
  font-size: 16px;
}

.bl_columnMore .bl_columnItem_meta {
  gap: 8px;
  font-size: 14px;
  flex-wrap: wrap;
}

.bl_columnMore {
  margin-bottom: 40px;
}

/* ================================================  
  フッター
================================================ */

.ly_footer {
  background: #fff;
}

.ly_footerWrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
}

.ly_footer_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ly_footer_top p {
  writing-mode: vertical-rl;
  text-align: left;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1429rem + 1.7857vw, 2rem);
}

.ly_footer_bottomWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bl_footer_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  max-width: 250px;
  margin-inline: auto;
}

.ly_footer_linkListWrap {
  z-index: 2;
  background: url(../img/common/logo.svg) no-repeat center/contain;
}

.ly_footer_linkList a {
  color: var(--color-base);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1rem, 0.9107rem + 0.4464vw, 1.125rem);
}

.ly_footer_linkList a::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #df6d14;
  display: inline-block;
}

.ly_footer_linkList {
  margin-block: 60px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 45px;
  max-width: 295px;
  margin-inline: auto;
}

.ly_floatingButtons {
  position: fixed;
  bottom: 0px;
  right: 0px;
  height: 70px;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  z-index: 998;
  width: 100%;
}

.ly_floatingButtons button,
.ly_floatingButtons a {
  height: 100%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  background: linear-gradient(0deg, #06c755, #06c755),
    linear-gradient(180deg,
      rgba(141, 39, 0, 0) 0%,
      rgba(141, 39, 0, 0.16) 84%,
      rgba(141, 39, 0, 0.2) 100%);
  background-blend-mode: multiply;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.ly_floatingButtons button:nth-child(2),
.ly_floatingButtons a:nth-child(2) {
  background: linear-gradient(0deg, #0070ae, #0070ae),
    linear-gradient(180deg,
      rgba(141, 39, 0, 0) 0%,
      rgba(141, 39, 0, 0.16) 84%,
      rgba(141, 39, 0, 0.2) 100%);
}

.ly_floatingButtons button:nth-child(3),
.ly_floatingButtons a:nth-child(3) {
  background: linear-gradient(0deg, #ff5000, #ff5000),
    linear-gradient(180deg,
      rgba(141, 39, 0, 0) 0%,
      rgba(141, 39, 0, 0.16) 84%,
      rgba(141, 39, 0, 0.2) 100%);
}

.ly_floatingButtons button svg,
.ly_floatingButtons a svg {
  width: 18px;
  height: 18px;
}

.ly_floatingButtons button:nth-child(2) svg path,
.ly_floatingButtons a:nth-child(2) svg path,
.ly_floatingButtons button:last-child svg path,
.ly_floatingButtons a:last-child svg path {
  stroke: #fff;
  stroke-width: 3px;
}

.bl_modalOverlay {
  display: none;
}

.bl_modalOverlay.isOpen {
  position: fixed;
  inset: 0;
  background: #00000066;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-block: 40px;
}

.bl_floatModal {
  display: none;
  background: #f8f5e9;
  padding: 40px 20px;
  border-radius: 16px;
  position: relative;
  width: min(720px, 100%);
  overflow: scroll;
  height: fit-content;
  max-height: 100%;
}

.bl_modalOverlay.openLine .bl_modalLine {
  display: block;
}

.bl_modalOverlay.openMail .bl_modalMail {
  display: block;
}

.bl_modalOverlay.openPhone .bl_modalPhone {
  display: block;
}

.bl_modalClose {
  color: #fff;
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  border: none;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bl_floatModal>p {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.bl_floatModal_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.bl_floatModal_list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 20px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.bl_floatModal_list a svg {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.bl_modalLine a path {
  fill: var(--color-accent);
}

.bl_floatModal_list a div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl_floatModal_list a p {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-accent);
}

.bl_floatModal_list a span {
  font-weight: 500;
  font-size: 16px;
  color: #a8a8a8;
}

.bl_modalMail .bl_contactForm {
  padding: 0;
}

/* ================================================  
 ハンバーガーメニュー
================================================ */

.el_humb {
  position: relative;
  flex-direction: column;
  gap: 7px;
  background: #3a7d44;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.el_humb span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.el_humb p {
  font-size: 10px;
  color: #fff;
  line-height: 0.9;
  font-family: 'Inter', sans-serif;
}

/* ハンバーガーメニューのナビゲーション */
.bl_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #00000066;

  z-index: 1000;
  user-select: none;
  /* 初期状態 */
  opacity: 0;
  visibility: hidden;
  /* アニメーション */
  transition: all 0.3s ease;
}

.bl_navTop {
  padding: 13px 20px;
  background: #f8f5e9;
}

.bl_nav_ul {
  width: 90%;
  max-height: 90vh;
  overflow-y: scroll;
  padding: 40px 20px 40px 40px;
  margin-inline: auto 0;
  background: #f8f5e9;
  border-bottom-left-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.js_toggleLink.isOpen svg {
  transform: rotate(45deg);
}

.bl_nav_ul>a:not(:last-child),
.bl_nav_ul .bl_nav_ul_li:not(:last-child)>span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
}

.bl_nav_ul>a:not(:last-child)::before,
.bl_nav_ul .bl_nav_ul_li:not(:last-child)>span::before {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ddefa1 0%, #c5e7a8 100%);
}

.bl_nav_ul ul {
  display: none;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0 0 20px;
}

.bl_nav_ul.isOpen ul {
  display: flex;
}

.bl_navSymptomCategories {
  display: none;
  gap: 12px;
}

.bl_navSymptomCategory_ttl.isOpen>svg {
  transform: rotate(45deg);
}

.bl_navSymptomCategory_list {
  display: none;
  margin-top: 18px;
  flex-direction: column;
  gap: 12px;
}

.bl_navSymptomCategory:has(.isOpen) .bl_navSymptomCategory_list {
  display: flex;
}

.bl_navSymptomCategory_list>a {
  display: flex;
  gap: 4px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid #d9d9d9;
  width: fit-content;
}

.bl_navSymptomCategory_ttl {
  font-weight: 500;
  font-size: 16px;
  color: #3a7d44;
  margin: 0;
}

.bl_navSymptomCategory_itemTtl {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bl_navSymptomCategory img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bl_navSymptomCategory_ttl>svg {
  width: 12px;
  height: 12px;
}

.el_nav_close {
  position: absolute;
  top: 8px;
  right: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 100000;
  gap: 7px;
  background: #3a7d44;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.el_nav_close span {
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.el_nav_close p {
  font-size: 10px;
  color: #fff;
  line-height: 0.9;
  font-family: 'Inter', sans-serif;
}

.el_nav_close span:nth-of-type(1) {
  top: 4.5px;
  transform: rotate(45deg);
}

.el_nav_close span:nth-of-type(2) {
  top: -4.5px;
  transform: rotate(-45deg);
}

.bl_nav.is_open {
  opacity: 1;
  visibility: visible;
}

.ly_shopModalCont {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  padding: 40px 20px 60px;
  background: #00000066;
  z-index: 9999;
  display: none;
  overflow: hidden;
}

.ly_shopModalCont.isOpen {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ly_shopModalCont_inner {
  background: #f8f5e9;
  border-radius: 20px;
  overflow-y: auto;
  height: 100%;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.ly_shopModalCont_inner::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.ly_shopModalCont .bl_floatModal {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px;
}

.bl_floatModalShops {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 20px;
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

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

.bl_floatModalShops::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}


/* ================================================  
  Shop 
================================================ */

.bl_clinicItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_clinicItem_img {
  aspect-ratio: 335 / 200;
  border-radius: 8px;
  overflow: hidden;
}

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

.bl_clinicItem h3 {
  font-size: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  line-height: 100%;
  text-align: center;
  position: relative;
  margin: 0;
  pointer-events: none;
}

.bl_clinicItem h3 svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 83px;
  height: auto;
}

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

.bl_clinicItem_content>p {
  display: flex;
  gap: 16px;
  line-height: 120%;
  letter-spacing: 0.05em;
  align-items: flex-start;
}

.bl_clinicItem_content>p svg {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

.bl_clinicItem_phone {
  align-items: center;
  font-weight: 700;
  color: #df6d14;
  font-size: clamp(1.125rem, 1.0179rem + 0.5357vw, 1.5rem) !important;
}

.bl_clinicItem_reserve {
  display: flex;
  gap: 20px;
}

.bl_clinicItem_reserve a {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-weight: 700;
  font-size: clamp(1rem, 0.9286rem + 0.3571vw, 1.25rem);
  border-radius: 50px;
  color: #fff;
  align-items: center;
  padding-block: 4px 6px;
  max-width: 220px;
}

.bl_clinicItem_reserve a svg {
  width: 20px;
  height: auto;
}

.bl_clinicItem_reserve a:first-child {
  background: #06c755;
}

.bl_clinicItem_reserve a:last-child {
  background: #0070ae;
}

.bl_clinicItem .el_clinicMore {
  border-radius: 8px;
  gap: 10px;
  padding-block: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  background: #6fc424;
}

.ly_pageTop:not(:has(.ly_subpHeader)) {
  display: flex;
  justify-content: flex-end;
  padding-block: 34px;
}

/* ================================================  
  News 
================================================ */

.bl_infoItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 12px;
  padding-inline: 16px;
  border-bottom: 1px solid #e5e5e5;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
}

a.bl_infoItem {
  cursor: pointer;
}

a.bl_infoItem:hover {
  background-color: #41cc4b1c;
  border-radius: 8px 8px 0px 0px;
}

a.bl_infoItem:hover h3,
a.bl_infoItem:hover span {
  text-decoration: underline;
}

.bl_infoItem_meta {
  display: flex;
  gap: 24px;
}

.bl_infoItem_content {
  display: contents;
}

.bl_infoItem_category {
  font-weight: 700;
  font-size: 14px;
  color: #f38353;
}

.bl_infoItem h3 {
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bl_infoItem a {
  flex-shrink: 0;
  align-self: flex-end;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-accent);
}

.bl_infoItem a:hover {
  text-decoration: underline;
}

.bl_infoItem span {
  align-self: flex-end;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-accent);
}

/* ================================================  
 動画モーダル
================================================ */

.el_beforeAfter_video {
  max-width: 224px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  padding: 8px 40px;
  background: #6fc424;
  color: #fff;
  font-weight: 700;
  line-height: 120%;
  border: none;
  cursor: pointer;
}

.bl_videoModal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.bl_videoModal.isOpen {
  display: flex;
}

.bl_videoModal_inner {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.bl_videoModal_content iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.bl_videoModal_close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.bl_videoModal_overlay {
  position: absolute;
  inset: 0;
}

/* ================================================  
 ヘルパー
================================================ */
/* 余白の調整 */
.hp_mt20 {
  margin-top: 20px;
}

.hp_mt40 {
  margin-top: 40px;
}

.hp_pb20 {
  padding-bottom: 20px;
}

.hp_pt40 {
  padding-top: 40px;
}

.hp_padX40 {
  padding-inline: 40px;
}

.hp_padY20 {
  padding-block: 20px;
}

.hp_wMax {
  width: max-content;
  margin-inline: auto;
}

.hp_colorOrange {
  color: #ff5000;
}

.hp_colorGreen {
  color: #6ec325;
}

.hp_bgWhite {
  background: #fff;
}

/* 色の変更 */
.hp_bgBlack {
  background: #333;
}

/* テキストの調整 */
.hp_txtCenter {
  text-align: center;
}

.hp_txtRight {
  text-align: right;
  justify-content: flex-end;
}

.hp_txtMedium {
  font-weight: 500;
}

.hp_txtBoldUnderline {
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-decoration-color: #ffe100;
  text-underline-offset: -4px;
}

.hp_noImage {
  width: 100%;
  height: 100%;
  background: #f3f3f3 url(../img/common/logo.svg) no-repeat center / contain;
}

/* wp-pagenavi */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.wp-pagenavi a.nextpostslink {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/pagenavi-arrow.svg) no-repeat center/contain;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 50%;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.wp-pagenavi .current {
  color: #ff5000;
}

.wp-pagenavi a.previouspostslink {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/pagenavi-arrow.svg) no-repeat center/contain;
  transform: rotate(180deg);
}

/* bl_customDataSub styles moved to components/wysiwyg.css */

.ly_floatingFirst {
  position: fixed;
  height: auto;
  bottom: 120px;
  right: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  user-select: none;
  z-index: 20;
}

.ly_floatingFirst.isVisble {
  opacity: 1;
  z-index: 940;
}

.ly_floatingFirst a {
  display: block;
  width: 80px;
  height: 80px;
}

.breadcrumb {
  font-size: 14px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding-inline: 20px;
  gap: 12px;
  max-width: 100%;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.breadcrumb>* {
  flex-shrink: 0;
}

.breadcrumb li:last-child {
  position: relative;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-all;
  text-align: right;
}

.breadcrumb li:last-child::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #df6d14;
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
  height: 100%;
}

.mv {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.mv.animate {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .sm_only {
    display: none !important;
  }

  .md_only,
  .lg_only {
    display: block !important;
  }

  .ly_cont {
    max-width: 1080px;
    margin-inline: auto;
  }

  .bl_secHeader {
    padding-inline: 20px;
  }

  .bl_secHeader>span {
    transform: translate(calc(-45% + 20px), 0);
  }

  .ly_normalSec {
    padding-block: 80px;
  }

  /* ヘッダー */
  .ly_header {
    z-index: 1000;
    height: 100px;
    font-weight: 500;
    font-size: 18px;
    color: var(--color-base);
  }

  .bl_headerCont {
    justify-content: space-between;
  }

  .bl_headerCont h1 svg {
    width: 7vw;
    max-width: 110px;
  }

  .bl_header_nav {
    display: flex;
    height: 100%;
    gap: 50px;
  }

  .bl_header_nav_ul {
    display: flex;
    gap: clamp(12px, 1.5vw + 8px, 20px);
    align-items: center;
    font-size: clamp(12px, 1.2vw + 9px, 16px);
  }

  .bl_header_nav_ul li {
    white-space: nowrap;
  }

  .bl_header_nav_ul>a {
    width: 14vw;
    max-width: 190px;
  }

  .bl_shopModalBtn {
    cursor: pointer;
  }

  .bl_showOnHover {
    position: relative;
    cursor: pointer;
    white-space: nowrap;
  }

  .bl_showOnHover .el_rotate,
  .js_headerMenuToggle .el_rotate {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .bl_showOnHover:hover .el_rotate {
    transform: rotate(45deg);
  }

  .bl_showOnHover_drop {
    display: none !important;
  }

  .bl_showOnHover:hover .bl_showOnHover_drop {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 16px 0px #00000029;
    border-radius: 8px;
  }

  .bl_header_nav_ul>li>a:hover,
  .bl_showOnHover a:hover {
    text-decoration: underline;
    text-decoration-color: #def2d4;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
  }

  .js_headerMenuToggle {
    cursor: pointer;
    white-space: nowrap;
  }

  .ly_header_symptomMenu.isOpen {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
    flex-grow: 1;
  }

  .bl_header_symptomMenu_categories {
    max-width: 298px;
    flex-shrink: 0;
  }

  .bl_header_symptomMenu_categories h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: var(--color-accent);
    padding: 4px 16px;
    border-radius: 4px;
    margin-bottom: 28px;
  }

  .symptom-category-button {
    display: grid;
    grid-template-columns: 1fr 20px;
    align-items: center;
    width: 100%;
    padding: 8px 15px;
    gap: 10px;
    text-align: left;
    line-height: 1.3;
    color: var(--text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d5e623;
    cursor: pointer;
  }

  .symptom-category-button:first-child {
    border-top: 1px solid var(--line);
  }

  .symptom-category-button:hover {
    background: #f2f7ea;
  }

  .symptom-category-button.is-active {
    background: #fff;
    color: var(--color-accent);
    font-weight: 700;
    position: relative;
  }

  .symptom-category-button.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-accent);
  }

  .ly_header_symptomMenu {
    margin: 0;
    list-style: none;
    flex-grow: 1;
  }

  .bl_header_symptomMenu {
    margin: 0;
    max-height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .bl_header_symptomMenu::-webkit-scrollbar {
    display: none;
  }

  .bl_header_symptomMenu_items {
    position: relative;
  }

  .symptom-list {
    display: none;
    gap: min(2vw, 20px);
    list-style: none;
    margin: 0;
  }

  /* active group */
  .symptom-list.is-active {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
  }

  /* single item */
  .symptom-list li a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text);
    padding: 12px 2px;
    border-bottom: 1px solid #edf2df;
  }

  .symptom-list li a img {
    width: min(5.5vw, 80px);
    height: min(5.5vw, 80px);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .symptom-list li a svg {
    width: min(5.5vw, 80px);
    height: min(5.5vw, 80px);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  /* subtle row separators like in screenshot */
  .symptom-list li a+* {
    border-top: 0;
  }

  .symptom-list li a:hover {
    color: var(--color-accent);
  }

  .ly_shopModalCont {
    padding: 110px 20px 20px;
    z-index: 990;
  }

  .ly_shopModalCont_inner {
    height: 100%;
  }

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

  .bl_floatModalShops {
    grid-template-columns: repeat(2, 1fr);
    gap: min(5.5vw, 80px);
    padding: min(5.5vw, 80px);
  }

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

  /* ================================================  
 CTAセクション
================================================ */

  .ly_cta {
    padding: 80px 48px;
    position: relative;
    z-index: 2;
  }

  .bl_cta {
    border-radius: 16px;
    padding-block: min(2.5vw, 36px) 0;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto auto 1fr;
    overflow: hidden;
    aspect-ratio: 1350 / 640;
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: 4vw;
    gap: 0;
  }

  .bl_cta::before {
    background: url(../img/common/logo.svg) no-repeat center/cover;
    transform: scale(1.2);
    opacity: 0.8;
  }

  .bl_cta>picture:first-child {
    grid-area: 1 / 1 / 2 / 3;
    justify-self: center;
    width: 54vw;
    max-width: 770px;
  }

  .bl_cta picture:nth-child(2) {
    width: 46vw;
    max-width: 670px;
  }

  .bl_cta picture:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40vw;
    max-width: 700px;
    transform: translateX(12%);
    grid-area: 2 / 2 / 4 / 3;
  }

  .bl_cta picture:nth-child(3) img {
    width: 100%;
  }

  .bl_ctaQuote {
    position: absolute;
    margin-inline: unset;
    bottom: min(3vw, 40px);
    right: min(3vw, 40px);
    width: 24vw;
    max-width: 344px;
  }

  .el_ctaBtn {
    margin-top: 0;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: 3 / 1 / 4 / 2;
    width: 52vw;
    max-width: 740px;
  }

  .bl_ctaCount {
    top: -25px;
    max-width: 644px;
    width: fit-content;
    padding-inline: 30px;
  }

  /* ================================================  
 お悩みスワイパー
================================================ */
  .bl_symptomSwiper {
    background: transparent;
    padding-top: 60px;
  }

  .bl_symptomSwiper .swiper-slide {
    max-width: 41vw;
    aspect-ratio: 60 / 34;
    border-radius: 16px;
  }

  .bl_symptomSwiper h2 {
    padding-bottom: 40px;
  }

  .bl_symptomSwiper a {
    display: block;
    position: relative;
    height: 100%;
  }

  .bl_symptomSwiper_txt {
    position: absolute;
    bottom: 50px;
    left: 40px;
    right: 40px;
    color: #fff;
    z-index: 2;
  }

  .bl_symptomSwiper .swiper-pagination {
    max-width: 1280px;
    margin-inline: auto;
  }

  .ly_column {
    padding: 120px 0;
  }

  .ly_main.ly_column {
    padding-top: 0;
  }

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

  .bl_columnCont {
    padding-inline: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-top: 50px;
    max-width: 1120px;
    margin-inline: auto;
  }

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

  .bl_columnRecent {
    margin: 0;
  }

  .bl_columnMore .bl_columnItem {
    gap: 45px;
  }

  /* ================================================  
  News
  ================================================ */

  .bl_infoItem {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
  }

  .bl_infoItem_content {
    display: block;
  }

  .bl_infoItem span {
    align-self: center;
    width: 100px;
    flex-shrink: 0;
    text-align: right;
  }

  /* ================================================  
  フッター
  ================================================ */

  .ly_footerWrapper {
    margin-top: 60px;
    max-width: 1220px;
    font-weight: 500;
    margin-inline: auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-inline: 80px;
    row-gap: 80px;
    background: transparent;
  }

  .ly_footer_linkListWrap {
    background: transparent;
    position: relative;
    order: -1;
    margin: 0;
  }

  .ly_footer_linkListWrap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../img/common/logo.svg) no-repeat center/contain;
    display: block;
    margin: 0 auto;
    width: 200%;
    height: 200%;
    transform: translate(-40%, -50%);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
  }

  .ly_footer_linkList {
    max-width: none;
  }

  .bl_footer_bottom {
    max-width: none;
    gap: 16px;
  }

  .ly_floatingFirst {
    height: auto;
    bottom: 10px;
    right: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    user-select: none;
  }

  .ly_floatingFirst a {
    display: flex;
    width: 120px;
    height: auto;
  }

  .el_secTtl {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .hp_borderBold {
    margin-top: 12px;
  }

  .hp_mt40 {
    margin-top: 80px;
  }

  .hp_pt40 {
    padding-top: 80px;
  }

  .el_subpTtl {
    position: relative;
    padding-block: 20px 10px;
    border-bottom: #bb9402 2px solid;
    font-size: 2rem;
  }

  .el_subpTtl span {
    color: #fff;
    opacity: 0.05;
    position: absolute;
    top: -24px;
    left: -100px;
    z-index: 1;
    background: transparent;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: white;
    font-size: 72px;
    translate: -20px -20px;
  }

  .el_btn svg {
    width: 70px;
    height: 70px;
  }

  .el_normalTtl {
    font-size: 1.5rem;
  }

  .bl_secHeader h2 {
    font-size: 36px;
  }

  .bl_reasonCont_itemImg img {
    overflow: hidden;
    border-radius: 16px;
  }

  /* wp-pagenavi */

  .wp-pagenavi a.nextpostslink {
    width: 70px;
    height: 70px;
    margin-left: 20px;
  }

  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .wp-pagenavi .current {
    color: #ff5000;
  }

  .wp-pagenavi a.previouspostslink {
    width: 70px;
    height: 70px;
    margin-right: 20px;
  }

  .hp_txtBoldUnderline {
    text-decoration-thickness: 16px;
    text-underline-offset: -8px;
  }

  .ly_header_megaMenu {
    display: none;
  }

  .ly_header_megaMenu.isOpen {
    display: flex;
    position: fixed;
    top: 100px;
    width: 100vw;
    background: #fff;
    left: 0;
    padding: 40px;
    box-shadow: 4px 4px 4px 0px #00000040;
    height: fit-content;
    max-height: calc(100vh - 100px);
  }

  .ly_header_megaMenuWrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
    margin-inline: auto;
    gap: 40px;
    width: 100%;
  }

  .ly_pageTop {
    max-width: 1320px;
    margin-inline: auto;
  }

  .ly_pageTop {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  .ly_pageTop:not(:has(.ly_subpHeader)) {
    justify-content: flex-end;
    padding-block: 34px;
  }

  .bl_clinicItem_reserve a {
    height: 42px;
  }

  .bl_clinicItem .el_clinicMore {
    height: 60px;
  }

  /* .bl_customData align styles moved to components/wysiwyg.css */
}

@media screen and (min-width: 1280px) {
  .ly_header {
    padding-inline: 80px;
    padding-block: 12px;
  }

  .bl_header_nav_ul {
    gap: 32px;
  }
}