@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100..900&display=swap');

:where(.ygs2026-main),
:where(.agri-main),
:where(.nav-local-06) {
  --board: 1200;
  --max: 1px;
}

@media (max-width: 768px) {
  :where(.ygs2026-main),
  :where(.agri-main),
  :where(.nav-local-06) {
    --board: 390;
    --max: 9999px;
  }
}


:where(.ygs2026-main) {
  --ygs-red: #dc1e37;
  --ygs-bg: #f4f4f4;
  --ygs-black: #000;
  --ygs-white: #fff;
  --ygs-gray: #858585;
  --ygs-content-width: clamp(0px, 10vw / var(--board) * 10 * 1110, var(--max) * 1110);
  --ygs-side-padding: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.ygs2026-main {
  padding-bottom: 0;
  background-color: var(--ygs-bg);
  color: var(--ygs-black);
  font-family: 'Noto Sans JP', sans-serif;
}

.ygs2026-main h1,
.ygs2026-main h2,
.ygs2026-main h3,
.ygs2026-main h4,
.ygs2026-main h5,
.ygs2026-main h6,
.ygs2026-main p {
  text-box: trim-both cap alphabetic;
}

/* ========================================
   Hero
   ======================================== */
.ygs2026-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* PC: グローバルヘッダー + ローカルナビ分を除いた残りビューポート（--ygs-top-chrome-offset は JS で可変） */
@media screen and (min-width: 769px) {
  .ygs2026-hero {
    min-height: clamp(0px, 10vw / var(--board) * 10 * 867, var(--max) * 867);
    max-height: none;
    height: calc(100vh - var(--ygs-top-chrome-offset, 0px));
  }
}

.ygs2026-hero__bg {
  position: absolute;
  background-color: var(--ygs-bg);

  inset: 0;
}

.ygs2026-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ygs2026-hero__bg::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, .15);

  inset: 0;
}

.ygs2026-hero__content {
  position: absolute;
  bottom: 50%;
  left: clamp(0px, 10vw / var(--board) * 10 * 88, var(--max) * 88);
  z-index: 2;
  color: var(--ygs-white);
  transform: translateY(50%);
}

.ygs2026-hero__title {
  margin: 0;
  letter-spacing: clamp(0px, 10vw / var(--board) * 10 * 19.2, var(--max) * 19.2);
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 96, var(--max) * 96);
  line-height: 1.5;
}

.ygs2026-hero__subtitle {
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 106, var(--max) * 106);
  letter-spacing: clamp(0px, 10vw / var(--board) * 10 * 3.84, var(--max) * 3.84);
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  line-height: 2;
}

/* ========================================
   Sticky Local Navigation
   ======================================== */
.ygs2025-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24) clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  background: rgba(0, 0, 0, .8);
}

.ygs2025-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--ygs-content-width);
}

.ygs2025-nav__logo {
  color: var(--ygs-white);
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18.666, var(--max) * 18.666);
  line-height: 1.8;
}

.ygs2025-nav__logo a {
  color: inherit;
  text-decoration: none;
}

.ygs2025-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ygs2025-nav__links li a {
  color: var(--ygs-gray);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.8;
  transition: color .2s;
}

.ygs2025-nav__links li.is-active a {
  color: var(--ygs-white);
}

.ygs2025-nav__links li a:hover {
  color: var(--ygs-white);
}

/* ========================================
   Shared Layout
   ======================================== */
.ygs2026-container {
  margin: 0 auto;
  padding: 0 clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  max-width: var(--ygs-content-width);
}

.ygs2026-section {
  padding: clamp(0px, 10vw / var(--board) * 10 * 168, var(--max) * 168) 0;
}

.ygs2026-section--white {
  background-color: var(--ygs-white);
}

/* ========================================
   Section Header
   ======================================== */
.ygs2026-section-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 80, var(--max) * 80);
}

.ygs2026-section-label {
  margin: 0;
  color: var(--ygs-red);
  font-weight: 500;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.6;
}

.ygs2026-section-title {
  margin: 0;
  padding: .1em 0;
  color: var(--ygs-black);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 100;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 96, var(--max) * 96);
  font-family: 'Barlow', sans-serif;
  line-height: 1;
}

/* ========================================
   NEWS
   ======================================== */
.ygs2026-news__icon {
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 80, var(--max) * 80);
}

.ygs2026-news__icon img {
  width: auto;
  height: clamp(0px, 10vw / var(--board) * 10 * 65, var(--max) * 65);
}

.ygs2026-tabs {
  display: flex;
  overflow-x: auto;
  gap: 0;
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 35, var(--max) * 35);
  border-bottom: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid rgba(0, 0, 0, .1);
}

.ygs2026-tabs__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  height: clamp(0px, 10vw / var(--board) * 10 * 48, var(--max) * 48);
  border: none;
  background: none;
  color: var(--ygs-black);
  white-space: nowrap;
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.8;
  cursor: pointer;
}

.ygs2026-tabs__item.is-active {
  font-weight: 700;
}

.ygs2026-tabs__item.is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2);
  background: var(--ygs-red);
}

.ygs2026-tab-panel {
  display: none;
}

.ygs2026-tab-panel.is-active {
  display: block;
}

.ygs2026-article-list {
  margin: 0;
  padding: 0 clamp(0px, 10vw / var(--board) * 10 * 21, var(--max) * 21);
  list-style: none;
}

.ygs2026-article {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 21, var(--max) * 21);
  padding: clamp(0px, 10vw / var(--board) * 10 * 21, var(--max) * 21) 0;
}

.ygs2026-article + .ygs2026-article {
  border-top: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid rgba(0, 0, 0, .1);
}

.ygs2026-article__title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.8;
}

.ygs2026-article__title a {
  color: var(--ygs-black);
  text-decoration: none;
}

.ygs2026-article__title a:hover {
  text-decoration: underline;
}

.ygs2026-article__meta {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
}

.ygs2026-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(0px, 10vw / var(--board) * 10 * 7, var(--max) * 7);
  height: clamp(0px, 10vw / var(--board) * 10 * 22.4, var(--max) * 22.4);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 9999, var(--max) * 9999);
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 11.2, var(--max) * 11.2);
  line-height: 1.8;
}

