@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.is-hidden {
  visibility: hidden;
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(0.875rem, 0.721rem + 0.63vw, 1.125rem);
  font-weight: normal;
  margin: 0;
  padding: 0;
  background-image: url("../img/background.jpg"); /* パスは自分の画像に合わせて */
  background-size: cover; /* 画面いっぱいに拡大（縦横比は維持） */
  background-position: center center; /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返さない */
  background-attachment: fixed; /* スクロールしても背景固定（任意） */
}

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

/*---------- 共通パーツ ----------*/
.md_wrap {
  width: 90%;
  margin: 0 auto;
  padding: 200px 0;
}
@media screen and (max-width: 754px) {
  .md_wrap {
    padding: 50px 0;
  }
}

/* 共通の見出しスタイル */
.md_ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}

.md_ttl_hp {
  margin-left: auto;
  margin-right: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.md_ttl_ja {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: normal;
  font-size: clamp(1.563rem, 1.37rem + 0.79vw, 1.875rem);
  color: #000;
  margin-top: 50px;
}
@media screen and (max-width: 754px) {
  .md_ttl_ja {
    font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  }
}

.md_ttl_en {
  font-size: clamp(1.875rem, 0.284rem + 7.95vw, 6.25rem);
  position: absolute;
  left: 0;
  color: rgba(190, 120, 0, 0.2);
}

.md_ttl_en_hp {
  left: inherit;
}

.md_arrow {
  width: 37px;
  height: 37px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.md_arrow img {
  display: block;
  width: 15px;
  height: 15px;
}

.js-fadeInLeftMask {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  will-change: clip-path, opacity;
}

/*---------- ヘッダー ----------*/
.bl_header_toggle_el {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.bl_header_toggle_el img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.bl_header_toggle_el .ham_icon_close {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.bl_header_toggle_el.is-open .ham_icon_open {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.bl_header_toggle_el.is-open .ham_icon_close {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.bl_header_inner_sp {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  background-image: url("../img/background.jpg");
  background-position: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  overflow: hidden;
}
@media screen and (max-width: 754px) {
  .bl_header_inner_sp {
    width: 100vw;
  }
}
.bl_header_inner_sp .bl_header_top_img {
  position: absolute;
  top: 50px;
}
@media screen and (max-width: 754px) {
  .bl_header_inner_sp .bl_header_top_img {
    top: 30px;
  }
}
.bl_header_inner_sp .bl_header_bottom_imgs {
  position: absolute;
  bottom: -10px;
  left: -15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* 両端に配置 */
}
.bl_header_inner_sp .bl_header_un {
  max-width: 100%;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
@media screen and (max-width: 754px) {
  .bl_header_inner_sp .bl_header_un {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}
.bl_header_inner_sp .bl_header_un svg {
  display: block;
  width: 100%;
  height: auto;
}
.bl_header_inner_sp .bl_header_bottom_un {
  position: relative;
  bottom: -10px;
  max-width: 40%;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
@media screen and (max-width: 754px) {
  .bl_header_inner_sp .bl_header_bottom_un {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.bl_header_inner_sp .bl_header_bottom_un:nth-of-type(2) {
  max-width: 100%;
  position: relative;
  bottom: -40px;
  right: -25px;
}
@media screen and (max-width: 754px) {
  .bl_header_inner_sp .bl_header_bottom_un:nth-of-type(2) {
    right: -35px;
  }
}
.bl_header_inner_sp svg {
  display: block;
  width: 100%;
  height: auto;
}
.bl_header_inner_sp .bl_header_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5em;
}
.bl_header_inner_sp .bl_header_fl .bl_header_menu_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.bl_header_inner_sp .bl_header_logo {
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 754px) {
  .bl_header_inner_sp .bl_header_logo {
    width: 150px;
  }
}
.bl_header_inner_sp .bl_header_logo svg {
  width: 100%;
  height: auto;
  display: block;
}
.bl_header_inner_sp .bl_header_nav {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(0.875rem, 0.644rem + 0.95vw, 1.25rem);
}
.bl_header_inner_sp .bl_header_nav a {
  position: relative;
}
.bl_header_inner_sp .bl_header_nav a::before {
  content: "●";
  color: #BE7800;
  font-size: 0.4em;
  margin-bottom: 2em;
}

.bl_header_inner_sp.is-open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.bl_header {
  background-image: url("../img/mainv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200vh;
}
@media screen and (max-width: 1024px) {
  .bl_header {
    height: 130vh;
  }
}
@media screen and (max-width: 754px) {
  .bl_header {
    height: 120vh;
  }
}

.bl_header--no-bg {
  background-image: inherit;
  height: inherit;
}

.ly_header {
  width: 90%;
  margin: 0 auto;
}
.ly_header .bl_header_inner {
  padding: 50px 0;
}
@media screen and (max-width: 754px) {
  .ly_header .bl_header_inner {
    padding: 40px 0;
  }
}
.ly_header .bl_header_inner .bl_header_fl {
  width: 88%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ly_header .bl_header_inner .bl_header_fl .bl_header_menu_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  font-size: clamp(0.875rem, 0.644rem + 0.95vw, 1.25rem);
}
@media screen and (max-width: 754px) {
  .ly_header .bl_header_inner .bl_header_fl .bl_header_menu_fl {
    display: none;
  }
}
.ly_header .bl_header_inner .bl_header_logo_svg {
  width: 150px;
  height: auto;
  display: block;
}
.ly_header .bl_header_inner .bl_header_logo_svg svg {
  width: 100%;
  height: auto;
  display: block;
}
.ly_header .bl_header_inner .bl_header_nav {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}
.ly_header .bl_header_inner .bl_header_nav a {
  position: relative;
}
.ly_header .bl_header_inner .bl_header_nav a::before {
  content: "●";
  color: #BE7800;
  font-size: 0.4em;
  margin-bottom: 2em;
}

.bl_header_news {
  position: absolute;
  bottom: 5%;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: 10;
  color: #000;
  background-color: rgba(255, 248, 230, 0.85);
  padding: 10px 25px;
  max-width: 900px;
  width: 50%;
}
@media screen and (max-width: 754px) {
  .bl_header_news {
    width: 90%;
    padding: 5px 15px;
  }
}
.bl_header_news .bl_header_news_link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.bl_header_news .bl_header_news_link:hover .bl_header_news_btn img {
  -webkit-filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(1000%) hue-rotate(0deg);
          filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(1000%) hue-rotate(0deg);
}
.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;
  gap: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 754px) {
  .bl_header_news .bl_header_news_content_fl {
    gap: 15px;
  }
}
.bl_header_news .bl_header_news_category {
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  color: #000;
  white-space: nowrap;
}
.bl_header_news .bl_header_news_divider {
  width: 1px;
  height: 40px;
  background-color: #BE7800;
  opacity: 0.5;
}
.bl_header_news .bl_header_news_title {
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bl_header_news .bl_header_news_btn {
  display: inline-block;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.bl_header_news .bl_header_news_btn .md_arrow {
  width: auto;
}
.bl_header_news .bl_header_news_btn img {
  width: 18px;
  height: auto;
  color: #000;
}

.bl_header_logo_un {
  position: sticky;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-filter: blur(0);
          filter: blur(0); /* 初期値はシャープにしておく（GSAPが制御） */
}
@media screen and (max-width: 754px) {
  .bl_header_logo_un {
    width: 110px;
  }
}
.bl_header_logo_un svg {
  width: 100%;
  height: auto;
  display: block;
}

.bl_header_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.bl_header_overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bl_header--about {
  background-image: url("../img/bl_about_header.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 50vh;
  position: relative;
}

.bl_header_text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.563rem, 0.986rem + 2.37vw, 2.5rem);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.2em;
}

.bl_header--access {
  background-image: url("../img/bl_access_header.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 50vh;
  position: relative;
}

/*---------- mainv ----------*/
.bl_mainv .bl_mainv_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 754px) {
  .bl_mainv .bl_mainv_fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bl_mainv .bl_mainv_fl picture {
  width: 15%;
}
@media screen and (max-width: 754px) {
  .bl_mainv .bl_mainv_fl picture {
    width: 100%;
  }
}
.bl_mainv .bl_mainv_fl picture .bl_mainv_img1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .bl_mainv .bl_mainv_fl picture .bl_mainv_img1 {
    width: 150px;
  }
}
@media screen and (max-width: 754px) {
  .bl_mainv .bl_mainv_fl picture .bl_mainv_img1 {
    width: 100%;
  }
}
.bl_mainv .bl_mainv_fl .bl_mainv_ex {
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
  line-height: 2;
  width: 47%;
}
@media screen and (max-width: 754px) {
  .bl_mainv .bl_mainv_fl .bl_mainv_ex {
    width: 100%;
  }
}
.bl_mainv .bl_mainv_fl .bl_mainv_ex h1 {
  white-space: pre-line;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bl_mainv .bl_mainv_fl .bl_mainv_ex p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2em;
}
@media screen and (max-width: 754px) {
  .bl_mainv .bl_mainv_fl .bl_mainv_ex p {
    text-align: left;
  }
}
.bl_mainv .bl_mainv_fl .bl_mainv_ex .bl_mainv_el_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 100px;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  will-change: clip-path, opacity;
}
@media screen and (max-width: 754px) {
  .bl_mainv .bl_mainv_fl .bl_mainv_ex .bl_mainv_el_fl {
    margin: 20px 0;
    display: block;
    text-align: center;
  }
}
.bl_mainv .bl_mainv_fl .bl_mainv_ex .bl_mainv_el_fl .bl_mainv_el_fl_inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding: 5px 0;
}
.bl_mainv .bl_mainv_fl .bl_mainv_ex .bl_mainv_el_fl .bl_mainv_el_fl_inner .md_arrow {
  background: #BE7800;
}
.bl_mainv .bl_mainv_fl .bl_mainv_img2 {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .bl_mainv .bl_mainv_fl .bl_mainv_img2 {
    -ms-flex-preferred-size: 39%;
        flex-basis: 39%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 754px) {
  .bl_mainv .bl_mainv_fl .bl_mainv_img2 {
    width: 80%;
    height: auto;
    max-width: 100%;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.bl_mainv_img3 {
  width: 95vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*---------- information ----------*/
.bl_info_bg_hp {
  background: #fff;
}

/*section.bl_sec2{
  &::after {
    content: "";
    display: block;
    height: 80px;
    background: radial-gradient(circle at 50% -40px, #fff 40px, transparent 41px);
  }
}*/
.bl_info_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  margin-top: 100px;
}
@media (min-width: 1600px) {
  .bl_info_fl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .bl_info_fl {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media screen and (max-width: 754px) {
  .bl_info_fl {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "img2 ex" ". ex";
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
  }
}
@media screen and (max-width: 754px) {
  .bl_info_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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    position: relative;
  }
}
.bl_info_fl :last-child {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.bl_info_fl .bl_info_img1 {
  width: 100%;
  max-width: 110px;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
@media screen and (max-width: 1024px) {
  .bl_info_fl .bl_info_img1 {
    max-width: 90px;
  }
}
@media screen and (max-width: 754px) {
  .bl_info_fl .bl_info_img1 {
    position: absolute;
    bottom: -50px;
    right: -10px;
    z-index: 10;
    max-width: 70px;
  }
}
.bl_info_fl .bl_info_img1 svg {
  width: 100%;
  height: auto;
  display: block;
}
.bl_info_fl .bl_info_img2 {
  width: 35%;
  min-width: 200px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 1024px) {
  .bl_info_fl .bl_info_img2 {
    grid-area: img2;
    width: 70%;
  }
}
@media screen and (max-width: 754px) {
  .bl_info_fl .bl_info_img2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
.bl_info_fl .bl_info_ex {
  width: 500px;
  max-width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 1024px) {
  .bl_info_fl .bl_info_ex {
    grid-area: ex;
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 754px) {
  .bl_info_fl .bl_info_ex {
    width: 100%;
    margin-bottom: 50px;
    margin-top: -50px;
  }
}
.bl_info_fl .bl_info_ex .bl_info_ex_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
  line-height: 2;
}
@media screen and (max-width: 754px) {
  .bl_info_fl .bl_info_ex .bl_info_ex_fl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.bl_info_fl .bl_info_ex dt {
  width: 6rem;
}
@media screen and (max-width: 1024px) {
  .bl_info_fl .bl_info_ex dt {
    width: auto;
    font-weight: normal;
  }
}
@media screen and (max-width: 754px) {
  .bl_info_fl .bl_info_ex dt {
    width: 17%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-weight: normal;
  }
}
.bl_info_fl .bl_info_ex dd {
  white-space: pre-line;
  max-width: 80%;
}
@media screen and (max-width: 754px) {
  .bl_info_fl .bl_info_ex dd {
    width: 44%;
  }
}
.bl_info_fl .bl_info_ex .bl_info_ex_fl_un {
  margin-bottom: 30px;
}

/*---------- price ----------*/
.bl_price_bg_hp {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

section.bl_price {
  overflow: hidden;
}
section.bl_price .bl_price_img1 {
  margin-top: 100px;
  max-width: 100%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (max-width: 754px) {
  section.bl_price .bl_price_img1 {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}
@media screen and (max-width: 754px) {
  section.bl_price .bl_price_img1 {
    margin-top: 50px;
  }
}
section.bl_price .bl_price_img1 svg {
  width: 100%;
  height: auto;
  display: block;
}
section.bl_price .bl_price_el {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px auto 0;
  height: 70px;
  width: 100%;
  max-width: 400px;
  color: #fff;
  background-color: #BE7800;
  border: none;
  border-radius: 9999px;
  font-size: clamp(0.875rem, 0.721rem + 0.63vw, 1.125rem);
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
section.bl_price .bl_price_el .bl_price_el_text_wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.bl_price .bl_price_el .bl_price_el_text_wrapper .bl_price_btn_text {
  padding-left: 37px;
}
section.bl_price .bl_price_el .md_arrow img {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.bl_price_table .bl_price_table {
  font-size: clamp(0.875rem, 0.644rem + 0.95vw, 1.25rem);
}
.bl_price_table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  table-layout: fixed;
  margin: 100px 0;
}
@media screen and (max-width: 754px) {
  .bl_price_table table {
    margin: 50px 0;
  }
}
.bl_price_table th,
.bl_price_table td {
  border: 1px solid #BE7800;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}
.bl_price_table .hp_vertical_inner {
  white-space: pre-line;
}
@media screen and (max-width: 754px) {
  .bl_price_table .hp_vertical_inner {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
  }
}
.bl_price_table thead th {
  background: #FFF8D7;
  font-weight: normal;
}
.bl_price_table .hp_small {
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
}
.bl_price_table table:first-of-type {
  margin: 50px 0;
}
.bl_price_table table:nth-of-type(2) td:first-child,
.bl_price_table table:nth-of-type(3) td:first-child {
  width: 25%;
}
.bl_price_table .hp_left {
  text-align: left;
}
.bl_price_table table.hp_height th {
  height: 80px;
  padding: inherit;
  font-weight: normal;
}

/*---------- news ----------*/
.bl_news_bg_hp {
  background: #fff;
}

.bl_news_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bl_news_fl .bl_news_img1 {
  width: 100%;
  max-width: 130px;
  display: block;
}
@media screen and (max-width: 754px) {
  .bl_news_fl .bl_news_img1 {
    max-width: 90px;
  }
}
.bl_news_fl .bl_news_img1 svg {
  width: 100%;
  height: auto;
  display: block;
}

.bl_news_fl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 754px) {
  .bl_news_fl2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: 0;
    margin-top: 50px;
    row-gap: 50px;
  }
}
.bl_news_fl2 .bl_news_el {
  width: 80px;
  height: 80px;
  background-color: #b66a00;
  border-radius: 50%;
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
}
.bl_news_fl2 .bl_news_el .bl_news_el_txt {
  display: block;
  z-index: 1;
}

.bl_news_img2 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.bl_news_inner2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 1600px) {
  .bl_news_inner2 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 754px) {
  .bl_news_inner2 {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    width: 70%;
    margin: 0 auto;
  }
}

.bl_news_card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  padding-left: 40px;
}
@media screen and (max-width: 754px) {
  .bl_news_card {
    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;
    text-align: center;
    padding-left: 0;
  }
}
.bl_news_card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 1px;
  height: calc(100% + 20px);
  background-color: #000;
}
@media screen and (max-width: 754px) {
  .bl_news_card::before {
    display: none;
  }
}
.bl_news_card:last-child::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 1px;
  height: calc(100% + 20px);
  background-color: #000;
}
@media screen and (max-width: 754px) {
  .bl_news_card:last-child::after {
    display: none;
  }
}
.bl_news_card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.bl_news_thumb {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 754px) {
  .bl_news_thumb {
    width: 70%;
    margin-bottom: 20px;
  }
}
.bl_news_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.bl_news_inner_in {
  margin-top: 20px;
}
@media screen and (max-width: 754px) {
  .bl_news_inner_in {
    margin-top: 0;
  }
}

.news_title {
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  font-weight: normal;
  margin-top: 4px;
}

/*---------- facility ----------*/
.bl_facility .bl_facility_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.bl_facility .bl_facility_fl .bl_facility_img1 {
  width: 100%;
  max-width: 120px;
}
@media screen and (max-width: 1024px) {
  .bl_facility .bl_facility_fl .bl_facility_img1 {
    width: 100px;
  }
}
@media screen and (max-width: 754px) {
  .bl_facility .bl_facility_fl .bl_facility_img1 {
    width: 80px;
  }
}
.bl_facility .bl_facility_fl svg {
  width: 100%;
  height: auto;
  display: block;
}
.bl_facility table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  table-layout: fixed;
  margin: 100px 0;
}
.bl_facility table span {
  display: block;
}
.bl_facility th,
.bl_facility td {
  border: 1px solid #BE7800;
  padding: 40px;
  text-align: left;
  vertical-align: middle;
  line-height: 2;
}
@media screen and (max-width: 754px) {
  .bl_facility th,
  .bl_facility td {
    padding: 20px;
  }
}
.bl_facility table:first-of-type {
  margin: 50px 0;
}
.bl_facility .hp_left {
  text-align: center;
  width: 20%;
}
@media screen and (max-width: 754px) {
  .bl_facility .hp_vertical_inner {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
  }
}
.bl_facility table.hp_height th {
  height: 80px;
  padding: inherit;
}
.bl_facility .bl_facility_fl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: top;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 150px;
}
@media screen and (max-width: 754px) {
  .bl_facility .bl_facility_fl2 {
    -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: 50px;
  }
}
.bl_facility .bl_facility_fl2 img.bl_facility_img2 {
  margin-left: 100px;
}
@media screen and (max-width: 754px) {
  .bl_facility .bl_facility_fl2 img.bl_facility_img2 {
    width: 100%;
    margin-left: 0;
  }
}
.bl_facility .bl_facility_fl3 {
  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;
  margin-left: 25px;
}
@media screen and (max-width: 754px) {
  .bl_facility .bl_facility_fl3 {
    margin-left: 0;
  }
}
.bl_facility .bl_facility_fl3 .bl_facility_fl3_en {
  border-bottom: 1px solid #BE7800;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  white-space: nowrap;
}
.bl_facility .bl_facility_fl3 .bl_facility_fl3_ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: normal;
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  color: #000;
  white-space: nowrap;
  line-break: strict;
  word-break: keep-all;
  display: inline-block;
}
.bl_facility .bl_sec5_img2 {
  width: 100%;
}

.loopSlide {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
}
.loopSlide ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 200vw;
}
@media screen and (max-width: 1024px) {
  .loopSlide ul {
    min-width: 250vw;
  }
}
@media screen and (max-width: 754px) {
  .loopSlide ul {
    min-width: 320vw;
  }
}
.loopSlide ul:first-child {
  -webkit-animation: slide1 260s -130s linear infinite;
          animation: slide1 260s -130s linear infinite;
}
.loopSlide ul:last-child {
  -webkit-animation: slide2 260s linear infinite;
          animation: slide2 260s linear infinite;
}
.loopSlide ul li {
  display: inline-block;
  width: 100%;
  margin-right: 15px;
  text-align: center;
}
@media screen and (max-width: 754px) {
  .loopSlide ul li {
    margin-right: 10px;
  }
}
.loopSlide ul li img {
  display: block;
  width: 100%;
  height: auto;
}

@-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%);
  }
}
/*---------- footer ----------*/
footer {
  position: relative;
  background-image: url(../img/bl_footer_bg.jpg);
  background-size: cover;
  background-position: bottom;
  color: #fff;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 100vh;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
}
@media (min-width: 1165px) {
  footer {
    min-height: 130vh;
  }
}
@media screen and (max-width: 754px) {
  footer {
    min-height: 60vh;
    font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  }
}
footer .bl_footer {
  padding: 100px 0;
}
@media screen and (max-width: 754px) {
  footer .bl_footer {
    padding: 15px 0;
  }
}
footer .bl_footer .bl_footer_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 754px) {
  footer .bl_footer .bl_footer_fl {
    -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;
    row-gap: 20px;
    padding-top: 80px;
  }
}
footer .bl_footer .bl_footer_fl .bl_footer_logo {
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 1024px) {
  footer .bl_footer .bl_footer_fl .bl_footer_logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 754px) {
  footer .bl_footer .bl_footer_fl .bl_footer_logo {
    max-width: 150px;
    position: absolute;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
footer .bl_footer .bl_footer_fl .bl_footer_logo svg {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 754px) {
  footer .bl_footer .bl_footer_fl .bl_footer_txt {
    text-align: center;
  }
}
footer .bl_footer .bl_footer_fl .bl_footer_txt span {
  display: block;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  footer .bl_footer .bl_footer_fl .bl_footer_txt span {
    white-space: pre-line;
  }
}
@media screen and (max-width: 754px) {
  footer .bl_footer .bl_footer_fl .bl_footer_txt span {
    white-space: inherit;
  }
}
footer .bl_footer .bl_footer_fl .bl_footer_menu .bl_footer_gl {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  gap: 1em;
  max-width: 600px;
}
footer .bl_footer .bl_footer_fl .bl_footer_menu a {
  position: relative;
}
footer .bl_footer .bl_footer_fl .bl_footer_menu a::before {
  content: "●";
  color: #BE7800;
  font-size: 0.6em;
  margin-right: 1em;
}
footer .bl_footer_sen {
  max-width: 100%;
  margin: 75px 0 20px 0;
}
@media screen and (max-width: 754px) {
  footer .bl_footer_sen {
    margin: 30px 0 10px 0;
  }
}
footer .bl_footer_sen svg {
  width: 100%;
  height: auto;
  display: block;
}
footer .bl_footer_copy {
  text-align: center;
  font-size: 12px;
}

.md_header_hp {
  position: relative;
  height: 40vh;
  overflow: hidden;
  background: url("../img/bl_md_header.jpg") center 70%/cover no-repeat;
}

.md_header_hp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(200, 180, 140, 0.3); /* 温かみのある薄茶色の透過 */
  z-index: 1;
}

/* 中身は前面に */
.md_header_hp > * {
  position: relative;
  z-index: 2;
}

/*---------- news ----------*/
.bl_news_heading {
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  text-align: center;
  margin-bottom: 40px;
}

.bl_news_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.bl_news_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  padding: 15px 40px;
}
@media screen and (max-width: 1024px) {
  .bl_news_card {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 754px) {
  .bl_news_card {
    padding: 0;
  }
}
.bl_news_card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.bl_news_card .bl_news_thumb {
  width: 100%;
  aspect-ratio: 1/1; /* 横:縦の比率。例：4:3（任意で調整） */
  overflow: hidden;
  border-radius: 12px;
}
.bl_news_card .bl_news_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* トリミングして枠内に収める */
  display: block;
}
.bl_news_card .bl_news_inner_in .news_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  color: #888;
}
.bl_news_card .bl_news_inner_in .news_meta .news_category {
  font-weight: normal;
  color: #666;
}
.bl_news_card .bl_news_inner_in .news_title {
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .bl_news_list {
    grid-template-columns: 1fr;
  }
}
.bl_news_pagination {
  margin-top: 40px;
  text-align: center;
}
.bl_news_pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bl_news_pagination .page-numbers.current {
  background: #333;
  color: #fff;
  font-weight: normal;
}
.bl_news_pagination .page-numbers:hover {
  background: #666;
  color: #fff;
}

.md_common_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px;
}
.md_common_list .el_common_list_btn, .md_common_list .bl_common_list_now {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 12px;
}
.md_common_list .el_common_list_btn .fa-home-lg:before, .md_common_list .el_common_list_btn .fa-house-chimney:before, .md_common_list .bl_common_list_now .fa-home-lg:before, .md_common_list .bl_common_list_now .fa-house-chimney:before {
  color: #000;
}
.md_common_list .el_common_list_btn .fa-angle-right:before, .md_common_list .bl_common_list_now .fa-angle-right:before {
  margin-left: 5px;
}

.ly_news {
  width: 90%;
  margin: auto;
  padding: 60px 0;
}
.ly_news .bl_post_article .bl_post_category {
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  color: #999;
  margin-bottom: 10px;
}
.ly_news .bl_post_article .bl_post_title {
  font-size: clamp(1rem, 0.654rem + 1.42vw, 1.563rem);
  font-weight: normal;
  margin-bottom: 10px;
}
.ly_news .bl_post_article .bl_post_date {
  font-size: clamp(0.75rem, 0.673rem + 0.32vw, 0.875rem);
  color: #aaa;
  margin-bottom: 20px;
  display: block;
}
.ly_news .bl_post_article .bl_post_thumbnail {
  margin-bottom: 20px;
}
.ly_news .bl_post_article .bl_post_thumbnail img {
  width: 100%;
  height: auto;
}
.ly_news .bl_post_article .bl_post_content {
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  color: #333;
}
.ly_news .bl_post_article .bl_post_content p {
  margin-bottom: 1.5em;
}

.bl_news_sidebar {
  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-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.bl_news_archive {
  border-radius: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bl_news_archive_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.bl_news_archive_list li {
  margin-bottom: 20px;
}

.bl_news_archive_list a.el_btn {
  display: block;
  background-color: #fff;
  border: 1px solid #bba882; /* 柔らかい和風の枠線色 */
  border-radius: 6px;
  padding: 12px 8px;
  text-decoration: none;
  color: #333;
  font-size: clamp(0.875rem, 0.798rem + 0.32vw, 1rem);
  text-align: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.bl_news_archive_list a.el_btn:hover {
  background-color: #e6dfd3; /* 和紙風のホバー色 */
  color: #a6360b; /* 和風朱色 */
}

/*---------- 工事中 ----------*/
.maintenance-page {
  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;
  min-height: 60vh;
  background-color: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.maintenance-inner {
  max-width: 600px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.maintenance-inner h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.maintenance-inner p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}/*# sourceMappingURL=style.css.map */