/*---------------
font
---------------*/
.en{
	font-family: var(--font-en);
	font-weight: 400;
	font-style: normal;
}
.jp{
	font-family: var(--font-jp);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
.jp2{
	font-family: var(--font-jp2);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

/* ---------- CSS Variables ---------- */
:root {
  --color-primary:    #7b7b3a;
  --color-primary-dk: #5a5a28;
  --color-primary-lt: #a8a85a;
  --color-text:       #513A31;
  --color-dark:       #606063;
  --color-gray:       #ABABAF;
  --color-white:      #ffffff;
  --color-accent:     #598733;
  --color-accent-bg:  #F1F7ED;
  --color-main:       #A69260;
  --color-main-bg:    #F5F4ED;
  --color-bg:    			#F4F4F4;
  --color-bg-footer:			#292A34;
  --font-en: "Marcellus", serif;
  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --font-jp2: "Noto Serif JP", sans-serif;

  --container:  1200px;
  --gutter:     clamp(1rem, 5vw, 2rem);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-mlg:  24px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-cta:  0px 0px 40px rgba(166, 146, 96, 0.1);

  --transition: .3s ease;
}

/*---------------
body
---------------*/
html{
	margin-top: 0!important;
}
#wpadminbar {
    margin-top: 0 !important;
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        margin-top: 0 !important;
    }
}
body{
	position: relative;
	overflow-x: hidden;
}
.pc-on{
	display: block;
}
.sp-on{
	display: none;
}
.br-pc{
	display: block;
}
.br-sp{
	display: none;
}
.fade {
  opacity: 0;
  -webkit-animation: fadeIn ease 1.5s;
  -moz-animation: fadeIn ease 1.5s;
  -o-animation: fadeIn ease 1.5s;
  -ms-animation: fadeIn ease 1.5s;
  animation: fadeIn ease 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media all and (max-width: 786px) {
	html{
		max-width: 786px;
	}
	body{
		max-width: 786px;
	}
	.pc-on{
		display: none;
	}
	.sp-on{
		display: block;
	}
	.br-pc{
		display: none;
	}
	.br-sp{
		display: block;
	}
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }

a { text-decoration: none; color: inherit; transition: opacity var(--transition); }
a:hover { opacity: .75; }

ul, ol { list-style: none; }

address { font-style: normal; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Section Common ---------- */
.section { padding-block: clamp(60px, 10vw, 100px); }

.section__label {
  font-family: var(--font-en);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--color-primary);
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.section__label--light { color: var(--color-accent); }

.section__title {
  font-family: var(--font-ja);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.section__title--light { color: var(--color-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}

.btn--tel {
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-color: var(--color-dark);
}
.btn--tel:hover { background: var(--color-dark-2); opacity: 1; }

.btn--sm { padding: .5rem 1.25rem; font-size: .8rem; }

/* ---------- Link Arrow ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--color-primary);
  font-weight: 500;
}
.link-arrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.link-arrow:hover::after { width: 30px; opacity: 1; }

/*---------------
header
---------------*/

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-white);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-top__spacer { flex: 1; }

.header-top__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-tel {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-right: 24px;
  color: var(--color-main);
  text-decoration: none;
  transition: opacity var(--transition);
}
.header-tel:hover { opacity: .7; }

.header-tel__label {
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-main);
}

.header-tel__num {
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-main);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.header-btn--outline {
  background: transparent;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
.header-btn--outline:hover {
  background: var(--color-main);
  color: var(--color-white);
  opacity: 1;
}

.header-main {
  height: 110px;
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
  padding: 0 40px;
}

@media (max-width: 767px) {
	.header-main {
	  height: 80px;
	  padding: 24px 16px;
	}
	.header-main__inner {
	  padding: 0;
	}
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  height: 51px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-nav {
  margin-left: auto;
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  list-style: none;
  margin: 18px 0 0 0;
  padding: 0;
}

.header-nav__link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-dark);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

/*--- Underline bar ---*/
.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--color-main);
  transition: left var(--transition), right var(--transition);
}

.header-nav__link:hover,
.header-nav__link.is-active {
  color: var(--color-main);
  opacity: 1;
}

.header-nav__link:hover::after,
.header-nav__link.is-active::after {
  left: .1rem;
  right: .1rem;
}

/*---------------
humburger menu
---------------*/
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--h-sp-menu-bg);
  z-index: 1100;
  overflow-y: auto;
  padding: calc(var(--h-total) + 1rem) 0 2rem;
  transition: right var(--transition);
  -webkit-overflow-scrolling: touch;
}

