@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/* ========== base ========== */
/* ==========================================================================
   1. Variables
   ========================================================================== */
/* ==========================================================================
   2. Base Styles
   ========================================================================== */
/* box-sizing とフォントレンダリング設定 */
*, *::before, *::after {
  box-sizing: border-box;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-family: "europa", "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  letter-spacing: 0;
  font-feature-settings: "palt";
  background-color: #FFF;
}

body {
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: 100%;
  color: #677B8C;
}

main {
  display: block;
  margin: 0;
  padding: 0;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: calc(var(--scroll-pos, 0px) * -1);
  overflow: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p {
  font-weight: 400;
}

span {
  font: inherit;
  color: inherit;
}

a {
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* --- Elements --- */
img,
video {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}

/* --- Forms & Buttons --- */
button, input, select, textarea {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: unset;
  outline: none;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: middle;
  color: inherit;
  background-color: transparent;
}

input, textarea {
  background-image: none;
}

::placeholder {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 400;
  opacity: 0.6;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #677B8C !important;
  background-color: transparent;
}

input:-internal-autofill-selected {
  background-color: unset !important;
}

input::-webkit-search-cancel-button,
input::-webkit-search-decoration,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

button {
  all: unset;
  cursor: pointer;
  box-sizing: border-box;
}

/* --- Table --- */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  text-align: left;
  vertical-align: middle;
}

/* ========== l-header ========== */
.l-header {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 11rem;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
  padding-right: 16.5rem;
}

.l-header-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: inline-block;
  width: 20rem;
}

.l-header-logo__link {
  display: block;
  transition: opacity 0.2s;
}

.l-header-logo__link:hover {
  opacity: 0.5;
}

.l-header__navs-area {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6rem;
}

.l-header-nav__list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.l-header-nav__list::after {
  content: "";
  position: absolute;
  top: -0.6rem;
  right: -3rem;
  display: block;
  width: 1px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.5);
}

.l-header-nav__page-link {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  color: #FFF;
  transition: opacity 0.2s;
}

.l-header-nav__page-link:hover {
  opacity: 0.5;
}

/* カレント（現在地）：テキスト下に白ドット */
.l-header-nav__page-link.is-current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.9rem;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #FFF;
}

.l-header-related-sites-nav__list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.l-header-related-sites-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  color: #FFF;
  transition: opacity 0.2s;
}

.l-header-related-sites-nav__link::after {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.3rem;
  background-color: #FFF;
  mask: url("/assets/img/common/icon-external.svg") no-repeat center/contain;
  -webkit-mask: url("/assets/img/common/icon-external.svg") no-repeat center/contain;
  flex-shrink: 0;
}

.l-header-related-sites-nav__link:hover {
  opacity: 0.5;
}

/* ========== l-language ========== */
.l-language {
  position: absolute;
  top: 4rem;
  right: 9rem;
  z-index: 1000;
}

.l-language__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid #FFF;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #FFF;
}

/* ========== l-language-on-menu ========== */
.l-language-on-menu {
  display: flex;
  align-items: center;
}

.l-language-on-menu__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid #677B8C;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #677B8C;
}

/* ---------- l-header responsive 1200 ---------- */
@media screen and (max-width: 1200px) {
  /* ========== l-header ========== */
  .l-header {
    height: 8rem;
  }
  .l-header__inner {
    padding-right: 14rem;
  }
  .l-header-logo {
    top: 1.5rem;
    left: 1rem;
    width: 12.5rem;
  }
  .l-header__navs-area {
    gap: 4rem;
  }
  .l-header-nav__list {
    gap: 2rem;
  }
  .l-header-nav__list::after {
    right: -2rem;
  }
  /* ========== l-language ========== */
  .l-language {
    top: 2.5rem;
    right: 8rem;
  }
}
/* ---------- l-header responsive 1000 ---------- */
@media screen and (max-width: 1000px) {
  /* ========== l-header ========== */
  .l-header {
    height: 8rem;
  }
  .l-header-logo {
    top: 1.5rem;
    left: 1rem;
    width: 12.5rem;
  }
  .l-header__navs-area {
    display: none;
  }
  /* ========== l-language ========== */
  .l-language {
    top: 2.5rem;
    right: 8rem;
  }
}
/* ==================== l-hamburger-button ==================== */
.l-hamburger-button {
  cursor: pointer;
  position: fixed;
  z-index: 100000;
  top: 3rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  opacity: 1;
  transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
}

.l-hamburger-button:hover {
  opacity: 0.6;
}

.l-hamburger-button.is-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.l-hamburger-button__icon {
  display: block;
  width: 24px;
  height: 11px;
  background-color: #fff;
  mask: url(/assets/img/common/lines-hamburger-button.svg) no-repeat center/contain;
  -webkit-mask: url(/assets/img/common/lines-hamburger-button.svg) no-repeat center/contain;
  transition: background-color 0.4s;
}

/* ==================== l-hamburger-button-close ==================== */
.l-hamburger-button-close {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  transition: opacity 0.3s;
}

.l-hamburger-button-close:hover {
  opacity: 0.6;
}

.l-hamburger-button-close__icon {
  display: block;
  width: 17px;
  height: 17px;
  background-color: #677B8C;
  mask: url(/assets/img/common/lines-hamburger-button-cross.svg) no-repeat center/contain;
  -webkit-mask: url(/assets/img/common/lines-hamburger-button-cross.svg) no-repeat center/contain;
}

