#fullpage {
  visibility: hidden; /* 초기 숨김 상태 */
  opacity: 0; /* 투명도 0으로 설정 */
  transition: opacity 0.5s ease-in-out; /* 부드러운 페이드인 효과 */
}

.section {
  overflow: hidden;
  position: relative;
}

.section h2 {
  position: relative;
  display: inline-block;
  /* top: 12vh; */
  left: 0;
}

.section h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1rem;
  border-radius: 1rem;
  background-color: var(--font-point-color);
  z-index: -1;
  transition: all 1s 0.5s;
}

.section.active h2::after {
  right: -2rem;
  width: 1rem;
}

.section h2 p {
  display: inline-block;
  margin-left: 10%;
}

.container {
  position: relative;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 12vh 0 0;
  position: relative;
}

.slide-container {
  position: relative;
  /* max-width: 1400px; */
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 15vh 0 0;
}

.content {
  display: flex;
  height: calc(100% - 7rem);
}

/* 
.wrap{
  height: 100%;
  /* margin: 10vh auto 0; */
/* padding: 12vh 0 0;
  position: relative;
  
} 
*/

.inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  width: 100%;
  max-width: 1400px;
  height: 100%;
  min-height: 50vh;
  margin: 0 auto;
  padding-bottom: 10vh;
  /* padding: 12vh 0 0; */
}

.slide-controls {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.section .swiper-pagination {
  position: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

.section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--font-muted-color);
}

.section .swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  background-color: var(--font-point-color);
  transition: all 0.3s;
}

.slide-controls .swiper-button-next,
.slide-controls .swiper-button-prev {
  position: unset;
  overflow: hidden;
  width: 1rem;
  height: 1rem;
  margin: 0;
  color: var(--font-basic-light-color);
}

.slide-controls .swiper-button-prev::after,
.slide-controls .swiper-button-next::after {
  content: "";
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  border-bottom: 2px solid;
  border-color: var(--font-basic-light-color);
  transition: all 0.5s;
}

.slide-controls .swiper-button-prev::after {
  left: 0;
  border-left: 2px solid;
  transform: rotate(45deg);
}

.slide-controls .swiper-button-next::after {
  right: 0;
  border-right: 2px solid;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1440px) {
  .container,
  .swiper-slide > .inner {
    width: 70%;
  }
  .container {
    max-width: 1200px;
    transform: translateX(5vw);
  }
}

@media screen and (max-width: 1024px) {
  .container,
  .swiper-slide > .inner {
    width: 80%;
  }
  .container {
    transform: translateX(0);
  }
}

@media screen and (max-width: 840px) {
  .container,
  .swiper-slide > .inner {
    width: 90%;
    padding: 10vh 0;
  }

  .container,
  .slide-container {
    padding: 50px 0 0;
    max-width: calc(100vh * 1.4);
  }

  .container {
    height: auto;
  }

  .section h2 {
    margin-bottom: 5rem;
  }

  .slide-controls {
    position: relative;
    width: 80%;
    max-width: 260px;
    z-index: 100;
  }
}

/************************
Home
************************/
.home {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90%;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn_2 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.home-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
  animation: zoomIn 1.5s ease-out both;
}

.home-center {
  width: 100%;
  height: 100%;
  background: url("../images/intro-bg.svg") no-repeat center / contain;
  animation: rotate 100s linear alternate infinite;
}

.home-ttl {
  width: 50%;
  min-width: 250px;
  margin: 2rem;
  animation: zoomIn_2 0.5s ease-out both;
}

.home-txt {
  animation: zoomIn_2 1s 0.5s ease-out both;
  font-size: var(--font-size-m);
}

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

/************************
About
************************/
.section2 > .swiper-slide > .inner {
  width: 80%;
}

#about .bg {
  position: absolute;
  top: 2rem;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../images/background_bi.svg") no-repeat center center / 60%;
  z-index: -1;
  opacity: 0;
  transform: translateX(-100%) scale(0.5) rotate(-360deg);
  transition: all 2s;
}

.active#about .bg {
  opacity: 1;
  transform: translateX(-10%) scale(1) rotate(-180deg);
}

.btn-nav-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
  border-bottom: 2px solid #353232;
  margin-bottom: 3vh;
}

