/* ==========================================================================
   spiderman2026
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --sp26-red: #FF0000;
  --sp26-darkred: #5a0000;
  --sp26-bg-ads: #3d0000;
  --sp26-bg-carbon: #e8e8e8;
  --sp26-bg-history: #111111;
  --sp26-bg-recruit: #0a1428;
  --sp26-text-dark: #1a1a1a;
  --sp26-text-gray: #aaaaaa;
  --sp26-ease: cubic-bezier(0.39, 0.575, 0.565, 1);
}

/* ---------- Base ---------- */
html {
}

#spiderman-2026 {
  background: #000;
  color: #fff;
  font-family: 'Noto Sans JP', Arial, YuGothic, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 20px;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
}

h2, h3, h4 {
  font-weight: 400;
}

.under768, .under1400 { display: none; }

.sp26-carbon__heading,
.sp26-history__heading,
.sp26-recruit__heading,
.sp26-more__heading {
  font-size: 60px;
}
@media screen and (max-width: 1400px) {
  .under1400{ display: block; }
  .over1400{ display: none; }
}
@media screen and (max-width: 768px) {
  #spiderman-2026 {
    line-height: 1.4;
    font-size: 14px;
  }
  .under768 { display: block; }
  .over768 { display: none; }
  .sp26-carbon__heading,
  .sp26-history__heading,
  .sp26-recruit__heading,
  .sp26-more__heading {
    font-size: 28px;
  }
}



#spiderman-2026 #footer {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  position: relative;
  z-index: 10;
}

/* ---------- Header ---------- */
#spiderman-2026 #header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}

#spiderman-2026 #header .header__inner {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#spiderman-2026 #header .header__logo {
  display: inline-block;
}

#spiderman-2026 #header .header__logo img {
  display: block;
  height: auto;
}

#spiderman-2026 .opennavi {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 9999;
}

#spiderman-2026 .opennavi span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  height: 2px;
  background-color: #000;
  width: 100%;
  left: 0;
}

#spiderman-2026 .opennavi span:nth-of-type(1) { top: 2px; }
#spiderman-2026 .opennavi span:nth-of-type(2) { top: 14px; }
#spiderman-2026 .opennavi span:nth-of-type(3) { bottom: 2px; }

#spiderman-2026 .opennavi.active span:nth-of-type(1) {
  transform: rotate(-45deg);
  top: 14px;
  background-color: #fff;
}

#spiderman-2026 .opennavi.active span:nth-of-type(2) { opacity: 0; }

#spiderman-2026 .opennavi.active span:nth-of-type(3) {
  transform: rotate(45deg);
  bottom: 14px;
  background-color: #fff;
}

#spiderman-2026 .navi {
  position: absolute;
  z-index: 10;
  opacity: 0;
  top: 0;
  right: 0;
  background: #000;
  transition: all 0.3s;
  pointer-events: none;
}

#spiderman-2026 .navi .nav_inner {
  padding: 80px 40px;
}

#spiderman-2026 .navi.navi_open {
  opacity: 1;
  z-index: 999;
  pointer-events: auto;
}

#spiderman-2026 .header_nav_list li:nth-of-type(n+2) {
  margin-left: 0;
  margin-top: 30px;
}

#spiderman-2026 .header_nav_list li a {
  display: block;
  font-size: 18px;
  text-align: left;
  transition: 0.3s;
  position: relative;
  padding-right: 25px;
  color: #fff;
  text-decoration: none;
}

#spiderman-2026 .header_nav_list li .triangle {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -7px;
  transition: .3s;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 10%;
    border-right: 2px solid #f00;
    border-top: 2px solid #f00;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
 
    background: none;
}

#spiderman-2026 .header_nav_list li:hover a { color: #f00; }
#spiderman-2026 .header_nav_list li:hover .triangle { border-left-color: #f00; }