@media screen and (max-width: 1200px) {
  .l-hamburger-button {
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
  }
}
/* ==================== l-hamburger-menu ==================== */
.l-hamburger-menu {
  overflow-y: auto;
  overscroll-behavior: contain;
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 99999;
  transform: translate(50%, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 36rem;
  height: 100dvh;
  border-radius: 1.2rem 0 0 1.2rem;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s, visibility 0.5s;
}

@media screen and (max-height: 750px) {
  .l-hamburger-menu {
    justify-content: flex-start;
  }
}
.l-hamburger-menu.is-open {
  transform: translate(0, 0);
  visibility: visible;
  opacity: 1;
}

.l-hamburger-menu__header {
  position: absolute;
  top: 2.3rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.l-hamburger-menu__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 6rem 10rem;
}

.l-hamburger-menu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.l-hamburger-menu__item {
  transform: translate(3rem, 0);
  opacity: 0;
  transition: transform 0.1s ease 0.48s, opacity 0.1s ease 0.5s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item:nth-child(1) {
  transition: transform 0.48s ease 0.1s, opacity 0.3s ease 0.1s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item:nth-child(2) {
  transition: transform 0.48s ease 0.15s, opacity 0.3s ease 0.15s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item:nth-child(3) {
  transition: transform 0.48s ease 0.2s, opacity 0.3s ease 0.2s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item:nth-child(4) {
  transition: transform 0.48s ease 0.25s, opacity 0.3s ease 0.25s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item:nth-child(5) {
  transition: transform 0.48s ease 0.3s, opacity 0.3s ease 0.3s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item:nth-child(6) {
  transition: transform 0.48s ease 0.35s, opacity 0.3s ease 0.35s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item:nth-child(7) {
  transition: transform 0.48s ease 0.4s, opacity 0.3s ease 0.4s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item:nth-child(8) {
  transition: transform 0.48s ease 0.45s, opacity 0.3s ease 0.45s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__item {
  transform: translate(0, 0);
  opacity: 1;
}

.l-hamburger-menu__link {
  position: relative;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.2;
  color: #677B8C;
  transition: opacity 0.3s;
}

.l-hamburger-menu__link.is-active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 2rem;
  padding-top: 1px;
  background-color: #677B8C;
}

@media (hover: hover) {
  .l-hamburger-menu__link:hover {
    opacity: 0.5;
  }
}
.l-hamburger-menu__sub-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2.2rem 2.4rem;
  margin-top: 4.4rem;
}

.l-hamburger-menu__sub-item {
  transform: translate(3rem, 0);
  opacity: 0;
  transition: transform 0.1s ease 0.48s, opacity 0.1s ease 0.5s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__sub-item:nth-child(1) {
  transition: transform 0.48s ease 0.5s, opacity 0.3s ease 0.5s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__sub-item:nth-child(2) {
  transition: transform 0.48s ease 0.55s, opacity 0.3s ease 0.55s;
}

.l-hamburger-menu.is-open .l-hamburger-menu__sub-item {
  transform: translate(0, 0);
  opacity: 1;
}

.l-hamburger-menu__sub-link {
  position: relative;
  font-size: 2rem;
  color: #677B8C;
  transition: opacity 0.3s;
}

.l-hamburger-menu__sub-link::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  right: -1rem;
  transform: translateX(100%);
  z-index: 1;
  display: inline-block;
  width: 1.8rem;
  height: 1.3rem;
  background-color: #677B8C;
  mask: url(/assets/img/common/icon-external-gray.svg) no-repeat center/contain;
  -webkit-mask: url(/assets/img/common/icon-external-gray.svg) no-repeat center/contain;
  flex-shrink: 0;
}

@media (hover: hover) {
  .l-hamburger-menu__sub-link:hover {
    opacity: 0.5;
  }
}
.l-hamburger-menu-escape {
  cursor: pointer;
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: block;
  background-color: rgba(85, 85, 85, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s, visibility 0.55s;
}

.l-hamburger-menu-escape.is-open {
  opacity: 1;
  visibility: visible;
}

.l-hamburger-menu-sns {
  margin-top: 4.8rem;
}

.l-hamburger-menu-sns__list {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

.l-hamburger-menu-sns__item {
  transform: translate(3rem, 0);
  opacity: 0;
  transition: transform 0.1s ease 0.48s, opacity 0.1s ease 0.5s;
}

.l-hamburger-menu.is-open .l-hamburger-menu-sns__item:nth-child(1) {
  transition: transform 0.48s ease 0.6s, opacity 0.3s ease 0.6s;
}

.l-hamburger-menu.is-open .l-hamburger-menu-sns__item:nth-child(2) {
  transition: transform 0.48s ease 0.65s, opacity 0.3s ease 0.65s;
}

.l-hamburger-menu.is-open .l-hamburger-menu-sns__item:nth-child(3) {
  transition: transform 0.48s ease 0.7s, opacity 0.3s ease 0.7s;
}

.l-hamburger-menu.is-open .l-hamburger-menu-sns__item:nth-child(4) {
  transition: transform 0.48s ease 0.75s, opacity 0.3s ease 0.75s;
}

.l-hamburger-menu.is-open .l-hamburger-menu-sns__item {
  transform: translate(0, 0);
  opacity: 1;
}

.l-hamburger-menu-sns__link {
  display: inline-block;
  width: 4rem;
  opacity: 1;
  transition: opacity 0.3s;
}

.l-hamburger-menu-sns__link:hover {
  opacity: 0.6;
}

.l-hamburger-menu-sns__text-links-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.l-hamburger-menu-sns__text-link {
  font-size: 1.2rem;
}

@media screen and (max-width: 1200px) {
  .l-hamburger-menu__header {
    top: 0.5rem;
    right: 0.5rem;
    gap: 0;
  }
}
@media screen and (max-width: 1000px) {
  .l-hamburger-menu {
    width: 86%;
    max-width: 31rem;
    border-radius: 1rem 0 0 1rem;
  }
  .l-hamburger-menu__header {
    top: 0.5rem;
    right: 0.5rem;
    gap: 0;
  }
  .l-hamburger-menu__inner {
    padding: 8rem 3.5rem;
  }
  .l-hamburger-menu__link {
    font-size: 2.4rem;
  }
  .l-hamburger-menu__sub-link {
    font-size: 1.7rem;
  }
}
/* ========== l-footer ========== */
.l-footer {
  position: relative;
  padding-top: 7.5rem;
  background: #fff;
  box-shadow: 0 100vh 0 #fff;
}

.l-footer__inner {
  position: relative;
  z-index: 1;
  padding: 0 9% 3rem;
}

.l-footer__inner::after {
  content: "";
  position: absolute;
  inset: 2.2rem 3% 0;
  z-index: -1;
  border-radius: 7px;
  background: #F2F2F2;
}

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

.l-footer__title {
  font-size: 3.6rem;
  font-weight: 400;
  color: #677B8C;
}

.l-footer__body {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-top: 3.2rem;
}

.l-footer-sns__list {
  display: flex;
  align-items: start;
  gap: 2rem;
}

.l-footer-sns__link {
  display: inline-block;
  width: 6rem;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .l-footer-sns__link:hover {
    opacity: 0.5;
  }
}
.l-footer-sns__text-links-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.l-footer-sns__text-link {
  font-size: 1.2rem;
}

.l-footer-other {
  margin-top: 3.7rem;
}

.l-footer-other__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.l-footer-other__link {
  display: inline-block;
  width: 28rem;
}

.l-footer__page-top-link {
  position: absolute;
  top: 0;
  right: calc(9% + 2.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
}

.l-footer__page-top-link::before {
  content: "";
  transform: rotate(-45deg);
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  border-top: 2px solid #677B8C;
  border-right: 2px solid #677B8C;
  margin-top: 0.4rem;
  transition: margin 0.2s;
}

@media (hover: hover) {
  .l-footer__page-top-link:hover::before {
    margin-top: -0.4rem;
  }
}
.l-footer__copy {
  padding: 3.7rem 0 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  color: #677B8C;
}

@media screen and (max-width: 1200px) {
  .l-footer__body {
    flex-direction: column;
  }
  .l-footer-other {
    width: 100%;
    margin-top: 3.5rem;
  }
  .l-footer-other__list {
    justify-content: end;
    gap: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-footer {
    padding-top: 6.8rem;
  }
  .l-footer__inner {
    padding: 0 0 4.5rem;
  }
  .l-footer__inner::after {
    inset: 1.7rem 3% 0;
    border-radius: 5px;
  }
  .l-footer__title {
    padding: 0 5.5%;
    font-size: 2.8rem;
  }
  .l-footer__body {
    padding: 0 7.5%;
    margin-top: 2.2rem;
  }
  .l-footer-sns__list {
    gap: 1.5rem;
  }
  .l-footer-sns__link {
    width: 4rem;
  }
  .l-footer-other {
    margin-top: 3.5rem;
  }
  .l-footer-other__list {
    gap: 1.5rem;
  }
  .l-footer-other__link {
    width: 22rem;
  }
  .l-footer__page-top-link {
    top: -0.4rem;
    right: 5.5%;
    width: 5rem;
    height: 5rem;
  }
  .l-footer__page-top-link::before {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: 0.4rem;
  }
  .l-footer__copy {
    padding: 2.2rem 0 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .l-footer-other__list {
    flex-direction: column;
    align-items: end;
    gap: 1.5rem;
  }
}
/* ========== l-main ========== */
/* ========== l-wrapper ========== */
.l-wrapper {
  position: relative;
  width: 82%;
  margin: 0 auto;
}

.l-wrapper.--max-width {
  max-width: 120rem;
}

@media screen and (max-width: 1000px) {
  .l-wrapper {
    width: 89%;
  }
  .l-wrapper.--display_contents-tablet-sp {
    display: contents;
  }
}
/* ========== c-button ========== */
.c-button {
  display: flex;
  justify-content: center;
  width: fit-content;
  min-width: 9rem;
  padding: 1.2rem 2rem;
  border-radius: 9999px;
  text-align: center;
  font-size: 1.6rem;
  color: #677B8C;
  background-color: #FFF;
  transition: opacity 0.2s;
}

.c-button.--blur {
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.2);
}

.c-button.--gray {
  color: #677B8C;
  background-color: #F2F2F2;
}

a.c-button:hover {
  opacity: 0.5;
}

/* ========== c-list ========== */
/* --- 順序リスト (Ordered List) ---
   mbtk-block-editor の ol li に合わせた連番マーカー（#677b8c・太さ400） */
.c-ol {
  counter-reset: num;
}

.c-ol__item {
  position: relative;
  counter-increment: num;
  list-style: none;
  padding-left: 2rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}

.c-ol__item::before {
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: #677b8c;
}

/* --- 箇条書きリスト (Unordered List) ---
   mbtk-block-editor の ul li に合わせた中空円マーカー（枠線のみ・#677b8c） */
.c-ul__item {
  position: relative;
  padding-left: 2rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  list-style-type: none;
}

.c-ul__item::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 1rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #677b8c;
}

/* ========== c-table ========== */
.c-table {
  --width_base: 14rem;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.c-table__th,
.c-table__td {
  padding: 1.4rem 2.2rem 1.5rem;
  border: 1px solid #DFE3E7;
  font-size: 1.5rem;
  line-height: 2;
  color: #677B8C;
  text-align: left;
  vertical-align: top;
}

.c-table__th {
  width: var(--width_base);
  font-weight: 700;
  background-color: #F8F8F8;
}

.c-table__td > * + * {
  margin-top: 1.4rem;
}

.c-table__td a {
  color: #677B8C;
  text-decoration: underline;
  word-break: break-all;
  opacity: 1;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .c-table__td a:hover {
    opacity: 0.7;
  }
}
/* ---------- responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
  .c-table {
    --width_base: 7.5rem;
  }
  .c-table__tr {
    display: flex;
    flex-direction: column;
  }
  .c-table__th,
  .c-table__td {
    padding: 1.5rem 1.5rem;
  }
  .c-table__th {
    width: 100%;
    border-bottom: 0;
  }
  .c-table__tr:not(:first-of-type) .c-table__th {
    border-top: 0;
  }
}
/* ========== c-title ========== */
/* ========== c-page-title ========== */
.c-page-title {
  position: relative;
}

.c-page-title__title {
  position: relative;
  font-size: 3rem;
  line-height: 1.5;
}

.c-page-title__en-text {
  font-size: 2.4rem;
  line-height: 1.88;
}

/* ---------- c-page-title responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
  .c-page-title__title {
    font-size: 2.2rem;
  }
  .c-page-title__en-text {
    font-size: 1.7rem;
  }
}
/* ========== c-section-title ========== */
.c-section-title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem 2rem;
  padding-left: 3.5rem;
}

.c-section-title::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon/i-title.png) no-repeat;
  background-size: contain;
}

.c-section-title__title {
  position: relative;
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-section-title__en-small-title {
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  color: #ddd;
}

.c-section-title__en-small-title.--inside-title {
  padding-left: 2rem;
}

/* ---------- c-section-title responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
  .c-section-title {
    flex-direction: column;
    gap: 0 2rem;
    padding-left: 2.8rem;
  }
  .c-section-title:before {
    top: 1.3rem;
  }
  .c-section-title__title {
    font-size: 2.8rem;
  }
  .c-section-title__en-small-title {
    display: inline-block;
    margin-top: -3px;
    font-size: 1.5rem;
  }
}
/* ---------- c-section-title responsive (750) ---------- */
@media screen and (max-width: 750px) {
  .c-section-title__en-small-title.--inside-title {
    display: block;
    padding-left: 0;
  }
}
/* ========== c-small-title ========== */
.c-small-title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
}

/* ========== c-category ========== */
.c-category__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.7rem;
}

.c-category__link {
  position: relative;
  display: inline-block;
  padding-bottom: 1.4rem;
  font-size: 1.6rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.c-category__link:hover {
  color: #fff;
}

/* アクティブ：白文字＋下にドット */
.c-category__link.--on {
  color: #fff;
}

.c-category__link.--on::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .c-category__list {
    gap: 1rem 1.5rem;
  }
  .c-category__link {
    font-size: 1.5rem;
  }
  .c-category__link.--on::after {
    bottom: 0.6rem;
  }
}
/* ========== pagination ========== */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #677B8C;
  background-color: #fff;
  opacity: 1;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}

.pagination .page-numbers.current {
  color: #fff;
  background-color: #677B8C;
  border-color: #677B8C;
}

a.page-numbers:hover {
  color: #fff;
  background-color: #677B8C;
  border-color: #677B8C;
}

/* 「…」（省略）は枠線・背景なしで表示 */
.page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
}

.page-numbers.dots:hover {
  color: #677B8C;
  background-color: transparent;
}

/* ---------- pagination responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
  .pagination {
    gap: 1.5rem;
  }
  .page-numbers {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}
/* ========== End pagination ========== */
/* ========== c-news ========== */
.c-news {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ==================== c-news-post ==================== */
.c-news-post__link {
  position: relative;
  display: block;
  padding: 2.4rem 3rem;
  border-radius: 7px;
  background-color: #fff;
  opacity: 1;
  transition: opacity 0.3s;
}

.c-news-post__link:hover {
  opacity: 0.6;
}

.c-news-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.7rem;
}

.c-news-post__date {
  font-size: 1.5rem;
  font-weight: 700;
  color: #677B8C;
}

.c-news-post__categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.c-news-post__categories-item {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background-color: #677B8C;
  flex-shrink: 0;
}

.c-news-post__title {
  margin-top: 1.3rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.83;
  color: #677B8C;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .c-news {
    gap: 2rem;
  }
  .c-news-post__link {
    padding: 2rem 2rem;
  }
  .c-news-post__meta {
    gap: 1rem 1.5rem;
  }
  .c-news-post__categories-item {
    font-size: 1.2rem;
  }
  .c-news-post__title {
    font-size: 1.5rem;
  }
}
/* ========== c-media ========== */
.c-media {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ==================== c-media-post ==================== */
.c-media-post {
  padding: 3.5rem 4rem 4rem;
  border-radius: 7px;
  background-color: #fff;
}

.c-media-post__categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-media-post__categories-item {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background-color: #677B8C;
}

.c-media-post__date {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.4rem;
  margin-top: 1.8rem;
  color: #677B8C;
}

.c-media-post__date-num {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.c-media-post__date-day {
  font-size: 1.8rem;
  font-weight: 700;
}

.c-media-post__date-time {
  font-size: 1.8rem;
  font-weight: 700;
}

.c-media-post__title {
  margin-top: 0.6rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.83;
  color: #677B8C;
}

.c-media-post__link-area {
  margin-top: 1.6rem;
}

.c-media-post__link {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  border-radius: 9999px;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #677B8C;
  background-color: #F2F2F2;
  transition: opacity 0.3s;
}

.c-media-post__link:hover {
  opacity: 0.6;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .c-media {
    gap: 2rem;
  }
  .c-media-post {
    padding: 2rem 2rem 3rem;
  }
  .c-media-post__categories-item {
    font-size: 1.4rem;
  }
  .c-media-post__date {
    margin-top: 1.2rem;
    gap: 0.4rem 1rem;
  }
  .c-media-post__date-num {
    font-size: 2.4rem;
  }
  .c-media-post__date-day,
  .c-media-post__date-time {
    font-size: 1.8rem;
  }
  .c-media-post__date-time {
    display: block;
    width: 100%;
    margin-top: 0.3rem;
  }
  .c-media-post__title {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}
/* ========== c-video ========== */
.c-video {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

/* ==================== c-video-post ==================== */
.c-video-post__thumb {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.c-video-post__thumb > img {
  transform: scale(1.01);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.c-video-post__thumb:hover > img {
  transform: scale(1.07);
}

.c-video-post__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: rgba(17, 17, 17, 0);
  transition: background-color 0.2s;
}

.c-video-post__thumb:hover::before {
  background: rgba(17, 17, 17, 0.3);
}

.c-video-post__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 40px;
  background: url(/assets/img/common/icon-play.svg) no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.c-video-post__thumb:hover .c-video-post__play {
  opacity: 1;
}

.c-video-post__title {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #677B8C;
}

.c-video-post__meta {
  margin-top: 0.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #677B8C;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .c-video {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .c-video-post__play {
    width: 22px;
    height: 30px;
  }
  .c-video-post__title {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .c-video-post__meta {
    font-size: 1.3rem;
  }
}
/* ----- responsive (600) ----- */
@media screen and (max-width: 600px) {
  .c-video {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* ========== c-music ========== */
.c-music {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
}

/* ==================== c-music-post ==================== */
.c-music-post__link {
  display: block;
}

.c-music-post__thumb {
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s, transform 0.3s ease;
}

.c-music-post__link:hover .c-music-post__thumb {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-0.5rem);
}

.c-music-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f2f2f2;
}

.c-music-post__title {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #677B8C;
}

.c-music-post__meta {
  margin-top: 0.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #677B8C;
}

.c-music-post__meta-small {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: #a1adb7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .c-music {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.7rem 2rem;
  }
  .c-music-post__title {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .c-music-post__meta {
    font-size: 1.3rem;
  }
  .c-music-post__meta-small {
    margin-top: 0.6rem;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
/* ----- responsive (750) ----- */
@media screen and (max-width: 750px) {
  .c-music {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.7rem 2rem;
  }
}
/* ========== c-live ========== */
.c-live {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ==================== c-live-post ==================== */
.c-live-post {
  overflow: hidden;
  border-radius: 7px;
  background-color: #fff;
}

.c-live-post__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 5rem 3rem 4rem;
}

.c-live-post__head-info {
  min-width: 0;
}

.c-live-post__date {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #677B8C;
}

.c-live-post__date-day {
  font-size: 1.8rem;
  font-weight: 700;
}

.c-live-post__title {
  margin-top: 0.6rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #677B8C;
}

.c-live-post__toggle {
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding: 1.2rem 1.6rem 1.2rem 3rem;
  border: none;
  border-radius: 9999px;
  font-size: 1.6rem;
  color: #677B8C;
  background-color: #F2F2F2;
  transition: opacity 0.3s;
}

.c-live-post__toggle:hover {
  opacity: 0.6;
}

.c-live-post__toggle-text--close {
  display: none;
}

.c-live-post.is-open .c-live-post__toggle-text--open {
  display: none;
}

.c-live-post.is-open .c-live-post__toggle-text--close {
  display: inline;
}

.c-live-post__toggle-icon {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-right: 1px solid #677B8C;
  border-bottom: 1px solid #677B8C;
  transform: rotate(45deg);
  transition: transform 0.3s, margin 0.3s;
}

.c-live-post.is-open .c-live-post__toggle-icon {
  margin-top: 0.3rem;
  transform: rotate(225deg);
}

.c-live-post__body {
  overflow: hidden;
  height: 0;
}

.c-live-post__detail {
  display: flex;
  gap: 5rem;
  margin: 0 5rem 7rem 4rem;
}

.c-live-post__detail-main {
  flex: 1 1 auto;
  min-width: 0;
}

.c-live-post__detail-aside {
  flex-shrink: 0;
  width: 24rem;
}

.c-live-post__flyer img {
  display: block;
  width: 100%;
  height: auto;
}

.c-live-post__flyer-caption {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #677B8C;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .c-live-post__head {
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem;
  }
  .c-live-post__title {
    font-size: 1.7rem;
  }
  .c-live-post__detail {
    flex-direction: column-reverse;
    gap: 3.3rem;
    margin: 0 2rem 3rem;
  }
  .c-live-post__button-area-sp {
    padding: 0.3rem 2rem 3rem;
  }
  .c-live-post__detail-aside {
    width: 100%;
    max-width: 24rem;
  }
}
/* ========== c-page-visual ========== */
.c-page-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50rem;
}

.c-page-visual__title-area {
  position: absolute;
  top: 23rem;
  left: 0;
  width: 100%;
}

.c-page-visual__title {
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .c-page-visual {
    height: 32rem;
  }
  .c-page-visual__title-area {
    top: 15.1rem;
  }
  .c-page-visual__title {
    font-size: 3.2rem;
  }
}
/* ========== c-button-form ========== */
.c-button-form__button {
  cursor: pointer;
  display: block;
  min-width: 18rem;
  padding: 1.4rem 4.5rem 1.6rem;
  border-radius: 999px;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  background-color: #677b8c;
  opacity: 1;
  transition: opacity 0.3s;
}

.c-button-form__button:hover {
  opacity: 0.7;
}

.c-button-form__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.c-video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
}

.c-video-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.c-video-modal__overlay {
  cursor: pointer;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.c-video-modal__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  pointer-events: none;
}

.c-video-modal__close {
  position: fixed;
  top: 3rem;
  right: 3rem;
  width: 3.2rem;
  height: 3.2rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.c-video-modal__close::before,
.c-video-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #FFF;
}

.c-video-modal__close::before {
  transform: rotate(45deg);
}

.c-video-modal__close::after {
  transform: rotate(-45deg);
}

.c-video-modal__body {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  width: 87.5%;
  max-width: 100vmin;
  pointer-events: auto;
}

.c-video-modal__body iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .c-video-modal__inner {
    width: 100%;
  }
  .c-video-modal__body {
    width: 100%;
  }
}
/* ========== c-anim-text（テキスト1文字分割・スライドアップ） ==========
   JS（c-anim-text.js）が .js-c-anim-text-split-slide-up-keep-br を
   1文字ずつ <span> に分割（<br> は行として保持）し、各文字を下から表示。
   文字ごとに transition-delay（--anim-i）で stagger。 */
.c-anim-text__line {
  display: block;
  overflow: hidden;
  /* ディセンダ（g・y・p 等）がマスクで切れないよう下に余白を確保しつつ、位置は不変に */
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.c-anim-text__char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--anim-i, 0) * 0.04s);
  will-change: transform;
}

.c-anim-text.is-animated .c-anim-text__char {
  transform: translateY(0);
}

/* モーション低減設定時はアニメーションを無効化 */
@media (prefers-reduced-motion: reduce) {
  .c-anim-text__char {
    transform: none;
    transition: none;
  }
}
/* ========== c-cookie ========== */
.c-cookie {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  background-color: #FFF;
  border-radius: 0.7rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.c-cookie__inner {
  padding: 2.3rem 2.5rem 2.5rem;
}

.c-cookie__text {
  font-size: 1.3rem;
  line-height: 1.92;
  color: #677B8C;
}

.c-cookie__link {
  color: #677B8C;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s;
}

.c-cookie__link:hover {
  opacity: 0.6;
}

.c-cookie__icon {
  display: inline-block;
  width: 1.8rem;
  height: 1.3rem;
  margin-left: 0.5rem;
  margin-right: 0.3rem;
  vertical-align: -0.3rem;
  background-color: #677B8C;
  mask: url(/assets/img/common/icon-external-gray.svg) no-repeat center/contain;
  -webkit-mask: url(/assets/img/common/icon-external-gray.svg) no-repeat center/contain;
  flex-shrink: 0;
}

.c-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.c-cookie__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  transition: opacity 0.2s;
}

.c-cookie__button:hover {
  opacity: 0.7;
}

.c-cookie__button.--primary {
  color: #FFF;
  background-color: #607888;
}

.c-cookie__button.--secondary {
  color: #8B97A1;
  background-color: #f2f2f2;
}

@media screen and (max-width: 750px) {
  .c-cookie {
    bottom: 1.6rem;
    width: calc(100% - 3rem);
  }
  .c-cookie__inner {
    padding: 2.4rem 2rem;
  }
  .c-cookie__text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .c-cookie__actions {
    margin-top: 1.6rem;
  }
  .c-cookie__button {
    flex: 1 1 auto;
    min-width: 0;
  }
}
.p-home-kv {
  position: relative;
  z-index: 2;
}

.p-home-kv__inner {
  position: relative;
  padding-top: 11rem;
}

.p-home__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-home__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

.p-home-kv__video {
  position: relative;
  z-index: 1;
}

.p-home-kv__video video {
  width: 86%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: unset;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.p-home-kv__content {
  position: absolute;
  top: 7rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.p-home-kv__info {
  position: absolute;
  bottom: 16rem;
  left: calc(5% - 1.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 30rem;
}

.p-home-kv__title {
  font-size: 2.4rem;
  line-height: 1.45;
  color: #fff;
}

.p-home-kv__link {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-size: 1.5rem;
  color: #FFF;
  transition: opacity 0.2s;
}

.p-home-kv__link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  padding-top: 1px;
  background-color: #FFF;
}

.p-home-kv__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  transform: translateX(100%);
  display: inline-block;
  width: 1.8rem;
  height: 1.3rem;
  background-color: #FFF;
  mask: url(/assets/img/common/icon-external.svg) no-repeat center/contain;
  -webkit-mask: url(/assets/img/common/icon-external.svg) no-repeat center/contain;
  flex-shrink: 0;
}

.p-home-kv__release {
  position: absolute;
  bottom: -2.7rem;
  right: calc(5% - 4.4rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 38rem;
  padding: 2rem;
  border-radius: 0.7rem;
  /* background-color は HTML(CMS)側の inline style で指定。ここではブラー等のみ */
  backdrop-filter: blur(1.2rem);
  -webkit-backdrop-filter: blur(1.2rem);
  transition: opacity 0.3s;
}

.p-home-kv__release:hover {
  opacity: 0.85;
}

.p-home-kv__release-thumb {
  overflow: hidden;
  flex-shrink: 0;
  width: 10rem;
  height: 10rem;
  background: #FFF;
}

.p-home-kv__release-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home-kv__release-meta {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  color: #FFF;
}

.p-home-kv__release-title {
  font-size: 2.1rem;
  line-height: 1.42;
  color: #fff;
}

.p-home-kv__release-link-area {
  margin-top: 1.3rem;
}

.p-home-kv__release-link {
  display: inline-block;
  width: fit-content;
  padding: 0.6rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  font-size: 1.6rem;
  color: #fff;
}

.p-home-kv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.p-home-kv__scroll-text {
  font-size: 1.5rem;
  color: #FFF;
}

.p-home-kv__scroll-line {
  position: relative;
  display: block;
  width: 0.1rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.2);
}

.p-home-kv__scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  height: 5rem;
  background-color: #FFF;
  transform: scaleY(0);
  transform-origin: top center;
  animation: scroll-line-flow 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scroll-line-flow {
  0% {
    transform: scaleY(0);
    transform-origin: top center;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top center;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom center;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-home-kv__scroll-line::before {
    animation: none;
    transform: scaleY(1);
  }
}
.p-home-news-media {
  position: relative;
  z-index: 1;
  padding: 16rem 0;
  margin-top: -5.8rem;
  background: #FFF;
}

.p-home-news-media__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-home-news-media__grid::before {
  content: "";
  position: absolute;
  inset: -6rem -7.9268292683% -7rem;
  z-index: -1;
  display: block;
  border-radius: 7px;
  background-color: #F2F2F2;
}

.p-home-news-media__grid::after {
  content: "";
  position: absolute;
  inset: -11rem 50% -7rem;
  z-index: 0;
  display: block;
  width: 1px;
  background-color: #E6E6E6;
}

.p-home-common-section-title {
  font-size: 3.6rem;
  font-weight: 400;
  color: #677B8C;
}

.p-home-news-media-grid-child:first-child {
  position: relative;
  padding-right: 6rem;
}

.p-home-news-media-grid-child:last-child {
  position: relative;
  padding-left: 6rem;
}

.p-home-news-media-grid-child__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.p-home-news-media-grid-child__item-link:hover {
  opacity: 0.6;
}

.p-home-news-media-grid-child__more-link-area {
  margin-top: 2.4rem;
}

.p-home-news-media-grid-child__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 3.4rem;
}

.p-home-news-media-grid-child__item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.p-home-news-media-grid-child__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-home-news-media-grid-child__head {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.p-home-news-media-grid-child__tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: #677B8C;
  flex-shrink: 0;
}

.p-home-news-media-grid-child__date {
  font-size: 1.5rem;
  font-weight: 700;
  color: #677B8C;
}

.p-home-news-media-grid-child__text {
  margin-top: 1.3rem;
  font-size: 1.6rem;
  line-height: 1.85;
  color: #677B8C;
}

.p-home-news-media-grid-child__empty {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  color: #677B8C;
}

.p-home-live {
  overflow: hidden;
}

.p-home-live__section {
  padding: 6rem 0 7rem;
  background: transparent;
}

.p-home-live-slider {
  width: 91vw;
}

.p-home-live-slider__item {
  width: 38rem;
  height: 20.8rem;
  padding-top: 1.5rem;
}

.p-home-live-slider__item-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  height: 100%;
  padding: 2.6rem 2.5rem 1.7rem;
  opacity: 1;
  transition: opacity 0.2s;
}

@media (hover: hover) {
  .p-home-live-slider__item-link:hover {
    opacity: 0.6;
  }
}
.p-home-live-slider__item-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1.2rem);
  -webkit-backdrop-filter: blur(1.2rem);
}

.p-home-live-slider__date {
  width: calc(100% - 11rem - 2rem);
}

.p-home-live-slider__date-main-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
}

.p-home-live-slider__date-main-text-small {
  margin-left: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
}

.p-home-live-slider__date-sub {
  margin-top: 0.7rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
}

.p-home-live-slider__date-sub-text-small {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
}

.p-home-live-slider__thumb {
  overflow: hidden;
  position: absolute;
  top: -1.5rem;
  right: 1.5rem;
  z-index: 1;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
}

.p-home-live-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.p-home-live-slider__name {
  flex-shrink: 1;
  flex-grow: 0;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #FFF;
  padding-right: 4rem;
}

.p-home-live-slider__section-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 82vw;
  margin-top: 4rem;
}

.p-home-live-slider__pagination {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}

.p-home-live-slider__pagination-dot {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 4rem;
  height: 15px;
  border: none;
  background: transparent;
  padding: 0;
}

.p-home-live-slider__pagination-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFF;
  opacity: 0.25;
  transform: translateY(-50%);
  transition: height 0.2s, opacity 0.2s;
}

.p-home-live-slider__pagination-dot.is-active::before {
  height: 3px;
  opacity: 1;
}

.p-home-live__list-area {
  margin-top: 2rem;
}

.p-home-live-slider__item-link-icon {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background-color: transparent;
}

.p-home-live-slider__item-link-icon::before {
  content: "";
  position: relative;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg) translate(-0.1rem, 0.1rem);
}

.p-home-music {
  overflow: hidden;
}

.p-home-music__section {
  position: relative;
  padding: 6rem 0;
}

.p-home-music__section::after {
  content: "";
  position: absolute;
  left: 3%;
  top: var(--music-section-after-top, 25.3rem);
  bottom: 0;
  width: 94%;
  border-radius: 7px;
  background-color: #F2F2F2;
}

.p-home-music__inner {
  position: relative;
  width: 82%;
  margin: 0 auto;
}

.p-home-music__list-area {
  margin-top: 2rem;
  margin-left: -15px;
}

.p-home-music-slider {
  box-sizing: border-box;
  width: 91vw;
  /* 画像の box-shadow（15pxぼかし）が両端で切れないよう左右に15pxの余白。
     loop:true のため slidesOffset が使えず、border-box の padding で確保（総幅は不変・カード間は spaceBetween:30 のまま） */
  padding-left: 15px;
  padding-right: 15px;
}

.p-home-music-slider__item {
  width: 24rem;
  margin-top: 1.5rem;
}

.p-home-music-slider__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s, transform 0.3s ease;
}