.btn-nav-slide::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 2rem;
  background: url("../images/about/btn-nav-about.svg") no-repeat center /
    contain;
  transition: transform 0.3s ease-out;
}

.btn-nav-slide.about-01::after {
  margin-left: 1.5rem;
}

.btn-nav-slide.about-01:hover::after {
  transform: translateX(1rem);
}

.btn-nav-slide.about-02 {
  flex-direction: row-reverse;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 400;
}

.btn-nav-slide.about-02::after {
  margin-right: 1.5rem;
  transform: rotate(180deg);
}

.btn-nav-slide.about-02:hover::after {
  transform: rotate(180deg) translateX(1rem);
}

#about .bg.next {
  transform: translateX(30%);
}

.about-content {
  width: 100%;
  height: 100%;
}
.titles {
  display: flex;
}
.titles p {
  margin: 2% 0 0 8%;
}
.icon-share {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20% !important;
  height: 20% !important;
}

.icons-field {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 50%;
  margin-right: 5%;
}

.icons-field li {
  margin-top: 1rem;
  margin-right: 1rem;
  text-align: center;
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10vw;
  height: 10vw;
  max-width: 7.5rem;
  max-height: 7.5rem;
  padding: 1rem;
  border-radius: 20px;
  background-color: var(--font-point-color);
  transform: scale(0.8);
  opacity: 0;
}

/* .icon-box img {
  width: 80%;
  height: 80%;
}*/

.icon-box.inflinker img {
  padding: 0 !important;
}

.active .swiper-slide-active .icon-box {
  transform: scale(1);
  opacity: 1;
}

.active .swiper-slide-active .icons-field li:nth-child(1) .icon-box {
  transition: all 1.5s 0.3s;
}

.active .swiper-slide-active .icons-field li:nth-child(2) .icon-box {
  transition: all 1.5s 0.3s;
}

.active .swiper-slide-active .icons-field li:nth-child(3) .icon-box {
  transition: all 1.5s 0.3s;
}

.ttl-field {
  font-size: var(--font-size-m);
  font-weight: 600;
  margin: 0.5rem 0;
}

.txt-field {
  font-size: var(--font-size-xs);
  color: var(--font-muted-color);
}

.about-cont {
  width: 50%;
}

.about-cont h3 {
  margin-bottom: 3vh;
  line-height: 1.5;
}

.cont-ttl {
  opacity: 0;
  transform: translateX(-10%);
  transform-origin: right center;
}

.active .swiper-slide-active .cont-ttl {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s 1s ease-out;
}

.cont-txt {
  line-height: 1.5rem;
  opacity: 0;
  transform: translateX(-10%);
  transform-origin: right center;
}

.active .swiper-slide-active .cont-txt {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s 1.5s ease-out;
}

.about-cont .down {
  width: 60%;
  min-width: 250px;
  margin: 3vh 0 0;
  opacity: 0;
  transform: translateX(-10%);
}

.about-cont .down a {
  padding: 0.8rem 1rem;
  background: #ffffff;
}

.active .swiper-slide-active .about-cont .down {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s 1.5s ease-out;
}

@media screen and (max-width: 840px) {
  .slider_section {
    height: auto !important;
  }

  .slider_section .fp-tableCell {
    height: auto !important;
  }

  .slider_section .swiper-wrapper.section2 {
    display: block;
  }

  .slider_section .section2 > .swiper-slide {
    height: auto;
    min-height: 100vw;
  }

  #about .bg {
    top: 10%;
    right: -10%;
    width: 60%;
    height: 50%;
    background-size: 100%;
  }

  .section2 .inner {
    display: block;
    flex-direction: column;
    height: 100%;
  }

  .icons-field {
    width: 100%;
    margin: 0 0 2rem;
  }

  .icons-field li {
    flex: 1;
    margin: 0 1rem 0.5rem;
  }

  .about-cont {
    width: 100%;
    text-align: center;
  }

  .icon-box {
    width: 30vw;
    height: 30vw;
    margin: 0 auto;
    opacity: 1;
  }

  .icon-box img {
    width: 95%;
  }

  .cont-ttl,
  .cont-txt,
  .about-cont .down {
    opacity: 1;
    transform: translateX(0);
  }

  .about-cont .down {
    margin: 5vh auto 0;
  }
}

@media screen and (max-height: 500px) {
  .slider_section .section2 > .swiper-slide {
    height: auto;
    min-height: unset;
  }
}

/************************
History
************************/
.history-content {
  width: 100%;
  height: 100%;
}

.history h2 {
  /* top: 0;
left: 0; */
}

.timeline-wrap {
  position: relative;
  top: 0;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin-top: calc((var(--font-size-xl) * -1));
  /* margin: 0 3rem; */
  /* padding-top: 9%; */
  overflow: hidden;
}

.timeline {
  height: 100%;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--font-basic-light-color);
}

.timeline-wrap .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5vw;
  height: 100%;
}

.timeline .swiper-wrapper {
}

.history .slide-controls {
  top: 0;
}

.history .swiper-button-next,
.history .swiper-button-prev {
  position: absolute;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  color: #9a9a9a;
  border: 2px solid #9a9a9a;
  opacity: 1;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}

.history .swiper-button-prev::before,
.history .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 45%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--font-point-color);
  transition: all 0.5s;
}

.history .swiper-button-prev::before {
  left: -100%;
}
.history .swiper-button-next::before {
  right: -100%;
}

.history .swiper-button-prev:hover::before {
  left: 0;
  top: 0;
}
.history .swiper-button-next:hover::before {
  right: 0;
  top: 0;
}

.history .swiper-button-prev::after,
.history .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -0.3rem;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 2px solid;
  border-color: #9a9a9a;
  transition: all 0.5s;
}

.history .swiper-button-prev::after {
  left: calc(50% - 0.2rem);
  border-left: 2px solid;
  transform: rotate(45deg);
}

.history .swiper-button-next::after {
  left: calc(50% - 0.4rem);
  border-right: 2px solid;
  transform: rotate(-45deg);
}

.history .swiper-button-prev:hover::after,
.history .swiper-button-next:hover::after {
  border-color: #ffffff;
}

.year {
  position: absolute;
  top: calc(50% - var(--font-size-xl) - 2rem);
  font-size: var(--font-size-xl);
  letter-spacing: -2px;
  font-weight: 700;
}

.detail-history {
  position: absolute;
  top: calc(50% + 2rem);
  display: flex;
  flex-direction: column;
}

.detail-history p {
  position: relative;
  font-size: var(--font-size-s);
  white-space: pre-wrap;
  line-height: 1.5;
}

.detail-history p::before {
  position: absolute;
  content: "•";
  top: 0;
  left: -0.5rem;
}
.detail-history span.aaa {
  font-size: 0.8125rem;
  padding-left: 5%;
  text-indent: 50px;
}

.history .slide-controls .swiper-pagination {
  display: none;
}

@media screen and (max-width: 840px) {
  .section2 .history.inner {
    overflow: hidden;
    /* height: calc(100vh * 1); */
  }

  .timeline-wrap {
    position: static;
    overflow: unset;
    height: 90%;
    margin: 0;
    /* transform: translateY(-8rem); */
  }

  .timeline {
    position: unset;
    height: auto;
  }

  .timeline .swiper-wrapper {
    position: unset;
    top: 0;
  }

  .timeline-wrap .swiper-slide {
    padding-left: 0;
    justify-content: flex-start;
  }

  .year,
  .detail-history {
    position: unset;
    margin-bottom: 2rem;
  }

  .history .slide-controls {
    top: auto;
    margin: 0 auto;
  }

  .history .slide-controls .swiper-pagination {
    position: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    margin: 1.5rem auto;
  }

  .history .slide-controls .swiper-button-next,
  .history .slide-controls .swiper-button-prev {
    position: absolute;
    top: 50%;
    margin-top: -0.5rem;
    overflow: hidden;
    width: 1rem;
    height: 1rem;
    color: var(--font-basic-light-color);
    border: none;
    box-shadow: none;
  }

  .history .slide-controls .swiper-button-prev::before,
  .history .slide-controls .swiper-button-next::before {
    display: none;
  }

  .history .slide-controls .swiper-button-prev::after,
  .history .slide-controls .swiper-button-next::after {
    content: "";
    position: absolute;
    width: 0.3rem;
    height: 0.3rem;
    border-bottom: 2px solid;
    border-color: var(--font-basic-light-color);
    transition: all 0.5s;
  }

  .history .slide-controls .swiper-button-prev::after {
    right: 0;
  }

  .history .slide-controls .swiper-button-next::after {
    left: 0;
  }

  .history .slide-controls .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--font-muted-color);
  }

  .history .slide-controls .swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    background-color: var(--font-point-color);
    transition: all 0.3s;
  }
}

