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

body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
:root {
  --color-white: #fff;
  --color-black: #222;
  --color-text: #333;
  --color-gray: #dbdbdb;
  --color-grayLight: #fafafa;
  --color-grayDark: #6b6b6b;
  --craft-dark: #475569;
  --craft-darkBlue: #454F5E;
  --craft-deepBlack: #0D0614;
  --craft-olive: #557063;
  --craft-oliveLight: #89ae90;
  --craft-oliveMid: #4d6050;
  --craft-oliveSoft: #9fbca4;
  --craft-beige: #e8e2da;
  --craft-grayLight: #eaeaea;
  --craft-grayMid: #a2a9a2;
  --craft-grayBorder: #c4c4c4;
  --craft-textMute: #7A7A7A;
  --craft-overlay: rgba(0, 0, 0, 0.3);
  --color-accent: #edd072;
  --color-sub: #e8e2da;
  --color-body-bg: var(--craft-dark);
  --color-text-mute: var(--craft-grayMid);
  --color-section-alt: var(--craft-olive);
  --color-cta-bg: var(--craft-olive);
  --color-header-bg: transparent; /* PC左固定ナビ用 */
  --color-footer-bg: var(--craft-dark);
  --color-footer-text: var(--color-white);
  --color-link: var(--color-accent);
  --color-link-hover: var(--craft-oliveSoft);
  --fontsize-xxl: 2.5rem;
  --fontsize-xl: 1.875rem;
  --fontsize-l: 1.25rem;
  --fontsize-m: 1rem;
  --fontsize-s: 0.875rem;
  --fontsize-xs: 0.75rem;
  --navFixed-width: 220px;
  --navMobile-height: 60px;
  --spacing-scale: 1;
}

@media (max-width: 479px) {
  :root {
    --spacing-scale: 0.65;
  }
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  html {
    font-size: 12px;
  }
}

body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: var(--fontsize-m);
  line-height: 2;
  color: var(--color-white);
  background: var(--color-body-bg);
}

a {
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-link-hover);
}

.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.ly_main {
  display: block;
}
@media screen and (min-width: 897px) {
  .ly_main {
    margin-left: var(--navFixed-width);
  }
}
@media screen and (max-width: 896px) {
  .ly_main {
    margin-left: 0;
    padding-top: var(--navMobile-height);
  }
}

.mt-40 {
  margin-top: calc(2.5rem * var(--spacing-scale));
}

.mb-40 {
  margin-bottom: calc(2.5rem * var(--spacing-scale));
}

.ml-40 {
  margin-left: calc(2.5rem * var(--spacing-scale));
}

.mr-40 {
  margin-right: calc(2.5rem * var(--spacing-scale));
}

.pt-40 {
  padding-top: calc(2.5rem * var(--spacing-scale));
}

.pb-40 {
  padding-bottom: calc(2.5rem * var(--spacing-scale));
}

.mt-60 {
  margin-top: calc(3.75rem * var(--spacing-scale));
}

.mb-60 {
  margin-bottom: calc(3.75rem * var(--spacing-scale));
}

.ml-60 {
  margin-left: calc(3.75rem * var(--spacing-scale));
}

.mr-60 {
  margin-right: calc(3.75rem * var(--spacing-scale));
}

.pt-60 {
  padding-top: calc(3.75rem * var(--spacing-scale));
}

.pb-60 {
  padding-bottom: calc(3.75rem * var(--spacing-scale));
}

.mt-80 {
  margin-top: calc(5rem * var(--spacing-scale));
}

.mb-80 {
  margin-bottom: calc(5rem * var(--spacing-scale));
}

.ml-80 {
  margin-left: calc(5rem * var(--spacing-scale));
}

.mr-80 {
  margin-right: calc(5rem * var(--spacing-scale));
}

.pt-80 {
  padding-top: calc(5rem * var(--spacing-scale));
}

.pb-80 {
  padding-bottom: calc(5rem * var(--spacing-scale));
}

.mt-120 {
  margin-top: calc(7.5rem * var(--spacing-scale));
}

.mb-120 {
  margin-bottom: calc(7.5rem * var(--spacing-scale));
}

.ml-120 {
  margin-left: calc(7.5rem * var(--spacing-scale));
}

.mr-120 {
  margin-right: calc(7.5rem * var(--spacing-scale));
}