.p-home-music-slider__item-link:hover .p-home-music-slider__thumb {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-0.5rem);
}

.p-home-music-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-home-music-slider__music-title {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #677B8C;
}

.p-home-music-slider__music-meta {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  color: #677B8C;
}

.p-home-music-slider__section-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 82vw;
  margin-top: 4rem;
}

.p-home-music-slider__pagination {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}

.p-home-music-slider__pagination-dot {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 4rem;
  height: 15px;
  border: none;
  background: transparent;
  padding: 0;
}

.p-home-music-slider__pagination-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 1px;
  background-color: #CEDEE1;
  transition: height 0.2s, background-color 0.2s;
}

.p-home-music-slider__pagination-dot.is-active::before {
  height: 3px;
  background-color: #677B8C;
}

.p-home-video {
  overflow: hidden;
}

.p-home-video__section {
  padding: 6rem 0 1.3rem;
}

.p-home-video__list-area {
  margin-top: 3rem;
}

.p-home-video-slider {
  width: 91vw;
}

.p-home-video-slider__item {
  width: 48rem;
}

.p-home-video-slider__video {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 48rem;
  aspect-ratio: 16/9;
}

.p-home-video-slider__video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home-video-slider__video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: rgba(17, 17, 17, 0);
  transition: background-color 0.2s;
}