.ygs2026-badge--default {
  border: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid rgba(0, 0, 0, .2);
  background: rgba(0, 0, 0, .05);
  color: rgba(0, 0, 0, .5);
}

.ygs2026-badge--warning {
  border: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid rgba(206, 126, 0, .5);
  background: rgba(206, 126, 0, .05);
  color: #ce7e00;
}

.ygs2026-article__date {
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 11.2, var(--max) * 11.2);
  line-height: 1.8;
}

.ygs2026-news__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 35, var(--max) * 35);
}

/* ========================================
   Buttons
   ======================================== */
.ygs2026-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 7, var(--max) * 7);
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  cursor: pointer;
  transition: opacity .2s;
}

.ygs2026-btn:hover {
  opacity: .8;
}

.ygs2026-btn--primary {
  padding: 0 clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  min-width: clamp(0px, 10vw / var(--board) * 10 * 192, var(--max) * 192);
  width: fit-content;
  height: clamp(0px, 10vw / var(--board) * 10 * 48, var(--max) * 48);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 9999, var(--max) * 9999);
  background: var(--ygs-red);
  box-shadow: 0 clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2) rgba(0, 0, 0, .05);
  color: var(--ygs-white) !important;
  text-decoration: none !important;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
}

.ygs2026-btn--secondary {
  padding: 0 clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  height: clamp(0px, 10vw / var(--board) * 10 * 42, var(--max) * 42);
  border: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid rgba(0, 0, 0, .2);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 5, var(--max) * 5);
  background: var(--ygs-white);
  box-shadow: 0 clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2) rgba(0, 0, 0, .05);
  color: var(--ygs-black);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
}

.ygs2026-btn--secondary-sm {
  padding: 0 clamp(0px, 10vw / var(--board) * 10 * 12.4, var(--max) * 12.4);
  height: clamp(0px, 10vw / var(--board) * 10 * 37.2, var(--max) * 37.2);
  border: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid rgba(0, 0, 0, .2);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 5, var(--max) * 5);
  background: var(--ygs-white);
  box-shadow: 0 clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2) rgba(0, 0, 0, .05);
  color: var(--ygs-red);
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 12.444, var(--max) * 12.444);
}


.ygs2026-btn__suffix {
  display: inline-block;
  margin-left: clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2);
  width: .5em;
  height: .5em;
  border: 2px solid;
  border-top: 0;
  border-left: 0;
  transform: rotate(-45deg);
}

/* ========================================
   ABOUT US
   ======================================== */

.ygs2026-about {
  padding-bottom: 0;
}

.ygs2026-about__desc {
  margin: 0;
  max-width: clamp(0px, 10vw / var(--board) * 10 * 922, var(--max) * 922);
  letter-spacing: clamp(0px, 10vw / var(--board) * 10 * .8, var(--max) * .8);
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  line-height: 1.8;
}

.ygs2026-about__video-wrap {
  position: relative;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  padding: 0 var(--ygs-side-padding);
}

.ygs2026-about__video-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
}

.ygs2026-about__video-inner iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ygs2026-about__video-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ygs2026-about__video-link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.ygs2026-about__video-link:focus-visible {
  outline: 3px solid var(--ygs-red);
  outline-offset: 4px;
}

.ygs2026-about__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(0px, 10vw / var(--board) * 10 * 100, var(--max) * 100);
  height: clamp(0px, 10vw / var(--board) * 10 * 100, var(--max) * 100);
  border: none;
  border-radius: 50%;
  background: var(--ygs-red);
  cursor: pointer;
  transition: transform .2s;
  transform: translate(-50%, -50%);
}

.ygs2026-about__video-link:hover .ygs2026-about__play-btn,
.ygs2026-about__video-link:focus-visible .ygs2026-about__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.ygs2026-about__play-btn::after {
  content: '';
  display: block;
  margin-left: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  width: 0;
  height: 0;
  border-width: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14) 0 clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14) clamp(0px, 10vw / var(--board) * 10 * 22, var(--max) * 22);
  border-style: solid;
  border-color: transparent transparent transparent var(--ygs-white);
}

/* ========================================
   BUSINESS FIELD
   ======================================== */
.ygs2026-business__items {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
}

.ygs2026-business__item {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.ygs2026-business__item--reverse {
  flex-direction: row-reverse;
}

.ygs2026-business__item-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  min-width: 0;
}

.ygs2026-business__item-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.ygs2026-business__item-number {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  font-family: 'Barlow', sans-serif;
  line-height: 1.5;

  font-feature-settings: 'pkna', 'palt', 'pwid';
  text-box: trim-both cap alphabetic;
}

.ygs2026-business__item-number small {
  margin-left: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  color: #9d9d9d;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
}

.ygs2026-business__item-name {
  margin: 0;
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  line-height: 1.6;

  text-box: trim-both cap alphabetic;
}

.ygs2026-business__item-desc {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 22, var(--max) * 22);
  line-height: 1.5;

  text-box: trim-both cap alphabetic;
}

.ygs2026-business__item-image {
  overflow: hidden;
  flex-shrink: 0;
  max-width: 60%;
  width: clamp(0px, 10vw / var(--board) * 10 * 733, var(--max) * 733);
  height: clamp(0px, 10vw / var(--board) * 10 * 412, var(--max) * 412);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
}

.ygs2026-business__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   PROJECT
   ======================================== */
.ygs2026-project__content {
  display: flex;
  align-items: stretch;
  gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.ygs2026-project__text {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: clamp(0px, 10vw / var(--board) * 10 * 80, var(--max) * 80);
  padding: clamp(0px, 10vw / var(--board) * 10 * 80, var(--max) * 80) 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 356, var(--max) * 356);
  border-top: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid var(--ygs-red);
  border-bottom: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid var(--ygs-red);
}

.ygs2026-project__name {
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  font-family: 'Barlow', sans-serif;
  line-height: 1.3;
}

.ygs2026-project__desc-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.ygs2026-project__subtitle {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  line-height: 1.8;
}