.pt-120 {
  padding-top: calc(7.5rem * var(--spacing-scale));
}

.pb-120 {
  padding-bottom: calc(7.5rem * var(--spacing-scale));
}

.mt-140 {
  margin-top: calc(8.75rem * var(--spacing-scale));
}

.mb-140 {
  margin-bottom: calc(8.75rem * var(--spacing-scale));
}

.ml-140 {
  margin-left: calc(8.75rem * var(--spacing-scale));
}

.mr-140 {
  margin-right: calc(8.75rem * var(--spacing-scale));
}

.pt-140 {
  padding-top: calc(8.75rem * var(--spacing-scale));
}

.pb-140 {
  padding-bottom: calc(8.75rem * var(--spacing-scale));
}

.mt-160 {
  margin-top: calc(10rem * var(--spacing-scale));
}

.mb-160 {
  margin-bottom: calc(10rem * var(--spacing-scale));
}

.ml-160 {
  margin-left: calc(10rem * var(--spacing-scale));
}

.mr-160 {
  margin-right: calc(10rem * var(--spacing-scale));
}

.pt-160 {
  padding-top: calc(10rem * var(--spacing-scale));
}

.pb-160 {
  padding-bottom: calc(10rem * var(--spacing-scale));
}

.mt-170 {
  margin-top: calc(10.625rem * var(--spacing-scale));
}

.mb-170 {
  margin-bottom: calc(10.625rem * var(--spacing-scale));
}

.ml-170 {
  margin-left: calc(10.625rem * var(--spacing-scale));
}

.mr-170 {
  margin-right: calc(10.625rem * var(--spacing-scale));
}

.pt-170 {
  padding-top: calc(10.625rem * var(--spacing-scale));
}

.pb-170 {
  padding-bottom: calc(10.625rem * var(--spacing-scale));
}

.mt-200 {
  margin-top: calc(12.5rem * var(--spacing-scale));
}

.mb-200 {
  margin-bottom: calc(12.5rem * var(--spacing-scale));
}

.ml-200 {
  margin-left: calc(12.5rem * var(--spacing-scale));
}

.mr-200 {
  margin-right: calc(12.5rem * var(--spacing-scale));
}

.pt-200 {
  padding-top: calc(12.5rem * var(--spacing-scale));
}

.pb-200 {
  padding-bottom: calc(12.5rem * var(--spacing-scale));
}

.mt-240 {
  margin-top: calc(15rem * var(--spacing-scale));
}

.mb-240 {
  margin-bottom: calc(15rem * var(--spacing-scale));
}

.ml-240 {
  margin-left: calc(15rem * var(--spacing-scale));
}

.mr-240 {
  margin-right: calc(15rem * var(--spacing-scale));
}

.pt-240 {
  padding-top: calc(15rem * var(--spacing-scale));
}

.pb-240 {
  padding-bottom: calc(15rem * var(--spacing-scale));
}

@media screen and (min-width: 481px) and (max-width: 1240px) {
  .hp_sp {
    display: none !important;
  }
}

@media screen and (min-width: 897px) and (max-width: 1240px) {
  .hp_sp-tab {
    display: none !important;
  }
}

