@font-face {
  font-family: "PandaBakery";
  /* サブセット版 woff2（JIS第一水準 + かな + 英数、約325KB）。元の TTF は約2MB */
  src: url("../fonts/pandabakery-subset.woff2") format("woff2"),
       url("../fonts/pandabakery.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color_white: #ffffff;
  --color_black: #44453c;
  --color_text: #44453c;
  --color_muted: #6e685e;
  --color_hover: #847e77;
  --color_accent: #f2ea40;
  --color_footer: #7b7c78;
  --color_bg_soft: #f3f3ec;
  --color_bg_review: #f7f7f7;
  --color_line: #d4cfc4;
  --color_dark_line: #585650;
  --color_shadow: rgba(30, 25, 12, 0.18);
  --section_space: 120px;
  --section_space_sm: 110px;
  --margin_xl: 120px;
  --margin_l: 88px;
  --margin_m: 64px;
  --margin_s: 40px;
  --margin_xs: 24px;
  --gap_lg: 72px;
  --gap_md: 40px;
  --gap_sm: 20px;
  --header_height: 78px;
  --button_w: 370px;
  --button_h: 80px;
  --side_width: 54px;
}

@media (max-width: 1200px) {
  :root {
    --section_space: 100px;
    --section_space_sm: 58px;
  }
}

@media (max-width: 1000px) {
  :root {
    --header_height: 46px;
  }
}

@media (max-width: 980px) {
  :root {
    --margin_xl: 64px;
    --margin_l: 48px;
    --margin_m: 32px;
    --margin_s: 24px;
    --margin_xs: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --section_space: 80px;
    --button_h: 68px;
  }
}

body {
  min-width: 320px;
  color: var(--color_text);
  font-family: "brandon-grotesque", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  background: var(--color_white);
}

body.is_menu_open {
  overflow: hidden;
}

.br_sp {
  display: none;
}

@media (max-width: 768px) {
  .br_sp {
    display: inline;
  }
}

.wrapper {
  overflow: clip;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.main {
  /* padding-top: var(--header_height); */
}

/* =========================
  header
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: var(--color_white);
}

/* 自作ヘッダーをトップページ以外で使う場合の潜り込み対策
   （body クラスは functions.php の misegamaeya_fixed_header_body_class が付与）
   +20px は .header_inner の上下 margin（10px ずつ）分。ヒーローの逃げと同じ式 */
body.has_fixed_header {
  padding-top: calc(var(--header_height) + 20px);
}

.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

/* トップページ以外: fixed ヘッダー分コンテンツを下げる（一時無効） */
/* body:not(.page-template-page-templates-template-top-php) {
  padding-top: calc(var(--header_height) + 20px);
} */

/* トップページ: ヘッダー裏まわり込み（padding なし） */
body.page-id-90796,
body.page-template-page-templates-template-top-php {
  padding-top: 0;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header_height);
  gap: 24px;
  width: 90vw;
  max-width: none;
  margin: 10px auto;
}

.header_logo {
  display: block;
  width: clamp(150px, calc((220 / 1440) * 100vw), 220px);
}

.header_logo img {
  width: 100%;
  height: auto;
}

.header_sns {
  display: none;
}

.header_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.header_tel,
.header .header_tel {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: clamp(15px, calc((20 / 1440) * 100vw), 20px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color_black);
  white-space: nowrap;
  text-align: right;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header_tel:hover,
.header .header_tel:hover {
  color: var(--color_hover);
}

.header_tel img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.nav_list {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-end;
}

.nav_list a,
.header .nav_list a {
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 14px);
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--color_black);
  transition: color 0.3s ease;
}

.nav_list a:hover,
.header .nav_list a:hover {
  color: var(--color_hover);
}

/* ▼ arrow shared by PC and SP */
.nav_arrow {
  color: var(--color_accent);
  font-size: 9px;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.25s ease;
  line-height: 1;
}

/* PC dropdown */
.nav_list li {
  position: relative;
}

.nav_dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--color_white);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 170px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
  z-index: 200;
}

.nav_dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent var(--color_white) transparent;
}

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

.nav_dropdown ul li a,
.header .nav_dropdown ul li a {
  display: block;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color_black);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav_dropdown ul li a:hover,