@media screen and (max-width: 840px) {
  .timeline-wrap::before {
    display: none;
  }

  .detail-history {
    top: 50%;
  }
}

@media screen and (max-width: 380px) {
  .section2 > .swiper-slide > .inner {
    width: 90%;
  }

  .detail-history p {
    font-size: var(--font-size-deflaut);
  }
}

/************************
Games
************************/
.gamelist {
  display: flex;
  align-items: center;
}

.gamelist .inner {
  height: auto;
  /* margin-top: 4rem; */
  padding-top: 0;
  right: -100%;
  transition: all 1s ease-out;
}

.active .gamelist .inner {
  right: 0;
}

.gamelist .swiper-slide {
  /* display: flex;
  flex-direction: column; */
}

.gamelist .swiper-slide > div {
  flex: 1;
}

.game-img {
  position: relative;
  width: auto;
  height: 35vh;
}

.game-img img {
  width: 100%;
  height: 100%;
}

.tag {
  position: absolute;
  display: inline-block;
  background: var(--bg-basic-color);
}

.tag span {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-weight: 600;
}

.tag span:first-child:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.2rem;
  width: 2px;
  height: var(--font-size-s);
  margin-top: calc(var(--font-size-s) / 2 * -1);
  background: #6c6969;
}

.game-title {
  font-size: var(--font-size-xl);
  margin: 1rem 0 1.5rem;
}

.game-desc {
  font-size: var(--font-size-s);
  font-weight: 500;
  white-space: pre-wrap;
  line-height: 1.5;
  height: 3rem;
}

.links {
  display: flex;
  margin-top: 2rem;
}

.links a {
  border: 2px solid var(--bg-basic-color);
  padding: 5px 10px;
  margin-right: 0.5rem;
}

.links a:first-child {
  color: #ffffff;
  background-color: var(--bg-basic-color);
}

.gamelist .slide-controls {
  display: none;
}

@media screen and (max-width: 840px) {
  .gamelist {
    align-items: flex-start;
    position: relative;
  }

  .gamelist .inner {
    flex-direction: column;
    right: 0;
  }

  .gamelist .swiper-slide {
    text-align: center;
  }

  .game-img {
    height: auto;
  }

  .links {
    justify-content: center;
  }

  .gamelist .slide-controls {
    display: block;
  }

  .gamelist .swiper-pagination {
    width: 60%;
    margin: 10vh auto;
  }

  .gamelist .swiper-button-next,
  .gamelist .swiper-button-prev {
    position: absolute;
    top: 50%;
    margin-top: -0.5rem;
    overflow: hidden;
    width: 1rem;
    height: 1rem;
    color: var(--font-basic-light-color);
    border: none;
    box-shadow: none;
  }

  .gamelist .swiper-button-prev::before,
  .gamelist .swiper-button-next::before {
    display: none;
  }

  .gamelist .swiper-button-prev::after,
  .gamelist .swiper-button-next::after {
    content: "";
    position: absolute;
    width: 0.3rem;
    height: 0.3rem;
    border-bottom: 2px solid;
    border-color: var(--font-basic-light-color);
    transition: all 0.5s;
  }

  .gamelist .swiper-button-prev::after {
    right: 0;
  }

  .gamelist .swiper-button-next::after {
    left: 0;
  }
}

@media screen and (max-width: 720px) {
  #games.section h2 {
    margin-left: 1.5rem;
  }
}

/************************
Contents.Biz
************************/
.biz {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
}

.biz .inner {
  position: relative;
  width: 100%;
  padding: 5vh 0;
  height: auto;
}

.biz .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: all 0.5s;
}

.biz .swiper-slide-active {
  opacity: 1;
}

.biz-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.biz-txt {
  flex: 1;
  padding-right: 10rem;
  transform: translateX(20%);
  opacity: 0;
  transition: all 1s 0.5s ease-out;
}