@media screen and (max-width: 896px) {
  .hp_pc {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .hp_tab {
    display: none !important;
  }
}
@media screen and (min-width: 897px) and (max-width: 1240px) {
  .hp_tab {
    display: none !important;
  }
}

.hp_tac {
  text-align: center;
}

.hp_tal {
  text-align: left;
}

.hp_tar {
  text-align: right;
}

.hp_fwB {
  font-weight: 500;
}

.hp_wsnw {
  white-space: nowrap;
}

.bl_navFixed {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--navFixed-width);
  height: 100vh;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 2.5rem 1.5rem;
  background: var(--craft-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.bl_navFixed_logo {
  display: block;
  margin-bottom: 3rem;
  text-align: center;
}
.bl_navFixed_logo a {
  display: block;
  width: 100%;
}
.bl_navFixed_logo img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  aspect-ratio: 537.22/56;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
.bl_navFixed_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}
.bl_navFixed_list li {
  text-align: center;
}
.bl_navFixed_list a {
  display: inline-block;
  position: relative;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}
.bl_navFixed_list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.bl_navFixed_list a:hover, .bl_navFixed_list a.is-current {
  color: var(--color-accent);
}
.bl_navFixed_list a:hover::after, .bl_navFixed_list a.is-current::after {
  width: 100%;
}
.bl_navFixed_cta {
  margin-top: 1.5rem;
  text-align: center;
}
.bl_navFixed_cta .el_btn--outline {
  min-width: 0;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.bl_navMobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navMobile-height);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 0 1.25rem;
  background: var(--craft-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bl_navMobile_logo {
  display: inline-flex;
  align-items: center;
}
.bl_navMobile_logo img {
  height: 24px;
  width: auto;
  aspect-ratio: 537.22/56;
  filter: brightness(0) invert(1);
}
.bl_navMobile_burger {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.bl_navMobile_burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.bl_navMobile_burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.bl_navMobile_burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.bl_navMobile_burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.bl_navMobile_panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: var(--craft-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--navMobile-height) 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.bl_navMobile_panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.bl_navMobile_panel ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.bl_navMobile_panel li {
  opacity: 0;
  transform: translateY(-16px);
}
.bl_navMobile_panel[aria-hidden=false] li {
  animation: bl_navMobile_itemIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.bl_navMobile_panel[aria-hidden=false] li:nth-child(1) {
  animation-delay: 0.2s;
}
.bl_navMobile_panel[aria-hidden=false] li:nth-child(2) {
  animation-delay: 0.28s;
}
.bl_navMobile_panel[aria-hidden=false] li:nth-child(3) {
  animation-delay: 0.36s;
}
.bl_navMobile_panel[aria-hidden=false] li:nth-child(4) {
  animation-delay: 0.44s;
}
.bl_navMobile_panel[aria-hidden=false] li:nth-child(5) {
  animation-delay: 0.52s;
}
.bl_navMobile_panel[aria-hidden=false] li:nth-child(6) {
  animation-delay: 0.6s;
}
.bl_navMobile_panel[aria-hidden=false] li:nth-child(n+7) {
  animation-delay: 0.68s;
}
.bl_navMobile_panel a {
  position: relative;
  display: inline-block;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  padding: 0.2rem 0.1rem;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.bl_navMobile_panel a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.bl_navMobile_panel a:hover, .bl_navMobile_panel a.is-current {
  color: var(--color-accent);
  letter-spacing: 0.22em;
}
.bl_navMobile_panel a:hover::after, .bl_navMobile_panel a.is-current::after {
  width: 100%;
}

@keyframes bl_navMobile_itemIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.is-navOpen {
  overflow: hidden;
}

.bl_footer-craft {
  background: var(--craft-dark);
  color: var(--color-white);
  padding: 5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media screen and (max-width: 479px) {
  .bl_footer-craft {
    padding: 3rem 0 1.5rem;
  }
}
.bl_footer-craft_inner {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.bl_footer-craft_logo img {
  height: 32px;
  width: auto;
  aspect-ratio: 537.22/56;
  filter: brightness(0) invert(1);
}
.bl_footer-craft_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.bl_footer-craft_nav a {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.bl_footer-craft_nav a:hover {
  color: var(--color-accent);
}
@media screen and (max-width: 479px) {
  .bl_footer-craft_nav {
    gap: 0.5rem 1.25rem;
  }
}
.bl_footer-craft_social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.bl_footer-craft_social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.bl_footer-craft_social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--craft-dark);
}
.bl_footer-craft_copyright {
  margin-top: 3rem;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: var(--fontsize-xs);
  letter-spacing: 0.1em;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.bl_container {
  position: relative;
  width: 100%;
}
.bl_container_inner {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4%;
  padding-right: 4%;
}
.bl_container.__dark {
  background: var(--craft-darkBlue);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 479px) {
  .bl_container.__dark {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.bl_container.__olive {
  background: var(--craft-olive);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 479px) {
  .bl_container.__olive {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.bl_breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--fontsize-s);
  letter-spacing: 0.1em;
  color: var(--craft-grayMid);
}
.bl_breadcrumbs a {
  color: var(--color-white);
  transition: color 0.3s ease;
}
.bl_breadcrumbs a:hover {
  color: var(--color-accent);
}
.bl_breadcrumbs_sep {
  color: var(--craft-grayMid);
  user-select: none;
}
.bl_breadcrumbs_current {
  color: var(--craft-grayMid);
}

.bl_heading_en {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--color-white);
}
.bl_heading_en em {
  font-style: italic;
  font-weight: 300;
  color: var(--craft-oliveSoft);
}

.bl_heading_sub {
  display: inline-flex;
  align-items: center;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--fontsize-s);
  letter-spacing: 0.15em;
  line-height: 1.5;
  color: var(--color-accent);
}
.bl_heading_sub::before, .bl_heading_sub::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  margin: 0 0.8em;
}

.bl_label {
  display: inline-block;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  padding: 0.3em 1em;
  color: var(--color-accent);
  background: var(--craft-dark);
  border: 1px solid var(--color-accent);
}

.bl_fv-craft {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--craft-deepBlack);
}
@media screen and (max-width: 479px) {
  .bl_fv-craft {
    height: 80vh;
    min-height: 480px;
  }
}
.bl_fv-craft_bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bl_fv-craft_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: bl_fv-craft_zoom 14s ease-out forwards;
}
.bl_fv-craft_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.55) 100%);
}
.bl_fv-craft_inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}
.bl_fv-craft_logo {
  display: inline-block;
  max-width: 480px;
  width: 70%;
  opacity: 0;
  animation: bl_fv-craft_fadeIn 1.4s ease 0.2s forwards;
}
@media screen and (max-width: 896px) {
  .bl_fv-craft_logo {
    width: 80%;
    max-width: 360px;
  }
}
.bl_fv-craft_logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 404.65/131.36;
  filter: brightness(0) invert(1);
}
.bl_fv-craft_catch {
  margin-top: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.2em;
  line-height: 1.8;
  color: var(--color-white);
  opacity: 0;
  animation: bl_fv-craft_fadeIn 1.4s ease 0.8s forwards;
}

