﻿@charset "utf-8";

/* 標準CSSでは$変数が使えないため、ルートでカスタムプロパティとして定義します */

:root {
  --color-base: #950d0f;
  --color-main: #b0005e;
  --color-accent: #ffc0d7;
  --color-accent-2: #ffaaaa;
  --color-font: #eee;
  --color-footer: #333;

  --fs-40: 40px;
  --fs-32: 32px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-14: 14px;

  --breakpoint-pc: 1023px;
  --breakpoint-tablet: 767px;
  --breakpoint-min: 320px;
}

@media (max-width: 1023px) {
  :root {
    --fs-40: 36px;
    --fs-32: 30px;
    --fs-24: 23px;
    --fs-20: 19px;
    --fs-18: 16px;
    --fs-16: 15px;
    --fs-14: 13px;
  }
}

@media (max-width: 500px) {
  :root {
    --fs-40: 32px;
    --fs-32: 26px;
    --fs-24: 20px;
    --fs-20: 18px;
    --fs-18: 15px;
    --fs-16: 14px;
    --fs-14: 12px;
  }
}

/* ===========================================
  テーマCocoonのリセット
=========================================== */
/*1-1.メインレイアウトの全幅化（ホーム専用）*/

.home #main,
.page-id-399 #main,
.post-type-archive-gallery_pro #main,
.post-type-archive-gallery_fan #main,
.post-type-archive-gallery_vam #main,
.single-gallery_vam #main,
.page-template-page-legal-php #main {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
}

.page-id-399 #content,
.post-type-archive-gallery_pro #content,
.post-type-archive-gallery_fan #content,
.post-type-archive-gallery_vam #content,
.single-gallery_vam #content,
.page-template-page-legal-php #content {
  margin-top: 0;
}

.single-gallery_vam .content {
  margin-top: 0;
}

.home .article,
.page-id-399 .article,
.post-type-archive-gallery_pro .article,
.post-type-archive-gallery_fan .article,
.post-type-archive-gallery_vam .article,
.single-gallery_vam .article,
.page-template-page-legal-php .article {
  border-radius: 0;
}

.home .wb-theme-reset {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.page-id-399 .content-in.wrap,
.post-type-archive-gallery_pro .content-in.wrap,
.post-type-archive-gallery_fan .content-in.wrap,
.post-type-archive-gallery_vam .content-in.wrap,
.single-gallery_vam .content-in.wrap,
.page-template-page-legal-php .content-in.wrap {
  max-width: none;
  width: 100%;
}

/* bodyの指定：.homeクラスを使用して詳細度を上げる */

body.home,
body.page-id-399,
body.post-type-archive-gallery_pro,
body.post-type-archive-gallery_fan,
body.post-type-archive-gallery_vam,
body.single-gallery_vam,
body.page-template-page-legal-php {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-font);
  line-height: 1.75;
  letter-spacing: 0.05em;
  background-color: var(--color-base);
  animation: pageFadeIn 3s cubic-bezier(0.33, 1, 0.68, 1) both;
}

/* ===========================================
  ここから自作html
=========================================== */

@keyframes pageFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 1.4s ease-out;
  will-change: opacity, transform;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

a:link {
  color: #fff;
  text-decoration: none;
}

a:visited {
  color: #e8b8c8;
}

