@charset "UTF-8";
.modal {
  display: none;
}
@media screen and (min-width: 1440px) {
  .modal {
    display: block;
    padding-top: 40px;
    width: 1100px;
    margin-inline: auto;
  }
}

.modal__cards {
  display: none;
}
@media screen and (min-width: 1440px) {
  .modal__cards {
    display: block;
    display: flex;
    justify-content: space-between;
  }
}

.modal__wrapper, .modal__container, .modal__inner {
  display: none;
}
@media screen and (min-width: 1440px) {
  .modal__wrapper, .modal__container, .modal__inner {
    display: block;
    width: 800px;
  }
}

.modal-card__image img {
  width: 345px;
}

.modal__close {
  width: 50px;
}

.hobby1 {
  background-color: #000;
  color: #FFF;
  width: 800px;
  height: 100vh;
}

.hobby2 {
  background-color: #FFF;
  width: 800px;
  height: 100vh;
}

.hobby3 {
  background-color: #F4EBBC;
  width: 800px;
  height: 100vh;
}

.hobby__content {
  padding: 30px 120px;
}

.modal__inner {
  position: relative;
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 35px;
}
.modal__close img {
  width: 50px;
}

.modal__desp {
  position: absolute;
  top: 540px;
  right: 10px;
  text-align: right;
  line-height: 120%;
  font-size: 1.4rem;
}

.hobby__image img {
  width: 800px;
}

.hobby__image2 {
  padding: 20px 25px 0px 25px;
}
.hobby__image2 img {
  width: 750px;
}

.hobby__title {
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.hobby__text {
  font-weight: 500;
  font-size: 1.6rem;
}

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.modal__layer {
  height: 100%;
  background: rgba(19, 19, 19, 0.6);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 100vh;
}/*# sourceMappingURL=modal.css.map */