/* ========================================
   Site Chrome
   ヘッダー・フッター・追従UI
======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z_header);
  background: var(--color_bg);
  box-shadow: 0 1px 0 var(--color_border_light);
}

.header_h1 {
  width: 100%;
  box-sizing: border-box;
  padding: 3px clamp(16px, 3vw, 48px) 0;
}

.header_h1 h1,
.header_h1 .header_site_title {
  margin: 0;
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1.4;
}

.header_site_title a {
  color: var(--color_text);
  text-decoration: none;
}

.header_main {
  position: relative;
  background: var(--color_bg);
  overflow: visible;
}

.header_main_inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding-left: clamp(16px, 3vw, 48px);
  padding-right: calc(58px + clamp(12px, 2vw, 24px));
  min-height: var(--header_main_height);
  position: relative;
  overflow: visible;
}

.header_logo {
  flex: 0 0 auto;
  display: block;
  line-height: 0;
}

.header_logo img {
  width: min(185px, 36vw);
  height: auto;
  margin: 0;
}

.header .global_menu,
.header .header_actions {
  display: none;
}

.header .sp_dnav_btn {
  display: block;
}

.global_menu {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.global_menu > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global_menu > ul > li {
  position: relative;
}

.global_menu > ul > li > a {
  display: block;
  padding: 8px clamp(10px, 1.2vw, 18px);
  color: var(--color_text);
  font-weight: 500;
  font-size: var(--fz_sm);
  white-space: nowrap;
}

.global_menu > ul > li.menu > a,
.global_menu > ul > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.global_menu > ul > li.menu > a::after,
.global_menu > ul > li.menu-item-has-children > a::after {
  content: "+";
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1;
  opacity: 0.85;
}

.global_menu > ul > li.menu:hover > a::after,
.global_menu > ul > li.menu-item-has-children:hover > a::after {
  content: "−";
}

.global_menu > ul > li > a:hover,
.global_menu > ul > li.active > a {
  color: var(--color_accent);
  text-decoration: none;
}

.header_actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header_tel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius_sm);
  background: var(--color_btn);
  color: var(--color_text_inverse);
  line-height: 1.2;
  text-decoration: none;
  transition: background-color var(--transition_base);
}

.header_tel a:hover {
  background: var(--color_btn_hover);
  color: var(--color_text_inverse);
  text-decoration: none;
}

.header_tel img {
  flex: 0 0 auto;
  width: 22px;
  height: auto;
}

.header_tel_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.header_tel_body strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color_text_inverse);
  background: none;
  line-height: 1.1;
}

.header_tel_body small {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

@media (max-width: 767px) {
  .header_main_inner {
    min-height: 58px;
  }
}

.sp_dnav_btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 58px;
  height: 100%;
  margin: 0;
  background-color: var(--color_btn);
}

.sp_dnav_btn .inn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: var(--header_main_height);
}

.sp_dnav_btn .ct {
  position: relative;
  top: auto;
  left: auto;
  width: 24px;
  transform: none;
}

.sp_dnav_btn .ct .line i {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 8px;
  background-color: var(--color_text_inverse);
}

.drawer_overlay {
  display: none;
  position: fixed;
  z-index: var(--z_drawer_overlay);
  top: calc(var(--header_h1_height) + var(--header_main_height));
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% - var(--header_h1_height) - var(--header_main_height));
  background-color: rgba(0, 0, 0, 0.5);
}

.drawer_nav {
  position: absolute;
  z-index: var(--z_drawer);
  top: 0;
  right: 0;
  overflow-y: auto;
  width: min(400px, 85vw);
  max-width: 100%;
  height: 100%;
  transition: all 0.5s;
  background-color: var(--color_bg);
  -webkit-overflow-scrolling: touch;
}

.drawer_menu {
  padding-bottom: 30px;
  border-top: 1px solid var(--color_border_light);
}

.drawer_menu li a,
.drawer_menu li p {
  font-size: 94%;
  display: block;
  padding: 20px;
  text-decoration: none;
  border-bottom: 1px solid var(--color_border_light);
  background-color: var(--color_surface_muted);
}

.drawer_menu li a {
  background-image: url(../img/common/sp_common_dnav_ico_02.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 7px 11px;
}

.drawer_menu li p {
  background-image: url(../img/common/sp_common_dnav_ico_01.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 11px 11px;
  color: var(--color_accent);
}

.drawer_menu li p.is_open {
  background-image: url(../img/common/sp_common_dnav_ico_03.png);
  background-size: 10px 2px;
}

.drawer_menu li ol {
  display: none;
}

.drawer_menu li ol li a,
.drawer_menu li ol li p {
  background-color: var(--color_bg);
}

.drawer_menu li ol li a img {
  position: relative;
  top: -1px;
  width: 9px;
  margin-right: 6px;
  vertical-align: middle;
}

.drawer_menu li ol ul {
  display: none;
}

.drawer_nav .cv_tel,
.drawer_nav .drawer_cv_tel {
  text-align: center;
  line-height: 1;
  margin-bottom: 1.5em;
}

@media (min-width: 1280px) {
  .drawer_nav .drawer_cv_tel {
    display: none;
  }
}

.drawer_nav .cv_tel span {
  display: block;
}

.drawer_nav .btn.btn_main,
.drawer_nav .btn.btn_sub {
  margin: 0.5em 0 0;
}

.drawer_nav .sns_link {
  padding: 10px 0 150px;
  font-size: 2em;
}

.drawer_nav .sns_link ul {
  justify-content: center;
}

.drawer_nav .sns_link ul li:last-of-type {
  padding-right: 0;
}

.drawer_nav .sns_link a,
.drawer_nav .cv_tel a {
  color: var(--color_text);
}

@media (min-width: 1280px) {
  .header .global_menu {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    overflow: visible;
  }

  .header .header_actions {
    display: flex;
  }

  .global_menu > ul > li.menu > .child_menu,
  .global_menu .menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    margin: 0;
    padding: 16px 0;
    list-style: none;
    background: var(--color_surface_muted);
    visibility: hidden;
    opacity: 0;
    z-index: var(--z_modal);
    box-sizing: border-box;
    transition: visibility 0.2s, opacity 0.2s;
  }

  .global_menu > ul > li.menu > .child_menu,
  .global_menu .menu-item-has-children > .sub-menu {
    left: 50%;
    width: max-content;
    min-width: 220px;
    max-width: min(90vw, 360px);
    transform: translateX(-50%);
  }

  .global_menu > ul > li.menu_mega,
  .global_menu .menu-item-has-children.mega-menu {
    position: static;
  }

  .global_menu > ul > li.menu_mega > .child_menu,
  .global_menu .menu-item-has-children.mega-menu > .sub-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    transform: none;
    padding: 24px 30px;
  }

  .global_menu > ul > li.menu:hover > .child_menu,
  .global_menu > ul > li.menu:focus-within > .child_menu,
  .global_menu .menu-item-has-children:hover > .sub-menu,
  .global_menu .menu-item-has-children:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
  }

  .child_menu > li > a,
  .global_menu .sub-menu a {
    font-size: 0.9em;
  }

  .child_menu > li > a:hover,
  .global_menu .sub-menu a:hover {
    background: var(--color_bg);
  }

  .child_menu a,
  .global_menu .sub-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color_text);
  }

  .child_menu a:hover,
  .global_menu .sub-menu a:hover {
    opacity: 0.75;
    text-decoration: none;
  }

  .child_menu div {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;
    width: 100%;
  }

  .child_menu div li {
    text-align: left;
    font-size: 14px;
    width: 30%;
  }

  .child_menu li i {
    padding-left: 7px;
  }

  .global_menu > ul > li.menu:hover > a,
  .global_menu .menu-item-has-children:hover > a {
    color: var(--color_accent);
  }

  .global_menu .sub-menu .sub-menu {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    width: auto;
    padding: 0;
    background: transparent;
  }
}

.sns_link ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sns_link ul li {
  padding-right: 0.7em;
}

.sns_link ul a:hover {
  opacity: 0.7;
  transition: opacity var(--transition_base);
}

.header_sns.sns_link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.header_sns.sns_link ul a,
.header_sns.sns_link ul a:hover {
  color: var(--color_text);
}

.btn_gotop {
  position: fixed;
  bottom: 70px;
  right: 2vw;
  z-index: var(--z_pagetop);
  font-size: 0.75em;
}

/* 見た目とクリック領域はaタグに持たせる（ボタン全体がタップ可能） */
.btn_gotop a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--color_surface_muted);
  border-radius: 50%;
  transition: background var(--transition_base);
}