@keyframes bl_fv-craft_fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bl_fv-craft_zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.bl_pickup_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.bl_pickup_more {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--fontsize-s);
  letter-spacing: 0.1em;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.bl_pickup_more:hover {
  color: var(--color-accent);
}
.bl_pickup_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .bl_pickup_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .bl_pickup_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.bl_pickup_card {
  background: var(--craft-darkBlue);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bl_pickup_card > a {
  display: block;
  padding: 0 0 1.5rem;
  color: var(--color-white);
}
.bl_pickup_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.bl_pickup_card:hover .bl_pickup_img img {
  transform: scale(1.06);
}
.bl_pickup_img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.bl_pickup_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bl_pickup_card .bl_label {
  margin: 0 1.5rem;
}
.bl_pickup_ttl {
  margin: 0.75rem 1.5rem 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-white);
}
.bl_pickup_meta {
  margin: 0.75rem 1.5rem 0;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--fontsize-s);
  letter-spacing: 0.05em;
  color: var(--craft-grayMid);
}

.bl_point_inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 380px;
}
@media screen and (max-width: 896px) {
  .bl_point_inner {
    flex-direction: column;
    gap: 1.5rem;
    min-height: 0;
  }
}
.bl_point_img {
  flex: 0 0 58%;
  max-width: 58%;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  z-index: 1;
}
.bl_point_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 896px) {
  .bl_point_img {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
}
.bl_point_body {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: -8%;
  padding: 3rem 2.5rem;
  background: var(--craft-darkBlue);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 896px) {
  .bl_point_body {
    margin-left: 0;
    padding: 2rem 1.5rem;
    width: 100%;
  }
}
.bl_point:hover .bl_point_img img {
  transform: scale(1.04);
}
.bl_point_ttl {
  margin-top: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.7;
  color: var(--color-white);
}
.bl_point_text {
  margin-top: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: var(--fontsize-m);
  line-height: 2;
  color: var(--color-white);
}
.bl_point_body .el_btn--outline {
  margin-top: 2rem;
}
.bl_point.__rev .bl_point_inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 896px) {
  .bl_point.__rev .bl_point_inner {
    flex-direction: column;
  }
}
.bl_point.__rev .bl_point_body {
  margin-left: 0;
  margin-right: -8%;
}
@media screen and (max-width: 896px) {
  .bl_point.__rev .bl_point_body {
    margin-right: 0;
  }
}