.ygs2026-project__desc {
  margin: 0;
  letter-spacing: clamp(0px, 10vw / var(--board) * 10 * .64, var(--max) * .64);
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.8;
}

.ygs2026-project__image {
  overflow: hidden;
  flex: 1;
  min-height: clamp(0px, 10vw / var(--board) * 10 * 600, var(--max) * 600);
  border-radius: 0;
}

.ygs2026-project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Info Section (YGSニュース / YGS採用情報)
   ======================================== */
.ygs2026-info-section {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 104, var(--max) * 104);
}

.ygs2026-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
}

.ygs2026-info-title {
  display: flex;
  align-items: center;
  margin: 0;
  min-height: clamp(0px, 10vw / var(--board) * 10 * 48, var(--max) * 48);
  color: var(--ygs-red);
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  line-height: 1.6;
}

.ygs2026-news-cards {
  display: flex;
  gap: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
}

.ygs2026-news-card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  min-height: clamp(0px, 10vw / var(--board) * 10 * 250, var(--max) * 250);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  background: var(--ygs-white);
  color: inherit;
  color: inherit !important;
  text-decoration: none !important;
  transition: box-shadow .2s;
}

.ygs2026-news-card::after {
  content: '';
  position: absolute;
  right: clamp(0px, 10vw / var(--board) * 10 * 25, var(--max) * 25);
  bottom: clamp(0px, 10vw / var(--board) * 10 * 25, var(--max) * 25);
  width: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  height: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  border: 1px solid;
  border-top: 0;
  border-left: 0;
  transform: rotate(-45deg);
}

.ygs2026-news-card:hover {
  box-shadow: 0 clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4) clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12) rgba(0, 0, 0, .1);
}

.ygs2026-news-card__body {
  display: flex;
  overflow: hidden;
  gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
}

.ygs2026-news-card__thumb {
  flex-shrink: 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 200, var(--max) * 200);
  height: clamp(0px, 10vw / var(--board) * 10 * 150, var(--max) * 150);
}

.ygs2026-news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ygs2026-news-card__info {
  flex: 1;
  padding-top: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  min-width: 0;
}

.ygs2026-news-card__vol {
  margin: 0 0 clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  line-height: 1.8;
}

.ygs2026-news-card__list {
  margin: 0;
  padding-left: clamp(0px, 10vw / var(--board) * 10 * 21, var(--max) * 21);
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.8;
}

.ygs2026-news-card__list li {
  position: relative;
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2);
}

.ygs2026-news-card__list li::before {
  content: '・';
  position: absolute;
  left: -1em;
}

.ygs2026-news-card__footer {
  display: flex;
  justify-content: flex-end;
}

/* ========================================
   Recruit Card
   ======================================== */
.ygs2026-recruit-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: clamp(0px, 10vw / var(--board) * 10 * 370, var(--max) * 370);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  background: var(--ygs-white);
  color: inherit !important;
  text-decoration: none !important;
  transition: box-shadow .2s;

  grid-template-columns: 1fr 1fr;
}

.ygs2026-recruit-card::after {
  content: '';
  position: absolute;
  right: clamp(0px, 10vw / var(--board) * 10 * 25, var(--max) * 25);
  bottom: clamp(0px, 10vw / var(--board) * 10 * 25, var(--max) * 25);
  width: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  height: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  border: 2px solid;
  border-top: 0;
  border-left: 0;
  transform: rotate(-45deg);
}

.ygs2026-recruit-card:hover {
  box-shadow: 0 clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4) clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12) rgba(0, 0, 0, .1);
}

.ygs2026-recruit-card__image {
  overflow: hidden;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10) 0 0 clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
}

.ygs2026-recruit-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ygs2026-recruit-card__text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.ygs2026-recruit-card__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  line-height: 1.5;

  font-feature-settings: 'pwid', 'palt', 'pkna';
}

/* ========================================
   Scroll Fade-in  ( data-fade )
   ======================================== */
[data-fade] {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.33, 1, .68, 1), transform .8s cubic-bezier(.33, 1, .68, 1);
  transform: translateY(clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20));

  will-change: opacity, transform;
}

.ygs2026-hero__content[data-fade] {
  transition-delay: .4s;
  transition-duration: 1s;
  transform: translateY(clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30));
}

[data-fade].is-visible {
  opacity: 1;
  transform: none;
}

/* ========================================
   Scroll Fade-in Title  ( data-fade-title )
   clip-path で左から右にフェードしながら表示
   + グラデーション（#DC1E37 → #000）を左→右に走らせる（Solvvy .u-pc 系）
   ======================================== */
[data-fade-title] {
  background-image: linear-gradient(90deg, #000 0%, #000 100%);
  background-position: 100% 0;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  clip-path: inset(0 100% 0 0);
  color: transparent;
  opacity: 0;
  transition: opacity 1.5s .35s cubic-bezier(.33, 1, .68, 1),
  clip-path 4s .35s cubic-bezier(.33, 1, .68, 1),
  background-position 5s .35s cubic-bezier(.33, 1, .68, 1);

  -webkit-text-fill-color: transparent;
}

[data-fade-title].is-visible {
  background-position: 0 0;
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

@media (max-width: 768px) {
  [data-fade-title] {
    transition: opacity 1.5s .35s cubic-bezier(.33, 1, .68, 1),
    clip-path 2s .35s cubic-bezier(.33, 1, .68, 1),
    background-position 2s .35s cubic-bezier(.33, 1, .68, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-fade-title] {
    background-position: 0 0;
    clip-path: none;
    opacity: 1;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-fade] {
    opacity: 1;
    transition: none;
    transform: none;
  }
}

/* ========================================
   Bottom Background
   ======================================== */
.ygs2026-bottom-bg {
  overflow: hidden;
  height: clamp(0px, 10vw / var(--board) * 10 * 560, var(--max) * 560);
}

.ygs2026-bottom-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Utilities
   ======================================== */
.ygs2026-pc-none {
  display: none;
}

.ygs2026-mt0 {
  margin-top: 0;
}


@media (hover: hover) {
  .ygs2026-btn--secondary-sm:hover {
    background-color: var(--black-5-opaque);
    text-decoration: none !important;
  }

  .ygs2026-news-card:hover {
    box-shadow: none !important;
  }
}





/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
  .ygs2026-business__item-image {
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .ygs2026-hero {
    min-height: 0;
    max-height: none;
    height: calc(100vh - var(--ygs-top-chrome-offset, 0px));
    height: calc(100dvh - var(--ygs-top-chrome-offset, 0px));
  }

  .ygs2026-hero__title {
    letter-spacing: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
    font-size: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  }

  .ygs2026-hero__subtitle {
    margin-top: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
    letter-spacing: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1);
    font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  }

  .ygs2026-hero__content {
    right: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
    bottom: clamp(0px, 10vw / var(--board) * 10 * 120, var(--max) * 120);
    left: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  }

  .ygs2026-section-title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 48, var(--max) * 48);
  }

  .ygs2026-section-header {
    margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  }

  .ygs2025-nav {
    padding: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16) clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  }

  .ygs2025-nav__inner {
    flex-direction: column;
    gap: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
    width: 100%;
  }

  .ygs2025-nav__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  }

  .ygs2025-nav__links li a {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  }

  .ygs2026-about__desc {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  }

  .ygs2026-about__video-wrap {
    margin-top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    padding: 0 clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  }

  .ygs2026-business__item,
  .ygs2026-business__item--reverse {
    flex-direction: column;
  }

  .ygs2026-business__item-image {
    max-width: 100%;
    width: 100%;
    height: clamp(0px, 10vw / var(--board) * 10 * 260, var(--max) * 260);
  }

  .ygs2026-business__item-name {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  }

  .ygs2026-business__item-desc {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  }

  .ygs2026-project__content {
    flex-direction: column;
  }

  .ygs2026-project__text {
    gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    padding: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40) 0;
    min-height: auto;
    width: 100%;
  }

  .ygs2026-project__name {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  }

  .ygs2026-project__image {
    min-height: clamp(0px, 10vw / var(--board) * 10 * 300, var(--max) * 300);
    border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  }

  .ygs2026-news-cards {
    flex-direction: column;
  }

  .ygs2026-recruit-card {
    grid-template-columns: 1fr;
  }

  .ygs2026-recruit-card__image {
    height: clamp(0px, 10vw / var(--board) * 10 * 200, var(--max) * 200);
    border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) 0 0;
  }

  .ygs2026-recruit-card__title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  }

  .ygs2026-section {
    padding: clamp(0px, 10vw / var(--board) * 10 * 60, var(--max) * 60) 0;
  }

  .ygs2026-bottom-bg {
    height: clamp(0px, 10vw / var(--board) * 10 * 300, var(--max) * 300);
  }

  .ygs2026-pc-none {
    display: block;
  }

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

  /* ============================================================
     Local Nav SP (shared)
     ============================================================ */
  .nav-local-06 {
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
  }

  .nav-local-06__inner {
    flex-wrap: nowrap !important;
  }

  .nav-local-06__logo {
    overflow: hidden;
    min-width: 0 !important;
  }

  .nav-local-06__logo img {
    max-width: 100%;
    width: auto;
    height: clamp(0px, 10vw / var(--board) * 10 * 13, var(--max) * 13);
  }

  /* --- Mobile Menu Overlay SP --- */
  .fc-mobile-nav {
    position: fixed;
    top: clamp(0px, 10vw / var(--board) * 10 * 52, var(--max) * 52);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 199;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: clamp(0px, 10vw / var(--board) * 10 * 50, var(--max) * 50);
    background: #1a1a1a;
  }

  .fc-mobile-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .fc-mobile-nav__item {
    display: block;
    padding: clamp(0px, 10vw / var(--board) * 10 * 17, var(--max) * 17) clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.4;
  }

  .fc-mobile-nav__item--sub {
    padding-left: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    font-weight: 400;
  }

  .fc-mobile-nav__item:active {
    background: rgba(255, 255, 255, .08);
  }

  .nav-local-06.fc-mobile-nav-open .nav-local-06__inner > button[type='button']::after {
    transform: rotate(-135deg) translateY(clamp(var(--max) * -2, 10vw / var(--board) * 10 * -2, 0px)) !important;
  }

  /* ============================================================
     YGS トップ（index）スマホ — PC レイアウトは変更しない
     ============================================================ */
  .ygs2026-main--index .ygs2026-container {
    padding-right: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
    padding-left: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  }

  /* --- Hero（index）: 高さは共通の SP calc（.ygs2026-hero）に従う --- */

  .ygs2026-main--index .ygs2026-hero__content {
    top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    right: auto;
    bottom: auto;
    left: clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30);
    max-width: calc(100% - clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30));
    transform: none;
  }

  .ygs2026-main--index .ygs2026-hero__title {
    letter-spacing: clamp(0px, 10vw / var(--board) * 10 * 9.6, var(--max) * 9.6);
    font-weight: 300;
    font-size: clamp(0px, 10vw / var(--board) * 10 * 48, var(--max) * 48);
    line-height: 1.5;
  }

  .ygs2026-main--index .ygs2026-hero__subtitle {
    margin-top: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
    letter-spacing: clamp(0px, 10vw / var(--board) * 10 * 2.16, var(--max) * 2.16);
    font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
    line-height: 2;
  }

  /* 2行構成：中間の br のみ非表示 */
  .ygs2026-main--index .ygs2026-hero__subtitle br:nth-of-type(2) {
    display: none;
  }

  /* --- Section header --- */
  .ygs2026-main--index .ygs2026-section-header {
    gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
    margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  }

  .ygs2026-main--index .ygs2026-about .ygs2026-section-title,
  .ygs2026-main--index .ygs2026-business .ygs2026-section-title,
  .ygs2026-main--index .ygs2026-section--white .ygs2026-section-title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 72, var(--max) * 72);
    line-height: 1;
  }

  .ygs2026-main--index .ygs2026-section {
    padding: clamp(0px, 10vw / var(--board) * 10 * 104, var(--max) * 104) 0;
  }

  /* --- NEWS --- */
  .ygs2026-main--index .ygs2026-news-tabs {
    width: 100%;
  }

  .ygs2026-main--index .ygs2026-news__icon {
    margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  }

  .ygs2026-main--index .ygs2026-news__icon .ygs2026-section-title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 72, var(--max) * 72);
  }

  /* --- ABOUT US --- */
  .ygs2026-main--index .ygs2026-about__desc {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  }

  .ygs2026-main--index .ygs2026-about__video-wrap {
    padding-right: 0;
    padding-left: 0;
  }

  .ygs2026-main--index .ygs2026-about__video-inner {
    border-radius: 0;
  }

  /* --- BUSINESS FIELD --- */
  .ygs2026-main--index .ygs2026-business {
    padding-bottom: clamp(0px, 10vw / var(--board) * 10 * 104, var(--max) * 104);
  }

  .ygs2026-main--index .ygs2026-business__items {
    gap: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  }

  .ygs2026-main--index .ygs2026-business__item,
  .ygs2026-main--index .ygs2026-business__item--reverse {
    gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  }

  .ygs2026-main--index .ygs2026-business__item-text {
    gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    width: 100%;
  }

  .ygs2026-main--index .ygs2026-business__item-content {
    gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  }

  .ygs2026-main--index .ygs2026-business__item-number {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  }

  .ygs2026-main--index .ygs2026-business__item-number small {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  }

  .ygs2026-main--index .ygs2026-business__item-name {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 36, var(--max) * 36);
  }

  .ygs2026-main--index .ygs2026-business__item-image {
    order: -1;
    min-height: 0;
    height: auto;
    aspect-ratio: 342 / 192;
    border-radius: clamp(0px, 10vw / var(--board) * 10 * 3.73, var(--max) * 3.73);
  }

  .ygs2026-main--index .ygs2026-business__item-image img {
    height: auto;
  }

  .ygs2026-main--index .ygs2026-business__item-desc {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 22, var(--max) * 22);
    line-height: 1.5;
  }

  .ygs2026-main--index .ygs2026-btn--primary {
    min-width: clamp(0px, 10vw / var(--board) * 10 * 192, var(--max) * 192);
    max-width: none;
    width: auto;
  }

  /* --- PROJECT --- */
  .ygs2026-main--index .ygs2026-project__content {
    padding: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40) 0;
    border-top: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid var(--ygs-red);
    border-bottom: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid var(--ygs-red);
  }

  .ygs2026-main--index .ygs2026-project__text {
    gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    padding: 0;
    width: 100%;
    border-top: none;
    border-bottom: none;
  }

  .ygs2026-main--index .ygs2026-project__name {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    line-height: 1.3;
  }

  .ygs2026-main--index .ygs2026-project__desc-wrap {
    align-items: flex-start;
    gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  }

  .ygs2026-main--index .ygs2026-project__image {
    order: -1;
    min-height: clamp(0px, 10vw / var(--board) * 10 * 287, var(--max) * 287);
    border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  }

  /* --- YGSニュース / YGS採用情報 --- */
  .ygs2026-main--index .ygs2026-info-section {
    gap: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  }

  .ygs2026-main--index .ygs2026-info-header {
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  }

  .ygs2026-main--index .ygs2026-news-cards {
    gap: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  }

  .ygs2026-main--index .ygs2026-news-card {
    padding: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
    padding-bottom: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    min-height: 0;
  }

  .ygs2026-main--index .ygs2026-news-card__body {
    flex-direction: column;
    gap: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  }

  .ygs2026-main--index .ygs2026-news-card__thumb {
    max-height: none;
    width: 100%;
    height: auto;
  }

  .ygs2026-main--index .ygs2026-news-card__thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  }

  .ygs2026-main--index .ygs2026-news-card__info {
    padding: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4) clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) 0;
  }

  .ygs2026-main--index .ygs2026-news-card__vol {
    font-weight: 700;
    font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  }

  .ygs2026-main--index .ygs2026-news-card__list {
    display: none;
  }

  .ygs2026-main--index .ygs2026-news-card__info::after {
    content: attr(data-sp-summary);
    display: block;
    font-weight: 400;
    font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
    line-height: 1.8;
  }

  .ygs2026-main--index .ygs2026-recruit-card {
    grid-template-columns: 1fr;
  }

  .ygs2026-main--index .ygs2026-recruit-card__image {
    height: clamp(0px, 10vw / var(--board) * 10 * 228, var(--max) * 228);
    border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) 0 0;
  }

  .ygs2026-main--index .ygs2026-recruit-card__text {
    padding: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64) clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  }

  .ygs2026-main--index .ygs2026-recruit-card__title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  }
}