.sp-menu.is-open { right: 0; }

.sp-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-menu__link {
  display: flex;
  align-items: center;
  padding: 1rem 1.75rem;
  font-size: .9rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), background var(--transition);
}
.sp-menu__link:hover {
  color: var(--h-accent);
  background: rgba(255,255,255,.04);
  opacity: 1;
}

.sp-menu__tel {
  padding: 1.5rem 1.75rem 0;
}
.sp-menu__tel a {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.sp-menu__tel-label {
  font-size: .65rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  font-family: var(--font-en);
}
.sp-menu__tel-num {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.sp-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1050;
  cursor: pointer;
}
.sp-menu__overlay.is-visible { display: block; }

body.nav-open { overflow: hidden; }

@media (max-width: 1023px) {
  .header-nav { display: none; }
  .nav-toggle  { display: flex; }
  .header-top__right { gap: .6rem; }
  .header-tel__num   { font-size: 1rem; }
}

/* SP */
@media (max-width: 767px) {
  :root {
    --h-height-top:  0px;
    --h-height-main: 60px;
  }

  body { padding-top: 60px; }

  .header-top { display: none; }

  .site-logo__img  { height: 36px; }
  .site-logo__name { font-size: .95rem; }
}
/*-----------------------------------------
 ハンバーガーボタンの設定変更（SP時）
-----------------------------------------*/
@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1200; /* メニューが開いた時に一番上にくるように調整 */
    border: 1px solid #adadad;
    border-radius: 4px;
    width: 40px;
    height: 40px;
  }
  
  /* メニューが開いている（is-active）時の三本線の色をグレーに固定、枠線を維持 */
  .nav-toggle.is-active {
    border-color: #555;
  }
  .nav-toggle.is-active .nav-toggle__bar {
    background: #333;
  }
}

/*-----------------------------------------
 スマートフォン用全画面メニュー（上書き・拡張）
-----------------------------------------*/
@media (max-width: 1023px) {
  .site-header {
    background: transparent !important;
  }

  .header-main {
    position: relative;
    z-index: 1200;
    background: var(--color-white);
    width: 100%;
  }

  .sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    background: var(--color-white);
    z-index: 1100;
    overflow-y: auto;
    padding: 120px 40px 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .sp-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .sp-menu__logo-area {
    display: flex;
    align-items: center;
    height: 80px;
    margin-bottom: 40px;
  }

  .sp-menu__logo-link {
    display: block;
    text-decoration: none;
  }

  .sp-menu__logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .sp-menu__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 400px;
    margin: 0;
  }

  .sp-menu__link,
  .sp-menu__group-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #4a4a4a;
    text-decoration: none;
    border: none;
    padding: clamp(5px, 1.2vw, 10px) 0;
    background: transparent;
    gap: 10px;
  }

  .sp-menu__item-group {
    display: flex;
    flex-direction: column;
  }
  .sp-menu__group-title {
    color: #4a4a4a;
    padding-bottom: 4px;
  }

  .sp-menu__sub-list {
    list-style: none;
    padding: 0 0 0 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .sp-menu__sub-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    gap: 10px;
  }

  .sp-menu__sns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: clamp(20px, 1.2vw, 40px);
  }

  .sp-menu__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111214;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .sp-menu__sns-link:hover {
    opacity: 0.8;
  }

  .sp-menu__overlay {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .sp-menu {
    padding: 90px 0 40px 20vw;
  }
}

/*---------------
footer
---------------*/
.site-footer {
  background: var(--color-bg-footer);
  color: var(--color-white);
  border-radius: 24px 24px 0 0;
}

@media (max-width: 767px) {
	.site-footer {
	  border-radius: 0;
	}
}

