@charset "UTF-8";
/* top */
#header {
  position: fixed;
}

.c-section-inner {
  max-width: 1320px;
}

.title-row-group {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 4rem 8rem;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .title-row-group {
    row-gap: 2.2rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
  }
}
.title-row-group .lead {
  padding-bottom: 0.4em;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .title-row-group .lead {
    padding-bottom: 0;
    font-size: 1.5rem;
  }
}

.main-visual {
  padding: 10rem var(--section-gap) 3rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 1350px) {
  .main-visual {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .main-visual {
    padding-block: 9rem 3.6rem;
  }
}
.main-visual::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.main-visual .bg-layer {
  position: absolute;
  inset: -40px;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
}
.main-visual .bg-layer.active {
  opacity: 1;
}
.main-visual .bg-layer.inactive {
  opacity: 0;
}
.main-visual .scroll-down {
  position: absolute;
  max-width: 1400px;
  width: 100%;
  bottom: 2rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
  text-align: right;
  pointer-events: none;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .main-visual .scroll-down {
    padding: 0 1rem;
    bottom: 0.5rem;
  }
}
.main-visual .scroll-down a {
  display: inline-block;
  position: relative;
  pointer-events: all;
}
.main-visual .scroll-down a:hover .arrow {
  animation: kuikui 1.9s ease-in-out infinite;
}
.main-visual .scroll-down img {
  display: block;
  animation: spin 12s linear infinite;
}
@media screen and (max-width: 767px) {
  .main-visual .scroll-down img {
    width: 8rem;
  }
}
.main-visual .scroll-down .arrow {
  display: block;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .main-visual .scroll-down .arrow {
    top: calc(50% - 0.5rem);
    left: calc(50% - 0.5rem);
    width: 1rem;
    height: 1rem;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes kuikui {
  0% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(6px);
  }
  16% {
    transform: translateY(0);
  }
  24% {
    transform: translateY(6px);
  }
  32% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.main-visual .item img {
  display: block;
  border-radius: 0.8rem;
}
.main-visual .splide__arrow {
  width: 4.6rem;
  height: 4.6rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 2px 2px 6px rgba(51, 51, 51, 0.2);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.main-visual .splide__arrow--prev {
  left: -2.3rem;
}
.main-visual .splide__arrow--prev svg {
  transform: none;
}
.main-visual .splide__arrow--next {
  right: -2.3rem;
}
.main-visual .splide__arrow--next svg {
  transform: rotate(180deg);
}
.main-visual .splide__arrow svg {
  display: block;
  width: 4rem;
  height: auto;
  fill: none;
  stroke: #e72d10;
  stroke-linecap: round;
  stroke-width: 2px;
}
.main-visual .splide__pagination {
  position: static;
  transform: none;
  background-color: transparent;
  border: none;
  gap: 1.6rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .main-visual .splide__pagination {
    margin-top: 1.2rem;
  }
}
.main-visual .splide__pagination li {
  flex: 0 1 auto;
}
.main-visual .splide__pagination__page {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: #fff;
}
.main-visual .splide__pagination__page.is-active {
  background-color: #e72d10;
}

.about {
  position: relative;
}
@media screen and (min-width: 768px) {
  .about {
    overflow: hidden;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-block: 60px 0;
  }
}
.about .about-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about .about-bg {
    inset: 50% 0 auto auto;
  }
}
.about .c-section-title .ttl {
  margin-top: 1rem;
  font-size: min(6.8vw, 7.6rem);
}
@media screen and (max-width: 767px) {
  .about .c-section-title .ttl {
    font-size: 4rem;
  }
}
.about .content {
  padding: 13.8rem 4rem 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about .content {
    padding: 1.8rem 0 0;
  }
}
.about .lead {
  margin-bottom: 4.2rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.14;
}
@media screen and (max-width: 767px) {
  .about .lead {
    margin-bottom: 3rem;
    font-size: 1.5rem;
    line-height: 2;
  }
}

.topics .topics-group {
  display: flex;
  justify-content: space-between;
  gap: 2rem 3rem;
}
@media screen and (max-width: 767px) {
  .topics .topics-group {
    flex-direction: column;
  }
}
.topics .c-section-title .ttl {
  margin-top: 1rem;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .topics .c-section-title .ttl {
    font-size: 3rem;
  }
}
.topics .topics-list {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .topics .topics-list {
    width: 75.8%;
  }
}
.topics .topics-list li {
  padding: 1.8rem 2rem;
  border-top: 1px solid #e0e0e0;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .topics .topics-list li {
    padding: 1.4rem 0;
  }
}
.topics .topics-list li:not(:has(> a)) {
  display: flex;
  align-items: center;
  gap: 0.8rem 1rem;
}
@media screen and (max-width: 767px) {
  .topics .topics-list li:not(:has(> a)) {
    flex-direction: column;
    align-items: flex-start;
  }
}
.topics .topics-list li a {
  display: flex;
  align-items: center;
  gap: 0.8rem 1rem;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .topics .topics-list li a {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-right: 4rem;
  }
}
@media (any-hover: hover) {
  .topics .topics-list li a:hover::after {
    transform: translateX(5px);
  }
  .topics .topics-list li a:hover .txt {
    color: var(--color-red);
  }
}
.topics .topics-list li a::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  background: no-repeat center center/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 12 12' width='12' height='12' fill='%23E72D10'%3E%3Cpath d='M11.2,4.6l-3.3-3.3c-.4-.4-1-.4-1.4,0s-.4,1,0,1.4l2.3,2.3H1.2c-.6,0-1,.4-1,1s.4,1,1,1h7.6l-2.3,2.3c-.4.4-.4,1,0,1.4s.5.3.7.3.5,0,.7-.3l3.3-3.3c.8-.8.8-2,0-2.8Z'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}
@media screen and (max-width: 767px) {
  .topics .topics-list li a::after {
    position: absolute;
    right: 0;
    top: calc(50% - 6px);
  }
}
.topics .topics-list .date {
  flex: 0 0 auto;
  width: 10rem;
  font-family: var(--font-en);
  color: var(--color-gray);
  font-size: 1.4rem;
}
.topics .topics-list .txt {
  flex: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .topics .topics-list .txt {
    font-size: 1.4rem;
  }
}

.future .future-inner {
  display: flex;
  gap: 2rem min(6.5vw, 7rem);
}
@media screen and (max-width: 767px) {
  .future .future-inner {
    flex-direction: column;
  }
}
.future .future-heading {
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .future .future-heading {
    writing-mode: vertical-lr;
  }
}
@media screen and (min-width: 768px) {
  .future .future-heading .ttl {
    margin: -0.06em 0 0 1.6rem;
    letter-spacing: 0.11em;
  }
}
.future .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem 3rem;
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .future .content {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
  }
}
.future .future-video-area {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .future .future-video-area {
    width: calc(var(--section-gap) * 2 + 100%);
    margin-inline: calc(-1 * var(--section-gap));
  }
}
.future .future-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .future .future-video {
    border-radius: 0;
  }
}
.future .future-video picture,
.future .future-video img,
.future .future-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.future .lead {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .future .lead {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .future .more-link {
    margin-top: 1rem;
  }
}

.story .c-section-sub-title {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .story .c-section-sub-title {
    margin-bottom: 2.5rem;
  }
}
.story .article-overlay-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .story .article-overlay-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.6rem;
  }
}
@media screen and (max-width: 540px) {
  .story .article-overlay-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.story .article-overlay-list li {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
}
.story .article-overlay-list a {
  display: block;
}
.story .article-overlay-list a:hover .img img {
  transform: scale(1.05);
}
.story .article-overlay-list .img img {
  display: block;
  width: 100%;
  aspect-ratio: 430/500;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.story .article-overlay-list .txt-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: min(1.9vw, 2.6rem);
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0) 30%, rgba(13, 13, 13, 0.8) 100%);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .story .article-overlay-list .txt-wrap {
    padding: 2rem;
  }
}
.story .article-overlay-list .ttl {
  padding-bottom: min(1.5vw, 2rem);
  border-bottom: 1px solid;
  font-size: min(1.8vw, 2rem);
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .story .article-overlay-list .ttl {
    padding-bottom: 1.8rem;
    font-size: 1.8rem;
  }
}
.story .article-overlay-list .ttl::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 1rem 0 0 auto;
  background: no-repeat center center/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 12 12' width='12' height='12' fill='%23ffffff'%3E%3Cpath d='M11.2,4.6l-3.3-3.3c-.4-.4-1-.4-1.4,0s-.4,1,0,1.4l2.3,2.3H1.2c-.6,0-1,.4-1,1s.4,1,1,1h7.6l-2.3,2.3c-.4.4-.4,1,0,1.4s.5.3.7.3.5,0,.7-.3l3.3-3.3c.8-.8.8-2,0-2.8Z'/%3E%3C/svg%3E");
}
@media screen and (max-width: 1000px) {
  .story .article-overlay-list .ttl::after {
    margin-top: 0.4rem;
  }
}
.story .more-link {
  margin: 3rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .story .more-link {
    text-align: right;
    margin: 4rem 0 8rem;
  }
}
.story .feature-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem min(6.5vw, 9rem);
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .story .feature-group {
    flex-direction: column;
  }
}
.story .feature-group .img {
  flex: 0 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .story .feature-group .img {
    width: 50%;
  }
}
.story .feature-group .img img {
  display: block;
  width: 100%;
  aspect-ratio: 660/370;
  border-radius: 0.8rem;
  object-fit: cover;
  object-position: center bottom;
}
@media screen and (max-width: 767px) {
  .story .feature-group .img img {
    aspect-ratio: 335/140;
  }
}
@media screen and (min-width: 768px) {
  .story .feature-group.-reverse {
    flex-direction: row-reverse;
  }
}
.story .content {
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .story .content {
    width: 100%;
  }
}
.story .feature-link-list {
  border-bottom: 1px solid #e0e0e0;
}
.story .feature-link-list li {
  border-top: 1px solid #e0e0e0;
}
.story .feature-link-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 2rem 2rem 3rem;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .story .feature-link-list a {
    padding-block: 1.6rem;
  }
}
.story .feature-link-list a::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-left: auto;
  background: no-repeat center center/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 12 12' width='12' height='12' fill='%23E72D10'%3E%3Cpath d='M11.2,4.6l-3.3-3.3c-.4-.4-1-.4-1.4,0s-.4,1,0,1.4l2.3,2.3H1.2c-.6,0-1,.4-1,1s.4,1,1,1h7.6l-2.3,2.3c-.4.4-.4,1,0,1.4s.5.3.7.3.5,0,.7-.3l3.3-3.3c.8-.8.8-2,0-2.8Z'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}
