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

* {
  margin: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

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

ul,
ol {
  list-style: none;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#root,
#__next {
  isolation: isolate;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #1A1A1A;
  background-color: #F0F0F0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 6px 6px;
  font-feature-settings: "palt";
  overflow-x: hidden;
  overflow-x: clip;
}

.en {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  letter-spacing: 0.08em;
}

.section-title {
  text-align: center;
}
.section-title__en {
  display: block;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #292929;
}
@media (max-width: 767px) {
  .section-title__en {
    font-size: 22px;
  }
}
.section-title__jp {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #707070;
}
@media (max-width: 767px) {
  .section-title__jp {
    font-size: 12px;
  }
}
.section-title--on-dark .section-title__en {
  color: #FFFFFF;
}

.l-header {
  position: fixed;
  top: 34px;
  left: 45px;
  right: 45px;
  height: 87px;
  z-index: 100;
  color: #FFFFFF;
  border-radius: 9999px;
  background-color: rgba(14, 14, 14, 0.76);
}
@media (max-width: 1199px) {
  .l-header {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 56px;
    border-radius: 28px;
  }
}
.l-header__inner {
  width: 100%;
  height: 100%;
  padding-inline: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1199px) {
  .l-header__inner {
    padding-inline: 20px;
  }
}
.l-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.l-header__logo img {
  height: 46px;
  width: auto;
}
@media (max-width: 1199px) {
  .l-header__logo img {
    height: 28px;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1199px) {
  .l-header__nav {
    position: fixed;
    inset: 0;
    background-color: rgba(14, 14, 14, 0.98);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow-y: auto;
    padding: 90px 24px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 99;
  }
}
@media (max-width: 1199px) {
  .l-header__nav.is-open {
    transform: translateX(0);
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1199px) {
  .l-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.l-header__nav-item {
  position: relative;
}
@media (max-width: 1199px) {
  .l-header__nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.l-header__nav-link {
  display: inline-block;
  padding: 6px 0;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .l-header__nav-link {
    display: block;
    padding: 18px 8px;
    font-size: 16px;
  }
}
.l-header__nav-link.is-current::after {
  width: 100%;
  left: 0;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-link:hover::after {
    width: 100%;
    left: 0;
  }
}
.l-header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: width 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), left 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-item--has-dropdown:hover .l-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 1199px) {
  .l-header__nav-item--has-dropdown.is-open .l-header__dropdown {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
  }
}
.l-header__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 120px;
  background-color: rgba(14, 14, 14, 0.9);
  border: 1px solid #FFFFFF;
  padding: 10px 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.l-header__dropdown::before, .l-header__dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.l-header__dropdown::before {
  top: -10px;
  border-width: 0 9px 10px 9px;
  border-color: transparent transparent #FFFFFF transparent;
}
.l-header__dropdown::after {
  top: -8px;
  border-width: 0 8px 9px 8px;
  border-color: transparent transparent rgba(14, 14, 14, 0.95) transparent;
}
@media (max-width: 1199px) {
  .l-header__dropdown {
    position: static;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.2s;
    box-shadow: none;
    padding: 0;
    border: 0;
  }
  .l-header__dropdown::before, .l-header__dropdown::after {
    display: none;
  }
}
.l-header__dropdown-item {
  display: block;
  padding: 4px 6px;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.l-header__dropdown-item::before {
  content: "■";
  margin-right: 6px;
  color: #FFFFFF;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__dropdown-item:hover {
    color: #fb6320;
  }
  .l-header__dropdown-item:hover::before {
    color: #fb6320;
  }
}
@media (max-width: 1199px) {
  .l-header__dropdown-item {
    padding: 12px 28px;
  }
}
.l-header__sns {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  margin-left: 18px;
}
@media (max-width: 1199px) {
  .l-header__sns {
    margin-top: 24px;
    margin-left: 0;
    justify-content: center;
    gap: 24px;
  }
}
.l-header__sns-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__sns-item--has-dropdown:hover .l-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 1199px) {
  .l-header__sns-item--has-dropdown.is-open .l-header__dropdown {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
  }
}
.l-header__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .l-header__sns-link:hover {
    opacity: 0.7;
  }
}
.l-header__sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-header__sns-link:has(img[src*=sns-x]) img,
.l-header__sns-link img[src*=sns-x] {
  width: 22px;
  height: 22px;
}
.l-header__dropdown--icon {
  top: calc(100% + 14px);
}
@media (max-width: 1199px) {
  .l-header__dropdown--icon {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    max-height: 0;
    overflow: hidden;
    display: none;
  }
}
.l-header__hamburger {
  display: none;
  position: relative;
  z-index: 101;
}
@media (max-width: 1199px) {
  .l-header__hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 6px 4px;
    cursor: pointer;
  }
}
.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1199px) {
  .l-header__pc-only {
    display: none !important;
  }
}
.l-header__sp-only {
  display: none !important;
}
@media (max-width: 1199px) {
  .l-header__sp-only {
    display: inline-flex !important;
  }
}

.l-footer {
  position: relative;
  background-color: #000;
  background-image: url("../images/common/footer/accent.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 690px auto;
  color: #FFFFFF;
  padding: 25px 40px 25px 100px;
  min-height: 154px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 24px 20px;
    background-size: cover;
    background-position: center;
  }
}
.l-footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1700px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 24px;
}
@media (max-width: 767px) {
  .l-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }
}
.l-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 767px) {
  .l-footer__brand {
    align-items: center;
  }
}
.l-footer__logo img {
  height: 74px;
  width: auto;
}
@media (max-width: 767px) {
  .l-footer__logo img {
    height: 44px;
  }
}
.l-footer__copyright {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  padding-left: 4px;
}
@media (max-width: 767px) {
  .l-footer__copyright {
    padding-left: 0;
    font-size: 11px;
  }
}
.l-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
@media (max-width: 767px) {
  .l-footer__meta {
    align-items: center;
  }
}
.l-footer__sns {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.l-footer__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #FFFFFF;
  transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__sns-link:hover {
    opacity: 0.7;
  }
}
.l-footer__sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-footer__sns-link img[src*=sns-x] {
  width: 19px;
  height: 19px;
}
.l-footer__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
@media (max-width: 767px) {
  .l-footer__links {
    gap: 18px;
    font-size: 11px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.l-footer__link {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__link:hover {
    color: #fb6320;
  }
}

.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 200px;
  height: 56px;
  padding: 0 24px;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  background-color: #303030;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    background-color: #fb6320;
    border-color: #fb6320;
    transform: translateY(-2px);
  }
}
.c-btn--with-arrow::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
}
.c-btn--accent {
  background-color: #fb6320;
  border-color: #fb6320;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--accent:hover {
    background-color: rgb(237.9321585903, 75.754185022, 4.2678414097);
    border-color: rgb(237.9321585903, 75.754185022, 4.2678414097);
  }
}
.c-btn--outline {
  background-color: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--outline:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
  }
}

.c-contact-us {
  background-color: transparent;
  padding-block: 120px;
}
@media (max-width: 767px) {
  .c-contact-us {
    padding-block: 80px;
  }
}
.c-contact-us__inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .c-contact-us__inner {
    padding-inline: 20px;
  }
}
.c-contact-us__inner {
  text-align: center;
}
.c-contact-us__title {
  margin-bottom: 40px;
}
.c-contact-us__box {
  position: relative;
  overflow: hidden;
  padding: 58px 40px 64px;
  color: #FFFFFF;
  background-color: #404040;
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.22) 0, rgba(0, 0, 0, 0.22) 2px, transparent 2px, transparent 6px);
}
@media (max-width: 767px) {
  .c-contact-us__box {
    padding: 40px 18px 44px;
  }
}
.c-contact-us__box::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 34px 34px 0;
  border-color: transparent transparent #FFFFFF transparent;
}
@media (max-width: 767px) {
  .c-contact-us__box::before {
    left: 8px;
    bottom: 8px;
    border-width: 0 22px 22px 0;
  }
}
.c-contact-us__lead {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .c-contact-us__lead {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.c-contact-us__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-contact-us__buttons {
    flex-direction: column;
    gap: 16px;
  }
}
.c-contact-us__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 420px;
  height: 64px;
  padding: 0 24px 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #FFFFFF;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.c-contact-us__btn::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 64px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (hover: hover) and (pointer: fine) {
  .c-contact-us__btn:hover {
    background-color: #fb6320;
    border-color: #fb6320;
  }
}
@media (max-width: 767px) {
  .c-contact-us__btn {
    min-width: 0;
    width: 100%;
    padding: 0 16px;
    font-size: 18px;
  }
}
.c-contact-us__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-contact-us__btn-icon svg {
  display: block;
  width: 34px;
  height: 34px;
}
.c-contact-us__btn-label {
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-contact-us__btn-label {
    font-size: 22px;
  }
}

