/* Basic Color List */
/* $pc : pc;
$tablet : tablet;
$mobile : mobile; */
/* Basic Tool List */
.flex__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex__box > * {
  flex-shrink: 1;
  flex-grow: 0;
}

@media screen and (min-width: 768px) {
  .sp__only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc__only {
    display: none !important;
  }
}
/* Basic FONT List */
dialog {
  border: none;
  border-radius: 10px;
  padding: 5rem;
  max-width: 1400px;
  width: calc(100% - 100px);
}
@media screen and (max-width: 767px) {
  dialog {
    width: calc(100% - 40px);
    padding: 3rem 2rem;
  }
}
dialog::backdrop {
  background-color: rgba(37, 93, 64, 0.8);
}

.dialog__container .detail__box ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .dialog__container .detail__box ul {
    gap: 5.1282051282vw;
  }
}
.dialog__container .detail__box ul li {
  flex-basis: calc((100% - 8rem) / 3);
}
@media screen and (max-width: 767px) {
  .dialog__container .detail__box ul li {
    flex-basis: 100%;
  }
}
.dialog__container .detail__box ul li a {
  display: block;
  position: relative;
  filter: drop-shadow(0 3px 20px rgba(37, 93, 64, 0.2));
}
.dialog__container .detail__box ul li a .icon {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  .dialog__container .detail__box ul li a .icon {
    right: 2.0512820513vw;
    width: 5.1282051282vw;
    height: 5.1282051282vw;
  }
}
.dialog__container .detail__box ul li a:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #255d40;
  border-radius: 1rem;
}
.dialog__container .detail__box button {
  background-color: #255d40;
  border: none;
  cursor: pointer;
  border-radius: calc(infinity * 1px);
  color: white;
  padding: 1rem 2rem;
  display: block;
  margin: 4rem auto 0;
}
.dialog__container .detail__box button span {
  font-size: 1.6rem;
}
.dialog__container .detail__box button span:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_close.svg) center center/100% auto no-repeat;
  vertical-align: text-bottom;
  margin: 0 1.2rem 0 0;
}
.dialog__container .detail__box button:hover {
  background-color: #053826;
}/*# sourceMappingURL=common.css.map */