.bl_quickLinks {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .bl_quickLinks {
    flex-direction: column;
  }
}
.bl_quickLinks_item {
  position: relative;
  flex: 1 1 50%;
  aspect-ratio: 16/9;
  overflow: hidden;
  color: var(--color-white);
}
@media screen and (max-width: 479px) {
  .bl_quickLinks_item {
    aspect-ratio: 16/10;
  }
}
.bl_quickLinks_item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.bl_quickLinks_item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(13, 6, 20, 0.45);
  transition: background 0.4s ease;
}
.bl_quickLinks_item:hover img {
  transform: scale(1.06);
}
.bl_quickLinks_item:hover::before {
  background: rgba(13, 6, 20, 0.25);
}
.bl_quickLinks_item:hover .bl_quickLinks_label {
  transform: translate(-50%, -52%);
  letter-spacing: 0.32em;
}
.bl_quickLinks_item:hover .bl_quickLinks_label::after {
  width: 60px;
}
.bl_quickLinks_label {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  letter-spacing: 0.28em;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, letter-spacing 0.4s ease;
}
.bl_quickLinks_label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 0.6rem auto 0;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

.bl_about-craft {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
}
@media screen and (max-width: 896px) {
  .bl_about-craft {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.bl_about-craft_inner {
  min-width: 0;
}
.bl_about-craft_lead {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  line-height: 1.9;
  color: var(--color-white);
}
.bl_about-craft_text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: var(--fontsize-m);
  line-height: 2;
  color: var(--color-white);
}
.bl_about-craft_btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.bl_about-craft_btns .el_btn--outline {
  min-width: 160px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
}
.bl_about-craft_gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
@media screen and (max-width: 479px) {
  .bl_about-craft_gallery {
    gap: 0.75rem;
  }
}
.bl_about-craft_gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bl_about-craft_gallery img:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
  aspect-ratio: 3/4;
}
.bl_about-craft_gallery img:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
  aspect-ratio: 1/1;
}
.bl_about-craft_gallery img:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
  aspect-ratio: 1/1;
}

.bl_customerVoice {
  background: var(--craft-olive);
  padding: 6rem 0;
}
@media screen and (max-width: 479px) {
  .bl_customerVoice {
    padding: 4rem 0;
  }
}
.bl_customerVoice_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.bl_customerVoice_more {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--fontsize-s);
  letter-spacing: 0.1em;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.bl_customerVoice_more:hover {
  color: var(--color-accent);
}
.bl_customerVoice_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .bl_customerVoice_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .bl_customerVoice_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.bl_customerVoice_card {
  background: var(--craft-darkBlue);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bl_customerVoice_card > a {
  display: block;
  padding: 0 0 1.5rem;
  color: var(--color-white);
}
.bl_customerVoice_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.bl_customerVoice_card:hover .bl_pickup_img img {
  transform: scale(1.06);
}

.bl_cta-craft {
  background: var(--craft-olive);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 479px) {
  .bl_cta-craft {
    padding: 2.5rem 0;
  }
}
.bl_cta-craft_inner {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .bl_cta-craft_inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.bl_cta-craft_label {
  flex: 0 1 auto;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--color-white);
}
.bl_cta-craft_tel {
  flex: 0 1 auto;
  text-align: center;
  color: var(--color-white);
}
.bl_cta-craft_number {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--color-white);
}
.bl_cta-craft_hours {
  margin-top: 0.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: var(--fontsize-s);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}
.bl_cta-craft .el_btn--outline {
  flex: 0 0 auto;
  min-width: 180px;
  background: transparent;
  border-color: var(--color-white);
}
.bl_cta-craft .el_btn--outline:hover {
  background: var(--color-white);
  color: var(--craft-olive);
}

