@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;
}

@font-face {
  font-family: "SourceHanSans";
  src: url("../font/SourceHanSans/SourceHanSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSans";
  src: url("../font/SourceHanSans/SourceHanSans-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSans";
  src: url("../font/SourceHanSans/SourceHanSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../font/NotoSansJP/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../font/NotoSansJP/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../font/NotoSansJP/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "SourceHanSans", "NotoSansJP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
  background-color: #F9F9F8;
  color: #3E3A39;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

/* ロードアニメーション */
.a-load-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.a-load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

/* フッター用の段階的遅延 */
.l-footer .a-load-fade:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.l-footer .a-load-fade:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.l-footer .a-load-fade:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/* スクロールアニメーション */
.a-scroll-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.a-scroll-fade.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/* 異なる方向のアニメーション */
.a-scroll-fade-left {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.a-scroll-fade-left.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.a-scroll-fade-right {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.a-scroll-fade-right.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

/* スケールアニメーション */
.a-scroll-scale {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.a-scroll-scale.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* 順次アニメーション用の遅延クラス */
.a-scroll-fade:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.a-scroll-fade:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.a-scroll-fade:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.a-scroll-fade:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.a-scroll-fade:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.a-scroll-fade:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.a-scroll-fade:nth-child(7) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.a-scroll-fade:nth-child(8) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.l-footer {
  padding: 32px 78px 40px 61px;
  -webkit-margin-before: clamp(2.5rem, 0.169198895rem + 9.9447513812vw, 8.125rem);
          margin-block-start: clamp(2.5rem, 0.169198895rem + 9.9447513812vw, 8.125rem);
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-inline: 10%;
  }
}
.l-footer__link-wrapper {
  width: 65%;
  margin: 0 auto 114px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 42px;
     -moz-column-gap: 42px;
          column-gap: 42px;
  row-gap: 42px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__link-wrapper {
    width: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-margin-after: 80px;
            margin-block-end: 80px;
  }
}
.l-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3em;
  -webkit-padding-after: 27px;
          padding-block-end: 27px;
  -webkit-border-after: 3px solid #E1E196;
          border-block-end: 3px solid #E1E196;
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
  letter-spacing: 0.1em;
}
.l-footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-after: 26px;
          margin-block-end: 26px;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-list {
    -webkit-margin-after: 56px;
            margin-block-end: 56px;
  }
}
.l-footer__sns-image {
  display: block;
  width: 44px;
  height: 44px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-footer__sns-image:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.l-footer__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__text-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__text {
  font-size: clamp(0.875rem, -0.375rem + 1.5625vw, 1.5rem);
}

body.menu-open {
  overflow: hidden;
}

.l-header {
  -webkit-padding-before: clamp(2.1875rem, 0.0625rem + 2.65625vw, 3.25rem);
          padding-block-start: clamp(2.1875rem, 0.0625rem + 2.65625vw, 3.25rem);
  -webkit-padding-after: 2.25rem;
          padding-block-end: 2.25rem;
  -webkit-padding-end: clamp(3.8125rem, 0.1875rem + 4.53125vw, 5.625rem);
          padding-inline-end: clamp(3.8125rem, 0.1875rem + 4.53125vw, 5.625rem);
  -webkit-padding-start: clamp(3rem, -1rem + 5vw, 5rem);
          padding-inline-start: clamp(3rem, -1rem + 5vw, 5rem);
  -webkit-padding-before: 2.7083333333vw;
          padding-block-start: 2.7083333333vw;
  -webkit-padding-after: 1.875vw;
          padding-block-end: 1.875vw;
  -webkit-padding-end: 4.6875vw;
          padding-inline-end: 4.6875vw;
  -webkit-padding-start: 4.1666666667vw;
          padding-inline-start: 4.1666666667vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #F9F9F8;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .l-header {
    -webkit-padding-before: 1.25rem;
            padding-block-start: 1.25rem;
    -webkit-padding-start: 1.25rem;
            padding-inline-start: 1.25rem;
    -webkit-padding-end: 0.625rem;
            padding-inline-end: 0.625rem;
    -webkit-padding-after: 1.125rem;
            padding-block-end: 1.125rem;
  }
}
.l-header.is-active .l-header__nav-indicator {
  opacity: 1;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8125vw;
  letter-spacing: 0.2em;
}

.l-header__nav-item {
  position: relative;
  font-size: 1.125rem;
  font-size: 0.9375vw;
  text-transform: uppercase;
}

.l-header__nav-indicator {
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: #EB858A;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-header__nav-indicator.is-active {
  opacity: 1;
}

.l-header__logo-wrapper {
  width: clamp(7.5rem, 4.6963652482rem + 7.8014184397vw, 10.9375rem);
}

.l-header__hamburger-btn {
  position: fixed;
  top: 0.625rem;
  right: 0.625rem;
  width: 3.125rem;
  height: 3.125rem;
  z-index: 1000;
  border: none;
  padding: 0;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__hamburger-btn[aria-expanded=true] .l-header__hamburger-line {
  background-color: transparent;
}
.l-header__hamburger-btn[aria-expanded=true] .l-header__hamburger-line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__hamburger-btn[aria-expanded=true] .l-header__hamburger-line::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-header__hamburger-line {
  background-color: #3E3A39;
  width: 2.25rem;
  height: 0.125rem;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.l-header__hamburger-line::before, .l-header__hamburger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #3E3A39;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.l-header__hamburger-line::before {
  top: -0.5rem;
}
.l-header__hamburger-line::after {
  bottom: -0.5rem;
}

.l-header__mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 400px;
  min-height: 100vh;
  background-color: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 101;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.l-header__mobile-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-header__mobile-nav-list {
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
}

.l-header__mobile-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55px;
  -webkit-padding-start: 1.75rem;
          padding-inline-start: 1.75rem;
  -webkit-border-after: 0.5px solid #3E3A39;
          border-block-end: 0.5px solid #3E3A39;
  background-color: #fff;
}
.l-header__mobile-nav-item:first-child {
  border-top: 0.5px solid #3E3A39;
}
.l-header__mobile-nav-item:hover {
  background-color: #E1E196;
}

.l-header__mobile-nav-link {
  display: block;
  font-size: 1.125rem;
  color: #3E3A39;
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.__menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
.__menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.c-sec__title {
  position: absolute;
  top: 0;
  left: 15%;
  width: 60px;
  height: 12.5rem;
  -webkit-border-end: 3px solid #E1E196;
          border-inline-end: 3px solid #E1E196;
}
@media screen and (max-width: 767px) {
  .c-sec__title {
    position: static;
    height: auto;
    -webkit-padding-after: 1rem;
            padding-block-end: 1rem;
    -webkit-padding-end: 6.25rem;
            padding-inline-end: 6.25rem;
    -webkit-margin-after: 2.625rem;
            margin-block-end: 2.625rem;
    -webkit-border-end: none;
            border-inline-end: none;
    -webkit-border-after: 3px solid #E1E196;
            border-block-end: 3px solid #E1E196;
  }
}
.c-sec__title-text {
  display: inline-block;
  -webkit-transform: rotate(90deg) translate(32px, 38px);
          transform: rotate(90deg) translate(32px, 38px);
  -webkit-transform-origin: center;
          transform-origin: center;
  white-space: nowrap;
  font-size: clamp(1.25rem, 0.5rem + 0.9375vw, 1.625rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-sec__title-text {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.c-view-all {
  display: block;
  -webkit-margin-before: clamp(3rem, 0rem + 6.25vw, 5rem);
          margin-block-start: clamp(3rem, 0rem + 6.25vw, 5rem);
  -webkit-margin-end: 10%;
          margin-inline-end: 10%;
  text-align: right;
}
.c-view-all__text {
  -webkit-margin-end: clamp(0.875rem, 0.125rem + 0.9375vw, 1.25rem);
          margin-inline-end: clamp(0.875rem, 0.125rem + 0.9375vw, 1.25rem);
  font-size: clamp(1rem, 0rem + 1.25vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .c-view-all__image {
    width: 80px;
  }
}

.p-fv {
  position: relative;
  width: 100%;
}

.p-fv__text-area {
  position: absolute;
  top: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 1023px) {
  .p-fv__text-area {
    height: 100svh;
    aspect-ratio: auto;
  }
}

.p-fv__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.75rem, 1.052184466rem + 2.9773462783vw, 4.625rem);
  gap: 3.75vw;
  pointer-events: none;
  opacity: 0;
}

.p-fv__image {
  width: 3.75vw;
  height: auto;
  opacity: 0;
  -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
  /* または白い影 */
  -webkit-filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
          filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
  -webkit-filter: drop-shadow(-1px -1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px 1px 0 white) drop-shadow(1px 1px 0 white);
          filter: drop-shadow(-1px -1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px 1px 0 white) drop-shadow(1px 1px 0 white);
}
@media screen and (max-width: 767px) {
  .p-fv__image {
    width: 6.25vw;
  }
}

.p-fv__map-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-fv__map-wrapper {
    height: 100svh;
  }
}

.p-fv__map {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-margin-before: calc(-1 * var(--map-overlap, 0px));
          margin-block-start: calc(-1 * var(--map-overlap, 0px));
  overflow: visible;
  transform-box: fill-box;
}

.p-fv__map [id^=piece] {
  transform-box: fill-box;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  will-change: transform;
}

.p-fv__skip-btn {
  position: fixed;
  bottom: clamp(2.5rem, -2.5rem + 6.25vw, 5rem);
  right: clamp(2.5rem, -2.5rem + 6.25vw, 5rem);
  z-index: 100;
  padding: clamp(0.75rem, 0.25rem + 0.625vw, 1rem) clamp(1.5rem, 0.5rem + 1.25vw, 2rem);
  background: rgba(62, 58, 57, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: clamp(0.25rem, -0.25rem + 0.625vw, 0.5rem);
  font-size: clamp(0.75rem, 0.5rem + 0.3125vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.p-fv__skip-btn:hover {
  background: rgba(62, 58, 57, 0.95);
  border-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.p-fv__skip-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-fv__skip-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* 後続のスクロール余白 */
/* 念のためのクリップ対策 */
/* 各画像は個別にフェードイン */
/* ステージは幅で管理。高さで潰さない */
/* SVGは“横幅主導”。高さは比率から自動で決まる */
/* 以前の “min(92vw, 1100px)” や max-height 指定を確実に打ち消す */
/* すでに入れてるはずだけど念のため */
/* ステージは基準枠（絶対配置の基準）＆上下は見せない */
/* SVGは一段下のレイヤーに */
.p-about {
  -webkit-padding-before: 12.5vw;
          padding-block-start: 12.5vw;
}

.p-about__inner {
  padding-inline: clamp(1rem, 0rem + 2.0833333333vw, 2.5rem);
  margin-inline: auto;
  max-width: 105.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/*--------------------------------------------------
Hero Image
--------------------------------------------------*/
.p-about__hero-image {
  width: 100%;
  max-width: clamp(16.625rem, -4.0557620818rem + 57.5464684015vw, 65rem);
  max-width: clamp(20rem, 0.7620817844rem + 53.531598513vw, 65rem);
  margin: 0 auto;
}
@media screen and (max-width: 574px) {
  .p-about__hero-image {
    max-width: none;
  }
}
.p-about__hero-image img {
  width: 100%;
  max-width: none;
  height: auto;
}

.p-about__text-wrapper {
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-about__text-wrapper {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

/*--------------------------------------------------
Title & Text
--------------------------------------------------*/
.p-about__content-wrapper {
  position: relative;
  -webkit-margin-before: clamp(6.25rem, -3.25rem + 11.875vw, 11rem);
          margin-block-start: clamp(6.25rem, -3.25rem + 11.875vw, 11rem);
}

.p-about__title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: clamp(6.25rem, -3.25rem + 11.875vw, 11rem);
          margin-block-start: clamp(6.25rem, -3.25rem + 11.875vw, 11rem);
  -webkit-margin-after: clamp(3.75rem, 1.375rem + 2.96875vw, 4.9375rem);
          margin-block-end: clamp(3.75rem, 1.375rem + 2.96875vw, 4.9375rem);
  margin-inline: auto;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.p-about__text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.12em;
  font-size: clamp(1rem, -0.25rem + 1.5625vw, 1.625rem);
  line-height: 1.7;
  text-align: justify;
}

/* ====== コピーライト（マーキー） ====== */
.p-copyright {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-margin-after: clamp(3.125rem, -1.2258287293rem + 18.5635359116vw, 13.625rem);
          margin-block-end: clamp(3.125rem, -1.2258287293rem + 18.5635359116vw, 13.625rem);
}

.p-copyright__track {
  position: relative;
  height: clamp(1.75rem, 0.6104972376rem + 4.861878453vw, 4.5rem);
  --marquee-gap: 100vw;
  --marquee-dist: 0px;
}

.p-copyright__image {
  position: absolute;
  top: 0;
  left: 0;
  /* 1枚目は左端 */
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  aspect-ratio: 2782.6/101.42;
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: marquee-left var(--marquee-dur) linear infinite;
          animation: marquee-left var(--marquee-dur) linear infinite;
}

.p-copyright__image + .p-copyright__image {
  left: calc(var(--marquee-dist, 0px) + var(--marquee-gap, 0px)) !important;
  /* 同期させるので遅延なし */
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}

/* ====== 唯一のキーフレーム ====== */
@-webkit-keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-1 * (var(--marquee-dist, 0px) + var(--marquee-gap, 0px))));
            transform: translateX(calc(-1 * (var(--marquee-dist, 0px) + var(--marquee-gap, 0px))));
  }
}
@keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-1 * (var(--marquee-dist, 0px) + var(--marquee-gap, 0px))));
            transform: translateX(calc(-1 * (var(--marquee-dist, 0px) + var(--marquee-gap, 0px))));
  }
}
/* ユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .p-copyright__image {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
}
.p-topics {
  -webkit-padding-before: clamp(3.75rem, -2.4654696133rem + 26.5193370166vw, 18.75rem);
          padding-block-start: clamp(3.75rem, -2.4654696133rem + 26.5193370166vw, 18.75rem);
  margin-inline: auto;
  max-width: 1920px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/* ====== コピーライト（マーキー） ====== */
.p-copyright {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-margin-after: clamp(3.125rem, -1.2258287293rem + 18.5635359116vw, 13.625rem);
          margin-block-end: clamp(3.125rem, -1.2258287293rem + 18.5635359116vw, 13.625rem);
}

.p-copyright__track {
  position: relative;
  height: clamp(1.75rem, 0.6104972376rem + 4.861878453vw, 4.5rem);
  --marquee-gap: 100vw;
  --marquee-dist: 0px;
}

.p-copyright__image {
  position: absolute;
  top: 0;
  left: 0;
  /* 1枚目は左端 */
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  aspect-ratio: 2782.6/101.42;
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: marquee-left var(--marquee-dur) linear infinite;
          animation: marquee-left var(--marquee-dur) linear infinite;
}

.p-copyright__image + .p-copyright__image {
  left: calc(var(--marquee-dist, 0px) + var(--marquee-gap, 0px)) !important;
  /* 同期させるので遅延なし */
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}

/* ====== 唯一のキーフレーム ====== */
@keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-1 * (var(--marquee-dist, 0px) + var(--marquee-gap, 0px))));
            transform: translateX(calc(-1 * (var(--marquee-dist, 0px) + var(--marquee-gap, 0px))));
  }
}
/* ユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .p-copyright__image {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
}
.p-topics__inner {
  width: 100%;
  max-width: 1768px;
  margin: 0 auto;
  padding: 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-topics__inner {
    padding-inline: 10%;
  }
}
@media screen and (max-width: 574px) {
  .p-topics__inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.p-topics__title {
  -webkit-margin-after: clamp(2.625rem, 1.2783149171rem + 5.7458563536vw, 5.875rem);
          margin-block-end: clamp(2.625rem, 1.2783149171rem + 5.7458563536vw, 5.875rem);
  font-size: clamp(1.25rem, 0.9392265193rem + 1.3259668508vw, 2rem);
  letter-spacing: 0.2em;
}

.p-topics__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.625rem 3.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 6rem auto 0;
}
@media screen and (max-width: 1023px) {
  .p-topics__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
}
@media screen and (max-width: 574px) {
  .p-topics__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-topics__item {
  width: 100%;
}

/* トピックカード */
.c-topic-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  aspect-ratio: 528/315;
  border-radius: 0;
  overflow: hidden;
  -webkit-clip-path: polygon(32.597% 0.225%, 100% 0.218%, 100% 68.139%, 66.661% 99.993%, 0.086% 100%, 0.086% 32.08%, 32.597% 0.225%);
          clip-path: polygon(32.597% 0.225%, 100% 0.218%, 100% 68.139%, 66.661% 99.993%, 0.086% 100%, 0.086% 32.08%, 32.597% 0.225%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-topic-card:hover {
  -webkit-transform: translateY(-10px) scale(1.05);
          transform: translateY(-10px) scale(1.05);
}

/* カードカラーバリエーション */
.c-topic-card.c-topic-card--yellow {
  background-color: #e1e196;
}

.c-topic-card.c-topic-card--purple {
  background-color: #c1b3d7;
}

.c-topic-card.c-topic-card--blue {
  background-color: #98d5ed;
}

.c-topic-card.c-topic-card--pink {
  background-color: #eb858a;
}

/* カードヘッダー */
.c-topic-card__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(0.875rem, 0.3035714286rem + 0.8928571429vw, 1.375rem) clamp(1rem, 0.1428571429rem + 1.3392857143vw, 1.75rem) clamp(0.25rem, -1.0357142857rem + 2.0089285714vw, 1.375rem);
}
@media screen and (max-width: 1023px) {
  .c-topic-card__header {
    padding: 0.75rem 1rem 0.5rem;
  }
}

