@charset "UTF-8";

:root {
  --main-color: #606060;
  --blue-color: #0096FF;
  --blue-color2: #9FD7FF;
  --white-color: #FAFAFA;
  --font-size-base: 18px;
  --header-height: 80px;
  --min-width: 1400px;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  :root {
    --font-size-base: 5vw;
    --min-width: 0px;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-width: var(--min-width);
  scroll-behavior: smooth;
  caret-color: transparent;
}

body {
  font-family: 'Inter', sans-serif;
  background-image: url('assets/images/loop_bg.webp');
  background-size: 100px auto;
  /* 画像のパス */
  background-repeat: repeat;
  color: var(--main-color);
  line-height: 1.6;
  font-size: var(--font-size-base);
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  margin: 0;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  background: linear-gradient(to right, rgba(121, 200, 255, 1) 50%, rgba(0, 150, 255, 1));
}

footer {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 150px 0;
}

a {
  display: inline-flex;
  color: var(--main-color);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--blue-color);
  transform: 0.3s;
}

section {
  position: relative;
  width: 100%;
  padding-top: 150px;
}

h2 {
  font-size: 28px;
  color: #fff;
}

p,
a,
img {
  z-index: 10;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  body {
    font-family: 'Inter', sans-serif;
    background-image: url('assets/images/loop_bg.webp');
    background-size: 100px auto;
    /* 画像のパス */
    background-repeat: repeat;
    color: var(--main-color);
    line-height: 1.6;
    font-size: var(--font-size-base);
    font-weight: bold;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1;
    margin: 0;
  }

  header {
    position: fixed;
    width: 100%;
    top: 0;
    max-height: 50px;
    height: 8vw;
    background-color: #fff;
    box-shadow: 0 0.5vw 1px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    background: linear-gradient(to right, rgba(121, 200, 255, 1) 50%, rgba(0, 150, 255, 1));
  }

  footer {
    margin: 200px 0;
  }

  section {
    padding-top: 20vw;
  }

  h2 {
    font-size: 5vw;
  }

  small {
    font-size: 2vw;
  }
}

/* 共通デザイン　====================================================== */
.section-title {
  width: 50%;
  height: 50px;
  display: flex;
  margin-bottom: 60px;
  text-align: center;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
  background: linear-gradient(to right, rgba(121, 200, 255, 1), rgba(0, 150, 255, 1));
}