.footer-body {
  padding-block: clamp(48px, 7vw, 80px) clamp(40px, 6vw, 48px);
}

.footer-body__inner {
  display: grid;
  grid-template-columns: 260px 200px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .footer-body__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 25px;
  }

  .footer-info,
  .footer-nav,
  .footer-group {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-group__grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .footer-group__name { font-size: .68rem; }

  .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: .5rem; }

  .page-top-btn { right: 1rem; bottom: 1rem; }
}

/*----- Col 1: Logo + Info -----*/
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
  padding: 12px 15px;
  background: var(--color-white);
  border-radius: 4px;
}

.footer-logo__img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer-address__map {
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  transition: opacity var(--transition);
}
.footer-address__map:hover {
	opacity: .75;
}

.footer-address__map img.footer-address__map-icon {
  flex-shrink: 0;
  vertical-align: middle;
  width: 16px;
  height: 16px;
}

.footer-tel {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 20px;
  color: var(--color-white);
  transition: opacity var(--transition);
}
.footer-tel:hover {
	opacity: .7;
}

.footer-tel__label {
  font-size: 14px;
  line-height: 1.2;
}

.footer-tel__num {
  font-size: 18px;
  line-height: 1.2;
}

.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #181923;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social__link img{
	width: 16px;
	height: 16px;
}
.footer-social__link:hover {
  border-color: var(--color-main);
  color: var(--color-main);
  opacity: 1;
}

