@charset "UTF-8";
@font-face {
  font-family: "TT Norms Pro";
  src: url("../fonts/tt-norms-pro-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Norms Pro";
  src: url("../fonts/tt-norms-pro-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-ja: "YuGothic", "Yu Gothic", Verdana, Meiryo, sans-serif;
  --font-en: "TT Norms Pro", YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  --black: #111;
  --gray: #838f8f;
}

body {
  font-family: var(--font-ja);
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0;
  overflow-wrap: break-word;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-container {
  overflow: hidden;
}

/* フェード対象は初期非表示（JSで .is-visible を付与） */
.p-world__kv__photo,
.p-world__kv__column,
.p-world__special__title,
.p-world__special__list,
.p-world__message,
.p-world__brand__title,
.p-world__brand__heading__text,
.p-world__brand__block__figure,
.p-world__brand__block__body,
.p-world__news__heading__text,
.p-world__news__list,
.p-world__interview__title,
.p-world__interview__list,
.p-world__next__title,
.p-world__next__list,
.p-world__next__tagline,
.js-fade-item,
.js-kv-photo-fade {
  opacity: 0;
  filter: blur(6px);
}

.p-world__kv__photo,
.p-world__kv__column,
.p-world__special__title,
.p-world__special__list,
.p-world__message,
.p-world__brand__title,
.p-world__brand__heading__text,
.p-world__brand__block__figure,
.p-world__brand__block__body,
.p-world__news__heading__text,
.p-world__news__list,
.p-world__interview__title,
.p-world__interview__list,
.p-world__next__title,
.p-world__next__list,
.p-world__next__tagline,
.js-fade-item,
.js-kv-photo-fade {
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter;
}

.p-world__kv__photo.is-visible,
.p-world__kv__column.is-visible,
.p-world__special__title.is-visible,
.p-world__special__list.is-visible,
.p-world__message.is-visible,
.p-world__brand__title.is-visible,
.p-world__brand__heading__text.is-visible,
.p-world__brand__block__figure.is-visible,
.p-world__brand__block__body.is-visible,
.p-world__news__heading__text.is-visible,
.p-world__news__list.is-visible,
.p-world__interview__title.is-visible,
.p-world__interview__list.is-visible,
.p-world__next__title.is-visible,
.p-world__next__list.is-visible,
.p-world__next__tagline.is-visible,
.js-fade-item.is-visible,
.js-kv-photo-fade.is-visible {
  opacity: 1;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-item,
  .js-kv-photo-fade {
    transition: none;
    filter: none;
  }
}
.p-world__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 45px;
  z-index: 100;
}
@media screen and (max-width: 820px) {
  .p-world__header {
    padding: 12px 8px;
  }
}
.p-world__header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .p-world__header.is-menu-open .p-world__header__inner {
    justify-content: flex-end;
  }
}
.p-world__header__logo {
  max-width: 100px;
  width: 100%;
  position: relative;
  z-index: 103;
}
@media screen and (max-width: 820px) {
  .p-world__header__logo {
    max-width: 68px;
  }
}
@media screen and (max-width: 820px) {
  .p-world__header.is-menu-open .p-world__header__logo {
    display: none;
  }
}
.p-world__header__toggle {
  display: none;
  position: relative;
  z-index: 103;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 820px) {
  .p-world__header__toggle {
    display: flex;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #cbe6ed;
    transition: opacity 0.3s ease;
  }
  .p-world__header__toggle:hover {
    opacity: 0.8;
  }
}
.p-world__header__toggle-bar {
  display: block;
  transition: transform 0.3s ease;
  transform-origin: center;
}
@media screen and (max-width: 820px) {
  .p-world__header__toggle-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    margin: 0;
    background-color: #fff;
    border-radius: 1px;
  }
  .p-world__header__toggle-bar:nth-child(1) {
    transform: translate(-50%, calc(-50% - 4px)) rotate(0deg);
  }
  .p-world__header__toggle-bar:nth-child(2) {
    transform: translate(-50%, calc(-50% + 4px)) rotate(0deg);
  }
}
@media screen and (max-width: 820px) {
  .p-world__header.is-menu-open .p-world__header__toggle .p-world__header__toggle-bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .p-world__header.is-menu-open .p-world__header__toggle .p-world__header__toggle-bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media screen and (min-width: 821px) {
  .p-world__header__menu__inner {
    display: contents;
  }
}
@media screen and (max-width: 820px) {
  .p-world__header__menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    width: 100%;
    max-width: 223px;
    margin: 0 auto;
    padding: 64px 0 48px;
    box-sizing: border-box;
  }
}
.p-world__header__menu__decor, .p-world__header__menu__footer, .p-world__header__menu__nav-accent {
  display: none;
}
@media screen and (max-width: 820px) {
  .p-world__header__menu__decor {
    display: block;
    width: 100%;
    flex-shrink: 0;
    margin: 0;
    position: relative;
    pointer-events: none;
    line-height: 0;
  }
  .p-world__header__menu__decor img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 820px) {
  .p-world__header__menu__nav {
    position: relative;
    width: 100%;
    max-width: 223px;
  }
}
@media screen and (max-width: 820px) {
  .p-world__header__menu__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    min-height: 34px;
  }
  .p-world__header__menu__footer img {
    display: block;
    width: 68px;
    height: auto;
    max-height: 32px;
    object-fit: contain;
  }
}
@media screen and (max-width: 820px) {
  .p-world__header__menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px;
    background-color: #fff;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
.p-world__header__menu nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 820px) {
  .p-world__header__menu nav ul {
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: none;
    margin: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-world__header__menu nav ul li {
    width: auto;
    max-width: 100%;
    text-align: center;
  }
}
.p-world__header__menu nav ul li a {
  display: block;
}
@media screen and (max-width: 820px) {
  .p-world__header__menu nav ul li a {
    padding: 2px 8px;
  }
}
.p-world__header__menu nav ul li a span {
  font-family: var(--font-en);
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.p-world__header__menu nav ul li a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #cbe6ed;
  transform: translateY(-48%) scale(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  z-index: -1;
}
.p-world__header__menu nav ul li a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.p-world__header__menu nav ul li:hover a span::before {
  transform: translateY(-50%) scale(1);
}
.p-world__header__menu nav ul li:hover a span::after {
  transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  .p-world__header.is-menu-open .p-world__header__menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.p-world__kv {
  position: relative;
  overflow: hidden;
  color: var(--black);
  background-color: #fff;
  background-image: url("../images/kv-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-world__kv__stage {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 2560/2720;
  min-height: 22rem;
  --kv-pad-x: calc(88 * 100% / 1280);
  --kv-column-top: calc(328 * 100% / 1360);
  --kv-text-mid-x: calc((88 + 295) * 100% / 1280);
}
.p-world__kv__collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.p-world__kv__circle-area {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-world__kv__photo {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  background-color: #eef2f4;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.06);
}
.p-world__kv__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-world__kv__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-world__kv__photo--1 {
  left: 50%;
  top: 12.1323529412%;
  width: 21.5625%;
  height: 17.1323529412%;
}
.p-world__kv__photo--2 {
  left: 72.34375%;
  top: 15.8088235294%;
  width: 21.328125%;
  height: 13.4558823529%;
}
.p-world__kv__photo--3 {
  left: 45.3125%;
  top: 30.2205882353%;
  width: 48.359375%;
  height: 28.9705882353%;
}
.p-world__kv__photo--4 {
  left: 48.28125%;
  top: 60.2941176471%;
  width: 17.5%;
  height: 16.4705882353%;
}
.p-world__kv__photo--5 {
  left: 67.1875%;
  top: 60.2941176471%;
  width: 26.484375%;
  height: 24.1176470588%;
}
.p-world__kv__circle {
  position: absolute;
  left: var(--kv-text-mid-x);
  top: 50%;
  box-sizing: border-box;
  width: 75.46875%;
  max-width: 100%;
  aspect-ratio: 1/1;
  transform: translate(-50%, calc(-50% - 57px));
  pointer-events: none;
}
.p-world__kv__circle picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-world__kv__circle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}
.p-world__kv__lead {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-world__kv__column {
  position: absolute;
  left: var(--kv-pad-x);
  top: var(--kv-column-top);
  z-index: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2rem, 4vw, 4.0625rem);
  width: min(46.09375%, 100% - var(--kv-pad-x) - 12px);
  max-width: min(590px, 100% - 24px);
  padding-right: 12px;
  transform: none;
  pointer-events: auto;
}
.p-world__kv__tagline {
  width: 100%;
  max-width: 590px;
  position: relative;
}
.p-world__kv__tagline picture {
  display: block;
  width: 100%;
}
.p-world__kv__tagline-img {
  display: block;
  width: 100%;
  height: auto;
}
.p-world__kv__title {
  width: min(100%, clamp(223px, 27.03125vw, 346px));
  position: relative;
}
.p-world__kv__title picture {
  display: block;
  width: 100%;
}
.p-world__kv__title-img {
  display: block;
  width: 100%;
  height: auto;
}
.p-world__kv__copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 24px;
  border-left: 1px solid var(--black);
  font-weight: 500;
  font-size: clamp(0.875rem, 1.875vw, 24px);
  line-height: 1.5;
}
.p-world__kv__scroll {
  position: sticky;
  top: calc(100vh - 236px);
  right: auto;
  margin-right: 2.34375%;
  margin-left: auto;
  transform: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 24px;
  color: var(--black);
  pointer-events: none;
}
.p-world__kv__scroll-label {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 3px;
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: center center;
}
.p-world__kv__scroll-line {
  display: block;
  width: 1px;
  min-width: 1px;
  height: 180px;
  transform: none;
  background: currentColor;
}
.p-world__kv__scroll-line path {
  display: none;
}
.p-world__kv__scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 180px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  transform: translateX(-50%);
  animation: world-kv-scroll-dot 1.5s ease-in-out infinite;
}
@media screen and (max-width: 750px) {
  .p-world__kv {
    background-image: url("../images/kv-bg-sp.png");
    background-position: center top;
    overflow: visible;
  }
  .p-world__kv__stage {
    aspect-ratio: auto;
    min-height: 0;
    /* 上余白は維持しつつ、左右は可変でやや狭くする */
    padding: 37.6590330789vw clamp(8px, 2.2vw, 16px) 32px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: clamp(18px, 6.106870229vw, 24px);
    --kv-pad-x: clamp(12px, 4.2vw, 28px);
    --kv-column-top: 0;
    --kv-text-mid-x: 50%;
    --kv-scroll-line-h: clamp(120px, calc(148 * 100vw / 393), 148px);
  }
  .p-world__kv__circle-area {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1;
    z-index: 0;
    width: 100%;
    max-width: none;
    height: auto;
    /* 円径 494@393 に合わせた余白（中央配置の縦スパン） */
    min-height: 90.5038167939vw;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
  }
  .p-world__kv__lead {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
    align-self: center;
    width: 100%;
    max-width: min(100%, 314px);
    height: auto;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    pointer-events: none;
  }
  .p-world__kv__circle {
    position: absolute;
    left: var(--kv-text-mid-x);
    top: 50%;
    box-sizing: border-box;
    width: 125.6997455471vw;
    max-width: none;
    aspect-ratio: 1/1;
    transform: translate(-50%, calc(-50% + 10px));
  }
  .p-world__kv__collage {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 34.6997455471vw 23.7124681934vw 34.6997455471vw;
    grid-template-rows: 53.5038167939vw 15.8804071247vw 15.8804071247vw;
    grid-template-areas: "photo3 photo3 photo3" "photo4 photo2 photo5" "photo4 photo1 photo5";
    column-gap: 1.1972010178vw;
    row-gap: 1.1806615776vw;
    width: min(100%, 95.5063613232vw);
    margin: 0 auto;
  }
  .p-world__kv__photo {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .p-world__kv__photo--1 {
    grid-area: photo1;
  }
  .p-world__kv__photo--2 {
    grid-area: photo2;
  }
  .p-world__kv__photo--3 {
    grid-area: photo3;
  }
  .p-world__kv__photo--4 {
    grid-area: photo4;
  }
  .p-world__kv__photo--5 {
    grid-area: photo5;
  }
  .p-world__kv__column {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: min(100%, 314px);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
  .p-world__kv__tagline {
    width: min(100%, 79.8982188295vw);
    max-width: 100%;
  }
  .p-world__kv__title {
    width: min(100%, 56.7430025445vw);
    max-width: 100%;
  }
  .p-world__kv__copy {
    padding-left: 0;
    border-left: none;
    font-size: clamp(12px, 3.5623409669vw, 15px);
    text-align: center;
  }
  .p-world__kv {
    /* src_sp Fv ScrollContainer: 393px 基準（静的表示・アニメーションなし） */
  }
  .p-world__kv__scroll {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    grid-column: 1;
    grid-row: 2;
    box-sizing: border-box;
    width: 35px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
    padding-bottom: 4px;
    gap: 10px;
    color: #838f8f;
  }
  .p-world__kv__scroll::after {
    content: "";
    display: block;
    flex-shrink: 0;
    position: static;
    left: auto;
    top: auto;
    width: 1px;
    height: var(--kv-scroll-line-h);
    margin: 0;
    border-radius: 0;
    background-color: currentColor;
    animation: none;
    transform: none;
  }
  .p-world__kv__scroll-label {
    transform: none;
    font-size: clamp(13px, 3.5623409669vw, 14px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    color: inherit;
  }
  .p-world__kv__scroll-line {
    display: none;
  }
}
@keyframes world-kv-scroll-dot {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  85% {
    transform: translate(-50%, 174px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 174px);
    opacity: 0;
  }
}
.p-world__special {
  background: url("../images/world-special-bg.jpg") no-repeat center center/cover;
  padding: 80px 40px;
  margin-top: 160px;
  margin-bottom: 160px;
}
@media screen and (max-width: 750px) {
  .p-world__special {
    padding: 100px 22.5px 80px;
  }
}
.p-world__special__inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .p-world__special__inner {
    max-width: 480px;
  }
}
.p-world__special__title {
  position: absolute;
  top: -80px;
  left: 0;
  transform: translateY(-50%);
  max-width: 756px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-world__special__title {
    top: -74px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 375px;
  }
}
.p-world__special__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 28px;
  row-gap: 0;
}
@media screen and (max-width: 750px) {
  .p-world__special__list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 32px;
  }
}
.p-world__special__list__item {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
.p-world__special__list__item > a {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__special__list__item > a {
    transition: none;
  }
}
.p-world__special__list__item > a:hover {
  opacity: 0.6;
}
.p-world__special__list__item__image {
  position: relative;
  display: block;
  flex-shrink: 0;
}
.p-world__special__list__item__image img {
  display: block;
  width: 100%;
  aspect-ratio: 348/228;
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
  box-shadow: 0 3px 8px rgba(54, 65, 83, 0.1);
}
.p-world__special__list__item__image .tag-green,
.p-world__special__list__item__image .tag-blue,
.p-world__special__list__item__image .tag-yellow {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.15px;
  padding: 4px 8px;
}
.p-world__special__list__item__image .tag-green,
.p-world__special__list__item__image .tag-blue,
.p-world__special__list__item__image .tag-yellow {
  color: #fff;
}
.p-world__special__list__item__image .tag-green {
  background-color: #7bb24a;
}
.p-world__special__list__item__image .tag-blue {
  background-color: #4a90eb;
}
.p-world__special__list__item__image .tag-yellow {
  background-color: #ddbe18;
}
.p-world__special__list__item__content {
  display: flex;
  flex-direction: column;
  padding: 16px 8px 0;
}
.p-world__special__list__item__subtitle {
  font-size: 16px;
}
.p-world__special__list__item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-world__special__list__item__detail {
  font-size: 14px;
  font-weight: 500;
}
@supports (grid-template-rows: subgrid) {
  @media screen and (min-width: 751px) {
    .p-world__special .p-world__special__list {
      grid-template-rows: auto auto auto auto;
      align-items: start;
      column-gap: 28px;
      row-gap: 0;
    }
    .p-world__special .p-world__special__list__item {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 4;
      grid-column: auto;
    }
    .p-world__special .p-world__special__list__item > a {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: 1/-1;
      grid-column: 1;
      height: auto;
      min-height: 0;
    }
    .p-world__special .p-world__special__list__item__content {
      display: contents;
    }
    .p-world__special .p-world__special__list__item__image {
      grid-row: 1;
      align-self: start;
    }
    .p-world__special .p-world__special__list__item__subtitle {
      grid-row: 2;
      align-self: start;
      padding: 16px 8px 0;
      margin: 0;
    }
    .p-world__special .p-world__special__list__item__title {
      grid-row: 3;
      align-self: start;
      padding: 0 8px;
      margin: 0 0 8px;
    }
    .p-world__special .p-world__special__list__item__detail {
      grid-row: 4;
      align-self: start;
      padding: 0 8px;
      margin: 0;
    }
  }
}
.p-world__brand {
  padding: 160px 40px 0;
  background-image: url("../images/world-brand-bg.png");
  background-position: center 330px;
  background-size: 2311px 5307.5px;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .p-world__brand {
    padding: 160px 12px 64px;
    background-image: url("../images/world-brand-bg-sp.png");
    background-position: calc(50% + 42px) 220px;
    background-size: 1124px auto;
  }
}
.p-world__brand__inner {
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 980px) {
  .p-world__brand__inner {
    max-width: 480px;
  }
}
.p-world__brand__title {
  max-width: 492px;
  width: 100%;
  margin: 0 auto 54px;
}
@media screen and (max-width: 980px) {
  .p-world__brand__title {
    max-width: 191px;
    margin-bottom: 24px;
    text-align: center;
  }
}
.p-world__brand__heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 980px) {
  .p-world__brand__heading {
    margin-bottom: 40px;
    padding-left: 12px;
  }
}
.p-world__brand__heading__text {
  display: inline-block;
  position: relative;
  padding: 8px 16px;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.p-world__brand__heading__text::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid #000;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  .p-world__brand__heading__text {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
}
.p-world__brand__list {
  display: flex;
  flex-direction: column;
  gap: 160px;
}
@media screen and (max-width: 980px) {
  .p-world__brand__list {
    gap: 40px;
  }
}
.p-world__brand__block {
  --brand-accent: #7bb24a;
  --brand-shadow: -22px 22px 0 0 #e6ebbb;
  --brand-code-bg: #e6ebbb;
  --brand-off-edge: #354c20;
  --brand-coupon-spark-b: #ddbe18;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 53px;
}
@media screen and (max-width: 980px) {
  .p-world__brand__block {
    flex-direction: column;
    gap: 24px;
  }
}
.p-world__brand__block--img-right {
  flex-direction: row-reverse;
}
@media screen and (max-width: 980px) {
  .p-world__brand__block--img-right {
    flex-direction: column;
  }
}
.p-world__brand__block--muscle-deli {
  --brand-accent: #7bb24a;
  --brand-shadow: -22px 22px 0 0 #e6ebbb;
  --brand-code-bg: #e6ebbb;
  --brand-off-edge: #354c20;
}
.p-world__brand__block--your-meal {
  --brand-accent: #dc804d;
  --brand-shadow: 22px 22px 0 0 #fce4dc;
  --brand-code-bg: #fce4dc;
  --brand-off-edge: #764529;
}
.p-world__brand__block--your-coffee {
  --brand-accent: #957155;
  --brand-shadow: -22px 22px 0 0 #e5dbd6;
  --brand-code-bg: #e5dbd6;
  --brand-off-edge: #2f241b;
  --brand-coupon-spark-b: #dc804d;
}
.p-world__brand__block--your-bread {
  --brand-accent: #ddbe18;
  --brand-shadow: 22px 22px 0 0 #f6ecc0;
  --brand-code-bg: #f6ecc0;
  --brand-off-edge: #a88f07;
  --brand-off-mid: #eed23d;
  --brand-coupon-spark-b: #dc804d;
}
.p-world__brand__block__media {
  flex-shrink: 0;
  max-width: 100%;
  width: 436px;
  padding-top: 60px;
}
@media screen and (max-width: 980px) {
  .p-world__brand__block__media {
    order: -1;
    width: 100%;
    align-self: center;
    padding: 0 10.5px;
    padding-top: 0;
  }
}
.p-world__brand__block__figure {
  position: relative;
  width: 100%;
  max-width: 436px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--brand-shadow);
  aspect-ratio: 436/726;
}
.p-world__brand__block__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 980px) {
  .p-world__brand__block__figure {
    max-width: 348px;
    aspect-ratio: 348/480;
    box-shadow: 10px 10px 0 0 var(--brand-code-bg);
  }
}
.p-world__brand__block__body {
  flex: 1;
  min-width: 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
@media screen and (max-width: 980px) {
  .p-world__brand__block__body {
    gap: 24px;
    max-width: 100%;
  }
}
.p-world__brand__block__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-world__brand__block__name {
  font-family: var(--font-en);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--brand-accent);
}
@media screen and (max-width: 980px) {
  .p-world__brand__block__name {
    font-size: 48px;
  }
}
.p-world__brand__block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-world__brand__block__tags li {
  position: relative;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
}
.p-world__brand__block__tags li::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--black);
  border-radius: 100px;
  pointer-events: none;
}
.p-world__brand__block__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
.p-world__brand__block__text p {
  margin: 0 0 1em;
}
.p-world__brand__block__text p:last-child {
  margin-bottom: 0;
}
.p-world__brand__coupon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 38px 20px;
  border-radius: 16px;
  position: relative;
  background-color: #fff;
  overflow: visible;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon {
    gap: 13px;
    padding: 20px 32px 17px;
    border-radius: 13px;
  }
}
.p-world__brand__coupon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 2px solid var(--brand-accent);
  border-radius: 16px;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon::before {
    border-radius: 13px;
  }
}
.p-world__brand__coupon__spark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.p-world__brand__coupon__spark--tl {
  left: -18.55px;
  top: -13px;
  width: 90px;
  height: 69px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__spark--tl {
    left: -12px;
    top: -10px;
    width: 72px;
    height: 55px;
  }
}
.p-world__brand__coupon__spark--tr-wrap {
  right: -8px;
  top: -40px;
  width: 99.807px;
  height: 110.365px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__spark--tr-wrap {
    right: -10px;
    top: -32px;
    width: 80px;
    height: 92px;
  }
}
.p-world__brand__coupon__spark--tr {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 69px;
  overflow: hidden;
  transform: rotate(65.82deg);
  transform-origin: center center;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__spark--tr {
    width: 72px;
    height: 55px;
  }
}
.p-world__brand__coupon__spark-svg {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.p-world__brand__coupon__thanks {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: calc(100% - 76px);
  width: max-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-accent);
  text-align: center;
  background-color: #fff;
  padding: 0 4px;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__thanks {
    max-width: calc(100% - 40px);
    font-size: 12px;
    gap: 4px;
  }
}
.p-world__brand__coupon__thanks-icon {
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__thanks-icon {
    width: 14px;
    height: 21px;
  }
}
.p-world__brand__coupon__card {
  position: relative;
  z-index: 2;
  width: 374px;
  max-width: 100%;
  aspect-ratio: 374/167;
  align-self: center;
  flex-shrink: 0;
  overflow: visible;
  color: var(--brand-accent);
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__card {
    width: 100%;
    max-width: 340px;
  }
}
.p-world__brand__coupon__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.p-world__brand__coupon__ribbon {
  margin: 0;
  position: absolute;
  left: 90px;
  top: 27px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-accent);
  z-index: 2;
  white-space: nowrap;
  transform: rotate(-2.5deg);
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__ribbon {
    left: 80px;
    top: 17%;
    font-size: 12px;
  }
}
.p-world__brand__coupon__off {
  margin: 0;
  position: absolute;
  left: 44px;
  top: 49px;
  line-height: 1;
  z-index: 2;
  white-space: nowrap;
  transform: rotate(-2.5deg);
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__off {
    left: 13.5%;
    top: 31%;
  }
}
.p-world__brand__coupon__off-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 72px;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(180deg, var(--brand-off-edge) 0%, var(--brand-off-mid, var(--brand-accent)) 50.48%, var(--brand-off-edge) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__off-num {
    font-size: 62px;
  }
}
.p-world__brand__coupon__off-unit {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(180deg, var(--brand-off-edge) 0%, var(--brand-off-mid, var(--brand-accent)) 50.48%, var(--brand-off-edge) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__off-unit {
    font-size: 44px;
  }
}
.p-world__brand__coupon__code {
  margin: 0;
  position: absolute;
  left: 14px;
  bottom: 19px;
  width: 290px;
  text-align: center;
  z-index: 2;
  transform: rotate(-2.5deg);
}
.p-world__brand__coupon__code span {
  display: inline-block;
  font-family: var(--font-en);
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  background-color: transparent;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__code {
    left: 14px;
    bottom: 11%;
    width: 251px;
  }
}
.p-world__brand__coupon__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__actions {
    gap: 13px;
  }
}
.p-world__brand__coupon__copy {
  margin: 0;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--black);
  background: #fff;
  box-shadow: 0 3px 8px rgba(54, 65, 83, 0.1);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__brand__coupon__copy {
    transition: none;
  }
}
.p-world__brand__coupon__copy:hover {
  opacity: 0.6;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__copy {
    padding: 8px 13px;
    border-radius: 7px;
    font-size: 12px;
  }
}
.p-world__brand__coupon__copy-icon {
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 14px;
}
.p-world__brand__coupon__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background-color: var(--brand-accent);
  box-shadow: 0 3px 8px rgba(54, 65, 83, 0.1);
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__brand__coupon__buy {
    transition: none;
  }
}
.p-world__brand__coupon__buy:hover {
  opacity: 0.6;
}
@media screen and (max-width: 980px) {
  .p-world__brand__coupon__buy {
    padding: 8px 13px;
    border-radius: 7px;
    font-size: 12px;
  }
}
.p-world__brand__coupon__buy-icon {
  flex-shrink: 0;
  display: block;
  width: 10px;
  height: 10px;
}
.p-world__brand__coupon__note {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--black);
}
.p-world__brand__block .p-world__brand__coupon {
  align-self: stretch;
  max-width: 100%;
}
.p-world__brand__history {
  width: 100%;
}
.p-world__brand__history__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.p-world__brand__history__info:not(.is-expanded) .p-world__brand__history__list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__brand__history__info:not(.is-expanded) .p-world__brand__history__list {
    transition: none;
  }
}
.p-world__brand__history__info.is-expanded .p-world__brand__history__list {
  max-height: 4800px;
  opacity: 1;
  pointer-events: auto;
  transition: max-height 0.55s ease, opacity 0.35s ease 0.05s;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__brand__history__info.is-expanded .p-world__brand__history__list {
    transition: none;
  }
}
.p-world__brand__history__disclosure-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0 23px 0 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.p-world__brand__history__disclosure-trigger:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}
.p-world__brand__history__disclosure-badge {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  margin-right: -23px;
  border-radius: 50%;
  background: var(--brand-code-bg);
}
.p-world__brand__history__disclosure-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 203px;
  flex: 1;
  padding: 4px 4px 7px;
  border-bottom: 1px solid var(--black);
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__brand__history__disclosure-row {
    transition: none;
  }
}
.p-world__brand__history__disclosure-row:hover {
  opacity: 0.6;
}
.p-world__brand__history__disclosure-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.p-world__brand__history__disclosure-icon {
  position: relative;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin-left: auto;
}
.p-world__brand__history__disclosure-icon::before, .p-world__brand__history__disclosure-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__brand__history__disclosure-icon::before, .p-world__brand__history__disclosure-icon::after {
    transition: none;
  }
}
.p-world__brand__history__disclosure-icon::before {
  width: 13px;
  height: 1px;
}
.p-world__brand__history__disclosure-icon::after {
  width: 1px;
  height: 13px;
}
.p-world__brand__history__info.is-expanded .p-world__brand__history__disclosure-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.p-world__brand__history__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-world__brand__history__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.p-world__brand__history__rail {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  box-sizing: border-box;
}
.p-world__brand__history__rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border: 1px solid var(--brand-accent);
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
}
.p-world__brand__history__rail::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  bottom: 0;
  width: 1px;
  margin-left: -0.5px;
  background: var(--brand-accent);
}
.p-world__brand__history__rail--72 {
  height: 72px;
}
.p-world__brand__history__rail--stretch {
  align-self: stretch;
  min-height: 120px;
}
.p-world__brand__history__rail--stop {
  height: 72px;
}
.p-world__brand__history__rail--stop::after {
  display: none;
}
.p-world__brand__history__rail--end {
  height: 16px;
}
.p-world__brand__history__rail--end::after {
  display: none;
}
.p-world__brand__history__focus {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 8px 0;
}
.p-world__brand__history__main {
  flex: 1;
  min-width: 0;
  padding-top: 0;
}
.p-world__brand__history__date {
  margin: 0 0 2px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: -0.03em;
}
.p-world__brand__history__headline {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}
.p-world__brand__history__headline + .p-world__brand__history__headline {
  margin-top: 0;
}
.p-world__brand__history__card {
  position: relative;
  width: 100%;
  border-radius: 36px;
  background: #fff;
}
.p-world__brand__history__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 11px;
  height: 10px;
  pointer-events: none;
  transform: translate(-100%, -50%);
  background: var(--brand-accent);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.p-world__brand__history__card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border: 2px solid var(--brand-accent);
  border-radius: 37px;
  pointer-events: none;
}
.p-world__brand__history__card-inner {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px 8px;
}
.p-world__brand__history__card-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-code-bg);
}
.p-world__brand__history__card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-world__brand__history__card-main {
  flex: 1;
  min-width: 0;
}
.p-world__brand__history__card-main .p-world__brand__history__date {
  margin-bottom: 4px;
}
.p-world__brand__history__card-copy {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.p-world__brand__history__card-copy p {
  margin: 0 0 0.4em;
}
.p-world__brand__history__card-copy p:last-child {
  margin-bottom: 0;
}
.p-world__brand__history__ribbon {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0 4px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-accent);
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.p-world__brand__history__ribbon-cap {
  flex-shrink: 0;
  color: var(--brand-accent);
}
.p-world__brand__history__ribbon-cap--flip {
  transform: scaleY(-1) rotate(180deg);
}
.p-world__news {
  padding: 160px 40px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .p-world__news {
    padding: 80px 22.5px;
  }
}
.p-world__news__inner {
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .p-world__news__inner {
    max-width: 480px;
  }
}
.p-world__news__heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 980px) {
  .p-world__news__heading {
    margin-bottom: 40px;
    padding-left: 12px;
  }
}
.p-world__news__heading__text {
  display: inline-block;
  position: relative;
  padding: 8px 16px;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.p-world__news__heading__text::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid #000;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  .p-world__news__heading__text {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
}
.p-world__news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 28px;
  row-gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 750px) {
  .p-world__news__list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 32px;
  }
}
.p-world__news__list__item {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
.p-world__news__list__item > a {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__news__list__item > a {
    transition: none;
  }
}
.p-world__news__list__item > a:hover {
  opacity: 0.6;
}
.p-world__news__list__item__image {
  position: relative;
  display: block;
  flex-shrink: 0;
}
.p-world__news__list__item__image img {
  display: block;
  width: 100%;
  aspect-ratio: 348/213;
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
  box-shadow: 0 3px 8px rgba(54, 65, 83, 0.1);
}
.p-world__news__list__item__image .tag-yellow {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.15px;
  color: #fff;
  background-color: #ddbe18;
}
.p-world__news__list__item__content {
  display: flex;
  flex-direction: column;
  padding: 16px 8px 0;
}
.p-world__news__list__item__subtitle {
  font-size: 16px;
}
.p-world__news__list__item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-world__news__list__item__detail {
  font-size: 14px;
  font-weight: 500;
}
@supports (grid-template-rows: subgrid) {
  @media screen and (min-width: 751px) {
    .p-world__news .p-world__news__list {
      grid-template-rows: auto auto auto auto;
      align-items: start;
      column-gap: 28px;
      row-gap: 0;
    }
    .p-world__news .p-world__news__list__item {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 4;
      grid-column: auto;
    }
    .p-world__news .p-world__news__list__item > a {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: 1/-1;
      grid-column: 1;
      height: auto;
      min-height: 0;
    }
    .p-world__news .p-world__news__list__item__content {
      display: contents;
    }
    .p-world__news .p-world__news__list__item__image {
      grid-row: 1;
      align-self: start;
    }
    .p-world__news .p-world__news__list__item__subtitle {
      grid-row: 2;
      align-self: start;
      padding: 16px 8px 0;
      margin: 0;
    }
    .p-world__news .p-world__news__list__item__title {
      grid-row: 3;
      align-self: start;
      padding: 0 8px;
      margin: 0 0 8px;
    }
    .p-world__news .p-world__news__list__item__detail {
      grid-row: 4;
      align-self: start;
      padding: 0 8px;
      margin: 0;
    }
  }
}
.p-world__news__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .p-world__news__more-wrap {
    margin-top: 32px;
  }
}
.p-world__news__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 309px;
  width: 100%;
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--black);
  padding: 12px 0 16px;
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__news__more {
    transition: none;
  }
}
.p-world__news__more:hover {
  opacity: 0.6;
}
.p-world__news__more__icon {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
}
.p-world__interview {
  margin-top: 160px;
  margin-bottom: 53px;
  padding: 80px 25px;
}
@media screen and (max-width: 750px) {
  .p-world__interview {
    padding: 80px 0px;
  }
}
.p-world__interview__wrap {
  border-radius: 36px;
  background: linear-gradient(101.68deg, rgba(203, 230, 237, 0.2) -13.14%, rgba(200, 227, 239, 0.2) 45.71%, rgba(230, 235, 187, 0.2) 104.56%);
  padding: 120px 25px 80px;
}
@media screen and (max-width: 750px) {
  .p-world__interview__wrap {
    padding: 100px 22.5px 80px;
  }
}
.p-world__interview__inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}
@media screen and (max-width: 750px) {
  .p-world__interview__inner {
    max-width: 480px;
  }
}
.p-world__interview__title {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 675px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-world__interview__title {
    top: -80px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 269px;
  }
}
.p-world__interview__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 28px;
  row-gap: 56px;
}
@media screen and (max-width: 750px) {
  .p-world__interview__list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  }
}
.p-world__interview__list__item {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
.p-world__interview__list__item > a {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__interview__list__item > a {
    transition: none;
  }
}
.p-world__interview__list__item > a:hover {
  opacity: 0.6;
}
.p-world__interview__list__item__image {
  position: relative;
  display: block;
  flex-shrink: 0;
}
.p-world__interview__list__item__image img {
  display: block;
  width: 100%;
  aspect-ratio: 348/213;
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
  box-shadow: 0 3px 8px rgba(54, 65, 83, 0.1);
}
.p-world__interview__list__item__image .tag-green,
.p-world__interview__list__item__image .tag-blue,
.p-world__interview__list__item__image .tag-yellow {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.15px;
  padding: 4px 8px;
}
.p-world__interview__list__item__image .tag-green,
.p-world__interview__list__item__image .tag-blue,
.p-world__interview__list__item__image .tag-yellow {
  color: #fff;
}
.p-world__interview__list__item__image .tag-green {
  background-color: #7bb24a;
}
.p-world__interview__list__item__image .tag-blue {
  background-color: #4a90eb;
}
.p-world__interview__list__item__image .tag-yellow {
  background-color: #ddbe18;
}
.p-world__interview__list__item__content {
  display: flex;
  flex-direction: column;
  padding: 16px 8px 0;
}
.p-world__interview__list__item__subtitle {
  font-size: 16px;
}
.p-world__interview__list__item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-world__interview__list__item__detail {
  font-size: 14px;
  font-weight: 500;
}
.p-world__interview__list__item--collapsed {
  display: none !important;
}
.p-world__interview__list__item--enter {
  opacity: 0;
  transform: translateY(21px);
}
.p-world__interview__list__item--enter.p-world__interview__list__item--enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__interview__list__item--enter.p-world__interview__list__item--enter-active {
    transition: none;
  }
}
@supports (grid-template-rows: subgrid) {
  @media screen and (min-width: 751px) {
    .p-world__interview .p-world__interview__list {
      grid-template-rows: auto auto auto auto;
      align-items: start;
      column-gap: 28px;
      row-gap: 0;
    }
    .p-world__interview {
      /* subgrid 親の row-gap は画像〜本文の4行の間にも入るため 0。2行目以降のカードはすべて同じ上余白で揃える */
    }
    .p-world__interview .p-world__interview__list__item:nth-child(n+4) {
      margin-top: 56px;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 750px) {
    .p-world__interview .p-world__interview__list__item:nth-child(n+4) {
      margin-top: 24px;
    }
  }
  @media screen and (min-width: 751px) {
    .p-world__interview .p-world__interview__list__item {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 4;
      grid-column: auto;
    }
    .p-world__interview .p-world__interview__list__item > a {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: 1/-1;
      grid-column: 1;
      height: auto;
      min-height: 0;
    }
    .p-world__interview .p-world__interview__list__item__content {
      display: contents;
    }
    .p-world__interview .p-world__interview__list__item__image {
      grid-row: 1;
      align-self: start;
    }
    .p-world__interview .p-world__interview__list__item__subtitle {
      grid-row: 2;
      align-self: start;
      padding: 16px 8px 0;
      margin: 0;
    }
    .p-world__interview .p-world__interview__list__item__title {
      grid-row: 3;
      align-self: start;
      padding: 0 8px;
      margin: 0 0 8px;
    }
    .p-world__interview .p-world__interview__list__item__detail {
      grid-row: 4;
      align-self: start;
      padding: 0 8px;
      margin: 0;
    }
  }
}
.p-world__interview__more-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 64px;
}
@media screen and (max-width: 750px) {
  .p-world__interview__more-wrap {
    justify-content: center;
    margin-top: 40px;
  }
}
.p-world__interview__more-wrap[hidden] {
  display: none !important;
}
.p-world__interview__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 309px;
  width: 100%;
  margin: 0;
  padding: 12px 0 16px;
  font: inherit;
  color: var(--black);
  text-align: left;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  background: none;
  border: none;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__interview__more {
    transition: none;
  }
}
.p-world__interview__more:hover {
  opacity: 0.6;
}
.p-world__interview__more__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.p-world__interview__more__icon::before, .p-world__interview__more__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: currentColor;
  transform: translate(-50%, -50%);
}
.p-world__interview__more__icon::before {
  width: 14px;
  height: 2px;
}
.p-world__interview__more__icon::after {
  width: 2px;
  height: 14px;
}
.p-world__next {
  position: relative;
  overflow: visible;
  background-image: url("../images/world-next-bg.png");
  background-size: 1995px auto;
  background-position: left calc(50% - 44px) top 0;
  background-repeat: no-repeat;
  padding: 187px 120px 0;
}
@media screen and (max-width: 750px) {
  .p-world__next {
    background-image: url("../images/world-next-bg-sp.png");
    background-size: 696px auto;
    background-position: left calc(50% - 10px) top 0;
    padding: 90px 12px 0;
  }
}
.p-world__next__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .p-world__next__inner {
    max-width: 480px;
    gap: 36px;
  }
}
.p-world__next__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 60px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-world__next__row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 36px;
  }
}
.p-world__next__title {
  flex-shrink: 0;
  display: block;
  margin: 0;
  width: auto;
  height: clamp(36px, 12vw, 80px);
  max-height: 80px;
}
@media screen and (max-width: 750px) {
  .p-world__next__title {
    width: 163px;
    height: auto;
    max-height: none;
  }
}
.p-world__next__list-wrap {
  flex: 1 1 280px;
  max-width: 680px;
  width: 100%;
  padding-top: 36px;
}
@media screen and (max-width: 750px) {
  .p-world__next__list-wrap {
    max-width: none;
  }
}
.p-world__next__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-world__next__item:first-child .p-world__next__link {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 16px 24px;
}
.p-world__next__item:not(:first-child) .p-world__next__link {
  border-bottom: 1px solid var(--black);
  padding: 16px 24px;
}
.p-world__next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__next__link {
    transition: none;
  }
}
.p-world__next__link:hover {
  opacity: 0.6;
}
.p-world__next__link__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}
.p-world__next__meta {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gray);
}
.p-world__next__head {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.4395px;
  color: var(--black);
}
.p-world__next__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000;
}
.p-world__next__status {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: var(--gray);
}
@media screen and (max-width: 750px) {
  .p-world__next__status {
    display: none;
  }
}
.p-world__next__tagline {
  display: flex;
  justify-content: center;
  width: calc(100% + 240px);
  max-width: none;
  margin-top: 80px;
  margin-left: -120px;
  margin-right: -120px;
  padding: 0 0 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 54.327%, rgba(244, 252, 255, 0.5) 77.163%, #cbe6ed 100%);
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-world__next__tagline {
    width: calc(100% + 24px);
    margin-top: 80px;
    margin-left: -12px;
    margin-right: -12px;
    padding: 0 0 61px;
  }
}
.p-world__next__tagline img {
  display: block;
  width: 100%;
  max-width: 1066px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
.p-world__footer {
  background-color: #cbe6ed;
  padding: 48px 50px;
}
@media screen and (max-width: 750px) {
  .p-world__footer {
    padding: 48px 22.5px;
  }
}
.p-world__footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-world__footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.p-world__footer__brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 750px) {
  .p-world__footer__brand {
    display: contents;
  }
}
.p-world__footer__logo {
  display: block;
  line-height: 0;
}
@media screen and (max-width: 750px) {
  .p-world__footer__logo {
    order: 2;
    margin-top: 80px;
  }
}
.p-world__footer__logo img {
  display: block;
  width: 91px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .p-world__footer__logo img {
    width: 81px;
  }
}
.p-world__footer__copy {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: var(--black);
}
@media screen and (max-width: 750px) {
  .p-world__footer__copy {
    order: 3;
    margin-top: 20px;
    text-align: center;
  }
}
.p-world__footer__nav {
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .p-world__footer__nav {
    order: 1;
    align-self: stretch;
  }
}
.p-world__footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 750px) {
  .p-world__footer__links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.p-world__footer__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .p-world__footer__link {
    white-space: normal;
  }
}
.p-world__footer__link {
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-world__footer__link {
    transition: none;
  }
}
.p-world__footer__link:hover {
  opacity: 0.6;
}

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