.section-content {
  display: flex;
  padding: auto 300px;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.font-5xl {
  font-size: 64px;
}

.font-4xl {
  font-size: 48px;
}

.font-3xl {
  font-size: 36px;
}

.font-2xl {
  font-size: 32px;
}

.font-xl {
  font-size: 28px;
}

.font-lg {
  font-size: 24px;
}

.font-md {
  font-size: 20px;
}

.font-xs {
  font-size: 16px;
}

.font-xxs {
  font-size: 14px;
}

.font-xxxs {
  font-size: 10px;
}

.play-now {
  text-align: center;
  display: block;
}

.play-now a {
  position: relative;
  transition: all 0.3s ease;
}

.play-now a::before {
  background-color: var(--main-color);
  position: absolute;
  bottom: -5px;
  width: 150px;
  height: 2px;
  margin-top: 0px;
  transition: all 0.3s ease;
  content: "";
}

.play-now a::after {
  position: absolute;
  bottom: 1px;
  right: -31px;
  width: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid var(--main-color);
  transition: all 0.3s ease;
  content: "";
}

.play-now a:hover {
  color: var(--blue-color);
  transform: 0.3s;
}

.play-now a:hover::before {
  background-color: var(--blue-color);
  transform: translateY(0%) translateX(10%);
  transform: 0.3s;
}

.play-now a:hover::after {
  border-top: 2px solid var(--blue-color);
  transform: translateX(15px) rotate(45deg);
  transform: 0.3s;
}

.logo {
  width: 495px;
}

.background-charactor-meru {
  position: absolute;
  width: 30vw;
  min-width: 400px;
  right: 0;
  overflow: hidden;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
}

.background-charactor-rami {
  position: absolute;
  width: 30vw;
  min-width: 400px;
  left: 0;
  top: 200px;
  overflow: hidden;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
}

.background-charactor-shirona {
  position: absolute;
  width: 30vw;
  min-width: 400px;
  right: 0;
  overflow: hidden;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
}

.fade-trigger {
  position: relative;
  opacity: 0;
  z-index: 10;
}

.fade-up {
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-right-trigger {
  position: relative;
  opacity: 0;
  z-index: 10;
}

.slide-in-right {
  opacity: 0;
  animation-delay: 0.2s;
  transform: translateX(100px);
  /* 右に100pxずらす */
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left-trigger {
  position: relative;
  opacity: 0;
  z-index: 10;
}

.slide-in-left {
  opacity: 0;
  animation-delay: 0.2s;
  transform: translateX(-100px);
  /* 右に100pxずらす */
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .section-title {
    height: 10vw;
    margin-bottom: 10vw;
    z-index: 10;
  }

  .section-content {
    padding: auto 10vw;
  }

  .font-5xl {
    font-size: 8vw;
  }

  .font-4xl {
    font-size: 7vw;
  }

  .font-3xl {
    font-size: 5vw;
  }

  .font-2xl {
    font-size: 4.5vw;
  }

  .font-xl {
    font-size: 4vw;
  }

  .font-lg {
    font-size: 3.5vw;
  }

  .font-md {
    font-size: 3vw;
  }

  .font-xs {
    font-size: 3vw;
  }


  .font-xxs {
    font-size: 3vw;
  }

  .play-now {
    text-align: center;
    display: block;
  }

  .play-now a {
    position: relative;
    transition: all 0.3s ease;
  }

  .play-now a::before {
    background-color: var(--main-color);
    position: absolute;
    bottom: -5px;
    width: 25vw;
    height: 2px;
    margin-top: 0px;
    transition: all 0.3s ease;
    content: "";
  }

  .play-now a::after {
    position: absolute;
    bottom: 1px;
    right: -7vw;
    width: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid var(--main-color);
    transition: all 0.3s ease;
    content: "";
  }

  .play-now a:hover {
    color: var(--blue-color);
    transform: 0.3s;
  }

  .play-now a:hover::before {
    background-color: var(--blue-color);
    transform: translateY(0%) translateX(10%);
    transform: 0.3s;
  }

  .play-now a:hover::after {
    border-top: 2px solid var(--blue-color);
    transform: translateX(15px) rotate(45deg);
    transform: 0.3s;
  }

  .logo {
    width: 90vw;
  }

  .background-charactor-meru {
    width: 60vw;
    min-width: 0;
    top: 50vw;
    opacity: 0.2;
  }

  .background-charactor-rami {
    width: 60vw;
    min-width: 0;
    top: 50vw;
    opacity: 0.2;
  }

  .background-charactor-shirona {
    display: none;
  }
}

/* ヘッダーデザイン　====================================================== */
.header-contents {
  margin-right: 40px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: right;
  height: 100%;
  gap: 40px;
}

.header-contents a {
  color: #fff;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .header-contents {
    margin: 0 2vw;
    font-size: clamp(2.5vw, 2.5vw, 16px);
    justify-content: space-between;
  }
}


/* フッターデザイン　====================================================== */
.footer-contents {
  display: flex;
  align-items: flex-end;
  margin: 0 0 150px;
}

.footer-logo {
  width: 700px;
}

.streaming-logo {
  height: 80px;
  margin-right: 20px;
  min-height: 50px;
}

.top {
  margin-bottom: 200px;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .footer-contents {
    margin: 0 0 100px;
  }

  .footer-logo {
    width: 70vw;
  }

  .streaming-logo {
    height: 10vw;
    margin-right: 5vw;
    min-height: 0;
  }

  .top {
    margin-bottom: 200px;
  }
}

/* FV　====================================================== */
/* メニュー */
.menu-list {
  position: fixed;
  /* 固定表示 */
  width: 100%;
  min-width: var(--min-width);
  z-index: 500;
  top: 40px;
  padding: 30px 0 70px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.menu-list ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 50px;
}

#slideshow-one {
  position: absolute;
  transition: opacity 1s ease;
  opacity: 1;
  z-index: 2;
}


#slideshow-two {
  position: absolute;
  transition: opacity 1s ease;
  opacity: 0;
  z-index: 1;
}

/* トップビジュアルセクション */
.top-visual {
  padding-top: 0;
  width: 100%;
  height: 100vh;
}

/* 背景画像 */
.full-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.full-screen-img-sp {
  display: none;
}


