/* ==========================================================================
   美容室Beluga - Top page
   モバイルファースト（min-width によるブレイクポイント: 414 / 768 / 1024 / 1440）
   ========================================================================== */

:root {
  --bl-main: #df6631;
  --bl-main-dark: #df6631;
  --bl-sub: #42c08b;
  --bl-sub-dark: #35a274;
  --bl-line: #e6f4f1;
  --bl-bg: #F5F9EB;
  --bl-txt: #3a3a3a;
  --bl-txt2: #3a3a3a;
  --bl-white: #ffffff;

  --bl-font-mincho: "BIZ UDPMincho", serif;
  --bl-font-playfair: "Playfair Display", serif;
  --bl-font-zcool: "ZCOOL XiaoWei", serif;
  --bl-font-shippori: "Shippori Mincho", serif;
  --bl-font-kaku: "Zen Kaku Gothic New", sans-serif;
  --bl-font-maru: "Zen Maru Gothic", sans-serif;
  --bl-font-yu: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;

  --bl-container: 1320px;
}

/* --------------------------------------------------------------------------
   reset / base
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--bl-txt);
  font-family: var(--bl-font-kaku);
  line-height: 1.6;
  background: var(--bl-bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 56px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover,
a:visited,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.75;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bl-inner {
  width: 100%;
  max-width: var(--bl-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------------------------
   共通：見出し（lit）
   -------------------------------------------------------------------------- */
.bl-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  margin-bottom: 16px;
}

.bl-lead__en {
  font-family: var(--bl-font-playfair);
  font-weight: 500;
  font-size: 46px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--bl-main);
  margin: 0;
}

.bl-lead__ja {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--bl-main);
  margin: 0;
}

.bl-lead--white .bl-lead__en,
.bl-lead--white .bl-lead__ja {
  color: var(--bl-white);
}

.bl-lead--left {
  align-items: flex-start;
  text-align: left;
}

/* --------------------------------------------------------------------------
   共通：CTAボタン
   -------------------------------------------------------------------------- */
.bl-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 250px;
  max-width: 100%;
  background: var(--bl-main);
  color: var(--bl-white);
  font-family: var(--bl-font-kaku);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  border-radius: 999px;
  padding: 16px 10px 16px 24px;
}

.bl-cta::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("/system_panel/uploads/images/chevron_right.svg") center / contain no-repeat;
}

.bl-cta:hover,
.bl-cta:visited,
.bl-cta:active,
.bl-cta:focus {
  color: var(--bl-white);
}

.bl-cta--center {
  display: flex;
  width: 250px;
  max-width: 100%;
  justify-content: space-between;
  margin: 24px auto 0;
}

.bl-cta--green {
  background: var(--bl-sub);
}

.bl-cta--outline {
  background: transparent;
  border: 1px solid var(--bl-main);
  color: var(--bl-main);
  padding: 13px 19px 13px 23px;
}

.bl-cta--outline::after {
  width: 11px;
  height: 11px;
  border: 0;
  background: var(--bl-main);
  -webkit-mask: url("/system_panel/uploads/images/chevron_right.svg") center / contain no-repeat;
  mask: url("/system_panel/uploads/images/chevron_right.svg") center / contain no-repeat;
  transform: none;
}

.bl-cta--outline:hover,
.bl-cta--outline:visited,
.bl-cta--outline:active,
.bl-cta--outline:focus {
  color: var(--bl-main);
}

.bl-cta--icon::after {
  display: none;
}

.bl-cta--icon {
  justify-content: center;
}

.bl-cta--icon img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.bl-cta--icon img[src*="line_icon"] {
  width: 22px;
  height: 22px;
}

.bl-cta.bl-cta--wide {
  width: 320px;
  max-width: 100%;
}

.bl-contact__card .bl-cta.bl-cta--wide,
.bl-contact__biz .bl-cta.bl-cta--wide {
  width: 450px;
  max-width: 100%;
  font-size: 16px;
}

.bl-contact__card .bl-cta.bl-cta--wide:not(.bl-cta--green) {
  padding-top: 27px;
  padding-bottom: 27px;
}

.bl-contact__biz .bl-cta.bl-cta--wide.bl-cta--green {
  padding-top: 37px;
  padding-bottom: 37px;
}

/* --------------------------------------------------------------------------
   グローバルナビ
   -------------------------------------------------------------------------- */
.gnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5f9eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.gnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.gnav__logo img {
  height: 44px;
  width: auto;
}

.gnav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.gnav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--bl-txt);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gnav__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--bl-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--bl-txt2);
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.gnav__list__item {
  width: 100%;
}

.gnav__list__item + .gnav__list__item {
  border-top: 1px solid rgba(86, 133, 68, 0.22);
}

.gnav__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  white-space: nowrap;
}

.gnav__list__item--news {
  position: relative;
}

@media (max-width: 1024px) {
  .gnav__list__item--news {
    display: none;
  }
}

@media (min-width: 1025px) {
  .gnav__list__item--mobile {
    display: none;
  }
}