@media (max-width: 767px) {
	.footer-logo {
	  width: 45%;
	  padding: 0;
	  border-radius: 0;
	  height: 60px;
	}

	.footer-logo__img {
	  height: 60px;
	}

	.footer-address {
	  font-style: normal;
	  font-size: 14px;
	  line-height: 1.75;
	  color: var(--color-white);
	  margin-bottom: 12px;
	}

	.footer-address__map {
	  color: var(--color-white);
	  text-decoration: none;
	  display: inline-flex;
	  align-items: center;
	  font-size: 14px;
	  line-height: 1.5;
	  transition: opacity var(--transition);
	}
	.footer-address__map:hover {
		opacity: .75;
	}

	.footer-address__map img.footer-address__map-icon {
	  flex-shrink: 0;
	  vertical-align: middle;
	  width: 16px;
	  height: 16px;
	}

	.footer-tel {
	  display: inline-flex;
	  align-items: baseline;
	  gap: 8px;
	  text-decoration: none;
	  margin-bottom: 20px;
	  color: var(--color-white);
	  transition: opacity var(--transition);
	}
	.footer-tel:hover {
		opacity: .7;
	}

	.footer-tel__label {
	  font-size: 14px;
	  line-height: 1.2;
	}

	.footer-tel__num {
	  font-size: 18px;
	  line-height: 1.2;
	}

	.footer-social {
	  display: flex;
	  gap: 8px;
	  align-items: center;
	}

	.footer-social__link {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  width: 44px;
	  height: 44px;
	  border-radius: 50%;
	  background-color: #181923;
	  text-decoration: none;
	  transition: all var(--transition);
	}
	.footer-social__link img{
		width: 16px;
		height: 16px;
	}
	.footer-social__link:hover {
	  border-color: var(--color-main);
	  color: var(--color-main);
	  opacity: 1;
	}

}
/*----- Col 2: Navigation -----*/
.footer-nav {
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav__arrow {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  width: 10px;
}

@media (max-width: 767px) {
	.footer-nav {
		padding: 18px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.footer-nav__list {
	  gap: 12px;
	}

	.footer-nav__link {
	  display: flex;
	  align-items: center;
	  gap: 12px;
	  font-size: 14px;
	  line-height: 1.5;
	  color: var(--color-white);
	  text-decoration: none;
	  transition: color var(--transition);
	}
	.footer-nav__arrow {
	  font-size: 1rem;
	  line-height: 1;
	  flex-shrink: 0;
	  width: 10px;
	}
}

/*----- Col 3: Group Clinics -----*/
.footer-group {
	padding: 32px 40px;
	background-color: #181923;
}

.footer-group__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-group__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.footer-group__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-group__item {
  text-decoration: none;
  display: block;
  transition: opacity var(--transition);
}
.footer-group__item:hover {
	opacity: .8;
}

.footer-group__img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 12px;
}
.footer-group__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.footer-group__item:hover .footer-group__img img {
	transform: scale(1.04);
}

.footer-group__name {
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-group__arrow {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  width: 10px;
}

@media (max-width: 767px) {
	.footer-group {
		padding: 0;
		background-color: transparent;
		padding-bottom: 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	.footer-group__title {
	  display: flex;
	  align-items: center;
	  gap: 12px;
	  font-size: 18px;
	  line-height: 1.5;
	  letter-spacing: 0.05em;
	  color: var(--color-white);
	  margin-bottom: 16px;
	  font-weight: 500;
	}

	.footer-group__dot {
	}

	.footer-group__grid {
	  display: block;
	}

	.footer-group__item {
	  display: flex;
	  margin-bottom: 12px;
	}
	.footer-group__item:hover {
	}
	.footer-group__img {
	  border-radius: 0;
	  width: 40%;
	  margin-bottom: 0;
	}
	.footer-group__img img {
	}
	.footer-group__item:hover .footer-group__img img {
	}
	.footer-group__name {
	  gap: 12px;
	  padding: 0 16px;
	  background-color: #181923;
	  width: 60%;
	}
	.footer-group__arrow {
	}

}
/*----- footer-bottom -----*/
.footer-bottom {
  padding-block: 1rem;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom__link {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom__link:hover {
	color: var(--color-white);
	opacity: 0.8;
}

.footer-bottom__copy {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--color-main);
}
@media (max-width: 767px) {
	.footer-bottom {
	  padding-block: 1rem;
	}

	.footer-bottom__inner {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  flex-wrap: wrap;
	  flex-direction: initial;
	}

	.footer-bottom__link {
	  font-size: 12px;
	  line-height: 1.5;
	  font-weight: 500;
	  color: var(--color-white);
	  text-decoration: none;
	  transition: color var(--transition);
	}
	.footer-bottom__link:hover {
		color: var(--color-white);
		opacity: 0.8;
	}

	.footer-bottom__copy {
	  font-size: 12px;
	  line-height: 1.5;
	  letter-spacing: .04em;
	  color: var(--color-main);
	}
}

/* =========================================
   PAGE TOP BUTTON
   ========================================= */
.page-top-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--f-bg);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, background .2s ease;
  z-index: 500;
}
.page-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.page-top-btn:hover {
  background: var(--f-accent);
  color: #fff;
  border-color: var(--f-accent);
  opacity: 1;
}


/*---------------
jinr-reset
---------------*/
.jinr-article{
	margin-top: 200px;
	min-height: 610px;
}
@media all and (max-width: 786px) {
	.jinr-article{
		margin: 24px 20px 0!important;
		min-height: 610px;
		width: calc(100% - 40px)!important;
	}
}
/*---------------
rtoc
---------------*/
.rtoc-mokuji-content .mokuji_ol > .rtoc-item::before,
.rtoc-mokuji-content .decimal_ol > .rtoc-item:before {
 border: none;
 transform: none;
}

.rtoc-mokuji-content .decimal_ol.level-1 > .rtoc-item::before {
 content: counter(rtoc-decimal-1, decimal-leading-zero) “” !important;
}

.rtoc-mokuji-content .mokuji_ol.level-1 > .rtoc-item::before {
 content: counter(rtoc-li) “. ” !important;
}

.rtoc-mokuji-content ul li:before {
 content: none;
}


/*---------------
co-top
---------------*/
.co-top{
  color: var(--color-white);
  width: 100%;
  height: 160px;
  position: relative;
  margin-top: 110px;
  padding: 25px 0 25px 40px;
}
.co-top-content {
}
.co-top-title {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.co-top-subtitle {
  font-size: 40px;
  font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.co-breadcrumb {
	font-size: 14px;
  font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.04em;
}
.co-breadcrumb span{
  opacity: 0.6;
}
.co-top-bg, .co-top-bg_sp{
	position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 160px;
  background: rgba(166, 146, 96, 0.2);
}
.co-top-bg img, .co-top-bg_sp img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0 0 60px 0;
}
#recruit-top .co-top-bg, #recruit-top .co-top-bg_sp{
  background-image: url(http://imjob.co.jp.testrs.jp/external/wp-content/themes/jinr-child/images/recruit/recruit_bg.jpg);
}
#recruit-top .co-top-bg_sp{
  display: none;
}
#about-top .co-top-bg_sp{
  display: none;
}
#about-top .co-top-bg, #about-top .co-top-bg_sp{
  background: rgba(166, 146, 96, 0.2);
}
#contact-top .co-top-bg, #contact-top .co-top-bg_sp{
  background: #f4f4f4;
}
#news-top .co-top-bg, #news-top .co-top-bg_sp{
  background: rgba(255, 255, 255, 1);
}
#news-sg-top .co-top-bg, #news-sg-top .co-top-bg_sp{
  background: rgba(255, 255, 255, 1);
}