@media screen and (max-width: 768px) {
  #spiderman-2026 .nav_btn { top: 18px; right: 10px; }
  #spiderman-2026 .opennavi { height: 19px; }
  #spiderman-2026 .opennavi span { height: 1px; }
  #spiderman-2026 .opennavi span:nth-of-type(1) { top: 1px; }
  #spiderman-2026 .opennavi span:nth-of-type(2) { top: 9px; }
  #spiderman-2026 .opennavi span:nth-of-type(3) { bottom: 1px; }
  #spiderman-2026 .opennavi.active span:nth-of-type(1) { top: 10px; }
  #spiderman-2026 .opennavi.active span:nth-of-type(3) { bottom: 8px; }
  #spiderman-2026 #header .header__inner {
    padding: 10px;
  }
  #spiderman-2026 #header .header__logo{
    width: 100px;
  }
  #spiderman-2026 #header .header__logo img {
    width: 100%;
    height: auto;
  }
}

/* ---------- Responsive helpers ---------- */
.sp26-is-pc { display: block; }
.sp26-is-sp { display: none; }

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

/* ---------- Section base ---------- */
.sp26-section {
  position: relative;
  overflow: hidden;
}

.sp26-section.sp26-history {
  overflow: visible;
}
.sp26-section-snap{
height: 100dvh;
overflow-x: hidden;
overflow-y: scroll;
scroll-snap-type: y proximity;
overscroll-behavior-y: contain;
scrollbar-width: none;
}
.sp26-section-snap::-webkit-scrollbar {
display: none;
}
.sp26-section-snap .sp26-section{
scroll-snap-align: none;
scroll-snap-stop: normal;
height: 100dvh;
min-height: 700px;
}
.sp26-section-snap .sp26-carbon{
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.sp26-section-snap .sp26-history,
.sp26-section-snap .sp26-recruit,
.sp26-section-snap .sp26-more{
  height: auto;
  min-height: auto;
}
/* ==========================================================================
   HERO
   ========================================================================== */
.sp26-hero {
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.sp26-section-snap .sp26-section.sp26-hero{
  height: auto;
  min-height: auto;
}

.sp26-hero__bg {
  /* max-width: 2000px; */
  width: 100%;
  z-index: 0;
  margin: 80px auto 0;
}

.sp26-hero__bg picture {
  display: block;
  width: 100%;
}

.sp26-hero__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.sp26-hero__bottom {
  background: #000;
  padding: 12px 0 20px;
  width: 100%;
  position: relative;
  margin-top: -4px;
  z-index: 10;
}

.sp26-hero__bottom .sp26-hero__bottominner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.sp26-hero__bottominner .copy{
  display: none;
}

.sp26-hero__logo {
  text-align: center;
}

.sp26-hero__cta {
  position: absolute;
  right: 50px;
  top: 10px;
}

.sp26-hero__cta img,
.sp26-hero__logo img {
  max-width: 100%;
  height: auto;
}

.sp26-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 888;
  pointer-events: none;
}

.sp26-hero__tagline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  top: -2%;
}

.sp26-hero__tagline img {
  width: 100%;
  height: auto;
  pointer-events: auto;
}

.sp26-hero__cta a:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1400px) {
  .sp26-hero__logo img {
    width: 100%;
    height: auto;
  }
  .sp26-hero__cta{
    right: 0;
    width: 150px;
  }
  .sp26-hero__logo{
    width: 500px;
    margin: auto;
  }

}

@media screen and (max-width: 768px) {
  .sp26-hero__bg{
    margin: 50px auto 0;
  }
  .sp26-hero {
    min-height: 467px;
  }
  .sp26-hero__bottom{
    padding: 10px 0 ;
    margin-top: 0;
  }
  .sp26-hero__bottom .sp26-hero__bottominner {
    padding: 0 20px;
  }
  .sp26-hero__bottominner .copy{
    display: block;
    font-size: 6px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: right;
  }

  .sp26-hero__cta img {
    width: 192px;
  }
  .sp26-hero__cta {
    position: unset;
    margin: -5px auto ;
    text-align: center;
  }
  .sp26-hero__tagline {
    top: -15%;
  }
  .sp26-hero__tagline img{
    width: 100%;
    height: auto;
  }
  .sp26-hero__logo{
    width: auto;
  }

}
/* ==========================================================================
   MESSAGE
   ========================================================================== */