.bl_kv-craft {
  position: relative;
  width: 100%;
  height: 400px;
  min-height: 320px;
  overflow: hidden;
  background: var(--craft-deepBlack);
}
@media screen and (max-width: 896px) {
  .bl_kv-craft {
    height: 340px;
    min-height: 280px;
  }
}
@media screen and (max-width: 479px) {
  .bl_kv-craft {
    height: 280px;
  }
}
.bl_kv-craft_bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bl_kv-craft_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: bl_kv-craft_zoom 12s ease-out both;
}
.bl_kv-craft_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.55) 100%);
  animation: bl_kv-craft_overlayFade 1.6s ease-out both;
}
.bl_kv-craft_inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.bl_kv-craft_ttl {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.18em;
  line-height: 1.1;
  color: var(--color-white);
  text-transform: uppercase;
  animation: bl_kv-craft_titleIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both, bl_kv-craft_titleSpace 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
.bl_kv-craft_sub {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: var(--fontsize-s);
  letter-spacing: 0.3em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  animation: bl_kv-craft_subIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}
.bl_kv-craft_sub::before, .bl_kv-craft_sub::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 0.9em;
  transform: scaleX(0);
  animation: bl_kv-craft_lineGrow 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.4s both;
}
.bl_kv-craft_sub::before {
  transform-origin: right center;
}
.bl_kv-craft_sub::after {
  transform-origin: left center;
}

@keyframes bl_kv-craft_zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
@keyframes bl_kv-craft_overlayFade {
  from {
    opacity: 1.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes bl_kv-craft_titleIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bl_kv-craft_titleSpace {
  from {
    letter-spacing: 0.08em;
  }
  to {
    letter-spacing: 0.18em;
  }
}
@keyframes bl_kv-craft_subIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bl_kv-craft_lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.bl_message_text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: var(--color-white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bl_pointList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .bl_pointList {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.bl_pointList_item {
  position: relative;
  padding: 2.5rem 1.75rem 2rem;
  background: var(--craft-darkBlue);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid var(--color-accent);
}
.bl_pointList_num {
  display: inline-block;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-accent);
}
.bl_pointList_ttl {
  margin-top: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-white);
}
.bl_pointList_text {
  margin-top: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: var(--fontsize-m);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.bl_dl-company {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.bl_dl-company_row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 896px) {
  .bl_dl-company_row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }
}
.bl_dl-company_row dt {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 500;
  font-size: var(--fontsize-s);
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.bl_dl-company_row dd {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-white);
}

.bl_access {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.bl_access iframe {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: grayscale(0.2) brightness(0.85);
}
@media screen and (max-width: 479px) {
  .bl_access iframe {
    height: 280px;
  }
}
.bl_access_text {
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.bl_newsList {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bl_newsList_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bl_newsList_link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  color: var(--color-white);
  transition: background 0.3s ease, padding 0.3s ease;
}
.bl_newsList_link:hover {
  background: rgba(255, 255, 255, 0.03);
  padding-left: 1.25rem;
}
.bl_newsList_link:hover .bl_newsList_ttl {
  color: var(--color-accent);
}
@media screen and (max-width: 479px) {
  .bl_newsList_link {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
}
.bl_newsList_date {
  flex: 0 0 auto;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--fontsize-s);
  letter-spacing: 0.08em;
  color: var(--craft-grayMid);
  min-width: 6em;
}
.bl_newsList_link .bl_label {
  flex: 0 0 auto;
  min-width: 6em;
  text-align: center;
}
.bl_newsList_ttl {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-white);
  transition: color 0.3s ease;
}
@media screen and (max-width: 479px) {
  .bl_newsList_ttl {
    flex-basis: 100%;
  }
}

.bl_newsArticle_head {
  text-align: left;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.bl_newsArticle_meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bl_newsArticle_date {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--fontsize-s);
  letter-spacing: 0.1em;
  color: var(--craft-grayMid);
}
.bl_newsArticle_ttl {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.bl_newsArticle_eyecatch {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.bl_newsArticle_eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}
.bl_newsArticle_body {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-white);
  letter-spacing: 0.03em;
}
.bl_newsArticle_body > * + * {
  margin-top: 1.5rem;
}
.bl_newsArticle_body h2 {
  margin-top: 3rem;
  padding-bottom: 0.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.bl_newsArticle_body h3 {
  margin-top: 2.25rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-white);
}
.bl_newsArticle_body ul, .bl_newsArticle_body ol {
  padding-left: 1.5em;
}
.bl_newsArticle_body ul li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}
.bl_newsArticle_body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 0.4em;
  height: 1px;
  background: var(--color-accent);
}
.bl_newsArticle_body ol {
  list-style: decimal;
}
.bl_newsArticle_body ol li {
  padding-left: 0.25em;
}
.bl_newsArticle_body blockquote {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--color-accent);
  background: rgba(255, 255, 255, 0.04);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}