.btn_gotop a:hover {
  background: var(--color_accent);
  color: var(--color_text_inverse);
  text-decoration: none;
}

.footer {
  margin-bottom: 69px;
}

.footer .wrap {
  padding: 0;
  flex-wrap: wrap;
}

.footer .wrap p {
  padding: 8px 0;
}

.footer_inner {
  background-color: var(--color_brand_strong);
  color: var(--color_text_inverse);
}

.footer_inner .wrap {
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.footer_inner .fnav {
  padding: 0;
  width: 80%;
  margin: 1em auto 2em;
}

.fnav .fnav_blk,
.fnav .fnav_blk a,
.footer_bottom ul li a {
  color: var(--color_text_inverse);
  transition: opacity var(--transition_base);
  width: 100%;
}

.fnav .fnav_blk h4,
.fnav .fnav_blk .fnav_sp_blk li {
  padding: 0;
  border-bottom: 1px solid var(--color_accent_hover);
  margin-bottom: 0;
  font-weight: bold;
}

.fnav .fnav_blk li {
  margin-bottom: 3px;
  font-size: 14px;
}

.fnav .fnav_blk h4 a,
.fnav .fnav_blk .fnav_sp_blk a {
  padding: 1.2em 0;
  display: block;
  position: relative;
}

.fnav .fnav_blk h4 a i,
.fnav .fnav_blk .fnav_sp_blk a i {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.footer_inner_cv .sns_link {
  margin: 20px 0;
}

.footer_inner_cv .sns_link ul {
  font-size: 2.5em;
  justify-content: center;
}

.footer_inner_cv .sns_link ul li {
  padding: 0 0.5em;
}

.footer_inner_cv .sns_link ul a,
.footer_inner_cv .sns_link ul a:hover {
  color: #fff;
}

.footer_inner_cv_btn {
  text-align: center;
}

.footer_inner_cv_btn .btn {
  margin: 10px 0;
}

.pay_blk {
  width: 65%;
  background: #fff;
  margin: 0 auto 2em;
  padding: 1.5em;
  color: var(--color_text);
}

.pay_blk dt {
  font-weight: bold;
}

.footer_bottom {
  padding: 50px 0 0;
  position: relative;
}

.footer_bottom::before,
.footer_bottom::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  border-style: solid;
}

.footer_bottom::before {
  left: 0;
  border-width: 45px 50vw 0 0;
  border-color: var(--color_brand_strong) transparent transparent transparent;
}

.footer_bottom::after {
  right: 0;
  border-width: 0 50vw 45px 0;
  border-color: transparent var(--color_brand_strong) transparent transparent;
}

.sp_foot_btns {
  position: fixed;
  z-index: var(--z_sp_footer);
  bottom: 0;
  left: 0;
  width: 100%;
}

.sp_foot_btns ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp_foot_btns ul li {
  width: 50%;
}

.sp_foot_btns ul li a {
  display: block;
  height: 65px;
  border: 2px solid var(--color_bg);
  text-decoration: none;
}

.sp_foot_btns ul li:nth-of-type(1) a {
  background-color: var(--color_accent);
}

.sp_foot_btns ul li:nth-of-type(2) a {
  background-color: var(--color_btn);
}

.sp_foot_btns ul li:nth-of-type(3) a {
  background-color: var(--color_btn_sub);
}

.sp_foot_btns ul li a span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color_text_inverse);
  font-size: 80%;
  font-weight: 500;
}

.footer_bottom .wrap {
  padding: 2em 0 1em;
  text-align: center;
}

.footer_bottom p img {
  height: 75px;
}

.footer_bottom p.footer_copy {
  text-align: center;
  padding: 20px 10px;
  font-size: 80%;
  line-height: 1.4;
  margin: 0 auto;
}

.footer_copy {
  margin-top: 0.5em;
}

@media (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }

  .footer_inner .fnav {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40%);
  }

  .fnav .fnav_blk .fnav_sp_blk {
    display: none;
  }

  .fnav .fnav_blk ul {
    display: block;
  }

  .fnav .fnav_blk h4 {
    padding: 10px 0;
  }

  .fnav .fnav_blk h4,
  .fnav .fnav_blk .fnav_sp_blk li {
    border-bottom: none;
  }

  .fnav .fnav_blk h4 a,
  .fnav .fnav_blk .fnav_sp_blk a {
    padding: 0;
    display: inline-block;
    width: auto;
  }

  .fnav .fnav_blk h4 a i,
  .fnav .fnav_blk .fnav_sp_blk a i {
    display: none;
  }

  .footer_inner_cv {
    width: 30%;
  }

  .pay_blk {
    width: auto;
    margin-bottom: 2em;
  }
}

/* ========================================
   3ReS サイトクローム（header / drawer / footer）
   legacy/style.css・common.css から移行
======================================== */

