@charset "UTF-8";
/* =========================
   Foundation
========================= */
/* ==========================
   Variables
========================== */
/* Color */
/* Layout */
/* --------------------------
   Font Family
   ※ headで読み込んだGoogleFontsと一致させる
-------------------------- */
/* 日本語ゴシック（本文ベース） */
/* 日本語明朝 */
/* 英字セリフ */
/* 英字サンセリフ */
/* Base Font（本文） */
/* Font size
   基本18px（1rem=10px運用なので 1.8rem）
*/
/* Letter spacing（本文の基本） */
/* Line-height（読みやすさ重視） */
/* ==========================
   Mixin : Media Query
========================== */
/* =========================
   Foundation
========================= */
/* ==========================
  Base
========================== */
/* リセット & ボックスモデル */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ==========================
  HTML / BODY
========================== */
html,
body {
  margin: 0;
  padding: 0;
}

/*
  1rem = 10px運用（1.8rem=18pxで扱いやすい）
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333333;
  background-color: #fff;
  letter-spacing: 0.05em;
}

/* ==========================
  Font helper
========================== */
/* 英字用（Roboto） */
.en {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif, "Zen Kaku Gothic New", system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
}

/* 英字セリフ（Garamond） */
.en-serif {
  font-family: "EB Garamond", "Times New Roman", serif, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  letter-spacing: 0.02em;
}

/* 明朝（Zen Old Mincho） */
.mincho {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif, serif;
  letter-spacing: 0.02em;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* ==========================
  Element
========================== */
a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

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

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

/* ==========================
  Layout
========================== */
.wrap-all {
  min-height: 100svh;
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: var(--base-bg-color, #fff);
  background-image: none;
  background-size: cover;
  background-position: var(--top-bg-position, center center);
}

/* =========================
   Object / Component
========================= */
/* ==========================
   Button Component
========================== */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: background-color 0.8s ease, color 0.8s ease, border-color 0.8s ease;
}

.c-button--invert {
  background: transparent;
  color: #333;
  border: 1px solid #a5a5a5;
}

.c-button--invert:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* ==========================
   Component : Card
   ========================== */
/* =========================
   Object / Project
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}

.site-header__inner {
  max-width: 1225px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 80px;
}

/* --------------------------
   Logo
-------------------------- */
.site-header__logo {
  flex: 0 0 auto;
  width: 227px;
  margin: 0;
}

.site-header__logoLink {
  display: inline-flex;
  align-items: center;
}

.site-header__logoImg {
  max-width: 277px;
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------
   Language (GTranslate)
-------------------------- */
.site-header__lang {
  flex: 0 0 auto;
  width: 161px;
  display: flex;
  align-items: center;
}

.site-header__lang .gtranslate_wrapper,
.site-header__lang .gtranslate_wrapper * {
  font-family: "EB Garamond", "Times New Roman", serif !important;
}

.site-header__lang select {
  width: 100%;
  height: 32px;
  color: #333;
  font-size: 1.6rem;
  border: 1px solid #a5a5a5;
}

.site-header__lang .gt_selector {
  padding-left: 5px;
}

.site-header__lang select option {
  color: #333;
}

/* --------------------------
   Global Nav（中央配置）
-------------------------- */
.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  font-size: 1.6rem;
}

/* 下線アニメ（hoverのみ） */
.site-header__menu li {
  position: relative;
}

.site-header__menu a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  color: inherit;
  transition: opacity 0.2s ease;
}
.site-header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-header__menu a:hover::after {
  transform: scaleX(1);
}

/* --------------------------
   Hamburger（右端固定）
-------------------------- */
.site-header__hamburger {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin-left: auto;
}

/* 共通ライン */
.site-header__hamburgerLine {
  height: 1px;
  background: #333;
  display: block;
}

.site-header__hamburgerLine:first-child,
.site-header__hamburgerLine:last-child {
  width: 40px;
}

.site-header__hamburgerLine:nth-child(2) {
  width: 26px;
}

/* --------------------------
   Responsive
-------------------------- */
@media (max-width: 1100px) {
  .site-header__nav {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-header__lang {
    display: none;
  }
}
/* ==========================
   Drawer (Hamburger Menu)
========================== */
.site-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(500px, 100vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.site-drawer__inner {
  width: 100%;
  max-width: 377px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(22px, 3.2vw, 32px) 0 clamp(20px, 3vw, 28px);
  position: relative;
}

/* open state */
body.is-drawer-open .site-drawer {
  transform: translateX(0);
}

body.is-drawer-open .site-drawer__overlay {
  opacity: 1;
  visibility: visible;
}

/* body scroll lock */
body.is-drawer-open {
  overflow: hidden;
}

/* Close button (X) */
.site-drawer__close {
  position: absolute;
  top: clamp(18px, 3.5vw, 35px);
  right: clamp(4px, 1.2vw, 12px);
  width: clamp(28px, 4vw, 30px);
  height: clamp(28px, 4vw, 30px);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-drawer__closeLine {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(20px, 3vw, 22px);
  height: 1px;
  background: #333;
  transform-origin: center;
}

.site-drawer__closeLine:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-drawer__closeLine:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* gtranslate area */
.site-drawer__lang {
  font-family: "EB Garamond", "Times New Roman", serif !important;
  margin-top: clamp(2px, 1vw, 4px);
}

.site-drawer .gt_selector {
  padding-left: clamp(14px, 2.8vw, 20px);
}

/* menu */
.site-drawer__nav {
  margin-top: clamp(40px, 6.5vw, 68px);
}

.site-drawer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-drawer__menuItem {
  border-bottom: 1px solid #a5a5a5;
  margin-bottom: clamp(16px, 3.5vw, 24px);
  padding-left: clamp(16px, 3.5vw, 24px);
}

.site-drawer__menuLink {
  display: block;
  padding: clamp(6px, 1.6vw, 8px) 0;
  color: inherit;
  text-decoration: none;
  font-size: clamp(18px, 1.2rem + 0.8vw, 22px);
  line-height: 1.4;
}

/* banners / sns */
.site-drawer__banners {
  margin-top: clamp(28px, 5vw, 42px);
}

.site-drawer__banners .site-footer__banners {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 24px);
  margin: 0 0 clamp(16px, 4vw, 24px);
}

.site-drawer__banners .site-footer__banner {
  width: min(377px, 100%);
  height: clamp(88px, 12vw, 100px);
}

.site-drawer__banners .site-footer__bannerTitle {
  font-size: clamp(22px, 1.6rem + 1vw, 28px);
  margin: 0 0 clamp(6px, 1.6vw, 10px);
}

.site-drawer__banners .site-footer__bannerText {
  font-size: clamp(12px, 1rem + 0.2vw, 14px);
}

.site-drawer__sns {
  margin-top: clamp(12px, 2.6vw, 18px);
  display: flex;
  justify-content: center;
}

.site-drawer__sns .site-footer__snsLink {
  transition: opacity 0.2s ease;
}

.site-drawer__sns .site-footer__snsLink:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 767px) {
  .site-drawer__inner {
    max-width: 377px;
    padding: clamp(20px, 5vw, 26px) clamp(16px, 4.5vw, 20px) clamp(18px, 4.5vw, 24px);
  }
}
/* ==========================
   Main Visual
========================== */
.main-visual {
  width: 100%;
}

.main-visual__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-visual__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

@media (max-width: 1024px) {
  .main-visual {
    height: 60vh;
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .main-visual {
    height: 50vh;
    min-height: 320px;
  }
}
/* ==========================
   Home News
========================== */
.home-news {
  padding: 80px 0 60px;
}

.home-news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-news__title {
  font-size: clamp(4.4rem, 3rem + 2vw, 7rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 40px;
}

.home-news__grid {
  display: grid;
  grid-template-columns: 354px 1fr;
  column-gap: 65px;
  align-items: start;
}

/* ---------- Left ---------- */
.home-news__card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-news__thumb {
  position: relative;
  width: 354px;
  height: 248px;
  overflow: hidden;
  background: #f2f2f2;
}

.home-news__thumbImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease, opacity 1s ease;
}

.home-news__card:hover .home-news__thumbImg {
  transform: scale(1.05);
  opacity: 0.96;
}

.home-news__thumbPlaceholder {
  width: 100%;
  height: 100%;
  background: #e9e9e9;
}

.home-news__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px 0 0 8px;
  font-size: clamp(1.2rem, 1.1rem + 0.2vw, 1.4rem);
  letter-spacing: 0.08em;
  color: #333;
  z-index: 2;
  pointer-events: none;
}

.home-news__badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 80px solid #ffe146;
  border-right: 80px solid transparent;
  z-index: -1;
}

.home-news__badge::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.home-news__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
  color: #333;
}

.home-news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 22px;
  padding: 3px 32px;
  border: 1px solid #a5a5a5;
  font-size: clamp(1.2rem, 1.1rem + 0.2vw, 1.4rem);
  letter-spacing: 0.06em;
}

.home-news__headline {
  margin: 10px 0 0;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2rem);
  font-weight: 400;
  line-height: 1.8;
}

/* ---------- Right ---------- */
.home-news__right {
  max-width: 680px;
}

.home-news__item {
  border-bottom: 1px solid #a5a5a5;
}

.home-news__row {
  display: block;
  padding: 11px 0;
  color: inherit;
  text-decoration: none;
}

.home-news__item:first-child .home-news__row {
  padding-top: 0;
}

.home-news__rowMeta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
}

.home-news__rowDate {
  color: #333;
}

.home-news__rowCat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 3px 32px;
  border: 1px solid #a5a5a5;
  font-size: clamp(1.2rem, 1.1rem + 0.2vw, 1.4rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.home-news__rowTitle {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2rem);
  line-height: 1.8;
}

/* Button */
.home-news__btnWrap {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.home-news__btn {
  width: 144px;
  height: 55px;
}

/* Responsive（Home News） */
@media (max-width: 1024px) {
  .home-news__grid {
    grid-template-columns: 280px 1fr;
    column-gap: 40px;
  }
  .home-news__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 354/248;
  }
}
@media (max-width: 767px) {
  .home-news {
    padding: 56px 0;
  }
  .home-news__grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}
/* ==========================
   Home Works
========================== */
.home-works {
  padding: 65px 0 96px;
}

.home-works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-works__title {
  text-align: center;
  font-size: clamp(4.4rem, 3rem + 2vw, 7rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 60px;
}

.home-works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 251px);
  gap: 51px;
  justify-content: center;
  justify-items: start;
}

.home-works__item {
  width: auto;
}

.home-works__card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-works__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: #f2f2f2;
}

.home-works__thumbImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease, opacity 1s ease;
}

.home-works__card:hover .home-works__thumbImg {
  transform: scale(1.05);
  opacity: 0.96;
}

.home-works__thumbPlaceholder {
  width: 100%;
  height: 100%;
  background: #e9e9e9;
}

.home-works__series {
  margin: 16px 0 0;
  color: #a5a5a5;
  line-height: 1.2;
}

.home-works__seriesLabel {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  letter-spacing: 0.06em;
  margin-right: 6px;
}

.home-works__seriesName {
  font-size: clamp(1.2rem, 1rem + 0.3vw, 1.3rem);
  letter-spacing: 0.04em;
}

.home-works__headline {
  margin: 6px 0 0;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2rem);
  font-weight: 400;
  line-height: 1.6;
}

/* Button */
.home-works__btnWrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.home-works__btn {
  width: 144px;
  height: 55px;
}