@media all and (max-width: 786px){
	.co-top {
	  width: 100%;
	  margin-top: 80px;
  	padding: 40px 0 40px 18px;
	}
	.co-top-content {
	}
	.co-top-title {
		font-size: 16px;
	  margin-bottom: 8px;
	}
	.co-top-subtitle {
		font-size: 28px;
	}
	.co-breadcrumb {
		font-size: 14px;
	}
	.co-breadcrumb span{
	}
	.co-top-bg{
	}
	.co-top-bg img{
	}
  #recruit-top .co-top-bg{
    display: none;
  }
  #recruit-top .co-top-bg_sp{
    display: block;
  }
  #about-top .co-top-bg{
    display: none;
  }
  #about-top .co-top-bg_sp{
    display: block;
  }
}

/*---------------
concept
---------------*/
.concept {
  background: linear-gradient(to bottom, rgba(166, 146, 96, 0.2) 0%, rgba(166, 146, 96, 0) 100%);
  position: relative;
}

.concept__inner {
  margin: 0;
  position: relative;
}

.concept__bg-text {
  position: absolute;
  z-index: 10;
  left: -10px;
  top: 0;
  font-size: 56px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-main);
  writing-mode: vertical-rl;
  pointer-events: none;
  opacity: 0.2;
  height: 1000px;
}

.concept__content {
  padding: 70px 0 120px 0;
  max-width: 60%;
  margin: 0 auto;
}

.concept__title {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 32px;
}

.concept__description {
  text-align: center;
  color: var(--color-text);
  line-height: 2.8;
  font-size: 18px;
}
.ib {
  display: inline-block;
}
.concept__description p:first-child {
  margin-bottom: 40px;
}

.concept__nav_block {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.concept__nav_block.is-show {
  opacity: 1;
  visibility: visible;
}

.concept__nav {
  width: 32vw;
  height: 58px;
  display: flex;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  margin: 0 auto;
}

.concept__nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  text-decoration: none;
  color: var(--color-main);
  transition: var(--transition);
}

.concept__nav-item:hover {
  background-color: var(--color-bg-warm);
}

.concept__nav-item .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.concept__nav-item .icon img {
  width: 24px;
  height: 24px;
}

.concept__nav-item .nav-text {
}

.concept__nav-item .label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  display: block;
}

.concept__nav-item .number {
  font-weight: 500;
  font-size: 12px;
  margin-top: 2px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  display: block;
}

