@charset "UTF-8";

body.page-entry {
  background: #fff;
  color: var(--color-text);
}

.page-entry main {
  background: #fff;
}

.entry-page-title-logo {
  width: min(177px, 48vw);
}

.entry-container {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 clamp(96px, 12vw, 150px);
}

.entry-lead {
  text-align: center;
}

.entry-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.entry-main-logo {
  width: clamp(170px, 25vw, 250px);
}

.entry-lead h2 {
  color: #111;
  font-size: clamp(21px, 2.4vw, 31px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.entry-title-pill {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.entry-title-pill img {
  width: 177px;
}

.entry-intro {
  margin: clamp(42px, 5.5vw, 64px) auto 0;
  color: #111;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.entry-intro p + p {
  margin-top: 6px;
}

.entry-note {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.entry-note::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 37px;
  height: 52px;
  background: url("../images/btn_hand.png") center / contain no-repeat;
}

.entry-note::after {
  /* content: "";
  position: absolute;
  top: 1.1em;
  left: 4px;
  width: 37px;
  height: 52px;
  background: url("../images/btn_hand.png") center / contain no-repeat;
  transform: translateY(4px); */
}

.entry-payment {
  margin: clamp(36px, 5vw, 54px) auto 0;
  color: #111;
  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.entry-payment h3 {
  margin-bottom: 8px;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.5;
}

.entry-bank {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  column-gap: 18px;
  width: min(800px, 100%);
  margin: 14px auto 0;
  padding: 12px 28px;
  border: 1px solid #8f8f8f;
  color: #222;
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.7;
}

.entry-bank-label {
  white-space: nowrap;
}

.entry-bank-detail {
  text-align: left;
}

.entry-actions {
  margin-top: clamp(42px, 6vw, 68px);
  text-align: center;
}

.entry-action-block + .entry-action-block {
  margin-top: clamp(40px, 5.8vw, 64px);
}

.entry-action-block p {
  color: #111;
  font-size: clamp(15px, 1.65vw, 19px);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.entry-circle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  height: 166px;
  margin-top: 18px;
  border-radius: 50%;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.entry-circle-link:hover {
  opacity: 0.82;
  transform: translateY(-3px);
}

.entry-circle-link img {
  width: 100%;
  height: auto;
}

.entry-double-buttons {
  display: flex;
  justify-content: center;
  gap: clamp(36px, 7vw, 78px);
}

@media (max-width: 640px) {
  .entry-container {
    width: min(100% - 28px, 960px);
    padding-top: 10px;
  }

  .entry-intro,
  .entry-payment,
  .entry-action-block p {
    text-align: justify;
  }


  .entry-note {
    padding-left: 38px;
  }

  .entry-note::after {
    top: 1.4em;
  }

  .entry-bank {
    grid-template-columns: 1fr;
    row-gap: 2px;
    padding: 12px 14px;
  }

  .entry-double-buttons {
    gap: 24px;
  }
}