.p-home-video-slider__video:hover::before {
  background: rgba(17, 17, 17, 0.3);
}

.p-home-video-slider__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 40px;
  background: url(/assets/img/common/icon-play.svg) no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.p-home-video-slider__video:hover .p-home-video-slider__video-play {
  opacity: 1;
}

.p-home-video-slider__video-title {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #677B8C;
}

.p-home-video-slider__video-meta {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  color: #677B8C;
}

.p-home-video-slider__section-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 82vw;
  margin-top: 4rem;
}

.p-home-video-slider__pagination {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}

.p-home-video-slider__pagination-dot {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 4rem;
  height: 15px;
  border: none;
  background: transparent;
  padding: 0;
}

.p-home-video-slider__pagination-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 1px;
  background-color: #CEDEE1;
  transition: height 0.2s, background-color 0.2s;
}

.p-home-video-slider__pagination-dot.is-active::before {
  height: 3px;
  background-color: #677B8C;
}

/* ---------- p-home responsive 1200 ---------- */
@media screen and (max-width: 1200px) {
  .p-home-kv__inner {
    padding-top: 8rem;
  }
}
/* ---------- p-home responsive 1000 ---------- */
@media screen and (max-width: 1000px) {
  .p-home-kv__video video {
    width: 89%;
  }
  .p-home-kv__content {
    position: relative;
    top: unset;
  }
  .p-home-kv__info {
    position: relative;
    bottom: 0;
    left: 0;
    gap: 0.8rem;
    padding: 2rem 5.5% 3rem;
  }
  .p-home-kv__title {
    font-size: 2rem;
    line-height: 1.5;
  }
  .p-home-kv__link {
    font-size: 1.4rem;
  }
  .p-home-kv__link::before {
    bottom: -5px;
    padding-top: 1px;
  }
  .p-home-kv__release {
    position: relative;
    bottom: unset;
    right: 0;
    gap: 2rem;
    width: 34rem;
    padding: 1.5rem;
    margin: 0 3% -7rem;
    border-radius: 0.5rem;
  }
  .p-home-kv__release-thumb {
    width: 9rem;
    height: 9rem;
  }
  .p-home-kv__release-meta {
    margin-bottom: 0.6rem;
  }
  .p-home-kv__release-title {
    font-size: 1.8rem;
    line-height: 1.66;
  }
  .p-home-kv__release-link-area {
    margin-top: 0.5rem;
  }
  .p-home-kv__release-link {
    padding: 0.6rem 2rem;
    font-size: 1.5rem;
  }
  .p-home-kv__scroll {
    position: absolute;
    bottom: -3rem;
    left: unset;
    right: calc(5.5% + 1rem);
    transform: unset;
    gap: 1rem;
  }
  .p-home-kv__scroll-text {
    font-size: 1.3rem;
  }
  .p-home-kv__scroll-line {
    position: relative;
    height: 20rem;
    background: linear-gradient(to bottom, #E6E6E6 0, #E6E6E6 10rem, #606060 10rem);
  }
  .p-home-kv__scroll-line::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1;
    display: block;
    height: 10rem;
    background-color: #FFF;
  }
  .p-home-news-media {
    padding: 10rem 0 5rem;
    margin-top: 0;
  }
  .p-home-news-media__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .p-home-news-media__grid::before {
    content: unset;
  }
  .p-home-news-media__grid::after {
    content: unset;
  }
  .p-home-common-section-title {
    font-size: 2.8rem;
  }
  .p-home-news-media-grid-child:first-child,
  .p-home-news-media-grid-child:last-child {
    padding: 4rem 7.5% 4.5rem;
  }
  .p-home-news-media-grid-child:first-child::after,
  .p-home-news-media-grid-child:last-child::after {
    content: "";
    position: absolute;
    display: block;
    inset: 0 3% 0;
    z-index: -1;
    border-radius: 0.5rem;
    background-color: #F2F2F2;
  }
  .p-home-news-media-grid-child__list {
    gap: 2.4rem;
    margin-top: 2.6rem;
  }
  .p-home-news-media-grid-child__item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .p-home-news-media-grid-child__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .p-home-news-media-grid-child__head {
    gap: 1.1rem;
  }
  .p-home-news-media-grid-child__tag {
    padding: 0.4rem 1.1rem;
    font-size: 1.3rem;
  }
  .p-home-news-media-grid-child__date {
    font-size: 1.4rem;
  }
  .p-home-news-media-grid-child__text {
    margin-top: 1.3rem;
    font-size: 1.5rem;
    line-height: 2;
  }
  .p-home-news-media-grid-child__more-link-area {
    margin-top: 2.6rem;
  }
  .p-home-live__section {
    padding: 4.5rem 0 5rem;
  }
  .p-home-live-slider {
    width: 100vw;
  }
  .p-home-live-slider__item {
    width: 29rem;
    height: 18rem;
    padding-top: 1.5rem;
  }
  .p-home-live-slider__item-link {
    gap: 1.2rem;
    padding: 2.4rem 2rem 1.4rem;
  }
  .p-home-live-slider__item-link::before {
    border-radius: 5px;
  }
  .p-home-live-slider__date {
    width: calc(100% - 8rem - 1.5rem);
  }
  .p-home-live-slider__date-main-text {
    font-size: 2.1rem;
  }
  .p-home-live-slider__date-main-text-small {
    margin-left: 0.4rem;
    font-size: 1.5rem;
  }
  .p-home-live-slider__date-sub {
    margin-top: 0.7rem;
    font-size: 2.1rem;
  }
  .p-home-live-slider__date-sub-text-small {
    font-size: 1.5rem;
  }
  .p-home-live-slider__thumb {
    top: -1rem;
    right: 1.5rem;
    width: 8rem;
    height: 8rem;
  }
  .p-home-live-slider__name {
    padding-right: 4rem;
  }
  .p-home-live-slider__section-foot {
    width: 87vw;
    margin-top: 3rem;
  }
  .p-home-live-slider__pagination-dot {
    width: 3.2rem;
  }
  .p-home-live__list-area {
    margin-top: 1rem;
  }
  .p-home-music__section {
    padding: 4.5rem 0 5rem;
  }
  .p-home-music__section::after {
    top: var(--music-section-after-top, 25.3rem);
    border-radius: 5px;
  }
  .p-home-music__inner {
    width: 83%;
  }
  .p-home-music__list-area {
    margin-top: 2rem;
  }
  .p-home-music-slider {
    width: 100vw;
  }
  .p-home-music-slider__item {
    width: 14rem;
  }
  .p-home-music-slider__music-title {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .p-home-music-slider__music-meta {
    margin-top: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.84;
  }
  .p-home-music-slider__section-foot {
    width: 81vw;
    margin-top: 2.2rem;
  }
  .p-home-music-slider__pagination-dot {
    width: 3.2rem;
  }
  .p-home-music-slider__pagination-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 1px;
    background-color: #CEDEE1;
    transition: height 0.2s, background-color 0.2s;
  }
  .p-home-music-slider__pagination-dot.is-active::before {
    height: 3px;
    background-color: #677B8C;
  }
  .p-home-video__section {
    padding: 4.5rem 0 0;
  }
  .p-home-video__list-area {
    margin-top: 2.6rem;
  }
  .p-home-video-slider {
    width: 100vw;
  }
  .p-home-video-slider__item {
    width: 25.6rem;
  }
  .p-home-video-slider__video {
    width: 25.6rem;
  }
  .p-home-video-slider__video-play {
    width: 24px;
    height: 32px;
  }
  .p-home-video-slider__video-title {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .p-home-video-slider__video-meta {
    font-size: 1.3rem;
  }
  .p-home-video-slider__section-foot {
    width: 84vw;
    margin-top: 2.2rem;
  }
  .p-home-video-slider__pagination-dot {
    width: 3.2rem;
  }
}
@media screen and (max-width: 750px) {
  .p-home-kv__release {
    width: 94%;
  }
}
.p-news {
  position: relative;
}

.p-news__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-news__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

.p-news__body {
  position: relative;
  z-index: 1;
  padding: 0 0 10rem;
  margin-top: -17rem;
}

.p-news__body::after {
  --body-bg-top: 17rem;
  content: "";
  position: absolute;
  top: var(--body-bg-top);
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - var(--body-bg-top));
  background-color: #F2F2F2;
}

