@charset "UTF-8";
/****************************
変数
*****************************/
/*メインで使うカラー*/
/* 最小12px 最大14px */
/* 最小14px 最大16px */
/* 最小14px 最大18px */
/* 最小14px 最大20px */
/* 最小16px 最大25px */
/* 最小25px 最大30px */
/* 最小25px 最大35px */
/* 最小25px 最大40px */
/* 最小30px 最大55px */
/* 最小30px 最大100px */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0rem;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(0.875rem, 0.644rem + 0.95vw, 1.25rem);
  font-weight: 400;
  line-height: 2;
  color: #4C4A4A;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: clamp(0.875rem, 0.721rem + 0.63vw, 1.125rem);
  }
}

.js-fv-title .char {
  will-change: transform, opacity;
}

.bl_header_inner_hp_front_fl_img_wrap,
.bl_header_menu_fl {
  will-change: transform, opacity;
}

.bl_header_inner_hp_front_fl_img_wrap {
  opacity: 0;
}

.md_ttl_en,
.bl_facility .bl_facility_fl3 .bl_facility_fl3_en {
  font-family: "Aboreto", cursive;
}

::-moz-selection {
  background: rgba(143, 169, 6, 0.4);
}

::selection {
  background: rgba(143, 169, 6, 0.4);
}

/*---------- 共通パーツ ----------*/
.md_wrap {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 200px; /* 下だけ余白 */
  /* ページ内で最初の md_wrap にだけ上の余白も付けたい */
}
.md_wrap .md_wrap:first-of-type {
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  .md_wrap {
    padding: 150px 0;
  }
}
@media screen and (max-width: 754px) {
  .md_wrap {
    padding: 48px 0;
  }
}

.md_font_lexend {
  font-family: "Lexend Mega", sans-serif;
}

.md_maxwidth_1200 {
  max-width: 1200px;
}

/* 共通の見出しスタイル */
.md_ttl {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; /* ← 横並びに変更 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px; /* ← beforeとの隙間（調整可） */
  color: #8FA906;
  border-bottom: 1px solid #8FA906;
  padding-bottom: 10px;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
}
@media screen and (max-width: 754px) {
  .md_ttl {
    font-size: 12px;
    padding-bottom: 4px;
  }
}
.md_ttl::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 8px;
  background: #8FA906;
  border-radius: 5px;
}
@media screen and (max-width: 754px) {
  .md_ttl::before {
    width: 10px;
    height: 5px;
  }
}

