/*! Oreset.css v2.0.0 | MIT License | https://github.com/hirosiva/Oreset.css */
/*
  # Global
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  # Document & Sections
---------------------------------------------- */
:where(html) {
  block-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
}

/*
  # Grouping content
---------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(ul, ol) {
  list-style: none;
}

/*
  # Text-level semantics
---------------------------------------------- */
:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*
  # Embedded content
---------------------------------------------- */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/*
  # Tabular data
---------------------------------------------- */
:where(table) {
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
:where(input, button, textarea, select, optgroup) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}

:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

/*
  # Interactive & Misc
---------------------------------------------- */
:where(template, [hidden]:not([hidden="until-found"])) {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
:where([disabled], [aria-disabled="true"]) {
  cursor: not-allowed;
}

:where([aria-busy="true"]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-hidden="false"][hidden]) {
  display: initial;
}

:where([aria-hidden="false"][hidden]):not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

:where(:focus:not(:focus-visible), ::before:focus:not(:focus-visible), ::after:focus:not(:focus-visible)) {
  outline: none;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* Cheler */
button:not([type])::after {
  content: "このbutton要素にはtype属性が付いてません！";
  color: red;
}

/* Custom Property */
:root {
  --font-instrument: "Instrument Serif", serif;
  --primary-font-set: "Shippori Mincho B1", "Yu Gothic", "游ゴシック体", "YuGothic", "Noto Sans JP", sans-serif;
  --font-tt: "Forum", "tt-commons-pro", "sans-serif";
  --main-color: #2f2f2f;
  --background-color: #f1f1f1;
  --sub-color: #ffffff;
  --content-width: 1200px;
  --duration: 0.3s;
  --ease-in-out: ease;
}

/* Default Style */
body {
  font-family: var(--primary-font-set);
  color: var(--main-color);
}

.is-drawerActive {
  overflow: hidden;
}

[lang="en"] {
  font-family: var(--font-tt);
}

/* ----------------------------------------------
  Layout
---------------------------------------------- */

/* Centering */
.l-container {
  width: min(90%, var(--content-width));
  /* max-width: 1280px; */
  margin: 0 auto;
}

.l-container.-header {
  width: min(100%, 1200px);
}

/* Scroll-down */

.l-scroll-down__container {
  display: flex;
  justify-content: end;
}

/* Spacer */
.l-spacer {
  --base: 16;
}

.l-spacer:where([data-py]) {
  padding-top: calc(var(--base) * var(--space-top, 0) / 16 * 1rem);
  padding-bottom: calc(var(--base) * var(--space-bottom, 0) / 16 * 1rem);
}

.l-spacer:where([data-pt]) {
  padding-top: calc(var(--base) * var(--space-top, 0) / 16 * 1rem);
}

.l-spacer:where([data-pb]) {
  padding-bottom: calc(var(--base) * var(--space-bottom, 0) / 16 * 1rem);
}

.l-spacer:where([data-py~="sm:1"]) {
  --space-top: 1;
  --space-bottom: 1;
}

.l-spacer:where([data-py~="sm:2"]) {
  --space-top: 2;
  --space-bottom: 2;
}

.l-spacer:where([data-py~="sm:3"]) {
  --space-top: 3;
  --space-bottom: 3;
}

.l-spacer:where([data-py~="sm:4"]) {
  --space-top: 4;
  --space-bottom: 4;
}

.l-spacer:where([data-py~="sm:5"]) {
  --space-top: 5;
  --space-bottom: 5;
}

.l-spacer:where([data-py~="sm:6"]) {
  --space-top: 6;
  --space-bottom: 6;
}

.l-spacer:where([data-py~="sm:7"]) {
  --space-top: 7;
  --space-bottom: 7;
}

.l-spacer:where([data-py~="sm:8"]) {
  --space-top: 8;
  --space-bottom: 8;
}

.l-spacer:where([data-py~="sm:9"]) {
  --space-top: 9;
  --space-bottom: 9;
}

.l-spacer:where([data-py~="sm:10"]) {
  --space-top: 10;
  --space-bottom: 10;
}

/* padding-top */
.l-spacer:where([data-pt~="sm:1"]) {
  --space-top: 1;
}

.l-spacer:where([data-pt~="sm:2"]) {
  --space-top: 2;
}

.l-spacer:where([data-pt~="sm:3"]) {
  --space-top: 3;
}

.l-spacer:where([data-pt~="sm:4"]) {
  --space-top: 4;
}

.l-spacer:where([data-pt~="sm:5"]) {
  --space-top: 5;
}

.l-spacer:where([data-pt~="sm:6"]) {
  --space-top: 6;
}

.l-spacer:where([data-pt~="sm:7"]) {
  --space-top: 7;
}

.l-spacer:where([data-pt~="sm:8"]) {
  --space-top: 8;
}

.l-spacer:where([data-pt~="sm:9"]) {
  --space-top: 9;
}

.l-spacer:where([data-pt~="sm:10"]) {
  --space-top: 10;
}

/* padding-bottom */
.l-spacer:where([data-pb~="sm:1"]) {
  --space-bottom: 1;
}

.l-spacer:where([data-pb~="sm:2"]) {
  --space-bottom: 2;
}

.l-spacer:where([data-pb~="sm:3"]) {
  --space-bottom: 3;
}

.l-spacer:where([data-pb~="sm:4"]) {
  --space-bottom: 4;
}

.l-spacer:where([data-pb~="sm:5"]) {
  --space-bottom: 5;
}

.l-spacer:where([data-pb~="sm:6"]) {
  --space-bottom: 6;
}

.l-spacer:where([data-pb~="sm:7"]) {
  --space-bottom: 7;
}

.l-spacer:where([data-pb~="sm:8"]) {
  --space-bottom: 8;
}

.l-spacer:where([data-pb~="sm:9"]) {
  --space-bottom: 9;
}

.l-spacer:where([data-pb~="sm:10"]) {
  --space-bottom: 10;
}

@media screen and (min-width: 768px) {
  .l-spacer:where([data-py~="md:1"]) {
    --space-top: 1;
    --space-bottom: 1;
  }

  .l-spacer:where([data-py~="md:2"]) {
    --space-top: 2;
    --space-bottom: 2;
  }

  .l-spacer:where([data-py~="md:3"]) {
    --space-top: 3;
    --space-bottom: 3;
  }

  .l-spacer:where([data-py~="md:4"]) {
    --space-top: 4;
    --space-bottom: 4;
  }

  .l-spacer:where([data-py~="md:5"]) {
    --space-top: 5;
    --space-bottom: 5;
  }

  .l-spacer:where([data-py~="md:6"]) {
    --space-top: 6;
    --space-bottom: 6;
  }

  .l-spacer:where([data-py~="md:7"]) {
    --space-top: 7;
    --space-bottom: 7;
  }

  .l-spacer:where([data-py~="md:8"]) {
    --space-top: 8;
    --space-bottom: 8;
  }

  .l-spacer:where([data-py~="md:9"]) {
    --space-top: 9;
    --space-bottom: 9;
  }

  .l-spacer:where([data-py~="md:10"]) {
    --space-top: 10;
    --space-bottom: 10;
  }

  /* padding-top */
  .l-spacer:where([data-pt~="md:1"]) {
    --space-top: 1;
  }

  .l-spacer:where([data-pt~="md:2"]) {
    --space-top: 2;
  }

  .l-spacer:where([data-pt~="md:3"]) {
    --space-top: 3;
  }

  .l-spacer:where([data-pt~="md:4"]) {
    --space-top: 4;
  }

  .l-spacer:where([data-pt~="md:5"]) {
    --space-top: 5;
  }

  .l-spacer:where([data-pt~="md:6"]) {
    --space-top: 6;
  }

  .l-spacer:where([data-pt~="md:7"]) {
    --space-top: 7;
  }

  .l-spacer:where([data-pt~="md:8"]) {
    --space-top: 8;
  }

  .l-spacer:where([data-pt~="md:9"]) {
    --space-top: 9;
  }

  .l-spacer:where([data-pt~="md:10"]) {
    --space-top: 10;
  }

  /* padding-bottom */
  .l-spacer:where([data-pb~="md:1"]) {
    --space-bottom: 1;
  }

  .l-spacer:where([data-pb~="md:2"]) {
    --space-bottom: 2;
  }

  .l-spacer:where([data-pb~="md:3"]) {
    --space-bottom: 3;
  }

  .l-spacer:where([data-pb~="md:4"]) {
    --space-bottom: 4;
  }

  .l-spacer:where([data-pb~="md:5"]) {
    --space-bottom: 5;
  }

  .l-spacer:where([data-pb~="md:6"]) {
    --space-bottom: 6;
  }

  .l-spacer:where([data-pb~="md:7"]) {
    --space-bottom: 7;
  }

  .l-spacer:where([data-pb~="md:8"]) {
    --space-bottom: 8;
  }

  .l-spacer:where([data-pb~="md:9"]) {
    --space-bottom: 9;
  }

  .l-spacer:where([data-pb~="md:10"]) {
    --space-bottom: 10;
  }
}

@media screen and (min-width: 1024px) {
  .l-spacer:where([data-py~="lg:1"]) {
    --space-top: 1;
    --space-bottom: 1;
  }

  .l-spacer:where([data-py~="lg:2"]) {
    --space-top: 2;
    --space-bottom: 2;
  }

  .l-spacer:where([data-py~="lg:3"]) {
    --space-top: 3;
    --space-bottom: 3;
  }

  .l-spacer:where([data-py~="lg:4"]) {
    --space-top: 4;
    --space-bottom: 4;
  }

  .l-spacer:where([data-py~="lg:5"]) {
    --space-top: 5;
    --space-bottom: 5;
  }

  .l-spacer:where([data-py~="lg:6"]) {
    --space-top: 6;
    --space-bottom: 6;
  }

  .l-spacer:where([data-py~="lg:7"]) {
    --space-top: 7;
    --space-bottom: 7;
  }

  .l-spacer:where([data-py~="lg:8"]) {
    --space-top: 8;
    --space-bottom: 8;
  }

  .l-spacer:where([data-py~="lg:9"]) {
    --space-top: 9;
    --space-bottom: 9;
  }

  .l-spacer:where([data-py~="lg:10"]) {
    --space-top: 10;
    --space-bottom: 10;
  }

  /* padding-top */
  .l-spacer:where([data-pt~="lg:1"]) {
    --space-top: 1;
  }

  .l-spacer:where([data-pt~="lg:2"]) {
    --space-top: 2;
  }

  .l-spacer:where([data-pt~="lg:3"]) {
    --space-top: 3;
  }

  .l-spacer:where([data-pt~="lg:4"]) {
    --space-top: 4;
  }

  .l-spacer:where([data-pt~="lg:5"]) {
    --space-top: 5;
  }

  .l-spacer:where([data-pt~="lg:6"]) {
    --space-top: 6;
  }

  .l-spacer:where([data-pt~="lg:7"]) {
    --space-top: 7;
  }

  .l-spacer:where([data-pt~="lg:8"]) {
    --space-top: 8;
  }

  .l-spacer:where([data-pt~="lg:9"]) {
    --space-top: 9;
  }

  .l-spacer:where([data-pt~="lg:10"]) {
    --space-top: 10;
  }

  /* padding-bottom */
  .l-spacer:where([data-pb~="lg:1"]) {
    --space-bottom: 1;
  }

  .l-spacer:where([data-pb~="lg:2"]) {
    --space-bottom: 2;
  }

  .l-spacer:where([data-pb~="lg:3"]) {
    --space-bottom: 3;
  }

  .l-spacer:where([data-pb~="lg:4"]) {
    --space-bottom: 4;
  }

  .l-spacer:where([data-pb~="lg:5"]) {
    --space-bottom: 5;
  }

  .l-spacer:where([data-pb~="lg:6"]) {
    --space-bottom: 6;
  }

  .l-spacer:where([data-pb~="lg:7"]) {
    --space-bottom: 7;
  }

  .l-spacer:where([data-pb~="lg:8"]) {
    --space-bottom: 8;
  }

  .l-spacer:where([data-pb~="lg:9"]) {
    --space-bottom: 9;
  }

  .l-spacer:where([data-pb~="lg:10"]) {
    --space-bottom: 10;
  }
}

/* Header */
.l-header {
  --space: 0;

  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2000;
  padding: calc(var(--space) / 16 * 1rem) 0;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  padding-top: calc(16 / 16 * 1rem);
}

.l-header__logo {
}

.logo__img {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: "Forum", serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}

.l-header__nav {
}

@media screen and (min-width: 768px) {
  .logo__img img {
    width: 49px;
    height: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .l-header__inner {
    padding-top: calc(48 / 16 * 1rem);
  }

  .l-header__nav {
    padding: 0;
  }
}

/* Grid */
.l-grid {
  --cols: 1;
  --gap: 48;

  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: calc(var(--gap) / 16 * 1rem);
}

.l-grid__item {
  position: relative;
  display: block;
  display: grid;
  z-index: 1;
}

/* .l-grid__item::before,
.l-grid__item::after {
  content: "";
  position: absolute;
  top: 0;
  background-color: var(--work-color);
  width: 100%;
  height: 100%;
} */

@media screen and (min-width: 768px) {
  .l-grid {
    --cols: 2;
    --gap: 32;
  }
}

@media screen and (min-width: 1024px) {
  .l-grid {
    --cols: 3;
    --gap: 32;
  }
}

/* About */

.about__title {
  font-size: clamp(calc(13 / 16 * 1rem), 0.713rem + 0.19vw, calc(13 / 16 * 1rem));
  font-weight: 500;
  margin-top: calc(24 / 16 * 1rem);
  font-family: var(--font-tt);
  letter-spacing: 0.05em;
}

.about-profile {
  margin-top: calc(24 / 16 * 1rem);
  margin-bottom: calc(48 / 16 * 1rem);
}

.about-profile__name {
  font-size: calc(12 / 16 * 1rem);
}

.about-profile__bio {
  padding-top: calc(8 / 16 * 1rem);
  padding-bottom: calc(16 / 16 * 1rem);
  font-size: calc(12 / 16 * 1rem);
}

.about-quote-section {
  display: flex;
  justify-content: center;
  align-items: center; /* 縦中央 */
  min-height: 50vh; /* 画面いっぱいにする */
}

.about-quote {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column; /* ← 明示する */
  gap: 8px;
  align-items: flex-end;
}

.about-quote__source {
  font-size: calc(12 / 16 * 1rem);
  color: var(--main-color);
  opacity: 0.5;
}

.about-story {
  margin-top: calc(48 / 16 * 1rem);
}

.about-story__text {
  padding-top: calc(16 / 16 * 1rem);
  font-size: calc(12 / 16 * 1rem);
}

@media screen and (min-width: 768px) {
  .about-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-profile > * {
    grid-column: 1;
    max-width: 480px; /* テキスト幅制御 */
  }

  .about-quote-section {
    display: flex;
    align-items: center; /* 縦中央 */
    min-height: 50vh; /* 画面いっぱいにする */
    max-width: 480px; /* テキスト幅制御 */
  }

  .about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-story > * {
    grid-column: 1;
    max-width: 480px; /* テキスト幅制御 */
  }
}

@media screen and (min-width: 1024px) {
}

/* Footer */
.l-footer {
  text-align: right;
}

.l-footer__top {
  text-align: right;
  padding: calc(16 / 16 * 1rem) 0;
}

.l-footer__top a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.05em;
}

.l-footer__copyright {
  font-size: clamp(calc(8 / 16 * 1rem), 0.667rem + 0.42vw, calc(9 / 16 * 1rem));
  position: fixed;
  right: 10px;
  top: 80%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right center;
  letter-spacing: 0.05em;
  font-family: var(--font-tt);
  color: var(--main-color);
  opacity: 0.5;
  white-space: nowrap;
  z-index: 1000;
}

.l-footer__copyright a {
  text-decoration: none;
  font-weight: 500;
  color: inherit;
}

@media screen and (min-width: 1024px) {
  .l-footer__top {
    padding-bottom: calc(48 / 16 * 1rem);
  }

  .l-footer__copyright {
    font-size: calc(10 / 16 * 1rem);
    right: 30px;
    top: 100%;
  }
}

/* ----------------------------------------------
  Modyle
---------------------------------------------- */
/* Uppercase  */
.uppercase {
  text-transform: uppercase;
}

/* Global Nav */
.globalNav {
  position: fixed;
  inset: 0;
  background-color: #fff;
  height: 100vh;
  padding: calc(120 / 16 * 1rem) calc(30 / 16 * 1rem);
  transform: translateY(100%);
  visibility: hidden;
  transition: transform 0.3s ease;
}

.globalNav-link {
  position: relative;
  display: block;
  padding: calc(16 / 16 * 1rem) 0;
  color: var(--main-color);
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: calc(18 / 16 * 1rem);
  border-bottom: 1px solid color-mix(in srgb, var(--main-color) 30%, transparent);
  transition: color var(--duration) var(--easing);
}

.globalNav-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid color-mix(in srgb, var(--main-color) 30%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease;
}

.globalNav-link[href]:hover::after,
.globalNav-link[href]:focus-visible::after {
  transform: scaleX(1);
}

.globalNav .sns {
  padding-top: calc(30 / 16 * 1rem);
}

.globalNav .sns a {
  border-bottom: none;
}

.is-drawerActive .globalNav {
  transform: translateY(0%);
  visibility: visible;
}

.is-resize .globalNav {
  transition: none;
}

@media screen and (min-width: 768px) {
  .globalNav {
    position: static;
    padding: 0;
    height: auto;
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    transform: translateX(0);
    visibility: visible;
  }

  .globalNav__items {
    gap: calc(48 / 16 * 1rem);
  }

  .globalNav__items a {
    padding: 0;
    font-size: calc(11 / 16 * 1rem);
    border: none;
    text-align: end;
    line-height: 1.8;
  }

  .globalNav .sns {
    display: none;
  }
}

/* Main-visual */

.main-visual {
  position: relative;
  padding-top: min(calc(40 / 16 * 1rem), 5vh);
  padding-bottom: calc(40 / 16 * 1rem);
  overflow: visible;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-visual__svg-container {
  position: absolute;
  left: -5%;
  right: 0;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}

.main-visual__images {
  position: relative;
  margin: calc(50 / 16 * 1rem) auto 0;
  max-width: 300px;
  width: 90%;
  height: auto;
}

.main-visual__object {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-visual__ribbon {
  position: absolute;
  top: 30%;
  left: 56%;
  transform: translateX(-0%);
  width: 20%;
  max-width: 200px;
  height: auto;
  z-index: 2;
  object-fit: contain;
  transition: all 4s ease;
}

/* アニメーション設定 */
.main-visual__line-red {
  fill: none;
  stroke: #c1272d;
  stroke-width: 3.05px;
  stroke-miterlimit: 10;
  stroke-dasharray: 922.33;
  stroke-dashoffset: 922.33;
  animation: move 5s linear infinite;
}

@keyframes move {
  0% {
    stroke-dashoffset: 922.33;
  }
  80% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 922.33;
  }
}

.main-visual__line-red-text {
  color: #c1272d;
}

@media screen and (min-width: 768px) {
  .main-visual {
    padding-top: min(calc(40 / 16 * 1rem), 6vh);
  }

  .main-visual__images {
    margin: calc(60 / 16 * 1rem) auto;
    max-width: min(80%, 700px);
  }

  .main-visual__ribbon {
    top: 29%;
    left: 58.6%;
    width: clamp(15%, 150px, 20%);
  }
}

@media screen and (min-width: 1023px) {
  .main-visual {
    padding-top: min(calc(30 / 16 * 1rem), 7vh);
    padding-bottom: 0;
  }

  .main-visual__images {
    margin: calc(60 / 16 * 1rem) auto 0;
    max-width: min(70%, 800px);
  }

  .main-visual__ribbon {
    top: 26%;
    left: 57%;
    width: clamp(15%, 150px, 20%);
  }

  .main-visual__svg-container {
    width: 100%;
    top: 10%;
  }
}

/* Scroll-down */
.scroll-down {
  width: 70px;
  height: 70px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: calc(10 / 16 * 1rem);
  animation-name: rotate;
  animation-duration: 4s; /* アニメーションの持続時間 */
  animation-delay: 2s;
  animation-timing-function: var(--ease-in-out);
  animation-iteration-count: infinite; /* アニメーションを繰り返す */
}

@keyframes rotate {
  0% {
    width: 70px;
    height: 70px;
    border: 1px solid var(--main-color);
  }

  100% {
    transform: rotate(360deg);
    border: 1px solid var(--main-color);
  }
}

@media screen and (min-width: 768px) {
  .scroll-down {
    width: 100px;
    height: 100px;
    font-size: calc(13 / 16 * 1rem);
  }

  @keyframes rotate {
    0% {
      width: 100px;
      height: 100px;
      border: 1px solid var(--main-color);
    }

    100% {
      transform: rotate(360deg);
      border: 1px solid var(--main-color);
    }
  }
}

@media screen and (min-width: 1023px) {
  .scroll-down {
    width: 120px;
    height: 120px;
    font-size: calc(13 / 16 * 1rem);
  }

  @keyframes rotate {
    0% {
      width: 120px;
      height: 120px;
      border: 1px solid var(--main-color);
    }

    100% {
      transform: rotate(360deg);
      border: 1px solid var(--main-color);
    }
  }
}

/* border */
.-border {
  border-top: 3px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

.-border-bottom {
  border-bottom: 1px solid var(--main-color);
}

/* Heading / Date */
.heading {
  font-size: clamp(calc(32 / 16 * 1rem), 1.273rem + 3.64vw, calc(64 / 16 * 1rem));
  font-weight: 500;
  line-height: 1.3;
  font-family: var(--font-tt);
  padding: calc(8 / 16 * 1rem) 0;
}

.Work-Datewrapper {
  display: flex;
  flex-direction: column;
  font-family: var(--font-tt);
  gap: calc(8 / 16 * 1rem);
}

.Work-Date {
  margin: 0;
  font-size: calc(15 / 16 * 1rem);
}

.Work-Date_text a {
  color: #000000;
}

.Work-Date_text a:hover {
  text-decoration: none;
}

.Work-Date.-Role {
  margin-left: 0;
}

.-primary-heading {
  font-size: clamp(calc(32 / 16 * 1rem), 0.091rem + 4.55vw, calc(56 / 16 * 1rem));
}

.-primary-heading-favorite {
  border: 1px solid var(--main-color);
  border-bottom: none;
  background-color: var(--sub-color);
  text-align: center;
  font-size: clamp(calc(24 / 16 * 1rem), 0.713rem + 0.19vw, calc(32 / 16 * 1rem));
  padding: calc(16 / 16 * 1rem);
}

.-primary-heading-timeline {
  font-size: clamp(calc(24 / 16 * 1rem), 0.713rem + 0.19vw, calc(14 / 16 * 1rem));
  margin-bottom: calc(40 / 16 * 1rem);
  text-align: center;
}

.-primary-heading_label {
  font-family: var(--primary-font-set);
  font-size: clamp(calc(12 / 16 * 1rem), 0.091rem + 4.55vw, calc(14 / 16 * 1rem));
  margin-left: calc(5 / 16 * 1rem);
}

@media screen and (min-width: 768px) {
  .Work-Datewrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .Work-Date.-Role {
    margin-left: clamp(calc(20 / 16 * 1rem), 0.509rem + 3.7vw, calc(60 / 16 * 1rem));
  }

  .mobile-break {
    display: none;
  }

  .-primary-heading-favorite {
    max-width: 200px;
    padding: calc(5 / 16 * 1rem);
  }
}

@media screen and (min-width: 1024px) {
}

/* Contact */
.contact {
  text-align: center;
  padding: calc(10 / 16 * 1rem) 0;
  margin-bottom: calc(15 / 16 * 1rem);
  transition: background-color var(--duration) var(--ease-in-out);
}

.contact__text {
  display: block;
  line-height: 1;
  color: var(--main-color);
  text-decoration: none;
  font-size: clamp(calc(40 / 16 * 1rem), 6.136rem + 6.82vw, calc(72 / 16 * 1rem));
  font-weight: 600;
  font-family: var(--font-tt);
  transition: background-color var(--duration) var(--ease-in-out), color var(--duration) var(--ease-in-out), border-color var(--duration) var(--ease-in-out);
  letter-spacing: 0.05;
}

.contact:hover,
.contact:focus-visible {
  background-color: var(--main-color);
  color: #fff;
}

.contact__text:hover,
.contact__text:focus-visible {
  color: #fff;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1023px) {
}

/* Card */
/* ----------------------------------------------
  Card Hover Overlay
---------------------------------------------- */

.card__cover {
  aspect-ratio: 336 / 219;
  overflow: hidden;
  position: relative; /* 追加 */
}

.card__cover:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration) cubic-bezier(0.23, 1, 0.32, 1);
}

.card__hover-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: left;
  justify-content: left;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: calc(16 / 16 * 1rem);
}

.card__hover-title {
  font-family: var(--font-tt);
  font-size: calc(12 / 16 * 1rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--main-color);
}

.card__thumbnail:hover .card__hover-overlay {
  opacity: 1;
}

/* Background */

.-gray {
  background-color: #f1f1f1;
}

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

/* SNS */
.sns {
  display: flex;
  gap: calc(8 / 16 * 1rem);
}

@media screen and (min-width: 768px) {
  .sns__twitter,
  .sns__instagram {
    transition: opacity 0.3s ease-out;
  }

  .sns__twitter:hover,
  .sns__instagram:hover {
    opacity: 0.7;
  }
}

/* Button */
.button {
  display: block;
  border: 0;
  appearance: none;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

.-primaryButton {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--main-color);
  font-weight: 400;
  padding: calc(10 / 16 * 1rem) calc(50 / 16 * 1rem);
  font-size: calc(14 / 16 * 1rem);
}

.-primaryButton::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  transition: width var(--duration) var(--ease-in-out);
}

.-primaryButton::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  transition: width var(--duration) var(--ease-in-out);
}

.-primaryButton:hover::before,
.-primaryButton:hover::after,
.-primaryButton:focus-visible::before,
.-primaryButton:focus-visible::after {
  width: 0;
}

@media screen and (min-width: 768px) {
  .primaryButton {
    margin: 0 0 0 auto;
  }
}

/* hamburger Button */
.hamburgerButton {
  --size: 32px;

  position: relative;
  z-index: 1;
  width: calc(var(--size));
  height: calc(var(--size));
}

.hamburgerButton__line {
  position: absolute;
  inset: 0;
  display: block;
  width: calc((32 / 32) * 100%);
  height: 1px;
  margin: auto;
  border-radius: 4px;
  background-color: transparent; /* 本体（中央線）を非表示 */
  transition: 0.5s var(--ease-in-out);
  transition-property: #2f2f2f;
  opacity: 0.3;
}

.hamburgerButton__line::before,
.hamburgerButton__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--main-color);
  transition: inherit;
  transition-property: transform, background-color;
  transition: 0.5s var(--ease-in-out);
}

.hamburgerButton__line::after {
  top: 5px;
}

.hamburgerButton:where([aria-expanded="true"]) .hamburgerButton__line {
  background-color: transparent;
}

.hamburgerButton:where([aria-expanded="true"]) .hamburgerButton__line::before,
.hamburgerButton:where([aria-expanded="true"]) .hamburgerButton__line::after {
  top: 0;
  background-color: var(--main-color);
}

.hamburgerButton:where([aria-expanded="true"]) .hamburgerButton__line::before {
  transform: rotate(-45deg);
}

.hamburgerButton:where([aria-expanded="true"]) .hamburgerButton__line::after {
  transform: rotate(45deg);
}

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

/* Oreroll */
[data-trigger] {
  --duration: 0.4s;
  --easing: cubic-bezier(0.25, 0.1, 0.74, 0.98);
  --property: opacity;

  transition: var(--duration) var(--easing);
  transition-property: var(--property);
}

[data-scrub] {
  --progress: 0;
}

[data-trigger="fadeIn"] {
  &[data-inview="false"] {
    opacity: 0;
  }
  &[data-inview="true"] {
    opacity: 1;
  }
}

[data-trigger="blurIn"] {
  --property: opacity, filter;

  transition-duration: 1s, 0.6s;

  &[data-inview="false"] {
    filter: blur(4px);
    opacity: 0;
  }
  &[data-inview="true"] {
    filter: blur(0);
    opacity: 1;
  }
}

[data-trigger="slideUpIn"] {
  --property: opacity, translate;

  transition-duration: 1s, 0.6s;

  &[data-inview="false"] {
    translate: 0 0.5rem;
    opacity: 0;
  }
  &[data-inview="true"] {
    translate: 0 0;
    opacity: 1;
  }
}

.fixed {
  position: fixed;
  bottom: 4px;
  right: 5vh;

  &[data-inview="true"] {
    color: red;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-effect="parallax"] {
    --range: 290;
    --translate: calc((var(--range) * -1px) + (var(--range) * 2px) * var(--progress, 0));

    translate: 0 var(--translate);
  }

  [data-clip-item] {
    clip-path: inset(calc((1 - var(--progress)) * 30%));
  }

  [data-scrub="textClipIn"] {
    color: transparent;
    background-image: linear-gradient(90deg, #000 50%, #ccc 50%, #ccc 100%);
    background-position: calc(100% * (1 - var(--progress))) 0;
    background-clip: text;
    background-size: 200% 100%;
  }
}

/* Accesibility */
.visuallyHidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
}

/* ----------------------------------------------
  profile__section
---------------------------------------------- */
/* introduction */

.introduction-wrapper {
  display: flex;
  flex-direction: column;
  padding-bottom: calc(60 / 16 * 1rem);
}

.introduction-head {
  width: 100%;
}

.introduction-head__title {
  font-size: clamp(calc(32 / 16 * 1rem), 0.676rem + 0.37vw, calc(48 / 16 * 1rem));
  font-weight: 300;
  line-height: 1.3;
}

.introduction-head__subtitle {
  font-weight: 100;
  line-height: 2;
}

.introduction-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.introduction__thumbnail {
  margin-top: calc(20 / 16 * 1rem);
  width: 100%;
}

.introduction__thumbnail img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形を維持 */
  object-fit: cover;
  border: 1px solid var(--main-color);
}

.introduction-body {
  flex: 1;
}

.introduction-body__text {
  margin: calc(24 / 16 * 1rem) 0;
  font-size: clamp(calc(12 / 16 * 1rem), 0.713rem + 0.19vw, calc(14 / 16 * 1rem));
  line-height: 1.8;
  word-break: break-word;
  font-weight: 100;
}

@media screen and (min-width: 768px) {
  .introduction-wrapper {
    gap: calc(25 / 16 * 1rem);
  }

  .introduction-head {
    width: 100%;
    text-align: center;
  }

  .introduction-head__title {
    font-size: calc(48 / 16 * 1rem);
  }

  .introduction-head__subtitle {
    font-size: calc(24 / 16 * 1rem);
  }

  .introduction-content {
    display: block;
    gap: calc(16 / 16 * 1rem);
  }

  .introduction__thumbnail {
    float: right;
    margin-top: 0;
    margin-left: calc(24 / 16 * 1rem);
    width: 40%;
    max-width: 300px;
  }

  .introduction-body__text {
    margin-top: 0;
    word-break: break-word;
    text-align: justify;
  }
}

@media screen and (min-width: 1024px) {
  .introduction-wrapper {
    gap: calc(40 / 16 * 1rem);
  }
}

/* Favorite */
.favorite__innner {
  padding: calc(16 / 16 * 1rem);
  background-color: #fff;
  border: 1px solid var(--main-color);
}

.favorite__item {
  padding-bottom: calc(16 / 16 * 1rem);
}

.favorite__item:last-child {
  padding-bottom: 0;
}

.favorite__title {
  font-weight: 600;
  font-size: clamp(calc(13 / 16 * 1rem), 0.705rem + 0.23vw, calc(15 / 16 * 1rem));
  margin-bottom: calc(5 / 16 * 1rem);
  border-bottom: 0.5px solid #dbdbdb;
  padding: calc(5 / 16 * 1rem) 0;
}

.favorite__text {
  font-size: clamp(calc(12 / 16 * 1rem), 0.713rem + 0.19vw, calc(14 / 16 * 1rem));
  line-height: 1.8;
  font-weight: 100;
}

@media screen and (min-width: 768px) {
  .favorite__item {
    display: flex;
    gap: 10px;
    border-bottom: 0.25px solid var(--main-color);
    padding: calc(8 / 16 * 1rem) 0 calc(8 / 16 * 1rem);
    line-height: 1;
    align-items: center;
  }

  .favorite__item:last-of-type {
    padding-bottom: calc(10 / 16 * 1rem);
  }

  .favorite__title {
    max-width: 20%;
    display: inline-block;
    flex-basis: 25%;
    margin: 0 0 0 calc(5 / 16 * 1rem);
    border: none;
    padding: 0;
  }

  .favorite__text {
    width: 80%;
  }
}