.p-news__category-area {
  position: relative;
  z-index: 1;
  margin-bottom: 4.7rem;
}

.p-news__pagination-area {
  margin-top: 5rem;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .p-news__body {
    padding: 0 0 5rem;
    margin-top: -10.3rem;
  }
  .p-news__body::after {
    --body-bg-top: 10.4rem;
  }
  .p-news__category-area {
    margin-bottom: 3rem;
  }
  .p-news__pagination-area {
    margin-top: 4rem;
  }
}
.p-media {
  position: relative;
}

.p-media__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-media__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

.p-media__body {
  position: relative;
  z-index: 1;
  padding: 0 0 10rem;
  margin-top: -17rem;
}

.p-media__body::after {
  --body-bg-top: 17.8rem;
  --body-bg-top: 17rem;
  content: "";
  position: absolute;
  top: var(--body-bg-top);
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - var(--body-bg-top));
  background-color: #F2F2F2;
}

.p-media__category-area {
  position: relative;
  z-index: 1;
  margin-bottom: 5.2rem;
}

.p-media__pagination-area {
  margin-top: 5rem;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .p-media__body {
    padding: 0 0 7rem;
    margin-top: -10.2rem;
  }
  .p-media__body::after {
    --body-bg-top: 10.4rem;
  }
  .p-media__category-area {
    margin-bottom: 3rem;
  }
  .p-media__pagination-area {
    margin-top: 4rem;
  }
}
.p-video {
  position: relative;
}