.sp26-message {
  background: #fff;
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp26-message__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sp26-message__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.sp26-message__inner{
  max-width: 1920px;
  position: relative;
  max-width: 1920px;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sp26-message__image {
  position: absolute;
  left: 56px;
  top: 90px;
}


.sp26-message__content {
  text-align: center;
  z-index: 1;
}

.sp26-message__text {
  line-height: 2.6;
  margin-bottom: 1.5em;
}

.sp26-message__text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .sp26-message {
    height: auto;
    min-height: 600px;
  }
  .sp26-message__image {
    left: -4px;
    top: 0px;
    width: 170px;
  }
  .sp26-message__image img{
    width: 100%;
    height: auto;
  }
}

/* ==========================================================================
   CARBON NEUTRAL
   ========================================================================== */
@keyframes sp26FadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sp26-carbon {
  background: var(--sp26-bg-carbon);
  color: var(--sp26-text-dark);
  height: 100dvh;
  overflow: hidden;
}

.sp26-carbon-pc-swiper {
  height: 100%;
  min-height: 680px;
}

.sp26-carbon-pc-swiper .swiper-slide {
  display: flex;
  height: 100%;
}

.sp26-carbon-pc-swiper .sp26-carbon__images,
.sp26-carbon-pc-swiper .sp26-carbon__inner {
  opacity: 0;
}

.sp26-carbon-pc-swiper .sp26-carbon__images.sp26-fade-in {
  animation: sp26FadeUp 0.6s ease forwards;
}

.sp26-carbon-pc-swiper .sp26-carbon__inner.sp26-fade-in {
  animation: sp26FadeUp 0.6s ease 0.5s forwards;
}

.sp26-carbon-sp-swiper .sp26-carbon-sp__header,
.sp26-carbon-sp-swiper .sp26-carbon-sp__pillar {
  opacity: 0;
}

.sp26-carbon-sp-swiper .sp26-carbon-sp__header.sp26-fade-in {
  animation: sp26FadeUp 0.6s ease forwards;
}

.sp26-carbon-sp-swiper .sp26-carbon-sp__pillar.sp26-fade-in {
  animation: sp26FadeUp 0.6s ease 0.3s forwards;
}

.sp26-carbon__images {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.sp26-carbon__images picture {
  flex: 2;
  overflow: hidden;
}

.sp26-carbon__images picture + picture {
  flex: 1;
  margin-top: 5px;
}

.sp26-carbon__images picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp26-carbon__inner {
  box-sizing: border-box;
  width: 50%;
  height: 100%;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  padding: 60px;
  overflow-y: scroll;
  scrollbar-width: none
}

.sp26-carbon__header {
  margin-bottom: 48px;
}

.sp26-carbon__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 482px;
}
.sp26-carbon__label img{
  width: 100%;
  height: auto;
}
.sp26-pillar-nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sp26-carbon__pillars::after {
  content: '';
  display: table;
  clear: both;
}

.sp26-pillar-nav__item {
  display: flex;
  align-items: center;
  gap: 50px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--sp26-text-gray);
  transition: color 0.3s;
  justify-content: flex-start;
}

.sp26-pillar-nav__item.is-active {
  color: var(--sp26-text-dark);
}

.sp26-pillar-nav__num {
  line-height: 1;
  width: 78px;
  color: inherit;
  transition: color 0.3s;
}

.sp26-pillar-nav__num img {
  display: block;
  filter: brightness(0) invert(67%);
  transition: filter 0.3s;
}

.sp26-pillar-nav__item.is-active .sp26-pillar-nav__num {
  color: var(--sp26-text-dark);
}

.sp26-pillar-nav__item.is-active .sp26-pillar-nav__num img {
  filter: brightness(0) invert(10%);
}

.sp26-pillar-nav__title {
  font-size: 32px;
  color: inherit;
}

.sp26-pillar-body {
  margin-left: 132px;
}

.sp26-pillar-body__item {
  display: none;
}

.sp26-pillar-body__item.is-active {
  display: block;
}

.sp26-pillar-body__text {
  line-height: 1.8;
  color: var(--sp26-text-dark);
}

.sp26-pillar-body__images {
  display: flex;
  gap: 12px;
}

.sp26-pillar-body__images img {
  width: calc(50% - 6px);
  height: auto;
  display: block;
  object-fit: cover;
}

.sp26-carbon-pagination {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 40px;
}

.sp26-carbon-pagination .swiper-pagination-bullet {
  background: #AFB4BE;
  opacity: 1;
}

