@charset "UTF-8";

:root {
  --toc-z-backdrop: 1000;
  --toc-z-sheet: 1001;
  --toc-z-fab: 1002;
  --toc-sheet-radius: 16px;
  --toc-sheet-max-h: min(70vh, 520px);
  --toc-sheet-pad: 16px;
}

/* ==========================================================================
  Project Story Page style
============================================================================= */
.l-header.is-fixed {
  transform: translateY(-100%);
}

.l-header.is-fixed-enter {
  transform: translateY(0)
}

.l-header.is-hidden {
  opacity: 0;
  transform: translateY(-100%)
}


.l-main {
  background: url(../img_r2/environment/recruit_bg.webp) no-repeat center bottom  -41.66vw / 88.75% auto
}

/* Hero Section
============================================================================= */
.p-story__hero {
  overflow: hidden;
  position: relative;
  padding-block: 80px 106px;
}

.p-story__hero-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Main photo */
.p-story__hero-photo {
  max-width: 840px;
  max-height: 560px;
  position: absolute;
  right: 0;
  width: 58.333vw;
  z-index: 2;
}

.p-story__hero-photo img {
  border-radius: 3px;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-story__hero-details {
  margin-block-start: 40px;
  z-index: 10;
}

.p-story__hero-title {
  z-index: 4;
}

.p-story__hero-title .en {
  color: var(--color-green);
  display: block;
  font-family: var(--font3);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-margin-after: 30px;
  margin-block-end: 30px;
}

.p-story__hero-title .ttl {
  color: var(--color-green);
  font-family: var(--font2);
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-block-end: 80px;
  padding-block-end: 35px;
  position: relative;
  width: fit-content;
}

.p-story__hero-title .ttl::after {
  content: '';
  background-color: var(--color-green);
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Main heading (over photo) */
.p-story__hero-head .hdg {
  color: #fff;
  font-family: var(--font2);
  font-size: clamp(4rem, 4.167vw, 6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  -webkit-margin-after: 80px;
  margin-block-end: 80px;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.p-story__hero-head .txt {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

/* パンくずリスト */
.p-story__hero-breadcrumb {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font1);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
}

.p-story__hero-breadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-story__hero-breadcrumb a:hover {
  text-decoration: none;
}

.p-story__hero-breadcrumb .separator {
  display: inline-block;
  width: 6px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='9' viewBox='0 0 6 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.5L4.5 4.5L0.5 8.5' stroke='white' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-story__hero-breadcrumb .current {
  color: #acacac;
}

/* 共通：曲線 */
.p-story__hero-curve {
  position: absolute;
  /* width: 900px;
  height: 900px; */
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
}

/* 右上：背景側 */
.curve-top {
  top: 0;
  right: 25px;
  background-image: url("../img_r2/project-story/hero_line02.webp");
  z-index: 0;
  height: 100%;
  width: 31.4583vw;
}

.curve-top.is-active {
  animation: mv_line 1s 1s forwards;
}

/* 左下：写真に重ねる */
.curve-bottom {
  bottom: 0;
  left: 28.0138%;
  background-image: url("../img_r2/project-story/hero_line01.webp");
  background-position: left bottom;
  z-index: 0;
  height: 100%;
  width: 44.9816%;
}

.curve-bottom.is-active {
  animation: mv_line 1s 1.5s forwards;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .curve-bottom {
    left: -20px;
    bottom: 20%;
  }
}

@media screen and (max-width: 768px) {
  .curve-top {
    background-image: url("../img_r2/project-story/hero_curves_sp.webp");
    top: 0;
    left: 0;
    height: 80vh;
    width: 100%;
  }

  .curve-bottom {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .curve-top {
    background-size: cover;
    background-position: left center;
    height: 100%;
    top: 0;
    bottom: 0;
  }
  .curve-top.is-active {
    animation: mv_line_sp 1s 1.5s forwards;
  }
}

@keyframes mv_line {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .6;
  }
}

@keyframes mv_line_sp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .4;
  }
}

/* Member Section
============================================================================= */
.p-story__member {
  padding-block: 150px;
}

.p-story__member-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(9.0277vw, 130px);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-story__member-list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-story__member-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.p-story__member-fig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-padding-after: 30px;
  padding-block-end: 30px;
}

.p-story__member-photo {
  border: 4px solid var(--color-green);
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 200px;
  min-width: 200px;
  max-height: 280px;
  max-width: 280px;
  height: 19.444vw;
  -webkit-margin-after: -30px;
  margin-block-end: -30px;
  overflow: hidden;
  width: 19.444vw;
}

.p-story__member-photo img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-story__member-name {
  background-color: var(--color-green);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 5px;
  font-family: var(--font2);
  -webkit-margin-after: -30px;
  margin-block-end: -30px;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
}

.p-story__member-name .name {
  font-size: 2.8rem;
  line-height: 1;
}

.p-story__member-name .suffix {
  font-size: 2rem;
  line-height: 1;
}

.p-story__member-info {
  text-align: center;
}

.p-story__member-info p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: normal;
}

.p-story__member-info p+p {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}

.p-story__member-info .num {
  font-family: var(--font3);
  font-size: 1.6rem;
  font-weight: 400;
}

/* Separator
============================================================================= */
.p-story__separator {
  border: 0;
  -webkit-border-before: 1px solid #ddd;
  border-block-start: 1px solid #ddd;
  margin: 0;
}

/* Talk Content Section
============================================================================= */
.p-story__content {
  padding-block: 150px;
  position: relative;
}

.p-story__content>.l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

/* Talk Navigation (Sticky Sidebar)
============================================================================= */
.p-story__nav {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  width: 260px;
  align-self: flex-start;
}

.p-story__nav-title {
  font-size: 2rem;
  font-weight: bold;
  -webkit-margin-after: 50px;
  margin-block-end: 50px;
}

.p-story__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.p-story__nav-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-story__nav-item:hover {
  opacity: 0.7;
}

.p-story__nav-item .num {
  background-color: transparent;
  color: var(--color-base);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: var(--font3);
  font-size: 1.4rem;
  font-weight: 600;
  height: 20px;
  margin-block-start: 5px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  width: 36px;
}

.p-story__nav-item.is-active .num {
  background-color: #ff27f8;
  color: #fff;
}

.p-story__nav-item .txt {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* Talk Main Area
============================================================================= */
.p-story__talk {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

/* Theme Section
============================================================================= */
.p-story__theme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}

.p-story__theme+.p-story__theme {
  -webkit-margin-before: 150px;
  margin-block-start: 150px;
}

.p-story__theme-img {
  aspect-ratio: 16 / 9;
  border-radius: 3px;
  overflow: hidden;
}

.p-story__theme-img img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-story__theme-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: fit-content;
  position: relative;
}

.p-story__theme-head .num {
  font-family: var(--font3);
  font-size: 2rem;
  font-weight: 600;
  padding-block: 5px;
}

.p-story__theme-head .ttl {
  font-family: var(--font2);
  font-size: clamp(2.8rem, 2.639vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* Talk List (Conversation)
============================================================================= */
.p-story__talk-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 40px;
}

.p-story__talk-item {
  width: 100%;
}

/* Interviewer Question */
.p-story__talk-item.is-question .p-story__talk-bubble {
  background-color: #e0e0e0;
}

/* Member Response */
.p-story__talk-item.is-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-story__talk-item.is-member.is-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* Talk Member (Small Avatar)
============================================================================= */
.p-story__talk-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-padding-after: 30px;
  padding-block-end: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 130px;
}

.p-story__talk-photo {
  border: 4px solid var(--color-green);
  border-radius: 50%;
  height: 120px;
  -webkit-margin-after: -30px;
  margin-block-end: -30px;
  overflow: hidden;
  width: 120px;
}

.p-story__talk-photo img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-story__talk-name {
  background-color: var(--color-green);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--font2);
  -webkit-margin-after: -30px;
  margin-block-end: -30px;
  padding: 8px 10px;
  position: relative;
  z-index: 1;
}

.p-story__talk-name .name {
  font-size: 2rem;
  line-height: 1;
}

.p-story__talk-name .suffix {
  font-size: 1.6rem;
  line-height: 1;
}

.p-story__talk-name.is-all {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

/* Talk Bubble
============================================================================= */
.p-story__talk-bubble-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-story__talk-item.is-right .p-story__talk-bubble-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-story__talk-pointer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0;
  height: 0;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  border-style: solid;
  border-width: 10px 15px 10px 0;
  border-color: transparent rgba(255, 255, 255, 0.8) transparent transparent;
}

.p-story__talk-item.is-right .p-story__talk-pointer {
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
}

.p-story__talk-bubble {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding: 40px;
}

.p-story__talk-bubble p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-story__talk-bubble p+p {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.p-story__talk-bubble p.mt {
  -webkit-margin-before: 2em;
  margin-block-start: 2em;
}

/* Responsive
============================================================================= */
@media screen and (min-width: 768px) {
  .p-story__theme-head::before {
    background: url(../img_r2/project-story/theme_head_bg.svg) no-repeat left bottom / 100% auto;
    content: "";
    position: absolute;
    left: -10px;
    bottom: -3px;
    height: 100%;
    width: calc(100% + 140px);
    z-index: -1;
  }
}

@media screen and (min-width: 1280px) {
  .p-story__nav-button {
    display: none;
  }
}

@media screen and (max-width: 1279.98px) {
  .p-story__hero-inner {
    padding-inline: 20px;
  }

  .p-story__hero-title {
    left: 40px;
  }

  .p-story__hero-head {
    left: 40px;
  }

  .p-story__hero-photo {
    right: 20px;
    width: 60%;
    max-height: inherit;
    max-width: inherit;
  }

  .p-story__nav {
    display: none;
  }

  .p-story__content>.l-container {
    display: block;
  }

  .p-story__nav-button {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .p-story__nav-button.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  [hidden] {
    display: none !important;
  }

  /* 右下の丸ボタン */
  #toc-fab {
    position: fixed;
    right: 16px;
    bottom: 10px;
    z-index: var(--toc-z-fab);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-green);
    border: solid 1px var(--color-green);
    display: grid;
    place-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
  }

  #toc-fab::before {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3C!--!Font Awesome Free 7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--%3E%3Cpath d='M104 112C90.7 112 80 122.7 80 136L80 184C80 197.3 90.7 208 104 208L152 208C165.3 208 176 197.3 176 184L176 136C176 122.7 165.3 112 152 112L104 112zM256 128C238.3 128 224 142.3 224 160C224 177.7 238.3 192 256 192L544 192C561.7 192 576 177.7 576 160C576 142.3 561.7 128 544 128L256 128zM256 288C238.3 288 224 302.3 224 320C224 337.7 238.3 352 256 352L544 352C561.7 352 576 337.7 576 320C576 302.3 561.7 288 544 288L256 288zM256 448C238.3 448 224 462.3 224 480C224 497.7 238.3 512 256 512L544 512C561.7 512 576 497.7 576 480C576 462.3 561.7 448 544 448L256 448zM80 296L80 344C80 357.3 90.7 368 104 368L152 368C165.3 368 176 357.3 176 344L176 296C176 282.7 165.3 272 152 272L104 272C90.7 272 80 282.7 80 296zM104 432C90.7 432 80 442.7 80 456L80 504C80 517.3 90.7 528 104 528L152 528C165.3 528 176 517.3 176 504L176 456C176 442.7 165.3 432 152 432L104 432z'/%3E%3C/svg%3E") no-repeat center / contain;
    display: block;
    height: 20px;
    width: 20px;
  }

  /* クリック/タップのフィードバック */
  #toc-fab[aria-expanded="true"] {
    box-shadow: none;
    transform: translateY(1px);
  }

  #toc-fab[aria-expanded="true"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3C!--!Font Awesome Free 7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--%3E%3Cpath d='M183.1 137.4C170.6 124.9 150.3 124.9 137.8 137.4C125.3 149.9 125.3 170.2 137.8 182.7L275.2 320L137.9 457.4C125.4 469.9 125.4 490.2 137.9 502.7C150.4 515.2 170.7 515.2 183.2 502.7L320.5 365.3L457.9 502.6C470.4 515.1 490.7 515.1 503.2 502.6C515.7 490.1 515.7 469.8 503.2 457.3L365.8 320L503.1 182.6C515.6 170.1 515.6 149.8 503.1 137.3C490.6 124.8 470.3 124.8 457.8 137.3L320.5 274.7L183.1 137.4z'/%3E%3C/svg%3E");
  }

  /* 背面の暗幕 */
  #toc-backdrop {
    position: fixed;
    inset: 0;
    z-index: var(--toc-z-backdrop);
    height: 100dvh;
    background: rgba(0, 0, 0, 0.45);
  }

  /* シート本体（下から出る） */
  #toc-sheet {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 40px;
    z-index: var(--toc-z-sheet);
    background: #fff;
    border-radius: var(--toc-sheet-radius);
    box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.18);
    /* 高さ・スクロール */
    max-height: var(--toc-sheet-max-h);
    overflow: auto;
    /* セーフエリア（iPhoneの下端）対策 */
    padding: 30px 20px 40px;
    /* padding-bottom: 30px; */

    /* 出現アニメーション用（hidden解除時にスライドさせたいならJS/クラス併用推奨） */
  }

  /* 上部の閉じる行 */
  #toc-sheet > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  /* ×ボタン */
  #toc-sheet [data-toc-close] {
    width: 40px;
    height: 40px;
    border-radius: 9999px;

    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #111;

    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .toc-title {
    font-weight: bold;
    font-size: 1.6rem;
  }

  /* リスト */
  #toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* リストアイテム */
  #toc-list li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* リンク */
  #toc-list a {
    align-items: baseline;
    gap: 5px;
    display: flex;
    padding: 14px 8px;
    color: var(--color-base);
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1.4;
    /* タップ領域を広く */
    -webkit-tap-highlight-color: transparent;
  }

  #toc-list a.is-active .toc-num {
    background-color: #ff27f8;
    color: #fff;
  }

  #toc-list a .toc-txt {
    flex-basis: calc(100% - 2.7em - 12px);
    line-height: 1.8;
    text-align: justify;
  }

  /* ホバー/フォーカス */
  #toc-list a:hover {
    background: rgba(0, 0, 0, 0.04);
  }
  #toc-list a:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
    border-radius: 8px;
  }
}

