html {
  scroll-padding-top: 5rem;
}

section {
  padding-top: 6.25rem;
}

.pagehead-blue__box {
  padding-block: 3rem;
}

.pagehead-blue__text {
  margin-top: 1.2rem;
}

@media screen and (max-width:767px) {
  html {
    scroll-padding-top: 4rem;
  }

  .pagehead-blue__box {
    padding: 2rem 1.5rem;
  }
}

/* features */
.features {
  padding-bottom: 1.625rem;
}

/* environment */
.specificattions__lists {
  margin-top: 2.5rem;
}

.specificattions__lists dt:nth-of-type(5) {
  min-height: 4.125rem;
}

.environment__note {
  font-size: 0.75rem;
  margin-top: 2.5rem;
}

@media screen and (max-width:767px) {
  .specificattions__lists dd:nth-of-type(5) {
    padding-block: 0.8rem;
  }
}

/* howToGet */
.howToGet__text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
}

.howToGet__list {
  margin-top: 1.25rem;
}

.howToGet__list li {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.5rem auto;
}

.howToGet__list li::before {
  background: var(--color-black);
  border-radius: 50%;
  content: "";
  height: 8px;
  margin-top: 0.8rem;
  width: 0.5rem;
}

/* howToGet flow chart */
.howToGet__flow {
  margin: 2.5rem auto 0;
  max-width: 70rem;
}

.howToGet__flowColumns {
  display: grid;
  gap: clamp(1.25rem, -0.07rem + 5.63vw, 5rem);
  grid-template-columns: 1fr 1fr;
}

.howToGet__flowCol {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.howToGet__flowBox {
  align-items: center;
  border: 2px solid var(--color-brand-blue);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  min-height: 4rem;
  padding: 0.5rem;
  text-align: center;
  width: 100%;
}

.howToGet__flowBoxText {
  color: var(--color-brand-blue);
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: 700;
}

.howToGet__flowBtn {
  border: 1px solid var(--color-black, #222);
  background: var(--color-black, #222);
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.375rem 2.25rem;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  transition: .3s;
}

@media (hover: hover) {
  .howToGet__flowBtn:hover {
    background: var(--color-white);
    color: var(--color-black, #222);
    opacity: 1;
  }
}
.howToGet__flowBtn:focus-visible {
    background: var(--color-white);
    color: var(--color-black, #222);
    opacity: 1;
}

.howToGet__flowArrow {
  background: var(--color-brand-blue);
  flex-shrink: 0;
  height: 2.5rem;
  margin-block: 0.625rem;
  position: relative;
  width: 2px;
}

.howToGet__flowArrow::after {
  border: 2px solid currentColor;
  border-bottom: 0;
  border-left: 0;
  bottom: -0.1rem;
  box-sizing: border-box;
  color: var(--color-brand-blue);
  content: "";
  display: inline-block;
  height: 0.65rem;
  left: 50%;
  line-height: 1;
  position: absolute;
  transform: translateX(-50%) translateY(-25%) rotate(135deg);
  vertical-align: middle;
  width: 0.65em;
}

.howToGet__flowMerge {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 0.625rem;
  width: 100%;
}

.howToGet__flowMergeLines {
  display: flex;
  height: 2.5rem;
  position: relative;
  width: 61%;
}

.howToGet__flowMergeLine {
  border-color: var(--color-brand-blue);
  border-style: solid;
  border-width: 0;
  flex: 1;
}

.howToGet__flowMergeLine--left {
  border-bottom-left-radius: 20px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.howToGet__flowMergeLine--right {
  border-bottom-right-radius: 20px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.howToGet__flowMergeArrow {
  background: var(--color-brand-blue);
  height: 2.5rem;
  margin-block: 0.625rem;
  position: relative;
  width: 2px;
}

.howToGet__flowMergeArrow::after {
  border: 2px solid currentColor;
  border-bottom: 0;
  border-left: 0;
  bottom: -0.1rem;
  box-sizing: border-box;
  color: var(--color-brand-blue);
  content: "";
  display: inline-block;
  height: 0.65rem;
  left: 50%;
  line-height: 1;
  position: absolute;
  transform: translateX(-50%) translateY(-25%) rotate(135deg);
  vertical-align: middle;
  width: 0.65em;
}

.howToGet__flowGoal {
  background: var(--color-brand-blue);
  border-radius: 8px;
  color: #fff;
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  font-weight: 700;
  margin-inline: auto;
  padding: 0.75rem;
  text-align: center;
  width: clamp(21.563rem, 17.711rem + 16.43vw, 32.5rem);
}

@media screen and (max-width: 767px) {
  .howToGet__flowBox {
    gap: 0.375rem;
    min-height: 5.8125rem;
    padding: 0.61rem 0.625rem;
  }

  .howToGet__flowBoxText {
    line-height: 1.2;
  }

  .howToGet__flowBtn {
    max-width: 8.7188rem;
    padding: 0.0625rem 0;
    width: 100%;
  }

  .howToGet__flowArrow {
    height: 1.25rem;
    margin-block: 0.25rem;
  }

  .howToGet__flowMergeLines {
    height: 1.25rem;
    width: 50%;
  }

  .howToGet__flowMergeLine--left {
    border-bottom-left-radius: 8px;
  }

  .howToGet__flowMergeLine--right {
    border-bottom-right-radius: 8px;
  }

  .howToGet__flowMergeArrow {
    height: 1.25rem;
    margin-block: 0.25rem;
  }

  .howToGet__flowGoal {
    padding: 0.531rem;
  }
}

/* purchaseFlow */
.purchaseFlowList {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.purchaseFlowList__content {
  display: flex;
  gap: 0.625rem;
}

.purchaseFlowList__num {
  color: var(--color-brand-blue);
  font-weight: 700;
}

.purchaseFlowSubList li {
  margin-top: 2.5rem;
}

.purchaseFlowSubList__text {
  display: flex;
  flex-wrap: wrap;
	font-size: 1rem;
	position: relative;
	padding-left: 1.5rem;
}

.purchaseFlowSubList__text::before {
  background: var(--color-brand-blue);
  border-radius: 50%;
  content: "";
  height: 0.5rem;
  width: 0.5rem;
	position: absolute;
	left: 0;
	top: 0.85em;
}

.purchaseFlowSubList__img {
  padding-block: 4.1875rem 1.25rem;
}

.purchaseFlowSubList__img img {
  max-width: 23.125rem;
}

.purchaseFlowSubList__link {
  font-size: 1rem;
  align-items: center;
  color: var(--color-brand-blue);
  display: flex;
  font-size: 1rem;
  gap: 0.625rem;
  text-decoration: underline;
}

.purchaseFlowSubList__link::after {
  background-image: url(../../images/common/icon-link--blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 0.75rem;
  width: 0.75rem;
}

.purchaseFlowList__text {
	font-size: 1rem;
}

.purchaseFlowList__link {
  color: var(--color-brand-blue);
  text-decoration: underline;
}

@media screen and (max-width:767px) {
  .purchaseFlowSubList__img {
    padding-block: 2rem 1rem;
  }
}

@media screen and (max-width:402px) {
  .purchaseFlowSubList__img, .purchaseFlowSubList__img img {
    max-width: unset;
    width: 100%;
  }
}

/* userGuid */
.userGuide {
  padding-top: 8.75rem;
}

.userGuide__column {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 5rem;
}

.userGuide__item {
  align-items: center;
  background: var(--color-panel);
  border-radius: 8px;
  display: flex;
  gap: 1rem 0;
  justify-content: space-between;
  padding: 2rem 2rem;
}

.userGuide__text {
  font-size: 1rem;
}

.userGuide__link {
  font-size: 0.875rem;
  height: 2.5rem;
  padding-inline: 2rem;
}

.userGuideTab {
  margin-top: 5rem;
}

.userGuideTab input {
  display: none;
}

.userGuideTab__nav {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: clamp(1rem, -0.408rem + 6.01vw, 5rem);
  position: relative;
}

.userGuideTab__nav::after {
  background: #c8cfd5;
  bottom: 1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.userGuideTab__label {
  align-items: center;
  border: 1px solid #c8cfd5;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 3.75rem;
  justify-content: center;
  position: relative;
  top: -1px;
  transition: 0.3s;
}

@media (hover: hover) {
  .userGuideTab__label:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
  .userGuideTab__label:focus-visible {
    cursor: pointer;
    opacity: 0.7;
  }

.userGuideTab__contents {
  padding: clamp(3rem, 2.296rem + 3vw, 5rem) clamp(0rem, -1.761rem + 7.51vw, 5rem) 0;
}

.userGuideTab__content {
  display: none;
}

.userGuideTab__list {
  display: grid;
  gap: 5rem;
}

.userGuideTab__item {
  display: grid;
  gap: clamp(2rem, 0.944rem + 4.51vw, 5rem);
  grid-template-columns: 35.71% auto;
}

.userGuideTab__title {
  display: grid;
  font-size: clamp(1.125rem, 1.081rem + 0.19vw, 1.25rem);
  font-weight: 400;
  gap: 0.625rem;
  grid-template-columns: 0.5rem auto;
}

.userGuideTab__title::before {
  background: var(--color-brand-blue);
  border-radius: 50%;
  content: "";
  height: 0.5rem;
  position: relative;
  top: 1rem;
  width: 0.5rem;
}

.userGuideTab__text {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  margin-top: clamp(1rem, 0.648rem + 1.5vw, 2rem);
}

.userGuideTab__link {
  font-size: 0.875rem;
  height: 2.5rem;
  margin-top: 2rem;
  padding-inline: 2rem;
}

.userGuideTab__anchorNavWrap {
  padding-bottom: 5rem;
}

.userGuideTab__anchorNavText {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  letter-spacing: 0.05em;
}

.userGuideTab__anchorNav {
  margin-top: 2.5rem;
}

.userGuideTab__anchorNavList {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 0.824rem + 0.75vw, 1.5rem);
}

.userGuideTab__anchorBtn {
  font-size: clamp(0.875rem, 0.706rem + 0.19vw, 0.875rem);
  height: 2.5rem;
  padding-inline: 2rem;
}

.userGuideTab__item:has(.userGuideTab__subList) {
  grid-template-columns: 1fr;
}

.userGuideTab__subList {
  border-bottom: 1px solid var(--color-gray);
  display: grid;
  gap: 5rem;
  padding-bottom: 5rem;
}

.userGuideTab__subItem {
  display: grid;
  gap: clamp(2rem, 0.944rem + 4.51vw, 5rem);
  grid-template-columns: 35.71% auto;
}

.userGuideTab__subtitle {
  color: var(--color-brand-blue);
  font-size: 1rem;
  font-weight: 400;
}

.userGuideTab__function {
  background: var(--color-accent-red);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 1rem;
  padding: 0.4375rem 1rem;
  width: fit-content;
}

.software__logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .625rem;
  margin-top: 2rem;
}
.software__logo {
  display: block;
  width: auto;
  height: 1.25rem;
}

#tab01:checked ~ .userGuideTab__contents #content01 {
  display: block;
}

#tab02:checked ~ .userGuideTab__contents #content02 {
  display: block;
}

#tab03:checked ~ .userGuideTab__contents #content03 {
  display: block;
}

#tab04:checked ~ .userGuideTab__contents #content04 {
  display: block;
}

#tab01:checked ~ .userGuideTab__navWrap .userGuideTab__label[for="tab01"], #tab02:checked ~ .userGuideTab__navWrap .userGuideTab__label[for="tab02"], #tab03:checked ~ .userGuideTab__navWrap .userGuideTab__label[for="tab03"], #tab04:checked ~ .userGuideTab__navWrap .userGuideTab__label[for="tab04"] {
  background: #f3f9fd;
  position: relative;
  z-index: 1;
}

#content02 {
  .userGuideTab__img-flex {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;

    .userGuideTab__text-s {
      font-size: .75rem;
      margin-top: .7694rem;
    }
  }
}
.userGuideTab__text.bold {
  font-weight: 700;
}
.userGuideTab__text.mt-0 {
  margin-top: 0;
}

@media screen and (min-width:768px) {
  .userGuide__item:nth-of-type(2) .userGuide__link {
    min-width: 13.75rem;
  }
}

@media screen and (max-width:1280px) {
  .userGuide__column {
    grid-template-columns: 1fr;
  }

  .userGuide__item {
    margin-inline: auto;
    max-width: 40rem;
    width: 100%;
  }
}

@media screen and (max-width:767px) {
  .userGuide__column {
    margin-top: 2.5rem;
  }

  .userGuide__item {
    align-items: flex-start;
    flex-direction: column;
  }

  .userGuideTab {
    margin-top: 2.5rem;
  }

  .userGuideTab__navWrap {
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .userGuideTab__navWrap::-webkit-scrollbar {
    display: none;
  }

  .userGuideTab__nav {
    min-width: 42.625rem;
    padding-top: 1px;
  }

  .userGuideTab__navScrollbar {
    background: var(--color-gray);
    border-radius: 100px;
    height: 8px;
    margin-top: 1.5rem;
    overflow: hidden;
    position: relative;
  }

  .userGuideTab__navScrollbarThumb {
    background: var(--color-brand-blue);
    border-radius: 100px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
  }

  .userGuideTab__item {
    grid-template-columns: 1fr;
  }

  .userGuideTab__subItem {
    grid-template-columns: 1fr;
  }

  .relatedLinks {
    padding-top: 0;
  }
}