/* --- Mobile Nav (hidden by default on all viewports) --- */
.fc-mobile-nav {
  display: none;
}

/* ============================================================
   Local Nav / Submenu (shared, all viewports)
   ============================================================ */
.nav-local-06__list {
  padding: 0 !important;
}

.nav-local-06__list ul {
  margin-left: auto;
}

.nav-local-06__list > ul > li > a {
  font-size: 14px;
}

a.fc-nav-has-submenu {
  cursor: default !important;
}


.fc-nav-submenu.is-visible {
  display: block;
}

.fc-nav-submenu > li > a {
  display: block;
  padding: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
}

.fc-nav-submenu > li > a:hover {
  text-decoration: underline !important;
}

/* ============================================================
   Business Category Top – Image Hero
   ============================================================ */
.ygs2026-biz-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(0px, 10vw / var(--board) * 10 * 400, var(--max) * 400);
}

.ygs2026-biz-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   Business Category Top – Intro
   ============================================================ */
.ygs2026-biz-intro {
  display: flex;
  align-items: flex-start;
  gap: clamp(0px, 10vw / var(--board) * 10 * 87, var(--max) * 87);
}

.ygs2026-biz-intro__title {
  flex: 1;
  margin: 0;
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  line-height: 1.6;
}

.ygs2026-biz-intro__right {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  width: clamp(0px, 10vw / var(--board) * 10 * 639, var(--max) * 639);
}