@media screen and (max-width: 1023.98px) {
  .p-story__member-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .p-story__member-list {
    gap: 20px;
    margin-inline: auto;
  }

  .p-story__content {
    overflow-x: hidden;
  }

}

@media screen and (max-width: 767.98px) {
  .l-main {
    background-size: 130% auto;
    background-position: center bottom -30px;
  }

  /* Hero Section Mobile */
  .p-story__hero {
    min-height: auto;
    padding-block: 60px 80px;
  }

  .p-story__hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .p-story__hero-details {
    margin-block-start: 0;
  }

  .p-story__hero-photo {
    width: 100%;
    margin-inline: auto;
    position: static;
  }

  .p-story__hero-title {
    left: auto;
    -webkit-margin-after: 30px;
    margin-block-end: 30px;
    position: relative;
    top: auto;
    margin-block-start: 0;
  }

  .p-story__hero-title .ttl {
    font-size: 2.2rem;
    margin-block-end: 0;
    padding-block-end: 16px;
  }

  .p-story__hero-title .en {
    margin-block-end: 20px;
  }

  .p-story__hero-head {
    left: auto;
    margin-inline: 0;
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
    position: relative;
    top: auto;
  }

  .p-story__hero-head .hdg {
    font-size: 2.4rem;
    line-height: 1.5;
    -webkit-margin-after: 30px;
    margin-block-end: 30px;
  }

  .p-story__hero-head .txt {
    font-size: 1.4rem;
  }

  .p-story__hero-breadcrumb {
    bottom: -50px;
    right: 20px;
  }

  .p-story__member {
    padding-block: 80px;
  }

  .p-story__member-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 20px;
  }

  .p-story__member-item {
    flex-basis: calc(50% - 10px);
    gap: 20px;
  }

  .p-story__member-photo {
    height: 200px;
    width: 200px;
    min-width: inherit;
    min-height: inherit;
  }

  .p-story__member-name .name {
    font-size: 2rem;
  }

  .p-story__member-name .suffix {
    font-size: 1.4rem;
  }

  .p-story__member-info p {
    font-size: 1.2rem;
  }

  .p-story__member-info p+p {
    margin-block-start: 5px;
  }

  /* Talk Section Mobile */
  .p-story__content {
    padding-block: 80px;
  }

  .p-story__theme+.p-story__theme {
    -webkit-margin-before: 80px;
    margin-block-start: 80px;
  }

  .p-story__theme {
    gap: 30px;
  }

  .p-story__theme-head {
    background: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-inline-start: 0;
  }

  .p-story__theme-head .ttl {
    font-size: 2.4rem;
  }

  .p-story__theme-head .ttl>span {
    display: block;
    position: relative;
    width: fit-content;
  }

  .p-story__theme-head .ttl>span::before {
    background: url(../img_r2/project-story/theme_head_bg_sp.svg) no-repeat left bottom / 100% auto;
    content: "";
    width: calc(100% + 40px);
    height: 24px;
    position: absolute;
    left: -10px;
    bottom: 0;
    z-index: -1;
  }

  .p-story__theme-head .ttl,
  .p-story__theme-head .num {
    padding-inline-start: 16px;
  }

  .p-story__talk-list {
    gap: 24px;
  }

  .p-story__talk-item.is-member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .p-story__talk-item.is-member.is-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-story__talk-member {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-padding-after: 0;
    padding-block-end: 0;
    width: auto;
  }

  .p-story__talk-photo {
    height: 60px;
    width: 60px;
    -webkit-margin-after: 0;
    margin-block-end: 0;
  }

  .p-story__talk-name {
    -webkit-margin-after: 0;
    margin-block-end: 0;
    padding: 6px 10px;
  }

  .p-story__talk-name .name {
    font-size: 1.6rem;
  }

  .p-story__talk-name .suffix {
    font-size: 1.4rem;
  }

  .p-story__talk-bubble-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-story__talk-item.is-right .p-story__talk-bubble-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-story__talk-pointer {
    display: none;
  }

  .p-story__talk-bubble {
    border-radius: 20px;
    padding: 24px;
  }

  .p-story__talk-bubble p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575.98px) {
  .p-story__member-photo {
    height: 140px;
    width: 140px;
  }
}

/* Recruit Section =========================== */
.p-recruit {
  padding-block: 150px 120px;
}

.p-recruit .l-container {
  border-block-start: solid 1px #DDD;
  padding-block-start: 110px;
}

.c-recruit__hdg {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.c-recruit__hdg .en {
  font-family: var(--font3);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.7px;
}

.c-recruit__hdg .hdg {
  font-family: var(--font2);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.6px;
}

.p-recruit .txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.8px;
  margin-block-start: 60px;
}

@media screen and (max-width: 767.98px) {
  .p-recruit {
    padding-block: 80px 100px;
  }

  .c-recruit__hdg .hdg {
    font-size: 2.8rem;
  }

  .p-recruit .txt {
    font-size: 1.4rem;
    margin-block-start: 40px;
  }
}