.p-video__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-video__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

.p-video__body {
  position: relative;
  z-index: 1;
  padding: 0 0 10rem;
  margin-top: -18rem;
}

.p-video__body::after {
  --body-bg-top: 18rem;
  content: "";
  position: absolute;
  top: var(--body-bg-top);
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - var(--body-bg-top));
  background-color: #F2F2F2;
}

.p-video__category-area {
  position: relative;
  z-index: 1;
  margin-bottom: 4.6rem;
}

.p-video__pagination-area {
  margin-top: 6rem;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .p-video__body {
    padding: 0 0 5rem;
    margin-top: -10rem;
  }
  .p-video__body::after {
    --body-bg-top: 10rem;
  }
  .p-video__category-area {
    margin-bottom: 2.5rem;
  }
  .p-video__pagination-area {
    margin-top: 4rem;
  }
}
.p-music {
  position: relative;
}

.p-music__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-music__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

.p-music__body {
  position: relative;
  z-index: 1;
  padding: 0 0 10rem;
  margin-top: -18rem;
}

.p-music__body::after {
  --body-bg-top: 18rem;
  content: "";
  position: absolute;
  top: var(--body-bg-top);
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - var(--body-bg-top));
  background-color: #FFF;
}

.p-music__category-area {
  position: relative;
  z-index: 1;
  margin-bottom: 5.2rem;
}

.p-music__pagination-area {
  margin-top: 6rem;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .p-music__body {
    padding: 0 0 5rem;
    margin-top: -10rem;
  }
  .p-music__body::after {
    --body-bg-top: 10rem;
  }
  .p-music__category-area {
    margin-bottom: 3rem;
  }
  .p-music__pagination-area {
    margin-top: 4rem;
  }
}
/* ==================== p-music-single ==================== */
.p-music-single {
  position: relative;
}

/* ---------- KV（post-thumbnail をぼかして背景に敷く） ---------- */
.p-music-single-kv {
  overflow: hidden;
  position: relative;
  padding: 22rem 0 7.6rem;
}

.p-music-single-kv__bg {
  position: absolute;
  inset: -6rem; /* blur のフチ欠け防止 */
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: blur(3rem);
}

.p-music-single-kv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(34, 34, 34, 0.45);
}

.p-music-single-kv > .l-wrapper {
  position: relative;
  z-index: 1;
}

.p-music-single-kv__inner {
  display: flex;
  align-items: flex-start;
  gap: 6%;
}

.p-music-single-kv__left-col {
  flex-shrink: 0;
  width: 38%;
}
.p-music-single-kv__jacket {
  width: 100%;
  /* aspect-ratio: 1/1; */
  /* overflow: hidden; */
}

.p-music-single-kv__jacket img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-music-single-kv__info {
  flex: 1;
  min-width: 0;
  padding-top: 0.4rem;
  color: #fff;
}

.p-music-single-kv__release {
  font-size: 1.7rem;
  font-weight: 700;
}

.p-music-single-kv__title {
  margin-top: 1.1rem;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-music-single-kv__subtitle {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  line-height: 2;
}

.p-music-single-kv__price-area {
  margin-top: 2.2rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.p-music-single-kv__price-text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  color: #FFF;
}

.p-music-single-kv__tax-text {
  margin-left: 1.2rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: #FFF;
}

.p-music-single-kv__product-number {
  margin-top: 0.6rem;
  font-size: 1.5rem;
  color: #FFF;
}

/* ---------- トラック・ディスク構成（アルバム・複数曲・リンク有無に対応） ---------- */
.p-music-single-tracks {
  margin-top: 4.5rem;
}

/* サブタイトルの直後にトラックエリアが来る場合の余白調整 */
.p-music-single-kv__subtitle + .p-music-single-tracks {
  margin-top: 3.5rem;
}

.p-music-single-disc:not(:first-child) {
  margin-top: 3.5rem;
}

/* ディスクタイトル（[Blu-ray Disc] などの見出し） */
.p-music-single-disc__title {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.p-music-single-disc__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* リンクあり・リンクなしで共通するレイアウトスタイル */
.p-music-single-disc__link,
.p-music-single-disc__nolink {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  min-height: 5rem;
  padding: 1rem 2rem 1rem 2.5rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

/* リンクがあるトラックのみホバーエフェクトを適用 */
.p-music-single-disc__link {
  transition: background-color 0.3s;
}

.p-music-single-disc__link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* 各パーツのスタイル */
.p-music-single-disc__num {
  font-size: 1.5rem;
}

.p-music-single-disc__name {
  flex: 1;
  font-size: 1.5rem;
}

.p-music-single-disc__play {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.p-music-single-disc__play-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
}

.p-music-single-disc__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.2);
}

.p-music-single-disc__play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.3rem;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.95rem;
  border-color: transparent transparent transparent #fff;
}

.p-music-single-tracks__description-title-area {
  margin-top: 4.8rem;
}

.p-music-single-tracks__description-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.83;
  color: #FFF;
}

.p-music-single-tracks__description-area {
  margin-top: 3.5rem;
}

.p-music-single-tracks__description {
  font-size: 1.5rem;
  line-height: 2;
  color: #FFF;
}

/* ---------- Streaming / Buy・Download のロゴリンク群 ---------- */
.p-music-single-links {
  max-width: 50rem;
  margin-top: 4.4rem;
}

.p-music-single-kv__subtitle + .p-music-single-links {
  margin-top: 3.5rem;
}

.p-music-single-links__title {
  margin-bottom: 2.2rem;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
}

.p-music-single-links__grid {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.p-music-single-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.4rem;
  padding: 1.6rem 2rem;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s;
}

.p-music-single-links__item:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

.p-music-single-links__item img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ---------- ロゴ個別サイズ調整（max-height の値を1点ずつ変えて微調整） ---------- */
/* Streaming */
.p-music-single-links__logo--line-music {
  max-height: 1.4rem;
}

.p-music-single-links__logo--apple-music {
  max-height: 1.8rem;
}

.p-music-single-links__logo--spotify {
  max-height: 2.6rem;
}

.p-music-single-links__logo--amazon-music {
  max-height: 2.4rem;
}

/* Buy / Download */
.p-music-single-links__logo--sony-music-shop {
  max-height: 1.5rem;
}

.p-music-single-links__logo--itunes-store {
  max-height: 2.4rem;
}

.p-music-single-links__logo--recochoku {
  max-height: 2rem;
}

.p-music-single-links__logo--mora {
  max-height: 2rem;
}