.active .biz .swiper-slide-active .biz-txt {
  opacity: 1;
  transform: translateX(0);
}

.biz-main {
  white-space: pre-wrap;
  margin-bottom: 2rem;
}

.biz-desc {
  white-space: pre-wrap;
}

.biz-img {
  flex: 1;
  position: relative;
  max-width: 585px;
  max-height: 563px;
}

.biz-img img {
  width: 100%;
  height: 100%;
}

.biz-thumb {
  opacity: 0;
  transform: scale(0.8) translate(5%, -5%);
  transition: opacity 1s 0.6s, transform 1s 0.6s;
}

.biz-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.biz-bg div {
  position: absolute;
  border-radius: 50%;
  background-color: var(--bg-point-color);
  opacity: 0;
}

.biz-bg .c1 {
  left: 7%;
  top: 0;
  width: 4vw;
  height: 4vw;
  transform: scale(0.8) translate(-100%, 100%);
  transition: opacity 1s 0.6s, transform 1s 0.6s;
}

.biz-bg .c2 {
  left: 0;
  bottom: 0%;
  width: 7vw;
  height: 7vw;
  transform: scale(0.8) translate(100%, 100%);
  transition: opacity 1s 0.5s, transform 1s 0.5s;
}

.biz-bg .c3 {
  right: 0;
  bottom: 5%;
  width: 10vw;
  height: 10vw;
  transform: scale(0.8) translate(100%, -100%);
  transition: opacity 1s 0.3s, transform 1s 0.3s;
}

.biz .slide-controls {
  width: 20%;
  min-width: 260px;
  height: 20px;
  top: auto;
}

.active .swiper-slide-active .biz-thumb,
.active .swiper-slide-active .biz-bg .c1,
.active .swiper-slide-active .biz-bg .c2,
.active .swiper-slide-active .biz-bg .c3 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.biz .swiper-button-prev:hover::after,
.biz .swiper-button-next:hover::after {
  border-color: var(--font-point-color);
}

@media screen and (max-width: 840px) {
  .biz .inner {
    display: block;
    padding: 10vh 0 20vh;
  }

  .biz-item {
    flex-direction: column-reverse;
  }

  .biz-txt {
    padding: 0;
    width: 70%;
    text-align: center;
  }

  .biz-img {
    width: 60%;
    margin-bottom: var(--font-size-xl);
  }

  .biz-bg .c1 {
    transition: opacity 1s 0.4s, transform 1s 0.4s;
  }

  .biz-bg .c2 {
    transition: opacity 1s 0.2s, transform 1s 0.2s;
  }

  .biz-bg .c3 {
    transition: opacity 1s, transform 1s;
  }

  .biz .slide-controls {
    height: auto;
    min-width: 80%;
    margin: 10vh auto 0;
  }

  .biz .swiper-button-next,
  .biz .swiper-button-prev {
    position: relative;
  }

  .biz .swiper-button-prev::after {
    left: 2px;
  }

  .biz .swiper-button-next::after {
    right: 2px;
  }
}

@media screen and (max-width: 480px) {
  .biz .inner {
    padding: 0;
  }
}

/************************
PR
************************/
.publicrelations {
  display: flex;
  flex-direction: column;
  margin-top: 7vh;
}

.publicrelations .inner {
  flex-direction: column;
}

.search {
  display: flex;
  align-items: center;
  position: absolute;
  top: calc(-4 * var(--font-size-deflaut));
  right: 0;
  padding: 0.5rem;
  border-bottom: 2px solid var(--bg-light-color);
}

.search label {
  font-weight: 500;
  line-height: 1;
  margin-right: 1rem;
}

.search input[type="text"] {
  border: none;
  outline: none;
  font-size: var(--font-size-deflaut);
}

.btn-search {
  width: 20px;
  height: 20px;
  font-size: 0;
  background: url("../images/icon-search.svg") no-repeat center / 100% 100%;
}

.pr-list {
  width: 100%;
}

.pr-list li {
}

.empty_li {
  position: relative;
  text-align: center;
  list-style: none;
}

#irstock .empty_li {
  font-weight: 500;
}

.pr-item {
  display: flex;
  justify-content: space-between;
  padding: 2.5vh 0;
  border-bottom: 1px solid var(--bg-light-color);
}