/* ロゴ絶対位置 */
.title {
  display: flex;
  position: absolute;
  width: 800px;
  bottom: 20px;
  left: 350px;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 11;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo {
  display: flex;
  position: absolute;
  bottom: -80px;
  width: 700px;
  left: 350px;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 11;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bottom {
  position: absolute;
  bottom: -2%;
  width: 100%;
  min-width: var(--min-width);
  height: 150px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 10;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .menu-list {
    top: 5vw;
    padding: 8vw 0 15vw;
  }

  .menu-list ul {
    margin: 0 2vw;
    font-size: 15px;
    gap: 3vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-list li {
    flex: 1 1 calc(100% / 5);
    /* 1行に最大4つ並ぶように調整（7項目なら自動で2行） */
    text-align: center;
  }

  /* 背景画像 */
  .full-screen-img {
    display: none;
  }

  .full-screen-img-sp {
    display: flex;
    justify-content: center;
    /* 横方向の中央揃え */
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .full-screen-img-sp img {
    width: 100%;
    clip-path: inset(0 round 0);
    /* 角丸なしの中央切り抜き */
    max-width: none;
  }


  /* ロゴ絶対位置 */
  .title {
    width: 95vw;
    max-width: 500px;
    bottom: 10vw;
    left: 50vw;
  }

  .logo {
    left: 50vw;
    max-width: 400px;
    width: 80vw;
    bottom: -2vw;
  }
}


/* SP用レイアウトを表示（画面幅650px以下） */
@media screen and (max-width: 650px) {
  .full-screen-img-sp img {
    width: auto;
    height: 100%;
  }
}

/* コンテスト概要 ====================================================== */
.content-background {
  display: flex;
  justify-content: center;
  /* 横方向中央 */
  text-align: center;
  z-index: 3;
}

.content-text {
  margin-top: 100px;
  font-size: 24px;
  gap: 50px;
  height: 510px;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  z-index: 5;
}

.button {
  display: block;
  text-align: center;
  padding: 10px;
  width: 300px;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  z-index: 5;
}

.button:hover {
  color: var(--blue-color);
  border: 2px solid var(--blue-color);
}


.content-img {
  position: absolute;
  width: 900px;
  z-index: 1;
}

.hero-title {
  font-weight: bold;
  background: linear-gradient(to bottom, var(--blue-color), var(--blue-color2));
  /* 横方向グラデーション */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .content-text {
    margin-top: 5vw;
    font-size: 3.5vw;
    height: 60vw;
    gap: 2vw;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    z-index: 5;
  }

  .button {
    display: block;
    width: 50vw;
    padding: 1vw;
    text-align: center;
  }

  .button:hover {
    color: var(--blue-color);
    border: 2px solid var(--blue-color);
  }

  .content-img {
    width: 95vw;
  }

  .hero-title {
    font-size: 4vw;
  }
}

/* 賞品 ====================================================== */
.content-prize {
  display: flex;
  width: 100%;
  height: 240px;
  margin-bottom: 50px;
  background: linear-gradient(to right, rgba(121, 200, 255, 0.3) 50%, rgba(121, 200, 255, 0.1) 70%, rgba(121, 200, 255, 0));
  gap: 180px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.content-prize-left {
  background: linear-gradient(to left, rgba(121, 200, 255, 0.3) 50%, rgba(121, 200, 255, 0.1) 70%, rgba(121, 200, 255, 0));
}

.icon {
  width: 320px;
}

.prise-text {
  text-align: left;
  gap: 50px;
}

.prise-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}

.prise-member {
  margin-left: 3px;
  margin-bottom: 15px;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .content-prize {
    height: 40vw;
    margin: 0 3vw 5vw;
    gap: 1vw;
  }

  .icon {
    width: 40vw;
  }

  .prise-text {
    gap: 2vw;
  }

  .prise-title {
    margin-bottom: 1vw;
  }

  .prise-member {
    margin-left: 0.5vw;
    margin-bottom: 1vw;
  }
}

/* 審査員 ====================================================== */
.name-list {
  display: flex;
  list-style: none;
  justify-content: center;
  /* 水平方向の中央揃え */
  align-items: center;
  text-align: left;
  margin-top: 50px;
}

.profile {
  display: flex;
  flex-direction: column;
  margin-left: 100px;
  gap: 20px;
}

.name-icon {
  width: 225px;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.description {
  width: 600px;
  text-align: left;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .name-list {
    margin: 15vw 0 0;
  }

  .profile {
    margin-left: 5vw;
    width: 60vw;
    gap: 2vw;
  }

  .name-icon {
    width: 20vw;
    font-size: 3vw;
  }

  .description {
    width: 60vw;
    font-size: 3vw;
  }
}

/* コラボ開催 ====================================================== */
.section-title-collaboration-sp {
  display: none;
}

.collaboration {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  margin: 50px 0 150px
}

.collaboration-title {
  font-weight: bold;
  background: linear-gradient(to right, #0096FF, #7F178F);
  /* 横方向グラデーション */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.collaboration-art {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
  margin-top: 50px;
}

.illustrator-name {
  margin-bottom: 10px;
}

.collaboration-image {
  width: 75vw;
  min-width: 1000px;
  border-radius: 10px;
}

.collaboration-image-height {
  height: 65vw;
  min-height: 1000px;
  border-radius: 10px;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .section-title-collaboration {
    display: none;
  }

  .section-title-collaboration-sp {
    font-size: 3vw;
    display: block;
  }

  .collaboration {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5vw;
    margin: 5vw 0 20vw;
  }

  .collaboration-art {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10vw;
    margin-top: 5vw;
  }

  .collaboration-image {
    min-width: 0;
    width: 90vw;
    border-radius: 2vw;
  }

  .collaboration-image-height {
    min-height: 0;
    height: 90vw;
    border-radius: 2vw;
  }
}

/* 応募作品一覧　====================================================== */
#image-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.list-wrapper-gray {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  z-index: 10;
}

.list-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.list-wrapper:hover {
  transform: translateY(-8px);
  /* 上に8pxポップ */
}

.list-wrapper-image-beside {
  position: absolute;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: inset(0 round 0);
  /* 角丸なしの中央切り抜き */
  max-width: none;
}

.list-wrapper-image-vertical {
  position: absolute;
  width: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: inset(0 round 0);
  /* 角丸なしの中央切り抜き */
  max-width: none;
  overflow: hidden;
}

.hidden {
  display: none;
}

.more {
  margin-top: 50px;
  transition: all 0.3s ease;
}

.more:hover {
  color: var(--blue-color);
  transform: 0.3s;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  #image-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw;
  }

  .list-wrapper-gray {
    width: 25vw;
    height: 25vw;
    border-radius: 2vw;
  }

  .list-wrapper {
    width: 25vw;
    height: 25vw;
    border-radius: 2vw;
    box-shadow: 1vw 1vw 2vw rgba(0, 0, 0, 0.5);
  }

  .list-wrapper:hover {
    transform: translateY(0);
  }

  .list-wrapper-image-beside {
    height: 25vw;
  }

  .list-wrapper-image-vertical {
    width: 25vw;
  }
}


/* 応募要項　====================================================== */
.apply-content-background {
  display: flex;
  justify-content: center;
  /* 横方向中央 */
  text-align: center;
  z-index: 3;
}

.apply-content-img {
  position: absolute;
  width: 900px;
  z-index: 100;
}

.apply-content-img-sp {
  display: none;
}

.content-apply-text {
  margin: 40px 0 40px;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  z-index: 5;
}

.content-apply-text-sp {
  display: none;
}

.details {
  text-align: left;
  margin: 0 100px;
}

.color-gold {
  color: #9E7900;
}

.color-silver {
  color: #9F9880;
}

.color-blur {
  color: var(--blue-color);
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .apply-content-img {
    display: none;
  }

  .apply-content-img-sp {
    display: block;
    position: absolute;
    width: 80vw;
    z-index: 100;
  }

  .content-apply-text {
    display: none;
  }

  .content-apply-text-sp {
    margin: 4vw 0 2vw;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    z-index: 5;
  }

  .details {
    text-align: left;
    margin: 2vw 15vw 0;
    font-size: 2.5vw;
    height: 65vw;
    overflow: auto;
  }
}

/* 応募規約　====================================================== */
.modal {
  display: none;
  /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: var(--min-width);
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  width: 1000px;
  height: 700px;
  position: relative;
}

.modal-header {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 80px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background: linear-gradient(to right, rgba(121, 200, 255, 1), rgba(0, 150, 255, 1));
}

.close {
  position: absolute;
  color: #fff;
  top: 13px;
  right: 30px;
  font-size: 28px;
  cursor: pointer;
}

.modal-text {
  margin: 50px 100px;
  padding-right: 60px;
  border-radius: 8px;
  width: 90%;
  height: 500px;
  text-align: left;
  overflow: auto;
  align-items: center;
  justify-content: center;
}

/* SP用レイアウトを表示（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .modal-content {
    background: #fff;
    border-radius: 8px;
    width: 80vw;
    height: 90vw;
    position: relative;
  }

  .modal-header {
    height: 10vw;
  }

  .close {
    position: absolute;
    color: #fff;
    top: 0;
    right: 3vw;
    font-size: 6vw;
    cursor: pointer;
  }

  .modal-text {
    margin: 5vw 4vw;
    padding-right: 2vw;
    width: 90%;
    height: 70vw;
  }
}