@charset "UTF-8";

#article-351 .btn {
  display: block;
  width: fit-content;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #3498db;
  border: 1px solid #3498db;
  border-radius: 0.4em;
  padding: 0.5em 1em;
  transition: 0.5s;
  margin-inline: auto;
}
#article-351 .btn:hover {
  color: #3498db;
  background-color: #fff;
}

#article-351 .modal-block {
  display: none;
}
#article-351 .modal-block.is-open {
  display: block;
}

#article-351 .modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  pointer-events: none;
}
#article-351 .modal-content {
  position: relative;
  background: #fff;
  padding: min(32px, calc(32 / 640 * 100vw));
  pointer-events: auto;
}

#article-351 .thumbnail img {
  width: min(200px, calc(200 / 640 * 100vw));
}

#article-351 .modal-close {
  position: absolute;
  top: max(-60px, calc(-60 / 640 * 100vw));
  right: max(-60px, calc(-60 / 640 * 100vw));
  width: min(30px, calc(30 / 640 * 100vw));
  aspect-ratio: 1 / 1;
  background-image: url('../../asset/img/common/icon_close.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  pointer-events: auto;
}

/*---------------------------------------*/

#article-351 .modal-content01 {
  background: #fff;
  padding: min(32px, calc(32 / 640 * 100vw));
}
#article-351 .modal-content02 {
  background: #fff;
  border-radius: min(20px, calc(20 / 640 * 100vw));
  padding: min(40px, calc(40 / 640 * 100vw));
  box-shadow: 0 min(10px, calc(10 / 640 * 100vw)) min(40px, calc(40 / 640 * 100vw)) rgba(0,0,0,0.15);
}

#article-351 .modal-fadein {
  animation: modalFadeIn 0.5s ease;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#article-351 .modal-content04 {
  animation: zoomIn 0.5s ease;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}

#article-351 .modal-content05 {
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

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

#article-351 .modal-content06 {
  color: #fff;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
}

#article-351 .modal-content07 {
  color: #fff;
  background: linear-gradient(
    135deg,
    #3498db,
    #9b59b6
  );
}

#article-351 .modal-content08 .login-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: min(20px, calc(20 / 640 * 100vw));
}
#article-351 .modal-content08 .login-form input {
  width: 100%;
  font-size: min(16px, calc(16 / 640 * 100vw));
  border: 1px solid #ccc;
  border-radius: 0.4em;
  padding: 0.5em 1em;
}
#article-351 .modal-content08 .login-form button {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background-color: #3498db;
  border-radius: 0.4em;
  padding: 0.5em 1em;
  transition: 0.5s;
}

#article-351 .modal-content09 {
  padding: 0;
}
#article-351 .modal-content09 img {
  width: min(800px, calc(800 / 640 * 100vw));
}


#article-351 .modal-content10 {
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
}
#article-351 .modal-content10 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#article-351 .modal10 .modal-close {
  position: absolute;
  top: min(60px, calc(60 / 640 * 100vw));
  right: min(60px, calc(60 / 640 * 100vw));
}