a:hover {
  color: #ff9ab8;
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:active {
  color: #e0b4b5;
}

.no-visited-color {
  color: #eee;
}

.fs-40 {
  font-size: var(--fs-40);
}

.fs-32 {
  font-size: var(--fs-32);
}

.fs-24 {
  font-size: var(--fs-24);
}

.fs-20 {
  font-size: var(--fs-20);
}

.fs-18 {
  font-size: var(--fs-18);
}

.fs-16 {
  font-size: var(--fs-16);
}

.fs-14 {
  font-size: var(--fs-14);
}

h2 {
  line-height: 1;
  margin-bottom: clamp(15px, 5vw, 70px);
}

/* フレックスボックス */
.model-flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.model-inner {
  max-width: 1340px;
  width: min(90vw, 100%);
  margin-inline: auto;
  padding: 160px 30px;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .model-inner {
    padding: min(12vw, 120px) 30px;
  }

  .wb-event .model-inner,
  .wb-new .model-inner,
  .wb-schedule .model-inner,
  .wb-favorite .model-inner,
  .wb-collect .model-inner,
  .subpage-gallery .model-inner {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wb-welcome .model-inner,
  .wb-event .model-inner,
  .wb-collect .model-inner,
  .wb-new .model-inner,
  .wb-share .model-inner,
  .wb-popular .model-inner,
  .wb-favorite .model-inner,
  .wb-info .model-inner,
  .subpage-gallery .model-inner,
  .subpage-enjoy,
  .wb-gallery-archive--vam .model-inner,
  .wb-footer .model-inner,
  .subpage-legal .model-inner {
    width: 100%;
    padding: 60px min(3vw, 15px);
  }
}

.model-btn {
  display: block;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  width: fit-content;
  text-align: center;
  padding: 0.5em 3em;
  border-radius: 0.3em;
  white-space: nowrap;
  cursor: pointer;
}

.wb-bat-btn {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding: 1.2em 1.8em;
  margin: min(10vw, 60px) auto 0;
  border-radius: 0;
  background-image: url(../image/wb-common/Bat-btn.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.wb-bat-btn2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  min-width: 9em;
  padding: 1em 1.8em;
}

.wb-bat-btn2 span,
.wb-bat-btn2 small {
  display: block;
  letter-spacing: 0.05em;
}

.wb-bat-btn2 span {
  font-size: 1em;
  padding-left: 1em;
}

.wb-bat-btn2 small {
  font-size: 60%;
  font-weight: 400;
}

.wb-line-limit {
  overflow: hidden;

  display: -webkit-box;
  -webkit-box-orient: vertical;

  word-break: break-all;

  &.limit-1 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  &.limit-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

/* ===========================================
  Header Section (ヘッダー)
=========================================== */

.wb-header-content {
  width: 100%;
  z-index: 10;
  background: linear-gradient(to top, rgba(48, 0, 0, 0.2) 0%, rgba(48, 0, 0, 0.6) 40%, rgb(48, 0, 0, 1) 80%);
}

.wb-header-content.sub,
.wb-header-content.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.wb-header-content.is-fixed {
  animation: slideDown 0.3s ease-out;
}

.wb-header-column {
  width: 100%;

  height: 85px;
  margin: 0 auto;
  padding: 5px 2em;
  box-sizing: border-box;
}

.wb-header-column {
  & h1 {
    font-weight: bold;
    white-space: nowrap;

    background: linear-gradient(to bottom, #ddd 40%, #ffaccb 60%);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
  }
}

.wb-header-logo {
  display: block;
  width: auto;
  height: 100%;

  & h1 {
    display: none;
  }

  & a {
    height: 100%;
  }

  & img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}

/* --- G-nav (Gナビゲーション) --- */

.wb-gnav-menu {
  letter-spacing: 0.01em;
  text-align: center;
  width: fit-content;
  height: 100%;
}

.wb-gnav-list {
  padding: 0 0.7em;
  margin-top: 0.5em;
  height: 100%;
  line-height: 1;

  &.hidden {
    display: none;
  }

  &:nth-child(-n + 3) {
    border-right: solid 1px var(--color-font);
  }
}

.wb-header-content.sub .wb-gnav-list.hidden {
  display: block;
}

.wb-gnav-list a span {
  display: block;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
}

.wb-gnav-list a small {
  font-style: italic;
}

.wb-gnav-list--has-child {
  position: relative;
}

.wb-gnav-parent {
  display: block;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: 1;
  text-align: center;
  letter-spacing: inherit;
  background: transparent;
  border: 0;
  cursor: default;
}

.wb-gnav-parent span {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.wb-gnav-parent small {
  font-style: italic;
}

.wb-gnav-child {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  z-index: 20;
  min-width: 210px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background-color: rgba(51, 51, 51, 0.96);
  border: 3px solid rgb(149, 13, 15, 0.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s;
}

.wb-gnav-list--has-child:hover .wb-gnav-child,
.wb-gnav-list--has-child:focus-within .wb-gnav-child {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.wb-gnav-list--has-child.is-submenu-reset .wb-gnav-child {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
}

.wb-gnav-child li {
  position: relative;
  margin: 0 12px;
}

.wb-gnav-child li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.wb-gnav-child a {
  display: grid;
  grid-template-columns: 5em 3em;
  align-items: baseline;
  justify-content: center;
  gap: 0.6em;
  padding: 12px 10px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.25s,
    transform 0.25s;
}

.wb-gnav-child a::before {
  content: none;
  width: 6px;
  height: 1px;
  background-color: #950d0f;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s;
}

.wb-gnav-child a:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateX(2px);
}

.wb-gnav-child a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.wb-gnav-child a span {
  display: block;
  width: auto;
  margin: 0;
  text-align: left;
}

.wb-gnav-child a small {
  display: block;
  font-size: 90%;
  font-style: italic;
  text-align: left;
  opacity: 0.75;
}

.hmb-icon {
  display: none;
  width: 50px;
  aspect-ratio: 1 / 1;
  padding: 5px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: clamp(15px, 3vw, 20px);
  z-index: 2;

  & img {
    width: 100%;
    height: auto;
    min-width: 28px;
  }
}

/* ページトップボタンの基本スタイル */

.pagetop-icon {
  position: fixed;
  bottom: 15px;
  right: clamp(15px, 3vw, 20px);
  width: 50px;
  aspect-ratio: 1 / 1;
  z-index: 10;
  cursor: pointer;
  background: rgba(255, 240, 248, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 8px 18px rgba(45, 0, 10, 0.35);
  filter: drop-shadow(0 0 6px rgba(255, 192, 215, 0.45));
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s,
    visibility 0.5s,
    filter 0.3s,
    transform 0.3s;
}

.pagetop-icon.is-visible {
  opacity: 1;
  visibility: visible;
}

.pagetop-icon:hover {
  filter: brightness(1.12) drop-shadow(0 0 10px rgba(255, 192, 215, 0.65));
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .wb-header-column h1 {
    font-size: var(--fs-20);
  }
}

@media (min-width: 1024px) and (max-width: 1127px) {
  .wb-header-column {
    padding: 5px 1em;
    column-gap: 1.2vw;
  }

  .wb-header-column > h1 {
    font-size: var(--fs-18);
    letter-spacing: 0;
  }

  .wb-gnav-menu {
    letter-spacing: 0;
  }

  .wb-gnav-list {
    padding: 0 0.45em;
  }

  .wb-gnav-list a span,
  .wb-gnav-parent span {
    font-size: 0.92em;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .wb-gnav-list a small,
  .wb-gnav-parent small {
    font-size: 0.88em;
    white-space: nowrap;
  }
}

@media (max-width: 1023px) {
  .wb-header-column {
    gap: 3vw;

    & > h1 {
      display: none;
    }
  }

  .wb-gnav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 35px;

    width: fit-content;
    height: 100vh;
    background-color: rgb(51, 51, 51, 0.95);
    padding: 100px 5vw;
    font-size: clamp(1em, 2vw, 1.5em);

    .wb-gnav-list {
      height: fit-content;
      border-right: unset;
      border-bottom: 1px solid #aaa;
      line-height: 1.4;
      padding: 0;
      margin: 0;

      & a {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5em;
      }

      & a span {
        width: 7em;
        margin: 0;
        text-align: left;
      }
    }

    .wb-gnav-list:nth-child(3) {
      border-bottom: 0;
    }
  }

  .wb-header-logo {
    display: flex;
    gap: 3vw;

    & h1 {
      display: block;
    }
  }

  .wb-gnav-parent {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    width: 100%;
    padding: 0 0 4px;
    color: inherit;
    text-align: left;
    border-bottom: 1px solid #aaa;
  }

  .wb-gnav-parent span {
    width: 7em;
    margin: 0;
    text-align: left;
  }

  .wb-gnav-child {
    position: static;
    min-width: 0;
    width: fit-content;
    padding: 10px 0 0;
    margin: 0 0 0 auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .wb-gnav-child li {
    width: fit-content;
    margin: 0;
    border-bottom: 1px solid #aaa;
  }

  .wb-gnav-child a {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0.5em;
    width: fit-content;
    padding: 8px 0;
    text-decoration: none;
    white-space: nowrap;
  }

  .wb-gnav-child a::before {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #eee;
    transform: scaleX(1);
  }

  .wb-gnav-child a:hover {
    background-color: transparent;
    transform: none;
  }

  .wb-gnav-child a span {
    display: inline;
    width: auto;
    margin: 0;
    text-align: left;
  }

  .wb-gnav-child a small {
    font-size: 1em;
    font-style: italic;
    opacity: 0.75;
  }

  .wb-header-logo {
    display: flex;
    gap: 3vw;

    & h1 {
      display: block;
    }
  }
}

@media (max-width: 767px) {
  .wb-header-column {
    height: min(20vw, 75px);
  }

  .wb-header-logo {
    flex-direction: column;
    justify-content: center;
    gap: 0;

    & h1 {
      line-height: 1.2;
    }

    & img {
      height: min(12vw, 50px);
    }
  }
}

@media (max-width: 500px) {
  .wb-header-column {
    padding: 5px 0.5em;
    margin: 0;
  }

  .wb-header-column h1 {
    font-size: 12px;
    margin: 0 auto;
  }
}

/* ページトップボタンの基本スタイル */
.pagetop-icon {
  position: fixed;
  bottom: 15px;
  right: clamp(15px, 3vw, 20px);
  width: 50px;
  aspect-ratio: 1 / 1;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}
.pagetop-icon.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1200px) {
  .wb-header-column h1 {
    font-size: var(--fs-20);
  }
}
@media (max-width: 1023px) {
  .wb-header-column {
    gap: 3vw;
    & > h1 {
      display: none;
    }
  }
  .wb-gnav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch; /*※重要：centerを解除、下線をいっぱいに広げる*/
    gap: 35px;
    width: fit-content;
    height: 100vh;
    background-color: rgb(51, 51, 51, 0.95);
    padding: 100px 5vw;
    font-size: clamp(1em, 2vw, 1.5em);
    .wb-gnav-list {
      height: fit-content;
      border-right: unset;
      border-bottom: 1px solid #aaa;
      line-height: 1.4;
      padding: 0;
      margin: 0;
      & a {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5em;
      }
      & a span {
        width: 7em;
        margin: 0;
        text-align: left;
      }
    }
    .wb-gnav-list:nth-child(3) {
      border-bottom: 0;
    }
  }
  .wb-header-logo {
    display: flex;
    gap: 3vw;
    & h1 {
      display: block;
    }
  }
  .wb-gnav-parent {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    width: 100%;
    padding: 0 0 4px;
    color: inherit;
    text-align: left;
    border-bottom: 1px solid #aaa;
  }
  .wb-gnav-parent span {
    width: 7em;
    margin: 0;
    text-align: left;
  }
  .wb-gnav-child {
    position: static;
    min-width: 0;
    width: fit-content;
    padding: 10px 0 0;
    margin: 0 0 0 auto; /*子メニューを右寄せ*/
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .wb-gnav-child li {
    width: fit-content;
    margin: 0;
    border-bottom: 1px solid #aaa;
  }
  .wb-gnav-child a {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0.5em;
    width: fit-content;
    padding: 8px 0;
    text-decoration: none;
    white-space: nowrap;
  }
  .wb-gnav-child a::before {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #eee;
    transform: scaleX(1);
  }
  .wb-gnav-child a:hover {
    background-color: transparent;
    transform: none;
  }
  .wb-gnav-child a span {
    display: inline;
    width: auto;
    margin: 0;
    text-align: left;
  }
  .wb-gnav-child a small {
    font-size: 0.8em;
    font-style: italic;
    opacity: 0.75;
  }
  .wb-header-logo {
    display: flex;
    gap: 3vw;
    & h1 {
      display: block;
    }
  }
}
@media (max-width: 767px) {
  .wb-header-column {
    height: min(20vw, 75px);
  }
  .wb-header-logo {
    flex-direction: column;
    justify-content: center;
    gap: 0;
    & h1 {
      line-height: 1.2;
    }
    & img {
      height: min(12vw, 50px);
    }
  }
}
@media (max-width: 500px) {
  .wb-header-column {
    padding: 5px 0.5em;
    margin: 0;
  }
  .wb-header-column h1 {
    font-size: 12px;
    margin: 0 auto;
  }
}

.wb-sub-image {
  width: 100%;
  height: 60vw;
  max-height: 600px;
  overflow: hidden;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
  }
}

.wb-sub-image {
  position: relative;
}

.wb-sub-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;

  font-family: "Playfair Display", serif;
  font-style: italic;
  text-shadow: 1px 1px 50px #70003c;

  white-space: nowrap;

  &::after {
    content: "";
    position: absolute;

    left: 100%;

    top: 25%;
    transform: translateY(-50%);

    width: clamp(160px, 18vw, 300px);
    height: auto;
    aspect-ratio: 160 / 125;
    margin-left: 1vw;

    background-image: url(../image/wb-common/pet_bat.png);
    background-size: contain;
    background-repeat: no-repeat;

    animation: bird-float 3s ease-in-out infinite;
  }
}

@keyframes bird-float {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-60%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.wb-sub-text .en {
  font-size: var(--fs-40);

  font-weight: bold;
  display: block;
}

.wb-sub-text .ja {
  font-size: var(--fs-24);
  display: block;
}

@media (max-width: 767px) {
  .wb-sub-text {
    top: 60%;
  }
}
@media (max-width: 500px) {
  .wb-sub-text {
    line-height: 1.5;

    &::after {
      width: 110px;
      left: 80%;
      top: 100%;
    }
  }

  .wb-sub-text .en {
    font-size: var(--fs-32);
  }

  .wb-sub-text .ja {
    font-size: var(--fs-16);
  }
}

@media (max-width: 1023px) {
  .wb-gnav-menu {
    transform: translateX(100%);
    opacity: 0;
    transition:
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.25s ease-out;
    will-change: transform, opacity;
    overflow-y: auto;

    .wb-gnav-list {
      opacity: 0;
      transform: translateY(20px);

      transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1s ease;
    }
  }

  .header-menu-toggle:checked ~ .wb-gnav-menu {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
  }

  .header-menu-toggle:checked ~ .wb-gnav-menu .wb-gnav-list {
    opacity: 1;
    transform: translateY(0);

    &:nth-child(1) {
      transition-delay: 0.3s;
    }
    &:nth-child(2) {
      transition-delay: 0.4s;
    }
    &:nth-child(3) {
      transition-delay: 0.5s;
    }
    &:nth-child(4) {
      transition-delay: 0.6s;
    }
  }

  .header-hamburger {
    position: relative;
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 6px;
    background-color: var(--color-main);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
  }

  .header-hamburger span {
    position: absolute;
    background: var(--color-accent);
    border-radius: 1px;
    transition: all 0.6s;
  }

  .header-hamburger span:nth-of-type(1) {
    top: 4px;
    width: 5px;

    left: 17px;
    height: 7px;
  }

  .header-hamburger span:nth-of-type(2) {
    top: 13px;
    width: 30px;

    left: 5px;
    height: 5px;
  }

  .header-hamburger span:nth-of-type(3) {
    top: 20.5px;
    width: 5px;

    left: 17px;
    height: 15px;
  }

  .header-menu-toggle:checked + .header-hamburger span {
    width: 40px;
    left: 0;
  }

  .header-menu-toggle:checked + .header-hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);

    width: 30px;
    top: 3px;
    left: 10px;
    height: 5px;
  }
  .header-menu-toggle:checked + .header-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .header-menu-toggle:checked + .header-hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);

    width: 40px;
    height: 5px;
    top: 26px;
  }
}

/* ===========================================
  Sectionタイトル (全般)
=========================================== */

.wb-sect-title {
  position: relative;
  width: 16.5em;
  max-width: 660px;
  min-width: 230px;
  aspect-ratio: 9.2 / 1;
  margin: 0 auto min(18vw, 110px);
  z-index: 0;

  font-size: var(--fs-40);

  box-sizing: border-box;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: -1;
    pointer-events: none;
  }
}

.wb-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-bottom: 0.5px solid #bc8f8f;
  line-height: 1;
}

.wb-title-container {
  & span {
    letter-spacing: 0.07em;
  }

  & small {
    font-size: 60%;
    margin-top: 12px;
  }
}

.wb-sect-title.wb-sect-title--with-lead {
  margin-bottom: 24px;
}

.wb-section-lead {
  max-width: 760px;
  margin: 0 auto 56px;
  color: rgba(238, 238, 238, 0.9);
  font-size: var(--fs-18);
  font-weight: 400;
  font-style: italic;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 2px 14px rgba(45, 0, 10, 0.35);

  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media (max-width: 1023px) {
  .wb-sect-title {
    margin: 0 auto clamp(50px, 8vw, 70px);
  }
}

@media (max-width: 767px) {
  .wb-sect-title {
    width: 10.5em;

    &::before {
      transform: translate(-50%, -46%);
    }
  }

  .wb-title-container {
    flex-direction: column;
    gap: 0;
    border: none;

    & span {
      width: 100%;
      text-align: center;
      border-bottom: 0.5px solid #bc8f8f;
    }

    & small {
      margin-top: 0.1em;
    }
  }
}

@media (max-width: 500px) {
  .wb-sect-title {
    font-size: clamp(26px, 2.6vw, 32px);
  }

  .wb-section-lead.wb-event-lead {
    max-width: 90%;
    line-height: 1.85;
    letter-spacing: 0;
    text-align: left;
    word-break: normal;
    overflow-wrap: normal;
  }
}

/* ===========================================
  Sectionタイトル (サブページ)
=========================================== */

.wb-subpage .wb-title-container {
  font-family: "Playfair Display", serif;

  font-style: italic;
}

@media (max-width: 500px) {
  .wb-subpage .wb-sect-title {
    font-size: clamp(22px, 2.6vw, 32px);
  }
}

/* ===========================================
  Footer Section (フッター)
=========================================== */

.wb-footer {
  background-color: #333;
}

.wb-footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;

  & img + img {
    margin-top: 10px;
  }
}

.wb-footer-sns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(6vw, 50px);
  width: fit-content;
  max-width: 700px;
  margin: max(8vw, 60px) auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;

  & img {
    border-radius: 3px;
  }
}