.gnav__submenu {
  display: none;
  flex-direction: column;
  align-items: center;
  background: var(--bl-main);
}

.gnav__submenu a {
  font-size: 13px;
  padding: 10px 20px;
  color: var(--bl-white);
}

.gnav__arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("/system_panel/uploads/images/chevron_right.svg") center / contain no-repeat;
  filter: brightness(0) saturate(100%);
  opacity: 0.6;
  transform: rotate(90deg);
}

.gnav.is-open .gnav__list {
  max-height: 700px;
}

.gnav.is-open .gnav__toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.gnav.is-open .gnav__toggle span:nth-child(2) {
  opacity: 0;
}

.gnav.is-open .gnav__toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   ヒーロー
   -------------------------------------------------------------------------- */
.bl-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (min-width: 769px) {
  .bl-hero {
    min-height: 0;
    aspect-ratio: 1920 / 1000;
  }
}

.bl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bl-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bl-hero__slide {
  opacity: 0;
  animation: bl-hero-slide 18s ease-in-out infinite;
}

.bl-hero__slide:nth-child(2) {
  animation-delay: 6s;
}

.bl-hero__slide:nth-child(3) {
  animation-delay: 12s;
}

.bl-hero__copy {
  position: relative;
  z-index: 1;
  color: var(--bl-white);
  padding: 32px 20px 40px;
}

.bl-hero__title {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0 0 16px;
}

.bl-hero__br-sp {
  display: none;
}

.bl-hero__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: bl-hero-char-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bl-hero__lead {
  font-family: var(--bl-font-kaku);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
  opacity: 0;
  animation: bl-hero-lead-in 0.8s ease both;
  animation-delay: 0.7s;
}

.bl-hero__lead-strong {
  font-weight: 700;
}

.bl-hero__float {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  flex-direction: row;
}

.bl-hero__float-item {
  display: flex;
  flex: 1 1 33.3333%;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0;
  background: #ff7a45;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.bl-hero__float-item:hover {
  background: #e8632f;
}

.bl-hero__float-ttl {
  display: none;
}

@media (min-width: 769px) {
  .bl-hero__float {
    left: auto;
    right: 0;
    top: 50%;
    bottom: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    transform: translateY(-50%);
  }

  .bl-hero__float-item {
    flex: 0 0 auto;
    justify-content: flex-start;
    width: 94px;
    height: 80px;
    padding-left: 32px;
    padding-right: 0;
    border-radius: 40px 0 0 40px;
    transition: background-color 0.3s ease, width 0.3s ease, padding-left 0.3s ease;
  }

  .bl-hero__float-item:hover {
    width: 220px;
    padding-left: 22px;
  }

  .bl-hero__float-ttl {
    display: block;
  }
}

.bl-hero__float-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.bl-hero__float-icon img,
.bl-hero__float-icon svg {
  width: 30px;
  height: 30px;
}

.bl-hero__float-ttl {
  margin-left: 0;
  font-family: var(--bl-font-kaku);
  font-weight: 700;
  font-size: 13px;
  color: var(--bl-white);
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease;
}

.bl-hero__float-item:hover .bl-hero__float-ttl {
  opacity: 1;
  max-width: 140px;
  margin-left: 12px;
  transform: translateX(0);
}

@keyframes bl-hero-char-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bl-hero-lead-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bl-hero-slide {
  0% {
    opacity: 0;
  }

  8%,
  30% {
    opacity: 1;
  }

  40%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-hero__lead {
    animation: none;
    opacity: 1;
  }

  .bl-hero__slide {
    animation: none;
  }

  .bl-hero__slide:first-child {
    opacity: 1;
  }
}

.bl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bl-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.bl-reveal-img {
  transform: translateX(64px);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.bl-reveal-img--left {
  transform: translateX(-64px);
}

.bl-reveal-img.is-visible {
  transform: none;
}

.bl-concept__media,
.bl-message__media,
.bl-instructor__media,
.bl-coordinate__media,
.bl-service__media,
.bl-faqvoice__media,
.bl-top-section-img,
.bl-cut__media,
.bl-reason__media,
.bl-first__media,
.bl-menu__media,
.bl-staff__media,
.bl-access__media {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   共通セクション余白
   -------------------------------------------------------------------------- */
.bl-reason,
.bl-first,
.bl-menu,
.bl-news {
  padding: 56px 0;
}

.bl-staff {
  padding: 56px 0 28px;
}

.bl-access {
  padding: 28px 0 56px;
}

.bl-menu {
  background: var(--bl-white);
}

@media (min-width: 426px) and (max-width: 768px) {
  .bl-reason__media img,
  .bl-first__media img,
  .bl-menu__media img,
  .bl-staff__media img,
  .bl-access__media img {
    max-width: 480px;
    margin: 0 auto;
    display: block;
  }

  .bl-concept__media {
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   Concept
   -------------------------------------------------------------------------- */
.bl-concept {
  padding: 0 0 56px;
}

.bl-concept__head {
  padding: 40px 0;
}

.bl-concept__head .bl-lead {
  margin-bottom: 0;
}

.bl-concept__item {
  position: relative;
}

.bl-concept__list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.bl-concept__badge {
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 2;
  width: 96px;
  height: 96px;
}

.bl-concept__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bl-main);
  padding: 54px 24px 40px 24px;
}

.bl-concept__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  order: 1;
}

.bl-concept__media {
  order: 2;
}

.bl-concept__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--bl-white);
  margin: 0;
}