.sp26-carbon-pagination .swiper-pagination-bullet-active {
  background: var(--sp26-red);
}

.sp26-carbon__cta-wrap {
  text-align: left;
  margin-top: 48px;
  clear: both;
}

.sp26-carbon__cta {
  display: inline-block;
  background: var(--sp26-red);
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  padding: 18px 60px;
  border-radius: 50px;
  transition: background 0.3s;
}

.sp26-carbon__cta:hover {
  background: #b00810;
}
@media screen and (max-width: 1400px) {
  .sp26-pillar-body .over768{
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .sp26-carbon__inner{padding: 60px 20px;}
}
@media screen and (max-width: 768px) {

  .sp26-carbon__label{
    width: 335px;
  }
  .sp26-carbon {
    height: 100dvh;
    overflow: hidden;
  }
  .sp26-carbon__cta {
    font-size: 14px;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    border-radius: 50px;
  }
}

/* ---------- SP Swiper ---------- */
.sp26-carbon-sp-swiper {
  height: 100%;
  min-height: 680px;
}

.sp26-carbon-sp-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.sp26-carbon-sp__header {
  padding: 30px 20px 25px;
}

.sp26-carbon-sp__pillar {
  padding: 8px 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  color: var(--sp26-text-gray);
  transition: color 0.3s;
}
.sp26-carbon-sp__pillar.is-active {
  overflow-y: auto;
  min-height: 0;
}

/* nth-child + data-slide でアクティブ色を確実に適用（Swiper のクラス操作に依存しない） */
#carbonSpSwiper .swiper-slide:nth-child(1) .sp26-carbon-sp__pillar[data-slide="0"],
#carbonSpSwiper .swiper-slide:nth-child(2) .sp26-carbon-sp__pillar[data-slide="1"],
#carbonSpSwiper .swiper-slide:nth-child(3) .sp26-carbon-sp__pillar[data-slide="2"] {
  color: var(--sp26-text-dark);
}

.sp26-carbon-sp__images {
  display: flex;
  gap: 2px;
  height: 14%;
  margin: 20px 0;
}

.sp26-carbon-sp__images picture {
  flex: 2;
  overflow: hidden;
}
.sp26-carbon-sp__images picture + picture {
  flex: 1;
}
.sp26-carbon-sp__images picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp26-carbon-sp__cta-wrap {
  flex-shrink: 0;
  padding: 8px 20px 20px;
}
.sp26-carbon-sp__num{
  line-height: 1;
}

.sp26-carbon-sp__num img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(67%);
  transition: filter 0.3s;
}
.sp26-carbon-sp__pillar.is-active .sp26-carbon-sp__num img,
#carbonSpSwiper .swiper-slide:nth-child(1) .sp26-carbon-sp__pillar[data-slide="0"] .sp26-carbon-sp__num img,
#carbonSpSwiper .swiper-slide:nth-child(2) .sp26-carbon-sp__pillar[data-slide="1"] .sp26-carbon-sp__num img,
#carbonSpSwiper .swiper-slide:nth-child(3) .sp26-carbon-sp__pillar[data-slide="2"] .sp26-carbon-sp__num img {
  filter: brightness(0) invert(10%);
}

.sp26-carbon-sp__title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  color: inherit;
}

.sp26-carbon-sp__text {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  color: inherit;
  margin-top: 6px;
}

.sp26-carbon-sp__pagination {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.sp26-carbon-sp__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #AFB4BE;
  opacity: 1;
  display: inline-block;
  cursor: pointer;
}

.sp26-carbon-sp__pagination .swiper-pagination-bullet-active {
  background: var(--sp26-red);
}
.sp26-carbon-sp__pagination.swiper-pagination-vertical.swiper-pagination-bullets{
  right: 0;
  left: 0;
  top: unset;
  transform: unset;
}

/* @media (prefers-reduced-motion: reduce) {
  .sp26-carbon-pc-swiper .sp26-carbon__images,
  .sp26-carbon-pc-swiper .sp26-carbon__inner {
    opacity: 1;
  }
} */