@media (max-width: 767px) {
  .concept {
  }

  .concept__inner {
  }

  .concept__bg-text {
    height: auto;
  }

  .concept__content {
    padding: 60px 0 80px 0;
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }

  .concept__title {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.5;
    letter-spacing: 0.2em;
    color: var(--color-main);
    text-align: center;
    margin-bottom: 32px;
  }

  .concept__description {
    font-size: 16px;
    line-height: 2.8;
  }

  .concept__description p:first-child {
    margin-bottom: 40px;
  }

  .concept__nav_block {
    bottom: 0;
    right: 0;
    width: 100%;
  }

  .concept__nav {
    width: 100%;
    height: 105px;
    border-radius: 0;
    margin: 0;
  }

  .concept__nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    text-decoration: none;
    color: var(--color-main);
    transition: var(--transition);
    text-align: center;
    gap: 5px;
    border-right: 1px solid var(--color-main);
  }

  .concept__nav-item:last-child {
    border-right: 0;
  }

  .concept__nav-item:hover {
    background-color: var(--color-bg-warm);
  }

  .concept__nav-item .icon {
    width: 24px;
    height: 24px;
    margin-right: 0!important;
  }

  .concept__nav-item .icon img {
    width: 24px;
    height: 24px;
  }

  .concept__nav-item .nav-text {
  }

  .concept__nav-item .label {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    display: block;
  }

  .concept__nav-item .number {
    font-weight: 500;
    font-size: 12px;
    margin-top: 2px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    display: block;
  }
}
/*---------------
index-title
---------------*/
.index__subtitle {
  color: var(--color-main);
  font-size: 18px;
  letter-spacing: 0.1em;
}

.index__title {
  font-size: 36px;
  color: var(--color-dark);
  margin: 5px 0 16px;
}

@media all and (max-width: 786px){
	.index__subtitle {
	  font-size: 18px;
	}

	.index__title {
	  font-size: 36px;
	}
}
/*---------------
hours
---------------*/
.hours {
  position: relative;
  background-color: var(--color-white);
}
.hours__inner {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius-mlg);
  background: #2b2b1c;
  padding: 80px 48px;
}
.hours__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
}

.hours__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43,43,28,.98) 0%,
    rgba(43,43,28,.92) 60%,
    rgba(43,43,28,.75) 100%
  );
}

.hours__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: #2b2b1c;
}
.hours__lead{
	margin-bottom: 48px;
}

.hours__label {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: .4rem;
}

.hours__title {
  font-size: 36px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.hours__alert {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 18px;
  padding: .35rem .85rem;
  margin-bottom: 8px;
  line-height: 1.75;
}

.hours__note {
  font-size: 18px;
  color: var(--color-white);
  line-height: 1.75;
}

.hours__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.15) transparent;
  margin-bottom: 16px;
}
.hours__table-wrap::-webkit-scrollbar { height: 4px; }
.hours__table-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.hours__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  table-layout: fixed;
}

.hours__table .col-futsu { width: 22%; }
.hours__table .col-rehab { width: 22%; }
.hours__table .col-day   { width: calc(56% / 7); }

.hours__thead-row{
	border-bottom: 1px dashed rgba(255,255,255,0.5);
}
.hours__th {
  padding: .6rem .5rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  vertical-align: middle;
}

.hours__th--futsu {
  background: var(--color-main);
  color: var(--color-white);
  font-size: 14px;
  border-right: 1px solid rgba(0,0,0,1);
}

.hours__th--rehab {
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
  border-right: 1px solid rgba(0,0,0,1);
}

.hours__th--day {
  color: var(--color-white);
  font-size: 14px;
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}

.hours__row { border-bottom: 1px dashed rgba(255,255,255,0.3); }
.hours__row--pm { border-bottom: none; }

.hours__td--futsu {
  padding: .85rem 1rem;
  background: var(--color-main-bg);
  border-right: 1px solid rgba(0,0,0,1);
  border-bottom: 1px dashed rgba(0,0,0,1);
  text-align: center;
  vertical-align: middle;
}

.hours__td--rehab {
  padding: .85rem 1rem;
  background: var(--color-accent-bg);
  border-bottom: 1px dashed rgba(0,0,0,1);
  text-align: center;
  vertical-align: middle;
}

.hours__td--day {
  padding: .75rem .2rem;
  text-align: center;
  vertical-align: middle;
}

.hours__time {
  font-weight: 500;
  white-space: nowrap;
  font-size: 18px;
  color: var(--color-dark);
  line-height: 1.5;
}

.hours__reception {
  font-size: 14px;
  color: var(--color-gray);
  white-space: nowrap;
  line-height: 1.5;
}

.hours__mark {
  display: block;
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
}

.hours__doctor {
  display: block;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1.5;
}

.alert__block{
	padding: 16px 24px;
	background: rgba(255, 255, 255, 0.1);
}
.alert__block p{
	font-size: 16px;
	line-height: 1.5;
	display: block;
	color: var(--color-white);
}
.alert__block p span{
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-main);
}

