/* entry-popup(scss) r2 popup start */
.option-popup-block {
  display: none;
}
.option-popup-block.active {
  display: block;
}

.entry-option-popup {
  --zeus-po-white: #fff;
  --zeus-po-black: #232323;
  --zeus-po-yellow: #ffe700;
  --zeus-po-red: #e6006b;
  --zeus-po-gray-1: #ccc;
  --zeus-po-gray-2: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000000002;
}
.entry-option-popup .background {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}
.entry-option-popup .entry-option-popup-body {
  position: relative;
  background-color: #fff;
}
.entry-option-popup .popup-contents {
  min-width: 300px;
  max-width: 660px;
  max-height: 90vh;
  padding: 40px 30px;
  margin: 0 auto;
  overflow-y: auto;
  box-sizing: border-box;
}
.entry-option-popup .popup-wrap {
  width: 100%;
}
.entry-option-popup .popup-header .title {
  font-size: 3.6rem;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}
.entry-option-popup .popup-header .title.cancel-popup-title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.entry-option-popup .popup-header .subtitle {
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
  margin: 3px 0 0;
}
.entry-option-popup .popup-header .group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 25px auto 0;
}
.entry-option-popup .popup-header .group .icon {
  width: 70px;
  height: 70px;
}
.entry-option-popup .popup-header .group .text {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}
.entry-option-popup .popup-header .group .text strong {
  color: var(--zeus-po-red);
  border-bottom: 1px solid var(--zeus-po-red);
}
.entry-option-popup .popup-body {
  margin: 0 auto;
}
.entry-option-popup .popup-body .content-images {
  max-width: 500px;
  margin: 0 auto;
}
.entry-option-popup .popup-body .content-images .images {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  list-style: none;
  padding: 0;
  gap: 30px;
}
.entry-option-popup .popup-body .content-images .images li {
  flex: 1;
}
.entry-option-popup .popup-body .content-images .images .box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: var(--zeus-po-gray-2);
  border-radius: 40px;
  overflow: hidden;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
}
.entry-option-popup .popup-body .content-images .images .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry-option-popup .popup-body .content-images .images .img img {
  width: 100%;
  height: auto;
}
.entry-option-popup .popup-body .content-images .caption {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-top: 10px;
}
.entry-option-popup .popup-body .table {
  margin-top: 40px;
}
.entry-option-popup .popup-body .table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  table-layout: fixed;
}
.entry-option-popup .popup-body .table table tbody {
  background-color: var(--zeus-po-white);
}
.entry-option-popup .popup-body .table table tbody p,
.entry-option-popup .popup-body .table table tbody th,
.entry-option-popup .popup-body .table table tbody td {
  font-size: 1.4rem;
  line-height: 1.5;
}
.entry-option-popup .popup-body .table table tbody th,
.entry-option-popup .popup-body .table table tbody td {
  padding: 10px 12px;
  border: 1px solid var(--zeus-po-gray-1);
}
.entry-option-popup .popup-body .table table tbody th {
  font-weight: normal;
  width: 13%;
}
.entry-option-popup .popup-body .table table tbody ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.entry-option-popup .popup-body .table table tbody ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.entry-option-popup .popup-body .table table tbody ul li::before {
  content: "・";
}
.entry-option-popup .popup-bottom {
  margin-top: 20px;
}

.option-popup-block#device_option_check .background {
  background-color: transparent;
}

.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body {
  max-width: 500px;
}
.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .images {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  background-color: var(--zeus-po-gray-2);
  padding: 20px;
  border-radius: 30px;
  box-sizing: border-box;
}
.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .images .img {
  width: 27%;
}
.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .images .img img {
  width: 100%;
  height: auto;
}
.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  border: 2px solid var(--zeus-po-yellow);
  border-radius: 12px;
  box-sizing: border-box;
}
.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice p {
  font-size: 2.1rem;
  line-height: 1.3;
  font-weight: bold;
}
.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice .big {
  color: var(--zeus-po-red);
  font-size: 3.6rem;
  margin: 0 0.15em;
}
.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice-2 {
  color: var(--zeus-po-red);
  text-align: center;
  margin-top: 20px;
}
.entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice-2 p {
  display: inline-block;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}