/* Responsive（Home Works） */
@media (max-width: 1024px) {
  .home-works__grid {
    gap: 32px;
    grid-template-columns: repeat(auto-fill, 220px);
  }
  .home-works__item {
    width: auto;
  }
  .home-works__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 767px) {
  .home-works__grid {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }
  .home-works__item {
    width: auto;
  }
  .home-works__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
/* ==========================
   Home Profile
========================== */
.home-profile {
  padding: 90px 0;
  background-image: url("../../library/images/top/profile-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-profile__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-profile__grid {
  display: grid;
  grid-template-columns: 386px 505px;
  column-gap: 109px;
  align-items: start;
}

/* left image */
.home-profile__imageWrap {
  width: 386px;
  height: 386px;
  overflow: hidden;
  background: #f2f2f2;
}

.home-profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* right content */
.home-profile__content {
  width: 100%;
}

.home-profile__head {
  margin-bottom: 24px;
}

.home-profile__nameEn {
  color: #a5a5a5;
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
  margin: 0 0 10px;
}

.home-profile__nameJa {
  font-size: clamp(2.4rem, 1.8rem + 1.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.home-profile__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.home-profile__role {
  position: relative;
  padding-left: 45px;
  margin: 0;
  white-space: nowrap;
}

.home-profile__role::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 27.29px;
  height: 23.77px;
  background-image: url("../../library/images/icon/paint.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* sns */
.home-profile__sns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-profile__snsLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .home-profile__snsLink:hover {
    opacity: 0.6;
  }
}

.home-profile__snsIconImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-profile__textBox {
  background: #fff;
  padding: 20px 30px;
}

.home-profile__text {
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
  margin: 0;
  line-height: 2;
}

.home-profile__btnWrap {
  margin-top: 32px;
}

.home-profile__btn {
  height: 55px;
  width: auto;
  padding: 0 28px;
}

.home-profile__meta {
  position: relative;
}

.home-profile__sns {
  position: relative;
  z-index: 2;
}

.home-profile__snsLink {
  position: relative;
  z-index: 3;
}

.home-profile__role::before {
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-profile__grid {
    grid-template-columns: minmax(260px, 360px) 1fr;
    column-gap: 40px;
  }
  .home-profile__meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }
  .home-profile__imageWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .home-profile__sns {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .home-profile {
    padding: 70px 0;
  }
  .home-profile__grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .home-profile__imageWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
/* ==========================
   Home Banner
========================== */
.home-banner {
  padding: 100px 0 50px;
}

.home-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.home-banner__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-banner__card {
  position: relative;
  width: 572px;
  height: 200px;
  overflow: hidden;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}

.home-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-banner__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 10px;
}

.home-banner__title {
  font-size: clamp(3.2rem, 2.4rem + 2vw, 5rem);
  font-weight: 400;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.home-banner__text {
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.8rem);
  margin: 0;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.home-banner__link:hover .home-banner__card {
  opacity: 0.92;
}

/* Responsive */
@media (max-width: 767px) {
  .home-banner {
    padding: 80px 0;
  }
  .home-banner__card {
    width: 100%;
    height: auto;
    aspect-ratio: 572/200;
  }
}
/* ==========================
   Home Faq
========================== */
.home-faq {
  padding: 50px 0 100px;
}

.home-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-faq__title {
  text-align: center;
  font-size: clamp(4.4rem, 3rem + 2vw, 7rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 60px;
}

/* list */
.home-faq__list {
  max-width: 693px;
  margin: 0 auto;
}

.home-faq__item {
  border-bottom: 1px solid #a5a5a5;
}

/* Q row button */
.home-faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 44px;
  align-items: center;
  column-gap: 50px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.home-faq__qText {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2rem);
  font-weight: 400;
  margin: 0;
}

.home-faq__icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a5a5a5;
  font-size: clamp(2.4rem, 1.8rem + 1.5vw, 3.6rem);
  line-height: 1;
}

.home-faq__icon--q {
  color: #a5a5a5;
  background: #fff;
}

.home-faq__icon--a {
  color: #fff;
  background: #a5a5a5;
  border-color: #a5a5a5;
}

/* ＋ → ×*/
.home-faq__toggle {
  position: relative;
  width: 34px;
  height: 34px;
  justify-self: end;
}

.home-faq__toggle::before,
.home-faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 1px;
  background: #a5a5a5;
  transform-origin: center;
  will-change: transform, opacity;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}

.home-faq__toggle::before {
  transform: translate(-50%, -50%) rotate(0deg) scaleX(1);
}

.home-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(1);
}

.home-faq__toggle::before,
.home-faq__toggle::after {
  border-radius: 999px;
}

.home-faq__item.is-open .home-faq__toggle::before {
  transform: translate(-50%, -50%) rotate(45deg) scaleX(1.03);
}

.home-faq__item.is-open .home-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(1.03);
}

/* A panel */
.home-faq__aWrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
}

.home-faq__a {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  column-gap: 50px;
  padding: 0 0 16px;
}

.home-faq__aText {
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
  margin: 0;
}

/* ==========================
   Page Hero
========================== */
.page-hero__bg {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .page-hero__bg {
    height: 150px;
  }
}
.page-hero__title {
  font-size: clamp(2.8rem, 2rem + 2vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.page-hero__spacer {
  height: 16px;
}

/* ==========================
   Breadcrumb
========================== */
.page-hero__breadcrumbInner {
  max-width: 1440px;
  margin: 0 auto 120px;
  padding: 0 20px;
  font-size: clamp(1.2rem, 1rem + 0.3vw, 1.4rem);
  line-height: 1.6;
}

.page-hero__breadcrumb a {
  text-decoration: none;
  color: inherit;
}

.page-hero__separator {
  margin: 0 8px;
}

/* ==========================
   Breadcrumb Hover
========================== */
.page-hero__breadcrumb a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.page-hero__breadcrumb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #333;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.page-hero__breadcrumb a:hover::after {
  transform: scaleX(1);
}

/* ==========================
   Profile Page (diff only)
========================== */
.profile-page .home-profile__grid {
  grid-template-columns: 386px 560px;
  column-gap: 54px;
}

.profile-page .home-profile__textBox {
  padding: 20px 30px;
}

.profile-page .home-profile__timelineYear,
.profile-page .home-profile__timelineText {
  font-size: inherit;
}

@media (max-width: 1024px) {
  .profile-page .home-profile__grid {
    grid-template-columns: minmax(260px, 360px) 1fr;
    column-gap: 40px;
  }
  .profile-page .home-profile__imageWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 767px) {
  .profile-page .home-profile__grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .profile-page .home-profile__imageWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .profile-page .home-profile__meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }
  .profile-page .home-profile__sns {
    justify-content: flex-start;
  }
  .profile-page .home-profile__textBox {
    padding: 20px 20px;
  }
}
/* ==========================
   Timeline（bio_timeline）
========================== */
.home-profile__timeline {
  margin: 0;
}