.pr-id {
  margin: 0 1vw;
  flex-basis: 80px;
  text-align: center;
}

.pr-link {
  font-size: var(--font-size-l);
  flex: 9;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s;
}

.pr-link:hover {
  color: var(--font-point-color);
}

.pr-date {
  flex: 1;
  text-align: right;
}

.pr-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5vh auto;
  max-width: 80%;
}

.pr-pagination button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0 0.5rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.3s;
}

.pr-pagination button:hover,
.pr-pagination button.active {
  color: #ffffff;
  background: var(--bg-point-color);
}

button.pr-prev,
button.pr-next {
  font-size: 0;
}

button.pr-prev:hover,
button.pr-next:hover {
  background: transparent;
}

.pr-prev::after,
.pr-next::after {
  content: "";
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  border-bottom: 2px solid;
  border-color: #9a9a9a;
  transition: all 0.5s;
}

.pr-prev::after {
  left: calc(50% - 0.2rem);
  border-left: 2px solid;
  border-color: #9a9a9a;
  transform: rotate(45deg);
}

.pr-next::after {
  right: calc(50% - 0.2rem);
  border-right: 2px solid;
  border-color: #9a9a9a;
  transform: rotate(-45deg);
}

.pr-prev:hover::after,
.pr-next:hover::after {
  border-color: var(--font-point-color);
}

@media screen and (max-width: 840px) {
  .pr-link {
    padding-right: 10vw;
    font-size: var(--font-size-default);
  }

  .publicrelations {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .pr-id {
    flex-basis: 50px;
  }
}

/************************
IR
************************/
.tabs {
  position: absolute;
  right: 0;
  top: 10vh;
}

.tabs button {
  position: relative;
  padding: 1rem 2vw;
  font-size: var(--font-size-l);
  font-weight: 600;
}

.tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 5px;
  opacity: 0;
  background: var(--bg-point-color);
  transition: all 0.2s;
}

.tabs button.active::after,
.tabs button:hover::after {
  bottom: 0;
  opacity: 1;
}

.tabs button.disabled {
  pointer-events: none;
  color: var(--font-basic-light-color);
}

.tabs button.disabled::after {
  display: none;
}

.tabcontent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  margin-top: 15px;
}

.investorrelations {
  /* height: 100%; */
  margin-top: 3vh;
}

.left-cont {
  max-width: 250px;
  width: 15%;
  margin-top: 1rem;
}

.right-cont {
  width: 100%;
  margin-left: 3rem;
  color: #6c6c6c;
}

.left-cont h3 {
  margin-bottom: 1rem;
}

.select-year {
  font-size: var(--font-size-deflaut);
  width: 100%;
  border: none;
  border-bottom: 3px solid #353232;
  padding: 0.5rem;
  outline: none;
}

.select-year option {
  font-size: var(--font-size-deflaut);
}

.default-date {
  float: right;
  height: var(--font-size-s);
  margin-bottom: 1rem;
  font-size: var(--font-size-s);
  color: var(--font-muted-color);
  text-align: right;
}

/* stock */
#irstock {
  align-items: flex-start;
  height: 100%;
  min-height: 75vh;
}

.stock-content {
  display: flex;
  width: 100%;
  /* height: 100%; */
}

.stock-info {
  width: 20%;
  flex-basis: 200px;
}

.stock-name {
  display: flex;
  align-items: center;
  font-size: var(--font-size-l);
  font-weight: 600;
}

.stock-number {
  font-size: var(--font-size-xs);
  color: var(--font-muted-color);
  margin-left: 0.5rem;
  font-weight: 400;
}

.stock-price {
  margin-bottom: 2rem;
  font-size: var(--font-size-xl);
  font-weight: 600;
  letter-spacing: -0.1rem;
}

.stock-info .change {
  font-size: var(--font-size-deflaut);
  color: #000000;
  padding-bottom: 0.5rem;
}

.stock-info .label {
  display: inline-block;
  font-size: var(--font-size-deflaut);
  width: 30%;
}

.stock-info .change .per {
  position: relative;
  padding-left: 34px;
  color: #9a9a9a;
}

.stock-info .change .per.on {
  display: inline;
}