.header .nav_dropdown ul li a:hover {
  color: var(--color_hover);
  background: var(--color_bg_soft);
}

.has_dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.has_dropdown:hover .nav_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has_dropdown:hover > a .nav_arrow {
  transform: rotate(180deg);
}

.header_menu_button,
.sp_nav,
.sp_nav_overlay {
  display: none;
}

@media (max-width: 1000px) {
  .header_inner {
    min-height: 45px;
  }

  .header_nav,
  .header_tel,
  .header .header_nav,
  .header .header_tel {
    display: none;
  }

  .header_sns {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header_sns a {
    display: flex;
    align-items: center;
  }

  .header_sns img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) opacity(0.7);
    transition: opacity 0.2s ease;
  }

  .header_sns a:hover img {
    opacity: 0.5;
  }

  .header_menu_button,
  .header .header_menu_button {
    position: relative;
    z-index: 130;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 42px;
    gap: 6px;
    background-color: transparent;
    color: inherit;
  }

  .header_menu_button span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color_black);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .header_menu_button.is_open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header_menu_button.is_open span:nth-child(2) {
    opacity: 0;
  }

  .header_menu_button.is_open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .sp_nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 120;
    display: block;
    width: min(500px, 100%);
    max-width: 500px;
    height: 100vh;
    padding: 80px 40px 48px;
    background: var(--color_white);
    box-shadow: none;
    transform: translateX(100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.3s ease;
  }

  .sp_nav.is_open {
    transform: translateX(0);
    box-shadow: -18px 0 40px var(--color_shadow);
  }

  .admin-bar .sp_nav {
    top: 32px;
    height: calc(100vh - 32px);
  }

  @media screen and (max-width: 782px) {
    .admin-bar .sp_nav {
      top: 46px;
      height: calc(100vh - 46px);
    }
  }

  .sp_nav_list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sp_nav_logo {
    position: absolute;
    top: 33px;
    left: 40px;
    transform: translateY(-50%);
    display: block;
    width: 180px;
  }

  .sp_nav_logo img {
    width: 100%;
    height: auto;
  }

  .sp_nav_list > li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--color_line);
  }

  .sp_nav_list > li:first-child {
    border-top: 1px dashed var(--color_line);
  }

  .sp_nav_list a,
  .header .sp_nav_list a {
    display: inline-block;
    padding: 6px 0;
    font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .sp_nav_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sp_nav_row .nav_arrow {
    font-size: 13px;
  }

  .sp_dropdown_toggle,
  .header .sp_dropdown_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    color: inherit;
  }

  .sp_dropdown_toggle[aria-expanded="true"] .nav_arrow {
    transform: rotate(180deg);
  }

  .sp_dropdown_menu {
    display: none;
    list-style: none;
    padding: 10px 0 0 16px;
    margin: 0;
  }

  .sp_dropdown_menu.is_open {
    display: block;
  }

  .sp_dropdown_menu li {
    padding: 6px 0;
  }

  .sp_dropdown_menu a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--color_muted) !important;
  }

  .sp_nav_buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .sp_nav_button {
    width: 100%;
    gap: 8px;
  }

  .sp_nav_button img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .sp_nav_overlay {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: block;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .sp_nav_overlay.is_open {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 428px) {
  .sp_nav {
    width: 100%;
    max-width: none;
    padding: 80px 24px 40px;
    box-shadow: none;
  }

  .sp_nav_logo {
    left: 24px;
  }
}

/* =========================
  footer / button / title
========================= */

.footer {
  position: relative;
  padding: var(--section_space_sm) 0 var(--margin_s);
  background: var(--color_footer);
  color: var(--color_white);
}

.footer_deco_top {
  display: none;
}

.footer a {
  color: var(--color_white);
}

.footer_inner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 140px;
  gap: 32px;
  align-items: start;
}

.footer_brand {
  padding-top: 6px;
  min-width: 0;
}

.footer_logo {
  display: block;
  max-width: 200px;
}

