/* NO CSS*/
:root {
  --close-button-height: 6rem;
}

body {
  background: var(--gray50);
  padding: 2.4rem;
}

.popup {
  padding-bottom: var(--close-button-height);
  max-width: 103.2rem;
  width: 100%;
  margin: 0 auto;
}
.popup[data-size=sm] {
  max-width: 51.2rem;
}
.popup[data-size=sm] .popup-header {
  border-bottom: none;
  padding-bottom: 0;
}
.popup:has(.calculate) {
  max-width: 100%;
}
.popup:has(.popup-share) .popup-print {
  width: auto;
  margin-left: 0;
}
.popup:has(.popup-share) .popup-top {
  flex-direction: row;
  flex-wrap: nowrap;
}
.popup:has(.popup-share) .popup-top a,
.popup:has(.popup-share) .popup-top button {
  padding: 0 1rem;
}
.popup .tab-list {
  flex-direction: row !important;
}
.popup-top {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .popup-top {
    flex-direction: column-reverse;
  }
}
.popup-search {
  gap: 0.4rem;
  flex-shrink: 0;
}
.popup-search .input {
  display: inline-block;
  vertical-align: top;
}
.popup-search button {
  display: inline-block;
  vertical-align: top;
}
.popup-search-desc {
  width: 100%;
  margin-top: 0.4rem;
  color: #616161;
  font-weight: 500;
}
.popup-search-desc span {
  color: #3A65A5;
}
@media (max-width: 768px) {
  .popup-search {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .popup-search .input {
    width: 100%;
    order: 1;
  }
  .popup-search button {
    width: 100%;
    order: 2;
  }
  .popup-search-desc {
    order: 0;
    width: 100%;
  }
}
.popup-print {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
  margin-left: auto;
}
@media (max-width: 768px) {
  .popup-print {
    width: 100%;
  }
  .popup-print-button {
    display: none !important;
  }
  .popup-print button,
  .popup-print a {
    flex: 1;
  }
}
.popup-share.active .popup-share-container {
  display: flex;
}
.popup-share-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(calc(var(--Space-2, 8px) / 2));
          backdrop-filter: blur(calc(var(--Space-2, 8px) / 2));
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline-start: 0 2.4rem;
  display: none;
}
.popup-share-list {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  max-width: 24rem;
  width: 100%;
  margin: 0 auto;
}
.popup-share-sns {
  display: flex;
  gap: 1.6rem;
}
.popup-share-sns a,
.popup-share-sns button {
  padding: 0 !important;
}
.popup-share-sns > * {
  flex: 1;
  aspect-ratio: 1/1;
}
.popup-share-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 4rem;
  border-radius: 0.4rem;
  background: var(--gray300);
}
.popup-share-copy button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.popup-share-copy span {
  gap: 0.4rem;
  font-weight: 500;
  color: var(--gray900);
}
.popup-share-copy i {
  font-size: 1.8rem;
  color: var(--gray900);
}
.popup-container {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 3.2rem;
  border: 1px solid var(--gray300);
}
@media (max-width: 768px) {
  .popup-container {
    padding: 2rem;
  }
}
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4.8rem;
  flex-wrap: wrap;
}
.popup-header-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 1rem 2.4rem;
}
.popup-header-logo img {
  width: 19.4rem;
}
.popup-header-logo:has(span) img {
  width: 14.1rem;
}
.popup-header-logo-title {
  font: var(--h3);
  position: relative;
}
.popup-header-logo-img {
  position: relative;
}
.popup-header-logo-img::before {
  content: "";
  width: 1px;
  height: 3.2rem;
  background: var(--gray300);
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.popup-header-buttons {
  display: flex;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .popup-header {
    margin-bottom: 2.4rem;
  }
  .popup-header-logo img {
    width: 15.4rem;
  }
  .popup-header-logo-img::before {
    height: 1.8rem;
  }
  .popup-header-logo-title {
    font-size: 2rem;
  }
}
@media (max-width: 559px) {
  .popup-header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .popup-header-logo {
    gap: 1rem 1.8rem;
  }
  .popup-header-logo span {
    font-size: 1.6rem;
  }
  .popup-header-logo img {
    width: 13.4rem;
  }
  .popup-header-logo-img::before {
    right: -0.9rem;
  }
  .popup-header-logo-title {
    font-size: 1.8rem;
  }
  .popup-header-buttons {
    width: 100%;
  }
  .popup-header-buttons > * {
    flex: 1;
  }
}
.popup-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
}

.close {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  height: var(--close-button-height);
  background: var(--gray800);
  color: #fff;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
}

.process > ul {
  display: flex;
  justify-content: center;
  gap: 8rem;
  padding: 1.6rem 0;
  background: var(--green100);
}

.process > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}

.process > ul > li::before {
  content: "";
  width: 8rem;
  height: 2px;
  background: var(--gray300);
  position: absolute;
  top: 4rem;
  right: -8rem;
}

.process > ul > li:last-of-type::before {
  display: none;
}

.process > ul > li.active .process-icon {
  background: var(--green600);
  border-color: var(--green600);
}

.process > ul > li.before .process-icon {
  border-color: var(--green600);
}

.process > ul > li.active .process-icon img,
.process > ul > li.before .process-icon img {
  display: none;
}

.process > ul > li.active .process-icon::before {
  display: block;
}