@media all and (max-width: 786px){
	.hours {
		margin: 0 10px;
	}
	.hours__inner {
	  background: #2b2b1c;
	  padding: 40px 10px;
	}
	.hours__bg-img {
	}

	.hours__bg::after {
	}

	.hours__content {
		gap: 24px;
	}
	.hours__lead{
		margin-bottom: 0;
	}

	.hours__label {
	  font-size: 18px;
	  line-height: 1.5;
	  letter-spacing: 0.04em;
	  color: var(--color-white);
	  margin-bottom: .4rem;
	}

	.hours__title {
	  font-size: 36px;
	  font-weight: 500;
	  color: var(--color-white);
	  line-height: 1.5;
	  letter-spacing: 0.04em;
	  margin-bottom: 16px;
	}

	.hours__alert {
	  width: 100%;
	  text-align: center;
    font-size: 16px;
	}

	.hours__note {
	  font-size: 16px;
	  color: var(--color-white);
	  line-height: 1.75;
	}

	.hours__table-wrap {
	  overflow-x: auto;
	  -webkit-overflow-scrolling: touch;
	  scrollbar-width: thin;
	  scrollbar-color: rgba(255,255,255,.15) transparent;
	  margin-bottom: 16px;
	}
	.hours__table-wrap::-webkit-scrollbar { height: 4px; }
	.hours__table-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

	.hours__table {
	  width: 100%;
	  border-collapse: collapse;
	  min-width: 640px;
	  table-layout: fixed;
	}

	.hours__table .col-futsu { width: 22%; }
	.hours__table .col-rehab { width: 22%; }
	.hours__table .col-day   { width: calc(56% / 7); }

	.hours__thead-row{
		border-bottom: 1px dashed rgba(255,255,255,0.5);
	}
	.hours__th {
	  padding: .6rem .5rem;
	  font-size: .78rem;
	  font-weight: 500;
	  letter-spacing: .05em;
	  text-align: center;
	  vertical-align: middle;
	}

	.hours__th--futsu {
	  background: var(--color-main);
	  color: var(--color-white);
	  font-size: 14px;
	  border-right: 1px solid rgba(0,0,0,1);
	}

	.hours__th--rehab {
	  background: var(--color-accent);
	  color: var(--color-white);
	  font-size: 14px;
	  border-right: 1px solid rgba(0,0,0,1);
	}

	.hours__th--day {
	  color: var(--color-white);
	  font-size: 14px;
	  border-bottom: 1px dotted rgba(255,255,255,0.5);
	}

	.hours__row { border-bottom: 1px dashed rgba(255,255,255,0.3); }
	.hours__row--pm { border-bottom: none; }

	.hours__td--futsu {
	  padding: .85rem 1rem;
	  background: var(--color-main-bg);
	  border-right: 1px solid rgba(0,0,0,1);
	  border-bottom: 1px dashed rgba(0,0,0,1);
	  text-align: center;
	  vertical-align: middle;
	}

	.hours__td--rehab {
	  padding: .85rem 1rem;
	  background: var(--color-accent-bg);
	  border-bottom: 1px dashed rgba(0,0,0,1);
	  text-align: center;
	  vertical-align: middle;
	}

	.hours__td--day {
	  padding: .75rem .2rem;
	  text-align: center;
	  vertical-align: middle;
	}

	.hours__time {
	  font-weight: 500;
	  white-space: nowrap;
	  font-size: 18px;
	  color: var(--color-dark);
	  line-height: 1.5;
	}

	.hours__reception {
	  font-size: 14px;
	  color: var(--color-gray);
	  white-space: nowrap;
	  line-height: 1.5;
	}

	.hours__mark {
	  display: block;
	  color: var(--color-white);
	  font-size: 1.15rem;
	  font-weight: 400;
	  line-height: 1.2;
	}

	.hours__doctor {
	  display: block;
	  color: var(--color-white);
	  font-size: 12px;
	  line-height: 1.5;
	}

	.alert__block{
		padding: 16px 24px;
		background: rgba(255, 255, 255, 0.1);
	}
	.alert__block p{
		font-size: 16px;
		line-height: 1.5;
		display: block;
		color: var(--color-white);
	}
	.alert__block p span{
		font-size: 16px;
		line-height: 1.5;
		color: var(--color-main);
	}
}