.footer_logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer_contact {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer_contact_item {
  font-size: clamp(13px, calc((15 / 1440) * 100vw), 15px);
  line-height: 1.6;
  font-weight: 500;
}


.footer_contact_hours {
  font-size: clamp(15px, calc((17 / 1440) * 100vw), 17px);
}

.footer_contact_tel,
.footer .footer_contact_tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
  line-height: 1;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.footer_contact_tel img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer_contact_tel:hover,
.footer .footer_contact_tel:hover {
  color: var(--color_accent);
}

.footer_navs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.footer_nav_group {
  min-height: 420px;
  padding: 18px 18px 0;
  min-width: 0;
}

.footer_nav_block + .footer_nav_block {
  margin-top: 28px;
}

.footer_nav_block_compact + .footer_nav_block_compact {
  margin-top: 24px;
}

.footer_nav_title,
.footer .footer_nav_title {
  display: inline-block;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 18px);
  line-height: 1.45;
  font-weight: 500;
}

.footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-left: 16px;
}

.footer_nav_list a,
.footer .footer_nav_list a {
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
  line-height: 1.6;
}

.footer_illustration {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 420px;
}

.footer_illustration img {
  width: 120px;
  height: auto;
}

.footer_bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  text-align: center;
}

.footer_bottom p {
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 14px);
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.button,
.main .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, var(--button_w));
  min-height: var(--button_h);
  padding: 18px 20px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  transition: filter 0.3s ease;
}

.button:hover,
.main .button:hover {
  filter: brightness(0.92);
}

.button_primary,
.main .button_primary {
  background: var(--color_accent);
  color: var(--color_black);
}

@media (max-width: 768px) {
  .button,
  .main .button {
    font-size: 16px;
  }
}

.section_heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section_heading_center {
  align-items: center;
  text-align: center;
}

.section_heading_sub {
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 18px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color_text);
}

.section_heading_title {
  display: inline;
  font-family: "PandaBakery", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(26px, calc((40 / 1440) * 100vw), 40px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color_black);
  background: linear-gradient(transparent 55%, rgba(242, 240, 40, 0.6) 55%);
}

.section_heading_en {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: rgba(75, 71, 63, 0.5);
}

.section_heading_en::before,
.section_heading_en::after {
  font-size: 19px;
  font-weight: 900;
  color: var(--color_accent);
}

.section_heading_en::before {
  content: "";
  margin-right: 0;
}

.section_heading_en::after {
  content: "";
  margin-left: 0;
}

.event .section_heading_en,
.works .section_heading_en,
.voice .section_heading_en {
  font-size: 24px;
  color: rgba(75, 71, 63, 0.4);
}

.event .section_heading_en {
  margin-top: -8px;
}

.section_heading_icon {
  font-size: clamp(16px, calc((24 / 1440) * 100vw), 24px);
  line-height: 1;
}

.vertical_label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(22px, calc((30 / 1440) * 100vw), 30px);
  line-height: 1.22;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--color_black);
}

.vertical_label_lead,
.vertical_label_main {
  display: block;
}

.vertical_label_lead {
  font-size: clamp(16px, calc((24 / 1440) * 100vw), 24px);
  line-height: 1.2;
  font-weight: 500;
}