.p-news + .c-contact-us,
.p-news-detail + .c-contact-us,
.p-event + .c-contact-us,
.p-event-detail + .c-contact-us,
.p-doc + .c-contact-us,
.p-manual + .c-contact-us {
  background-color: #FFFFFF;
}

.c-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0.4s;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .c-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}
.c-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .c-to-top:hover {
    background-color: #fb6320;
    transform: translateY(-4px);
  }
}
.c-to-top__arrow {
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 6px;
}

.c-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-pager {
    gap: 7px;
    padding-inline: 24px;
    flex-wrap: nowrap;
  }
}
.c-pager__list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
@media (max-width: 767px) {
  .c-pager__list {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.c-pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding-top: 3px;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  background-color: #303030;
  border: 1px solid #303030;
  border-radius: 0;
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-pager__num:hover {
    background-color: #fb6320;
    border-color: #fb6320;
    color: #FFFFFF;
  }
}
.c-pager__num.is-current {
  background-color: transparent;
  border-color: #303030;
  color: #1A1A1A;
  pointer-events: none;
}
.c-pager__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 40px;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 22px;
  line-height: 1;
  color: #303030;
  background-color: transparent;
  border: 0;
  transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-pager__arrow:hover {
    color: #fb6320;
  }
}
.c-pager__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.c-page-head {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .c-page-head {
    padding-inline: 20px;
  }
}
.c-page-head {
  padding-top: 190px;
  padding-bottom: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-page-head {
    padding-top: 110px;
    padding-bottom: 35px;
  }
}

.c-article-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  position: relative;
}
.c-article-head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
}
.c-article-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 153px;
  height: 2px;
  background-color: #1a1a1a;
}
@media (max-width: 767px) {
  .c-article-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.c-article-head__main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.c-article-head__icon {
  flex-shrink: 0;
  margin-top: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 26px 26px 0;
  border-color: transparent transparent #6e6e6e transparent;
}
.c-article-head__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .c-article-head__title {
    font-size: 21px;
  }
}
.c-article-head__sub {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .c-article-head__sub {
    order: -1;
  }
}
.c-article-head__date {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fb6320;
}
@media (max-width: 767px) {
  .c-article-head__date {
    font-size: 15px;
  }
}
.c-article-head__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 7px 24px;
  border: 1px solid #6e6e6e;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #707070;
  white-space: nowrap;
}

.c-lead-head__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767px) {
  .c-lead-head__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.c-lead-head__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .c-lead-head__title {
    font-size: 19px;
  }
}
.c-lead-head__label {
  flex-shrink: 0;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #707070;
}
@media (max-width: 767px) {
  .c-lead-head__label {
    order: -1;
  }
}
.c-lead-head__line {
  position: relative;
  height: 1px;
  background-color: #1a1a1a;
  margin: 18px 0 26px;
}
.c-lead-head__line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 153px;
  height: 1px;
  background-color: #1a1a1a;
}

.c-date-range__end {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .c-date-range__end {
    display: none;
  }
}

.c-date-range__mark {
  display: none;
}
@media (max-width: 767px) {
  .c-date-range__mark {
    display: inline;
  }
}

.u-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.u-fade-up.is-in {
  opacity: 1;
  transform: translateY(0);
}

.u-fade {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.u-fade.is-in {
  opacity: 1;
}

.u-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.u-fade-left.is-in {
  opacity: 1;
  transform: translateX(0);
}

.u-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.u-fade-right.is-in {
  opacity: 1;
  transform: translateX(0);
}

.u-delay-1 {
  transition-delay: 0.1s;
}

.u-delay-2 {
  transition-delay: 0.2s;
}

.u-delay-3 {
  transition-delay: 0.3s;
}

.u-delay-4 {
  transition-delay: 0.4s;
}

.u-delay-5 {
  transition-delay: 0.5s;
}

.u-delay-6 {
  transition-delay: 0.6s;
}

.u-delay-7 {
  transition-delay: 0.7s;
}

.u-delay-8 {
  transition-delay: 0.8s;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-sp-inline-only {
  display: none !important;
}
@media (max-width: 767px) {
  .u-sp-inline-only {
    display: inline !important;
  }
}

.u-ta-c {
  text-align: center;
}

.u-ta-l {
  text-align: left;
}

.u-ta-r {
  text-align: right;
}

.u-section {
  padding-block: 120px;
}
@media (max-width: 767px) {
  .u-section {
    padding-block: 80px;
  }
}

.u-container {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .u-container {
    padding-inline: 20px;
  }
}

.is-placeholder {
  object-fit: contain !important;
  padding: 16%;
  background-color: #dcdcdc;
  opacity: 0.55;
}

.c-flag-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 334px;
  height: 56px;
  padding: 0 25px;
  background-color: #161616;
  background-image: url("../images/top/info/btn-bg.png");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 0;
  transition: filter 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 767px) {
  .c-flag-btn {
    min-width: 0;
    width: 100%;
  }
}
.c-flag-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #FFFFFF;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-flag-btn:hover {
    filter: brightness(1.4);
  }
  .c-flag-btn:hover::before {
    transform: translateX(3px);
  }
}

.c-flag-btns {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-flag-btns {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 20px;
    gap: 15px;
  }
}

.c-flag-dropdown {
  position: relative;
  display: inline-flex;
}
@media (hover: hover) and (pointer: fine) {
  .c-flag-dropdown:hover .c-flag-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
.c-flag-dropdown.is-open .c-flag-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.c-flag-dropdown .c-flag-btn {
  width: 100%;
}
.c-flag-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 220px;
  z-index: 20;
  background-color: rgba(14, 14, 14, 0.95);
  border: 1px solid #FFFFFF;
  padding: 12px 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.c-flag-dropdown__menu::before, .c-flag-dropdown__menu::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.c-flag-dropdown__menu::before {
  top: -10px;
  border-width: 0 9px 10px 9px;
  border-color: transparent transparent #FFFFFF transparent;
}
.c-flag-dropdown__menu::after {
  top: -8px;
  border-width: 0 8px 9px 8px;
  border-color: transparent transparent rgba(14, 14, 14, 0.95) transparent;
}
.c-flag-dropdown__item {
  display: block;
  padding: 9px 6px;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.c-flag-dropdown__item + .c-flag-dropdown__item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.c-flag-dropdown__item::before {
  content: "■";
  margin-right: 8px;
  font-size: 0.8em;
  color: #FFFFFF;
}
@media (hover: hover) and (pointer: fine) {
  .c-flag-dropdown__item:hover {
    color: #fb6320;
  }
  .c-flag-dropdown__item:hover::before {
    color: #fb6320;
  }
}
@media (max-width: 767px) {
  .c-flag-dropdown {
    width: 100%;
    flex-direction: column;
  }
  .c-flag-dropdown__menu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 12px;
    padding: 8px 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    box-shadow: none;
  }
  .c-flag-dropdown.is-open .c-flag-dropdown__menu {
    display: flex;
    align-items: stretch;
    transform: none;
  }
  .c-flag-dropdown__item {
    flex: 1 1 0;
    text-align: center;
    padding: 8px 4px;
  }
  .c-flag-dropdown__item + .c-flag-dropdown__item {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.p-top-kv-wrap {
  background-color: #FFFFFF;
}

.p-top-kv {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/952;
  height: auto;
  min-height: 480px;
  overflow: hidden;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-top-kv {
    aspect-ratio: auto;
    min-height: 500px;
    height: 90vh;
  }
}
.p-top-kv .swiper {
  width: 100%;
  height: 100%;
}
.p-top-kv .swiper-slide {
  position: relative;
  background-color: #1A1A1A;
}
.p-top-kv .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-kv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-kv .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
.p-top-kv__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding-inline: 20px;
}
.p-top-kv__copy-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: clamp(360px, 38vw, 720px);
}
@media (max-width: 767px) {
  .p-top-kv__copy-inner {
    align-items: center;
    width: 100%;
    max-width: 240px;
  }
}
.p-top-kv__title-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
}
.p-top-kv__sub {
  margin-top: 10px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 18px);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.p-top-kv__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 69px;
}
@media (max-width: 767px) {
  .p-top-kv__arrow {
    width: 30px;
    height: 54px;
  }
}
.p-top-kv__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #000;
  border: 0;
  border-radius: 9999px;
  padding: 0;
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-top-kv__arrow:hover {
    background-color: rgba(0, 0, 0, 0.75);
  }
}
.p-top-kv__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.p-top-kv__arrow--prev {
  left: 40px;
}
@media (max-width: 767px) {
  .p-top-kv__arrow--prev {
    left: 10px;
  }
}
.p-top-kv__arrow--next {
  right: 40px;
}
@media (max-width: 767px) {
  .p-top-kv__arrow--next {
    right: 10px;
  }
}
.p-top-kv__arrow::before {
  content: "";
  display: block;
  width: 15px;
  height: 33px;
  background-image: url("../images/common/icon/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .p-top-kv__arrow::before {
    width: 12px;
    height: 26px;
  }
}
.p-top-kv__arrow--prev::before {
  transform: scaleX(-1);
}