.bl_newsArticle_body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bl_newsArticle_body a:hover {
  color: var(--craft-oliveSoft);
}
.bl_newsArticle_body img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 2rem;
}
.bl_newsArticle_nav {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 479px) {
  .bl_newsArticle_nav {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "prev next" "back back";
    gap: 1rem;
  }
}
.bl_newsArticle_nav a {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--fontsize-s);
  letter-spacing: 0.12em;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.bl_newsArticle_nav a:hover {
  color: var(--color-accent);
}
.bl_newsArticle_nav_prev {
  text-align: left;
}
@media screen and (max-width: 479px) {
  .bl_newsArticle_nav_prev {
    grid-area: prev;
  }
}
.bl_newsArticle_nav_next {
  text-align: right;
}
@media screen and (max-width: 479px) {
  .bl_newsArticle_nav_next {
    grid-area: next;
  }
}
.bl_newsArticle_nav_back {
  justify-self: center;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--color-white);
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.bl_newsArticle_nav_back:hover {
  background: var(--color-white);
  color: var(--craft-dark);
}
@media screen and (max-width: 479px) {
  .bl_newsArticle_nav_back {
    grid-area: back;
    justify-self: stretch;
    text-align: center;
  }
}

.bl_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.bl_pagination_item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.85rem;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.bl_pagination_item:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--craft-dark);
}
.bl_pagination_item.is-current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--craft-dark);
  pointer-events: none;
}
.bl_pagination_next, .bl_pagination_prev {
  letter-spacing: 0.12em;
}

.bl_form {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.bl_form_row {
  margin-bottom: 2rem;
}
.bl_form_label {
  display: block;
  margin-bottom: 0.65rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
}
.bl_form_required {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.15em 0.6em;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--craft-dark);
  background: var(--color-accent);
  vertical-align: middle;
}
.bl_form_input, .bl_form_select, .bl_form_textarea {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.bl_form_input::placeholder, .bl_form_select::placeholder, .bl_form_textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.bl_form_input:focus, .bl_form_select:focus, .bl_form_textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(237, 208, 114, 0.18);
}
.bl_form_textarea {
  resize: vertical;
  min-height: 160px;
}
.bl_form_select {
  background-image: linear-gradient(45deg, transparent 50%, var(--color-white) 50%), linear-gradient(135deg, var(--color-white) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.bl_form_select option {
  color: var(--craft-dark);
  background: var(--color-white);
}
.bl_form_privacy {
  text-align: center;
  margin-top: 2.5rem;
}
.bl_form_checkboxLabel {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  cursor: pointer;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-white);
}
.bl_form_checkboxLabel a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bl_form_checkboxLabel a:hover {
  color: var(--craft-oliveSoft);
}
.bl_form_checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-white);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.bl_form_checkbox:checked {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.bl_form_checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--craft-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.bl_form_checkbox:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.bl_form_submit {
  margin-top: 3rem;
}

.bl_text {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.bl_text > * + * {
  margin-top: 1.5rem;
}
.bl_text h2 {
  margin-top: 3rem;
  padding-bottom: 0.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.bl_text h3 {
  margin-top: 2.25rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-white);
}
.bl_text ul, .bl_text ol {
  padding-left: 1.5em;
}
.bl_text ul li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}
.bl_text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 0.4em;
  height: 1px;
  background: var(--color-accent);
}
.bl_text ol {
  list-style: decimal;
}
.bl_text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bl_text a:hover {
  color: var(--craft-oliveSoft);
}
.bl_text_date {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: right;
  font-size: var(--fontsize-s);
  color: var(--craft-grayMid);
}

.el_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 2rem;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-white);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.el_btn:hover {
  background: var(--color-white);
  color: var(--craft-dark);
}
.el_btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.el_btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 2rem;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-white);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.el_btn--outline:hover {
  background: var(--color-white);
  color: var(--craft-dark);
}
.el_btn--outline:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.el_btn--outline.__accent {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.el_btn--outline.__accent:hover {
  background: var(--color-accent);
  color: var(--craft-dark);
}
.el_btn--outline.__small {
  min-width: 140px;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

.el_btn__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 1.25rem 2.5rem;
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--craft-dark);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.el_btn__submit:hover {
  background: transparent;
  color: var(--color-accent);
}
.el_btn__submit:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}
.el_btn__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