.about .vertical_label {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 42px;
  padding-left: 20px;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.about .vertical_label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background-image: url("../images/top_title_line.svg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 3px auto;
  left: 0;
}

.about .vertical_label_lead,
.about .vertical_label_main {
  position: relative;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding:  8px 0;
}

.about .vertical_label_main::after,
.about .vertical_label_lead::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  width: 3px;
  background-image: url("../images/top_title_line.svg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 3px auto;
}


@media (max-width: 968px) {
  .vertical_label {
    writing-mode: horizontal-tb;
    font-size: clamp(20px, calc((28 / 1440) * 100vw), 28px);
    line-height: 1.35;
  }

  .vertical_label_lead {
    font-size: clamp(15px, calc((18 / 1440) * 100vw), 18px);
  }

  .vertical_label_lead,
  .vertical_label_main {
    margin: 4px 0;
  }

  .about .vertical_label {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 24px;
    padding-left: 0;
    writing-mode: horizontal-tb;
  }

  .about .vertical_label_lead,
  .about .vertical_label_main {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 0;
  }

  .about .vertical_label::before {
    left: -8px;
    width: 2px;
    background-size: 2px auto;
  }

  .about .vertical_label_lead::after,
  .about .vertical_label_main::after {
    right: -14px;
    width: 2px;
    background-size: 2px auto;
  }

}

@media (max-width: 1200px) {
  .section_heading_sub {
    font-size: 18px;
  }

  .section_heading_title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .section_heading_sub {
    font-size: 14px;
    font-weight: 500;
  }

  .section_heading_title {
    font-size: 26px;
  }
}

/* =========================
  side
========================= */

.side {
  position: fixed;
  z-index: 40;
}

.side_social {
  top: 50vh;
  left: 2.5vw;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side_social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #9e9e99;
  color: var(--color_white);
  font-size: 14px;
}

.side_social a img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.side_contact {
  top: 50vh;
  right: 2.5vw;
  transform: translate(50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.side_contact a,
.main .side_contact a {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(12px, calc((15 / 1440) * 100vw), 15px);
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color_black);
  transition: color 0.3s ease;
}

.side_contact a:hover,
.main .side_contact a:hover {
  color: var(--color_hover);
}

@media (max-width: 1100px) {
  .side {
    display: none;
  }
}

/* =========================
  hero
========================= */

.hero {
  padding-top: 14px;
}

.hero_inner {
  width: 90vw;
  max-width: none;
}

.hero_visual {
  position: relative;
}

.hero_visual,
.hero_visual .swiper-wrapper,
.hero_visual .swiper-slide {
  width: 100%;
}

.hero_visual .swiper-slide {
  height: auto;
}

.hero_visual .swiper-slide img {
  width: 100%;
  aspect-ratio: 1296 / 593;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-out;
}

.hero_visual .swiper-slide-active img,
.hero_visual .swiper-slide-duplicate-active img {
  transform: scale(1.06);
}

.hero_copy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.hero_copy_label {
  display: inline-block;
  padding: 8px 0 6px 13px;
  background: url('../images/noise_pattern.png') repeat, var(--color_accent);
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 20px);
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--color_black);
  margin-bottom: 16px;
}

.hero_title,
.main .hero_title {
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: "PandaBakery", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(36px, calc((54 / 1440) * 100vw), 54px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color_white);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.hero_title_wand {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  width: clamp(30px, calc((78 / 1440) * 100vw), 78px);
  height: auto;
}

.hero_subtitle,
.main .hero_subtitle {
  margin-top: 12px;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 20px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #FFF;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

/* FVテキスト群: 1440px以上は画面幅に追従して拡大を続ける（1920px相当で上限） */
@media (min-width: 1440px) {
  .hero_copy_label {
    font-size: clamp(18px, calc((18 / 1440) * 100vw), 24px);
  }

  .main .hero_title {
    font-size: clamp(54px, calc((54 / 1440) * 100vw), 72px);
  }

  .hero_subtitle,
  .main .hero_subtitle {
    font-size: clamp(18px, calc((18 / 1440) * 100vw), 24px);
  }
}

.hero_plans {
  width: 100%;
  margin-top: 56px;
  margin-bottom: 56px;
  padding: 0;
}

.hero_plans .swiper-wrapper {
  transition-timing-function: linear;
}

.hero_plans .swiper-slide {
  height: auto;
  margin-right: 70px;
}

.hero_plan img {
  width: 100%;
  aspect-ratio: 260 / 165;
  object-fit: contain;
}

.scroll_indicator {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.scroll_indicator_text {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color_white);
  writing-mode: vertical-rl;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.scroll_indicator_line_wrap {
  display: block;
  width: 1px;
  height: 36px;
  overflow: hidden;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.7)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.scroll_indicator_line {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color_white);
  animation: scroll_line 1.8s ease-in-out infinite;
}

@keyframes scroll_line {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}

@media (max-width: 968px) {
  .section_heading {
    gap: 4px;
  }

  .section_heading_en {
    font-size: 18px;
  }

  .event .section_heading_en,
  .works .section_heading_en,
  .voice .section_heading_en {
    font-size: 22px;
  }

  .hero_visual .swiper-slide img {
    aspect-ratio: 1 / 1;
  }

  .hero_copy {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 24px;
    z-index: 5;
    margin-top: 0;
    transform: translateX(-50%);
    text-align: center;
    width: calc(100% - 32px);
  }

  .hero_plans {
    width: 100vw;
    margin-top: 32px;
    margin-bottom: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .hero_plans .swiper-slide {
    margin-right: 24px;
  }

  .hero_copy_label {
    font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
    margin-bottom: 0;
  }

  .hero_title,
  .main .hero_title,
  .hero_subtitle,
  .main .hero_subtitle {
    color: var(--color_white);
  }

  .hero_title,
  .main .hero_title {
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, calc((54 / 1440) * 100vw), 54px);
  }

  .scroll_indicator {
    right: 8px;
  }

  .hero_title_wand {
    left: calc(100% + 4px);
  }

  .hero_subtitle,
  .main .hero_subtitle {
    margin-top: 10px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
  }

  .hero_visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.32));
    z-index: 2;
    pointer-events: none;
  }
}

