.global-image-buy {
  position: relative;
  font-size: 0.8333333333vw;
}

.global-image-buy-bg {}

/** PC */
.global-image-buy-wrapper {
  position: absolute;
  width: 100%;
  height: calc(100% - var(--header-height));
  left: 0;
  top: 0;
  padding-left: 18em; /* 288px / 16 = 18em */
  display: flex;
  align-items: center;
}

.global-image-buy-content {
  color: #fff;
  white-space: nowrap;
  text-align: center;
}

.global-image-buy-image-pc {
  display: block;
  width: 100%;
  height: 100vh;
}

.global-image-buy-image-mb {
  display: none;
}

.global-image-buy-title1 {
  font-size: 4em; /* 64px / 16 = 4em */
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  color: rgb(36, 69, 109);
}

.global-image-buy-title2 {
  font-size: 2em; /* 32px / 16 = 2em */
  font-weight: 600;
  line-height: 1.375;
  padding-top: 1em;
  color: rgb(36, 69, 109);
}

.global-image-buy-component {
  display: block;
  padding-top: 2em; /* 32px / 16 = 2em */
}

.global-image-buy-button {
  background-color: rgb(254 219 30);
  font-family: Nunito Sans;
  font-weight: 600;
  font-size: 1.5em; /* 24px / 16 = 1.5em */
  line-height: 1; /* 100% already converted */
  width: 9.8em; /* 235px / 16 = 14.6875em */
  height: 2.5em; /* 60px / 16 = 3.75em */
  margin: 1.33333em auto 0; /* 32px / 16 = 2em */
  color: #040921;
  display: flex;
  border-radius: 1.25em;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .global-image-buy-image-pc {
    display: none;
  }

  .global-image-buy-image-mb {
    display: block;
    width: 100%;
    height: auto;
  }

  .global-image-buy-wrapper {
    padding: 7.5em 0;
    justify-content: center;
    align-items: stretch;
    height: 100%;
  }

  .global-image-buy-title1{
    font-size: 8em;
  }

  .global-image-buy-title2 {
    font-size: 4em;
  }

  .global-image-buy-button {
    position: absolute;
    left: calc((100% - 10.111em)/2);
    bottom: 0;
    font-size: 3.5em;
    width: 12.111em;
    height: 2.6666em;
  }

  .global-image-buy-content {
    position: relative;
  }


}

@media screen and (max-width: 959px) {
  .global-image-buy {
    font-size: 2.1333333vw;
  }
  .global-image-buy-content{
    position: relative;
  }
  .global-image-buy-title1{
    font-size: 4em;
    line-height: 1;
  }
  .global-image-buy-title2 {
    font-size: 2em;
    padding-top: 1em;
    line-height: 1.375;
  }
  .global-image-buy-button{
    font-size: 2.25em;
    width: 10.111em;
    height: 2.6666em;
    display: flex;
    border-radius: 1.33333em;
  }
}