.c-topic-card__date {
  position: absolute;
  top: 16%;
  left: 10%;
  display: block;
  color: #fff;
  font-size: clamp(0.875rem, 0.4464285714rem + 0.6696428571vw, 1.25rem);
  line-height: 1.2;
  font-weight: 700;
  -webkit-transform: rotate(-30.335deg);
          transform: rotate(-30.335deg);
}
@media screen and (max-width: 574px) {
  .c-topic-card__date {
    top: 18%;
    left: 8%;
  }
}

.c-topic-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-after: clamp(0.5rem, -0.0714285714rem + 0.8928571429vw, 1rem);
          margin-block-end: clamp(0.5rem, -0.0714285714rem + 0.8928571429vw, 1rem);
  font-size: clamp(0.875rem, 0.4464285714rem + 0.6696428571vw, 1.25rem);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 574px) {
  .c-topic-card__category {
    font-size: 0.875rem;
    line-height: 1.429;
  }
}

.c-topic-card__location,
.c-topic-card__tag {
  padding: 0.125rem 0.75rem;
  background-color: #fff;
}

/* カードコンテンツ */
.c-topic-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-padding-after: clamp(1.125rem, 0.4107142857rem + 1.1160714286vw, 1.75rem);
          padding-block-end: clamp(1.125rem, 0.4107142857rem + 1.1160714286vw, 1.75rem);
  padding-inline: clamp(1.75rem, 0.6071428571rem + 1.7857142857vw, 2.75rem) clamp(1.875rem, 0.4464285714rem + 2.2321428571vw, 3.125rem);
}
@media screen and (max-width: 1023px) {
  .c-topic-card__body {
    padding: 0.5rem 1rem 0.5rem;
  }
}