.process > ul > li.before .process-icon::after {
  display: block;
}

.process > ul > li.before::before {
  background: var(--green600);
}

.process > ul > li.active .process-text {
  color: var(--green600);
  font-weight: 700;
}

.process-icon {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  position: relative;
}

.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4.2rem;
  height: 5.2rem;
  transform: translate(-50%, -50%);
  background: no-repeat center center/contain;
  display: none;
}

.process > ul > li:first-of-type .process-icon::before {
  background-image: url(../images/process-icon1-2.png);
}

.process > ul > li:nth-of-type(2) .process-icon::before {
  background-image: url(../images/process-icon2-2.png);
}

.process > ul > li:nth-of-type(3) .process-icon::before {
  background-image: url(../images/process-icon3-2.png);
}

.process > ul > li:nth-of-type(4) .process-icon::before {
  background-image: url(../images/process-icon4-2.png);
}

.process > ul > li:first-of-type .process-icon::after {
  background-image: url(../images/process-icon1-3.png);
}

.process > ul > li:nth-of-type(2) .process-icon::after {
  background-image: url(../images/process-icon2-3.png);
}

.process > ul > li:nth-of-type(3) .process-icon::after {
  background-image: url(../images/process-icon3-3.png);
}

.process > ul > li:nth-of-type(4) .process-icon::after {
  background-image: url(../images/process-icon4-3.png);
}

.process-text {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #424242;
  position: relative;
}

.process-text::before {
  content: "\ea6e";
  font-family: "remixicon";
  position: absolute;
  right: -3rem;
  transform: translateX(50%);
  color: #BDBDBD;
  font-weight: 400;
}

.process > ul > li:last-of-type .process-text::before {
  display: none;
}

@media (max-width: 768px) {
  .process > ul {
    gap: 4rem;
  }
  .process > ul > li::before {
    width: 4rem;
    right: -4rem;
  }
  .process-text::before {
    right: -2rem;
  }
}
@media (max-width: 580px) {
  .process > ul {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
  .process > ul > li {
    flex-direction: row;
    width: 18rem;
  }
  .process > ul > li::before {
    width: 2px;
    height: 3rem;
    top: auto;
    bottom: -3rem;
    right: auto;
    left: 4rem;
  }
  .process-text {
    flex-grow: 1;
    width: auto;
  }
  .process-text::before {
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    bottom: -5.5rem;
  }
}
.h4:has(.tool-tip) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tool-tip {
  position: relative;
}

.tool-tip i {
  font-size: 2.2rem;
  font-weight: 400;
  color: #9E9E9E;
  cursor: pointer;
}

.tool-tip.active .tool-tip-box {
  display: block;
}

.tool-tip-box {
  display: none;
  position: absolute;
  left: 0;
  top: 3.2rem;
  width: 35rem;
  /* max-width: 50rem; */
  color: #424242;
  font-weight: 400;
  font-size: 1.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 0.4rem;
  border: 1px solid var(--blue600);
  background: #fff;
  box-shadow: 0 0.8rem 1.2rem rgba(0, 0, 0, 0.2);
  z-index: 1;
}

@media (max-width: 768px) {
  .h4:has(.tool-tip) {
    position: relative;
  }
  .tool-tip {
    position: static;
  }
  .tool-tip-box {
    width: 300px;
    top: calc(100% + 0.5rem);
  }
}
@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .popup {
    padding-bottom: 0;
  }
  body {
    padding: 0;
    border: 0;
    background: #fff;
  }
  .popup-container {
    padding: 0;
    border: 0;
    background: #fff;
  }
  .popup-header {
    margin-bottom: 2.4rem;
  }
  .popup-header-logo img {
    width: 16rem;
  }
  .popup-header-logo img::before {
    display: none;
  }
  .h4,
  .body1 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .tool-tip i {
    font-size: 14px;
  }
  .table:not([data-type]) .table-info table {
    display: table;
    table-layout: fixed;
    text-align: center;
  }
  .table:not([data-type]) .table-info table colgroup {
    display: table-column-group;
  }
  .table:not([data-type]) .table-info table tbody,
  .table:not([data-type]) .table-info table thead {
    display: table-row-group;
  }
  .table:not([data-type]) .table-info table tr {
    display: table-row;
  }
  .table:not([data-type]) .table-info table th,
  .table:not([data-type]) .table-info table td {
    display: table-cell;
    padding: 8px;
    font-size: 12px;
    text-align: center;
  }
  .table:not([data-type]) .table-info table th {
    border-bottom: 1px solid var(--gray300);
  }
  .table:not([data-type]) .table-info table td {
    width: auto;
    background: #fff;
  }
  .table:not([data-type]) .table-info table td::before {
    display: none;
  }
  .table[data-type] {
    overflow: hidden;
  }
  .table[data-type] th, .table[data-type] td {
    font-size: 12px !important;
    padding: 8px !important;
  }
  .bul1 {
    gap: 3px;
  }
  .bul1 > li {
    font-size: 12px;
  }
  .process-icon {
    width: 6rem;
    height: 6rem;
  }
  .process-icon::before, .process-icon::after {
    width: 2.4rem;
    height: 3.2rem;
  }
  .process-text {
    font-size: 14px;
  }
  .close,
  .tool-tip {
    display: none;
  }
}
.calculate-item {
  display: none;
}
.calculate-item-contents {
  display: none;
}