.p-top-kv__pagination-wrap {
  padding: 25px 0 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-kv__pagination-wrap {
    padding: 15px 0 20px;
  }
}

.p-top-kv__pagination {
  display: inline-flex;
  justify-content: center;
  gap: 5px;
}
.p-top-kv__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 !important;
  border-radius: 50%;
  background-color: #c8c8c8;
  opacity: 1;
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: pointer;
}
.p-top-kv__pagination .swiper-pagination-bullet-active {
  background-color: #2a2a2a;
}

.p-top-schedule {
  position: relative;
  padding-top: 80px;
  padding-bottom: 140px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-schedule {
    padding-top: 55px;
    padding-bottom: 95px;
  }
}
.p-top-schedule__title-wrap {
  position: relative;
  text-align: center;
  z-index: 3;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-top-schedule__title-wrap {
    margin-bottom: 30px;
  }
}
.p-top-schedule__wave-left, .p-top-schedule__wave-right {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  height: auto;
}
.p-top-schedule__wave-left {
  top: 0;
  left: 0;
  width: 36%;
  max-width: 692px;
  transform: translateY(-30%);
}
@media (max-width: 767px) {
  .p-top-schedule__wave-left {
    width: 50%;
    transform: translateY(-25%);
  }
}
.p-top-schedule__wave-right {
  bottom: 0;
  right: 0;
  width: 44%;
  max-width: 844px;
  transform: translateY(45%);
}
@media (max-width: 767px) {
  .p-top-schedule__wave-right {
    width: 50%;
    transform: translateY(40%);
  }
}
.p-top-schedule__band {
  position: relative;
  background-color: transparent;
  padding-block: 70px 70px;
  z-index: 2;
  isolation: isolate;
}
.p-top-schedule__band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1A1A1A;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top-schedule__band {
    padding-block: 50px;
  }
}
.p-top-schedule__list {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-inline: 0;
}
.p-top-schedule__list:hover .p-top-schedule__list-track {
  animation-play-state: paused;
}
.p-top-schedule__list-track {
  display: flex;
  gap: 25px;
  width: max-content;
  will-change: transform;
}
.is-ready .p-top-schedule__list-track {
  animation: ticker-scroll var(--ticker-duration, 60s) linear infinite;
}
.p-top-schedule__list-item {
  flex-shrink: 0;
  width: 320px;
}
@media (max-width: 767px) {
  .p-top-schedule__list-item {
    width: 240px;
  }
}
.p-top-schedule__btns {
  position: relative;
  z-index: 5;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .p-top-schedule__btns {
    margin-top: 30px;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--ticker-distance, -2000px));
  }
}
.p-top-schedule__card {
  display: block;
  position: relative;
  color: #1A1A1A;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-top-schedule__card:hover {
    transform: translateY(-6px);
  }
}
.p-top-schedule__card-thumb {
  aspect-ratio: 4/3;
}
@supports not (aspect-ratio: 1) {
  .p-top-schedule__card-thumb {
    position: relative;
  }
  .p-top-schedule__card-thumb::before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .p-top-schedule__card-thumb > * {
    position: absolute;
    inset: 0;
  }
}
.p-top-schedule__card-thumb {
  overflow: hidden;
}
.p-top-schedule__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-top-schedule__card:hover .p-top-schedule__card-thumb img {
    transform: scale(1.06);
  }
}
.p-top-schedule__card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 45px 15px 15px;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 1;
}
.p-top-schedule__card-date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fb6320;
  margin-bottom: 5px;
}
.p-top-schedule__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-top-schedule__card-arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  background-color: #fb6320;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-schedule__card:hover .p-top-schedule__card-arrow {
    transform: scale(1.1);
  }
}

.p-top-calendar {
  background-color: #FFFFFF;
  padding-block: 80px 100px;
}
@media (max-width: 767px) {
  .p-top-calendar {
    padding-block: 55px 65px;
  }
}
.p-top-calendar__title-wrap {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-top-calendar__title-wrap {
    margin-bottom: 30px;
  }
}
.p-top-calendar__frame {
  width: 100%;
  max-width: 1484px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .p-top-calendar__frame {
    padding-inline: 20px;
  }
}
.p-top-calendar__cal {
  --fc-border-color: rgba(255, 255, 255, 0.14);
  --fc-page-bg-color: #0e0e0e;
  --fc-neutral-bg-color: rgba(255, 255, 255, 0.04);
  --fc-today-bg-color: rgba(251, 99, 32, 0.16);
  --fc-event-bg-color: #fb6320;
  --fc-event-border-color: #fb6320;
  --fc-event-text-color: #FFFFFF;
  --fc-button-text-color: #FFFFFF;
  --fc-button-bg-color: rgba(255, 255, 255, 0.08);
  --fc-button-border-color: rgba(255, 255, 255, 0.22);
  --fc-button-hover-bg-color: #fb6320;
  --fc-button-hover-border-color: #fb6320;
  --fc-button-active-bg-color: #fb6320;
  --fc-button-active-border-color: #fb6320;
  background-color: #0e0e0e;
  padding: 26px 30px 30px;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-top-calendar__cal {
    padding: 14px 12px 18px;
  }
}
.p-top-calendar__cal .fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-top-calendar__cal .fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
  }
}
.p-top-calendar__cal .fc .fc-toolbar-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-top-calendar__cal .fc .fc-toolbar-title {
    font-size: 17px;
  }
}
.p-top-calendar__cal .fc .fc-button {
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none !important;
  text-transform: none;
}
.p-top-calendar__cal .fc .fc-button-primary:focus,
.p-top-calendar__cal .fc .fc-button-primary:not(:disabled):focus {
  box-shadow: none !important;
}
.p-top-calendar__cal .fc .fc-col-header-cell {
  background-color: rgba(255, 255, 255, 0.04);
}
.p-top-calendar__cal .fc .fc-col-header-cell-cushion {
  padding: 8px 4px;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}
.p-top-calendar__cal .fc .fc-daygrid-day-number {
  padding: 6px 8px;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.p-top-calendar__cal .fc .fc-day-other .fc-daygrid-day-top {
  opacity: 0.32;
}
.p-top-calendar__cal .fc .fc-daygrid-event {
  padding: 2px 7px;
  margin: 1px 4px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.p-top-calendar__cal .fc .fc-daygrid-event:hover {
  filter: brightness(1.1);
}
.p-top-calendar__cal .fc .fc-daygrid-more-link {
  color: #fb6320;
  font-size: 11px;
  font-weight: 700;
}
.p-top-calendar__cal .fc .fc-scrollgrid {
  border-color: var(--fc-border-color);
}

.p-top-about {
  position: relative;
  padding-block: 80px 120px;
  background-color: #0a0a0a;
  color: #FFFFFF;
  overflow: hidden;
  isolation: isolate;
}
.p-top-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px), url("../images/top/about/bg.jpg");
  background-size: 6px 6px, 6px 6px, cover;
  background-position: 0 0, 0 0, center;
  background-repeat: repeat, repeat, no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-top-about {
    padding-block: 55px 65px;
  }
}
.p-top-about__title-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .p-top-about__title-wrap {
    margin-bottom: 30px;
  }
}
.p-top-about__inner {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .p-top-about__inner {
    padding-inline: 20px;
    gap: 25px;
  }
}