.c-topic-card__content {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  color: #3e3a39;
}
.c-topic-card__title {
  font-size: clamp(1.125rem, 0.6964285714rem + 0.6696428571vw, 1.5rem);
  line-height: 1.7;
  letter-spacing: 0.17em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  max-height: 3.4em;
}
@media screen and (max-width: 574px) {
  .c-topic-card__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-word;
    max-height: 3.556em;
    font-size: clamp(0.875rem, 4.181184669vw, 1.5rem);
  }
}

.c-topic-card__author {
  margin-top: auto;
  font-size: clamp(0.75rem, 0.4642857143rem + 0.4464285714vw, 1rem);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 574px) {
  .c-topic-card__author {
    margin-top: 1.393728223vw;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.p-news {
  -webkit-padding-before: clamp(6.25rem, 4.0745856354rem + 9.2817679558vw, 11.5rem);
          padding-block-start: clamp(6.25rem, 4.0745856354rem + 9.2817679558vw, 11.5rem);
}

.p-news__inner {
  width: 100%;
  padding-block: clamp(6rem, 1.4285714286rem + 7.1428571429vw, 10rem);
  margin-inline: auto;
  max-width: 1920px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-color: #fff;
  -webkit-clip-path: polygon(0.043% 68.092%, 21.554% 99.993%, 100% 100%, 100% 31.981%, 79.024% 0.081%, 0.043% 0.074%, 0.043% 68.092%);
          clip-path: polygon(0.043% 68.092%, 21.554% 99.993%, 100% 100%, 100% 31.981%, 79.024% 0.081%, 0.043% 0.074%, 0.043% 68.092%);
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    padding-block: 5rem 6.25rem;
    -webkit-clip-path: none;
            clip-path: none;
  }
}

.p-news__content {
  -webkit-padding-start: clamp(15.625rem, 3.9583333333rem + 24.3055555556vw, 33.125rem);
          padding-inline-start: clamp(15.625rem, 3.9583333333rem + 24.3055555556vw, 33.125rem);
  -webkit-padding-end: clamp(2.5rem, -8.6125886525rem + 30.9219858156vw, 16.125rem);
          padding-inline-end: clamp(2.5rem, -8.6125886525rem + 30.9219858156vw, 16.125rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news__content {
    padding-inline: 10%;
  }
}

.p-news__link {
  padding-block: clamp(1.25rem, 0.59375rem + 1.3671875vw, 1.6875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 85px;
     -moz-column-gap: 85px;
          column-gap: 85px;
  row-gap: 18px;
  -webkit-border-after: 0.5px solid #3E3A39;
          border-block-end: 0.5px solid #3E3A39;
}
@media screen and (max-width: 767px) {
  .p-news__link {
    padding-block: 1.6875rem;
  }
}
@media screen and (max-width: 574px) {
  .p-news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-news__date {
  font-size: clamp(0.875rem, -0.375rem + 1.5625vw, 1.5rem);
}

.p-news__title {
  font-size: clamp(1rem, -0.5rem + 1.875vw, 1.75rem);
  letter-spacing: 0.05em;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-hover-opacity07:hover {
  opacity: 0.7;
}