.ygs2026-biz-intro__subtitle {
  margin: 0;
  color: var(--ygs-red);
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  line-height: 1.5;
}

.ygs2026-biz-intro__desc {
  margin: 0;
  letter-spacing: clamp(0px, 10vw / var(--board) * 10 * .64, var(--max) * .64);
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.8;
}

/* ============================================================
   Business Category Top – Business Scope
   ============================================================ */
.ygs2026-biz-scope__cards {
  display: grid;
  gap: clamp(0px, 10vw / var(--board) * 10 * 21, var(--max) * 21);

  grid-template-columns: repeat(3, 1fr);
}

.ygs2026-biz-scope__card {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  min-height: clamp(0px, 10vw / var(--board) * 10 * 416, var(--max) * 416);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  background: var(--ygs-white);
}

.ygs2026-biz-scope__card-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  padding: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24) clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
}

.ygs2026-biz-scope__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(0px, 10vw / var(--board) * 10 * 80, var(--max) * 80);
  height: clamp(0px, 10vw / var(--board) * 10 * 80, var(--max) * 80);
}

.ygs2026-biz-scope__card-icon img {
  max-width: 100%;
  max-height: 100%;
}

.ygs2026-biz-scope__card-title {
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  line-height: 1.8;
}

.ygs2026-biz-scope__card-desc {
  margin: 0;
  letter-spacing: clamp(0px, 10vw / var(--board) * 10 * .64, var(--max) * .64);
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.8;
}

/* ============================================================
   Business Category Top – CTA Banner
   ============================================================ */
.ygs2026-biz-cta {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  height: clamp(0px, 10vw / var(--board) * 10 * 168, var(--max) * 168);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  text-decoration: none;
  transition: opacity .2s;
}

.ygs2026-biz-cta:hover {
  opacity: .9;
}

.ygs2026-biz-cta__bg {
  position: absolute;

  inset: 0;
}

.ygs2026-biz-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ygs2026-biz-cta__bg::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, .6);

  inset: 0;
}

.ygs2026-biz-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  padding: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64) clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.ygs2026-biz-cta__text {
  margin: 0;
  color: var(--ygs-white);
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  line-height: 1.5;
}

.ygs2026-biz-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  height: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  color: var(--ygs-white);
}

.ygs2026-biz-cta__arrow::after {
  content: '';
  display: block;
  width: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  height: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  border: 2px solid var(--ygs-white);
  border-top: 0;
  border-left: 0;
  transform: rotate(-45deg);
}

/* ============================================================
   Business Category Top – Bottom Image
   ============================================================ */
.ygs2026-biz-bottom-bg {
  overflow: hidden;
  height: clamp(0px, 10vw / var(--board) * 10 * 560, var(--max) * 560);
}

.ygs2026-biz-bottom-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Business Category Top – Responsive
   ============================================================ */
@media (max-width: 768px) {
  .ygs2026-biz-hero {
    height: clamp(0px, 10vw / var(--board) * 10 * 240, var(--max) * 240);
  }

  .ygs2026-biz-intro {
    flex-direction: column;
    gap: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  }

  .ygs2026-biz-intro__title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 36, var(--max) * 36);
  }

  .ygs2026-biz-intro__right {
    gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
    width: 100%;
  }

  .ygs2026-biz-intro__subtitle {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 22, var(--max) * 22);
  }

  .ygs2026-biz-scope__cards {
    grid-template-columns: 1fr;
  }

  .ygs2026-biz-scope__card {
    min-height: auto;
  }

  .ygs2026-biz-cta {
    min-height: clamp(0px, 10vw / var(--board) * 10 * 120, var(--max) * 120);
    height: auto;
  }

  .ygs2026-biz-cta__text {
    text-align: center;
    white-space: normal;
    font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  }

  .ygs2026-biz-cta__content {
    flex-direction: column;
    gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
    padding: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32) clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  }

  .ygs2026-biz-bottom-bg {
    height: clamp(0px, 10vw / var(--board) * 10 * 300, var(--max) * 300);
  }
}


@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}


/* ================================================================
   Project page  ( .ygs2026-main--project )
   ================================================================ */

.ygs2026-main--project {
  padding-bottom: 0;
}

/* --- Hero --- */
.ygs2026-project-hero {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  max-width: clamp(0px, 10vw / var(--board) * 10 * 1440, var(--max) * 1440);
  width: 100%;
  aspect-ratio: 1440 / 642;
}

.ygs2026-project-hero__bg {
  width: 100%;
  height: 100%;
}

.ygs2026-project-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
}

@media (max-width: 768px) {
  .ygs2026-project-hero__bg img {
    object-position: center right;
  }
}


.ygs2026-project-hero__overlay {
  position: absolute;
  top: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  left: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 96, var(--max) * 96);
  line-height: 1.5;
}

.ygs2026-project-hero__line1,
.ygs2026-project-hero__line2,
.ygs2026-project-hero__line3,
.ygs2026-project-hero__line4,
.ygs2026-project-hero__line5,
.ygs2026-project-hero__line6 {
  margin: 0;
  padding: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  background-color: #fff;
  text-transform: uppercase;
  font-weight: 100;
  font-family: 'Barlow', sans-serif;
}

.ygs2026-project-hero__line3,
.ygs2026-project-hero__line4,
.ygs2026-project-hero__line5,
.ygs2026-project-hero__line6 {
  display: none;
}


/* --- Intro + video --- */
.ygs2026-project-detail {
  padding-top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40) !important;
  padding-bottom: 0 !important;
  background-color: var(--ygs-bg);
}

.ygs2026-project-detail__intro {
  margin: 0 auto;
  max-width: clamp(0px, 10vw / var(--board) * 10 * 733, var(--max) * 733);
}

.ygs2026-project-detail__label {
  margin: 0 0 clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  color: var(--ygs-red);
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  line-height: 1.5;
}

.ygs2026-project-detail__label span {
  margin: 0 .8em;
  font-size: .6em;
}

.ygs2026-project-detail__title {
  margin: 0 0 clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  line-height: 1.5;
}