/* =========================
  about
========================= */

.about {
  margin-top: 0;
  background: var(--color_white);
}

.about_sep {
  display: block;
  width: 100%;
  height: auto;
}

.about_inner {
  max-width: 1040px;
}

.about .section_heading {
  margin-bottom: 0;
}

.about .section_heading_sub {
  margin-top: 0;
  margin-bottom: -8px;
}

.about .story_block_center {
  width: fit-content;
  margin: var(--margin_m) auto var(--margin_l);
  gap:0;
}

.intro_feature_plan img:not(.story_deco) {
  width: 100%;
  aspect-ratio: 828 / 407;
  object-fit: contain;
}

.intro_feature_side {
  flex-direction: column;
  gap: 38px;
}

.intro_icons {
  display: flex;
  gap: 20px;
  font-size: 32px;
  line-height: 1;
  color: var(--color_dark_line);
}

.intro_text_row_right {
  margin-top: 44px;
  margin-left: auto;
  margin-right: 82px;
}

@media (max-width: 968px) {

  .intro_feature_side,
  .story_label_group {
    justify-self: start;
  }

  .intro_text_row_right {
    margin-top: 32px;
    margin-right: 0;
  }
}

/* shared about blocks */

.about_inner {
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 80px;
}

.story_block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: var(--margin_l);
  max-width: 926px;
}

.story_block:last-child {
  margin-bottom: 0;
}

.story_media_text {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.story_block_center .story_media_text {
  justify-content: center;
}

article.story_block.story_block_offset_right {
  max-width: calc(926px - 72px);
  margin-right: 0;
  margin-left: auto;
}

article.story_block.story_block_offset_left {
  max-width: calc(926px - 72px);
  margin-right: auto;
  margin-left: 0;
}


.story_block_offset_right .story_media_text {
  justify-content: flex-end;
}

.story_block_offset_left .story_media_text {
  justify-content: flex-start;
}

.story_media {
  flex: 1;
  max-width: 760px;
  padding-top: 40px;
}

.story_media img:not(.story_deco) {
  width: 100%;
  object-fit: contain;
}

.story_media_wrap {
  position: relative;
  width: 100%;
}

.story_deco {
  position: absolute;
  pointer-events: none;
  width: auto;
  height: auto;
}

.story_deco_01 {
  top: 0;
  left: 0;
  width: clamp(60px, calc((180 / 1440) * 100vw), 180px);
  transform: translate(-40%, -40%);
}

.story_deco_02 {
  top: 0;
  right: 0;
  width: clamp(60px, calc((200 / 1440) * 100vw), 200px);
  transform: translate(20%, -30%);
}

.story_deco_03 {
  bottom: 0;
  left: 0;
  width: clamp(60px, calc((180 / 1440) * 100vw), 180px);
  transform: translate(-20%, 30%);
}

.story_media_svg {
  display: block;
  width: 100%;
  height: auto;
}

.story_media_svg_sp {
  display: none;
}

.story_media_sp {
  display: none;
}

.story_label_group {
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
  flex: 0 0 auto;
}

.story_title_deco {
  position: absolute;
  pointer-events: none;
  height: auto;
}

.story_title_deco_sp_item {
  display: none;
  height: auto;
  pointer-events: none;
}

.story_title_deco_01 {
  bottom: 0;
  right: 0;
  width: clamp(55px, calc((110 / 1440) * 100vw), 110px);
  transform: translate(60%, 140%);
}

.story_title_deco_02 {
  bottom: 0;
  left: 0;
  width: clamp(65px, calc((130 / 1440) * 100vw), 130px);
  transform: translate(-100%, 120%);
}

.story_title_deco_03 {
  bottom: 0;
  right: 0;
  width: clamp(100px, calc((203 / 1440) * 100vw), 203px);
  transform: translate(60%, 140%);
}

@media (max-width: 1200px) {
  .story_title_deco_01 {
    transform: translate(30%, 140%);
  }

  .story_title_deco_02 {
    transform: translate(-30%, 120%);
  }

  .story_title_deco_03 {
    transform: translate(30%, 140%);
  }
}

@media (max-width: 480px) {
  .story_title_deco_01 {
    transform: translate(20%, 80%);
  }

  .story_title_deco_02 {
    width: 45px;
    transform: translate(130%, 30%);
  }

  .story_title_deco_03 {
    transform: translate(30%, 90%);
  }

  .story_label_group .story_title_deco {
    display: none;
  }
}

.story_text {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(14px, calc((15 / 1440) * 100vw), 15px);
}

@keyframes charactor_rock {
  0%   { transform: translateY(-50%) rotate(-5deg); }
  50%  { transform: translateY(-50%) rotate(5deg); }
  100% { transform: translateY(-50%) rotate(-5deg); }
}

.story_charactor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50% 100%;
  height: auto;
  pointer-events: none;
  animation: charactor_rock 3s ease-in-out infinite;
}