.md_ttl_hp_center {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.md_ttl_hp_center .md_ttl {
  font-size: 10px;
}
.md_ttl_hp_center .md_ttl_jp {
  font-size: clamp(1.563rem, 1.178rem + 1.58vw, 2.188rem);
  margin-top: 10px;
}
@media screen and (max-width: 754px) {
  .md_ttl_hp_center .md_ttl_jp {
    font-size: 20px;
    margin-top: 12px;
    line-height: 35px;
  }
}

.hp_nottl {
  border: inherit;
  color: #4C4A4A;
  font-size: clamp(0.875rem, 0.644rem + 0.95vw, 1.25rem);
}
@media screen and (max-width: 1024px) {
  .hp_nottl {
    font-size: clamp(0.875rem, 0.721rem + 0.63vw, 1.125rem);
  }
}

.md_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 450px;
  height: 100px;
  color: #fff;
  background-color: #8FA906;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 1024px) {
  .md_btn {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .md_btn {
    height: 80px;
  }
}
.md_btn .md_btn_wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px 0 50px;
}
@media screen and (max-width: 1024px) {
  .md_btn .md_btn_wrapper {
    padding: 0 15px 0 40px;
  }
}
.md_btn .md_btn_txt {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.md_btn .md_btn_kigo {
  background-color: #8FA906;
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 1024px) {
  .md_btn .md_btn_kigo {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 754px) {
  .md_btn .md_btn_kigo {
    width: 60px;
    height: 60px;
  }
}
.md_btn .md_btn_kigo i {
  font-size: clamp(0.875rem, 0.721rem + 0.63vw, 1.125rem);
  color: #fff;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: inherit;
  transition: inherit;
}
.md_btn:hover {
  background-color: rgb(122.1628571429, 144.3742857143, 5.1257142857);
}
.md_btn:hover i {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.md_btn:hover .md_btn_txt {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.md_common_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
}
.md_common_list .bl_common_list_capsule {
  position: relative;
  z-index: 2000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 4px 11px;
  border-radius: 50px;
  color: #4C4A4A;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.md_common_list .bl_common_list_capsule .bl_common_list_link {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}
.md_common_list .bl_common_list_capsule .bl_common_list_link.current-page {
  font-size: 11px;
}
.md_common_list .bl_common_list_capsule .bl_common_list_sep {
  position: relative;
  width: 12px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 8px;
}

@media screen and (max-width: 754px) {
  .md_common_list {
    padding-top: 20px;
  }
  .md_common_list .bl_common_list_capsule {
    gap: 5px;
    padding: 6px 14px;
    font-size: 12px;
  }
}
.md_bg_sub {
  background-image: url("../img/md_bg_sub.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: bottom;
  z-index: -1;
  /*&::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-attachment: fixed;
    @media screen and (min-width: 1500px) {
      background-size: contain;
      background-position: center top;
    }
    @include tab{
      background-size: 1025px auto;
    }
    @include sp{
      background-image: url("../img/md_bg_sub_sp.jpg");
      background-size: contain;
    }
  }*/
}
@media screen and (max-width: 754px) {
  .md_bg_sub {
    background-image: url("../img/md_bg_sub_sp.jpg");
  }
}

/* --------------------
記事詳細ページのみ
-------------------- */
@media screen and (max-width: 754px) {
  body.single .md_bg_sub {
    position: inherit;
  }
}

@media screen and (max-width: 754px) {
  span.sp_br {
    display: block;
  }
}

/* ---------- 共通マップ ---------- */
section.bl_front_map {
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  section.bl_front_map {
    padding-top: 150px;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_map {
    padding-top: 48px;
  }
}
section.bl_front_map .bl_front_map_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 754px) {
  section.bl_front_map .bl_front_map_fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
section.bl_front_map .bl_front_map_fl .bl_front_map_gmap,
section.bl_front_map .bl_front_map_fl .bl_front_map_container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_gmap {
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 754px) {
  section.bl_front_map .bl_front_map_fl .bl_front_map_gmap {
    margin-top: 24px;
    width: 100%;
    border-radius: 12px;
  }
}
section.bl_front_map .bl_front_map_fl .bl_front_map_gmap iframe {
  width: 100%;
  aspect-ratio: 3.3/4;
  border: none;
  display: block;
}
@media screen and (max-width: 1024px) {
  section.bl_front_map .bl_front_map_fl .bl_front_map_gmap iframe {
    aspect-ratio: 2.7/4;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_map .bl_front_map_fl .bl_front_map_gmap iframe {
    aspect-ratio: 3/4;
  }
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_logo_svg {
  width: 180px;
  height: auto;
  display: block;
}
@media screen and (max-width: 754px) {
  section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_logo_svg {
    width: 130px;
  }
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_logo_svg svg {
  width: 100%;
  height: auto;
  display: block;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container h3 {
  font-size: clamp(1.563rem, 1.37rem + 0.79vw, 1.875rem);
  margin-bottom: 20px;
}
@media screen and (max-width: 754px) {
  section.bl_front_map .bl_front_map_fl .bl_front_map_container h3 {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 12px;
  margin: 30px 0;
}
@media screen and (max-width: 754px) {
  section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl {
    margin: 12px 0;
    gap: 12px;
  }
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl .bl_front_map_tel_container {
  white-space: nowrap;
}
@media screen and (max-width: 754px) {
  section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl .bl_front_map_tel_container {
    line-height: 40px;
  }
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl .bl_front_map_tel_container p,
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl .bl_front_map_tel_container a {
  color: #8FA906;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl .bl_front_map_tel_container p {
  line-height: 1.5;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl .bl_front_map_tel_container a {
  border-bottom: 1px solid #8FA906;
  padding: 10px 0 5px;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl .bl_front_map_tel_container .hp_big {
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  font-weight: 500;
  margin-left: 10px;
}
@media screen and (max-width: 754px) {
  section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_tel_fl .bl_front_map_tel_container .hp_big {
    font-size: 25px;
  }
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  text-align: center;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_table thead th {
  font-weight: 500;
  background-color: #8FA906;
  color: #fff;
  padding: 3px;
  border: 1px solid #8FA906;
  text-align: center;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_table thead th:nth-child(2),
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_table thead th:nth-child(3) {
  width: 36%;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_table td {
  padding: 3px;
  border: 1px solid #8FA906;
  color: #4C4A4A;
}
section.bl_front_map .bl_front_map_fl .bl_front_map_container .bl_front_map_table .hp_white {
  border-right: 1px solid white !important;
}

/* ---------- ヘッダー ---------- */
.bl_bg_front {
  position: relative;
}
.bl_bg_front::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../img/header_front_bg2.jpg");
  background-repeat: no-repeat;
  background-size: 1500px auto;
  background-position-x: center;
  background-position-y: calc(100% + 380px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background-attachment: fixed;
}
@media screen and (min-width: 1500px) {
  .bl_bg_front::after {
    background-image: url("../img/header_front_bg.jpg");
    background-size: contain;
    background-position: center bottom;
  }
}
@media screen and (max-width: 1024px) {
  .bl_bg_front::after {
    background-size: 1024px auto;
    background-position-y: calc(100% + 30px);
  }
}

.ly_header {
  position: relative;
  padding: 50px 0 150px 0;
  display: grid;
}
@media screen and (max-width: 1024px) {
  .ly_header {
    padding: 50px 0 100px 0;
  }
}
@media screen and (max-width: 754px) {
  .ly_header {
    padding: 0 0 48px 0;
  }
}
.ly_header .ly_header_fl {
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.ly_header .ly_header_fl .bl_header_logo_svg {
  position: relative;
  top: 50px;
  width: 120px;
  height: auto;
  display: block;
}
@media screen and (max-width: 754px) {
  .ly_header .ly_header_fl .bl_header_logo_svg {
    position: absolute;
    top: 20px;
    width: 80px;
  }
}
.ly_header .ly_header_fl .bl_header_logo_svg svg {
  width: 100%;
  height: auto;
  display: block;
}
.ly_header .ly_header_fl .bl_header_fl2 .bl_header_hum {
  position: fixed;
  top: 50px;
  right: 4%;
  z-index: 2002;
}
@media screen and (max-width: 1024px) {
  .ly_header .ly_header_fl .bl_header_fl2 .bl_header_hum {
    top: 30px;
  }
}
@media screen and (max-width: 754px) {
  .ly_header .ly_header_fl .bl_header_fl2 .bl_header_hum {
    top: 12px;
    right: 12px;
  }
}
@supports (-webkit-appearance: none) {
  .ly_header .ly_header_fl .bl_header_fl2 #lottie-hamburger svg {
    -webkit-transform: scale(1.001);
            transform: scale(1.001); /* Safariのレンダリングバグ回避 */
  }
}
.ly_header .ly_header_fl .bl_header_fl2 #hamburger-btn {
  margin-left: 3%;
  position: relative;
  left: 20px;
  z-index: 1000;
}
@media screen and (max-width: 754px) {
  .ly_header .ly_header_fl .bl_header_fl2 #hamburger-btn {
    margin-left: 0;
    left: 0;
  }
}
.ly_header .ly_header_fl .bl_header_fl2 #lottie-hamburger {
  width: 124px;
  height: 56px;
}
@media screen and (max-width: 754px) {
  .ly_header .ly_header_fl .bl_header_fl2 #lottie-hamburger {
    width: 90px;
  }
}
.ly_header .ly_header_fl .bl_header_fl2 .bl_header_menu_fl {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font-size: 16px;
  text-align: right;
  top: 40px;
}
@media screen and (max-width: 1024px) {
  .ly_header .ly_header_fl .bl_header_fl2 .bl_header_menu_fl {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* タブやクリック不可 */
  }
}
.ly_header .ly_header_fl .bl_header_fl2 .bl_header_menu_fl .bl_header_nav_kakari {
  margin-top: 20px;
}
.ly_header .ly_header_fl .bl_header_fl2 .bl_header_menu_fl .bl_header_nav_kakari a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 754px) {
  .ly_header .ly_header_fl .bl_header_fl2 .bl_header_menu_fl .bl_header_nav_kakari a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
}
.ly_header .ly_header_fl .bl_header_fl2 .bl_header_menu_fl .bl_header_nav_kakari a svg {
  width: 70px;
  height: auto;
}
@media screen and (max-width: 754px) {
  .ly_header .ly_header_fl .bl_header_fl2 .bl_header_menu_fl .bl_header_nav_kakari a svg {
    width: 40px;
  }
}
.ly_header .ly_header_fl .bl_header_fl2 .bl_header_menu_fl.hide {
  opacity: 0;
  pointer-events: none;
}

/* ---------- ヘッダー内コンテンツ ---------- */
.bl_header_inner_hp_front_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  grid-area: 1/1; /* 同じグリッドに重ねる */
  margin-top: 150px;
}
@media screen and (max-width: 1024px) {
  .bl_header_inner_hp_front_fl {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 200px;
  }
}
@media screen and (max-width: 754px) {
  .bl_header_inner_hp_front_fl {
    margin-top: 150px;
  }
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
  margin-right: 20px;
}
@media screen and (max-width: 1065px) {
  .bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 {
    row-gap: 20px;
  }
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 754px) {
  .bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-bottom: 35px;
  }
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  color: #8FA906;
}
@media screen and (max-width: 1024px) {
  .bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p {
    font-size: 11px;
  }
}
@media screen and (max-width: 754px) {
  .bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p {
    font-size: 9px;
  }
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span {
  opacity: 0;
  -webkit-animation: fadeChar 3s ease-in-out infinite;
          animation: fadeChar 3s ease-in-out infinite;
  display: inline-block;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(9) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(10) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 p span:nth-child(11) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes fadeChar {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@keyframes fadeChar {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl2 .bl_header_inner_hp_front_fl3 svg {
  -webkit-animation: arrowBounce 3s infinite ease-in-out;
          animation: arrowBounce 3s infinite ease-in-out;
}
@-webkit-keyframes arrowBounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes arrowBounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.bl_header_inner_hp_front_fl h1 {
  position: relative;
  left: 4%;
  -webkit-transform: translateX(-4%);
          transform: translateX(-4%);
  font-size: clamp(1.563rem, 1.178rem + 1.58vw, 2.188rem);
  font-weight: 400;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  white-space: pre-line;
}
@media screen and (max-width: 754px) {
  .bl_header_inner_hp_front_fl h1 {
    font-size: 30px;
    line-height: 50px;
  }
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl_img_wrap {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 754px) {
  .bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl_img_wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 59%;
            flex: 0 0 59%;
  }
}
.bl_header_inner_hp_front_fl .bl_header_inner_hp_front_fl_img_wrap img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.bl_header_inner_hp_front_fl .my-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 24px 24px;
}
.bl_header_inner_hp_front_fl .my-slider-progress-bar {
  background: #8FA906;
  height: 100%;
  width: 0%;
  -webkit-transition: none;
  transition: none;
}
.bl_header_inner_hp_front_fl .splide__slide {
  opacity: 0 !important;
  -webkit-transition: opacity 1.5s ease-in-out !important;
  transition: opacity 1.5s ease-in-out !important;
}
.bl_header_inner_hp_front_fl .splide__slide.is-active {
  opacity: 1 !important;
}

.md_sub_ttl {
  padding: 200px 0 0;
  width: 100%;
}
@media screen and (max-width: 754px) {
  .md_sub_ttl {
    padding: 120px 0 0;
  }
}
@media screen and (max-width: 754px) {
  .md_sub_ttl .md_sub_ttl_hp_center {
    text-align: center;
  }
}
.md_sub_ttl h1 {
  font-size: clamp(1.875rem, 0.914rem + 3.94vw, 3.438rem);
  color: #8FA906;
}
.md_sub_ttl p.md_ttl {
  border-bottom: inherit;
}

.md_sub_con {
  position: relative;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin: 0 -50vw 150px -50vw;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
@media screen and (max-width: 754px) {
  .md_sub_con {
    margin: 0 -50vw 48px -50vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
}
.md_sub_con h2 {
  white-space: pre-line;
  font-size: clamp(1.563rem, 1.37rem + 0.79vw, 1.875rem);
  min-width: 100px;
  margin-left: 5%;
}
@media screen and (max-width: 1024px) {
  .md_sub_con h2 {
    font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  }
}
@media screen and (max-width: 754px) {
  .md_sub_con h2 {
    white-space: inherit;
    width: 90%;
    margin-left: 0;
    font-size: 14px;
  }
}

.md_sub_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 18%;
          flex: 0 1 18%;
}
@media screen and (max-width: 754px) {
  .md_sub_img {
    display: block;
    width: auto;
    margin-left: auto;
  }
}
.md_sub_img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 754px) {
  .md_sub_img img {
    width: 60%;
    margin-top: 30px;
    margin-left: auto;
  }
}

.hp_category_header {
  width: 100%;
  margin: 0 auto;
}

/* ---------- ヘッダーお知らせ ---------- */
.bl_header_news {
  position: absolute;
  width: 20%;
  min-width: 270px;
  height: auto;
  padding: 12px 20px;
  border-radius: 12px;
  right: 0;
  bottom: 21%;
  display: block;
  background: #fff;
  text-decoration: none;
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .bl_header_news {
    width: 200px;
    position: absolute;
    left: inherit;
    right: 0;
    bottom: 16%;
    z-index: 2;
  }
}
@media screen and (max-width: 754px) {
  .bl_header_news {
    min-width: 200px;
    height: auto;
    padding: 8px 16px;
    right: -15px;
    bottom: 10%;
  }
}
.bl_header_news .bl_header_news_content_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 754px) {
  .bl_header_news .bl_header_news_content_fl {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.bl_header_news .bl_header_news_content_fl .bl_header_news_category {
  color: #8FA906;
  font-size: 14px;
}
@media screen and (max-width: 754px) {
  .bl_header_news .bl_header_news_content_fl .bl_header_news_category {
    font-size: 12px;
  }
}
.bl_header_news .bl_header_news_content_fl .hp_btn_wrapper {
  height: 15px;
  width: 15px;
  background: #8FA906;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 15px;
}
.bl_header_news .bl_header_news_content_fl .hp_btn_wrapper .hp_btn_kigo {
  color: #fff;
  font-size: 8px;
}
.bl_header_news .bl_header_news_title {
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  line-height: 1.4;
  word-break: break-all;
}

/* ---------- フルスクリーンメニュー ---------- */
.bl_header_menu_fl_full {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0);
  clip-path: circle(0% at 50% 50%);
  -webkit-transition: clip-path 1s ease, opacity 1s ease;
  transition: clip-path 1s ease, opacity 1s ease;
}
.bl_header_menu_fl_full.open {
  opacity: 1;
  pointer-events: auto;
  clip-path: circle(150% at 50% 50%);
}
.bl_header_menu_fl_full .menu-left_fl,
.bl_header_menu_fl_full .menu-right_fl {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
}
.bl_header_menu_fl_full .menu-left_fl {
  position: relative;
  background: rgba(143, 169, 6, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 754px) {
  .bl_header_menu_fl_full .menu-left_fl {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important;
    width: 100% !important;
    height: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_logo_svg {
  width: 120px;
  position: absolute;
  top: 50px;
  left: 10%;
}
@media screen and (max-width: 754px) {
  .bl_header_menu_fl_full .menu-left_fl .bl_header_logo_svg {
    display: none;
  }
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_logo_svg svg {
  width: 100%;
  height: auto;
  display: block;
}
.bl_header_menu_fl_full .menu-left_fl .menu-left-inner {
  width: 80%;
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
.bl_header_menu_fl_full .menu-left_fl .menu-left-inner.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_menu_fl_full_items_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #fff;
  line-height: 1;
  max-width: 500px;
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 754px) {
  .bl_header_menu_fl_full .menu-left_fl .bl_header_menu_fl_full_items_fl {
    margin-top: 100px;
  }
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_menu_fl_full_items_fl li {
  width: 100%;
  border-bottom: 1px solid #fff;
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_menu_fl_full_items_fl li:last-child {
  border-bottom: none;
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_menu_fl_full_items_fl li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  width: 100%;
  padding: 24px 0;
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_menu_fl_full_items_fl li .menu-jp {
  color: #fff;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_menu_fl_full_items_fl li .menu-en {
  color: #fff;
  font-size: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-bottom: 0;
}
.bl_header_menu_fl_full .menu-left_fl .bl_header_menu_fl_full_items_fl li .menu-en:before {
  background: #fff;
  width: 7px;
  height: 4px;
}
.bl_header_menu_fl_full .menu-right_fl {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/bl_header_menu_fl_full.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/bl_header_menu_fl_full.jpg);
  background-size: cover; /* 常に要素いっぱい */
  background-repeat: no-repeat;
  background-position: center; /* 中央基準（デフォルト） */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 754px) {
  .bl_header_menu_fl_full .menu-right_fl {
    display: none !important;
  }
}
.bl_header_menu_fl_full .menu-right_fl .bl_front_map_container {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
  max-width: 500px;
  margin: 0 auto;
  /*.bl_front_map_logo_svg {
    width: 150px;
    height: auto;
    display: block;

    svg {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  h3 {
    font-size: $fontsize-25;
  }

  p {
    white-space: pre-line;
    line-height: 1.5;
  }

  .bl_front_map_tel_fl {
    display: flex;
    column-gap: 20px;

    .bl_front_map_tel_container {
      flex: 1;
      margin: 50px 0;
      a{
        border-bottom: 1px solid $color1;
        padding-bottom:5px;
      }
      .hp_big {
        font-size: $fontsize-25;
        font-weight: 500;
        margin-left: 10px;
      }
    }
  }
  .hp_nottl{
    color: $color1;
    &:before{
      background: $color1;
    }
  }
  .bl_front_map_table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: $fontsize-16;
    text-align: center;

    thead {
      th {
        font-weight: 500;
        background-color: transparent;
        color: $color1;
        padding: 12px;
        border: 1px solid $color1;
        text-align: center;
      }
    }

    td {
      padding: 12px;
      border: 1px solid $color1;
      color: $color1;
    }

    .hp_white {
      border-right: 1px solid white !important;
    }
  }*/
}
.bl_header_menu_fl_full .menu-right_fl .bl_front_map_container .bl_front_map_gmap {
  display: none;
}
.bl_header_menu_fl_full .menu-right_fl .bl_front_map_container .bl_front_map_table td {
  color: #fff;
}
.bl_header_menu_fl_full .menu-right_fl .bl_front_map_container .bl_front_map_tel_container {
  color: #fff;
}
.bl_header_menu_fl_full .menu-right_fl .bl_front_map_container .bl_front_map_tel_container a {
  color: #fff;
}
.bl_header_menu_fl_full .bl_front_map_container.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ---------- ハンバーガー開いた時の右側 ---------- */
.bl_front_map.map-from-header {
  width: 100%;
}
.bl_front_map.map-from-header .bl_front_map_tel_fl .bl_front_map_tel_container {
  white-space: nowrap;
}
.bl_front_map.map-from-header .bl_front_map_tel_fl .bl_front_map_tel_container p,
.bl_front_map.map-from-header .bl_front_map_tel_fl .bl_front_map_tel_container a {
  color: #fff !important;
}
.bl_front_map.map-from-header .bl_front_map_tel_fl .bl_front_map_tel_container a {
  border-bottom: 1px solid #fff !important;
}
.bl_front_map.map-from-header .md_ttl::before {
  background: #fff !important;
}
.bl_front_map.map-from-header .hp_nottl {
  color: #fff !important;
}
.bl_front_map.map-from-header .bl_front_map_table thead th {
  background-color: transparent !important;
  border: 1px solid #fff !important;
}
.bl_front_map.map-from-header .bl_front_map_table thead th:nth-child(2),
.bl_front_map.map-from-header .bl_front_map_table thead th:nth-child(3) {
  width: 36%;
}
.bl_front_map.map-from-header .bl_front_map_table td {
  padding: 3px;
  border: 1px solid #fff !important;
  color: #fff !important;
}
.bl_front_map.map-from-header .bl_front_map_table .hp_white {
  border: 1px solid #fff !important;
}

/* ---------- frontpage ---------- */
.bl_bg_hp {
  position: relative;
  z-index: 1;
}
.bl_bg_hp::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bl_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv {
    text-align: center;
    padding: 0 0 350px 0;
  }
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv {
    padding: 0 0 210px 0;
  }
}
.bl_bg_hp .bl_mainv .bl_mainv_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv .bl_mainv_fl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv .bl_mainv_fl {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
.bl_bg_hp .bl_mainv .bl_mainv_hp_width {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img1 {
  position: absolute;
  top: 100px;
  left: 0;
  width: 20%;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img1 {
    top: inherit;
    bottom: 22%;
    width: 18%;
  }
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img1 {
    width: 21%;
    bottom: 15%;
  }
}
.bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img2 {
  position: absolute;
  right: 0;
  width: 20%;
  max-width: 240px;
  top: 10px;
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img2 {
    top: inherit;
    width: 18%;
    bottom: 22%;
  }
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img2 {
    width: 21%;
    bottom: 15%;
  }
}
.bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img3 {
  position: absolute;
  left: 150px;
  bottom: 280px;
  width: 40%;
  max-width: 490px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img3 {
    left: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img3 {
    top: inherit;
    bottom: 13%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 35%;
  }
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv .bl_mainv_hp_width .bl_mainv_img3 {
    width: 46%;
    bottom: 5%;
  }
}
.bl_bg_hp .bl_mainv_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 左寄せ */
  gap: 100px;
  z-index: 2;
  margin-right: 80px;
}
@media screen and (max-width: 1200px) {
  .bl_bg_hp .bl_mainv_txt {
    max-width: 570px;
  }
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv_txt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: block;
    max-width: none;
    margin-right: 0;
  }
}
.bl_bg_hp .bl_mainv_txt h2 {
  font-size: clamp(1.563rem, 1.178rem + 1.58vw, 2.188rem);
  color: #8FA906;
  white-space: pre-line;
  margin-bottom: 50px;
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv_txt h2 {
    margin-bottom: 24px;
    font-size: 20px;
  }
}
.bl_bg_hp .bl_mainv_txt .bl_mainv_txt_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_txt_fl {
    margin-top: 50px;
  }
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_txt_fl {
    gap: 24px;
    margin-top: 24px;
  }
}
.bl_bg_hp .bl_mainv_txt .bl_mainv_txt_fl svg {
  width: 63px;
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_txt_fl svg {
    width: 40px;
  }
}
.bl_bg_hp .bl_mainv_txt p {
  white-space: pre-line;
}
.bl_bg_hp .bl_mainv_txt .bl_mainv_txt_fl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_txt_fl2 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_txt_fl2 {
    line-height: 27px;
  }
}
.bl_bg_hp .bl_mainv_txt .bl_mainv_shop {
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_shop {
    font-size: 12px;
  }
}
.bl_bg_hp .bl_mainv_txt .bl_mainv_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
}
@media screen and (max-width: 1024px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_name {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_name {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    font-size: 18px;
  }
}
.bl_bg_hp .bl_mainv_txt .bl_mainv_fl_en {
  color: #8FA906;
  font-size: 13px;
}
@media screen and (max-width: 754px) {
  .bl_bg_hp .bl_mainv_txt .bl_mainv_fl_en {
    font-size: 9px;
  }
}

section.bl_front_about {
  margin-top: 200px; /* 上のセクション背景の兼ね合いでここでセクション間の幅を指定 */
}
@media screen and (max-width: 1024px) {
  section.bl_front_about {
    margin: 0 auto;
  }
}
section.bl_front_about .bl_front_about_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin: 150px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  section.bl_front_about .bl_front_about_fl {
    margin: 100px auto 0 auto;
    font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_about .bl_front_about_fl {
    margin: 48px auto 0 auto;
    font-size: 16px;
  }
}
section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item {
  position: relative;
  width: calc((100% - 20px) / 3);
  opacity: 0;
  clip-path: circle(0% at 50% 50%); /* 中心から小さい円で隠す */
}
@media screen and (max-width: 1024px) {
  section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item {
    width: 100%;
  }
}
section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item img {
  width: 100%;
  height: auto;
  display: block;
}
section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item p {
  white-space: pre-line;
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #fff;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item p {
    padding: 16px;
  }
}
@media screen and (max-width: 1024px) {
  section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item p {
    padding: 24px;
  }
}
section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item .un_text {
  line-height: 1.5;
}
section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item .un_number {
  color: #8FA906;
  font-size: clamp(1.563rem, 0.986rem + 2.37vw, 2.5rem);
  font-weight: bold;
  line-height: 0.9;
}
@media screen and (max-width: 754px) {
  section.bl_front_about .bl_front_about_fl .bl_front_about_fl_item .un_number {
    font-size: 43px;
  }
}
section.bl_front_about .bl_front_about_fl_btn {
  margin: 150px auto 0;
}
@media screen and (max-width: 1024px) {
  section.bl_front_about .bl_front_about_fl_btn {
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_about .bl_front_about_fl_btn {
    margin: 24px auto 0;
  }
}

section.bl_front_zaitaku {
  position: relative;
  padding-bottom: 20px;
}
section.bl_front_zaitaku .bl_front_zaitaku_bg {
  position: relative;
  width: 98vw;
  margin: 0 auto;
  background: url("../img/bl_front_zaitaku_bg1.jpg") no-repeat center/cover;
  padding: 100px 0;
  border-radius: 12px;
}
@media screen and (max-width: 754px) {
  section.bl_front_zaitaku .bl_front_zaitaku_bg {
    width: 90%;
    padding: 24px 0;
  }
}
section.bl_front_zaitaku .bl_front_zaitaku_bg:last-child {
  margin-top: 20px;
  background: url("../img/bl_front_zaitaku_bg2.jpg") no-repeat center/cover;
}
section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap {
  background: #fff;
  width: 85%;
  margin: 0 auto;
  padding: 100px 0;
  border-radius: 12px;
  width: 90%;
}
@media screen and (max-width: 754px) {
  section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap {
    padding: 48px 20px;
  }
}
section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl {
    width: 100%;
  }
}
section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl .bl_front_zaitaku_img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 100px 0 50px 0;
  border-radius: 24px;
}
@media screen and (max-width: 1024px) {
  section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl .bl_front_zaitaku_img {
    margin: 50px 0;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl .bl_front_zaitaku_img {
    margin: 48px 0 24px;
    border-radius: 12px;
  }
}
section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl p {
  max-width: 500px;
  white-space: pre-wrap;
}
section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl p span.hp_bold {
  font-weight: 500;
}
section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl .bl_front_zaitaku_btn {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl .bl_front_zaitaku_btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_zaitaku .bl_front_zaitaku_bg .bl_front_zaitaku_wrap .bl_front_zaitaku_fl .bl_front_zaitaku_btn {
    margin-top: 24px;
  }
}

.ly_news {
  margin-top: 150px;
}

section.bl_front_news {
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  section.bl_front_news {
    padding-top: 150px;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_news {
    padding-top: 48px;
  }
}
section.bl_front_news .bl_front_news_inner {
  border-top: 1px dashed #4C4A4A;
  margin: 150px auto;
}
@media screen and (max-width: 1024px) {
  section.bl_front_news .bl_front_news_inner {
    margin: 100px auto;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner {
    margin: 48px auto 24px;
  }
}
section.bl_front_news .hp_front_news_inner {
  position: relative;
  top: 0;
  margin: 0 auto;
}
section.bl_front_news .bl_front_news_card {
  width: 100%;
  display: block;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
section.bl_front_news .bl_front_news_card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
section.bl_front_news .bl_front_news_inner_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  border-bottom: 1px dashed #4C4A4A;
  gap: 3rem;
  /* 上段：日付＋カテゴリ */
  /* カテゴリバッジ */
  /* タイトル */
  /* 丸矢印 */
  /* ===== レスポンシブ ===== */
}
@media screen and (max-width: 1024px) {
  section.bl_front_news .bl_front_news_inner_fl {
    gap: 0;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner_fl {
    padding: 12px 8px;
    gap: inherit;
  }
}
section.bl_front_news .bl_front_news_inner_fl .news_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner_fl .news_top {
    gap: 10px;
  }
}
section.bl_front_news .bl_front_news_inner_fl .news_top .news_meta {
  color: #8FA906;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 70px;
}
section.bl_front_news .bl_front_news_inner_fl .news_top .news_cat_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 150px;
}
@media screen and (max-width: 1024px) {
  section.bl_front_news .bl_front_news_inner_fl .news_top .news_cat_wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner_fl .news_top .news_cat_wrap {
    gap: 2px;
  }
}
section.bl_front_news .bl_front_news_inner_fl .news_cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 27px;
  padding: 0 1em;
  border: 1px solid #4C4A4A;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  line-height: 1;
  color: #4C4A4A;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  section.bl_front_news .bl_front_news_inner_fl .news_cat {
    font-size: 12px;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner_fl .news_cat {
    font-size: 10px;
    height: 22px;
    padding: 0 5px;
  }
}
section.bl_front_news .bl_front_news_inner_fl .news_ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  section.bl_front_news .bl_front_news_inner_fl .news_ttl {
    font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner_fl .news_ttl {
    margin-left: 0;
  }
}
section.bl_front_news .bl_front_news_inner_fl .hp_btn_wrapper {
  /*flex: 0 0 40px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.bl_front_news .bl_front_news_inner_fl .hp_btn_wrapper .hp_btn_kigo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #8FA906;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner_fl .hp_btn_wrapper .hp_btn_kigo {
    width: 35px;
    height: 35px;
  }
}
section.bl_front_news .bl_front_news_inner_fl .hp_btn_wrapper .hp_btn_kigo i {
  font-size: 13px;
  color: #fff;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: inherit;
  transition: inherit;
}
section.bl_front_news .bl_front_news_inner_fl:hover .hp_btn_kigo i {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner_fl {
    position: relative; /* ボタンの絶対位置用 */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; /* 左側の2行を縦に */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  section.bl_front_news .bl_front_news_inner_fl .news_ttl {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; /* タイトルを2行目に */
  }
  section.bl_front_news .bl_front_news_inner_fl .hp_btn_wrapper {
    position: absolute;
    right: 30px; /* 右端に固定 */
    top: 50%; /* 親要素の中央 */
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); /* 上下中央揃え */
  }
}
@media screen and (max-width: 754px) and (max-width: 754px) {
  section.bl_front_news .bl_front_news_inner_fl .hp_btn_wrapper {
    right: 8px;
  }
}
section.bl_front_news .bl_front_news_btn {
  margin: 150px auto 0;
}
@media screen and (max-width: 1024px) {
  section.bl_front_news .bl_front_news_btn {
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_news .bl_front_news_btn {
    margin: 24px auto 0;
  }
}

.bl_front_news.not-front {
  padding: 0;
}

section.bl_front_kakari {
  background: #8FA906;
  border-radius: 12px;
  width: 95vw;
  margin: auto;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari {
    width: 90%;
  }
}
section.bl_front_kakari .ly_front_kakari {
  padding: 150px 0;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .ly_front_kakari {
    padding: 48px 0;
  }
}
section.bl_front_kakari .bl_front_kakari_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  margin: 0 auto;
  width: 95%;
}
@media screen and (max-width: 1024px) {
  section.bl_front_kakari .bl_front_kakari_fl {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    width: 90%;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container:first-child {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container:first-child {
    width: 55%;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container:first-child {
    width: 100%;
    gap: 12px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container:first-child::before {
  content: "";
  position: absolute;
  top: -130px;
  right: 0;
  width: 270px;
  height: 240px;
  background: url(../img/bl_kakari_bg.svg) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container:first-child::before {
    width: 125px;
    top: -24px;
    right: 0;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container:last-child {
  width: 50%;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container:last-child {
    width: 100%;
    margin-top: 48px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container img {
  width: 100%;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container h3 {
  font-size: clamp(1.563rem, 1.178rem + 1.58vw, 2.188rem);
  color: #fff;
}
@media screen and (max-width: 1024px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container h3 {
    font-size: clamp(1.563rem, 1.37rem + 0.79vw, 1.875rem);
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container h3 {
    font-size: 20px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container h4 {
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  color: #fff;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container p.hp_white {
  color: #fff;
  margin: 40px 0;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container p.hp_white {
    margin: 12px 0;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_fl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_fl2 .bl_front_kakari_fl2_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 2px solid #4C4A4A;
  color: #4C4A4A;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_fl2 .bl_front_kakari_fl2_row {
    width: 80%;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_fl2 .bl_front_kakari_fl2_row .bl_front_kakari_fl2_label,
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_fl2 .bl_front_kakari_fl2_row .bl_front_kakari_fl2_value {
  padding: 10px 0;
  text-align: center;
  line-height: 1.5;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_fl2 .bl_front_kakari_fl2_row .bl_front_kakari_fl2_label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: pre-line;
  border-right: 2px solid #4C4A4A;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_fl2 .bl_front_kakari_fl2_row .bl_front_kakari_fl2_value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow {
  background: #fff;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  border-radius: 24px;
  margin-top: 30px;
  padding: 25px 30px;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow {
    margin-top: 24px;
    padding: 24px 16px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_fl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_fl {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    margin-bottom: 24px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_fl::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 300px;
  height: 1.5px;
  background-image: radial-gradient(circle, #8FA906 40%, transparent 41%);
  background-size: 6px 100%;
  background-repeat: repeat-x;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_fl::after {
    width: 250px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_fl img {
  width: 100px;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_fl h5 {
  color: #4C4A4A;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl {
    gap: 4px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container:first-child {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container:first-child {
    width: 100%;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container:last-child {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container:last-child {
    width: 100%;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner {
    gap: 4px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner p span:nth-of-type(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(0.875rem, 0.644rem + 0.95vw, 1.25rem);
  color: #8FA906;
  font-weight: 500;
  margin-right: 15px;
}
@media screen and (max-width: 754px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner p span:nth-of-type(1) {
    font-size: 22px;
    margin-right: 12px;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner p span:nth-of-type(2) {
  margin-top: 2px;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner .bl_front_kakari_flow_links_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner .bl_front_kakari_flow_links_fl {
    width: 60%;
  }
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner .bl_front_kakari_flow_links_fl .bl_front_kakari_flow_links_inner a {
  display: block;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner .bl_front_kakari_flow_links_fl .bl_front_kakari_flow_links_inner img {
  display: block;
  max-width: 100%;
  height: auto;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_inner .bl_front_kakari_flow_links_fl a + a {
  margin-top: 8px;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_con_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_con_row .bl_front_kakari_flow_con_label {
  background: #4C4A4A;
  color: #fff;
  padding: 0px 10px;
}
section.bl_front_kakari .bl_front_kakari_fl .bl_front_kakari_fl_container .bl_front_kakari_flow .bl_front_kakari_flow_container_fl .bl_front_kakari_flow_container .bl_front_kakari_flow_con_row .bl_front_kakari_flow_con_value {
  border: 1px solid #4C4A4A;
  padding: 0px 10px;
}

footer {
  background: url(../img/footer_bg.jpg);
  background-size: cover;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
}
@media screen and (max-width: 754px) {
  footer {
    background: url(../img/footer_bg_sp.png);
  }
}
footer .bl_footer_copy {
  font-size: 12px;
  margin-top: 80px;
}
footer .md_ttl {
  padding-bottom: 0;
}
footer .ly_footer {
  width: 90%;
  margin: auto;
  padding: 200px 0 50px 0;
}
@media screen and (max-width: 1024px) {
  footer .ly_footer {
    padding: 0 0 50px 0;
  }
}
@media screen and (max-width: 754px) {
  footer .ly_footer {
    padding: 48px 0 24px 0;
  }
}
footer .bl_footer_menu {
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 1024px) {
  footer .bl_footer_menu {
    margin: 100px auto;
  }
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu {
    margin: 0 auto;
  }
}
footer .bl_footer_menu .bl_footer_menu_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  /* 白枠ナビ */
  /* 右側ボタン */
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu .bl_footer_menu_inner {
    display: none;
  }
}
footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 60px;
  line-height: 24px;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 32px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  overflow: hidden; /* はみ出し防止 */
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 48px;
  }
}
footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav li {
  min-width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  /* 区切り線 */
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav li {
    width: 30%;
    height: 50px;
  }
}
footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav li a {
  display: block;
  width: 100%; /* liいっぱい */
  padding: 16px 24px; /* クリック範囲拡張 */
  text-align: center;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  text-decoration: none;
  color: #8FA906;
}
@media screen and (max-width: 1024px) {
  footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav li a {
    font-size: 14px;
    padding: 12px;
  }
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav li a {
    padding: 0;
    font-size: 12px;
    line-height: 17px;
  }
}
footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 35%;
  bottom: 35%;
  width: 2px;
  background: #E6EFBC;
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_nav li:not(:last-child)::after {
    top: 25%;
    bottom: 25%;
    background: #eee;
    height: 15px;
  }
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_btn {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-left: 0;
  }
}
footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_btn a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
}
footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_btn a svg {
  width: 70px;
  height: auto;
}
@media screen and (max-width: 754px) {
  footer .bl_footer_menu .bl_footer_menu_inner .bl_footer_btn a svg {
    width: 40px;
  }
}
footer .bl_footer_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
}
@media screen and (max-width: 1024px) {
  footer .bl_footer_fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 754px) {
  footer .bl_footer_fl {
    gap: 24px;
  }
}
footer .bl_footer_fl :nth-child(3) p {
  font-size: 18px;
  white-space: pre-line;
}
footer .bl_footer_fl :nth-child(3) p span {
  font-size: 14px;
}
footer .bl_footer_fl :nth-child(3) p .hp_time {
  display: inline-block; /* 左揃え用にブロック化 */
  white-space: pre-line; /* 改行を有効に */
  text-align: left; /* 左揃え */
  margin-left: 20px; /* 必要なら平日・休日から少し右にずらす */
  vertical-align: top; /* 上に揃える */
}
footer .bl_footer_fl .bl_footer_fl_wrap_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 754px) {
  footer .bl_footer_fl .bl_footer_fl_wrap_inner {
    gap: 4px;
  }
}
@media screen and (max-width: 754px) {
  footer .bl_footer_fl .bl_footer_tel_att {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .bl_footer_fl .bl_footer_tel_att p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  footer .bl_footer_fl .bl_footer_tel_att a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
footer .bl_footer_fl .bl_footer_fl_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
@media screen and (max-width: 754px) {
  footer .bl_footer_fl .bl_footer_fl_wrap {
    row-gap: 12px;
  }
}
footer .bl_footer_fl .bl_footer_col1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
footer .bl_footer_fl .bl_footer_col1 .bl_footer_logo_svg {
  width: 120px;
  height: auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  footer .bl_footer_fl .bl_footer_col1 .bl_footer_logo_svg {
    text-align: center;
    margin: 0 auto 24px auto;
  }
}
@media screen and (max-width: 754px) {
  footer .bl_footer_fl .bl_footer_col1 .bl_footer_logo_svg {
    margin: 0 auto 12px auto;
    width: 80px;
  }
}
footer .bl_footer_fl .bl_footer_col1 .bl_footer_logo_svg svg {
  width: 100%;
  height: auto;
  display: block;
}
footer .bl_footer_fl .bl_footer_col {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 12px;
}
footer .bl_footer_fl .bl_footer_col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #8FA906;
}
footer .bl_footer_fl .bl_footer_col a span {
  border-bottom: 1px solid #4C4A4A;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 25px;
}
footer .bl_footer_fl p {
  white-space: pre-line;
  line-height: 1.5;
}
footer .bl_footer_fl .md_ttl {
  text-align: left;
  border-bottom: inherit;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.modal-overlay[aria-hidden=false] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: min(720px, 92vw);
  max-height: 82vh;
  overflow: clip;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  position: relative;
}

.modal[data-open=true] {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.modal-title {
  margin: 0;
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  font-weight: 500;
}

.modal-body {
  padding: 16px 20px;
  overflow: auto;
  max-height: calc(82vh - 64px);
}

.modal-body ol {
  margin: 0;
  padding-left: 1.2em;
  list-style-type: number;
}

.modal-body li + li {
  margin-top: 0.25rem;
}

.btn-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.btn-close:hover, .btn-close:focus {
  outline: none;
  background: #f3f4f6;
}

.no-scroll {
  overflow: hidden;
}

/* ---------- news ---------- */
@media screen and (max-width: 754px) {
  main.ly_news {
    margin-top: 50px;
  }
}

.bl_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  margin-top: 150px;
  /* 丸矢印 */
}
@media screen and (max-width: 1024px) {
  .bl_pagination {
    margin-top: 100px;
  }
}
@media screen and (max-width: 754px) {
  .bl_pagination {
    margin-top: 48px;
    gap: 24px;
  }
}
.bl_pagination .bl_pagination_item a, .bl_pagination .bl_pagination_item span {
  display: inline-block;
}
.bl_pagination .bl_pagination_item .current {
  color: #8FA906;
}
.bl_pagination .hp_btn_wrapper .hp_btn_kigo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #8FA906;
}
@media screen and (max-width: 754px) {
  .bl_pagination .hp_btn_wrapper .hp_btn_kigo {
    width: 35px;
    height: 35px;
  }
}
.bl_pagination .hp_btn_wrapper .hp_btn_kigo i {
  font-size: 13px;
  color: #fff;
}

.ly_news_category_nav {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
}
@media screen and (max-width: 754px) {
  .ly_news_category_nav {
    gap: 20px;
    font-size: 12px;
  }
}
.ly_news_category_nav a {
  position: relative;
  color: #4C4A4A;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-decoration: none;
  padding-bottom: 4px;
}
.ly_news_category_nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #8FA906;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ly_news_category_nav a:hover::after {
  width: 100%;
}
.ly_news_category_nav a.is-active {
  color: #8FA906;
  border-bottom: 1px solid #8FA906;
  /* ::after を完全に消す */
  /* hover時も無効 */
}
.ly_news_category_nav a.is-active::after {
  content: none;
}
.ly_news_category_nav a.is-active:hover::after {
  content: none;
}

section.un_nopadding {
  padding-top: inherit;
}

/* メインコンテンツの幅と中央寄せ */
.ly_cont__page {
  width: 90%;
  max-width: 1200px; /* 画面が広すぎても読みやすく */
  margin: 0px auto 100px auto;
  padding: 40px;
  background: #ffffff;
  border-top: 1px dashed #4C4A4A;
  border-bottom: 1px dashed #4C4A4A;
}
@media screen and (max-width: 1024px) {
  .ly_cont__page {
    padding: 30px;
  }
}
@media screen and (max-width: 754px) {
  .ly_cont__page {
    margin: 0 auto 48px auto;
    padding: 20px;
  }
}
.ly_cont__page .bl_post_content img {
  display: block;
  max-width: 100%; /* はみ出し防止 */
  height: auto;
  border-radius: 12px;
}
@media screen and (max-width: 754px) {
  .ly_cont__page .bl_post_content img {
    margin: 12px auto;
  }
}

/* 記事全体 */
.bl_post_article {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #4C4A4A;
}
@media screen and (max-width: 754px) {
  .bl_post_article {
    margin-bottom: 12px;
  }
}

/* カテゴリー */
.bl_post_category {
  display: inline-block;
  height: 27px;
  padding: 0 1em;
  margin-bottom: 10px;
  font-size: 0.85rem;
  border: 1px solid #4C4A4A;
  border-radius: 999px;
}
@media screen and (max-width: 1024px) {
  .bl_post_category {
    font-size: 12px;
  }
}
@media screen and (max-width: 754px) {
  .bl_post_category {
    font-size: 10px;
    height: 22px;
    padding: 0 5px;
    margin-bottom: 4px;
    line-height: 20px;
  }
}

/* タイトル */
.bl_post_title {
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  margin-bottom: 30px;
  color: #4C4A4A;
  font-weight: 500;
}
@media screen and (max-width: 754px) {
  .bl_post_title {
    margin-bottom: 12px;
  }
}

/* 日付 */
.bl_post_date {
  display: block;
  margin-bottom: 30px;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  color: #666;
}
@media screen and (max-width: 754px) {
  .bl_post_date {
    margin-bottom: 12px;
  }
}

/* 本文 */
.bl_post_content {
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  color: #4C4A4A;
}

.bl_post_content p {
  margin-bottom: 1.6em;
}
@media screen and (max-width: 754px) {
  .bl_post_content p {
    margin-bottom: 12px;
  }
}

/* 一覧に戻る */
.bl_news_back {
  text-align: center;
}

.bl_news_back a {
  display: inline-block;
  padding: 10px 60px;
  background: #8FA906;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
}

.bl_news_back a:hover {
  opacity: 0.8;
}

/* aboutページ */
section.bl_about {
  padding: 0;
}
section.bl_about .bl_about_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 上揃え */
  gap: 95px; /* 画像とテキストの間隔 */
}
@media screen and (max-width: 754px) {
  section.bl_about .bl_about_fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
section.bl_about .bl_about_fl img.bl_about_img1 {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3; /* 2割 */
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media screen and (max-width: 754px) {
  section.bl_about .bl_about_fl img.bl_about_img1 {
    border-radius: 12px;
    width: 60%;
    margin: 0 auto;
  }
}
section.bl_about .bl_about_fl p {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7; /* 8割 */
  white-space: pre-line;
}

section.bl_about_recommend {
  position: relative; /* 子要素をabsoluteで配置するため */
  padding: 150px 0 0;
}
@media screen and (max-width: 1024px) {
  section.bl_about_recommend {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend {
    padding: 48px 0 0;
  }
}
section.bl_about_recommend .bl_about_recommend_bg {
  width: 100vw;
  height: 100vh;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 12px;
  background: url("../img/bl_about_bg.jpg") no-repeat center/cover;
  overflow: hidden;
  /*min-height: 1150px;  // ← 背景の高さ（カード全体＋余白分）*/
}
section.bl_about_recommend .bl_about_recommend_hp_fl {
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 200px 0;
  z-index: 2;
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl {
    top: 0;
    padding: 50px 0;
  }
}
@media screen and (max-width: 400px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl {
    padding: 12px 0;
  }
}
section.bl_about_recommend .bl_about_recommend_hp_fl .md_ttl_hp_center {
  color: #fff;
  margin-bottom: 100px;
}
@media (max-width: 380px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .md_ttl_hp_center {
    position: absolute;
    top: 50px;
  }
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .md_ttl_hp_center {
    margin-bottom: 48px;
  }
}
section.bl_about_recommend .bl_about_recommend_hp_fl .md_ttl_hp_center .md_ttl {
  color: #fff;
  border-bottom: 1px solid #fff;
}
section.bl_about_recommend .bl_about_recommend_hp_fl .md_ttl_hp_center .md_ttl:before {
  background: #fff;
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
  z-index: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner {
    display: inherit;
  }
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_num {
  position: absolute;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  background: #8FA906;
  color: #fff;
  border-radius: 0;
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  white-space: nowrap;
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_num::before {
  content: "point";
  margin-right: 0.25em;
  display: inline-block;
  border-bottom: 1px solid #fff;
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_num span {
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  margin-left: 0.25em;
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 90%;
    margin: 0 auto;
  }
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  color: #4C4A4A;
  padding: 40px 0;
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 24px 0;
  }
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner p {
    text-align: left;
  }
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner h2 {
  white-space: pre-line;
  font-size: clamp(1.563rem, 1.178rem + 1.58vw, 2.188rem);
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner h2 {
    font-size: clamp(1.563rem, 1.37rem + 0.79vw, 1.875rem);
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 400px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner h2 {
    margin-bottom: 12px;
  }
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner:first-child {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  text-align: left;
  margin-left: 60px;
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner:first-child {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-left: 0;
    padding-top: 48px;
  }
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner:last-child {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  margin-right: 60px;
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 24px;
  }
}
section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner:last-child img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 754px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner:last-child img {
    width: 100%;
    max-width: 400px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
  }
}
@media screen and (max-width: 400px) {
  section.bl_about_recommend .bl_about_recommend_hp_fl .bl_about_recommend_inner .bl_about_recommend_fl .bl_about_recommend_fl_inner:last-child img {
    width: 70%;
  }
}

.bl_about_bottom_map section.bl_front_map {
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .bl_about_bottom_map section.bl_front_map {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 754px) {
  .bl_about_bottom_map section.bl_front_map {
    padding-bottom: 0;
  }
}

/* service */
.md_others_main {
  position: relative;
  margin: 0 auto;
}
.md_others_main .md_others_inner {
  padding: 200px 0 150px;
}
@media screen and (max-width: 1024px) {
  .md_others_main .md_others_inner {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 754px) {
  .md_others_main .md_others_inner {
    padding: 0 0 48px;
  }
}

.md_others_main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bl_bg_service.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; /* 必要なら調整 */
  z-index: -1;
  pointer-events: none;
}

.bl_service_example {
  background: #fff; /* 白背景 */
  padding: 7%;
  border-radius: 12px; /* 必要なら角丸 */
  margin: 0 auto;
}
@media screen and (max-width: 754px) {
  .bl_service_example {
    padding: 5%;
  }
}

/* 縦に5行なので1列表示 */
.bl_service_list_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px; /* 行間 */
}
@media screen and (max-width: 1024px) {
  .bl_service_list_fl {
    gap: 24px;
  }
}

/* 左にアイコン、右に文章 */
.bl_service_item_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 754px) {
  .bl_service_item_fl {
    gap: 12px;
  }
}

.bl_service_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  background: #8FA906;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  color: #fff;
}
@media screen and (max-width: 754px) {
  .bl_service_icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15px;
            flex: 0 0 15px;
    height: 15px;
  }
}

.bl_service_icon i {
  font-size: clamp(0.875rem, 0.721rem + 0.63vw, 1.125rem);
  font-weight: 900;
}
@media screen and (max-width: 754px) {
  .bl_service_icon i {
    font-size: 12px;
  }
}

/* 文章部分 */
.bl_service_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6;
}

.bl_service_loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  /* 画像が読み込まれたら再生開始 */
}
.bl_service_loop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100vw;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media screen and (max-width: 1024px) {
  .bl_service_loop ul {
    max-width: 130vw;
  }
}
@media screen and (max-width: 754px) {
  .bl_service_loop ul {
    max-width: 200vw;
  }
}
.bl_service_loop ul:first-child {
  -webkit-animation: slide1 260s -130s linear infinite;
          animation: slide1 260s -130s linear infinite;
}
.bl_service_loop ul:last-child {
  -webkit-animation: slide2 260s linear infinite;
          animation: slide2 260s linear infinite;
}
.bl_service_loop ul li {
  display: inline-block;
  width: 100%;
  margin-right: 15px;
  text-align: center;
}
@media screen and (max-width: 754px) {
  .bl_service_loop ul li {
    margin-right: 10px;
  }
}
.bl_service_loop ul li img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.bl_service_loop.is-animated ul {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.hp_margin_ttl {
  padding: 200px 0 150px;
}
@media screen and (max-width: 1024px) {
  .hp_margin_ttl {
    padding: 150px 0 100px 0;
  }
}
@media screen and (max-width: 754px) {
  .hp_margin_ttl {
    padding: 48px 0;
  }
}

.ly_service_flow_wrap_fl {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .ly_service_flow_wrap_fl {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 754px) {
  .ly_service_flow_wrap_fl {
    padding-bottom: 48px;
  }
}
.ly_service_flow_wrap_fl .bl_service_flow_inner_fl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  background: #fff;
  border-radius: 12px;
  padding: 32px 32px 32px 56px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 1024px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl {
    gap: 30px;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 754px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl {
    gap: 12px 24px;
  }
}
.ly_service_flow_wrap_fl .bl_service_flow_inner_fl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  border-radius: 12px;
  background: #8FA906;
}
.ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(1) {
  -webkit-box-flex: 1.4;
      -ms-flex: 1.4;
          flex: 1.4;
}
@media screen and (max-width: 1024px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(1) img {
  width: 120px;
}
@media screen and (max-width: 1024px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(1) img {
    width: 100px;
  }
}
@media screen and (max-width: 754px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(1) img {
    width: 70px;
  }
}
.ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(2) {
  -webkit-box-flex: 3.2;
      -ms-flex: 3.2;
          flex: 3.2;
  color: #8FA906;
  font-size: clamp(1.563rem, 1.178rem + 1.58vw, 2.188rem);
}
@media screen and (max-width: 1024px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(2) {
    font-size: clamp(1.563rem, 1.37rem + 0.79vw, 1.875rem);
  }
}
@media screen and (max-width: 754px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    line-height: 30px;
    font-size: 20px;
  }
}
.ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(2) h3 span {
  display: block;
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
}
@media screen and (max-width: 754px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(2) h3 span {
    font-size: 10px;
  }
}
.ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(3) {
  -webkit-box-flex: 5.4;
      -ms-flex: 5.4;
          flex: 5.4;
  white-space: pre-line;
}
@media screen and (max-width: 754px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_fl .bl_service_flow_item:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    white-space: unset;
  }
}
.ly_service_flow_wrap_fl .bl_service_flow_inner_kigo {
  position: relative;
  z-index: 2;
  width: 35px;
  display: block;
  margin: -10px auto 0;
}
@media screen and (max-width: 754px) {
  .ly_service_flow_wrap_fl .bl_service_flow_inner_kigo {
    width: 24px;
  }
}

.bl_service_end {
  padding: 200px 0 150px 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .bl_service_end {
    padding: 150px 0 50px 0;
  }
}
@media screen and (max-width: 754px) {
  .bl_service_end {
    padding: 48px 0;
  }
}
.bl_service_end p {
  white-space: pre-line;
  margin-bottom: 50px;
}
@media screen and (max-width: 754px) {
  .bl_service_end p {
    margin-bottom: 24px;
  }
}
.bl_service_end .bl_service_end_logo {
  width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 754px) {
  .bl_service_end .bl_service_end_logo {
    width: 150px;
  }
}
.bl_service_end .bl_service_end_logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.hp_bg_position {
  position: relative;
}
.hp_bg_position::after {
  background-position: center bottom;
}

.bl_pharmacy_wrap_gl {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2カラム均等 */
  grid-template-rows: repeat(2, auto); /* 縦2行 */
  gap: 20px; /* カードの間隔 */
  margin: 0 auto; /* 中央寄せ */
}
@media screen and (max-width: 754px) {
  .bl_pharmacy_wrap_gl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.bl_pharmacy_container_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  height: 100%; /* グリッドセルいっぱいに伸ばす */
  padding: 30px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* ほんのりカード風 */
  background: #fff; /* 個別カードも白背景にしたい場合 */
}
@media screen and (max-width: 1024px) {
  .bl_pharmacy_container_fl {
    gap: 10px;
    padding: 20px;
  }
}
@media screen and (max-width: 754px) {
  .bl_pharmacy_container_fl {
    gap: 12px;
    padding: 24px;
  }
}
.bl_pharmacy_container_fl .bl_pharmacy_num {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  color: #8FA906;
  border-radius: 0;
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  white-space: nowrap;
}
.bl_pharmacy_container_fl .bl_pharmacy_num::before {
  content: "Merit";
  margin-right: 0.25em;
  display: inline-block;
  border-bottom: 1px solid #8FA906;
}
.bl_pharmacy_container_fl .bl_pharmacy_num span {
  font-size: clamp(1.563rem, 0.986rem + 2.37vw, 2.5rem);
  margin-left: 5px;
  line-height: 40px;
}
.bl_pharmacy_container_fl svg {
  width: 100px;
  height: auto;
  display: block;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .bl_pharmacy_container_fl svg {
    width: 80px;
    margin: 0;
  }
}

.bl_pharmacy_container_fl h2 {
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  color: #8FA906;
}

.bl_pharmacy_container_fl p {
  font-size: clamp(0.875rem, 0.644rem + 0.95vw, 1.25rem);
}

.bl_pharmacy_list_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 親を中央揃え */
  width: 100%;
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .bl_pharmacy_list_fl {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 754px) {
  .bl_pharmacy_list_fl {
    padding-bottom: 0;
  }
}

.bl_pharmacy_list_fl p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: 60%;
  margin: 12px 0;
  padding-bottom: 24px; /* 下線用の余白 */
}
@media screen and (max-width: 1024px) {
  .bl_pharmacy_list_fl p {
    width: 80%;
  }
}
@media screen and (max-width: 754px) {
  .bl_pharmacy_list_fl p {
    width: 90%;
    gap: 12px;
    margin: 0 0 12px;
    padding-bottom: 12px;
  }
}

/* 左のアイコン */
.bl_pharmacy_list_fl p::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 8px;
  background: #8FA906;
  border-radius: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* 縮まらないように固定 */
}

/* 下線（アイコンより少し長く） */
.bl_pharmacy_list_fl p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px; /* 左に少しはみ出す */
  width: calc(100% + 16px); /* 右側も同じだけ伸ばす */
  border-bottom: 1px dotted #4C4A4A; /* 点線 */
}
@media screen and (max-width: 754px) {
  .bl_pharmacy_list_fl p::after {
    left: 0;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */