@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 2;
  letter-spacing: 0.16em;
}

body {
  color: #38312a;
  font-family: "Noto Sans JP", "Helvetica Neue", sans-serif;
  font-feature-settings: "palt" 1;
  background-color: #eef0ef;
  font-size: 1.8rem;
}
@media (max-width: 700px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #38312a;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.ly_header {
  width: 100%;
  height: 64px;
  border-bottom: 1px solid #aaa;
  background-color: #fff;
}
@media (max-width: 700px) {
  .ly_header {
    height: 44px;
  }
}

.ly_header_inner {
  max-width: 1200px;
  padding: 10px 20px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2000;
}
@media (max-width: 700px) {
  .ly_header_inner {
    width: 100%;
    height: 44px;
  }
}

.bl_header_logo {
  margin: 0;
}
@media (max-width: 700px) {
  .bl_header_logo img {
    display: block;
    width: 109px;
    height: 24px;
  }
}

/*-------------------------------
toggle
-------------------------------*/
.el_menu_button {
  font-size: 3.2rem;
  background: none;
  border: none;
  color: #007f5c;
  cursor: pointer;
  z-index: 2100;
}

/* オーバーレイ背景 */
.ly_overlay_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1500;
}

.ly_overlay_bg.show {
  display: block;
}

/* メニュー本体 */
.bl_menu_overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 340px;
  height: 100%;
  background-color: #eef0ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: right 0.4s ease;
  z-index: 2100;
  padding-left: 20px;
}

.bl_menu_overlay.show {
  right: 0;
}

.bl_menu_overlay a {
  font-size: 1.8rem;
  color: #38312a;
  text-decoration: none;
  margin: 1rem 0;
  display: flex;
  align-items: center;
}

.bl_menu_overlay a:hover {
  color: #007f5c;
}

.el_close_button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3.2rem;
  background: none;
  border: none;
  color: #007f5c;
  cursor: pointer;
}

.bl_card_spMenu {
  display: none;
}
@media (max-width: 700px) {
  .bl_card_spMenu {
    display: block;
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 8px 2px rgba(187, 187, 187, 0.32);
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.hp_large_txt {
  font-size: 3rem;
}

.bl_btn_s {
  background-color: #ff734d;
  border-right: 2px solid #d1583d;
  border-bottom: 2px solid #d1583d;
  border-radius: 4px;
  padding: 10px 20px;
  color: #fff !important;
  font-weight: bold;
  font-size: 1.6rem !important;
  justify-content: space-between;
  width: 250px;
}

.bl_btn_s__icon {
  margin-right: 10px;
  display: block;
}

@media (min-width: 700px) {
  .el_menu_button,
  .el_close_button,
  .ly_overlay_bg {
    display: none;
  }
  .bl_menu_overlay {
    position: static;
    height: auto;
    flex-direction: row;
    justify-content: flex-end;
    background: transparent;
    right: 0 !important;
    transition: none;
    padding-right: 1rem;
    align-items: center;
  }
  .bl_menu_overlay a {
    color: #38312a;
    font-size: 1.8rem;
    margin: 0 1rem;
    display: flex;
    align-items: center;
  }
}
.bl_dropdown {
  position: relative;
}

.el_dropdown_toggle {
  background: none;
  border: none;
  color: #38312a;
  font-size: 1rem;
  cursor: pointer;
  padding-left: 0;
}

.el_dropdown_menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #007f5c;
  padding: 0.5rem 1.3rem;
  min-width: 160px;
  z-index: 1000;
  font-size: 1.6rem;
}

.el_dropdown_menu a {
  color: #fff;
  padding: 0.5rem;
  text-decoration: none;
  display: block;
  margin: 0;
  line-height: 1.5;
  font-size: 1.6rem;
}

@media (min-width: 770px) {
  .el_dropdown_menu a:hover {
    background-color: #eef0ef;
  }
}
@media (min-width: 700px) {
  .bl_dropdown:hover .el_dropdown_menu {
    display: flex;
  }
}
@media (max-width: 700px) {
  .el_dropdown_menu {
    position: static;
    background-color: transparent;
    padding-left: 2.2rem;
    display: block;
  }
  .bl_dropdown.open .el_dropdown_menu {
    display: flex;
  }
  .el_dropdown_menu a {
    color: #38312a;
  }
}
/*-------------------------------
Top main
-------------------------------*/
.ly_inner {
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 1200px) {
  .ly_inner {
    width: 100%;
  }
}

.ly_main {
  width: 800px;
  margin: 0 40px 0 20px;
}
@media (max-width: 800px) {
  .ly_main {
    width: 100%;
    margin: 20px 0 0;
    padding: 0 20px;
  }
}

.ly_side {
  width: 320px;
  height: auto;
  position: absolute;
  right: 20px;
  top: 0;
}
@media (max-width: 820px) {
  .ly_side {
    width: 100%;
    margin-bottom: 40px;
    position: static;
  }
}

.ly_sect_wrap {
  margin-bottom: 60px;
}

/* card */
.bl_card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px 2px rgba(187, 187, 187, 0.32);
  padding: 32px 24px;
}