.story_charactor_01,
.story_charactor_03 {
  right: calc(100% + 54px);
}

.story_charactor_02 {
  left: calc(100% + 54px);
  animation-delay: -1.1s;
}

.story_charactor_03 {
  animation-delay: -2.2s;
}

@media (max-width: 968px) {
  .story_charactor {
    display: none;
  }
}

.story_text_left {
  margin-right: auto;
  margin-left: 0;
  padding-left: 50px;
}

.story_text_right {
  margin-right: 0;
  margin-left: auto;
  padding-right: 50px;
}

.story_text p {
  padding-bottom: 16px;
  background-image: repeating-linear-gradient(
    to right,
    #333 0,
    #333 3px,
    transparent 3px,
    transparent 10px
  );
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 1px;
  font-size: clamp(15px, calc((16 / 1440) * 100vw), 16px);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .story_text p {
    padding-bottom: 60px;
  }

  .story_title_deco_sp_item {
    display: block;
    position: absolute;
    right: 0;
    bottom: 16px;
  }

  .story_title_deco_sp_01 { width: 64px; }
  .story_title_deco_sp_02 { width: 45px; }
  .story_title_deco_sp_03 { width: 90px; }

  .about .section_heading_sub {
    margin-bottom: 0;
  }
}

@media (max-width: 968px) {
  .story_deco_01 {
    transform: translate(-10%, -60%);
  }

  .story_media_svg_pc {
    display: none;
  }

  .story_media_svg_sp {
    display: block;
  }

  .story_media_pc {
    display: none;
  }

  .story_media_sp {
    display: block;
    padding-top: 40px;
  }

  .story_block_offset_right,
  .story_block_offset_left {
    max-width: 926px;
  }

  .story_media_text,
  .story_block_reverse .story_media_text {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .about_inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about .story_block_center .story_media_text,
  .about .story_block_offset_right .story_media_text,
  .about .story_block_offset_left .story_media_text {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }

  .story_label_group {
    justify-content: flex-start;
  }

  .story_text,
  .story_text_right,
  .story_text_left {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

/* =========================
  event
========================= */

.event {
  background: var(--color_bg_soft);
}

.event > .container {
  padding-top: 118px;
  padding-bottom: 112px;
}

.event_sep {
  display: block;
  width: 100%;
  height: auto;
}

.event .section_heading {
  margin-bottom: 74px;
}

.event_heading_deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.event_heading_deco img {
  flex-shrink: 0;
}

.event_heading_deco img:last-child {
  transform: translateY(-40%);
}

@media (max-width: 968px) {
  .event_heading_deco img {
    width: 32px;
    height: auto;
  }
}

.event_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
  gap: 66px;
}

.event_card a,
.main .event_card a {
  display: block;
  overflow: hidden;
}

.event_card img {
  width: 100%;
  aspect-ratio: 460 / 230;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.event_card a:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}

.event_card h3 {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--color_black);
}

@media (max-width: 968px) {
  .event > .container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .event .section_heading_title {
    white-space: nowrap;
  }

  .event_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================
  works
========================= */

.works {
  background: var(--color_white);
}

.works_sep {
  display: block;
  width: 100%;
  height: auto;
}

.works > .container {
  padding-top: var(--section_space);
  padding-bottom: var(--section_space);
}

.works_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 76px;
}

.works_heading_wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.works_deco {
  flex-shrink: 0;
  width: clamp(60px, calc((123 / 1440) * 100vw), 123px);
  height: auto;
}

.works_nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.works_nav a,
.main .works_nav a,
.works_nav button,
.main .works_nav button {
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 18px);
  line-height: 1.2;
  transition: color 0.3s ease;
  background-color: transparent !important;
  color: var(--color_black) !important;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

.works_nav a:hover,
.main .works_nav a:hover,
.works_nav button:hover,
.main .works_nav button:hover {
  color: var(--color_hover);
}

.works_nav .is_current,
.main .works_nav .is_current {
  border-color: var(--color_black);
}

.works_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 62px;
}