.stock-info .change .per.color-same {
  position: relative;
  padding-left: 34px;
  color: #9a9a9a;
}

.stock-info .change .per.color-up {
  position: relative;
  padding-left: 34px;
  color: #ff002a;
}

.stock-info .change .per.color-down {
  color: #1280d5;
}

.stock-info .change .per:before {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -4px;
  left: 19px;
  width: 0px;
  height: 0px;
  border-left: 4px solid transparent;
  border-bottom: 8px solid red;
  border-right: 4px solid transparent;
}

.stock-info .change .per.color-down:before {
  border-top: 8px solid #1280d5;
  border-bottom: none;
}

.stock-info .change .per.color-same:before {
  top: 0;
  margin-top: 0;
  content: "-";
  border: none;
}

.stock-detail {
  display: flex;
  flex-direction: column;
}

.stock-detail .date {
  display: inline-block;
  font-size: var(--font-size-s);
}

.boardwrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.board {
  min-height: 50vh;
}

.innerWrap {
  height: 55vh;
  padding: 1rem;
  overflow-y: scroll;
  border: 1px solid var(--bg-light-color);
  border-top: 3px solid #000000;
}

.innerWrap::-webkit-scrollbar {
  width: 10px;
  background-color: #ededed;
}

.innerWrap::-webkit-scrollbar-thumb {
  background-color: var(--bg-point-color);
  border-radius: 5px;
}

.regulationsDetail {
  font-size: var(--font-size-s);
  color: #000;
  line-height: 1.3;
  word-wrap: break-word;
}

.regulationsDetail h5 {
  text-align: center;
  font-size: var(--font-size-l);
  font-weight: 600;
  margin-bottom: 1rem;
}

.regulationsDetail p {
  margin: 1rem 0 0.5rem;
}

.btn-popup {
  padding: 0.4rem 0.8rem;
  border: 1px solid #d9d9d9;
}

.btn-disclaimer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  letter-spacing: -1px;
}

.btn-disclaimer::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  background: url("../images/alert-circle.svg") no-repeat 0 0 / contain;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 900;
  transition: all 0.3s;
  display: none;
  opacity: 0;
}

.mask.show {
  opacity: 1;
  display: block;
}

.mask.hide {
  opacity: 0;
  display: none;
}

.popup {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30vw;
  height: auto;
  padding: 1.5rem 2rem 2.5rem;
  background: #ffffff;
  border-radius: 10px;
  text-align: right;
  z-index: 900;
  border: 2px solid var(--bg-light-color);
  transform: translate(-50%, -50%);
}

.btn-close {
  width: 1rem;
  height: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0;
  background: url("../images/btn-close.svg") no-repeat 0 0 / contain;
}

.popup-txt {
  text-align: left;
  font-size: var(--font-size-s);
  font-weight: 500;
}

.hidden {
  height: 100%;
  min-height: 100%;
  overflow: hidden !important;
  touch-action: none;
}

.notice-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 900;
  transition: all 0.3s;
  display: none;
  opacity: 0;
}

.notice-mask.show {
  display: block;
  opacity: 1;
}

.notice-popup {
  position: absolute;
  overflow-y: scroll;
  left: 50%;
  top: 50%;
  width: 80vw;
  max-width: 720px;
  height: 80vh;
  background: #ffffff;
  border-radius: 10px;
  text-align: right;
  z-index: 900;
  border: 2px solid var(--bg-light-color);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}

.notice-popup.show {
  opacity: 1;
}

.notice-popup-top {
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
}

.notice-btn-close {
  width: 1rem;
  height: 1rem;
  margin: 1rem 1rem 1.5rem 0;
  font-size: 0;
  background: url("../images/btn-close.svg") no-repeat 0 0 / contain;
}

.notice-popup-txt {
  padding: 0.5rem 2rem 2.5rem;
  text-align: left;
  font-size: var(--font-size-s);
  font-weight: 500;
  word-break: break-all;
}

.notice-popup-txt strong {
  font-size: var(--font-size-deflaut);
}

.notice-hidden {
  height: 100%;
  min-height: 100%;
  overflow: hidden !important;
  touch-action: none;
}