.entry-option-popup .popup-tanmatsu-anshin .popup-body {
  max-width: none;
}
.entry-option-popup .popup-tanmatsu-anshin .popup-body .heading {
  text-align: center;
  margin-top: 30px;
}
.entry-option-popup .popup-tanmatsu-anshin .popup-body .heading h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 50px;
  color: var(--zeus-po-white);
  font-size: 2.1rem;
  line-height: 1.3;
  white-space: nowrap;
  min-width: 320px;
  margin: 0;
  background-color: var(--zeus-po-black);
  box-sizing: border-box;
  border-radius: 50px;
}
.entry-option-popup .popup-tanmatsu-anshin .popup-body .content-images .images img {
  width: 80%;
}
.entry-option-popup .popup-tanmatsu-anshin .popup-body .notice {
  color: var(--zeus-po-red);
  text-align: center;
  margin-top: 30px;
}
.entry-option-popup .popup-tanmatsu-anshin .popup-body .notice p {
  display: inline-block;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}

.entry-option-popup .popup-marugoto-anshin .popup-body .content-images {
  max-width: 450px;
}
.entry-option-popup .popup-marugoto-anshin .popup-body .content-images .images {
  flex-wrap: wrap;
  gap: 20px 30px;
}
.entry-option-popup .popup-marugoto-anshin .popup-body .content-images .images .box {
  padding-bottom: 78.75%;
}
.entry-option-popup .popup-marugoto-anshin .popup-body .content-images .images li {
  flex: 0 1 calc(50% - 25px);
}