.ygs2026-project-detail__lead {
  margin: 0;
  letter-spacing: .04em;
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.8;
}

.ygs2026-project-detail__lead:last-child {
  margin-bottom: 0;
}

.ygs2026-project-detail__video {
  margin: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40) auto 0;
  max-width: clamp(0px, 10vw / var(--board) * 10 * 733, var(--max) * 733);
}

.ygs2026-project-detail__video .ygs2026-about__video-inner {
  margin: 0;
}


/* --- Gallery --- */
.ygs2026-project-gallery-section {
  padding-top: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64) !important;
}

.ygs2026-project-gallery {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
}

.ygs2026-project-gallery__item {
  margin: 0;
}

.ygs2026-project-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
}

.ygs2026-project-detail__back {
  display: flex;
  justify-content: center;
  margin: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64) 0 0;
}

.ygs2026-project-detail__back .ygs2026-btn--product {
  width: clamp(0px, 10vw / var(--board) * 10 * 192, var(--max) * 192) !important;
  height: clamp(0px, 10vw / var(--board) * 10 * 48, var(--max) * 48) !important;
  color: #000 !important;
  text-decoration: none !important;
}


/* --- Support --- */
.ygs2026-project-support {
  background-color: var(--ygs-bg);
}

.ygs2026-project-support__title {
  margin: 0 0 clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  line-height: 1.6;
}

.ygs2026-project-support__links {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  max-width: clamp(0px, 10vw / var(--board) * 10 * 1110, var(--max) * 1110);
}

.ygs2026-project-support__item {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  padding: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24) clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  border: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid rgba(0, 0, 0, .12);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  background: var(--ygs-white);
  color: var(--ygs-black) !important;
  text-decoration: none !important;
  transition: box-shadow .2s;
}

.ygs2026-project-support__item:hover {
  box-shadow: 0 clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4) clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16) rgba(0, 0, 0, .08);
}

.ygs2026-project-support__icon {
  flex-shrink: 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  height: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  border: clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2) solid var(--ygs-red);
  border-radius: 50%;
}

.ygs2026-project-support__icon::after {
  content: '';
  display: block;
  margin: clamp(0px, 10vw / var(--board) * 10 * 6, var(--max) * 6) auto 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  height: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  border-radius: 50%;
  background: var(--ygs-red);
}

.ygs2026-project-support__icon--mail {
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
}

.ygs2026-project-support__icon--mail::after {
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 5, var(--max) * 5);
  width: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  height: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2);
}

.ygs2026-project-support__icon--faq::after {
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
}

.ygs2026-project-support__label {
  flex: 1;
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
}

.ygs2026-project-support__arrow {
  flex-shrink: 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  height: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  border: clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2) solid var(--ygs-black);
  border-top: 0;
  border-left: 0;
  transform: rotate(-45deg);
}

.ygs2026-project-support__arrow--external {
  width: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  height: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  border: none;
  background: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'12\' height=\'12\' viewBox=\'0 0 24 24\' fill=\'none\' stroke=\'%23000\' stroke-width=\'2\'%3E%3Cpath d=\'M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\'/%3E%3Cpolyline points=\'15 3 21 3 21 9\'/%3E%3Cline x1=\'10\' y1=\'14\' x2=\'21\' y2=\'3\'/%3E%3C/svg%3E') center / contain no-repeat;
  transform: none;
}


@media (max-width: 768px) {
  .ygs2026-project-detail {
    padding: 0 clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  }

  .ygs2026-project-hero {
    padding: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
    aspect-ratio: 390 / 590;
  }

  .ygs2026-project-hero__overlay {
    top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
    left: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
    gap: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  }

  .ygs2026-project-hero__line1,
  .ygs2026-project-hero__line2,
  .ygs2026-project-hero__line3,
  .ygs2026-project-hero__line4,
  .ygs2026-project-hero__line5,
  .ygs2026-project-hero__line6 {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 48, var(--max) * 48);
  }

  .ygs2026-project-hero__line1,
  .ygs2026-project-hero__line2 {
    display: none;
  }

  .ygs2026-project-hero__line3,
  .ygs2026-project-hero__line4,
  .ygs2026-project-hero__line5,
  .ygs2026-project-hero__line6 {
    display: block;
  }

  .ygs2026-project-detail__title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  }

  .ygs2026-project-detail__video {
    margin-top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  }

  .ygs2026-project-detail__back {
    margin-top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  }

  .ygs2026-project-support__item {
    padding: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20) clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  }
}


/* ================================================================
   About page  ( .ygs2026-main--about )
   ================================================================ */

.ygs2026-section--about-message {
  padding-top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40) !important;
  background-color: #f4f4f4 !important;
}

.ygs2026-main--about {
  padding-bottom: 0;
}

.ygs2026-main--about .ygs2026-section {
  padding: 0 0 clamp(0px, 10vw / var(--board) * 10 * 110, var(--max) * 110);
}

.ygs2026-section--gray {
  background-color: var(--ygs-bg);
}

/* --- Message --- */
.ygs2026-section--about-message {
  padding-bottom: 0;
  background-color: var(--ygs-white);
}

.ygs2026-message {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
  margin: 0 auto;
  max-width: clamp(0px, 10vw / var(--board) * 10 * 732, var(--max) * 732);
}

.ygs2026-message__photo {
  overflow: hidden;
  width: 100%;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
}

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

.ygs2026-message__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ygs2026-message__text {
  margin: 0;
  letter-spacing: .04em;
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  line-height: 1.8;
}

.ygs2026-message__text + .ygs2026-message__text {
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 22, var(--max) * 22);
}

.ygs2026-message__text:last-of-type {
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
}

.ygs2026-message__sign {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  text-align: right;
}

.ygs2026-message__sign p {
  margin: 0;
  letter-spacing: .04em;
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 2;
}

.ygs2026-message__sign strong {
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
}


/* --- Definition Table (会社概要) --- */
.ygs2026-def-table {
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  width: 100%;
  border-collapse: collapse;
  letter-spacing: .04em;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.8;
}

.ygs2026-def-table tr {
  border-bottom: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid #dbdbdb;
}