@media screen and (max-width: 840px) {
  .tabs {
    position: unset;
    display: flex;
    justify-content: center;
  }

  .tabs button {
    position: relative;
    padding: 1rem 20px;
  }

  .left-cont {
    width: 200px;
    max-width: none;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .btn-disclaimer {
    float: right;
  }

  .popup {
    width: 50%;
    min-width: 300px;
  }

  .popup-txt {
    text-align: center;
  }

  .notice-popup {
    width: 80%;
  }

  .stock-content {
    flex-direction: column;
    align-items: center;
  }

  .right-cont {
    margin-left: 0;
  }

  .stock-current {
    display: flex;
    justify-content: center;
  }

  .stock-info {
    width: 100%;
    flex-basis: unset;
    margin-bottom: 2rem;
  }

  .stock-name {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .stock-chart {
    text-align: left;
  }

  .stock-price {
    margin: 0 5vw 0 0;
  }
}

@media screen and (max-width: 720px) {
  .tabs {
    flex-wrap: wrap;
  }

  .tabs button {
    padding: 1rem 8px;
    width: 33.33%;
    font-size: 95%;
    word-break: keep-all;
  }
}

/************************
Contact
************************/
#contact .inner {
  flex-direction: column;
}

.contact {
  margin-top: 4vh;
}

.map-info {
  width: 100%;
  position: relative;
}

.map {
  width: 100%;
  height: 55vh;
  background: #ddd;
}

.addr {
  position: absolute;
  top: calc(100% - 20%);
  left: 2rem;
  width: 35%;
  background: var(--bg-basic-color);
  color: #ffffff;
  padding: 1.5rem 1.5rem 3rem 1.5rem;
  z-index: 100;
  transition: left 1s;
}

.addr p {
  font-size: var(--font-size-m);
  margin-bottom: 1rem;
  font-weight: 600;
}

.addr address {
}

.contact-info {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 1rem;
}

.contact-info li:not(:first-child) {
  margin-left: 3rem;
}

.contact-info li strong {
  margin-right: 1rem;
}

@media screen and (max-width: 840px) {
  #contact .inner {
    align-items: flex-end;
  }

  .contact {
    margin-top: 0;
    margin-bottom: 10vh;
  }

  .addr {
    top: 100%;
    left: 0;
    width: 50%;
  }

  .contact-info {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 50%;
    padding-left: 2rem;
  }

  .contact-info li {
    margin-bottom: 1rem;
  }

  .contact-info li:not(:first-child) {
    margin-left: 0;
  }
}

@media screen and (max-width: 720px) {
  #games .container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .addr {
    position: relative;
    width: 100%;
  }

  .contact-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
  }
}

/************************
footer
************************/

#footer {
  background: #efefef;
  padding: 2rem 0 3rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .foot-logo {
  width: 118px;
}

.footer .company-name {
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.footer .company-info,
.footer .copyright {
  color: #818181;
  font-size: var(--font-size-s);
}

.footer .admin {
  border-bottom: 1px solid #818181;
}

.footer .company-info p {
  line-height: 1.2;
}

.select-site {
  position: relative;
  margin-top: 0.5rem;
}

.select-site::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 1rem;
  height: 2rem;
  cursor: pointer;
  background: url("../images/icon-plus.svg") no-repeat center;
}

.select-site button {
  padding: 0 2px;
  padding: 0.5rem 3rem 0.5rem 0.5rem;
  border-bottom: 2px solid #111;
  font-size: var(--font-size-s);
  font-weight: 600;
}

.option-site {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 100%;
  height: 0;
  border: 2px solid #353232;
  box-sizing: border-box;
  transition: all 0.3s 0.1s;
}

.option-site.on {
  display: block;
  height: auto;
}

.option-site li {
  padding: 0.5rem;
  min-height: 26px;
}

.option-site li a {
  display: block;
  height: 100%;
  line-height: 1;
  text-align: center;
}

.option-site li a:hover {
  font-weight: 600;
}

@media screen and (max-width: 720px) {
  .footer {
    flex-direction: column;
  }

  .foot-left {
    text-align: center;
  }

  .footer .foot-logo {
    width: 90px;
  }

  .copyright {
    margin: 1.5rem 0;
  }

  .select-site {
    margin: 0 auto;
  }

  .option-site {
    top: calc(-100% - 50px);
    background: #fff;
  }
}