/* -------------------- responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
  .p-music-single-kv {
    padding: 15rem 0 6rem;
  }
  .p-music-single-kv__inner {
    display: block;
  }
  .p-music-single-kv__left-col {
    width: 100%;
    margin-bottom: 2.6rem;
  }
  .p-music-single-kv__jacket {
    width: 64%;
    margin: 0 auto;
  }
  .p-music-single-tracks__description-title-area {
    margin-top: 2.3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .p-music-single-tracks__description-area {
    margin-top: 2.6rem;
    padding-top: 3.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .p-music-single-tracks__description-title-area + .p-music-single-tracks__description-area {
    margin-top: 1.5rem;
    padding-top: 0;
    border-top: unset;
  }
  .p-music-single-tracks__description-title {
    font-size: 1.7rem;
  }
  .p-music-single-kv__release {
    font-size: 1.6rem;
  }
  .p-music-single-kv__title {
    margin-top: 0.5rem;
    font-size: 2.6rem;
  }
  .p-music-single-kv__subtitle {
    margin-top: 0.3rem;
  }
  .p-music-single-kv__price-area {
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .p-music-single-tracks {
    margin-top: 4rem;
  }
  .p-music-single-disc__link,
  .p-music-single-disc__nolink {
    padding: 1rem 1.5rem 1rem 2rem;
  }
  .p-music-single-disc__play-text {
    font-size: 1.2rem;
  }
  .p-music-single-links {
    max-width: unset;
    margin-top: 3.9rem;
  }
  .p-music-single-kv__subtitle + .p-music-single-links {
    margin-top: 2.5rem;
  }
  .p-music-single-links__title {
    margin-bottom: 2.2rem;
    font-size: 2.2rem;
  }
  /* ---------- ロゴ個別サイズ調整（max-height の値を1点ずつ変えて微調整） ---------- */
  /* Streaming */
  .p-music-single-links__logo--line-music {
    max-height: 1.2rem;
  }
  .p-music-single-links__logo--apple-music {
    max-height: 1.5rem;
  }
  .p-music-single-links__logo--spotify {
    max-height: 2.2rem;
  }
  .p-music-single-links__logo--amazon-music {
    max-height: 2rem;
  }
  /* Buy / Download */
  .p-music-single-links__logo--sony-music-shop {
    max-height: 1.2rem;
  }
  .p-music-single-links__logo--itunes-store {
    max-height: 2rem;
  }
  .p-music-single-links__logo--recochoku {
    max-height: 1.7rem;
  }
  .p-music-single-links__logo--mora {
    max-height: 1.7rem;
  }
}
/* -------------------- responsive (750) -------------------- */
@media screen and (max-width: 750px) {
  .p-music-single-kv__jacket {
    width: 100%;
    max-width: none;
  }
}
.p-biography {
  position: relative;
}

.p-biography__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-biography__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

.p-biography__body {
  position: relative;
  z-index: 1;
  padding: 0 0 2.2rem;
  margin-top: -17rem;
}

.p-biography__body::after {
  --body-bg-top: 17rem;
  content: "";
  position: absolute;
  top: var(--body-bg-top);
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - var(--body-bg-top));
  background-color: #fff;
}

.p-biography__visual {
  position: relative;
  z-index: 1;
}

.p-biography__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.p-biography__profile {
  margin-top: 3.7rem;
}

.p-biography__name {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: #677B8C;
}

.p-biography__text {
  margin-top: 2.4rem;
}

.p-biography__text p {
  font-size: 1.5rem;
  line-height: 2;
  color: #677B8C;
}

.p-biography__text p + p {
  margin-top: 2.6rem;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .p-biography__body {
    padding: 0;
    margin-top: -10rem;
  }
  .p-biography__body::after {
    --body-bg-top: 10rem;
  }
  .p-biography__profile {
    margin-top: 2.8rem;
  }
  .p-biography__name {
    font-size: 2.8rem;
  }
  .p-biography__text {
    margin-top: 2rem;
  }
  .p-biography__text p {
    font-size: 1.5rem;
    line-height: 2;
  }
  .p-biography__text p + p {
    margin-top: 2rem;
  }
}
.p-live {
  position: relative;
}

.p-live__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-live__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

.p-live__body {
  position: relative;
  z-index: 1;
  padding: 0 0 10rem;
  margin-top: -17rem;
}

.p-live__body::after {
  --body-bg-top: 17rem;
  content: "";
  position: absolute;
  top: var(--body-bg-top);
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - var(--body-bg-top));
  background-color: #F2F2F2;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .p-live__body {
    padding: 0 0 5rem;
    margin-top: -10rem;
  }
  .p-live__body::after {
    --body-bg-top: 10rem;
  }
}
/* ==================== p-single ==================== */
.p-single {
  position: relative;
}

/* 固定ブラー背景動画（他ページと同様にページトップの背景に敷く） */
.p-single__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-single__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

/* 本文ラッパ：他ページと同様に z-index:1 で固定ブラーの上に乗せ、
   ::after で #F2F2F2 を上部（ブラーKV）の下から下に敷く */
.p-single__body {
  position: relative;
  z-index: 1;
  padding-top: 21rem;
}

.p-single__body::after {
  --body-bg-top: 50rem;
  content: "";
  position: absolute;
  top: var(--body-bg-top);
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - var(--body-bg-top));
  background-color: #F2F2F2;
}

/* 記事の白パネル（l-wrapper幅） */
.p-single__article {
  padding: 9rem 13% 8.5rem;
  background-color: #FFF;
  border-radius: 7px;
}

.p-single-head__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.p-single-head__page-title-area {
  width: 100%;
}

.p-single-head__meta-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.7rem;
  margin-bottom: 2rem;
}

.p-single-head__date {
  font-size: 1.5rem;
  font-weight: 700;
  color: #677b8c;
}

.p-single-head__categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.p-single-head__categories-item {
  display: inline-block;
  padding: 0.2rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background-color: #677b8c;
  flex-shrink: 0;
}

.p-single-head__page-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  color: #677b8c;
}

.p-single__contents {
  padding-top: 4.7rem;
}

.p-single__others-area {
  padding: 9.2rem 0 11rem;
}

.p-single-others__title {
  margin-bottom: 3.3rem;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: #677b8c;
}

.p-single-others__more {
  display: flex;
  justify-content: start;
  margin-top: 4rem;
}

/* -------------------- p-single responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
  .p-single__body {
    padding-top: 15rem;
  }
  .p-single__body::after {
    --body-bg-top: 32rem;
  }
  .p-single__article {
    padding: 4rem 6% 4rem;
    border-radius: 5px;
  }
  .p-single-head__meta-area {
    gap: 1rem 1.2rem;
    margin-bottom: 1.6rem;
  }
  .p-single-head__date {
    font-size: 1.4rem;
  }
  .p-single-head__categories-list {
    gap: 1rem 1.5rem;
  }
  .p-single-head__categories-item {
    padding: 0.2rem 1rem;
    font-size: 1.3rem;
  }
  .p-single-head__page-title {
    font-size: 2.2rem;
    line-height: 1.68;
  }
  .p-single__contents {
    padding-top: 2.3rem;
  }
  .p-single__others-area {
    padding: 4.5rem 0 5rem;
  }
  .p-single-others__title {
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
  }
  .p-single-others__more {
    margin-top: 3rem;
  }
}
/* ==================== p-contact ==================== */
.p-contact {
  position: relative;
  padding-bottom: 10rem;
}

/* 固定ブラー背景動画（他下層ページと共通） */
.p-contact__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}

.p-contact__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}

/* 本文：白カードをKV下端に重ねる。
   他ページ（p-single / p-media）と同様に ::after で #F2F2F2 を
   ブラーKVの下から下に敷く */
.p-contact__body {
  position: relative;
  z-index: 1;
  margin-top: -17rem;
}

.p-contact__body::after {
  --body-bg-top: 17rem;
  content: "";
  position: absolute;
  top: var(--body-bg-top);
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - 7rem);
  background-color: #F2F2F2;
}

.p-contact__texts-area {
  margin-top: 6.7rem;
}

/* 白カード（フォームの土台） */
.p-contact__form-area {
  padding: 8.8rem 13% 9.5rem;
  border-radius: 0.7rem;
  background-color: #fff;
}

.p-contact form table tr {
  display: flex;
  flex-direction: column;
}

.p-contact form table tr th {
  width: 100%;
  padding: 3.2rem 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contact form table.table1 tr:nth-child(1) th {
  padding: 0 0 1.5rem;
}

.p-contact form table tr:nth-child(1) th {
  padding: 0 0 1.7rem;
}

.p-contact form table tr th .required,
.p-contact-confirm__label .required {
  display: inline-block;
  padding: 3px 10px 3px;
  margin-left: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #677b8c;
}

.p-contact form table tr th .optional {
  transform: translateY(-2px);
  display: inline-block;
  padding: 3px 6px 5px 5px;
  margin-right: 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background-color: #B7B7B7;
}

.p-contact form table tr td {
  width: 100%;
}

.p-contact form td input {
  width: 100%;
  padding: 1.3rem 2.3rem 1.4rem;
  border: 1px solid #dfe3e7;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  background-color: #FFFFFF;
}

.p-contact form input::placeholder {
  color: #BBBBBB;
}

.p-contact form td.radio-buttons-area {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  padding: 0 0 1rem;
  background-color: transparent;
}

.p-contact form input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.p-contact form label:has(input[type=radio]) {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-contact form label:has(input[type=radio]:checked) {
  color: inherit;
}

.p-contact form label:has(input[type=radio])::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #677b8c;
  border-radius: 50%;
  background-color: #FFF;
}

/* ::before と全く同じボックス（left:0 / 1.8rem / top:50% / translateY(-50%)）にし、
   透明ボーダー＋background-clip:content-box で内側1remだけを塗る。
   両擬似要素の配置・丸めが完全一致するため確実に同心円になる。 */
.p-contact form label:has(input[type=radio])::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border: 0.4rem solid transparent;
  border-radius: 50%;
  background-color: #677b8c;
  background-clip: content-box;
  opacity: 0;
  transition: opacity 0.2s;
}