.wb-sns-link {
  height: fit-content;
  overflow: hidden;

  & img {
    width: auto;
    height: 60px;
  }
}

.sns-iriam,
.sns-setlink {
  display: flex;
  width: 190px;
  flex-direction: column;
  align-items: center;
}

.sns-x,
.sns-yt {
  display: block;
  margin: 0 auto;
}

.sns-setlink img {
  background-color: #a3d7fe;
  object-fit: contain;
  padding: 0 15px;
}

.wb-footer-copyright {
  display: block;
  text-align: center;
}

.wb-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 0 auto 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fs-14);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .wb-footer-logo img {
    &:nth-child(1) {
      width: 20vw;
      aspect-ratio: 7 / 5;
      height: auto;
    }

    &:nth-child(2) {
      width: 60vw;
      aspect-ratio: 5 / 1;
      height: auto;
    }
  }

  .wb-footer-sns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;

    & a {
      transform: scale(0.8);
    }
  }
}

@media (max-width: 500px) {
  .wb-footer-sns {
    & > :nth-child(n + 3) {
      grid-column: 1 / -1;
    }

    & a {
      transform: scale(0.7);
    }
  }
}

/* ===========================================
  共通アニメーション
=========================================== */

.wb-bat-btn:hover {
  text-decoration: none;
  animation: bat-fly 0.6s ease-in-out forwards;
  filter: brightness(1.08) drop-shadow(0 10px 16px rgba(45, 0, 10, 0.35));
}

@keyframes bat-fly {
  0% {
    transform: translateY(0) scale(1.05) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) scale(1.08) rotate(2deg);
  }
  50% {
    transform: translateY(0) scale(1.05) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) scale(1.08) rotate(-2deg);
  }
  100% {
    transform: translateY(0) scale(1.05) rotate(0deg);
  }
}

@media (max-width: 1023px) {
  .wb-gnav-list--has-child:hover .wb-gnav-child,
  .wb-gnav-list--has-child:focus-within .wb-gnav-child {
    transform: none !important;
  }

  .wb-gnav-child,
  .wb-gnav-child a,
  .wb-gnav-child a::before {
    transition: none !important;
  }

  .wb-gnav-child a:hover,
  .wb-gnav-child a:focus,
  .wb-gnav-child a:active {
    background-color: transparent !important;
    transform: none !important;
  }
}