body {
  margin-top: 0;
}

.res_main {
  overflow-x: hidden;
  padding-top: var(--header_offset_pc);
}

/* ----- 固定ヘッダー ----- */
.blh_header.res_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: calc(var(--z_drawer) + 1);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.blh_header.res_header .wrap {
  max-width: none;
  width: auto;
  padding: 0 2%;
}

.res_header_inner {
  min-height: var(--header_offset_pc);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  row-gap: 12px;
}

.wrap .res_header_logo {
  margin: 0;
  flex-shrink: 0;
}

.res_header_nav ul {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1;
}

.res_header_nav a {
  font-size: clamp(0.6875rem, 0.65rem + 0.28vw, 0.8125rem);
  font-weight: 700;
  color: var(--color_text);
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
}

.res_header_nav a:hover,
.res_header_nav a.active {
  color: var(--res_accent_teal);
}

.res_header_cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.res_header_btn {
  margin: 0;
}

.res_header_btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(8px, 1vw, 10px) clamp(10px, 1.4vw, 16px);
  border-radius: 999px;
  font-size: clamp(0.6875rem, 0.65rem + 0.28vw, 0.8125rem);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.res_header_btn a i {
  font-size: 0.92em;
}

.res_header_btn--care a {
  color: var(--color_text);
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(
        135deg,
        var(--res_grad_blue) 0%,
        var(--res_grad_mint) 55%,
        var(--res_grad_teal) 100%
      )
      border-box;
  box-shadow: 0 2px 12px rgba(15, 118, 110, 0.12);
}

.res_header_btn--contact a {
  color: #fff;
  border: 2px solid transparent;
  background: linear-gradient(
    135deg,
    var(--res_accent_blue) 0%,
    #14b8a6 48%,
    var(--res_grad_teal) 100%
  );
  box-shadow: 0 3px 16px rgba(15, 118, 110, 0.38);
}

.res_header_btn a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@media (min-width: 1280px) and (max-width: 1480px) {
  .res_header_inner {
    justify-content: center;
  }

  .res_header_logo {
    flex: 0 0 auto;
  }

  .res_header_cta {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .res_header_nav {
    flex: 1 1 100%;
    min-width: 0;
  }

  .res_header_nav ul {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 1279px) {
  .res_header_nav,
  .res_header_cta {
    display: none;
  }

  .res_header_inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

/* ----- SPドロワー ----- */
.blh_menu_btn.res_menu_btn {
  display: none;
}

.blh_menu_btn {
  margin: 0 0 0 16px;
  width: 46px;
  height: 46px;
  border: none;
  padding: 0;
  border-radius: 50%;
  background: var(--res_heading_gradient);
  color: #fff;
  font-family: inherit;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1279px) {
  .blh_menu_btn.res_menu_btn {
    display: flex;
  }
}

.blh_menu_btn_bars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
}

.blh_menu_btn_bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.blh_menu_btn[aria-expanded="true"] .blh_menu_btn_bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.blh_menu_btn[aria-expanded="true"] .blh_menu_btn_bar:nth-child(2) {
  opacity: 0;
}

.blh_menu_btn[aria-expanded="true"] .blh_menu_btn_bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.blh_menu_btn:hover {
  background: var(--res_heading_gradient);
}

.blh_drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z_drawer);
  pointer-events: none;
  visibility: hidden;
}