/*---------------
cta
---------------*/
.cta-section {
	padding-top: 120px;
	position: relative;
  /*background-color: var(--color-white);*/
}
.cta-section03 {
	padding-top: 120px;
	position: relative;
  background-color: #f4f4f4;
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius-mlg) var(--radius-mlg) 0 0;
  padding: 56px 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-cta);
}
.cta-section__inner03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius-mlg) var(--radius-mlg) 0 0;
  padding: 56px 0;
  background-color: var(--color-main);
  box-shadow: var(--shadow-cta);
}
.cta-section__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 16px;
}
.cta-section__title03 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 16px;
}
.cta-section__des03 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 16px;
}

.cta-section__btns {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
.cta-section__btns.btns-top {
  justify-content: left;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  flex: 1;
  max-width: 240px;
  min-height: 60px;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--cta-transition), opacity var(--cta-transition), box-shadow var(--cta-transition);
  cursor: pointer;
}

.cta-btn__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 24px;
  width: 24px;
}
.cta-btn__icon img{
  height: 24px;
  width: 24px;
}

.cta-btn__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cta-btn--tel {
  background: var(--color-main);
  color: var(--color-white);
}
/*
.cta-btn--tel:hover {
  background: var(--color-white);
  color: var(--color-main);
  border: 1px solid var(--color-main);
  opacity: 1;
}
.cta-btn--tel:hover .cta-btn__label,.cta-btn--tel:hover .cta-btn__tel-num {
	color: var(--color-main);
}
*/
.cta-btn--tel03 {
  background: var(--color-main);
  color: var(--color-white);
  border: 1px solid var(--color-white);

}
.cta-btn--tel .cta-btn__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
}

.cta-btn__tel-num {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--color-white);
  opacity: 0.8;
}

.cta-btn--contact {
  background: var(--color-white);
  color: var(--color-main);
  border: 1px solid var(--color-main);
}
/*
.cta-btn--contact:hover {
  background: var(--color-main);
  color: var(--color-white);
  opacity: 1;
}
.cta-btn--contact:hover .cta-btn__label--single{
	color: var(--color-white);
}
*/
.cta-btn--contact03 {
  background: var(--color-white);
  color: var(--color-main);
  border: 1px solid var(--color-white);
}

.cta-btn__label--single {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-main);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .cta-section {
    padding-block: 80px 20px 0;
  }
  .cta-section03 {
		padding-top: 80px;
	}
	.cta-section__inner, .cta-section__inner03 {
	  max-width: var(--container);
	  margin: 0 10px;
	  padding: 22px 25px 40px;
	}
	.cta-section__title, .cta-section__title03 {
	  font-size: 18px;
	  line-height: 1.4;
	  margin-bottom: 24px;
	}
	.cta-section__des03 {
	  margin-bottom: 20px;
	}

  .cta-section__btns {
    gap: 12px;
  }

  .cta-btn {
    max-width: initial;
    min-height: 56px;
    justify-content: center;
    padding: .85rem 1.5rem;
    width: 40%;
  }

  .cta-btn--contact {
  }

  .cta-btn__label--single {
    font-size: 14px;
  }

  .cta-btn__tel-num {
    font-size: 12px;
  }
}


.header-nav__item.m-dropdown {
  position: relative;
}

.header-nav__dropdown {
  position: absolute;
  top: 100%;
  width: 240px;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  margin-top: 10px;
}

.header-nav__dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}

.header-nav__item.m-dropdown:hover .header-nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.header-nav__dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav__dropdown-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #4a4a4a;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-nav__dropdown-list li a:hover {
  background-color: #f9f6f0;
  color: #a69260;
}

.header-nav__dropdown-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-nav__dropdown-arrow img {
  width: 6px;
  height: auto;
  display: block;
}

@media (max-width: 1023px) {
  .header-nav__dropdown {
    display: none !important;
  }
}
