@charset "UTF-8";
.c-popup {
  padding: 1rem;
}
.c-popup__body {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background-color: white;
  margin: auto;
  padding: 1.5rem;
  width: 100%;
  max-width: 600px;
}
@media (max-width: 575px) {
  .c-popup__body {
    padding: 1rem;
  }
}
.c-popup {
  /* 閉じるボタン */
}
.c-popup__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: right;
  gap: 4px;
  position: relative;
  margin-bottom: 1rem;
  background-color: white;
  border: none;
  cursor: pointer;
}
.c-popup__close:hover .c-popup__close-icon::before,
.c-popup__close:hover .c-popup__close-icon::after {
  background-color: #1F8D1F;
}
.c-popup__close:hover .c-popup__close-text {
  color: #1F8D1F;
}
.c-popup {
  /* 閉じるボタン「×マーク」 */
}
.c-popup__close-icon {
  position: relative;
  width: 25px;
  height: 25px;
}
.c-popup__close-icon::before, .c-popup__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
  transition: background-color 0.3s ease;
}
.c-popup__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-popup__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-popup {
  /* 閉じるボタン「×マーク」下のテキスト */
}
.c-popup__close-text {
  font-size: 12px;
  color: #333;
  line-height: 1;
}
.c-popup__row {
  display: flex;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #d9d9d9;
}
.c-popup__row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.c-popup__row--person {
  display: block;
}
.c-popup__row-person {
  display: flex;
}
.c-popup__label, .c-popup__label-sub {
  color: #59a959;
  width: 110px;
  margin-right: 20px;
  align-content: center;
  white-space: nowrap; /* 改行防止 */
  flex-shrink: 0; /* 改行防止 */
}
@media (max-width: 575px) {
  .c-popup__label, .c-popup__label-sub {
    width: 90px;
  }
}
.c-popup__label-sub {
  text-indent: 1rem;
}
.c-popup__label--person {
  color: black;
}
.c-popup__content {
  width: 100%;
  max-width: 420px;
  line-height: 1.2;
  overflow-wrap: break-word;
}
.c-popup__content-link {
  color: #59a959;
  transition: color 0.3s ease;
}
.c-popup__content-link:hover {
  color: #DEC01A;
}
.c-popup__row-sub {
  display: block;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px dotted #d9d9d9;
}
.c-popup__row-sub:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.c-popup__row-sub-content {
  display: flex;
}
.c-popup__link {
  color: lightslategray;
  transition: color 0.3s ease;
}
.c-popup__link:hover, .c-popup__link:focus {
  color: lightgreen;
}

/*# sourceMappingURL=popup.css.map */