.home-profile__timelineRow {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: start;
}

.home-profile__timelineYear {
  margin: 0;
  line-height: 1.6;
  white-space: nowrap;
  font-size: clamp(1.6rem, 1.3rem + 0.6vw, 2rem);
}

.home-profile__timelineText {
  margin: 0;
  line-height: 1.8;
  font-size: clamp(1.6rem, 1.3rem + 0.6vw, 2rem);
}

@media (max-width: 1024px) {
  .home-profile__timelineRow {
    grid-template-columns: 80px 1fr;
    column-gap: 16px;
  }
}
@media (max-width: 767px) {
  .home-profile__timelineRow {
    grid-template-columns: 70px 1fr;
    column-gap: 20px;
    padding: 10px 0;
  }
}
/* ==========================
   Bio List
========================== */
.home-profile__bioList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-profile__bioItem {
  position: relative;
  padding-left: 1.2em;
  margin: 0;
  line-height: 2;
  font-size: clamp(1.6rem, 1.3rem + 0.6vw, 2rem);
}

.home-profile__bioItem::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* ==========================
   Note
========================== */
.home-profile__note {
  margin: 32px 0 0;
  font-size: clamp(1.4rem, 1.2rem + 0.3vw, 1.6rem);
  line-height: 1.8;
  color: #333;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 767px) {
  .home-profile__timelineRow {
    grid-template-columns: 70px 1fr;
    column-gap: 20px;
    padding: 10px 0;
  }
}
/* ==========================
   Profile Intro
========================== */
.profile-intro {
  padding: 64px 0 80px;
}

.profile-intro__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.profile-intro__title {
  text-align: center;
  font-size: clamp(2.4rem, 1.8rem + 1.2vw, 3.6rem);
  font-weight: 400;
  margin: 0 0 60px;
}

/* images */
.profile-intro__grid {
  display: grid;
  grid-template-columns: repeat(4, 285px);
  gap: 21px;
  justify-content: center;
}

.profile-intro__item {
  margin: 0;
}

.profile-intro__img {
  width: 285px;
  height: 218px;
  object-fit: cover;
  display: block;
  background: #e9e9e9;
}

/* texts */
.profile-intro__texts {
  margin-top: 64px;
}

.profile-intro__text {
  font-size: clamp(1.6rem, 1.3rem + 0.6vw, 2rem);
  line-height: 2;
  margin: 0;
}

.profile-intro__text + .profile-intro__text {
  margin-top: 64px;
}

/* Responsive（2×2） */
@media (max-width: 1024px) {
  .profile-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .profile-intro__img {
    width: 100%;
    height: auto;
    aspect-ratio: 285/218;
  }
}
@media (max-width: 767px) {
  .profile-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-intro__img {
    width: 100%;
    height: auto;
    aspect-ratio: 285/218;
  }
  .profile-intro__texts {
    margin-top: 48px;
  }
  .profile-intro__text + .profile-intro__text {
    margin-top: 48px;
  }
}
/* ==========================
   Profile Works
========================== */
.profile-works {
  padding: 80px 0 20px;
}

.profile-works__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.profile-works__title {
  text-align: center;
  font-size: clamp(2.4rem, 1.8rem + 1.2vw, 3.6rem);
  font-weight: 400;
  margin: 0 0 70px;
}

/* list */
.profile-works__list {
  display: grid;
  row-gap: 58px;
}

/* item */
.profile-works__item {
  display: grid;
  grid-template-columns: 318px 1fr;
  column-gap: 82px;
  align-items: start;
}

/* image */
.profile-works__imageWrap {
  width: 318px;
  height: 311px;
  overflow: hidden;
  background: #e9e9e9;
}

.profile-works__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* content */
.profile-works__heading {
  font-size: clamp(2rem, 1.6rem + 1vw, 3.6rem);
  font-weight: 400;
  margin: 0 0 16px;
}

.profile-works__text {
  line-height: 2;
  margin: 0;
}

/* Button */
.profile-works__btnWrap {
  margin-top: 24px;
  display: flex;
}

.profile-works__btn {
  font-size: clamp(1.6rem, 1.4rem + 0.4vw, 2rem);
  height: 55px;
  padding: 16px 48px;
}

/* Responsive */
@media (max-width: 767px) {
  .profile-works {
    padding: 80px 0;
  }
  .profile-works__item {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .profile-works__imageWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 318/311;
  }
  .profile-works__btnWrap {
    margin-top: 20px;
  }
}
/* ==========================
   Profile Awards
========================== */
.profile-awards {
  padding: 68px 0 36px;
}

.profile-awards__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* title */
.profile-awards__title {
  position: relative;
  padding-left: 18px;
  margin: 0 0 32px;
  font-size: clamp(2.4rem, 1.8rem + 1.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
}

.profile-awards__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 3px;
  height: 1.2em;
  background: #ffe146;
}

/* grid */
.profile-awards__grid {
  display: grid;
  grid-template-columns: 346px 1fr;
  column-gap: 35px;
  align-items: start;
}

/* image */
.profile-awards__imageWrap {
  margin: 0;
  width: 346px;
  height: 338px;
  overflow: hidden;
  background: #e9e9e9;
}

.profile-awards__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* list */
.profile-awards__list {
  margin: 0;
}

.profile-awards__row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 56px;
  align-items: start;
  padding: 4px 0;
}

.profile-awards__year {
  margin: 0;
  white-space: nowrap;
}

.profile-awards__text {
  margin: 0;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 767px) {
  .profile-awards__grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .profile-awards__imageWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 346/338;
  }
  .profile-awards__row {
    column-gap: 20px;
  }
}
/* ==========================
   Profile Exhibition
========================== */
.profile-exhibition {
  padding: 36px 0;
}

.profile-exhibition__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* title */
.profile-exhibition__title {
  position: relative;
  padding-left: 18px;
  margin: 0 0 32px;
  font-size: clamp(2.4rem, 1.8rem + 1.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
}

.profile-exhibition__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 3px;
  height: 1.2em;
  background: #ffe146;
}