/* ==========================================================================
   ADS
   ========================================================================== */

   .sp26-ads {
  background: var(--sp26-bg-ads);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 60px 0 80px;
  height: 100dvh;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.sp26-ads__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sp26-ads__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp26-ads__web {
  z-index: 1;
  position: absolute;
  inset: 0;
  background-image: url(/tmeicman/img/spiderman/bg_web.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
}

.sp26-ads__spiderman-top {
  position: absolute;
  top: -30px;
  right: 40px;
  max-width: 26%;
  z-index: 1;
  pointer-events: none;
}

.sp26-ads__spiderman-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 30%;
  z-index: 1;
  pointer-events: none;
}

.sp26-ads__spiderman-top img,
.sp26-ads__spiderman-bottom img {
  width: 100%;
  height: auto;
}

.sp26-ads__inner {
  position: relative;
  max-width: 2740px;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}

.sp26-ads__swiper-wrap {
  position: relative;
  max-width: 711px;
  margin: 0 auto;
  padding-bottom: 106px;
}

.sp26-ads__swiper {
  overflow: visible;
  max-width: 100%;
}

.sp26-ads__swiper .swiper-slide {
  opacity: 0;
  transition: opacity 0.6s;
}

.sp26-ads__swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

/* 非アクティブスライドのコンテンツのみpointer-events無効（スライド要素はSwiperに委ねる） */
.sp26-ads__swiper .swiper-slide:not(.swiper-slide-active) .sp26-ads-slide {
  pointer-events: none;
}

.sp26-ads-slide {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sp26-ads-slide__title {
  font-size: 32px;
  margin-bottom: 70px;
  letter-spacing: 0.05em;
}

.sp26-ads-slide__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.sp26-ads-slide__video-wrap {
  display: block;
}

.sp26-ads-slide__video-wrap img {
  width: 711px;
  max-width: 100%;
  height: auto;
  display: block;
}

.sp26-ads-slide__caption {
  font-size: 13px;
  margin-top: 12px;
  color: rgba(255,255,255,0.8);
}

.sp26-ads-slide__content--graphic {
  gap: 16px;
}

.sp26-ads-slide__graphic-link img {
  width: 711px;
  max-width: 100%;
  height: auto;
  display: block;
}

.sp26-ads-slide__radio-list {
  display: flex;
  height: 400px;
  justify-content: space-between;
  align-items: center;
}

.sp26-ads-slide__radio-info {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.sp26-ads-slide__radio-num {
  font-size: 28px;
  font-weight: bold;
  color: var(--sp26-red);
  font-family: Arial, sans-serif;
  font-style: italic;
}

.sp26-ads-slide__radio-title {
  font-size: 15px;
  font-weight: bold;
}

.sp26-ads-slide__radio-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.3s;
}

.sp26-ads-slide__radio-btn:hover {
  opacity: 0.7;
}

.sp26-ads-slide__radio-icon {
  display: block;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--sp26-red);
  margin-left: 3px;
}

.sp26-ads-pagination.swiper-pagination {
  bottom: 10px;
}

.sp26-ads-pagination .swiper-pagination-bullet {
  background: #333;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.sp26-ads-pagination .swiper-pagination-bullet-active {
  background: #FF0000;
}

.sp26-ads-btn-prev,
.sp26-ads-btn-next {
  position: absolute;
  top: 64%;
  transform: translateY(-50%);
  width: 30px;
  height: 50px;
}

.sp26-ads-btn-next {
  right: -80px;
}

.sp26-ads-btn-prev {
  left: -80px;
}

.sp26-ads-btn-prev::after,
.sp26-ads-btn-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/tmeicman/img/spiderman/nav_slider_arrow.png) no-repeat center / contain;
}