@media screen and (min-width: 1023px) {
}

/* timeline */
.timeline {
  position: relative;
  width: 100%;
  padding: calc(48 / 16 * 1rem) 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--main-color);
}

.timeline__entry {
  position: relative;
  width: 100%;
  padding-left: calc(24 / 16 * 1rem);
  margin-bottom: calc(40 / 16 * 1rem);
}

.timeline__entry::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.timeline__entry::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 52.7%;
  width: 24px;
  height: 1px;
  background-color: var(--main-color);
}

.timeline__date {
  display: block;
  font-size: clamp(calc(48 / 16 * 1rem), 2.636rem + 1.82vw, calc(64 / 16 * 1rem));
  font-family: var(--font-tt);
  font-weight: 600;
  color: var(--main-color);
  line-height: 0.75;
  text-align: center;
}

.timeline__content {
  padding: calc(16 / 16 * 1rem);
  background-color: #fff;
  border: 1px solid var(--main-color);
  transform-origin: center;
  transform-style: preserve-3d;
  perspective: 400px;
  will-change: transform, opacity;
}

.timeline__description {
  line-height: 1.8;
  font-size: clamp(calc(12 / 16 * 1rem), 0.713rem + 0.19vw, calc(14 / 16 * 1rem));
  font-weight: 100;
}

@media screen and (min-width: 768px) {
  .timeline {
    max-width: 1000px;
    margin: 0 auto;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline__entry {
    width: 50%;
    padding: 0 15px;
  }

  .timeline__entry::after {
    width: 16px;
  }

  .timeline__entry:nth-child(odd) {
    left: 0;
  }

  .timeline__entry:nth-child(even) {
    left: 50%;
  }

  .timeline__entry::before {
    right: -6px;
    left: auto;
  }

  .timeline__entry:nth-child(even)::before {
    left: -6px;
    right: auto;
  }

  .timeline__entry::after {
    right: 0;
    left: auto;
    top: 53%;
  }

  .timeline__entry:nth-child(even)::after {
    left: 0;
    right: auto;
    top: 53%;
  }
}

@media screen and (min-width: 1024px) {
  .timeline {
    padding: 60px 0;
    max-width: 900px;
  }

  .timeline__entry {
    margin: 0;
  }

  .timeline__entry::after {
    top: 53%;
  }

  .timeline__entry:nth-child(even)::after {
    top: 53%;
  }

  .timeline__content {
    padding: calc(24 / 16 * 1rem) calc(16 / 16 * 1rem);
  }
}

/* Strengths */
.strengths__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.strengths__content {
  border: 1px solid var(--main-color);
}

.strengths__content:not(:last-child) {
  border-bottom: none;
}

.strengths__item {
  --padding: 20px;
  --text-margin: 10px;

  padding: var(--padding);
  justify-content: flex-start;
}

.strengths__title {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 400;
}

.strengths__text {
  margin-top: var(--text-margin);
  font-size: clamp(calc(12 / 16 * 1rem), 0.713rem + 0.19vw, calc(14 / 16 * 1rem));
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .strengths__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1023px) {
  .strengths__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .strengths__content:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--main-color);
  }

  .strengths__content:last-child {
    grid-column: auto;
  }

  .strengths__item {
    --padding: 24px;

    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .strengths__title {
    display: flex;
    flex-direction: column;
  }

  .strengths__titl span {
    margin-top: 5px;
  }

  .strengths__footer {
    margin: 0;
    height: 30%;
  }
}

/* Clifflength */

.clifflength__img img {
  text-align: center;
  margin: 0 auto;
  padding: calc(60 / 16 * 1rem) 0;
}

.clifflength__text {
  font-size: clamp(calc(12 / 16 * 1rem), 0.713rem + 0.19vw, calc(14 / 16 * 1rem));
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .clifflength__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .clifflength__img {
    flex: 0 0 60%;
  }

  .clifflength__item-wrapper {
    padding-top: calc(64 / 16 * 1rem);
  }
}

@media screen and (min-width: 1023px) {
  .clifflength__item-wrapper {
    padding-top: calc(80 / 16 * 1rem);
  }
}

/* Motivation */
.motivation {
  background-color: var(--background-color);
}

.motivation__item {
  line-height: 1.8;
  padding: calc(20 / 16 * 1rem) calc(20 / 16 * 1rem) calc(60 / 16 * 1rem) calc(20 / 16 * 1rem);
  font-size: clamp(calc(13 / 16 * 1rem), 0.75rem + 0.31vw, calc(16 / 16 * 1rem));
  margin-bottom: -40px;
}

.motivation__title {
  font-size: calc(13 / 16 * 1rem);
  margin: calc(10 / 16 * 1rem) 0;
}

.motivation__title__large {
  font-size: calc(36 / 16 * 1rem);
  margin-right: calc(10 / 16 * 1rem);
}

.motivation__number {
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}

.motivation__number::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  top: 24px;
  left: 10px;
  transform: rotate(-45deg);
}

.motivation__number-black::after {
  background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .motivation__item {
    margin-bottom: -30px;
  }

  .motivation__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: calc(30 / 16 * 1rem);
  }

  .motivation__title {
    font-size: calc(13 / 16 * 1rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 40%;
    line-height: 1.3;
  }

  .motivation__text {
    font-size: clamp(calc(13 / 16 * 1rem), 0.75rem + 0.31vw, calc(15 / 16 * 1rem));
    margin: 0;
    width: 60%;
    max-width: 700px;
  }
}

@media screen and (min-width: 1023px) {
  .motivation__item {
    margin-bottom: -20px;
  }

  .motivation__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: calc(30 / 16 * 1rem);
  }

  .motivation__title {
    font-size: calc(13 / 16 * 1rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 25%;
    line-height: 1.3;
  }

  .motivation__text {
    font-size: clamp(calc(13 / 16 * 1rem), 0.75rem + 0.31vw, calc(15 / 16 * 1rem));
    margin: 0;
    width: 90%;
    max-width: 700px;
  }
}

/* Contribution */
.contribution {
  background-color: var(--background-color);
}

.contribution__item {
  line-height: 1.8;
  font-size: clamp(calc(13 / 16 * 1rem), 0.75rem + 0.31vw, calc(15 / 16 * 1rem));
  padding: calc(30 / 16 * 1rem);
}

@media screen and (min-width: 1023px) {
  .contribution__grid {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contribution__item:first-of-type {
    margin-right: -60px;
  }

  .contribution__item:last-of-type {
    margin-left: -60px;
  }
}

/* Card */

.card-black {
  background: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}

.card-motivation:nth-child(2) {
  position: relative;
  top: -30px;
}

.card-motivation:nth-child(3) {
  position: relative;
  top: -60px;
}

.card-circle {
  border: 1px solid var(--main-color);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto -20px;
  gap: calc(10 / 16 * 1rem);
}

@media screen and (min-width: 768px) {
  .card-circle {
    width: 360px;
    height: 360px;
  }
}

/* box */
.box {
  position: relative;
  border: 1px solid var(--main-color);
  background-color: var(--background-color);
  display: block;
  padding: calc(20 / 16 * 1rem);
}

.-box-works {
  padding: 0;
}

.box::before,
.box::after {
  content: "";
  position: absolute;
  top: 0;
  background-color: var(--background-color);
  border: 1px solid var(--main-color);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.box::before {
  top: 10px;
  left: 10px;
  z-index: -2;
}

.box::after {
  top: 20px;
  left: 20px;
  z-index: -3;
}

@media screen and (min-width: 768px) {
  .box {
    padding: calc(40 / 16 * 1rem);
  }

  .-box-works {
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .box {
    padding: calc(56 / 16 * 1rem) calc(64 / 16 * 1rem);
  }

  .-box-works {
    padding: 0;
  }
}

/* ----------------------------------------------
  Works__discription__section
---------------------------------------------- */
.works-background {
  background-color: #fff;
  position: relative; /* これを追加 */
  z-index: 1000;
}

.works__image {
  display: flex;
  flex-direction: column;
  gap: 24px; /* ここで画像と画像の間隔を調整 */
}

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

.works__title {
  font-size: clamp(calc(24 / 16 * 1rem), 0.713rem + 0.19vw, calc(32 / 16 * 1rem));
  font-weight: 500;
  margin-top: calc(24 / 16 * 1rem);
  font-family: var(--font-tt);
  letter-spacing: 0.05em;
}

.works-meta {
  margin-top: calc(16 / 16 * 1rem);
}

.works-meta__item {
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}

.works-meta__label {
  position: relative;
  width: 35px;
  color: var(--main-color);
  opacity: 0.5;
  font-family: var(--font-tt);
  font-size: calc(13 / 16 * 1rem);
  letter-spacing: 0.05em;
}

.works-meta__label::after {
  content: ":";
  position: absolute;
  right: 1px;
}

.works-meta__link {
  color: var(--main-color);
}

.works-meta__value {
  letter-spacing: 0.1em;
  font-family: var(--font-tt);
  font-size: calc(13 / 16 * 1rem);
  color: var(--main-color);
  opacity: 0.5;
}

.works-meta__text {
  padding-top: calc(16 / 16 * 1rem);
  color: var(--main-color);
  font-family: var(--primary-font-set);
  font-size: calc(13 / 16 * 1rem);
  color: var(--main-color);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .works_section {
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }

  .works__image_list {
    flex: 0 0 704px;
    height: auto;
    max-width: 704px;
  }

  .works__image {
    gap: 32px;
  }

  /* 右側：テキストセクション */
  .works-meta {
    flex: 0 0 300px;
    max-width: 300px;
    margin: 0;
    padding: 0;
    position: -webkit-sticky; /* Safari対応 */
    position: sticky;
    top: 100px; /* 上からどの位置で止めるか（ヘッダーがある場合はその高さ分） */
    height: auto; /* コンテンツに応じた高さ */
  }

  .works__title {
    margin-bottom: calc(32 / 16 * 1rem);
  }

  .works-meta__item {
    margin-bottom: 0;
  }

  .works-meta__text {
    font-size: calc(12 / 16 * 1rem);
    padding-top: calc(32 / 16 * 1rem);
  }

  .works-meta__description {
    padding-bottom: calc(16 / 16 * 1rem);
  }
}

@media screen and (min-width: 1023px) {
}
