
.scene-bg {
  background: url(../img/cmn/bg01.png) no-repeat center top, url(../img/cmn/bg.svg) no-repeat center bottom, hsl(194, 100%, 95%);
  background-size: 100%, contain;
  background-blend-mode: normal;
}
.scene__content {
  width: min(1200px, 98%);
  margin-inline: auto;
}
.scene__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .scene__flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .scene__flex {
    flex-direction: column-reverse;
  }
}
.scene__left {
  flex-basis: 48%;
  position: relative;
  flex-basis: 58%;
  width: min(696px, 58%);
}
@media screen and (max-width: 768px) {
  .scene__left {
    width: min(696px, 100%);
  }
}
.scene__right {
  flex-basis: 40%;
  background-color: hsl(172, 39%, 74%);
  width: min(90%,400px);
  padding: 1rem;
  margin-inline: auto;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.scene__tab {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  grid-auto-rows: 68px;
  gap: 1rem 6%;
  background-color: hsl(0, 0%, 100%);
  padding: 16px;
  position: relative;
}
.scene__tab::after {
  content: "";
  display: block;
  background: url(../img/scene/img03.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: calc(100% + 16px);
}
@media screen and (max-width: 1024px) {
  .scene__tab {
    grid-template-columns: repeat(2, 1fr);
  }
}
.scene__li {
  background: #e1e2e1;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.scene__li .ttl {
  font-size: clamp(1rem, 0.82rem + 0.24vw, 1rem);
  line-height: 1.2;
  text-align: center;
  padding-inline: 0.5rem;
  padding-block: 1rem;
  font-weight: 700;
}

.scene__li:hover, .scene__li.active {
  background-color: hsl(179, 40%, 56%);
}
.scene__li:hover .ttl, .scene__li.active .ttl {
  color: hsl(0, 0%, 100%);
}
.scene__swiper {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid hsl(26, 54%, 25%);
  filter: drop-shadow(3px 3px 0px hsl(26, 54%, 25%));
}
.scene .swiper-pagination {
  position: absolute;
  justify-content: flex-end;
  gap:3%;
}

.scene__ttl {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: nowrap;
  font-size: clamp(1.125rem, 0.84rem + 1.21vw, 1.75rem);
  margin-block-end: 1.25rem;
  color: hsl(0, 0%, 100%);
  background-color: hsl(179, 40%, 56%);
  border-radius: 0 0 25px 25px;
  border: 1px solid hsl(26, 54%, 25%);
  padding-inline: 2rem;
  padding-block: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline-start: 10%;
}
.scene__ttl img {
  margin-inline-start: 1.25rem;
}
@media screen and (max-width: 768px) {
  .scene__ttl img {
    height: 24px;
  }
  .scene__ttl{
    margin-inline-start: 4%;
  }

}
.scene__txt {
  font-size: clamp(0.875rem, 0.7rem + 0.73vw, 1.25rem);
  line-height: 1.6;
}
.scene__txt span {
  font-size: clamp(0.875rem, 0.53rem + 1.45vw, 1.625rem);
  border-bottom: 1px solid hsl(26, 54%, 25%);
}