.p-contact form label:has(input[type=radio]:checked)::after {
  opacity: 1;
}

.p-contact__warn-text {
  margin-left: 1.8rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  color: #888888;
}

.p-contact form textarea {
  resize: vertical;
  field-sizing: content;
  width: 100%;
  min-height: 21rem;
  padding: 1.3rem 2.3rem 1.4rem;
  border: 1px solid #dfe3e7;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  background-color: #FFFFFF;
}

.p-contact form textarea::placeholder {
  color: #999999;
}

.p-contact__check-area {
  display: flex;
  margin: 5.8rem 0 0;
}

.p-contact__privacy-checkbox {
  display: none;
}

.p-contact__privacy-label.--checked::after {
  opacity: 1;
}

.p-contact__privacy-label {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.p-contact__privacy-label::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: -0.3rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #0071BB;
  border-radius: 2px;
}

.p-contact__privacy-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.2rem;
  left: 0.4rem;
  width: 1.2rem;
  height: 0.9rem;
  background-image: url("/assets/img/pages/icon-form-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s;
}

.p-contact__privacy-link {
  text-decoration: underline;
  color: #0071BB;
  transition: opacity 0.2s;
}

.p-contact__privacy-link:hover {
  opacity: 0.6;
}

.p-contact__text-area-under-agreen {
  margin-top: 3.3rem;
}

.p-contact__buttons-area {
  display: flex;
  gap: 3rem;
  padding-top: 4rem;
}

.p-contact__tel-area {
  margin-top: 11rem;
}

.p-contact__tel-img {
  width: clamp(50rem, 100%, 78rem);
}

/* ==================== 送信内容確認（confirm）/ 完了（completed） ==================== */
.p-contact-confirm__lead {
  font-size: 1.5rem;
  line-height: 2;
}

/* 確認画面：項目を「ラベル＋必須バッジ／値」を下線区切りで縦積み */
.p-contact-confirm {
  margin-top: 2rem;
}

.p-contact-confirm__row {
  padding: 3rem 0 0.8rem;
  border-bottom: 1px solid #dfe3e7;
}

.p-contact-confirm__label {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contact-confirm__value {
  font-size: 1.6rem;
  line-height: 2;
  color: #677b8c;
  word-break: break-word;
}

.p-contact-confirm__error {
  margin: 2rem 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #c0392b;
}

/* 確認・完了画面のボタン（送信内容確認画面専用。90×40px・隙間10px） */
.p-contact-confirm__buttons {
  display: flex;
  gap: 10px;
  padding-top: 4rem;
}

.p-contact-confirm__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.5rem;
  color: #fff;
  background-color: #677b8c;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-contact-confirm__button:hover {
  opacity: 0.7;
}

.p-contact-confirm__button--back {
  color: #677b8c;
  background-color: #f2f2f2;
}

/* -------------------- p-contact responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
  .p-contact {
    padding-bottom: 6rem;
  }
  .p-contact__body::after {
    --body-bg-top: 10rem;
    height: calc(100% - 4rem);
  }
  .p-contact__texts-area {
    margin-top: 5.5rem;
  }
  .p-contact__form-area {
    padding: 3.6rem 6% 6rem;
    margin-top: 7.1rem;
  }
  .p-contact form table tr {
    flex-direction: column;
  }
  .p-contact form table tr th {
    padding: 2.5rem 0 1.7rem;
  }
  .p-contact form td.radio-buttons-area {
    padding: 0 0 0.7rem;
  }
  .p-contact form input {
    font-size: 1.5rem;
  }
  .p-contact form label:has(input[type=radio]) {
    font-size: 1.5rem;
  }
  .p-contact form label:has(input[type=radio]):not(:last-of-type) {
    margin-right: 1.5rem;
  }
  .p-contact form textarea {
    width: 100%;
    min-height: 21rem;
  }
  .p-contact__check-area {
    margin: 4.2rem 0 0;
  }
  .p-contact__privacy-label {
    font-size: 1.5rem;
  }
  .p-contact__buttons-area {
    padding-top: 4rem;
  }
  .p-contact__tel-area {
    margin-top: 7rem;
  }
}
/* ========== utility ========== */
/* ==========================================================================
   Display Utilities（表示・非表示の切り替え）
   デバイスの画面幅に応じて、要素の表示・非表示を制御するヘルパークラスです。
   ========================================================================== */
.u-pc {
  display: block !important;
}

.u-tablet-sp {
  display: none !important;
}

.u-pc-tablet {
  display: block !important;
}

.u-sp {
  display: none !important;
}

.u-pc-sp {
  display: block;
}

.u-tablet {
  display: none;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.u-display-inline-block {
  display: inline-block;
}

.u-width-0 {
  display: inline-block;
  width: 0;
}

/* ==========================================================================
   Color Utilities
   ========================================================================== */
.u-color-white {
  color: #fff;
}

.u-background-color-white {
  background-color: #fff;
}

.u-background-color-gray {
  background-color: #F2F2F2;
}

.u-background-color-transparent {
  background-color: transparent !important;
}

.img, .video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.u-text {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
}

.u-text + .u-text {
  margin-top: 3.5rem;
}

/* ==========================================================================
   Hover Utilities
   ========================================================================== */
.u-text-link {
  text-decoration: underline;
  opacity: 1;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .u-text-link:hover {
    opacity: 0.6;
  }
}
.u-hover-opacity {
  opacity: 1;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .u-hover-opacity:hover {
    opacity: 0.6;
  }
}
/* ==========================================================================
   Font Utilities
   ========================================================================== */
/* ==========================================================================
   Icon Utilities
   ========================================================================== */
.u-has-icon-external::after {
  content: "";
  position: relative;
  top: 2px;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.8rem;
  -webkit-mask-image: url("/osaka/assets/img/common/icon-external.svg");
  mask-image: url("/osaka/assets/img/common/icon-external.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
}

.u-margin-right15 {
  margin-right: 15px;
}

/* ==========================================================================
   Inview（スクロールアニメーション）
   ※ JSと連動するアニメーションフック。ユーティリティではなく別枠扱い。
   common.js の IntersectionObserver が .inview 要素を監視し、
   表示領域に入ったタイミングで .show を付与してアニメーションが発火する。
   使い方: <div class="inview">アニメーションさせたい要素</div>
   ========================================================================== */
.inview {
  transform: translate(0, 5px);
  opacity: 0;
  transition: filter 0.7s, opacity 0.7s, transform 0.7s;
}

.inview.inview--2 {
  transform: translate(0);
  filter: blur(10px);
  opacity: 0;
  transition: filter 1.5s, opacity 0.7s, transform 0.7s;
}

.inview.show {
  transform: translate(0, 0);
  opacity: 1;
}

.inview.inview--2.show {
  transform: translate(0);
  filter: blur(0);
  opacity: 1;
}

/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .u-pc {
    display: none !important;
  }
  .u-tablet-sp {
    display: block !important;
  }
  .u-pc-sp {
    display: none !important;
  }
  .u-tablet {
    display: block !important;
  }
  .u-text + .u-text {
    margin-top: 2.8rem;
  }
}
/* ----- responsive (750) ----- */
@media screen and (max-width: 750px) {
  .u-pc-tablet {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
  .u-pc-sp {
    display: block !important;
  }
  .u-tablet {
    display: none !important;
  }
}

html.wf-loading body {
  visibility: hidden;
}

/* 404ページ用スタイル（動画が常に全画面に敷かれる設計） */
.p-404 {
  position: relative;
}
.p-404__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(34, 34, 34, 0.3);
}
.p-404__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3rem);
  transform: scale(1.2);
}
.p-404__body {
  position: relative;
  z-index: 1;
  padding: 0 0 10rem;
  margin-top: -17rem;
}




.p-404__article {
  padding: 9rem 13% 10rem;
  background-color: transparent;
  text-align: center;
}
.p-404-head {
  text-align: center;
}
.p-404-head__page-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFF;
}
.p-404__contents {
  padding-top: 3rem;
}
.p-404__text-area {
  margin-bottom: 4rem;
}
.p-404__button-area {
  margin-top: 5rem;
}

/* 1000px以下のレスポンシブ調整 */
@media screen and (max-width: 1000px) {
  .p-404__body {
    padding: 0 0 8rem;
    margin-top: -10.2rem;
  }
  .p-404__button-area {
    margin-top: 3rem;
  }
  .p-404__article {
    padding: 5rem 6% 5.5rem;
    border-radius: 5px;
  }
  .p-404-head__page-title {
    font-size: 2.8rem;
  }
  .p-404__contents {
    padding-top: 2rem;
  }
  .p-404__text-area {
    margin-bottom: 2.5rem;
  }
}

/* 投稿がない場合の背景透過対応 */
[class*="__body"].--empty::after {
  background-color: transparent !important;
}

.p-music .page-numbers {
  background-color: #f2f2f2;
}
.p-music .page-numbers.current,
.p-music a.page-numbers:hover {
  background-color: #677B8C;
}
.p-music .page-numbers.dots {
  background-color: transparent;
}
.p-music .page-numbers.dots:hover {
  background-color: transparent;
}