.bl-concept__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: var(--bl-white);
  margin: 0;
}

.bl-concept__media img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 380 / 510;
  object-fit: cover;
  border-radius: 4px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .bl-concept__cta {
    margin-top: 80px;
  }

  .bl-concept__badge {
    top: -56px;
    left: 50px;
    width: 130px;
    height: 130px;
  }

  .bl-concept__badge--right {
    left: auto;
    right: 50px;
  }

  .bl-concept__head {
    padding: 64px 0;
  }

  .bl-concept__row {
    flex-direction: row;
    align-items: center;
    gap: 56px;
    padding: 56px 64px;
  }

  .bl-concept__body {
    flex: 1;
    min-width: 0;
    gap: 32px;
    order: initial;
  }

  .bl-concept__media {
    flex-shrink: 0;
    width: 320px;
    order: initial;
  }

  .bl-concept__media img {
    max-width: none;
  }

  .bl-concept__ttl {
    font-size: 32px;
  }

  .bl-concept__txt {
    font-size: 18px;
  }
}

/* --------------------------------------------------------------------------
   Message
   -------------------------------------------------------------------------- */
.bl-message {
  padding: 56px 0 0;
  background: var(--bl-bg);
}

.bl-message .bl-lead {
  margin-bottom: 32px;
}

.bl-message__row {
  display: flex;
  flex-direction: column;
}

.bl-message__media {
  width: 100%;
}

.bl-message__media img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.bl-message__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 20px;
  background: var(--bl-white);
}

.bl-message__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--bl-txt);
  margin: 0;
}

.bl-message__txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.bl-message__txt p {
  margin: 0;
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: var(--bl-txt2);
}

@media (max-width: 414px) {
  .bl-message__txt br {
    display: none;
  }
}

@media (min-width: 769px) {
  .bl-message__ttl {
    font-size: 32px;
  }

  .bl-message__body .bl-cta {
    margin-top: 14px;
  }
}

@media (min-width: 1025px) {
  .bl-message .bl-lead {
    align-items: center;
    text-align: center;
    margin-bottom: 64px;
  }

  .bl-message__row {
    flex-direction: row;
    align-items: stretch;
  }

  .bl-message__media {
    width: 50%;
    flex-shrink: 0;
  }

  .bl-message__media img {
    height: 100%;
  }

  .bl-message__body {
    width: 50%;
    justify-content: center;
    padding: 80px 80px;
  }

  .bl-message__ttl {
    font-size: 32px;
  }

  .bl-message__txt p {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  .bl-message__body {
    padding: 80px 80px;
  }

  .bl-message__ttl {
    font-size: 36px;
  }

  .bl-message__txt p {
    font-size: 18px;
  }
}

.bl-message__marquee {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 80px;
  background: var(--bl-main);
}

.bl-message__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: bl-message-marquee 22s linear infinite;
}

.bl-message__marquee-track span {
  flex-shrink: 0;
  padding: 0 20px;
  font-family: var(--bl-font-playfair);
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: #dce89e;
  white-space: nowrap;
}

@keyframes bl-message-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-message__marquee-track {
    animation: none;
  }
}

@media (min-width: 769px) {
  .bl-message__marquee {
    height: 140px;
  }

  .bl-message__marquee-track span {
    padding: 0 28px;
    font-size: 90px;
  }
}

@media (min-width: 1440px) {
  .bl-message__marquee {
    height: 220px;
  }

  .bl-message__marquee-track span {
    padding: 0 36px;
    font-size: 140px;
  }
}

/* --------------------------------------------------------------------------
   Instructor
   -------------------------------------------------------------------------- */
.bl-instructor {
  background: var(--bl-bg);
  padding: 56px 0 0;
  overflow: hidden;
}

.bl-instructor__container {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.bl-instructor__body {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.bl-instructor__body .bl-lead {
  margin-bottom: 16px;
}

.bl-instructor__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--bl-txt);
  margin: 0;
}

.bl-instructor__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--bl-txt2);
  margin: 0 0 40px;
}

.bl-instructor__media {
  width: 100%;
}

.bl-instructor__media img {
  width: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 769px) {
  .bl-instructor__ttl {
    font-size: 32px;
  }
}

@media (min-width: 1025px) {
  .bl-instructor {
    padding: 80px 0 0;
  }

  .bl-instructor__body .bl-lead {
    margin-bottom: 40px;
  }

  .bl-instructor__container {
    flex-direction: row;
    align-items: stretch;
    margin-left: auto;
    margin-right: 0;
    max-width: 1580px;
  }

  .bl-instructor__body {
    width: 50%;
    padding: 80px 48px 80px 80px;
    justify-content: center;
  }

  .bl-instructor__ttl {
    font-size: 32px;
  }

  .bl-instructor__txt {
    font-size: 16px;
  }

  .bl-instructor__media {
    width: 50%;
    flex-shrink: 0;
  }

  .bl-instructor__media img {
    height: 100%;
    object-fit: contain;
  }
}

@media (min-width: 1440px) {
  .bl-instructor {
    padding: 100px 0 0;
  }

  .bl-instructor__body {
    padding: 100px 48px 100px 80px;
  }

  .bl-instructor__ttl {
    font-size: 36px;
  }

  .bl-instructor__txt {
    font-size: 18px;
  }
}

@media (min-width: 1920px) {
  .bl-message__ttl,
  .bl-instructor__ttl,
  .bl-coordinate__ttl {
    font-size: 48px;
  }

  .bl-instructor__body {
    padding-left: 0;
  }
}

/* --------------------------------------------------------------------------
   Coordinate
   -------------------------------------------------------------------------- */
.bl-coordinate {
  background: var(--bl-bg);
  padding: 56px 0 0;
  overflow: hidden;
}

.bl-coordinate__container {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.bl-coordinate__body {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.bl-coordinate__body .bl-lead {
  margin-bottom: 16px;
}

.bl-coordinate__body .bl-cta {
  width: auto;
  white-space: nowrap;
}

.bl-coordinate__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--bl-txt);
  margin: 0;
}

.bl-coordinate__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--bl-txt2);
  margin: 0 0 40px;
}

.bl-coordinate__media {
  width: 100%;
}

.bl-coordinate__media img {
  width: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 769px) {
  .bl-coordinate__ttl {
    font-size: 32px;
  }
}

@media (min-width: 1025px) {
  .bl-coordinate {
    padding: 0;
  }

  .bl-coordinate__body .bl-lead {
    margin-bottom: 40px;
  }

  .bl-coordinate__container {
    flex-direction: row-reverse;
    align-items: stretch;
    margin-right: auto;
    margin-left: 0;
    max-width: 1580px;
  }

  .bl-coordinate__body {
    width: 50%;
    padding: 80px 80px 80px 48px;
    justify-content: center;
  }

  .bl-coordinate__ttl {
    font-size: 32px;
  }

  .bl-coordinate__txt {
    font-size: 16px;
  }

  .bl-coordinate__media {
    width: 50%;
    flex-shrink: 0;
  }

  .bl-coordinate__media img {
    height: 100%;
    object-fit: contain;
  }
}

@media (min-width: 1440px) {
  .bl-coordinate {
    padding: 0;
  }

  .bl-coordinate__body {
    padding: 100px 80px 100px 48px;
  }

  .bl-coordinate__ttl {
    font-size: 36px;
  }

  .bl-coordinate__txt {
    font-size: 18px;
  }
}

@media (min-width: 1920px) {
  .bl-coordinate__body {
    padding-right: 0;
  }
}

/* --------------------------------------------------------------------------
   Service（Cut / Color / Perm / Set-Menu / Price）
   -------------------------------------------------------------------------- */
.bl-service {
  background: var(--bl-main);
  padding: 56px 0;
}

.bl-service__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.bl-service__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.bl-service__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--bl-white);
  margin: 0;
}

.bl-service__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.9;
  color: var(--bl-white);
  margin: 0;
}

.bl-service__media {
  width: 100%;
  max-width: 320px;
}

@media (max-width: 425px) {
  .bl-hero__br-sp {
    display: block;
  }

  .bl-cta {
    display: flex;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .bl-cta.bl-service__card-cta {
    align-self: center;
  }

  .bl-contact__list {
    align-items: center;
  }

  .bl-contact__item {
    width: 100%;
    max-width: 320px;
  }

  .bl-service__media {
    align-self: center;
  }
}

.bl-service__media img {
  width: 100%;
  aspect-ratio: 380 / 580;
  object-fit: cover;
  display: block;
}

.bl-cta--outline-white {
  background: var(--bl-white);
  border: 1px solid var(--bl-white);
  color: var(--bl-main);
  padding: 13px 19px 13px 23px;
}

.bl-cta--outline-white::after {
  width: 11px;
  height: 11px;
  border: 0;
  background: var(--bl-main);
  -webkit-mask: url("/system_panel/uploads/images/chevron_right.svg") center / contain no-repeat;
  mask: url("/system_panel/uploads/images/chevron_right.svg") center / contain no-repeat;
  transform: none;
}

.bl-cta--outline-white:hover,
.bl-cta--outline-white:visited,
.bl-cta--outline-white:active,
.bl-cta--outline-white:focus {
  color: var(--bl-main);
}

.bl-service__card {
  background: var(--bl-white);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.bl-service__card:last-child {
  margin-bottom: 0;
}

.bl-service__card-ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--bl-txt);
  margin: 0 0 16px;
}

.bl-service__card-txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: var(--bl-txt2);
  margin: 0;
}