.blh_drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.blh_drawer_overlay {
  position: absolute;
  top: var(--header_offset_pc);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z_drawer_overlay);
  background: rgba(30, 47, 35, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.blh_drawer.is-open .blh_drawer_overlay {
  opacity: 1;
}

.blh_drawer_panel {
  position: absolute;
  top: var(--header_offset_pc);
  right: 0;
  z-index: var(--z_drawer);
  width: min(400px, 90vw);
  height: calc(100% - var(--header_offset_pc));
  background: #fff;
  box-shadow: -6px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
  overflow-y: auto;
  box-sizing: border-box;
}

.blh_drawer_head {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 18px 8px;
  border-bottom: 1px solid #eef2f0;
}

.blh_drawer_close {
  width: 44px;
  height: 44px;
  border: none;
  padding: 0;
  border-radius: 50%;
  background: var(--res_drawer_accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.blh_drawer_close:hover {
  background: var(--res_drawer_accent_hover);
}

.blh_drawer_close_icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.blh_drawer_close_icon::before,
.blh_drawer_close_icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.blh_drawer_close_icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.blh_drawer_close_icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.blh_drawer.is-open .blh_drawer_panel {
  transform: translateX(0);
}

.blh_drawer_nav {
  margin: 0;
  padding: 0 28px;
  list-style: none;
  flex: 1;
}

.blh_drawer_nav li {
  border-bottom: 1px solid #eef2f0;
}

.blh_drawer_nav a {
  display: block;
  padding: 18px 4px;
  color: var(--color_text);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.blh_drawer_nav a:hover {
  color: var(--res_drawer_accent);
}

.blh_drawer_foot {
  margin-top: auto;
  padding: 28px 28px 0;
  text-align: center;
}

.blh_drawer_btn {
  margin: 0 0 16px;
}

.blh_drawer_btn a {
  display: inline-block;
  min-width: 240px;
  line-height: 52px;
  border-radius: 70px;
  border: 1px solid var(--res_drawer_accent);
  background: var(--res_drawer_accent);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.blh_drawer_btn a:hover {
  background: var(--res_drawer_accent_hover);
  border-color: var(--res_drawer_accent_hover);
  color: #fff;
}

.blh_drawer_tel {
  margin: 15px 0 0;
}

.blh_drawer_tel a {
  font-family: var(--font_heading);
  color: var(--color_text);
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
}

.blh_drawer_sns {
  margin: 18px 0 0;
}

.blh_drawer_sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color_text);
  font-size: 28px;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.blh_drawer_sns a:hover {
  color: var(--res_drawer_accent);
}

body.blh_drawer-open {
  overflow: hidden;
}

/* ----- フッター ----- */
.res_footer {
  background: #fff;
  color: var(--color_text);
  padding: 56px 0 0;
}

.res_footer_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 48px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  width: 100%!important;
  padding-bottom: 40px!important;
  box-sizing: border-box;
}

.res_footer_brand {
  flex: 1 1 280px;
  max-width: 380px;
}

.res_footer_logo {
  margin: 0 0 20px;
}

.res_footer_addr {
  margin: 0 0 24px;
  font-size: 0.93em;
  line-height: 1.75;
}

.res_footer_ext {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.res_footer_ext a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.93em;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #84cc16;
  box-sizing: border-box;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.res_footer_ext a:hover {
  opacity: 0.94;
  background: #65a30d;
}

.res_footer_ext a i {
  font-size: 0.75em;
  opacity: 0.95;
}

.res_footer_nav {
  flex: 1 1 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: flex-end;
}

.res_footer_nav_col {
  margin: 0;
  padding-left: 20px;
  list-style: none;
  min-width: 180px;
  border-left: var(--color_brand) 1px solid;
}

.res_footer_nav_col li {
  margin-bottom: 12px;
}

.res_footer_nav_col a {
  font-size: 0.93em;
  color: var(--color_text);
  text-decoration: none;
}

.res_footer_nav_col a:hover {
  color: var(--res_accent_teal);
  text-decoration: underline;
}

.res_footer_bottom {
  border-top: 1px solid #eee;
  padding: 20px 16px 28px;
  text-align: center;
}

.res_footer_copy {
  margin: 0;
  font-size: 12px;
  color: #9ca3af;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .res_footer_nav {
    gap: 0;
  }

  .res_footer_nav_col {
    min-width: 300px;
  }
}

@media (max-width: 767px) {
  .res_footer_nav {
    justify-content: flex-start;
    gap: 0;
  }
}
