* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

main {
  overflow: hidden;
}

.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 1s ease;
}
.header.active {
  top: 0;
}
.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5px 0 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}
.header-logo img {
  height: 35px;
  width: auto;
}
@media screen and (max-width: 992px) {
  .header-logo img {
    height: 35px;
  }
}
.header-menu {
  display: flex;
  list-style: none;
  gap: 0;
}
.header-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  padding: 24px 15px;
  transition: all 0.3s ease;
}
.header-menu li a:hover {
  color: #325260;
}

section,
.plan {
  position: relative;
}

.anchor {
  position: absolute;
  width: 1px;
  height: 0px;
  top: -50px;
  left: 0;
}

#plan {
  top: -120px;
}

#esg {
  top: -120px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #de1f30;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span {
  margin: 2px 0;
  height: 4px;
  width: 26px;
  background: #333;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 0px 30px;
    gap: 0;
    transition: right 0.3s ease;
  }
  .header-menu.active {
    right: 0;
  }
  .header-menu li {
    width: 100%;
    padding: 0px;
    text-align: center;
  }
  .header-menu li:last-child {
    border-bottom: none;
  }
  .header-menu li a {
    display: block;
  }
}
footer {
  background-color: #f3f3f3;
  padding: 15px;
  text-align: center;
  width: 100%;
}
footer .container p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #707070;
}
footer .container a {
  color: #707070;
  text-underline-offset: 3px;
}

.pc {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block !important;
  }
}

.pc-flex {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc-flex {
    display: flex !important;
  }
}

.mb {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .mb {
    display: block !important;
  }
}

[data-aos=fade-in] {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

h2 {
  font-size: 29px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
  letter-spacing: 0.1em;
  color: #325260;
  justify-content: center;
  position: relative;
  padding-left: 60px;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 28px;
  }
}
h2::after {
  content: "";
  width: 242px;
  height: 34px;
  position: absolute;
  left: -40px;
  bottom: -18px;
  background-image: url("./../image/icon-h2.svg");
}

section.index {
  background-color: #000;
  position: relative;
}
section.index .index-content {
  position: absolute;
  top: calc(10% + 70px);
  right: 118px;
  z-index: 3;
  text-align: right;
}
@media screen and (max-width: 992px) {
  section.index .index-content {
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    text-align: center;
    top: 155px;
  }
}
section.index .index-content h1 {
  font-weight: 700;
  font-size: 75px;
  color: #325260;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 992px) {
  section.index .index-content h1 {
    font-size: 37px;
  }
}
@media screen and (max-width: 420px) {
  section.index .index-content h1 {
    font-size: 30.4px;
  }
}
section.index .index-content h1 span {
  color: #de1f30;
}
section.index .index-content p {
  color: #325260;
  font-size: 49px;
  letter-spacing: 0.17em;
  font-weight: 500;
  margin-top: 15px;
}
@media screen and (max-width: 992px) {
  section.index .index-content p {
    font-size: 34px;
  }
}
@media screen and (max-width: 420px) {
  section.index .index-content p {
    font-size: 27px;
  }
}
section.index .index-content img {
  margin-top: 15px;
}
section.index .index-video {
  position: relative;
  height: 100vh;
  width: 100%;
}
@media screen and (max-width: 992px) {
  section.index .index-video {
    height: 100vh;
  }
}
section.index .index-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  section.index .index-video video {
    -o-object-position: top;
       object-position: top;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.foreword {
  padding: 100px 20px;
  text-align: center;
}
section.foreword .container .quote {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.6;
  color: #52af78;
}
section.foreword .container .content {
  max-width: 700px;
  margin: 60px auto 0;
}
section.foreword .container .content h3 {
  color: #373737;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
section.foreword .container .content p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 992px) {
  section.foreword .container .content p {
    font-size: 16px;
  }
}
section.foreword .container .plan {
  margin-top: 80px;
}
section.foreword .container .plan-container {
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  max-width: 930px;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  section.foreword .container .plan-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 50px auto 0;
  }
}
section.foreword .container .plan-item {
  width: 269px;
  color: #6a6a6a;
  height: 180px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  transition: 0.3s;
  margin-bottom: 20px;
  cursor: pointer;
}
section.foreword .container .plan-item-1 .circle {
  background-color: #c3e3e7;
}
section.foreword .container .plan-item-2 .circle {
  background-color: #fccdcd;
}
section.foreword .container .plan-item-3 .circle {
  background-color: #c1e1cc;
}
@media screen and (min-width: 992px) {
  section.foreword .container .plan-item:hover {
    height: 200px;
    transform: translateY(-20px);
    margin-bottom: 0;
  }
}
section.foreword .container .plan-item .circle {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 50%;
}
section.foreword .container .plan-item .btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #325260;
  color: #fff;
  cursor: pointer;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