.bl-service__card-cta {
  align-self: flex-start;
  flex-shrink: 0;
  width: auto;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .bl-service__card-cta {
    align-self: flex-end;
  }
}

@media (min-width: 768px) {
  .bl-service__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 769px) {
  .bl-service__ttl {
    font-size: 26px;
  }
}

@media (min-width: 1025px) {
  .bl-service {
    padding: 100px 0;
  }

  .bl-service__row {
    gap: 56px;
    margin-bottom: 80px;
  }

  .bl-service__body {
    max-width: 700px;
  }

  .bl-service__ttl {
    font-size: 30px;
  }

  .bl-service__txt {
    font-size: 18px;
  }

  .bl-service__media {
    width: 320px;
    flex-shrink: 0;
  }

  .bl-service__card {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 64px;
    margin-bottom: 32px;
  }

  .bl-service__card-ttl {
    font-size: 30px;
  }

  .bl-service__card-txt {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  .bl-service__media {
    width: 380px;
    max-width: 380px;
  }
}

/* --------------------------------------------------------------------------
   Reason
   -------------------------------------------------------------------------- */
.bl-reason {
  position: relative;
  overflow: hidden;
}

.bl-reason__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bl-reason__bg img {
  width: 100%;
  height: 100%;
}

.bl-reason .bl-inner {
  position: relative;
  z-index: 1;
}

.bl-lead__en--accent {
  color: var(--bl-main);
}

.bl-reason__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.bl-reason__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .bl-reason__item--reverse .bl-reason__media {
    order: -1;
  }
}

.bl-reason__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.bl-reason__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl-reason__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--bl-txt2);
  margin: 0;
}

.bl-reason__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--bl-txt2);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Firsttime
   -------------------------------------------------------------------------- */
.bl-first__card {
  background: var(--bl-white);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 20px;
}

.bl-first__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bl-first__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--bl-main);
  margin: 0;
}

.bl-first__txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--bl-txt2);
}

.bl-first__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Menu
   -------------------------------------------------------------------------- */
.bl-menu__list {
  display: flex;
  flex-direction: column;
}

.bl-menu__row {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px dashed var(--bl-main);
}

.bl-menu__row--last {
  border-bottom: 1px dashed var(--bl-main);
}

.bl-menu__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl-menu__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--bl-txt2);
  margin: 0;
}

.bl-menu__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--bl-txt2);
  margin: 0;
}

.bl-menu__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bl-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 40px 0;
}

.bl-menu__ctas .bl-cta,
.bl-gallery__ctas .bl-cta {
  width: 320px;
  max-width: 100%;
}

/* Gallery box */
.bl-gallery {
  background: rgba(230, 244, 241, 0.6);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bl-gallery .bl-lead {
  margin-bottom: 0;
}

.bl-gallery__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--bl-txt2);
  margin: 24px 0;
}

.bl-gallery__ctas {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.bl-contact {
  padding: 56px 0;
  background: var(--bl-main);
  text-align: center;
}

.bl-contact .bl-lead {
  margin-bottom: 32px;
}

.bl-contact__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: var(--bl-white);
  margin: 0 0 32px;
}

.bl-contact__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl-contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bl-white);
  padding: 18px 24px;
}

.bl-contact__item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bl-contact__item span {
  font-family: var(--bl-font-kaku);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--bl-main);
}

@media (min-width: 769px) {
  .bl-contact {
    padding: 100px 0;
  }

  .bl-contact__txt {
    font-size: 16px;
  }

  .bl-contact__list {
    flex-direction: row;
    justify-content: center;
  }

  .bl-contact__item {
    flex: 1 1 0;
    max-width: 380px;
  }
}

/* --------------------------------------------------------------------------
   Staff / Access（画像＋テキスト）
   -------------------------------------------------------------------------- */
.bl-staff {
  background: var(--bl-bg);
}

.bl-staff__row,
.bl-access__row {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "lead"
    "media"
    "txt"
    "cta";
  gap: 20px;
}

.bl-staff__body,
.bl-access__body {
  display: contents;
}

.bl-staff__row .bl-lead,
.bl-access__row .bl-lead {
  grid-area: lead;
  margin-bottom: 0;
}

.bl-staff__row .bl-staff__media,
.bl-access__row .bl-access__media {
  grid-area: media;
}

.bl-staff__row .bl-staff__txt,
.bl-access__row .bl-access__txt {
  grid-area: txt;
}

.bl-staff__row .bl-cta,
.bl-access__row .bl-cta {
  grid-area: cta;
}

.bl-staff__txt,
.bl-access__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--bl-txt2);
  margin: 0;
}

.bl-staff__media img,
.bl-access__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bl-access {
  background: var(--bl-bg);
}

.bl-access__map {
  margin-top: 28px;
  width: 100%;
}

.bl-access__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

/* --------------------------------------------------------------------------
   News / Blog
   -------------------------------------------------------------------------- */
.bl-news {
  background: var(--bl-white);
}

.bl-news__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.bl-news__list > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 12px;
  border-bottom: 1px solid var(--bl-line);
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #3b3c54;
}