.entry-option-popup .popup-digital-life .popup-body .subhead {
  color: var(--zeus-po-red);
  font-size: 2.3rem;
  line-height: 1.3;
  text-align: center;
  font-weight: bold;
  margin-top: 25px;
}
.entry-option-popup .popup-digital-life .popup-body .table-dls {
  margin-top: 20px;
}
.entry-option-popup .popup-digital-life .popup-body .table-dls .heading {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}
.entry-option-popup .popup-digital-life .popup-body .table-dls .group {
  position: relative;
}
.entry-option-popup .popup-digital-life .popup-body .table-dls .recommend {
  position: absolute;
  top: -50px;
  right: -15px;
  z-index: 2;
}
.entry-option-popup .popup-digital-life .popup-body .table-dls .recommend img {
  width: 72px;
  height: auto;
}
.entry-option-popup .popup-digital-life .popup-body .table-dls .coverage {
  margin-top: 10px;
}
.entry-option-popup .popup-digital-life .popup-body .fig {
  margin-top: 35px;
}
.entry-option-popup .popup-digital-life .popup-body .fig .heading {
  color: var(--zeus-po-white);
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  background-color: var(--zeus-po-black);
}
.entry-option-popup .popup-digital-life .popup-body div.white-content-box-gray-box {
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: 0;
  box-sizing: border-box;
  gap: 20px;
}
.entry-option-popup .popup-digital-life .popup-body div.white-content-box-gray-box > div {
  width: calc((100% - 60px) / 4);
  text-align: center;
}
.entry-option-popup .popup-digital-life .popup-body div.white-content-box-gray-box > div img {
  width: 116px;
}
.entry-option-popup .popup-digital-life .popup-body div.white-content-box-gray-box > div > p {
  font-size: 1.2rem;
  line-height: 1.3;
}
.entry-option-popup .popup-digital-life .popup-body .fig-2 div.white-content-box-gray-box {
  flex-wrap: wrap;
}
.entry-option-popup .popup-digital-life .popup-body .fig-2 div.white-content-box-gray-box > div {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 767px){
  .entry-option-popup .popup-contents {
    max-height: 85vh;
    max-width: 90vw;
    padding: 30px 15px;
  }
  .entry-option-popup .popup-header .title {
    font-size: 1.8rem;
  }
  .entry-option-popup .popup-header .subtitle {
    font-size: 1.5rem;
  }
  .entry-option-popup .popup-header .group {
    gap: 15px;
  }
  .entry-option-popup .popup-header .group .icon {
    width: 50px;
    height: 50px;
  }
  .entry-option-popup .popup-header .group .text {
    font-size: 1.2rem;
  }
  .entry-option-popup .popup-body .content-images .images {
    margin-top: 25px;
    gap: 16px;
  }
  .entry-option-popup .popup-body .content-images .images .box {
    border-radius: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
    transform: translateZ(0);
  }
  .entry-option-popup .popup-body .content-images .caption {
    font-size: 1.2rem;
    margin-top: 12px;
  }
  .entry-option-popup .popup-body .table {
    margin-top: 25px;
  }
  .entry-option-popup .popup-body .table table {
    table-layout: auto;
  }
  .entry-option-popup .popup-body .table table tbody p,
  .entry-option-popup .popup-body .table table tbody th,
  .entry-option-popup .popup-body .table table tbody td {
    font-size: 1.2rem;
  }
  .entry-option-popup .popup-body .table table tbody th,
  .entry-option-popup .popup-body .table table tbody td {
    padding: 8px;
  }
  .entry-option-popup .popup-body .table table tbody th {
    white-space: nowrap;
    width: auto;
  }
  .entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .images {
    margin-top: 20px;
    padding: 15px;
    border-radius: 20px;
  }
  .entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice {
    margin-top: 20px;
  }
  .entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice p {
    font-size: 1.4rem;
  }
  .entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice .big {
    font-size: 2.4rem;
  }
  .entry-option-popup .popup-tanmatsu-anshin-notice .popup-body .notice-2 p {
    font-size: 1.3rem;
  }
  .entry-option-popup .popup-tanmatsu-anshin .popup-body .heading h3 {
    font-size: 2rem;
    min-width: 100%;
    padding: 9px;
  }
  .entry-option-popup .popup-tanmatsu-anshin .popup-body .notice p {
    font-size: 1.3rem;
  }
  .entry-option-popup .popup-marugoto-anshin .popup-body .content-images .images {
    gap: 20px 7px;
  }
  .entry-option-popup .popup-marugoto-anshin .popup-body .content-images .images li {
    flex: 0 1 calc(50% - 8px);
  }
  .entry-option-popup .popup-digital-life .popup-body .subhead {
    font-size: 1.8rem;
  }
  .entry-option-popup .popup-digital-life .popup-body .table-dls .heading {
    font-size: 1.6rem;
  }
  .entry-option-popup .popup-digital-life .popup-body .table-dls .recommend {
    top: -45px;
    right: -10px;
  }
  .entry-option-popup .popup-digital-life .popup-body .table-dls .recommend img {
    width: 54px;
  }
  .entry-option-popup .popup-digital-life .popup-body .fig .heading {
    font-size: 1.5rem;
  }
  .entry-option-popup .popup-digital-life .popup-body div.white-content-box-gray-box {
    padding: 15px;
    gap: 15px;
  }
  .entry-option-popup .popup-digital-life .popup-body div.white-content-box-gray-box > div {
    width: calc((100% - 45px) / 4);
  }
  .entry-option-popup .popup-digital-life .popup-body div.white-content-box-gray-box > div img {
    width: 15vw;
  }
  .entry-option-popup .popup-digital-life .popup-body div.white-content-box-gray-box > div > p {
    margin-top: 5px;
    font-size: 1rem;
  }
  .entry-option-popup .popup-digital-life .popup-body .fig-2 div.white-content-box-gray-box > div {
    width: calc((100% - 30px) / 3);
  }
}
/* entry-popup(scss) r2 popup end */