.sp26-ads-btn-prev::after {
  transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
  .sp26-section-snap .sp26-section.sp26-ads{
    min-height: 100dvh;
  }
  .sp26-ads {
    height: auto;
  }
  .sp26-ads__swiper-wrap {
    max-width: 70vw;
    padding-bottom: 100px;
  }
  .sp26-ads-slide__title {
    font-size: 20px;
    margin-bottom: 55px;
  }
  .sp26-ads__spiderman-top {
    top: -20px;
    right: -20px;
    max-width: 53%;
  }
  .sp26-ads__spiderman-bottom {
    max-width: 57%;
    left: -40px;
  }
  .sp26-ads-slide__video-wrap img {
    width: 100%;
  }
  .sp26-ads-slide__content--graphic {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sp26-ads-slide__radio-list {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  .sp26-ads-slide__radio-item {
    max-width: 340px;
  }
  .sp26-ads-btn-next {
    right: -50px;
  }
  .sp26-ads-btn-prev {
    left: -50px;
  }
}

@media screen and (max-width: 500px) {
  .sp26-ads-slide__radio-item {
    max-width: 240px;
  }
  .sp26-ads-btn-prev,
  .sp26-ads-btn-next {
    width: 12px;
    height: 20px;
    top: 74%;
  }
  .sp26-ads__swiper-wrap {
    padding-bottom: 60px;
  }
  .sp26-ads-btn-next {
    right: -35px;
  }
  .sp26-ads-btn-prev {
    left: -35px;
  }
}

/* ==========================================================================
   HISTORY
   ========================================================================== */
.sp26-history {
  background: #000;
  padding: 80px 0 160px;
  position: relative;
  min-height: 3194px;
}

.sp26-history__bg {
  position: absolute;
  max-width: 1920px;
  inset: 0;
  z-index: 0;
  margin: auto;
  will-change: transform;
}

.sp26-history__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp26-history__inner {
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.sp26-history__label {
  text-align: center;
  margin: 0px auto -20px;
}

.sp26-history__heading {
  text-align: center;
  margin-bottom: 80px;
  text-shadow: 0 0 20px rgba(51,24,2,0.5);
}

.sp26-history__content {
  margin-bottom: 80px;
}

.sp26-history__text {
  line-height: 1.8;
  text-shadow: 0 0 20px rgba(51,24,2,0.5);
  text-align: center;
  margin-bottom: 1.5em;
}

.sp26-history__text:last-child {
  margin-bottom: 0;
}

.sp26-history__timeline {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.sp26-history__year {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 50px;
  justify-content: flex-start;
}

.sp26-history__year:nth-child(even) {
  flex-direction: row;
  justify-content: space-between;
}

.sp26-history__year-content {
  width: 640px;
}

.sp26-history__year-content img {
  width: 100%;
  height: auto;
}

.sp26-history__year-num img {
  max-width: 100%;
  height: auto;
}

.sp26-history__year-num {
  margin-bottom: -33px;
  margin-left: -57px;
}

.sp26-history__year-text {
  font-size: 28px;
  line-height: 2;
}

.sp26-history__year-text span {
  padding: 5px 10px 7px;
  background: rgba(51,24,2,0.6);
}

.sp26-history__video-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.sp26-history__year.year__last {
  display: unset;
  margin: 0 auto;
  text-align: center;
}

.sp26-history__year.year__last .sp26-history__year-text span {
  box-shadow: 0 0 20px rgba(51, 24, 2, 0.6);
}

.sp26-history__year-img {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp26-history__year:nth-child(even) .sp26-history__year-img {
  order: -1;
}

.sp26-history__strings-wrap {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1920px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.sp26-history__string {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}
.sp26-history__string { bottom: -28%; }
.sp26-history__spiderman__box{
  max-width: 1920px;
  position: relative;
  max-width: 1920px;
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
}
.sp26-history__spiderman {
  position: absolute;
  left: 50px;

  max-width: 28%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}


.sp26-history__spiderman.is-visible {
  opacity: 1;
}

.sp26-history__spiderman img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 2000px) {
  .sp26-section-snap .sp26-history{
    min-height: 2770px;
  }
}
@media screen and (max-width: 1920px) {
  .sp26-history__strings-wrap{
    bottom: -10%;
  }
}
@media screen and (max-width: 1700px) {
  .sp26-history__strings-wrap{
    bottom: -7%;
  }
}
@media screen and (max-width: 1600px) {
  .sp26-history__strings-wrap{
    bottom: 0;
  }
}
@media screen and (max-width: 1350px) {
  .sp26-history__string{
    bottom: -20%;
  }
}
@media screen and (max-width: 1024px) {
  .sp26-history__spiderman {
    bottom: -280px;
  }
  .sp26-history__string{
    bottom: -26%;
    left: -10%;
    width: 120%;
  }
}
@media screen and (max-width: 768px) {
  .sp26-section-snap .sp26-history{
    min-height: 3100px;
  }
  .sp26-history {
    padding: 40px 0 120px;
  }
  .sp26-history__inner {
    padding: 0 20px;
  }
  .sp26-history__label {
    width: 200px;
    margin: 0px auto -12px;
  }
  .sp26-history__label img {
    width: 100%;
    height: auto;
  }
  .sp26-history__heading,
  .sp26-history__content {
    margin-bottom: 48px;
  }
  .sp26-history__year {
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 48px;
    min-height: auto;
  }
  .sp26-history__year:nth-child(even) {
    flex-direction: column-reverse;
  }
  .sp26-history__year-text {
    font-size: 20px;
  }
  
  .sp26-history__year-text span{
    background: rgba(51, 24, 2, 0.6);
  }
  .sp26-history__year-text span.under768{
    display: inline-block;
  }
  .sp26-history__year.year__last .sp26-history__year-text span{
    box-shadow: none;
  }
  .sp26-history__year-content {
    max-width: 640px;
    width: 100%;
    margin: 0 auto 0 0;
  }
  .sp26-history__year-num {
    font-size: 36px;
    margin-bottom: -19px;
    width: 180px;
    margin-left: -35px;
  }
  .sp26-history__year-img {
    flex: none;
    width: 100%;
    order: unset !important;
  }
  .sp26-history__video-wrap img,
  .sp26-history__year-num img {
    width: 100%;
    height: auto;
  }
  .sp26-history__year.year__last .sp26-history__year-num {
    margin: auto;
  }
  .sp26-history__web {
    left: 18px;
    transform: none;
    width: 40px;
  }
  .sp26-history__spiderman {
    max-width: 48%;
    left: 10px;
  }
  .sp26-history__strings-wrap {
    width: 1760px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: auto;
  }
  .sp26-history__string {
    width: 1760px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -11%;
  }
}
@media screen and (max-width: 500px) {
  .sp26-section-snap .sp26-history{
    min-height: 2550px;
  }
  .sp26-history__spiderman {
    max-width: 225px;
    bottom:-190px;
    left: 20px;
  }
  .sp26-history__strings-wrap,
  .sp26-history__string{
    width: 875px;
    margin-bottom: 23%;
  }
}
@media screen and (max-width: 400px) {
  .sp26-section-snap .sp26-history{
    min-height: 2440px;
  }
  .sp26-history__strings-wrap,
  .sp26-history__string{
    margin-bottom: 9%;
  }
}

/* ==========================================================================
   RECRUIT
   ========================================================================== */
@keyframes kiran {
  0%   { transform: scale(2)  rotate(45deg); opacity: 0; }
  20%  { transform: scale(20) rotate(45deg); opacity: 0.6; }
  40%  { transform: scale(30) rotate(45deg); opacity: 0.4; }
  80%  { transform: scale(45) rotate(45deg); opacity: 0.2; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

.sp26-recruit {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp26-recruit__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.sp26-recruit__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 0;
}

.bnr_sp26-recruit {
  max-width: 700px;
}

.bnr_sp26-recruit img {
  width: 100%;
  height: auto;
}

.bnr_sp26-recruit + .bnr_sp26-recruit {
  margin-top: 40px;
}
.bnr_sp26-recruit + .bnr_sp26-recruit img{
  border: 1px solid #000;
}

.bnr_sp26-recruit a {
  opacity: 1;
  overflow: hidden;
  display: block;
  position: relative;
  cursor: pointer;
  width: 100%;
  margin: auto;
}

.bnr_sp26-recruit a img {
  width: 100%;
  height: auto;
}

.bnr_sp26-recruit a::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.bnr_sp26-recruit a:hover::before {
  animation: kiran 0.8s linear;
}

.sp26-recruit__heading,
.sp26-more__heading {
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sp26-recruit__content {
    padding: 80px 20px;
  }
  .sp26-recruit__heading,
  .sp26-more__heading {
    margin-bottom: 48px;
  }
  .bnr_sp26-recruit + .bnr_sp26-recruit {
    margin-top: 32px;
  }
}

/* ==========================================================================
   MORE
   ========================================================================== */
#spiderman-2026 .sp26-more {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #fff;
}
#spiderman-2026 .sp26-more .sp26-more__padding{
  padding: 120px 0;
}
#spiderman-2026 .sp26-more__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#spiderman-2026 .sp26-more__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#spiderman-2026 .sp26-more__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
}

#spiderman-2026 .sp26-more__list {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  position: relative;
  z-index: 2;
  list-style: none;
  justify-content: center;
}

#spiderman-2026 .sp26-more__list + .sp26-more__list {
  margin-top: 64px;
}

#spiderman-2026 .sp26-more__item {
  max-width: 300px;
}

#spiderman-2026 .sp26-more__item a {
  display: block;
  text-decoration: none;
}