.bl-news__list .webgene-blog {
  border-bottom: none !important;
}

.bl-news__list .webgene-item {
  display: block;
  padding: 20px 12px;
  border-bottom: 1px solid var(--bl-line);
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #3b3c54;
}

.bl-news__list .news_inner .col-12 + .col-12 {
  margin-top: 8px;
}

.bl-news__list .news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bl-main);
  color: var(--bl-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 2px 10px;
  margin: 0 0 6px;
}

.bl-news__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bl-news__ctas .bl-cta {
  width: 320px;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   FAQ / Voice
   -------------------------------------------------------------------------- */
.bl-faqvoice {
  padding: 112px 0;
}

.bl-faqvoice .bl-inner {
  max-width: 1240px;
}

.bl-faqvoice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.bl-faqvoice__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
}

.bl-faqvoice__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bl-faqvoice__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bl-faqvoice__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-faqvoice__en {
  font-family: var(--bl-font-playfair);
  font-weight: 500;
  font-size: 46px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--bl-white);
  margin: 0;
}

.bl-faqvoice__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--bl-white);
  border-radius: 999px;
}

.bl-faqvoice__arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("/system_panel/uploads/images/chevron_right.svg") center / contain no-repeat;
}

.bl-faqvoice__ja {
  position: relative;
  z-index: 1;
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--bl-white);
  margin: 4px 0 0;
}

.bl-faqvoice__bottom {
  position: relative;
  z-index: 1;
}

.bl-faqvoice__ttl {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--bl-white);
  margin: 0 0 12px;
}

.bl-faqvoice__txt {
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: var(--bl-white);
  margin: 0;
}

@media (min-width: 769px) {
  .bl-faqvoice__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bl-faqvoice__tile {
    min-height: 460px;
    padding: 32px;
  }

  .bl-faqvoice__en {
    font-size: 40px;
  }

  .bl-faqvoice__ja {
    font-size: 20px;
  }

  .bl-faqvoice__ttl {
    font-size: 24px;
  }

  .bl-faqvoice__txt {
    font-size: 18px;
  }
}

@media (min-width: 1025px) {
  .bl-faqvoice {
    padding: 200px 0;
  }

  .bl-faqvoice__tile {
    min-height: 600px;
    padding: 40px;
  }

  .bl-faqvoice__en {
    font-size: 75px;
  }

  .bl-faqvoice__ja {
    font-size: 22px;
  }
}

@media (min-width: 1440px) {
  .bl-faqvoice__en {
    font-size: 100px;
  }

  .bl-faqvoice__ja {
    font-size: 24px;
  }
}

.bl-top-section-img img {
  width: 100%;
  aspect-ratio: 1920 / 649;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   Access
   -------------------------------------------------------------------------- */
.bl-access {
  padding: 56px 0;
  background: var(--bl-white);
}

.bl-access .bl-inner {
  max-width: 1240px;
}

.bl-access__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bl-access__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.bl-access__table {
  width: 100%;
}

.bl-access__row {
  display: flex;
  border-bottom: 1px solid var(--bl-main);
}

.bl-access__th,
.bl-access__td {
  padding: 16px 0;
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: var(--bl-txt2);
}

.bl-access__th {
  flex-shrink: 0;
  width: 110px;
  padding-right: 16px;
  white-space: nowrap;
  color: var(--bl-txt);
}

.bl-access__td {
  flex: 1;
}

.bl-access__col .bl-cta {
  width: auto;
  white-space: nowrap;
}

.bl-access__map {
  width: 100%;
  min-height: 320px;
}

.bl-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@media (min-width: 1025px) {
  .bl-access {
    padding: 100px 0;
  }

  .bl-access__wrap {
    flex-direction: row;
    align-items: stretch;
    gap: 56px;
  }

  .bl-access__col {
    width: 50%;
    justify-content: center;
  }

  .bl-access__map {
    width: 50%;
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */
.bl-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bl-bg);
  padding: 20px;
  gap: 8px;
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 14px;
  color: var(--bl-txt2);
  text-align: center;
}

.bl-footer__nav a {
  padding: 6px 0;
}

.bl-footer__copy {
  background:#2E3220;
  color: var(--bl-white);
  text-align: center;
  padding: 16px;
  font-family: var(--bl-font-yu);
  font-size: 10px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   追尾予約ウィジェット
   -------------------------------------------------------------------------- */
.bl-float {
  position: fixed;
  z-index: 150;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: stretch;
}

.bl-float__tab {
  position: relative;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-height: 140px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: linear-gradient(180deg, var(--bl-main) 0%, var(--bl-main-dark) 100%);
  color: var(--bl-white);
  border: none;
  border-radius: 6px 0 0 6px;
  font-family: var(--bl-font-kaku);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
}

.bl-float__drawer {
  flex-shrink: 0;
  align-self: stretch;
  height: auto;
  width: 0;
  overflow: hidden;
  background: var(--bl-white);
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.15);
  transition: width 0.3s ease;
}

.bl-float__drawer-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: min(250px, 78vw);
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.bl-float__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  border-radius: 5px;
  padding: 8px 16px;
  color: var(--bl-white);
  text-decoration: none;
}