section.foreword .container .plan-item .btn p {
  font-size: 16px;
}
section.foreword .container .plan-item .year {
  font-family: "ROBOTO" sans-serif;
  font-weight: 700;
  font-size: 37px;
  line-height: 1.4;
}
section.foreword .container .plan-item .info {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}
section.foreword .foreword-dec-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
}
section.foreword .foreword-dec-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15%;
}
section.research {
  padding: 100px 20px;
  background-color: #b3dee6;
  text-align: center;
}
section.research .container {
  max-width: 1170px;
  margin: 60px auto 0;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  section.research .container {
    flex-direction: column;
  }
}
section.research .container .item {
  width: 100%;
  height: 100%;
  aspect-ratio: 350/490;
  display: flex;
  justify-content: center;
  flex-direction: column;
  perspective: 1000px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 992px) {
  section.research .container .item {
    max-width: 350px;
    margin: auto;
  }
}
section.research .container .item .inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 20px #84c7d3;
  border: 9px solid #fff;
  border-radius: 20px;
}
section.research .container .item .front,
section.research .container .item .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 10px;
}
section.research .container .item .back {
  background: white;
  color: #373737;
  transform: rotateY(180deg);
  padding: 21px 11px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
section.research .container .item .back .up {
  padding-bottom: 20px;
  border-bottom: 1px solid #d0d0d0;
}
section.research .container .item .back .up p {
  font-size: 20px;
  line-height: 1.7;
  color: #373737;
}
section.research .container .item .back .down {
  text-align: center;
}
section.research .container .item .back .down h3 {
  color: #325260;
  padding: 8px 24px;
  border-radius: 40px;
  border: 1px solid #325260;
  font-size: 20px;
  display: inline-block;
  text-align: center;
  margin: 20px auto 0;
  line-height: 1;
}
section.research .container .item .back .down p {
  text-align: left;
  line-height: 1.7;
  font-size: 16px;
  color: #373737;
}
section.research .container .item .back .down p.subTitle {
  margin-top: 10px;
  font-weight: 700;
}
section.research .container .item .back .down p.notice {
  color: #52af78;
  font-size: 13.5px;
  padding: 10px;
  margin-top: 5px;
  background-color: #f8f7f7;
  border-radius: 10px;
}
section.research .container .item .front {
  background: linear-gradient(180deg, #ffffff, #90d0a8);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 30px;
}
section.research .container .item .front p {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: #373737;
}
section.research .container .item.active .inner {
  transform: rotateY(180deg);
}
@media screen and (min-width: 992px) {
  section.research .container .item:hover .inner {
    transform: rotateY(180deg);
  }
}
section.research .container .item-1 img {
  width: 219px;
}
section.research .container .item-2 img {
  width: 174px;
}
section.research .container .item-3 img {
  width: 252px;
}
section.body-effects {
  background-color: #e1ddcc;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.body-effects {
    padding: 100px 20px 56px;
  }
}
section.body-effects .container > p {
  font-weight: 700;
  font-size: 30px;
  color: #373737;
  line-height: 1.7;
}
@media screen and (max-width: 992px) {
  section.body-effects .container > p {
    font-size: 20px;
  }
}
section.body-effects .item {
  margin: 40px auto;
  max-width: 740px;
  position: relative;
  z-index: 1;
}
section.body-effects .item svg {
  width: 100%;
  z-index: 1;
  position: relative;
  pointer-events: none;
}
section.body-effects .item .circle {
  cursor: pointer;
  transition: 0.3s;
}
section.body-effects .item .circle:hover {
  background-color: #de1f30;
}
section.body-effects .item .circle-1 {
  width: 21%;
  aspect-ratio: 1;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  top: 10.85%;
  left: 12%;
  border-radius: 50%;
  z-index: 0;
  animation: circle 2s 1s linear infinite;
}
section.body-effects .item .circle-2 {
  width: 21%;
  aspect-ratio: 1;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  top: 10.67%;
  right: 5.4%;
  border-radius: 50%;
  z-index: 0;
  animation: circle 2s 1s linear infinite;
}
section.body-effects .item .circle-3 {
  width: 21%;
  aspect-ratio: 1;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  top: 38.6%;
  left: 0%;
  border-radius: 50%;
  z-index: 0;
  animation: circle 2s 1s linear infinite;
}
section.body-effects .item .circle-4 {
  width: 21%;
  aspect-ratio: 1;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  top: 37.5%;
  right: -0.1%;
  border-radius: 50%;
  z-index: 0;
  animation: circle 2s 1s linear infinite;
}
section.body-effects .item .circle-5 {
  width: 21%;
  aspect-ratio: 1;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  top: 69.6%;
  left: 5.4%;
  border-radius: 50%;
  z-index: 0;
  animation: circle 2s 1s linear infinite;
}
section.body-effects .item .circle-6 {
  width: 21%;
  aspect-ratio: 1;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  top: 69.6%;
  right: 4%;
  border-radius: 50%;
  z-index: 0;
  animation: circle 2s 1s linear infinite;
}
@keyframes circle {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0.1;
    transform: scale(1.3);
  }
}
section.body-effects .body-effects-dec {
  width: 151px;
  position: absolute;
  bottom: 18px;
  left: 10%;
}
section.graph {
  position: relative;
  padding: 150px 25px 60px;
}
@media screen and (max-width: 992px) {
  section.graph {
    padding: 96px 25px 60px;
  }
}
section.graph .container {
  max-width: 783px;
  margin: auto;
}
section.graph .container .title-container {
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  section.graph .container .title-container {
    margin-bottom: 20px;
  }
}
section.graph .container .title-container-1 li:nth-child(1)::before {
  background-color: #7293aa;
}
section.graph .container .title-container-1 li:nth-child(2)::before {
  background-color: #e2707a;
}
section.graph .container .title-container-2 {
  margin-top: 60px;
}
section.graph .container .title-container-2 li:nth-child(1)::before {
  background-color: #e2707a;
}
section.graph .container .title-container .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  section.graph .container .title-container .item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
section.graph .container .title-container h3 {
  font-size: 24px;
  color: #efa03e;
  font-weight: 500;
  line-height: 1.5;
}
section.graph .container .title-container p {
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
  line-height: 1.6;
}
section.graph .container .title-container ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.graph .container .title-container ul li {
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #373737;
}
section.graph .container .title-container ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 30px;
}
section.graph .container .content-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.graph .container .content-container {
    padding: 0 15px;
  }
}
section.graph .container .content-container .border {
  position: absolute;
}
section.graph .container .content-container .item {
  display: flex;
  gap: 10px;
  color: #373737;
}
@media screen and (max-width: 992px) {
  section.graph .container .content-container .item {
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }
}
section.graph .container .content-container .item div {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  section.graph .container .content-container .item div {
    gap: 10px;
  }
}
section.graph .container .content-container .item p {
  font-size: 18px;
  line-height: 1.5;
}
section.graph .container .content-container .item .block {
  width: 0;
  height: 18px;
  background-color: #dcdddd;
  transition: 1s;
}
section.graph .container .content-container .item .block.red {
  background-color: #e2707a;
}
section.graph .container .content-container .item .block.blue {
  background-color: #7293aa;
}
section.graph .container .content-container .item .block.active {
  animation: block 1s 1 linear forwards;
}
@keyframes block {
  0% {
    width: 0;
  }
  100% {
    width: var(--data-num);
  }
}
section.graph .container .content-container-1 .border-1 {
  top: -8px;
  left: -20px;
  width: 343px;
  height: 164px;
  background-image: url("./../image/border-1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
section.graph .container .content-container-1 .border-2 {
  top: 58.4%;
  left: -20px;
  width: 218px;
  height: 43px;
  background-image: url("./../image/border-2.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
section.graph .container .content-container-1 .border-3 {
  top: 83.2%;
  left: -20px;
  width: 272px;
  height: 51px;
  background-image: url("./../image/border-2.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
section.graph .container .content-container-1 .item > div:nth-child(1):not(.block) {
  width: 341px;
}
@media screen and (max-width: 992px) {
  section.graph .container .content-container-1 .item > div:nth-child(1):not(.block) {
    width: 100%;
  }
}
section.graph .container .content-container-1 .item > div:nth-child(2) {
  width: calc(100% - 341px);
}
@media screen and (max-width: 992px) {
  section.graph .container .content-container-1 .item > div:nth-child(2) {
    width: 100%;
  }
}
section.graph .container .content-container-1 .item > div:nth-child(2) p {
  font-weight: 300;
  font-size: 15px;
  color: #6a6a6a;
}
section.graph .container .content-container-2 .border-1 {
  top: 21.5%;
  left: -20px;
  width: 254px;
  height: 42px;
  background-image: url(./../image/border-4.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
section.graph .container .content-container-2 .item > div:nth-child(1):not(.block) {
  width: 257px;
}
@media screen and (max-width: 992px) {
  section.graph .container .content-container-2 .item > div:nth-child(1):not(.block) {
    width: 100%;
  }
}
section.graph .container .content-container-2 .item > div:nth-child(2) {
  width: calc(100% - 257px);
}
@media screen and (max-width: 992px) {
  section.graph .container .content-container-2 .item > div:nth-child(2) {
    width: 100%;
  }
}
section.graph .container .content-container-2 .item > div:nth-child(2) p {
  font-weight: 300;
  font-size: 15px;
  color: #646464;
}
section.graph .graph-dec {
  width: 167px;
  position: absolute;
  bottom: 0;
  right: 10%;
}
section.graph .body-effects-bottom {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
section.quiz {
  background-color: #b3dee6;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  z-index: 2;
}
section.quiz .description {
  margin-top: 40px;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.6;
  color: #373737;
}
@media screen and (max-width: 992px) {
  section.quiz .description {
    text-align: left;
  }
}
section.quiz .container {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 30px;
  max-width: 680px;
  margin: 25px auto 0;
  transition: 0.3s;
}
@media screen and (max-width: 992px) {
  section.quiz .container {
    height: 622px;
    max-width: calc(100% - 0px);
    padding: 30px 0px;
  }
}
@media screen and (max-width: 992px) {
  section.quiz .container .item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
section.quiz .container .content {
  transition: 0.3s;
}
section.quiz .container .content .type-container {
  padding: 0 30px;
}
section.quiz .container .content .type-container-1 img {
  height: 230px;
  width: auto;
}
section.quiz .container .content .type-container-1 p.description {
  text-align: left;
}
section.quiz .container .content .type-container-2 img {
  height: 230px;
  width: auto;
}
section.quiz .container .content .type-container-2 p.description {
  text-align: center;
}
section.quiz .container .content .type-container-3 img {
  height: 216px;
  width: auto;
}
@media screen and (max-width: 992px) {
  section.quiz .container .content .type-container-3 img {
    height: 230px;
  }
}
section.quiz .container .content .type-container-3 p.description {
  text-align: center;
}
section.quiz .container .content .type-container p.type {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #de1f30;
}
section.quiz .container .content .type-container p.title {
  margin-top: 5px;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #325260;
}
section.quiz .container .content .type-container p.description {
  padding: 10px 15px 0;
  color: #373737;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
section.quiz .container .q {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #373737;
  padding: 10px 15px;
}
@media screen and (max-width: 992px) {
  section.quiz .container .q {
    padding: 20px 30px 0;
  }
}
section.quiz .container ul {
  text-align: left;
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin-top: 20px;
  padding: 0 30px;
}
section.quiz .container ul li {
  max-width: 421px;
  width: 100%;
  padding: 16.5px 25px;
  margin: auto;
  color: #373737;
  background-color: #e9f0f1;
  border-radius: 30px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  section.quiz .container ul li {
    padding: 3px 25px;
    height: 60px;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  section.quiz .container ul li:hover {
    background-color: #325260;
    color: #e9f0f1;
  }
}
section.quiz .container .btn-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  color: #325260;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 992px) {
  section.quiz .container .btn-container {
    gap: 30px;
  }
}
section.quiz .container .btn-container .prev {
  display: none;
  align-items: center;
  padding: 5px 15px;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 30px;
}
section.quiz .container .btn-container .prev img {
  width: 14px;
}
@media screen and (min-width: 992px) {
  section.quiz .container .btn-container .prev:hover {
    background-color: #f6f6f6;
  }
}
section.quiz .container .btn-container .again {
  display: flex;
  padding: 5px 15px;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 30px;
}
section.quiz .container .btn-container .again img {
  width: 20px;
}
@media screen and (min-width: 992px) {
  section.quiz .container .btn-container .again:hover {
    background-color: #f6f6f6;
  }
}
section.quiz .quiz-top {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
section.quiz .quiz-1 {
  position: absolute;
  width: 11%;
  z-index: 1;
  right: 0;
  top: 11%;
}
section.quiz .quiz-2 {
  position: absolute;
  z-index: 1;
  width: 9%;
  left: 0;
  bottom: 3%;
}
@media screen and (max-width: 992px) {
  section.quiz .quiz-2 {
    width: 18%;
    bottom: 5%;
  }
}
section.quiz .quiz-3 {
  position: absolute;
  z-index: 1;
  width: 17%;
  bottom: -7%;
  right: 7%;
}
section.quiz .quiz-4 {
  position: absolute;
  z-index: 1;
  width: 20%;
  right: 0;
  bottom: 0%;
}
@media screen and (max-width: 992px) {
  section.quiz .quiz-4 {
    width: 27%;
  }
}
section.white-paper {
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  background-color: #f6f6f6;
  z-index: 1;
}
section.white-paper .subtitle {
  max-width: 700px;
  margin: 60px auto 0;
  color: #373737;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 992px) {
  section.white-paper .subtitle {
    font-size: 21px;
    margin: 50px auto 0;
  }
}
section.white-paper .description {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}
section.white-paper .iframe {
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
  background-color: #dcdddd;
}
section.white-paper .view {
  text-align: right;
  max-width: 900px;
  margin: 10px auto 0;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
section.white-paper .btn {
  margin: 30px auto 0;
  cursor: pointer;
}
section.white-paper .btn a {
  text-decoration: none;
  border-radius: 30px;
  max-width: 421px;
  width: 100%;
  background-color: #325260;
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 16.5px 25px;
  transition: 0.3s;
}
section.white-paper .btn a:hover {
  background-color: rgba(50, 82, 96, 0.85);
}
section.white-paper .white-paper-top {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
section.white-paper .white-paper-1 {
  position: absolute;
  top: 10%;
  left: 2%;
  display: flex;
  flex-direction: column;
  z-index: -1;
  width: 10%;
}
@media screen and (max-width: 992px) {
  section.white-paper .white-paper-1 {
    top: 5%;
  }
}
section.white-paper .white-paper-1 img:nth-child(1) {
  animation: paper-1 2s linear infinite alternate;
  width: 100%;
}
@keyframes paper-1 {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
section.white-paper .white-paper-1 img:nth-child(2) {
  width: 130%;
  transform: translateX(100px) translateY(-30px);
  animation: paper-2 2s linear infinite alternate;
}
@media screen and (max-width: 992px) {
  section.white-paper .white-paper-1 img:nth-child(2) {
    transform: translateX(30px) translateY(-30px);
  }
}
@keyframes paper-2 {
  0% {
    transform: translateX(90px) translateY(-30px);
  }
  100% {
    transform: translateX(100px) translateY(-30px);
  }
}
@media screen and (max-width: 992px) {
  @keyframes paper-2 {
    0% {
      transform: translateX(20px) translateY(-10px);
    }
    100% {
      transform: translateX(30px) translateY(-10px);
    }
  }
}
section.white-paper .white-paper-1 img:nth-child(3) {
  width: 100%;
  animation: paper-1 2s linear infinite alternate;
}
section.white-paper .white-paper-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  display: flex;
  flex-direction: column;
  width: 10%;
  z-index: -1;
}
section.white-paper .white-paper-2 img:nth-child(1) {
  width: 100%;
  transform: translateX(-10px);
  animation: paper-3 2s linear infinite alternate;
}
@keyframes paper-3 {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-10px);
  }
}
section.white-paper .white-paper-2 img:nth-child(2) {
  width: 130%;
  animation: paper-4 2s linear infinite alternate;
  transform: translateX(50px) translateY(-30px);
}
@keyframes paper-4 {
  0% {
    transform: translateX(40px) translateY(-30px);
  }
  100% {
    transform: translateX(50px) translateY(-30px);
  }
}
section.white-paper .white-paper-2 img:nth-child(3) {
  width: 80%;
  transform: translateX(30px);
  animation: paper-5 2s linear infinite alternate;
}
@keyframes paper-5 {
  0% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(20px);
  }
}
section.white-paper .white-paper-3 {
  position: absolute;
  bottom: -12%;
  left: 7%;
  width: 15%;
  z-index: 1;
}
section.article {
  background-color: #fdcbcb;
  text-align: center;
  padding: 100px 15px 80px;
  z-index: 0;
}
section.article h2::after {
  content: "";
  width: 302px;
  height: 34px;
  position: absolute;
  left: -20px;
  bottom: -18px;
  background-image: url("./../image/icon-h2-2.svg");
}
section.article .container {
  max-width: 1266px;
  margin: 50px auto 0;
  padding: 0 5px;
}
section.article .container .slick-prev,
section.article .container .slick-next {
  top: unset;
  bottom: 120px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  section.article .container .slick-prev,
  section.article .container .slick-next {
    bottom: -35px;
  }
}
section.article .container .slick-dots {
  bottom: -35px;
}
section.article .container .slick-prev {
  left: -30px;
}
@media screen and (max-width: 992px) {
  section.article .container .slick-prev {
    left: 5%;
  }
}
section.article .container .slick-next {
  right: -30px;
}
@media screen and (max-width: 992px) {
  section.article .container .slick-next {
    right: 5%;
  }
}
section.article .container .slick-dots li.slick-active button:before {
  color: #eca6ac;
}
section.article .container .slick-dots li button:before {
  color: #ffffff;
}
section.article .container .item {
  padding: 0 16.5px;
}
@media screen and (max-width: 992px) {
  section.article .container .item {
    padding: 10px;
  }
}
@media screen and (max-width: 499px) {
  section.article .container .item {
    padding: 0px;
  }
}
section.article .container .item .up {
  aspect-ratio: 400/260;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
section.article .container .item .up img {
  transition: 0.5s;
}
section.article .container .item .up:hover img {
  transform: scale(1.1);
}
section.article .container .item .down {
  width: 90%;
  background-color: #fff;
  transform: translateY(-20px);
  position: relative;
  z-index: 1;
  margin: auto;
  border-radius: 20px;
  padding: 30px;
  text-align: left;
}
section.article .container .item .down > img {
  height: 16px;
  width: auto;
}
section.article .container .item .down p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
}
section.article .container .item .down a {
  font-size: 14px;
  background-color: #325260;
  padding: 14px 20px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.1em;
  display: inline-flex;
  gap: 9px;
  margin-top: 20px;
  border-radius: 25px;
  transition: 0.5s;
}
section.article .container .item .down a:hover {
  background-color: rgba(50, 82, 96, 0.85);
}
section.article .container .item .down a img {
  height: 12px;
  width: auto;
}
section.article .podcast-container {
  max-width: 640px;
  margin: 80px auto 0;
}
section.article .podcast-container p {
  padding: 0 20px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
  color: #373737;
}
@media screen and (max-width: 992px) {
  section.article .podcast-container p {
    padding: 0;
  }
}
section.article .podcast-container iframe {
  margin-top: 40px;
}
section.article .article-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
section.esg {
  background-color: #fdcbcb;
  text-align: center;
  padding: 0 20px 150px;
}
section.esg .container {
  max-width: 900px;
  margin: 0 auto;
}
section.esg .container .item {
  display: flex !important;
  align-items: center;
  gap: 30px;
  padding: 60px 30px 50px;
}
@media screen and (max-width: 992px) {
  section.esg .container .item {
    flex-direction: column-reverse;
    padding: 60px 15px 50px;
  }
}
section.esg .container .item > div:nth-child(1) {
  width: 55%;
  text-align: left;
}
@media screen and (max-width: 992px) {
  section.esg .container .item > div:nth-child(1) {
    width: 100%;
  }
}
section.esg .container .item > div:nth-child(1) .year {
  font-size: 26px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 992px) {
  section.esg .container .item > div:nth-child(1) .year {
    text-align: center;
  }
}
section.esg .container .item > div:nth-child(1) ul {
  margin-top: 15px;
}
section.esg .container .item > div:nth-child(1) ul li {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 25px;
}
section.esg .container .item > div:nth-child(1) ul li::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #373737;
  display: block;
  border-radius: 10px;
  left: 10px;
  top: 11px;
}
section.esg .container .item > div:nth-child(2) {
  width: 45%;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.esg .container .item > div:nth-child(2) {
    width: 100%;
    padding: 10px;
  }
}
section.esg .container .item > div:nth-child(2) img:not(.esg-dec) {
  aspect-ratio: 363/255;
  -o-object-fit: fill;
     object-fit: fill;
  border: 10px solid #fff;
  transform: rotate(-6deg);
}
section.esg .container .item > div:nth-child(2) .esg-dec {
  position: absolute;
  left: -12%;
  bottom: -17%;
  width: 100px;
  z-index: 1;
  animation: esg 1.5s linear infinite alternate;
}
@keyframes esg {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
section.esg .slick-prev,
section.esg .slick-next {
  top: 50%;
  transform: translate(-50%);
  z-index: 1;
}
@media screen and (max-width: 992px) {
  section.esg .slick-prev,
  section.esg .slick-next {
    top: calc(71vw + 45px);
    transform: translate(0);
  }
}
section.esg .slick-dots {
  bottom: -35px;
}
section.esg .slick-prev {
  left: -50px;
}
@media screen and (max-width: 992px) {
  section.esg .slick-prev {
    left: 0px;
  }
}
section.esg .slick-next {
  right: -50px;
}
@media screen and (max-width: 992px) {
  section.esg .slick-next {
    right: -5px;
  }
}
section.esg .slick-dots li.slick-active button:before {
  color: #eca6ac;
}
section.esg .slick-dots li button:before {
  color: #ffffff;
}
section.footer {
  background-color: #6a6a6a;
}
section.footer .container {
  padding: 30px 20px;
  margin: auto;
  text-align: center;
}
section.footer ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 15px;
}
section.footer ul a {
  color: #fff;
  text-underline-offset: 3px;
  font-size: 17px;
  line-height: 1.5;
}
section.footer p {
  margin-top: 30px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}

.popup-1 {
  position: fixed;
  width: 100%;
  z-index: 11112;
  width: 400px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 20px;
  display: none;
}
@media screen and (max-width: 992px) {
  .popup-1 {
    width: calc(100% - 40px);
  }
}
.popup-1 .up {
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}
.popup-1 .up img {
  height: 60px;
  width: auto;
  display: inline-block;
}
.popup-1 .up p {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
}
.popup-1 .down {
  padding-top: 10px;
}
.popup-1 .down p:nth-child(1) {
  color: #fa5321;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
}
.popup-1 .down p:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fa5321;
  display: block;
  border-radius: 10px;
  left: 10px;
  top: 15px;
}
.popup-1 .down p:nth-child(2) {
  color: #373737;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}
.popup-1 .close {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11113;
  width: 40px;
  height: 40px;
  transform-origin: center;
  cursor: pointer;
}
.popup-1 .close img {
  width: 100%;
  transition: 0.3s;
}
.popup-1 .close:hover img {
  transform: rotate(90deg);
}
.popup-2 {
  position: fixed;
  width: 100%;
  z-index: 11112;
  width: 500px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0px 45px 0;
  border-radius: 20px;
  display: none;
}
@media screen and (max-width: 992px) {
  .popup-2 {
    width: calc(100% - 40px);
    padding: 0px 25px 0;
  }
}
.popup-2 .up {
  text-align: center;
}
.popup-2 .up img {
  width: 378px;
  transform: translateY(-60px);
  border-radius: 20px;
}
@media screen and (max-width: 992px) {
  .popup-2 .up img {
    width: calc(100% - 20px);
  }
}
.popup-2 .down {
  text-align: center;
  transform: translateY(-60px);
  margin-top: 30px;
}
@media screen and (max-width: 992px) {
  .popup-2 .down {
    transform: translateY(-40px);
    margin-top: 0px;
  }
}
.popup-2 .down .year {
  color: #f0a43d;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
}
.popup-2 .down .description {
  margin-top: 10px;
  text-align: left;
  font-size: 18px;
  line-height: 1.8;
}
.popup-2 .close {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11113;
  width: 40px;
  height: 40px;
  transform-origin: center;
  cursor: pointer;
}
.popup-2 .close img {
  width: 100%;
  transition: 0.3s;
}
.popup-2 .close:hover img {
  transform: rotate(90deg);
}

.black {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
  z-index: 11111;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */