:root {
  --color-warning-bg: #F0F7FC;
  --color-lock-bg: #97A4B8;
  --color-help-bg: #fff;
  --color-menu-border: #E9E9E9;
  --color-title-border: #D2D9DE;
  --color-link: #0085FF;
  --color-top-btn: #AFD5F8;
  --color-top-btn-icon: #9CD0FF;
}

.help-title {
  background-color: var(--color-brand-sub);
  padding: 36px 8px;
}

.help-title h1 img {
  display: block;
  margin: 0 auto;
}

.help-container {
  background-color: var(--color-help-bg);
  margin: 0 auto;
}

.help-inner {
  width: 91.11111%;
  max-width: 640px;
  margin: 0 auto;
}

.help-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.help-list {
  text-align: center;
}

.help-list a {
  display: block;
  font-family: "Hiragino Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text);
  padding: 12px;
  background-color: #fff;
  border: 1px solid var(--color-menu-border);
  border-radius: 999px;
}

.help-list.active {
  pointer-events: none;
}

.help-list.active a {
  background-color: var(--color-brand-sub);
  border: 1px solid var(--color-brand-sub);
  color: #fff;
}

.help-title-box {
  position: relative;
  height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.help-title-box::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.help-sub-title {
  font-family: "Hiragino Sans";
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.7px;
  position: relative;
  z-index: 2;
}

.help-title-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.help-text {
  font-family: "Hiragino Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--color-text);
  margin: 40px auto 24px;
  text-align: center;
}

.select-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
}

.select-list a {
  display: block;
  background-color: #fff;
  border-radius: 15px;
  padding: 44px 0 16px;
  box-shadow: 0px 4px 8px rgba(29, 69, 99, 0.15);
  text-align: center;
}

.select-list a img {
  display: block;
  margin: 0 auto;
}

.select-list a p {
  font-family: "Hiragino Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text);
  margin-top: 24px;
}

.help-contents {
  margin-top: 24px;
  background-color: #fff;
  border: 1px solid var(--color-menu-border);
  border-radius: 10px;
}

.contents-title {
  font-family: "Hiragino Sans";
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background-color: var(--color-text);
  text-align: center;
  padding: 12px 8px;
  border-radius: 9px 9px 0px 0px;
}

.contents-wrap {
  padding: 26px 16px 0;
}

.contents-item {
  margin-bottom: 40px;
}

.contents-item:last-child {
  margin-bottom: 32px;
}

.item-title-box {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  position: relative;
}

.item-num span {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.125em;
  background: linear-gradient(95deg, #FF8D4E 0%, #EA2CE2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  z-index: 3;
  padding-left: 2px;
}

.item-num::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(95deg, #FF8D4E 0%, #EA2CE2 100%);
  z-index: 1;
  position: absolute;
}

.item-num::after {
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  position: absolute;
  border-radius: inherit;
  background: #fff;
  z-index: 2;
}

.item-title {
  font-family: "Hiragino Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  margin-left: 12px;
  color: var(--color-text);
}

.item-text {
  font-family: "Hiragino Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text);
}

.item-text-link {
  color: var(--color-link);
  text-decoration-line: underline;
}

.item-img {
  margin: 16px auto 0px;
}

.item-img-05 {
  width: 68%;
  margin-bottom: 16px;
}

.item-img img {
  width: 100%;
  height: auto;
}

.img-text {
  font-size: 14px;
  text-align: center;
  font-family: "Hiragino Sans";
  font-weight: 500;
  color: var(--color-text);
}

.page-top {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background-color: var(--neutral-gray-50, #F6F6F6);
  position: relative;
  margin: 40px auto 0px;
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.15);
}

.page-top::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-color: var(--neutral-gray-800, #363636);
  -webkit-mask-image: url(/images/arrow-icon.svg);
          mask-image: url(/images/arrow-icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 600px) {
  .help-title-box {
    height: 120px;
  }
  .help-sub-title {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
  .help-title {
    padding: 47.5px 8px;
  }
  .help-title h1 img {
    width: 189px;
    height: auto;
  }
  .select-list a img {
    width: 184px;
    height: 27px;
  }
  .select-list a p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
  }
  .item-title {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (min-width: 1025px) {
  .help-title {
    min-width: 640px;
  }
  .help-text {
    margin-bottom: 40px;
  }
  .help-container {
    max-width: 720px;
    min-width: 720px;
  }
  .help-inner {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 0;
    max-width: 720px;
    min-width: 720px;
  }
  .select-link {
    max-width: 560px;
    gap: 16px 48px;
  }
  .select-list a {
    padding: 48px 0 24px;
  }
  .select-list a img {
    width: 184px;
    height: 27px;
  }
  .select-list a p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
  }
  .contents-wrap {
    padding: 32px 24px 0;
  }
  .contents-item:last-child {
    margin-bottom: 40px;
  }
  .item-img img {
    display: block;
    max-width: 360px;
    margin: 0 auto;
  }
  .item-img-05 {
    max-width: 172px;
  }
  .lawson-contents {
    margin-top: 48px;
  }
  .page-top {
    display: none;
  }
  .top-btn-text-help {
    display: none;
  }
}