.works_card_img {
  overflow: hidden;
}

.works_card img {
  width: 100%;
  aspect-ratio: 536 / 301;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.works_card a:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}

.works_card h3 {
  margin-top: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--color_dark_line);
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
  line-height: 1.38;
  font-weight: 700;
  color: var(--color_black);
  transition: color 0.3s ease;
}

.works_card a:hover h3 {
  color: var(--color_hover);
}

.works_card p {
  margin-top: 18px;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
  line-height: 1.6;
  color: var(--color_muted);
}

.about_buttons {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.about_buttons .button {
  background: url('../images/noise_pattern.png') repeat, #F3E640;
}

@media (max-width: 768px) {
  .about_buttons {
    margin-top: 40px;
  }
}

.works_buttons {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 84px;
}

.works_buttons .button {
  background: url('../images/noise_pattern.png') repeat, #F3E640;
}

@media (max-width: 1200px) {
  .works_head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1000px) {
  .works_head {
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .works_head {
    margin-bottom: 40px;
  }

  .works_nav {
    flex-wrap: wrap;
    gap: 20px 28px;
  }

  .works_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .works_buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
  }
}

/* =========================
  voice
========================= */

.voice {
  background: var(--color_bg_soft);
}

.voice > .container {
  padding-top: var(--section_space);
  padding-bottom: var(--section_space);
}

.voice_sep {
  display: block;
  width: 100%;
  height: auto;
}

.voice_heading_wrap {
  position: relative;
  display: inline-block;
}

.voice_deco {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(60%, -80%);
  width: clamp(50px, calc((95 / 1440) * 100vw), 95px);
  height: auto;
}

.voice .section_heading {
  margin-bottom: 72px;
}

.voice_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.voice_card img {
  width: 100%;
  aspect-ratio: 374 / 212;
  object-fit: cover;
}

.voice_card {
  position: relative;
  aspect-ratio: 16 / 9;
}

.voice_card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 968px) {
  .voice_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
  contact
========================= */

.contact {
  position: relative;
  padding: 45px 0;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0.7;
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
  max-width: 1310px;
}

.contact_panel {
  position: relative;
  transform: translateY(-2px);
  max-width: 1000px;
  margin-inline: auto;
  padding: 68px 60px 62px;
  background-color: #FFF;
  background-image:
    url('../images/top_title_line_h.svg'),
    url('../images/top_title_line_h.svg'),
    url('../images/top_title_line.svg'),
    url('../images/top_title_line.svg');
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, left bottom, left top, right top;
  background-size: auto 3px, auto 3px, 3px auto, 3px auto;
  border-radius: 0;
}

.contact_panel {
  box-shadow: 8px 8px 0 rgba(242, 240, 40, 0.5);
}

.contact_buttons .button {
  gap: 8px;
  background: url('../images/noise_pattern.png') repeat, #F3E640;
}

.contact_buttons .button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact .section_heading_title {
  display: inline-block;
  padding-bottom: 16px;
  background-image: repeating-linear-gradient(
    to right,
    #333 0,
    #333 3px,
    transparent 3px,
    transparent 10px
  );
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 1px;
}

.contact .section_heading {
  margin-bottom: 38px;
}

.contact_text {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(15px, calc((16 / 1440) * 100vw), 16px);
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}

.contact_buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 44px;
}