/* grid */
.profile-exhibition__grid {
  display: grid;
  grid-template-columns: 346px 1fr;
  column-gap: 35px;
  align-items: start;
}

/* image */
.profile-exhibition__imageWrap {
  margin: 0;
  width: 346px;
  height: 338px;
  overflow: hidden;
  background: #e9e9e9;
}

.profile-exhibition__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* list */
.profile-exhibition__list {
  margin: 0;
}

.profile-exhibition__row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 56px;
  align-items: start;
  padding: 4px 0;
}

.profile-exhibition__year {
  margin: 0;
  white-space: nowrap;
}

.profile-exhibition__text {
  margin: 0;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 767px) {
  .profile-exhibition__grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .profile-exhibition__imageWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 346/338;
  }
  .profile-exhibition__row {
    column-gap: 20px;
  }
}
/* ==========================
   Profile Records
========================== */
.profile-records {
  padding: 36px 0 120px;
}

.profile-records__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* title */
.profile-records__title {
  position: relative;
  padding-left: 18px;
  margin: 0 0 32px;
  font-size: clamp(2.4rem, 1.8rem + 1.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
}

.profile-records__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 2px;
  height: 1.2em;
  background: #ffe146;
}

/* grid */
.profile-records__grid {
  display: grid;
  grid-template-columns: 346px 1fr;
  column-gap: 43px; /* 指定 */
  align-items: start;
}

/* left images */
.profile-records__images {
  display: grid;
  row-gap: 25px;
}

.profile-records__imageWrap {
  margin: 0;
  width: 346px;
  height: 338px;
  overflow: hidden;
  background: #e9e9e9;
}

.profile-records__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* right content */
.profile-records__content {
  display: grid;
  row-gap: 80px;
}

.profile-records__heading {
  font-size: clamp(2rem, 1.6rem + 0.8vw, 2.8rem);
  font-weight: 400;
  border-bottom: 1px solid;
  margin: 0 0 32px;
}

.profile-records__list {
  margin: 0;
}

.profile-records__row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 23px;
  align-items: start;
  padding: 4px 0;
}

.profile-records__year {
  width: 86px;
  margin: 0;
  white-space: nowrap;
}

.profile-records__text {
  margin: 0;
  line-height: 1.8;
}

.profile-records__plain {
  margin: 0;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 767px) {
  .profile-records__grid {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .profile-records__images,
  .profile-records__content {
    display: contents;
  }
  .profile-records__imageWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 346/338;
  }
  .profile-records__row {
    column-gap: 20px;
  }
  .profile-records__imageWrap:nth-child(1) {
    order: 1;
  }
  .profile-records__block:nth-of-type(1) {
    order: 2;
  }
  .profile-records__imageWrap:nth-child(2) {
    order: 3;
  }
  .profile-records__block:nth-of-type(2) {
    order: 4;
  }
  .profile-records__imageWrap:nth-child(3) {
    order: 5;
  }
  .profile-records__block:nth-of-type(3) {
    order: 6;
  }
  .profile-records__block:nth-of-type(4) {
    order: 7;
  }
}
/* ==========================
   Contact Page
========================== */
.contact-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 120px;
}

.contact-page__lead {
  margin: 40px 0;
  text-align: center;
}

.contact-page__leadText {
  margin: 0;
  line-height: 2.1;
}

.contact-page__banner {
  margin: 0 0 70px;
  display: flex;
  justify-content: center;
}

.contact-page .home-banner {
  width: min(100%, 1200px);
  margin: 0 auto 70px;
  box-sizing: border-box;
  padding: clamp(24px, 4vw, 50px) clamp(20px, 8vw, 116px);
}

/* ==========================
   Contact Form (CF7)
========================== */
.contact-form {
  max-width: 705px;
  width: 100%;
  margin: 0 auto;
}

/* --- rows (grid) --- */
.contact-form__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.contact-form__row:first-child {
  margin-bottom: 44px;
}

.contact-form__row--type {
  column-gap: 0;
}

.contact-form__row--message {
  align-items: center;
  margin-bottom: 0;
}

/* --- label --- */
.contact-form__label {
  display: flex;
  align-items: center;
  font-size: clamp(1.6rem, 1.4rem + 0.4vw, 2rem);
  line-height: 1.6;
}

.contact-form__label > p,
.contact-form__field > p {
  margin: 0;
}

/* --- field --- */
.contact-form__field {
  width: 100%;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ==========================
   Inquiry Type (radio)
========================== */
.contact-form__field--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.contact-form__field--center .wpcf7-list-item {
  margin: 0;
  margin-right: 38px;
}

.contact-form__field--center .wpcf7-list-item:last-child {
  margin-right: 0;
}

.contact-form__field--center label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(1.4rem, 1.2rem + 0.3vw, 1.6rem);
  line-height: 1.6;
  cursor: pointer;
}

.contact-form__field--center input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #a5a5a5;
  display: inline-block;
  cursor: pointer;
  margin: 0;
  transform: translateY(1px);
}

.contact-form__field--center input[type=radio]:checked {
  background: #ffe146;
  border: 0;
}

/* ==========================
   Inputs
========================== */
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 10px 12px;
  font-size: clamp(1.6rem, 1.4rem + 0.4vw, 1.6rem);
  line-height: 1.6;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ==========================
   reCAPTCHA badge
========================== */
.grecaptcha-badge {
  visibility: hidden;
}

.contact-form__recaptcha {
  margin: 24px 0 16px;
  font-size: clamp(1.2rem, 1.1rem + 0.2vw, 1.4rem);
  line-height: 1.6;
  color: #666;
  white-space: nowrap;
}

.contact-form__recaptcha a {
  color: #333;
  text-decoration: underline;
}

.contact-form__recaptcha a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .contact-form__recaptcha {
    white-space: normal;
  }
}
/* ==========================
   Submit
========================== */
.contact-form__actions {
  margin-top: 40px;
}