.ygs2026-def-table tr:first-child {
  border-top: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid #dbdbdb;
}

.ygs2026-def-table th,
.ygs2026-def-table td {
  padding: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  vertical-align: top;
  text-align: left;

  text-box: trim-both cap alphabetic;
}

.ygs2026-def-table th {
  width: 25.5%;
  background-color: #fff;
  white-space: nowrap;
  font-weight: 400;
}

.ygs2026-def-table td {
  font-weight: 400;
}

.ygs2026-def-list {
  margin: 0;
  padding-left: 1.4em;
  list-style: disc;
}

.ygs2026-def-list li {
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2);
}


/* --- Google Map --- */
.ygs2026-map {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1110 / 443;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
}

.ygs2026-map .lyt-map-01-inner {
  width: 100%;
  height: 100%;
}


/* --- Branches (支店・営業所) --- */
.ygs2026-branches__content {
  display: grid;
  align-items: start;
  gap: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);

  grid-template-columns: clamp(0px, 10vw / var(--board) * 10 * 545, var(--max) * 545) 1fr;
}

.ygs2026-branches__map {
  position: sticky;
  top: clamp(0px, 10vw / var(--board) * 10 * 80, var(--max) * 80);
}

.ygs2026-branches__map > img {
  display: block;
  width: 100%;
  height: auto;
}

.ygs2026-branches__legend {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
}

.ygs2026-branches__legend-item {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 6, var(--max) * 6);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.8;
}

.ygs2026-branches__legend-item::before {
  content: '';
  display: inline-block;
  width: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  height: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  border-radius: 50%;
}

.ygs2026-branches__legend-item--red::before {
  background-color: var(--ygs-red);
}

.ygs2026-branches__legend-item--green::before {
  background-color: #00a30b;
}

.ygs2026-branches__legend-item--purple::before {
  background-color: #4163c1;
}

.ygs2026-branches__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
}

.ygs2026-branch {
  display: flex;
  gap: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  padding: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24) 0;
  border-bottom: clamp(0px, 10vw / var(--board) * 10 * 1, var(--max) * 1) solid rgba(0, 0, 0, .08);
}

.ygs2026-branch:first-child {
  padding-top: 0;
}

.ygs2026-branch__num {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  height: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  border-radius: 50%;
  color: var(--ygs-white);
  font-weight: 700;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  line-height: 1;
}

.ygs2026-branch__num--red {
  background-color: var(--ygs-red);
}

.ygs2026-branch__num--green {
  background-color: #00a30b;
}

.ygs2026-branch__num--purple {
  background-color: #4163c1;
}

.ygs2026-branch__info {
  padding-top: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  min-width: 0;
  letter-spacing: .04em;
}

.ygs2026-branch__name {
  margin: 0 0 clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  font-weight: 500;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  line-height: 1.6;
}

.ygs2026-branch__info p {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.8;
}


/* --- About page SP --- */
@media (max-width: 768px) {
  .ygs2026-section--about-message .ygs2026-section-header {
    margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 48, var(--max) * 48);
    padding-top: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  }

  .ygs2026-section--about-message .ygs2026-section-header .ygs2026-section-title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 72, var(--max) * 72);
  }

  .ygs2026-message {
    gap: clamp(0px, 10vw / var(--board) * 10 * 64, var(--max) * 64);
    max-width: none;
  }

  .ygs2026-message__text {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  }

  .ygs2026-message__text:last-of-type {
    margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  }

  .ygs2026-def-table th {
    display: block;
    padding: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16) clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
    width: 100%;
  }

  .ygs2026-def-table td {
    display: block;
    padding: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24) clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
    width: 100%;
  }

  .ygs2026-map {
    aspect-ratio: 390 / 260;
  }

  .ygs2026-branches__content {
    grid-template-columns: 1fr;
  }

  .ygs2026-branches__map {
    position: static;
  }

  .ygs2026-branches__list {
    padding-top: 0;
  }
}



/* ================================================================
   YGS トップ（index）アニメーション
   ================================================================ */

.ygs2026-hero__bg-main {
  animation: ygs2026-hero__bg-main-animation 5s forwards ease-in-out;
}

@keyframes ygs2026-hero__bg-main-animation {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.ygs2026-hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;

  grid-template-columns: repeat(3, 1fr);
}

.ygs2026-hero__bg-overlay-box {
  overflow: hidden;
  margin-top: auto;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  opacity: 0;
  animation: ygs2026-hero__bg-overlay-box-animation 1.5s forwards ease-in-out;
}

@media (min-width: 1300px) {
  .ygs2026-hero__bg-overlay-box {
    background-size: 100%;
  }
}

.ygs2026-hero__bg-overlay-box:nth-child(1) {
  background-image: url('/jp/about/company/ygs/img/ygs2026/image_hero_bg_left.webp');
  animation-delay: 1.5s;
}

.ygs2026-hero__bg-overlay-box:nth-child(2) {
  background-image: url('/jp/about/company/ygs/img/ygs2026/image_hero_bg_center.webp');
  animation-delay: 1.75s;
}

.ygs2026-hero__bg-overlay-box:nth-child(3) {
  background-image: url('/jp/about/company/ygs/img/ygs2026/image_hero_bg_right.webp');
  animation-delay: 2s;
}

@keyframes ygs2026-hero__bg-overlay-box-animation {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0;
  }

  30% {
    opacity: .1;
  }

  80% {
    opacity: .9;
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}

.nav-local-06 .is-desktop-sublist .is-deep-list > div {
  border-bottom: 0;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
}

.nav-local-06 .is-desktop-sublist ul a {
  color: rgba(255, 255, 255, 1) !important;
}

.nav-local-06 .is-desktop-sublist ul a::before,
.nav-local-06 .is-desktop-sublist a:hover::before,
.nav-local-06 .is-desktop-sublist a.is-router-match::before,
.nav-local-06 .is-desktop-sublist a.is-router-exact-match::before {
  opacity: 1 !important;
}


.ygs2026-heading-title {
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  font-weight: 300;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ygs2026-heading-title {
    font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  }
}




.fc-scope {
  display: none !important;
}