@media (max-width: 1200px) {
  .footer_inner {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .footer_illustration {
    display: none;
  }
}

@media (max-width: 968px) {
  .footer_contact {
    gap: 16px;
    margin-top: 8px;
  }

  .footer_deco_top {
    display: block;
    position: absolute;
    top: 40px;
    right: 24px;
    width: 80px;
    height: auto;
  }

  .footer_inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer_brand {
    padding-top: 0;
  }

  .footer_navs {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer_nav_group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
    padding: 8px 0 0;
  }

  .footer_nav_block + .footer_nav_block {
    margin-top: 0;
  }

  .footer_nav_block {
    padding: 6px 16px;
  }

  .footer_nav_list {
    display: none;
  }

  .footer_bottom {
    margin-top: 30px;
    padding-top: 24px;
    padding-bottom: 80px;
  }

  .contact {
    padding: 40px 0;
  }

  .contact_panel {
    padding: 44px 20px 32px;
  }

  .contact_buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* =========================
  review
========================= */

.review {
  padding: 58px 0 88px;
  background: var(--color_white);
}

.review_summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f3f3f3;
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 18px);
  line-height: 1.2;
}

.review_logo {
  font-weight: 700;
}

.review_rate {
  color: #f4b400;
  letter-spacing: 0.08em;
}

.review_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.review_card {
  padding: 18px 18px 20px;
  border-radius: 12px;
  background: #f3f3f3;
}

.review_card_head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.review_card_head strong {
  font-size: clamp(15px, calc((16 / 1440) * 100vw), 16px);
  line-height: 1.2;
  color: var(--color_black);
}

.review_card_head span,
.review_card p {
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 14px);
  line-height: 1.7;
}

.review_stars {
  margin-bottom: 10px;
  color: #f4b400;
}

@media (max-width: 968px) {
  .review {
    padding: 40px 0 72px;
  }

  .review_summary {
    flex-wrap: wrap;
    border-radius: 8px;
  }

  .review_grid {
    grid-template-columns: 1fr;
  }

  .review_card {
    border-radius: 8px;
  }
}

/* -------------------------------------------------------
 * WordPress: Elementor kit の a スタイル打ち消し
 * 各エリア内の未指定リンクを inherit でリセット（上記の親クラス付き各セレクタが優先）
 * ------------------------------------------------------- */
body .main a,
body .header a,
body .footer a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

body .main button,
body .header button,
body .footer button {
  background-color: transparent;
  color: inherit;
}

/* ============================================
   追従バナー（旧 Elementor ポップアップの置き換え）
   スクロール 5% で .is_visible が付与され表示される
   ============================================ */
.popup_banner {
  position: fixed;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.popup_banner.is_visible {
  opacity: 1;
  visibility: visible;
}

.popup_pc {
  right: 8px;
  bottom: 8px;
  width: 231px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.popup_pc img {
  display: block;
  width: 100%;
  height: auto;
}

.popup_sp {
  display: none;
}

@media (max-width: 768px) {
  .popup_pc {
    display: none;
  }

  .popup_sp {
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  }

  .popup_sp_banner img {
    display: block;
    width: 100%;
    height: auto;
  }

  .popup_sp_buttons {
    display: flex;
    background: #fff;
  }

  .popup_sp_button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
  }

  .popup_sp_tel {
    background: #FA7F18;
  }

  .popup_sp_line {
    background: #35C415;
  }

  /* SPメニュー展開中は隠す */
  body.is_menu_open .popup_sp {
    opacity: 0;
    visibility: hidden;
  }
}