.story .feature-link-list a:hover {
  color: var(--color-red);
}
.story .feature-link-list a:hover::after {
  transform: translateX(5px);
}
.story .feature-link-list .index {
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--color-gray);
  font-size: 1.4rem;
  font-family: var(--font-en);
  line-height: 1;
}
.story .feature-link-list .txt {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .story .feature-link-list .txt {
    font-size: 1.6rem;
  }
}

.work {
  padding-block: 80px;
  background: url("/shibuya-redevelopment/assets/images/bg_work.jpg") no-repeat center center/cover;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .work {
    padding-block: 145px 40px;
    background-image: url("/shibuya-redevelopment/assets/images/bg_work_sp.jpg");
  }
}
.work .c-section-title {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .work .c-section-title {
    margin-bottom: 2.2rem;
  }
}
.work .c-section-title .ttl {
  color: inherit;
}

.interview {
  padding-top: 60px;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-top: 50px;
  }
}
.interview .interview-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem min(3vw, 4rem);
}
@media screen and (max-width: 767px) {
  .interview .interview-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
.interview .heading-group .lead {
  margin-top: 4.2rem;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .interview .heading-group .lead {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}
.interview .interview-message {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--color-red);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}
.interview .interview-message::before, .interview .interview-message::after {
  content: "";
  display: block;
  width: 0;
  height: 2.5rem;
  border-left: 1px solid var(--color-base);
}
.interview .interview-message::before {
  transform: skewX(20deg);
  transform-origin: left top;
  margin-right: 1.8rem;
}
.interview .interview-message::after {
  transform: skewX(-20deg);
  transform-origin: left top;
  margin-left: 1.2rem;
}
.interview .interview-list {
  flex: 0 0 auto;
  width: min(60%, 70rem);
}
@media screen and (max-width: 767px) {
  .interview .interview-list {
    width: min(100%, 70rem);
    margin: 0 auto;
  }
}
.interview .interview-list .item a {
  display: block;
  padding-left: min(3vw, 4rem);
  color: inherit;
}
@media screen and (max-width: 767px) {
  .interview .interview-list .item a {
    padding-left: 0;
  }
}
.interview .interview-list .item a:hover .img img {
  transform: scale(1.05);
}
.interview .interview-list .img-wrap {
  position: relative;
}
.interview .interview-list .img {
  border-radius: 0.8rem;
  overflow: hidden;
}
.interview .interview-list .img img {
  display: block;
  will-change: transform;
  transition: transform 0.3s linear;
}
@media screen and (max-width: 767px) {
  .interview .interview-list .img img {
    aspect-ratio: 335/250;
  }
}
.interview .interview-list .ttl {
  position: absolute;
  left: calc(min(3vw, 4rem) * -1);
  bottom: 2rem;
  z-index: 1;
  font-weight: bold;
  font-size: min(2.4vw, 2.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .interview .interview-list .ttl {
    left: -1rem;
    bottom: 1rem;
    font-size: 1.8rem;
    line-height: 1.7;
  }
}
.interview .interview-list .ttl span {
  padding: 0.6rem 1rem;
  background-color: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.interview .interview-list .body {
  border-bottom: 1px solid #b4b4b4;
  padding-block: 1.2rem 1.8rem;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .interview .interview-list .body {
    width: calc(100% - 1rem);
    margin-right: 0;
  }
}
.interview .interview-list .body::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0.4rem 0 0 auto;
  background: no-repeat center center/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 12 12' width='12' height='12' fill='%23E72D10'%3E%3Cpath d='M11.2,4.6l-3.3-3.3c-.4-.4-1-.4-1.4,0s-.4,1,0,1.4l2.3,2.3H1.2c-.6,0-1,.4-1,1s.4,1,1,1h7.6l-2.3,2.3c-.4.4-.4,1,0,1.4s.5.3.7.3.5,0,.7-.3l3.3-3.3c.8-.8.8-2,0-2.8Z'/%3E%3C/svg%3E");
}
.interview .interview-list .body p:not(:last-child) {
  margin-bottom: 0.4rem;
}

.event .more-link {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .event .more-link {
    margin-top: 4.5rem;
    text-align: right;
  }
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.4rem;
  margin: 3.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .event-list {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    margin-top: 2.8rem;
  }
}

.event-item {
  container-type: inline-size;
}
@media screen and (min-width: 768px) {
  .event-item:first-child {
    grid-area: 1/1/3/2;
  }
}
.event-item:first-child a {
  flex-direction: column;
}
.event-item:first-child .img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .event-item:nth-child(2) {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 768px) {
  .event-item:last-child {
    grid-area: 2/2/3/3;
  }
}
.event-item a {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 100%;
  gap: 2rem 2.6rem;
  padding: 2.6rem;
  background-color: #f4f4f4;
  border-radius: 0.8rem;
  color: inherit;
  line-height: 1.6;
}
@container (width <= 470px) {
  .event-item a {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .event-item a {
    padding: 2rem;
    flex-direction: column;
  }
}
.event-item a:hover .img img {
  transform: scale(1.05);
}
.event-item a::after {
  content: "";
  display: block;
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  width: 12px;
  height: 12px;
  background: no-repeat center center/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 12 12' width='12' height='12' fill='%23E72D10'%3E%3Cpath d='M11.2,4.6l-3.3-3.3c-.4-.4-1-.4-1.4,0s-.4,1,0,1.4l2.3,2.3H1.2c-.6,0-1,.4-1,1s.4,1,1,1h7.6l-2.3,2.3c-.4.4-.4,1,0,1.4s.5.3.7.3.5,0,.7-.3l3.3-3.3c.8-.8.8-2,0-2.8Z'/%3E%3C/svg%3E");
}
@media screen and (max-width: 767px) {
  .event-item a::after {
    right: 2rem;
    bottom: 2rem;
  }
}
.event-item .img {
  width: 42.265%;
  flex: 0 0 auto;
  border-radius: 0.8rem;
  overflow: hidden;
  background-color: #ddd;
}
@container (width <= 470px) {
  .event-item .img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .event-item .img {
    width: 100%;
  }
}
.event-item .img img {
  display: block;
  width: 100%;
  aspect-ratio: 254/144;
  transition: transform 0.3s linear;
}
.event-item .date {
  color: var(--color-gray);
  font-family: var(--font-en);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .event-item .date {
    font-size: 1.4rem;
  }
}
.event-item .ttl {
  margin-top: 0.6rem;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .event-item .ttl {
    font-size: 1.8rem;
  }
}
.event-item .txt {
  margin-top: 1rem;
  color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .event-item .txt {
    font-size: 1.4rem;
  }
}
.event-item .area {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-right: 2rem;
  font-weight: bold;
  color: var(--color-red);
}
.event-item .area::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 22px;
  background: no-repeat center center/contain;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23E72D10' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 14 22' width='14' height='22'%3E%3Cpath d='M7,1C3.1,1,0,4.1,0,8c0,6.5,7,13,7,13,0,0,7-6.5,7-13S10.9,1,7,1ZM7,12c-2.2,0-3.9-1.8-3.9-4s1.8-4,3.9-4,3.9,1.8,3.9,4-1.8,4-3.9,4Z'/%3E%3C/svg%3E");
}

.gallery .title-row-group {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .gallery .title-row-group {
    margin-bottom: 3rem;
  }
}

.gallery-video-group {
  padding: 100px var(--section-gap);
  background: url("/shibuya-redevelopment/assets/images/bg_gallery.jpg") no-repeat center center/cover;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .gallery-video-group {
    padding-block: 40px;
    background-image: url("/shibuya-redevelopment/assets/images/bg_gallery_sp.jpg");
  }
}
.gallery-video-group .video-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem min(4vw, 5rem);
}
@media screen and (max-width: 767px) {
  .gallery-video-group .video-group {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
  }
}
.gallery-video-group .video-img {
  flex: 0 0 auto;
  width: 50%;
  max-width: 62rem;
}
@media screen and (max-width: 767px) {
  .gallery-video-group .video-img {
    width: 100%;
    border-radius: 0.8rem;
    max-width: 100%;
  }
}
.gallery-video-group .video-img::after {
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .gallery-video-group .video-img::after {
    width: 6rem;
    height: 6rem;
    background-size: contain;
  }
}
.gallery-video-group .video-img img {
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .gallery-video-group .video-img img {
    width: 100%;
  }
}
.gallery-video-group .video-img:hover::after {
  transform: scale(1.1);
}
.gallery-video-group .video-img:hover img {
  opacity: 0.7;
}
.gallery-video-group .content {
  max-width: calc(50% - 4vw);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .gallery-video-group .content {
    max-width: 100%;
  }
}
.gallery-video-group .ttl {
  width: fit-content;
  margin-bottom: 3.2rem;
  padding: 0.2rem 1rem;
  background-color: #fff;
  color: var(--color-base);
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .gallery-video-group .ttl {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.gallery-video-group .more-link {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .gallery-video-group .more-link {
    text-align: center;
    margin-top: 0;
  }
}
.gallery-video-group .c-text-link {
  color: inherit;
}

.more {
  text-align: center;
}
.more .c-section-title {
  margin-bottom: 2.8rem;
}
.more .c-section-title .ttl {
  margin-top: 1rem;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .more .c-section-title .ttl {
    font-size: 3rem;
  }
}
.more .lead {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .more .lead {
    margin-bottom: 3rem;
    text-align: left;
  }
}

.banner-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.6rem 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--color-gray);
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .banner-link {
    justify-content: flex-start;
    gap: 1.6rem 1.4rem;
    margin: 0;
    font-size: 1.2rem;
  }
}
.banner-link li {
  width: 20.8rem;
}
@media screen and (max-width: 767px) {
  .banner-link li {
    width: calc((100% - 2.8rem) / 3);
  }
}
@media screen and (max-width: 540px) {
  .banner-link li {
    width: calc(50% - 0.7rem);
  }
}
.banner-link a {
  position: relative;
  display: block;
  border-radius: 0.8rem;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  overflow: hidden;
  color: inherit;
}
.banner-link a:hover .txt {
  opacity: 1;
}
.banner-link .img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-link .img img {
  display: block;
  flex: 0 1 auto;
  transition: opacity 0.3s ease;
}
.banner-link .txt {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background-color: rgba(0, 0, 0, 0.76);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .banner-link .txt {
    display: none;
  }
}