/* ----------------------------------------
MV
---------------------------------------- */
#special-mv {
  width: 100%;
  height: 30rem;
  background-image: linear-gradient(
    130deg,
    rgba(186, 216, 233, 1) 73%,
    rgba(172, 210, 233, 1) 73% 88.5%,
    rgba(163, 204, 230, 1) 88.5%
  );
}

#special-mv .body {
  padding-top: 10rem;
  text-align: center;
}

#special-mv .body h1 {
  font-size: 4.2rem;
  font-weight: bold;
}

#special-mv .body p {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 1.333;
  padding: 0 6rem;
}

/* ----------------------------------------
Tab
---------------------------------------- */
#special-tab {
  padding: 0 6rem;
}

#special-tab .tab-list {
  display: flex;
  max-width: 113rem;
  margin: -4rem auto 0;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 5%);
  background-color: #f2f6f8;
}

#special-tab .tab-list li:nth-of-type(2) {
  border-left: 1px solid #e9ecee;
  border-right: 1px solid #e9ecee;
}

#special-tab .tab-list li {
  width: calc(100% / 3);
  height: 18rem;
  padding-top: 1rem;
  cursor: pointer;
  transition: border 0.12s, background-color 0.12s, color 0.12s;
}

#special-tab .tab-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

#special-tab .tab-list li:hover,
#special-tab .tab-list li.active {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color) !important;
}

#special-tab .tab-list li a > span {
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
}

#special-tab img {
  max-width: 12rem;
  object-fit: contain;
}

/* ----------------------------------------
Contents
---------------------------------------- */

#special-contents {
  margin: 12rem 0 10rem;
  padding: 0 6rem;
}

#special-contents .inner {
  max-width: 138rem;
  margin: 0 auto;
}

#special-contents .tab-content {
  display: none;
}

#special-contents .tab-content.active {
  display: block;
}

#special-contents ul {
  display: flex;
  flex-wrap: wrap;
}

#special-contents .text {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.333;
}

#special-contents .main-list {
  gap: 3rem;
}

#special-contents .main-list li {
  width: calc((100% - 3rem) / 2);
}

#special-contents .main-list figure {
  overflow: hidden;
}

#special-contents .sub-list {
  gap: 6rem 3rem;
  margin-top: 8rem;
}

#special-contents .sub-list li {
  width: calc((100% - 6rem) / 3);
}

#special-contents .main-list a,
#special-contents .sub-list a {
  display: inline;
}

#special-contents .sub-list figure {
  max-width: 44rem;
  max-height: 24.8rem;
  overflow: hidden;
}

#special-contents .main-list img,
#special-contents .sub-list img {
  transition: transform 0.5s ease-out, opacity 0.12s;
}

#special-contents .main-list a.hover img,
#special-contents .sub-list a.hover img {
  /*transform: scale(1.06) rotate(0.1deg);*/
  transform: scale(1.06);
  opacity: 0.8;
}

#special-contents .main-list .text,
#special-contents .sub-list .text {
  display: inline-block;
  transition: color 0.12s;
}

#special-contents .main-list a.hover .text,
#special-contents .sub-list a.hover .text {
  color: var(--main-color);
}