.p-top-about__block {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 421px 1fr;
  gap: 60px;
  align-items: start;
  padding-block: 30px;
}
.p-top-about__block::before {
  content: "";
  position: absolute;
  inset: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.p-top-about__block:nth-of-type(1) {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .p-top-about__block:nth-of-type(1) {
    padding-top: 55px;
  }
}
.p-top-about__block:nth-of-type(1)::before {
  clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
}
.p-top-about__block:nth-of-type(2) {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .p-top-about__block:nth-of-type(2) {
    padding-bottom: 55px;
  }
}
.p-top-about__block:nth-of-type(2)::before {
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
}
@media (max-width: 767px) {
  .p-top-about__block {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 20px;
  }
}

.p-top-about__logo-frame {
  width: 100%;
  aspect-ratio: 421/283;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.p-top-about__logo-frame--dark {
  background-color: #1A1A1A;
}
.p-top-about__logo-frame img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  display: block;
}

.p-top-about__body {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.p-top-about__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-top-about__title {
    font-size: 19px;
  }
}

.p-top-about__sub {
  margin-top: 10px;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #FFFFFF;
}

.p-top-about__divider {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 15px 30px;
}
.p-top-about__divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.55);
}
.p-top-about__divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 153px;
  height: 1px;
  background-color: #FFFFFF;
}

.p-top-about__desc {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 40px;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-top-about__desc {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

.p-top-about__btn-wrap {
  align-self: center;
}
@media (max-width: 767px) {
  .p-top-about__btn-wrap {
    align-self: stretch;
  }
}
.p-top-about__btn-wrap .c-flag-btn {
  background-color: transparent;
  background-image: none;
  border: 1px solid #FFFFFF;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-about__btn-wrap .c-flag-btn:hover {
    filter: none;
    background-color: rgba(255, 255, 255, 0.12);
  }
}

.p-top-info {
  position: relative;
  padding-block: 80px 100px;
}
@media (max-width: 767px) {
  .p-top-info {
    padding-block: 55px 65px;
  }
}
.p-top-info__title-wrap {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-top-info__title-wrap {
    margin-bottom: 30px;
  }
}
.p-top-info__inner {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .p-top-info__inner {
    padding-inline: 20px;
  }
}
.p-top-info__list {
  background-color: #3a3a3a;
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.22) 0, rgba(0, 0, 0, 0.22) 2px, transparent 2px, transparent 6px);
  color: #FFFFFF;
  padding: 15px 55px;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 767px) {
  .p-top-info__list {
    padding: 10px 15px;
    margin-bottom: 25px;
  }
}
.p-top-info__list > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.p-top-info__item {
  display: grid;
  grid-template-columns: 130px 200px 1fr;
  gap: 25px;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .p-top-info__item {
    grid-template-columns: auto 1fr;
    grid-template-areas: "date cat" "title title";
    column-gap: 10px;
    row-gap: 10px;
    padding: 15px 0;
  }
  .p-top-info__item .p-top-info__date {
    grid-area: date;
  }
  .p-top-info__item .p-top-info__cat {
    grid-area: cat;
    justify-self: start;
    width: auto;
    padding: 0 15px;
  }
  .p-top-info__item .p-top-info__title {
    grid-area: title;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-info__item:hover .p-top-info__title {
    color: #fb6320;
  }
}

.p-top-info__date {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fb6320;
}
@media (max-width: 767px) {
  .p-top-info__date {
    font-size: 13px;
  }
}

.p-top-info__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .p-top-info__cat {
    font-size: 11px;
    height: 24px;
  }
}

.p-top-info__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-info__title {
    font-size: 13px;
  }
}

.p-top-info__btns {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-top-info__btns {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding-inline: 20px;
  }
}

.p-event {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-event {
    padding-bottom: 80px;
  }
}
.p-event__search {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-event__search {
    padding-inline: 20px;
  }
}
.p-event__search {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .p-event__search {
    margin-bottom: 40px;
  }
}
.p-event__list {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-event__list {
    padding-inline: 20px;
  }
}
.p-event__pager {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-event__pager {
    padding-inline: 20px;
  }
}
.p-event__pager {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .p-event__pager {
    margin-top: 50px;
  }
}

.c-event-search {
  background-color: #404040;
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.22) 0, rgba(0, 0, 0, 0.22) 2px, transparent 2px, transparent 6px);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.c-event-search::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent transparent #FFFFFF transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-event-search::after {
    left: 6px;
    bottom: 6px;
    border-width: 0 16px 16px 0;
  }
}
.c-event-search__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  background: transparent;
  border: 0;
  color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-event-search__toggle:hover {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .c-event-search__toggle {
    font-size: 18px;
    height: 50px;
  }
}
.c-event-search__toggle-text {
  font-weight: 700;
}
.c-event-search__toggle-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}
.c-event-search__toggle-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.c-event-search__toggle-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: currentColor transparent transparent transparent;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.c-event-search__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.c-event-search__panel-inner {
  overflow: hidden;
}
.c-event-search.is-open .c-event-search__toggle-arrow {
  transform: rotate(180deg);
}
.c-event-search.is-open .c-event-search__panel {
  grid-template-rows: 1fr;
}
.c-event-search__body {
  padding: 10px 65px 55px;
}
@media (max-width: 1024px) {
  .c-event-search__body {
    padding: 10px 40px 40px;
  }
}
@media (max-width: 767px) {
  .c-event-search__body {
    padding: 6px 20px 35px;
  }
}
.c-event-search__rule {
  position: relative;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
  margin-bottom: 35px;
}
.c-event-search__rule::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 90px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.9);
}
.c-event-search__rule--bottom {
  margin-top: 35px;
  margin-bottom: 0;
}
.c-event-search__rule--bottom::before {
  left: auto;
  right: 0;
}
.c-event-search__row {
  display: grid;
  grid-template-columns: 256px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .c-event-search__row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }
}
.c-event-search__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 6px 12px;
  background-color: #909090;
  box-shadow: inset 0 0 0 3px #909090, inset 0 0 0 4px rgba(255, 255, 255, 0.9);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #FFFFFF;
}
.c-event-search__label::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 42px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
@media (max-width: 767px) {
  .c-event-search__label {
    min-height: 34px;
  }
  .c-event-search__label::before {
    display: none;
  }
}
.c-event-search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.c-event-search__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 37px;
  padding: 0 18px;
  background-color: #909090;
  border: 0;
  box-shadow: inset 0 0 0 3px #909090, inset 0 0 0 4px rgba(255, 255, 255, 0.9);
  color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.c-event-search__input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.c-event-search__input:focus {
  outline: none;
  box-shadow: inset 0 0 0 3px #909090, inset 0 0 0 4px #fb6320;
}
.c-event-search__field--date {
  flex-wrap: nowrap;
}
@media (max-width: 1024px) {
  .c-event-search__field--date {
    flex-wrap: wrap;
  }
}
.c-event-search__input--date {
  text-align: center;
  cursor: pointer;
}
.c-event-search__date-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
}
@media (max-width: 1024px) {
  .c-event-search__date-wrap {
    flex-basis: 205px;
  }
}
.c-event-search__date-wrap .c-event-search__input--date {
  flex: 1 1 auto;
}
.c-event-search__date-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.c-event-search__date-clear:hover {
  background-color: #fb6320;
}
.c-event-search__date-wrap.is-filled .c-event-search__date-clear {
  display: inline-flex;
}
.c-event-search__tilde {
  flex-shrink: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.c-event-search__tags {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 24px;
  background-color: #909090;
  box-shadow: inset 0 0 0 3px #909090, inset 0 0 0 4px rgba(255, 255, 255, 0.9);
}
@media (max-width: 1199px) {
  .c-event-search__tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .c-event-search__tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
  }
}
.c-event-search__tag {
  height: 25px;
  padding: 0 6px;
  min-width: 0;
  border: 0;
  border-radius: 13px;
  background-color: #c1c1c1;
  color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-event-search__tag:hover {
    transform: translateY(-1px);
  }
}
.c-event-search__tag.is-active {
  background-color: #ce3e3e;
}
.c-event-search__submit {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.c-event-search__submit-btn {
  position: relative;
  min-width: 300px;
  height: 37px;
  padding: 0 20px;
  background-color: #909090;
  border: 0;
  box-shadow: inset 0 0 0 3px #909090, inset 0 0 0 4px rgba(255, 255, 255, 0.9);
  color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: filter 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.c-event-search__submit-btn::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 42px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-event-search__submit-btn:hover {
    filter: brightness(1.12);
  }
}
@media (max-width: 767px) {
  .c-event-search__submit-btn {
    min-width: 0;
    width: 100%;
  }
}
.c-event-search__note {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}
.c-event-search__note p {
  margin: 0;
}
@media (max-width: 767px) {
  .c-event-search__note {
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
  }
}

.c-event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4%;
  row-gap: 35px;
  list-style: none;
}
@media (max-width: 1024px) {
  .c-event-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 40px;
  }
}
@media (max-width: 767px) {
  .c-event-cards {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.c-event-card {
  display: block;
  position: relative;
  color: #1A1A1A;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-event-card:hover .c-event-card__thumb img {
    transform: scale(1.05);
  }
  .c-event-card:hover .c-event-card__corner {
    transform: scale(1.12);
  }
}
.c-event-card__thumb {
  aspect-ratio: 416/319;
}
@supports not (aspect-ratio: 1) {
  .c-event-card__thumb {
    position: relative;
  }
  .c-event-card__thumb::before {
    content: "";
    display: block;
    padding-top: 76.6826923077%;
  }
  .c-event-card__thumb > * {
    position: absolute;
    inset: 0;
  }
}
.c-event-card__thumb {
  background-color: #FFFFFF;
  overflow: hidden;
  border: 1px solid #D0D0D0;
}
.c-event-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.c-event-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 45px 14px 16px;
  background-color: #404040;
  color: #FFFFFF;
  z-index: 1;
}
.c-event-card__date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fb6320;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .c-event-card__date {
    font-size: 16px;
  }
}
.c-event-card__date:has(.c-date-range__end) {
  font-size: 19px;
}
@media (max-width: 767px) {
  .c-event-card__date:has(.c-date-range__end) {
    font-size: 16px;
  }
}
.c-event-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-event-card__title {
    font-size: 17px;
  }
}
.c-event-card__corner {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 26px;
  height: 26px;
  background-color: #FFFFFF;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #fb6320;
  border-color: #fb6320;
}