.contact-form__actions > p {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-form__actions .wpcf7-spinner {
  position: absolute;
}

.contact-form input[type=submit] {
  width: 256px;
  height: 83px;
  border: 0;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-size: clamp(1.8rem, 1.6rem + 0.6vw, 2.4rem);
  letter-spacing: 0.06em;
  transition: opacity 0.25s ease;
}

.contact-form input[type=submit]:hover {
  opacity: 0.9;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 767px) {
  .contact-page__inner {
    padding-bottom: 90px;
  }
  .contact-page__lead {
    text-align: left;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .contact-form__field--center {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 20px;
  }
  .contact-form__field--center .wpcf7-list-item {
    margin-right: 20px;
  }
}
/* ==========================
   Thanks
========================== */
/* ==========================
   Project Archive
========================== */
.p-project-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(80px, 10vw, 120px);
  box-sizing: border-box;
}

/* category filter */
.p-project-archive__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  margin: 30px 0 64px;
}

.p-project-archive__cat {
  position: relative;
  padding: 0 2px 12px;
  border: 0;
  background: transparent;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1;
  color: #333;
  cursor: pointer;
}
.p-project-archive__cat.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.5em;
  height: 1px;
  background: #333;
  transform: translateX(-50%);
}

.p-project-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 251px);
  gap: 51px;
  justify-content: start;
  justify-items: start;
}

.p-project-card {
  width: auto;
}

.p-project-card__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f2f2f2;
}

@media (max-width: 767px) {
  .p-project-archive__cats {
    justify-content: center;
    gap: 20px;
    margin: 20px 0 40px;
  }
  .p-project-archive__cat {
    letter-spacing: 0.02em;
  }
}
/* ==========================
   Card（Home Works と同じ）
========================== */
.p-project-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-project-card__img,
.p-project-card__noimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease, opacity 1s ease;
}

.p-project-card__link:hover .p-project-card__img {
  transform: scale(1.05);
  opacity: 0.96;
}

.p-project-card__series {
  margin: 16px 0 0;
  color: #a5a5a5;
  line-height: 1.2;
}

.p-project-card__seriesLabel {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  letter-spacing: 0.06em;
  margin-right: 6px;
}

.p-project-card__seriesName {
  font-size: clamp(1.2rem, 1rem + 0.3vw, 1.3rem);
  letter-spacing: 0.04em;
}

.p-project-card__title {
  margin: 6px 0 0;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

/* more button */
.p-project-archive__more {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
@media (max-width: 767px) {
  .p-project-archive__more {
    margin-top: 32px;
  }
}

.p-project-archive__moreBtn {
  min-width: 160px;
  height: 44px;
  border: 1px solid #a5a5a5;
  background: transparent;
  color: #333;
  font-size: clamp(13px, 1.3vw, 16px);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.p-project-archive__moreBtn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .p-project-archive__grid {
    gap: 32px;
    grid-template-columns: repeat(auto-fit, 220px);
  }
}
@media (max-width: 767px) {
  .p-project-archive__grid {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }
  .p-project-card {
    width: auto;
  }
}
/* ==========================
   Project Single
========================== */
.p-project-single__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(80px, 10vw, 120px);
}

.p-project-single__layout {
  display: grid;
  grid-template-columns: 558px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

/* ---------- Gallery ---------- */
.p-project-single__main {
  position: relative;
  width: 558px;
  max-width: 100%;
  height: 558px;
  overflow: hidden;
  background: #f2f2f2;
}

.p-project-single__mainImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: absolute;
  inset: 0;
  transform: translateX(0);
  background: #f2f2f2;
}

.p-project-single__mainImg--next {
  opacity: 1;
  display: none;
}

.p-project-single__mainImg--next.is-anim {
  display: block;
}

/* slide states */
.p-project-single__mainImg.is-anim {
  transition: transform 0.45s ease;
}

.p-project-single__mainImg--next.is-anim {
  transition: transform 0.45s ease;
}

.p-project-single__mainImg--next.is-from-right {
  transform: translateX(100%);
}

.p-project-single__mainImg--next.is-from-left {
  transform: translateX(-100%);
}

.p-project-single__mainImg--next.is-anim {
  transform: translateX(0);
}

.p-project-single__mainImg.is-to-left {
  transform: translateX(-100%);
}

.p-project-single__mainImg.is-to-right {
  transform: translateX(100%);
}

.p-project-single__mainNoimg {
  width: 100%;
  height: 100%;
  background: #e9e9e9;
}

.p-project-single__thumbs {
  display: flex;
  gap: 21px;
  margin-top: 18px;
}

.p-project-single__thumbBtn {
  width: 172px;
  height: 172px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.p-project-single__thumbBtn.is-active {
  opacity: 1;
}
.p-project-single__thumbBtn:hover {
  opacity: 1;
}

.p-project-single__thumbImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-project-single__catLine {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.p-project-single__catLabel {
  font-size: 14px;
}

.p-project-single__catName {
  font-size: 16px;
}

/* ---------- Right ---------- */
.p-project-single__title {
  margin: 40px 0 18px;
  font-size: 24px;
  font-weight: 400;
}

.p-project-single__info {
  margin: 0 0 24px;
}

.p-project-single__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 35px;
  align-items: start;
}
.p-project-single__row + .p-project-single__row {
  margin-top: 10px;
}

.p-project-single__dd,
.p-project-single__content,
.p-project-single__link {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.p-project-single__dt {
  border: 1px solid #a5a5a5;
  font-size: 14px;
  display: inline-grid;
  place-items: center;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 5px 33px;
  line-height: 1;
}

.p-project-single__dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.p-project-single__link {
  color: inherit;
  text-decoration: underline;
}

.p-project-single__content {
  font-size: 14px;
  margin-top: 16px;
  line-height: 2;
}

/* ---------- Nav ---------- */
.p-project-single__nav {
  margin-top: 81px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.p-project-single__navCol {
  display: flex;
  justify-content: center;
}
.p-project-single__navCol:first-child {
  justify-content: flex-start;
}
.p-project-single__navCol:last-child {
  justify-content: flex-end;
}

.p-project-single__arrow {
  width: 60px;
  height: 60px;
  border: 1px solid #a5a5a5;
  display: grid;
  place-items: center;
  color: #333;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p-project-single__arrow:hover {
  opacity: 0.9;
}
.p-project-single__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.p-project-single__arrowIcon {
  width: 40px;
  height: auto;
}

.p-project-single__backBtn {
  font-size: 20px;
  width: 200px;
  height: 55px;
}

/* ---------- Related ---------- */
.p-project-single-works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(80px, 10vw, 120px);
}

.p-project-single-works__title {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .p-project-single__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-project-single__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .p-project-single__thumbBtn {
    width: calc((100% - 42px) / 3);
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 767px) {
  .p-project-single__layout {
    grid-template-columns: 1fr;
  }
  .p-project-single__main {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .p-project-single__thumbs {
    width: 100%;
    gap: 12px;
  }
  .p-project-single__thumbBtn {
    width: calc((100% - 24px) / 3);
    height: auto;
    aspect-ratio: 1/1;
  }
  .p-project-single__nav {
    grid-template-columns: 52px 1fr 52px;
    gap: 12px;
  }
}
/* ==========================
   News Archive
========================== */
.p-news-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(80px, 10vw, 120px);
}

/* ==========================
   category filter
========================== */
.p-news-archive__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  margin: 30px 0 64px;
}
@media (max-width: 767px) {
  .p-news-archive__cats {
    gap: 20px;
    margin: 20px 0 40px;
  }
}

.p-news-archive__cat {
  position: relative;
  padding: 0 2px 12px;
  border: 0;
  background: transparent;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1;
  color: #333;
  cursor: pointer;
}
.p-news-archive__cat.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.5em;
  height: 1px;
  background: #333;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .p-news-archive__cats {
    justify-content: center;
  }
}
/* ==========================
   grid
========================== */
.p-news-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 40px);
  row-gap: clamp(34px, 4vw, 56px);
}