.bl_card_ttlWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.bl_card_ttlWrap p {
  margin: 0 10px;
}
@media (max-width: 700px) {
  .bl_card_ttlWrap {
    font-size: 2.2rem;
  }
}

.bl_card_ttl_L {
  font-size: 3.2rem;
}
@media (max-width: 700px) {
  .bl_card_ttl_L {
    font-size: 2.8rem;
  }
}

.bl_card_ttl_M {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #007f5c;
}
@media (max-width: 700px) {
  .bl_card_ttl_M {
    font-size: 2rem;
  }
}

.bl_card_cta {
  width: 320px;
  height: auto;
  padding: 20px 24px !important;
}

.el_cta_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 0 0 16px;
}

.el_cta_txt {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.hp_cta_ttl_s {
  font-size: 2rem;
}

.bl_cta_btn {
  background-color: #ff734d;
  box-shadow: 4px 4px 0 #d1583d;
  border-radius: 4px;
  padding: 10px 48px;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .bl_cta_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
    transform: translateX(4px);
  }
}

.bl_btn_s__icon {
  margin-right: 10px;
  display: block;
}

/* card ここまで */
.el_mv {
  display: block;
  width: 800px;
  height: 400px;
  margin: 20px 0 0 20px;
}
@media (max-width: 800px) {
  .el_mv {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .el_mv {
    margin: 0;
  }
}

.bl_cont_ttl {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 700px) {
  .bl_cont_ttl {
    font-size: 2rem;
    text-align: center;
  }
}

.bl_sect_ttl {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media (max-width: 700px) {
  .bl_sect_ttl {
    font-size: 2rem;
  }
}

.bl_lead_list {
  padding-left: 20px;
}

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

/*グリッドレイアウト*/
.ly_grid_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .ly_grid_wrap {
    gap: 28px;
  }
}

.bl_card_item {
  width: 385px;
  height: auto;
  border-top: 4px solid #007f5c;
}
@media (max-width: 768px) {
  .bl_card_item {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .bl_card_item {
    width: 100%;
  }
}

/*グリッドレイアウトここまで*/
.hp_borderTop {
  border-top: 4px solid #007f5c;
}

.hp_mt_60 {
  margin-top: 60px;
}

.bl_col2 {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 700px) {
  .bl_col2 {
    flex-direction: column;
  }
}

.bl_col2_L {
  width: 128px;
}
@media (max-width: 700px) {
  .bl_col2_L {
    width: 100%;
    text-align: center;
  }
}

.bl_col2_R {
  width: 548px;
}
@media (max-width: 700px) {
  .bl_col2_R {
    width: 100%;
  }
}

.bl_profile_ttl {
  font-size: 2.4rem;
}
@media (max-width: 700px) {
  .bl_profile_ttl {
    font-size: 2.2rem;
    text-align: center;
  }
}

.bl_profile_txt {
  font-size: 1.8rem;
}
@media (max-width: 700px) {
  .bl_profile_txt {
    font-size: 1.6rem;
  }
}

/*-------------------------------
footer
-------------------------------*/
.ly_footer {
  background-color: #fff;
  width: 100%;
  height: 64px;
}
@media (max-width: 700px) {
  .ly_footer {
    height: 44px;
  }
}

.bl_footer_inner {
  max-width: 1200px;
  padding: 20px;
  margin-inline: auto;
}
@media (max-width: 700px) {
  .bl_footer_inner {
    padding: 10px;
  }
}

.el_footerCopyright {
  font-size: 1.6rem;
  margin: 0;
}

.hp_sp {
  display: none;
}
@media (max-width: 700px) {
  .hp_sp {
    display: block;
  }
}

/*-------------------------------
members main
-------------------------------*/
.bl_card_area {
  margin-top: 40px;
  font-size: 1.6rem;
}

.bl_card_areaTxt {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.4;
}
.bl_card_areaTxt a {
  text-decoration: underline;
}
.bl_card_areaTxt a:hover {
  color: #007f5c;
}

.hp_tac {
  text-align: center;
}

.bl_pageCont_txt {
  text-align: center;
  margin-bottom: 60px;
}

.bl_boxAreaname_box {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.bl_boxAreaname {
  border: 2px solid #38312a;
  padding: 8px 16px;
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
}

@media (max-width: 700px) {
  .el_areaname {
    font-size: 1.4rem;
  }
}
/*店舗紹介*/
/* カード全体のグリッドレイアウト */
.bl_store_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5em;
  padding: 1em 0;
  margin-bottom: 60px;
}

/* カード本体 */
.bl_store_card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}
@media (max-width: 700px) {
  .bl_store_card {
    padding: 24px 16px;
  }
}

.hp_store_card_naked {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* 業種ラベル */
.label {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .label {
    font-size: 1.2rem;
  }
}

/* ラベル色分け　*/
.label.lifestyle {
  background-color: #ffb347; /* 美容・リラクゼーション・サービス */
}

.label.food {
  background-color: #ff6f61; /* 飲食・食品製造 */
}

.label.education {
  background-color: #6ca0dc; /* 教育・学習支援・医療 */
}

.label.fashion {
  background-color: #9b59b6; /* アパレル・小売・製造小売 */
}

.label.real-estate {
  background-color: #6c757d; /* 不動産 */
}

.label.primary-sector {
  background-color: #4caf50; /* 農業・林業・漁業 */
}

.label.it-tech {
  background-color: #00bcd4; /* IT関連 */
}

.label.commerce {
  background-color: #795548; /* 商社・卸・B2B販売 */
}

.label.creative {
  background-color: #e67e22; /* 制作・メディア・コンサル */
}

.label.hospitality {
  background-color: #f39c12; /* 宿泊・観光 */
}

.label.transportation {
  background-color: #0000cd; /* 運輸業 */
}

.label.construction {
  background-color: #f39c12; /* 建設業 */
}

.label.manufacturing {
  background-color: #8b0000; /* 工業・機械製造・産業車両販売・機械設計 */
}

.el_store_name {
  font-size: 2.4rem;
  margin: 0 0 16px;
}
@media (max-width: 700px) {
  .el_store_name {
    font-size: 2rem;
  }
}

.el_store_address {
  font-size: 1.4rem;
  color: #666;
  margin: 0 0 24px;
}

.el_store_link,
.el_sns_link {
  font-size: 1.6rem;
  color: #007acc;
  text-decoration: none;
  margin: 0;
}

.el_store_link:hover,
.el_sns_link:hover {
  text-decoration: underline;
}

.bl_store_benefit {
  margin-top: auto;
  margin-top: 0.8em;
  font-size: 1.6rem;
  background-color: #f0f8f5;
  padding: 0.5em;
  border-left: 4px solid #007f5c;
  border-radius: 4px;
}/*# sourceMappingURL=style.css.map */