.flatpickr-day.today {
  border-color: #fb6320;
}

.flatpickr-day.today:hover {
  background: #fb6320;
  border-color: #fb6320;
  color: #FFFFFF;
}

.flatpickr-day:hover {
  background: #d0d0d0;
  border-color: #d0d0d0;
}

.p-event-detail {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-event-detail {
    padding-bottom: 80px;
  }
}
.p-event-detail__article {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-event-detail__article {
    padding-inline: 20px;
  }
}
.p-event-detail__gallery {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-event-detail__gallery-main {
  background-color: #E0E0E0;
  line-height: 0;
}
.p-event-detail__gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}
.p-event-detail__gallery-sub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.p-event-detail__gallery-sub img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .p-event-detail__gallery-sub {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-event-detail__info {
  margin-top: 36px;
}
.p-event-detail__tickets {
  margin-top: 32px;
}
.p-event-detail__note {
  margin-top: 32px;
}
.p-event-detail__note .c-info-table__value {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.p-event-detail__note .c-info-table__value p + p {
  margin-top: 1em;
}
.p-event-detail__note .c-info-table__value ul,
.p-event-detail__note .c-info-table__value ol {
  padding-left: 1.4em;
  list-style: revert;
}
.p-event-detail__note .c-info-table__value a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-detail__note .c-info-table__value a:hover {
    color: #fb6320;
  }
}
.p-event-detail__tags {
  margin-top: 44px;
}
.p-event-detail__nav {
  position: relative;
  margin-top: 36px;
  padding-top: 52px;
}
.p-event-detail__nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
}
.p-event-detail__nav::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 149px;
  height: 2px;
  background-color: #1a1a1a;
}
@media (max-width: 767px) {
  .p-event-detail__nav {
    padding-top: 34px;
  }
  .p-event-detail__nav::after {
    width: 100px;
  }
}

.c-info-table__row {
  display: grid;
  grid-template-columns: 275px 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .c-info-table__row {
    grid-template-columns: 1fr;
    margin-bottom: 8px;
  }
}
.c-info-table__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 65px;
  padding: 8px 16px 8px 40px;
  background-color: #8b8b8b;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.c-info-table__label::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent transparent rgba(255, 255, 255, 0.85) transparent;
}
@media (max-width: 767px) {
  .c-info-table__label {
    min-height: 0;
    padding: 8px 16px 8px 36px;
    font-size: 15px;
  }
}
.c-info-table__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-color: #FFFFFF;
  -webkit-mask: var(--icon) center/contain no-repeat;
  mask: var(--icon) center/contain no-repeat;
}
.c-info-table__value {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  min-height: 65px;
  padding: 14px 24px;
  background-color: #d0d0d0;
  color: #1A1A1A;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .c-info-table__value {
    min-height: 0;
    padding: 12px 16px;
    font-size: 15px;
  }
}
.c-info-table__time {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.c-info-table__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 32px;
  padding: 3px 14px 0;
  border-radius: 9999px;
  background-color: #8b8b8b;
  color: #FFFFFF;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.c-info-table__time-sep {
  margin-right: 8px;
}
.c-info-table__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 18px;
  border-radius: 9999px;
  background-color: #ef944b;
  color: #FFFFFF;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: filter 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-info-table__map:hover {
    filter: brightness(1.1);
  }
}
.c-info-table__map-icon {
  width: 16px;
  height: 18px;
  background-color: #FFFFFF;
  -webkit-mask: url("../images/common/icon/map.png") center/contain no-repeat;
  mask: url("../images/common/icon/map.png") center/contain no-repeat;
}

.p-event-detail__tickets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.c-ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 429px;
  height: 67px;
  padding: 0 40px;
  border-radius: 9999px;
  background-color: #ef944b;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: filter 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-ticket-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
  }
}
@media (max-width: 767px) {
  .c-ticket-btn {
    min-width: 0;
    width: 100%;
    height: 60px;
    font-size: 18px;
    padding: 0 24px;
  }
}
.c-ticket-btn__icon {
  flex-shrink: 0;
  width: 54px;
  height: 38px;
  background-color: #FFFFFF;
  -webkit-mask: url("../images/common/icon/ticket.png") center/contain no-repeat;
  mask: url("../images/common/icon/ticket.png") center/contain no-repeat;
}

.c-cat-tags {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1199px) {
  .c-cat-tags {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .c-cat-tags {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.c-cat-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border-radius: 9999px;
  background-color: #d0d0d0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-cat-tag.is-active {
  background-color: #ce3e3e;
}
@media (max-width: 767px) {
  .c-cat-tag {
    height: 42px;
    font-size: 15px;
  }
}

.p-event-detail__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
@media (max-width: 767px) {
  .p-event-detail__nav {
    gap: 10px;
  }
}

.c-pn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 44px;
  padding: 3px 22px 0;
  background-color: #1A1A1A;
  color: #FFFFFF;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  border-radius: 0;
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-pn-btn:hover {
    background-color: #fb6320;
    transform: translateY(-2px);
  }
}
.c-pn-btn--list {
  min-width: 248px;
}
@media (max-width: 767px) {
  .c-pn-btn--list {
    min-width: 0;
    flex: 1;
  }
}
@media (max-width: 767px) {
  .c-pn-btn {
    min-width: 0;
    flex: 1;
    font-size: 13px;
    padding: 0 8px;
  }
}

.p-news {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-news {
    padding-bottom: 80px;
  }
}
.p-news__list {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-news__list {
    padding-inline: 20px;
  }
}
.p-news__pager {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-news__pager {
    padding-inline: 20px;
  }
}
.p-news__pager {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .p-news__pager {
    margin-top: 50px;
  }
}

.c-news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4%;
  row-gap: 35px;
  list-style: none;
}
@media (max-width: 1024px) {
  .c-news-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 40px;
  }
}
@media (max-width: 767px) {
  .c-news-cards {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.c-news-card {
  display: block;
  position: relative;
  color: #1A1A1A;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-news-card:hover .c-news-card__thumb img {
    transform: scale(1.05);
  }
  .c-news-card:hover .c-news-card__corner {
    transform: scale(1.12);
  }
}
.c-news-card__thumb {
  aspect-ratio: 416/319;
}
@supports not (aspect-ratio: 1) {
  .c-news-card__thumb {
    position: relative;
  }
  .c-news-card__thumb::before {
    content: "";
    display: block;
    padding-top: 76.6826923077%;
  }
  .c-news-card__thumb > * {
    position: absolute;
    inset: 0;
  }
}
.c-news-card__thumb {
  background-color: #ffffff;
  overflow: hidden;
  border: 1px solid #D0D0D0;
}
.c-news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.c-news-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 45px 14px 16px;
  background-color: #404040;
  color: #FFFFFF;
  z-index: 1;
}
.c-news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.c-news-card__date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fb6320;
}
@media (max-width: 767px) {
  .c-news-card__date {
    font-size: 13px;
  }
}
.c-news-card__cat {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .c-news-card__cat {
    font-size: 10px;
    padding: 2px 10px;
  }
}
.c-news-card__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-news-card__title {
    font-size: 16px;
  }
}
.c-news-card__corner {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
}