.bl-float__item:visited,
.bl-float__item:active,
.bl-float__item:focus {
  color: var(--bl-white);
}

.bl-float__item:hover {
  color: var(--bl-white);
  opacity: 0.7;
}

.bl-float__item--tel:hover,
.bl-float__item--tel:visited,
.bl-float__item--tel:active,
.bl-float__item--tel:focus {
  color: var(--bl-main);
}

.bl-float__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.bl-float__row img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bl-float__note {
  width: 100%;
  font-family: var(--bl-font-kaku);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.bl-float__item--main {
  background: var(--bl-main);
}

.bl-float__item--sub {
  background: var(--bl-sub);
}

.bl-float__item--tel {
  background: var(--bl-line);
  color: var(--bl-main);
}

.bl-float:hover .bl-float__drawer,
.bl-float.is-open .bl-float__drawer {
  width: min(250px, 78vw);
}

/* ==========================================================================
   ブレイクポイント： min-width 414px
   ========================================================================== */
.bl-reason__br--md,
.bl-reason__br--lg,
.bl-menu__br--sm,
.bl-gallery__br--sm,
.bl-concept__br--md {
  display: none;
}

.bl-contact__br--sm {
  display: inline;
}

@media (min-width: 426px) {
  .bl-contact__br--sm {
    display: none;
  }
}

.bl-contact__br--xs {
  display: inline;
}

@media (max-width: 375px) {
  .bl-contact__br--xs {
    display: none;
  }
}

@media (min-width: 769px) {
  .bl-menu__ctas {
    margin: 80px 0;
  }

  .bl-reason__br--md,
  .bl-concept__br--md {
    display: inline;
  }

  .bl-contact__card {
    flex-direction: row;
    padding: 32px;
    gap: 56px;
  }
}

@media (min-width: 415px) {
  .bl-menu__br--sm {
    display: inline;
  }
}

@media (min-width: 426px) {
  .bl-gallery__br--sm {
    display: inline;
  }
}

@media (min-width: 1025px) {
  .bl-reason__br--lg {
    display: inline;
  }
}

@media (min-width: 414px) {
  .bl-hero__title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .bl-hero__lead {
    font-size: 16px;
  }

  .bl-lead__en {
    font-size: 46px;
  }

  .bl-cta {
    max-width: 340px;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 768px
   ========================================================================== */
@media (min-width: 769px) {
  .bl-inner {
    padding: 0 40px;
  }

  .bl-gallery__txt {
    font-size: 20px;
    margin: 48px 0;
  }

  .bl-contact__card .bl-cta.bl-cta--wide,
  .bl-contact__biz .bl-cta.bl-cta--wide {
    font-size: 18px;
  }

  .bl-contact__card .bl-cta.bl-cta--wide:not(.bl-cta--green) {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .bl-contact__biz .bl-cta.bl-cta--wide.bl-cta--green {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .gnav__inner {
    padding: 12px 40px;
  }

  .bl-hero__copy {
    padding: 48px 40px 56px;
  }

  .bl-hero__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bl-hero__lead {
    font-size: 18px;
  }

  .bl-reason,
  .bl-first,
  .bl-menu,
  .bl-news {
    padding: 80px 0;
  }

  .bl-staff {
    padding: 80px 0 40px;
  }

  .bl-lead {
    margin-bottom: 40px;
  }

  .bl-lead__en {
    font-size: 40px;
  }

  .bl-lead__ja {
    font-size: 20px;
  }

  .bl-reason__item,
  .bl-reason__item--reverse {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .bl-reason__media,
  .bl-reason__body {
    flex: 1 1 0;
    min-width: 0;
  }

  .bl-reason__ttl {
    font-size: 26px;
  }

  .bl-first__card {
    flex-direction: row;
    align-items: center;
    padding: 48px;
    gap: 48px;
  }

  .bl-first__body {
    flex: 1.35 1 0;
    min-width: 0;
  }

  .bl-first__media {
    flex: 1 1 0;
    min-width: 0;
  }

  .bl-first__ttl {
    font-size: 28px;
  }

  .bl-menu__row {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .bl-menu__body {
    flex: 1 1 0;
    min-width: 0;
  }

  .bl-menu__media {
    flex-shrink: 0;
    width: 45%;
    max-width: 340px;
  }

  .bl-menu__ctas,
  .bl-gallery__ctas {
    flex-direction: row;
    justify-content: center;
  }

  .bl-menu__ctas,
  .bl-gallery__ctas {
    gap: 80px;
  }

  .bl-gallery {
    padding: 80px 20px;
  }

  .bl-contact__cards {
    gap: 40px;
  }


  .bl-contact__col {
    flex: 1 1 0;
    min-width: 0;
  }

  .bl-contact__biz {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
  }

  .bl-contact__bizbody {
    flex: 1 1 0;
  }

  .bl-staff__body,
  .bl-access__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .bl-staff__txt {
    margin-top: 44px;
    margin-bottom: 44px;
  }

  .bl-staff__row {
    grid-template-columns: 1.35fr 1fr;
    grid-template-areas: "body media";
    align-items: center;
    column-gap: 48px;
  }

  .bl-staff__row .bl-staff__body {
    grid-area: body;
  }

  .bl-access__row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "media body";
    align-items: center;
    column-gap: 48px;
  }

  .bl-access__row .bl-access__body {
    grid-area: body;
  }

  .bl-news__ctas {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    row-gap: 32px;
    column-gap: 64px;
  }

  .bl-footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
  }

  .bl-float__tab {
    width: 42px;
    min-height: 170px;
    font-size: 14px;
  }

  .bl-float__drawer-inner {
    width: 270px;
  }

  .bl-float:hover .bl-float__drawer,
  .bl-float.is-open .bl-float__drawer {
    width: 270px;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  .bl-contact__card .bl-cta.bl-cta--wide,
  .bl-contact__biz .bl-cta.bl-cta--wide {
    font-size: 20px;
  }

  .bl-contact__card .bl-cta.bl-cta--wide:not(.bl-cta--green) {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .bl-contact__biz .bl-cta.bl-cta--wide.bl-cta--green {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .bl-hero__copy {
    padding: 64px 80px 72px;
  }

  .bl-hero__title {
    font-size: 42px;
    margin-bottom: 28px;
  }

  .bl-hero__lead {
    font-size: 20px;
  }

  .gnav__logo img {
    height: 56px;
  }

  .bl-reason,
  .bl-first,
  .bl-menu,
  .bl-news {
    padding: 100px 0;
  }

  .bl-staff {
    padding: 100px 0 50px;
  }

  .bl-lead__en {
    font-size: 75px;
  }

  .bl-lead__ja {
    font-size: 20px;
  }


  .bl-access__txt {
    margin-top: 44px;
    margin-bottom: 44px;
  }

  .bl-reason__ttl {
    font-size: 32px;
  }

  .bl-first__ttl {
    font-size: 32px;
  }

  .bl-menu__ttl {
    font-size: 28px;
  }

  .bl-menu__media {
    width: 340px;
  }

  .bl-contact__note {
    font-size: 24px;
    margin: 48px 0;
  }

  .bl-float__tab {
    width: 48px;
    min-height: 200px;
    font-size: 15px;
  }

  .bl-float__drawer-inner {
    width: 280px;
  }

  .bl-float:hover .bl-float__drawer,
  .bl-float.is-open .bl-float__drawer {
    width: 280px;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 1440px（ハンバーガー→横並びナビの切り替え。1439px以下はハンバーガーのまま）
   ========================================================================== */
@media (min-width: 1440px) {
  .gnav__toggle {
    display: none;
  }

  .gnav__list {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 28px;
    max-height: none;
    overflow: visible;
    background: none;
    box-shadow: none;
    font-size: 15px;
  }

  .gnav__list__item {
    width: auto;
  }

  .gnav__list__item + .gnav__list__item {
    border-top: none;
  }

  .gnav__list a {
    padding: 6px 0;
  }

  .gnav__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    padding: 14px 0 8px;
    border-radius: 8px;
    background: var(--bl-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 10;
  }

  .gnav__submenu a {
    padding: 8px 20px;
    color: var(--bl-main);
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 1440px（デザイン原寸に近いサイズ）
   ========================================================================== */
@media (min-width: 1440px) {
  .bl-concept__head {
    padding: 160px 0;
  }

  .bl-concept__ttl {
    font-size: 42px;
  }

  .bl-concept__txt {
    font-size: 22px;
  }

  .bl-contact__card .bl-cta.bl-cta--wide,
  .bl-contact__biz .bl-cta.bl-cta--wide {
    font-size: 24px;
  }

  .bl-contact__card .bl-cta.bl-cta--wide:not(.bl-cta--green) {
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .bl-contact__biz .bl-cta.bl-cta--wide.bl-cta--green {
    padding-top: 31px;
    padding-bottom: 31px;
  }

  .bl-hero__copy {
    padding: 80px 120px 90px;
  }

  .bl-hero__title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .bl-hero__lead {
    font-size: 22px;
  }

  .gnav__list {
    font-size: 16px;
    gap: 8px 32px;
  }

  .bl-lead__en {
    font-size: 100px;
  }

  .bl-lead__ja {
    font-size: 20px;
  }

  .bl-reason__ttl,
  .bl-first__ttl {
    font-size: 42px;
  }

  .bl-menu__ttl {
    font-size: 32px;
  }

  .bl-cta {
    font-size: 16px;
    padding: 16px 10px 16px 24px;
    gap: 30px;
  }

  .bl-cta::after {
    width: 20px;
    height: 20px;
  }

  .bl-cta--icon img {
    width: 24px;
    height: 24px;
  }

  .bl-cta--icon img[src*="line_icon"] {
    width: 28px;
    height: 28px;
  }
}