#spiderman-2026 .sp26-more__item img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}

#spiderman-2026 .sp26-more__item div {
  overflow: hidden;
}

#spiderman-2026 .sp26-more__item:hover img {
  transform: scale(1.1, 1.1);
}

#spiderman-2026 .sp26-more__item p {
  margin-top: 20px;
  text-shadow: 0 0px 16px rgba(37,75,112,0.8);
  text-align: center;
  color: #fff;
}

#spiderman-2026 .sp26-more__external {
  padding-right: 27px;
  background: url(/tmeicman/img/spiderman/icon_blank.svg) no-repeat right center;
  background-size: 17px 15px;
}

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

  #spiderman-2026 .sp26-more .sp26-more__padding{
    padding: 80px 0;
  }
  #spiderman-2026 .sp26-more__list {
    gap: 32px;
  }
  #spiderman-2026 .sp26-more__list + .sp26-more__list {
    margin-top: 32px;
  }
  #spiderman-2026 .sp26-more__item {
    max-width: 222px;
  }
  #spiderman-2026 .sp26-more__external {
    padding-right: 20px;
    background-size: 14px;
  }
}

/* ---------- Modal ---------- */
#spiderman-2026 .modaal-close {
  background-image: url(/tmeicman/img/spiderman/btn_close.png);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
  0%   { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn_hero {
  0%   { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fadeIn,
.fadeIn_hero {
  opacity: 0;
}

.fadeIn.is-active {
  animation: fadeIn .6s forwards;
}

.fadeIn_hero.is-active {
  animation: fadeIn_hero 1s forwards;
}

#sp26-more__list .sp26-more__item:nth-of-type(2),
.bnr_sp26-recruit + .bnr_sp26-recruit {
  animation-delay: 0.3s;
}

.sp26-carbon-sp__cta-wrap{
  animation-delay: 0.5s;
}
#sp26-more__list .sp26-more__item:nth-of-type(3) {
  animation-delay: 0.6s;
}

/* @media (prefers-reduced-motion: reduce) {
  *:not(.swiper-wrapper), *:not(.swiper-wrapper)::before, *:not(.swiper-wrapper)::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
} */


@media (min-width: 2500px){
  /* ベース20px → 25px（1.25倍スケール） */
  #spiderman-2026 {
    font-size: 25px;
  }
  .sp26-carbon__heading,
  .sp26-history__heading,
  .sp26-recruit__heading,
  .sp26-more__heading {
    font-size: 75px;
  }
  #spiderman-2026 #footer {
    font-size: 15px;
  }
  .header_nav_list li a {
    font-size: 22px;
  }
  .sp26-carbon__label {
    font-size: 16px;
  }
  .sp26-pillar-nav__title {
    font-size: 40px;
  }
  .sp26-carbon-sp__title {
    font-size: 25px;
  }
  .sp26-carbon-sp__text {
    font-size: 16px;
  }
  .sp26-ads-slide__title {
    font-size: 40px;
  }
  .sp26-ads-slide__caption {
    font-size: 16px;
  }
  .sp26-ads-slide__radio-num {
    font-size: 35px;
  }
  .sp26-ads-slide__radio-title {
    font-size: 19px;
  }
  .sp26-history__year-num {
    font-size: 45px;
  }
  .sp26-history__year-text {
    font-size: 35px;
  }
  .sp26-history__timeline{
    max-width: 1190px;
  }
  .bnr_sp26-recruit{
    max-width: 800px;
  }
  #spiderman-2026 .sp26-more__item{
    max-width: 400px;
  }
  .sp26-ads__swiper-wrap {
    max-width: 900px;
  }
  .sp26-ads-slide__graphic-link img,
  .sp26-ads-slide__video-wrap img {
    width: 900px;
  }

}