.p-news-detail {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-news-detail {
    padding-bottom: 80px;
  }
}
.p-news-detail__article {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-news-detail__article {
    padding-inline: 20px;
  }
}
.p-news-detail__body {
  margin-top: 36px;
}
.p-news-detail__nav {
  position: relative;
  margin-top: 36px;
  padding-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.p-news-detail__nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
}
.p-news-detail__nav::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 149px;
  height: 2px;
  background-color: #1a1a1a;
}
@media (max-width: 767px) {
  .p-news-detail__nav {
    padding-top: 34px;
    gap: 10px;
  }
  .p-news-detail__nav::after {
    width: 100px;
  }
}

.c-entry {
  font-size: 16px;
  line-height: 1.9;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .c-entry {
    font-size: 15px;
  }
}
.c-entry__eyecatch {
  margin-bottom: 36px;
}
.c-entry__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}
.c-entry > p {
  margin-bottom: 1.8em;
}
.c-entry > p:last-child {
  margin-bottom: 0;
}
.c-entry h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 2.2em 0 0.9em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid #1a1a1a;
}
@media (max-width: 767px) {
  .c-entry h2 {
    font-size: 20px;
  }
}
.c-entry h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 1.8em 0 0.6em;
}
@media (max-width: 767px) {
  .c-entry h3 {
    font-size: 17px;
  }
}
.c-entry ul,
.c-entry ol {
  margin: 0 0 1.8em;
  padding-left: 1.6em;
}
.c-entry li {
  margin-bottom: 0.4em;
}
.c-entry a {
  color: #fb6320;
  text-decoration: underline;
}
.c-entry img {
  max-width: 100%;
  height: auto;
}
.c-entry strong {
  font-weight: 700;
}

.p-company__greeting-sec {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-company__greeting-sec {
    padding-inline: 20px;
  }
}
.p-company__greeting-sec {
  padding-top: 190px;
  padding-bottom: 96px;
}
@media (max-width: 767px) {
  .p-company__greeting-sec {
    padding-top: 110px;
    padding-bottom: 60px;
  }
}
.p-company__info-sec {
  background-color: #ffffff;
  padding-top: 96px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-company__info-sec {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.p-company__info-sec > * {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-company__info-sec > * {
    padding-inline: 20px;
  }
}
.p-company .section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .p-company .section-title {
    margin-bottom: 32px;
  }
}

.p-company-greeting {
  display: grid;
  grid-template-columns: 459px 1fr;
  gap: 44px;
  align-items: start;
}
@media (min-width: 1025px) {
  .p-company-greeting {
    align-items: stretch;
  }
}
@media (max-width: 1024px) {
  .p-company-greeting {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
}
.p-company-greeting__photo {
  position: relative;
  aspect-ratio: 459/353;
  background-color: #8b8b8b;
}
@media (min-width: 1025px) {
  .p-company-greeting__photo {
    aspect-ratio: auto;
    min-height: 353px;
    height: 100%;
  }
}
.p-company-greeting__photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-company-greeting__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-company-greeting__photo > span {
  color: #FFFFFF;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.p-company-greeting__photo::before {
  content: "";
  position: absolute;
  left: 47.7%;
  top: -63px;
  width: 2px;
  height: 142px;
  background-color: #1a1a1a;
}
@media (max-width: 767px) {
  .p-company-greeting__photo::before {
    top: -18px;
    height: 72px;
  }
}
.p-company-greeting__photo::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 56px 56px 0;
  border-color: transparent transparent #e1d0b2 transparent;
}
.p-company-greeting__body {
  position: relative;
  background-color: #dcdcdc;
  padding: 34px 40px 40px;
}
.p-company-greeting__body::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 56px 56px 0;
  border-color: transparent transparent #e1d0b2 transparent;
}
.p-company-greeting__text {
  font-size: 15px;
  color: #1A1A1A;
}
.p-company-greeting__text p {
  margin: 0;
}
.p-company-greeting__sign {
  margin-top: 24px;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-company-greeting__sign {
    font-size: 15px;
  }
}

.c-info-table--company .c-info-table__row {
  grid-template-columns: 360px 1fr;
}
@media (max-width: 767px) {
  .c-info-table--company .c-info-table__row {
    grid-template-columns: 1fr;
  }
}
.c-info-table--company .c-info-table__label {
  min-height: 51px;
  padding: 8px 16px 8px 40px;
  background-color: #bdbdbd;
  color: #1A1A1A;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-info-table--company .c-info-table__label {
    font-size: 15px;
  }
}
.c-info-table--company .c-info-table__label::before {
  border-color: transparent transparent #d7d7d7 transparent;
}
.c-info-table--company .c-info-table__value {
  position: relative;
  min-height: 51px;
  padding: 8px 24px 8px 40px;
  background-color: #d7d7d7;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-info-table--company .c-info-table__value {
    font-size: 15px;
  }
}
.c-info-table--company .c-info-table__value::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent transparent #bdbdbd transparent;
}