@media (max-width: 1024px) {
  .p-news-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .p-news-archive__grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================
   Card
========================== */
.p-news-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p-news-card__link:hover {
  opacity: 0.9;
}

.p-news-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 354/248;
  overflow: hidden;
  background: #f2f2f2;
}

.p-news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease, opacity 1s ease;
}

.p-news-card__link:hover .p-news-card__img {
  transform: scale(1.05);
  opacity: 0.96;
}

.p-news-card__noimg {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
}

/* ==========================
   Meta
========================== */
.p-news-card__meta {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-news-card__meta {
    gap: 16px;
    margin-top: 16px;
  }
}

/* 16px → clamp */
.p-news-card__date {
  font-size: clamp(13px, 1.3vw, 16px);
  color: #333;
}

/* 14px → clamp */
.p-news-card__cat {
  display: inline-grid;
  place-items: center;
  padding: 3px 32px;
  border: 1px solid #a5a5a5;
  font-size: clamp(12px, 1.2vw, 14px);
  color: #333;
}
@media (max-width: 767px) {
  .p-news-card__cat {
    padding: 3px 18px;
  }
}

/* ==========================
   Title
========================== */
/* 20px → clamp */
.p-news-card__title {
  margin-top: 13px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

/* ==========================
   more button
========================== */
.p-news-archive__more {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
@media (max-width: 767px) {
  .p-news-archive__more {
    margin-top: 32px;
  }
}

/* 12px → clamp */
.p-news-archive__moreBtn {
  min-width: 160px;
  height: 44px;
  border: 1px solid #a5a5a5;
  background: transparent;
  color: #333;
  font-size: clamp(13px, 1.3vw, 16px);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.p-news-archive__moreBtn:hover {
  opacity: 0.9;
}

/* ==========================
   News Single
========================== */
.p-news-single__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(80px, 10vw, 120px);
}

.p-news-single__layout {
  display: grid;
  grid-template-columns: 558px 1fr;
  gap: 80px;
  align-items: start;
}

/* ---------- Gallery ---------- */
.p-news-single__main {
  position: relative;
  width: 558px;
  max-width: 100%;
  height: 388px;
  overflow: hidden;
  background: #f2f2f2;
}

.p-news-single__mainImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: absolute;
  inset: 0;
  transform: translateX(0);
  background: #f2f2f2;
}

.p-news-single__mainImg--next {
  opacity: 1;
  display: none;
}

.p-news-single__mainImg--next.is-anim {
  display: block;
}

/* slide states */
.p-news-single__mainImg.is-anim {
  transition: transform 0.45s ease;
}

.p-news-single__mainImg--next.is-anim {
  transition: transform 0.45s ease;
}

.p-news-single__mainImg--next.is-from-right {
  transform: translateX(100%);
}

.p-news-single__mainImg--next.is-from-left {
  transform: translateX(-100%);
}

.p-news-single__mainImg--next.is-anim {
  transform: translateX(0);
}

.p-news-single__mainImg.is-to-left {
  transform: translateX(-100%);
}

.p-news-single__mainImg.is-to-right {
  transform: translateX(100%);
}

.p-news-single__mainNoimg {
  width: 100%;
  height: 100%;
  background: #e9e9e9;
}

.p-news-single__thumbs {
  display: flex;
  gap: 21px;
  margin-top: 18px;
}

.p-news-single__thumbBtn {
  width: 172px;
  height: 131px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.p-news-single__thumbBtn.is-active {
  opacity: 1;
}
.p-news-single__thumbBtn:hover {
  opacity: 1;
}

.p-news-single__thumbImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-news-single__catLine {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.p-news-single__catLabel {
  font-size: 14px;
}

.p-news-single__catName {
  font-size: 16px;
}

/* ---------- Right ---------- */
.p-news-single__title {
  margin: 40px 0 18px;
  font-size: 24px;
  font-weight: 400;
}

.p-news-single__info {
  margin: 0 0 24px;
}

.p-news-single__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 35px;
  align-items: start;
}
.p-news-single__row + .p-news-single__row {
  margin-top: 10px;
}

.p-news-single__dd,
.p-news-single__content,
.p-news-single__link {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.p-news-single__dt {
  border: 1px solid #a5a5a5;
  font-size: 14px;
  display: inline-grid;
  place-items: center;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 5px 33px;
  line-height: 1;
}

.p-news-single__dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.p-news-single__link {
  color: inherit;
  text-decoration: underline;
}

.p-news-single__content {
  font-size: 14px;
  margin-top: 16px;
  line-height: 2;
}

.p-news-single__block {
  font-size: 14px;
  margin-top: 18px;
}

.p-news-single__blockTitle {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}

.p-news-single__blockBody {
  font-size: 14px;
  line-height: 2;
}

/* ---------- Nav ---------- */
.p-news-single__nav {
  margin-top: 81px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.p-news-single__navCol {
  display: flex;
  justify-content: center;
}
.p-news-single__navCol:first-child {
  justify-content: flex-start;
}
.p-news-single__navCol:last-child {
  justify-content: flex-end;
}

.p-news-single__arrow {
  width: 60px;
  height: 60px;
  border: 1px solid #a5a5a5;
  display: grid;
  place-items: center;
  color: #333;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p-news-single__arrow:hover {
  opacity: 0.9;
}
.p-news-single__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.p-news-single__arrow {
  display: grid;
  place-items: center;
}

.p-news-single__arrowIcon {
  width: 40px;
  height: auto;
}

.p-news-single__backBtn {
  font-size: 20px;
  width: 200px;
  height: 55px;
}

/* ---------- Works ---------- */
.p-news-single-works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(80px, 10vw, 120px);
}

.p-news-single-works__title {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .p-news-single__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-news-single__main {
    width: 100%;
    height: auto;
    aspect-ratio: 558/388;
  }
  .p-news-single__thumbBtn {
    width: calc((100% - 24px) / 3);
    height: auto;
    aspect-ratio: 172/131;
  }
  .p-news-single__thumbs {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .p-news-single__layout {
    grid-template-columns: 1fr;
  }
  .p-news-single__main {
    width: 100%;
    height: auto;
    aspect-ratio: 558/388;
  }
  .p-news-single__thumbBtn {
    width: calc((100% - 24px) / 3);
    height: auto;
    aspect-ratio: 172/131;
  }
  .p-news-single__nav {
    grid-template-columns: 52px 1fr 52px;
    gap: 12px;
  }
}
/* ==========================
   Footer
========================== */
.site-footer {
  background: #f5f5f5;
  padding: 80px 0 36px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================
   Footer Banners
========================== */
.site-footer__banners {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 0 0 112px;
}

.site-footer__banner {
  width: 572px;
  height: 200px;
  background: #fff;
  display: grid;
  place-items: center;
  color: inherit;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.site-footer__banner:hover {
  opacity: 0.92;
  transform: translateY(-3px);
  /* 少し影を強く */
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.18);
}

.site-footer__bannerInner {
  text-align: center;
}

.site-footer__bannerTitle {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 17px;
}

.site-footer__bannerText {
  font-size: 1.8rem;
  margin: 0;
}

/* ==========================
   Footer Main
========================== */
.site-footer__main {
  display: grid;
  grid-template-columns: 227px 1fr;
  align-items: center;
  column-gap: 60px;
  margin-bottom: 54px;
}

/* Logo */
.site-footer__logo img {
  width: 227px;
  height: 90px;
  object-fit: contain;
  display: block;
}

/* Nav + SNS area */
.site-footer__navArea {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

/* Nav */
.site-footer__menu {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  font-size: 2.4rem;
  font-weight: 400;
  color: inherit;
  transition: opacity 0.2s ease;
}
.site-footer__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-footer__menu a:hover::after {
  transform: scaleX(1);
}

/* SNS */
.site-footer__sns {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__snsLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  .site-footer__snsLink:hover {
    opacity: 0.6;
  }
}

.site-footer__snsIconImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================
   PageTop
========================== */
.page-top {
  position: fixed;
  right: max(20px, (100vw - 1200px) / 2);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-top::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #333;
  display: block;
}

.page-top__arrow {
  position: relative;
  width: 50px;
}

.page-top__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 1px;
  background: #333;
  transform-origin: right center;
  transform: rotate(-35deg);
}

.page-top__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 1px;
  background: #333;
  transform-origin: left center;
  transform: rotate(35deg);
}

.page-top__text {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 2px;
}

/* ==========================
   Copyright
========================== */
.site-footer__copy {
  text-align: center;
}

.site-footer__copy small {
  font-size: 1.4rem; /* 14px */
}

/* ==========================
   Responsive
========================== */
@media (max-width: 1024px) {
  .site-footer .site-footer__nav,
  .site-footer .site-footer__banners,
  .site-footer .site-footer__sns {
    display: none;
  }
  .site-footer {
    padding: 50px 0 28px;
  }
  .site-footer__main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
  .site-footer__navArea {
    align-items: center;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .site-footer .site-footer__nav,
  .site-footer .site-footer__banners,
  .site-footer .site-footer__sns {
    display: none;
  }
  .site-footer {
    padding: 60px 0 28px;
  }
  .site-footer__banners {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
  .site-footer__banner {
    width: 100%;
    height: auto;
    aspect-ratio: 572/200;
  }
  .site-footer__main {
    grid-template-columns: 1fr;
    row-gap: 20px;
    justify-items: center;
    text-align: center;
  }
  .site-footer__navArea {
    align-items: center;
  }
  .site-footer__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .page-top {
    right: 20px;
    bottom: 30px;
  }
}
/* =========================
   Object / Utility
========================= */
/* ==========================
   Utility Animation
   Scroll Flow Reveal
========================== */
/* JSが有効なときのみ初期状態を適用 */
html.is-js .js-flow-reveal {
  opacity: 0;
  transform: translateY(18px);
  clip-path: inset(0 0 100% 0);
  will-change: transform, opacity, clip-path;
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0ms) + var(--start, 0ms));
}

/* 画面内に入ったとき */
html.is-js .js-flow-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

/* 動きを減らす設定のユーザー対応 */
@media (prefers-reduced-motion: reduce) {
  html.is-js .js-flow-reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}
/* ==========================
   Utility : Margin
   ========================== */
/* ==========================
   Utility : Text
   ========================== */
.u-initial-accent {
  color: #ffe146;
}

/* ==========================
   Utility : Responsive
   ========================== */
.u-only-sp {
  display: none;
}

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

/*# sourceMappingURL=mystyle.css.map */