.p-studio__info-sec {
  padding-top: 190px;
  padding-bottom: 96px;
}
.p-studio__info-sec > * {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-studio__info-sec > * {
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .p-studio__info-sec {
    padding-top: 110px;
    padding-bottom: 60px;
  }
}
.p-studio__layout-sec {
  background-color: #FFFFFF;
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-studio__layout-sec > * {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-studio__layout-sec > * {
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .p-studio__layout-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-studio__price-sec {
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-studio__price-sec > * {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-studio__price-sec > * {
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .p-studio__price-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-studio__howto-sec {
  background-color: #FFFFFF;
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-studio__howto-sec > * {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-studio__howto-sec > * {
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .p-studio__howto-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-studio .section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .p-studio .section-title {
    margin-bottom: 32px;
  }
}

.p-studio-intro {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 767px) {
  .p-studio-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.p-studio-intro__logo {
  aspect-ratio: 380/240;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-studio-intro__logo img {
  width: 72%;
  height: auto;
}
.p-studio-intro__body {
  position: relative;
}
.p-studio-intro__text {
  font-size: 15px;
  line-height: 1.9;
  color: #1A1A1A;
}
.p-studio-intro__text p {
  margin: 0;
}

.p-studio-layout__map {
  line-height: 0;
  overflow: hidden;
  aspect-ratio: 1500/832;
}
.p-studio-layout__map img {
  width: 100%;
  height: auto;
  display: block;
}
.p-studio-layout__legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-studio-layout__legend {
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
}
.p-studio-layout__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.p-studio-layout__legend-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #D02020;
}
.p-studio-layout__legend-mark--bar {
  width: 28px;
  height: 10px;
  border-radius: 0;
  background-color: #ef944b;
}

.p-studio-price + .p-studio-price {
  margin-top: 54px;
}

.p-studio-price__caption {
  position: relative;
  width: 613px;
  max-width: 100%;
  min-height: 47px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #969696;
  background-image: repeating-linear-gradient(135deg, #9c9c9c 0 2px, #929292 2px 4px);
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
.p-studio-price__caption::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 66px;
  height: 1px;
  background-color: #1a1a1a;
}
@media (max-width: 767px) {
  .p-studio-price__caption {
    padding: 8px 16px;
    font-size: 13px;
  }
  .p-studio-price__caption::before {
    left: -18px;
    width: 46px;
  }
}

@media (max-width: 1024px) {
  .p-studio-price__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.p-studio-price__table {
  display: grid;
  gap: 4px;
}
.p-studio-price__table--t1 {
  grid-template-columns: 191fr 301fr 301fr 301fr 301fr;
}
.p-studio-price__table--t2 {
  grid-template-columns: 191fr 604fr 604fr;
}
.p-studio-price__table--t3 {
  grid-template-columns: 191fr 402fr 402fr 402fr;
}
.p-studio-price__table--t4 {
  grid-template-columns: 361fr 294fr 743fr;
}
@media (max-width: 1024px) {
  .p-studio-price__table {
    min-width: 760px;
  }
}

.p-studio-price__cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 64px;
  padding: 12px 18px;
  background-color: #bdbdbd;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.p-studio-price__cell::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent transparent #d7d7d7 transparent;
}
.p-studio-price__cell--head {
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-studio-price__cell--span {
  grid-column: 2/-1;
}
@media (max-width: 767px) {
  .p-studio-price__cell {
    font-size: 13px;
    padding: 10px 14px;
  }
}

.p-studio-howto__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #1A1A1A;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-studio-howto__lead {
    font-size: 14px;
    text-align: left;
    margin-bottom: 26px;
  }
}
.p-studio-howto__btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;
}
@media (max-width: 767px) {
  .p-studio-howto__btns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-studio-howto__btn {
  position: relative;
  aspect-ratio: 689/182;
  min-height: 128px;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  background-color: #ce3e3e;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 6px);
  color: #fff;
  text-decoration: none;
  transition: filter 0.25s ease;
}
.p-studio-howto__btn:hover {
  filter: brightness(1.08);
}
.p-studio-howto__btn::before {
  content: "";
  position: absolute;
  inset: 14px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
}
.p-studio-howto__btn::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 34px 34px 0;
  border-color: transparent transparent #fff transparent;
}
@media (max-width: 767px) {
  .p-studio-howto__btn {
    aspect-ratio: 327/108;
    min-height: 0;
    gap: 4px;
  }
  .p-studio-howto__btn::before {
    inset: 12px 16px;
  }
  .p-studio-howto__btn::after {
    left: 14px;
    bottom: 10px;
    border-width: 0 26px 26px 0;
  }
}
.p-studio-howto__plus {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 1.5px;
  background-color: #fff;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-studio-howto__plus {
    left: 16px;
    width: 22px;
  }
}
.p-studio-howto__btn-en {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: clamp(21px, 4vw - 10px, 31px);
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-studio-howto__btn-en {
    font-size: 19px;
    letter-spacing: 0.08em;
  }
}
.p-studio-howto__btn-jp {
  font-size: 17px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-studio-howto__btn-jp {
    font-size: 14px;
  }
}

.p-manual {
  padding-bottom: 96px;
}
@media (max-width: 767px) {
  .p-manual {
    padding-bottom: 64px;
  }
}
.p-manual__head {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-manual__head {
    padding-inline: 20px;
  }
}
.p-manual__head {
  padding-top: 190px;
}
@media (max-width: 767px) {
  .p-manual__head {
    padding-top: 110px;
  }
}
.p-manual__sec {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-manual__sec {
    padding-inline: 20px;
  }
}
.p-manual__sec {
  padding-top: 64px;
  scroll-margin-top: 110px;
}
@media (max-width: 767px) {
  .p-manual__sec {
    padding-top: 48px;
  }
}

.p-manual__bar {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 47px;
  padding: 9px 24px 9px 40px;
  margin-bottom: 30px;
  background-color: #d21717;
  background-image: repeating-linear-gradient(135deg, #ce3e3e 0 2px, #d21717 2px 5px);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.p-manual__bar::before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 18px 18px 0;
  border-color: transparent transparent #FFFFFF transparent;
}
@media (max-width: 767px) {
  .p-manual__bar {
    font-size: 17px;
    padding: 8px 16px 8px 32px;
    margin-bottom: 22px;
  }
}

.p-manual-flow__row {
  display: grid;
  grid-template-columns: 300px 1fr;
  background-color: #505050;
  background-image: repeating-linear-gradient(135deg, #555 0 2px, #4b4b4b 2px 5px);
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-manual-flow__row {
    grid-template-columns: 1fr;
  }
}

.p-manual-flow__step {
  position: relative;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-manual-flow__step::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 767px) {
  .p-manual-flow__step {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding: 14px 18px 0;
  }
  .p-manual-flow__step::after {
    display: none;
  }
}

.p-manual-flow__num {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "URW Gothic", "Avant Garde", sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.p-manual-flow__label {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-manual-flow__label {
    margin-top: 0;
  }
}

.p-manual-flow__text {
  margin: 0;
  padding: 20px 28px;
  font-size: 14px;
  line-height: 1.85;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .p-manual-flow__text {
    padding: 8px 18px 16px;
    font-size: 13px;
  }
}

.p-manual-flow__arrow {
  text-align: center;
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1;
  margin: 8px 0;
}

.p-manual-item + .p-manual-item {
  margin-top: 26px;
}

.p-manual-item__head {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.04em;
}

.p-manual-item__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #1A1A1A;
  white-space: pre-line;
}

.p-manual-item__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.9;
  color: #1A1A1A;
}
.p-manual-item__list li {
  padding-left: 0.5em;
  text-indent: -0.5em;
}
.p-manual-item__list li + li {
  margin-top: 2px;
}

.p-manual-rate {
  display: grid;
  grid-template-columns: 156px 1fr;
  max-width: 643px;
  margin: 18px 0 22px;
  background-color: #676767;
  background-image: repeating-linear-gradient(135deg, #6b6b6b 0 2px, #636363 2px 5px);
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-manual-rate {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.p-manual-rate__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-manual-rate__label {
    padding: 12px 12px 0;
  }
}

.p-manual-rate__list {
  padding: 18px 28px;
  font-size: 14px;
  line-height: 1.95;
}
.p-manual-rate__list p {
  margin: 0;
}
@media (max-width: 767px) {
  .p-manual-rate__list {
    padding: 14px 18px;
    font-size: 13px;
  }
}

.p-manual-qa + .p-manual-qa {
  margin-top: 22px;
}

.p-manual-qa__q {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.03em;
}

.p-manual-qa__a {
  margin: 0;
  padding-left: 1.1em;
  text-indent: -1.1em;
  font-size: 14px;
  line-height: 1.9;
  color: #1A1A1A;
  white-space: pre-line;
}

.p-manual-note {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #1A1A1A;
}

.p-doc__body {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-doc__body {
    padding-inline: 20px;
  }
}
.p-doc__body {
  padding-top: 84px;
  padding-bottom: 96px;
}
@media (max-width: 767px) {
  .p-doc__body {
    padding-top: 44px;
    padding-bottom: 64px;
  }
}
.p-doc__sec + .p-doc__sec {
  margin-top: 56px;
}
@media (max-width: 767px) {
  .p-doc__sec + .p-doc__sec {
    margin-top: 44px;
  }
}

.p-doc__bar {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  margin: 0 0 30px;
  padding: 13px 24px 13px 44px;
  background-color: #3a3a3a;
  background-image: repeating-linear-gradient(135deg, #565656 0 1.5px, #3a3a3a 1.5px 3.5px);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.p-doc__bar::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 17px 0 0;
  border-color: #FFFFFF transparent transparent transparent;
}
@media (max-width: 767px) {
  .p-doc__bar {
    min-height: 48px;
    font-size: 17px;
    padding: 10px 18px 10px 36px;
    margin-bottom: 24px;
  }
  .p-doc__bar::before {
    border-width: 14px 14px 0 0;
  }
}

.p-doc__text {
  padding: 0 10px;
  font-size: 15px;
  line-height: 1.85;
  color: #1A1A1A;
}
.p-doc__text p {
  margin: 0;
  white-space: pre-line;
}
.p-doc__text p + p {
  margin-top: 1.1em;
}
@media (max-width: 767px) {
  .p-doc__text {
    padding: 0 4px;
    font-size: 14px;
    line-height: 1.8;
  }
}

.p-doc__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-doc__list li {
  padding-left: 0.5em;
  text-indent: -0.5em;
}
.p-doc__list li + li {
  margin-top: 2px;
}
.p-doc__list--lettered {
  margin-top: 1.1em;
}
.p-doc__list--lettered li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.p-doc__info {
  margin-top: 1.1em;
}

.p-contact__body {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-contact__body {
    padding-inline: 20px;
  }
}
.p-contact__body {
  padding-top: 44px;
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  .p-contact__body {
    padding-top: 8px;
    padding-bottom: 72px;
  }
}
.p-contact__form {
  padding: 84px 96px 74px;
  background-color: #dadada;
  background-image: repeating-linear-gradient(135deg, #c6c6c6 0, #dadada 1.6px, #dadada 4px);
}
@media (max-width: 767px) {
  .p-contact__form {
    padding: 34px 20px 40px;
  }
}
.p-contact__lead {
  margin: 0 0 32px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #575757;
}
@media (max-width: 767px) {
  .p-contact__lead {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
}
.p-contact__divider {
  height: 0;
  margin: 6px 0 36px;
  border: 0;
  border-top: 1px solid #9a9a9a;
}
.p-contact__divider--bottom {
  margin: 40px 0 32px;
}
@media (max-width: 767px) {
  .p-contact__divider {
    margin: 4px 0 24px;
  }
}

.p-contact__row {
  display: grid;
  grid-template-columns: 393px 1fr;
  gap: 24px;
  align-items: stretch;
}
.p-contact__row + .p-contact__row {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-contact__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p-contact__row + .p-contact__row {
    margin-top: 24px;
  }
}

.p-contact__label {
  position: relative;
  display: flex;
  align-items: stretch;
  padding-left: 46px;
}
.p-contact__label::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 76px;
  height: 1px;
  background-color: #373737;
  z-index: 4;
}
.p-contact__label::after {
  content: "";
  position: absolute;
  left: 47px;
  top: 1px;
  bottom: 1px;
  width: 8px;
  background-color: #d4bd92;
  z-index: 3;
}
@media (max-width: 767px) {
  .p-contact__label {
    padding-left: 38px;
  }
  .p-contact__label::before {
    left: 4px;
    width: 64px;
  }
  .p-contact__label::after {
    left: 39px;
  }
}

.p-contact__label-box {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 18px 12px 76px;
  border: 1px solid #5f5f5f;
  background-color: rgba(255, 255, 255, 0.22);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .p-contact__label-box {
    padding: 9px 14px 9px 58px;
    font-size: 14px;
  }
}

.p-contact__req {
  margin-left: 2px;
  font-size: 12px;
  color: #b60606;
}

.p-contact__any {
  margin-left: 2px;
  font-size: 12px;
  color: #707070;
}

.p-contact__field {
  display: flex;
  align-items: center;
}

.p-contact__select, .p-contact__textarea, .p-contact__input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #5f5f5f;
  background-color: rgba(255, 255, 255, 0.22);
  font-family: inherit;
  font-size: 15px;
  color: #1A1A1A;
  appearance: none;
  border-radius: 0;
}
.p-contact__select::placeholder, .p-contact__textarea::placeholder, .p-contact__input::placeholder {
  color: #8c8c8c;
}
.p-contact__select:focus, .p-contact__textarea:focus, .p-contact__input:focus {
  outline: none;
  border-color: #8a8a8a;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-contact__select, .p-contact__textarea, .p-contact__input {
    padding: 11px 13px;
    font-size: 14px;
  }
}

.p-contact__textarea {
  min-height: 168px;
  line-height: 1.7;
  resize: vertical;
}
@media (max-width: 767px) {
  .p-contact__textarea {
    min-height: 140px;
  }
}

.p-contact__select-wrap {
  position: relative;
  width: 280px;
  max-width: 100%;
}
.p-contact__select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #333;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-contact__select-wrap {
    width: 100%;
  }
}

.p-contact__select {
  padding-right: 40px;
  cursor: pointer;
}

.p-contact__radios {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  font-size: 15px;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .p-contact__radios {
    gap: 10px 20px;
    font-size: 14px;
  }
}

.p-contact__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.p-contact__radio input {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 1.5px solid #555;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
}
.p-contact__radio input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8 7 11.5 12.5 5' fill='none' stroke='%23444' stroke-width='2.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.p-contact__row--textarea .p-contact__label-box {
  align-items: flex-start;
  padding-top: 14px;
}
.p-contact__row--textarea .p-contact__label::before {
  top: 30px;
}
@media (max-width: 767px) {
  .p-contact__row--textarea .p-contact__label-box {
    align-items: center;
    padding-top: 9px;
  }
  .p-contact__row--textarea .p-contact__label::before {
    top: 50%;
  }
}

.p-contact__notes {
  margin: 26px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 2;
  color: #1A1A1A;
}
.p-contact__notes .p-contact__req {
  font-size: 13px;
}
@media (max-width: 767px) {
  .p-contact__notes {
    text-align: left;
    font-size: 12px;
    line-height: 1.9;
  }
}

.p-contact__agree {
  display: flex;
  justify-content: center;
}

.p-contact__agree-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 410px;
  padding: 14px 28px;
  background-color: #b07474;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.07) 0 1px, transparent 1px 4px);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: filter 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.p-contact__agree-btn input {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 1.5px solid #fff;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
}
.p-contact__agree-btn input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8 7 11.5 12.5 5' fill='none' stroke='%23fff' stroke-width='2.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__agree-btn:hover {
    filter: brightness(1.07);
  }
}
@media (max-width: 767px) {
  .p-contact__agree-btn {
    min-width: 0;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
}

.p-contact__policy-link {
  margin: 18px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.p-contact__policy-link a {
  color: #707070;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__policy-link a:hover {
    color: #1A1A1A;
  }
}
@media (max-width: 767px) {
  .p-contact__policy-link {
    font-size: 14px;
  }
}

.p-contact__actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 22px;
}
@media (max-width: 767px) {
  .p-contact__actions {
    gap: 16px;
  }
}

.p-contact__btn {
  min-width: 146px;
  padding: 13px 28px;
  border: 0;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  cursor: pointer;
  background-color: #8c8c8c;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.09) 0 1px, transparent 1px 4px);
  transition: filter 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__btn:hover {
    filter: brightness(1.08);
  }
}
@media (max-width: 767px) {
  .p-contact__btn {
    min-width: 0;
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
  }
}

.p-contact__field > .wpcf7-form-control-wrap {
  display: block;
  flex: 1;
  width: 100%;
}

.p-contact__select-wrap > .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.p-contact__field .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  font-size: 15px;
  color: #1A1A1A;
}
.p-contact__field .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.p-contact__field .wpcf7-radio label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.p-contact__field .wpcf7-radio input[type=radio] {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 1.5px solid #555;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
}
.p-contact__field .wpcf7-radio input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8 7 11.5 12.5 5' fill='none' stroke='%23444' stroke-width='2.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
@media (max-width: 767px) {
  .p-contact__field .wpcf7-radio {
    gap: 10px 20px;
    font-size: 14px;
  }
}

.p-contact__agree .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  text-align: center;
}

.p-contact__agree .wpcf7-acceptance {
  display: block;
}

.p-contact__agree .wpcf7-list-item {
  display: block;
  margin: 0;
}

.p-contact__agree .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 410px;
  padding: 14px 28px;
  background-color: #b07474;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.07) 0 1px, transparent 1px 4px);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: filter 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__agree .wpcf7-acceptance label:hover {
    filter: brightness(1.07);
  }
}
@media (max-width: 767px) {
  .p-contact__agree .wpcf7-acceptance label {
    min-width: 0;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
}

.p-contact__agree .wpcf7-list-item-label {
  color: inherit;
}

.p-contact__agree .wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 1.5px solid #fff;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
}
.p-contact__agree .wpcf7-acceptance input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8 7 11.5 12.5 5' fill='none' stroke='%23fff' stroke-width='2.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #b60606;
}

.p-contact__form .wpcf7-not-valid {
  border-color: #b60606 !important;
}

.wpcf7-response-output {
  margin: 22px auto 0 !important;
  padding: 12px 16px !important;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
}

.p-contact__actions .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.p-404__body {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-404__body {
    padding-inline: 20px;
  }
}
.p-404__body {
  padding-bottom: 130px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-404__body {
    padding-bottom: 80px;
  }
}

.p-404__lead {
  margin: 0 0 48px;
  font-size: 16px;
  line-height: 2;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .p-404__lead {
    margin-bottom: 36px;
    font-size: 14px;
  }
}
