@charset "UTF-8";
/* ▼ -----------可変設定---------- ▼ */
.GlobalGuideline {
  /*デザインの値*/
  --pc-width: 1000; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 420; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(var(--variable) * var(--ratio)); /*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1); /*PCデザインの可変割合の計算式*/
}

/* PC画面幅 1000px以上 固定 */
@media (min-width: 1001px) {
  .GlobalGuideline {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
/* PC画面幅 768～1000px 可変 */
@media (min-width: 768px) and (max-width: 1000px) {
  .GlobalGuideline {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .GlobalGuideline {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
/* ▲ -----------可変設定---------- ▲ */
@media screen and (max-width: 767px) {
  html {
    scroll-behavior: smooth;
  }
}
.globalguideline {
  max-width: 1000px;
  margin: 0 auto;
}
.globalguideline img {
  width: 100%;
  height: auto;
}
.globalguideline .bg-gray {
  background-color: rgba(170, 170, 170, 0.1);
}
.globalguideline .pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .globalguideline .pc-none {
    display: block;
  }
}
.globalguideline .sp-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .globalguideline .sp-none {
    display: none;
  }
}
.globalguideline h3 {
  color: #d05122;
  font-size: 3rem;
  letter-spacing: 0.09em;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  text-align: center;
  margin: 0 auto 6rem;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline h3 {
    font-size: calc(42 * 100vw / 750);
    padding-top: calc(130 * 100vw / 750);
    margin: 0 auto calc(80 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline {
    max-width: 100%;
  }
}
.globalguideline p {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
}
.globalguideline__mv__title {
  margin: 7.8rem auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .globalguideline__mv__title {
    margin: calc(125 * 100vw / 750) auto calc(130 * 100vw / 750);
  }
}
.globalguideline__mv__title h2 {
  font-size: 2.2rem;
  font-family: "area-normal", sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 2.2rem;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .globalguideline__mv__title h2 {
    font-size: calc(36 * 100vw / 750);
    margin-bottom: calc(25 * 100vw / 750);
  }
}
.globalguideline__mv__title p {
  font-size: 1.58rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .globalguideline__mv__title p {
    font-size: calc(26 * 100vw / 750);
    letter-spacing: 0.05em;
  }
}
.globalguideline .tab-container {
  width: 100%;
  margin: 0 auto 8rem;
  font-family: sans-serif;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container {
    margin: calc(100 * 100vw / 750) auto calc(137 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  border-bottom: 2px solid #d05122;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-buttons {
    gap: calc(8 * 100vw / 750);
    border-bottom: calc(10 * 100vw / 750) solid #d05122;
  }
}
.globalguideline .tab-container .tab-btn {
  cursor: pointer;
  outline: none;
  transition: 0.3s;
  font-weight: normal;
  border-radius: 0;
  border: none;
  width: 15rem;
  height: 5.1rem;
  text-align: center;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem 0.5rem 0 0;
  border: 1px solid #aaaaaa;
  border-bottom: none;
  color: black;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-btn {
    width: calc(145 * 100vw / 750);
    height: calc(145 * 100vw / 750);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(26 * 100vw / 750);
    border: calc(2 * 100vw / 750) solid #aaaaaa;
    border-radius: calc(15 * 100vw / 750) calc(15 * 100vw / 750) 0 0;
    border-bottom: 0;
    padding: 0 !important;
  }
  .globalguideline .tab-container .tab-btn:first-child {
    border-radius: 0 calc(15 * 100vw / 750) 0 0;
    border-left: 0;
  }
  .globalguideline .tab-container .tab-btn:last-child {
    border-radius: calc(15 * 100vw / 750) 0 0 0;
    font-size: calc(26 * 100vw / 750);
    border-right: 0;
  }
}
.globalguideline .tab-container .tab-btn.active {
  background-color: #d05122;
  border: 1px solid #d05122;
  color: #fff;
  z-index: 1;
}
.globalguideline .tab-container .tab-btn.jp {
  padding: 1.4rem 0 1.4rem;
}
.globalguideline .tab-container .tab-btn.ch1, .globalguideline .tab-container .tab-btn.ch2 {
  padding-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-btn.ch1, .globalguideline .tab-container .tab-btn.ch2 {
    line-height: 1.75;
  }
}
.globalguideline .tab-container .tab-btn.jp, .globalguideline .tab-container .tab-btn.ch1, .globalguideline .tab-container .tab-btn.ch2 {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
}
.globalguideline .tab-container .tab-btn.en {
  font-family: "area-normal", sans-serif;
}
.globalguideline .tab-container .tab-btn.kr {
  font-family: "yoon-gulim-750", sans-serif;
}
.globalguideline .tab-container .tab-content {
  display: none;
  margin-top: 7.9rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content {
    margin-top: calc(133 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.active {
  display: block;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.globalguideline .tab-container .tab-content--pb {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content--pb {
    padding-bottom: calc(140 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__btn-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 82rem;
  margin: 0 auto 8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list {
    width: auto;
    margin-bottom: calc(140 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__btn-list a {
  font-size: 1.8rem;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  letter-spacing: 0.04em;
  padding-bottom: 1.7rem;
  text-align: center;
  border-bottom: 1px solid #aaaaaa;
  display: flex;
  align-items: center;
  margin-right: 2rem;
  margin-bottom: 2.8rem;
  justify-content: center;
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list a {
    position: relative;
    border-bottom: calc(1 * 100vw / 750) solid #aaaaaa;
    font-size: calc(30 * 100vw / 750);
    width: calc(210 * 100vw / 750);
    margin-right: calc(34 * 100vw / 750);
    padding-bottom: calc(20 * 100vw / 750);
    margin-bottom: calc(43 * 100vw / 750);
    padding-right: calc(50 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content__btn-list a:nth-child(4), .globalguideline .tab-container .tab-content__btn-list a:last-child {
    width: calc(330 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__btn-list a::after {
  content: "";
  background: url("../img/btn-accent.svg");
  width: 1.4rem;
  height: 1.4rem;
  background-size: contain;
  background-position: center;
  display: block;
  background-repeat: no-repeat;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list a::after {
    position: absolute;
    width: calc(23 * 100vw / 750);
    background-size: contain;
    height: calc(23 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__btn-list a:first-child::after {
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list a:first-child::after {
    right: calc(20 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list a:first-child {
    margin-left: calc(8 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list a:nth-child(2) {
    padding-right: calc(57 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content__btn-list a:nth-child(2)::after {
    right: calc(37 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__btn-list a:nth-child(3) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list a:nth-child(3) {
    padding-right: calc(68 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content__btn-list a:nth-child(3)::after {
    right: calc(57 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__btn-list a:nth-child(4) {
  margin-bottom: 0;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list a:nth-child(4) {
    letter-spacing: 0.18em;
    padding-left: calc(7 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content__btn-list a:nth-child(4)::after {
    right: calc(13 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__btn-list a:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.globalguideline .tab-container .tab-content__btn-list a:last-child::after {
  margin-left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__btn-list a:last-child {
    letter-spacing: 0.09em;
  }
  .globalguideline .tab-container .tab-content__btn-list a:last-child::after {
    right: calc(47 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content--text {
  width: 64rem;
  margin: 0 auto;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content--text {
    width: calc(630 * 100vw / 750);
    font-size: calc(26 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content--text a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery {
    padding-bottom: calc(128 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery h3 {
    margin: 0 auto calc(87 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__delivery__img {
  text-align: center;
}
.globalguideline .tab-container .tab-content__delivery__img img {
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery__img img {
    width: calc(630 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__delivery__img--text {
  font-size: 1.2rem;
  color: #aaaaaa;
  margin: 2.8rem auto 5.7rem;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery__img--text {
    font-size: calc(19.8 * 100vw / 750);
    margin: calc(55 * 100vw / 750) auto calc(85 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__delivery__about--text.m-t60 {
  margin-top: 5.3rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery__about--text.m-t60 {
    margin-top: calc(88 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__delivery__about--text p {
  padding-left: 8rem;
  position: relative;
  letter-spacing: 0.04em;
  font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery__about--text p {
    width: calc(570 * 100vw / 750);
    padding-left: 0;
    margin-left: calc(122 * 100vw / 750);
    text-align: justify;
  }
}
.globalguideline .tab-container .tab-content__delivery__about--text p.text01 {
  margin-bottom: 2.5rem;
  letter-spacing: 0.048em;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery__about--text p.text01 {
    margin-bottom: calc(46 * 100vw / 750);
    letter-spacing: 0.026em;
  }
}
.globalguideline .tab-container .tab-content__delivery__about--text p.text01::before {
  content: "1.";
  position: absolute;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery__about--text p.text01::before {
    left: calc(-62 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__delivery__about--text p.text02::before {
  content: "2.";
  position: absolute;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__delivery__about--text p.text02::before {
    left: calc(-60 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__commission {
    padding-bottom: calc(135 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__commission h3 {
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__commission h3 {
    margin-bottom: calc(80 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__commission .tab-content--text {
    text-align: justify;
  }
}
.globalguideline .tab-container .tab-content__commission--text {
  font-size: 1.2rem;
  letter-spacing: normal;
  color: #aaaaaa;
  margin-top: 2rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__commission--text {
    font-size: calc(20 * 100vw / 750);
    margin-top: calc(45 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content__commission--text .jp-txt {
    margin-right: calc(5 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__payment {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__payment {
    padding-bottom: calc(140 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__payment h3 {
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__payment h3 {
    margin-bottom: calc(80 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__payment .tab-content--text {
    text-align: justify;
  }
}
.globalguideline .tab-container .tab-content__payment__img {
  text-align: center;
}
.globalguideline .tab-container .tab-content__payment__img img {
  margin-top: 2.4rem;
  padding: 3rem;
  width: 58rem;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__payment__img img {
    width: calc(630 * 100vw / 750);
    margin-top: calc(48 * 100vw / 750);
    padding: calc(60 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__contact h3 {
  letter-spacing: 0.1em;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__contact h3 {
    margin-bottom: calc(80 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__contact .tab-content--text {
  letter-spacing: 0.048em;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__contact .tab-content--text {
    text-align: justify;
  }
}
.globalguideline .tab-container .tab-content__contact__btn {
  display: flex;
  flex-wrap: wrap;
  width: 70rem;
  gap: 3rem 1.8rem;
  justify-content: center;
  margin: 5.2rem auto 0;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__contact__btn {
    gap: calc(45 * 100vw / 750) calc(30 * 100vw / 750);
    width: auto;
    margin-top: calc(82 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__contact__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #aaaaaa;
  padding-bottom: 1.6rem;
  width: 31.1rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__contact__btn a {
    width: calc(300 * 100vw / 750);
    padding-bottom: calc(20 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__contact__btn a.en, .globalguideline .tab-container .tab-content__contact__btn a.ch1, .globalguideline .tab-container .tab-content__contact__btn a.ch2, .globalguideline .tab-container .tab-content__contact__btn a.kr {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__contact__btn a.en, .globalguideline .tab-container .tab-content__contact__btn a.ch1, .globalguideline .tab-container .tab-content__contact__btn a.ch2, .globalguideline .tab-container .tab-content__contact__btn a.kr {
    font-size: calc(30 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__contact__btn a.en, .globalguideline .tab-container .tab-content__contact__btn a.ch1, .globalguideline .tab-container .tab-content__contact__btn a.ch2 {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
}
.globalguideline .tab-container .tab-content__contact__btn a.ch1 span, .globalguideline .tab-container .tab-content__contact__btn a.ch2 span {
  margin-right: auto;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__contact__btn a.ch1 span, .globalguideline .tab-container .tab-content__contact__btn a.ch2 span {
    margin-left: calc(16 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__contact__btn a.kr {
  font-family: "yoon-gulim-750", sans-serif;
  font-size: 1.8rem;
  padding-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__contact__btn a.kr {
    font-size: calc(30 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__contact__btn a::after {
  content: "";
  background: url("../img/btn-accent-r.svg");
  width: 0.7rem;
  height: 1.4rem;
  display: block;
  background-repeat: no-repeat;
  margin-left: 1.3rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__contact__btn a.ch2::after {
    margin-top: calc(-6 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__cancel {
    padding-bottom: calc(130 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content__cancel h3 {
  letter-spacing: 0.16em;
  padding-left: 0.5rem;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__cancel h3 {
    margin-bottom: calc(80 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content__cancel p {
    text-align: justify;
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content {
    margin-top: calc(125 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content a, .globalguideline .tab-container .tab-content.en-content p, .globalguideline .tab-container .tab-content.en-content h3 {
  font-family: "area-normal", sans-serif;
}
.globalguideline .tab-container .tab-content.en-content p {
  text-align: left;
}
.globalguideline .tab-container .tab-content.en-content h3 {
  letter-spacing: 0.04em;
  padding-top: 7.8rem;
  margin-bottom: 5.8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content h3 {
    padding-top: calc(125 * 100vw / 750);
    margin-bottom: calc(86 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content h3.m-en-delivery {
  margin-bottom: 6.7rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content h3.m-en-delivery {
    margin-bottom: calc(97 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content h3.m-en-cancellation {
    line-height: 1.73;
    margin-bottom: calc(84 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content h3.m-en-regarding {
    margin-bottom: calc(82 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .tab-content--pb {
  padding-bottom: 7.8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .tab-content--pb {
    padding-bottom: calc(132 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .tab-content--text {
  letter-spacing: 0.045em;
}
.globalguideline .tab-container .tab-content.en-content .tab-content__btn-list {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list {
    margin-bottom: calc(120 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a {
  width: 25rem;
  letter-spacing: 0.04em;
  padding-bottom: 1.9rem;
  margin-bottom: 3rem;
}
.globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a::after {
  margin-left: 2.1rem;
  margin-top: 0.4rem;
}
.globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:first-child:after {
  margin-left: 2.1rem;
  margin-top: 0.4rem;
}
.globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(4), .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(5) {
  width: 38.5rem;
}
.globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:last-child::after {
  margin-left: 2.1rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a {
    margin: 0 auto;
  }
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:first-child, .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(4), .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(5) {
    width: calc(690 * 100vw / 750);
    padding-left: calc(50 * 100vw / 750);
    padding-bottom: calc(28 * 100vw / 750);
    margin-bottom: calc(35 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:first-child:after, .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(4):after, .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(5):after {
    right: calc(0 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(5) {
    margin-bottom: 0;
  }
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(2) {
    margin-left: calc(30 * 100vw / 750);
    padding-left: calc(63 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(2), .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(3) {
    width: calc(330 * 100vw / 750);
    padding-bottom: calc(23 * 100vw / 750);
    margin-bottom: calc(38 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(2)::after, .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(3)::after {
    right: calc(0 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.en-content .tab-content__btn-list a:nth-child(3) {
    margin-left: calc(0 * 100vw / 750);
    padding-left: calc(70 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .tab-content__delivery__about--text.w-en .tab-content--text {
  width: 59rem;
  margin-left: 14rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .tab-content__delivery__about--text.w-en .tab-content--text {
    width: calc(570 * 100vw / 750);
    margin-left: calc(122 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .tab-content__payment__img img {
  margin-top: 2.6rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .tab-content__payment__img img {
    margin-top: calc(55 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .tab-content__contact__btn {
  margin: 5.7rem auto 0;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .tab-content__contact__btn {
    margin-top: calc(85 * 100vw / 750);
    gap: calc(37 * 100vw / 750) calc(30 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .tab-content__contact__btn a {
  padding-bottom: 1.8rem;
}
.globalguideline .tab-container .tab-content.en-content .tab-content__contact__btn a.kr {
  padding-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .tab-content__contact__btn a.kr {
    padding-bottom: calc(28 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .tab-content__contact__btn a.ch1 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .tab-content__contact__btn a {
    width: calc(630 * 100vw / 750);
    padding-bottom: calc(26 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.en-content .globalguideline__top-btn {
  margin-top: 8.3rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.en-content .globalguideline__top-btn {
    margin-top: calc(145 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch01-content .globalguideline__top-btn a, .globalguideline .tab-container .tab-content.ch02-content .globalguideline__top-btn a {
  color: white;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "hellofont-id-dianyuan", sans-serif;
}
.globalguideline .tab-container .tab-content.ch01-content .globalguideline__top-btn a span, .globalguideline .tab-container .tab-content.ch02-content .globalguideline__top-btn a span {
  font-weight: 600;
  font-family: "hellofont-id-dianyuan", sans-serif;
}
.globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a, .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a {
  width: 20rem;
  letter-spacing: 0.04em;
}
.globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(4), .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(5), .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(4), .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(5) {
  width: 31rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__commission--text, .globalguideline .tab-container .tab-content.ch02-content .tab-content__commission--text {
    letter-spacing: normal !important;
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__commission--text:before, .globalguideline .tab-container .tab-content.ch02-content .tab-content__commission--text:before {
    content: none;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .m-t60 {
    margin-top: calc(91 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:first-child:after {
  margin-left: 1.8rem;
}
.globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(4):after {
  margin-left: 4rem;
}
.globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(5):after {
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a {
    margin: 0 auto;
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:first-child, .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(4), .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(5) {
    width: calc(690 * 100vw / 750);
    padding-left: calc(50 * 100vw / 750);
    padding-bottom: calc(24 * 100vw / 750);
    margin-bottom: calc(36 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:first-child:after, .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(4):after, .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(5):after {
    right: calc(0 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(5) {
    margin-bottom: 0;
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(4) {
    padding-bottom: calc(24 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(2) {
    margin-left: calc(30 * 100vw / 750);
    padding-left: calc(63 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(2), .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(3) {
    width: calc(330 * 100vw / 750);
    padding-bottom: calc(24 * 100vw / 750);
    margin-bottom: calc(36 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(2)::after, .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(3)::after {
    right: calc(0 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__btn-list a:nth-child(3) {
    margin-left: calc(0 * 100vw / 750);
    padding-left: calc(70 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch01-content h3 {
  letter-spacing: 0.04em;
}
.globalguideline .tab-container .tab-content.ch01-content .tab-content__delivery__about--text p.text01 {
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 768px) {
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__delivery__about--text p.text01 {
    width: 60rem;
    padding-left: 4rem;
  }
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__delivery__about--text p.text01:before {
    left: 0rem;
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__delivery__about--text p.text01 {
    margin-bottom: calc(46 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__delivery__about--text .ch-sp-delivery {
    letter-spacing: 0.02em;
  }
}
.globalguideline .tab-container .tab-content.ch01-content .tab-content--text {
  letter-spacing: 0.04em;
}
.globalguideline .tab-container .tab-content.ch01-content .ch01-cancel {
  padding-bottom: 7.3rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .ch01-cancel {
    padding-bottom: calc(130 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch01-content .tab-content__contact__btn {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__contact__btn {
    margin-top: calc(80 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch01-content .ch01-contact {
  padding-bottom: 7.9rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .ch01-contact {
    padding-bottom: calc(137 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .globalguideline__top-btn a {
    font-size: calc(26 * 100vw / 750);
    padding: calc(28 * 100vw / 750) 0 calc(33 * 100vw / 750);
    line-height: 1.75;
  }
  .globalguideline .tab-container .tab-content.ch01-content .globalguideline__top-btn__brand-name {
    font-size: calc(36 * 100vw / 750);
    font-weight: 900;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch01-content .tab-content__cancel h3 {
    margin-bottom: calc(74 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch02-content a, .globalguideline .tab-container .tab-content.ch02-content p, .globalguideline .tab-container .tab-content.ch02-content h3 {
  font-family: "hellofont-id-dianyuan", sans-serif;
}
.globalguideline .tab-container .tab-content.ch02-content.tab-content {
  margin-top: 8.2rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch02-content.tab-content {
    margin-top: calc(133 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch02-content .m-t60 {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch02-content .m-t60 {
    margin-top: calc(96 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a {
  padding-bottom: 1.55rem;
}
.globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:first-child:after {
  margin-left: 1.8rem;
}
.globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(4):after {
  margin-left: 4rem;
}
.globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(5):after {
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a {
    margin: 0 auto;
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:first-child, .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(4), .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(5) {
    width: calc(690 * 100vw / 750);
    padding-left: calc(50 * 100vw / 750);
    padding-bottom: calc(24 * 100vw / 750);
    margin-bottom: calc(45 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:first-child:after, .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(4):after, .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(5):after {
    right: calc(0 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(5) {
    margin-bottom: 0;
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(4) {
    padding-bottom: calc(25 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(2) {
    margin-left: calc(30 * 100vw / 750);
    padding-left: calc(63 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(2), .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(3) {
    width: calc(330 * 100vw / 750);
    padding-bottom: calc(24 * 100vw / 750);
    margin-bottom: calc(45 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(2)::after, .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(3)::after {
    right: calc(0 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__btn-list a:nth-child(3) {
    margin-left: calc(0 * 100vw / 750);
    padding-left: calc(70 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__delivery {
    padding-bottom: calc(133 * 100vw / 750);
  }
}
@media screen and (min-width: 768px) {
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__delivery__about--text p.text01 {
    width: 60rem;
    padding-left: 4rem;
  }
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__delivery__about--text p.text01:before {
    left: 0rem;
  }
}
.globalguideline .tab-container .tab-content.ch02-content h3 {
  letter-spacing: 0.04em;
}
.globalguideline .tab-container .tab-content.ch02-content .tab-content__commission--text {
  margin-top: 2.2rem;
  letter-spacing: normal;
}
.globalguideline .tab-container .tab-content.ch02-content .tab-content__contact__btn {
  margin-top: 5.7rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__contact__btn {
    margin-top: calc(80 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.ch02-content .globalguideline__top-btn {
  margin-top: 8.4rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch02-content .ch02-contact h3 {
    padding-top: calc(135 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch02-content .tab-content__contact__btn {
    gap: calc(38 * 100vw / 750) calc(30 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.ch02-content .globalguideline__top-btn {
    margin-top: 6.8rem;
  }
  .globalguideline .tab-container .tab-content.ch02-content .globalguideline__top-btn a {
    font-size: calc(26 * 100vw / 750);
    padding: calc(33 * 100vw / 750) 0 calc(33 * 100vw / 750);
    line-height: 1.78;
  }
  .globalguideline .tab-container .tab-content.ch02-content .globalguideline__top-btn__brand-name {
    font-size: calc(34 * 100vw / 750);
    font-weight: 900;
    letter-spacing: 0.05em;
  }
}
.globalguideline .tab-container .tab-content.kr-content a, .globalguideline .tab-container .tab-content.kr-content p, .globalguideline .tab-container .tab-content.kr-content h3 {
  font-family: "yoon-gulim-750", sans-serif;
  letter-spacing: 0.04em;
}
.globalguideline .tab-container .tab-content.kr-content .tab-content--text {
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content--text {
    text-align: left;
  }
}
.globalguideline .tab-container .tab-content.kr-content h3 {
  letter-spacing: 0.04em;
  margin-bottom: 5.8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content h3 {
    margin-bottom: calc(88 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.kr-content .kr-delivery {
  padding-bottom: 7.8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .kr-delivery {
    padding-bottom: calc(135 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.kr-content .kr-delivery-title {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .kr-delivery-title {
    margin-bottom: calc(100 * 100vw / 750);
    padding-top: calc(90 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.kr-content .kr-contact {
  padding-bottom: 7.7rem;
}
.globalguideline .tab-container .tab-content.kr-content .kr-contact h3 {
  margin-bottom: 5.4rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .kr-contact h3 {
    margin-bottom: calc(88 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content #cancel-kr h3 {
    margin-bottom: calc(95 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content #cancel-kr .tab-content--text {
    letter-spacing: 0.07em;
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__cancel {
    padding-bottom: calc(123 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list {
  margin-bottom: 8.2rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list {
    margin-top: calc(79 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a {
  width: 20rem;
  letter-spacing: 0.04em;
  padding-bottom: 1.65rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a {
    position: relative;
    border-bottom: calc(1 * 100vw / 750) solid #aaaaaa;
    font-size: calc(30 * 100vw / 750);
    width: calc(210 * 100vw / 750);
    margin-right: calc(34 * 100vw / 750);
    padding-bottom: calc(25 * 100vw / 750);
    margin-bottom: calc(43 * 100vw / 750);
    padding-right: calc(50 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:nth-child(4), .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:last-child {
    width: calc(330 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:first-child::after {
    right: calc(13 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:first-child {
    margin-left: calc(8 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:nth-child(2) {
    padding-right: calc(57 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:nth-child(2)::after {
    right: calc(37 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:nth-child(3) {
    margin-right: 0;
    padding-right: calc(68 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:nth-child(3)::after {
    right: calc(57 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:nth-child(4) {
    padding-left: calc(7 * 100vw / 750);
    margin-left: calc(22 * 100vw / 750);
    margin-right: calc(29 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:nth-child(4)::after {
    right: calc(20 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:last-child {
    padding-left: calc(12 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list a:last-child::after {
    right: calc(88 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__btn-list {
    width: auto;
    margin-bottom: calc(140 * 100vw / 750);
  }
}
.globalguideline .tab-container .tab-content.kr-content .tab-content__commission--text {
  margin-top: 2.3rem;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__commission--text:before {
    content: none;
    margin-right: 0;
  }
}
.globalguideline .tab-container .tab-content.kr-content .tab-content__payment__img img {
  margin-top: 2.7rem;
}
.globalguideline .tab-container .tab-content.kr-content.tab-content {
  margin-top: 8.2rem;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content.tab-content {
    margin-top: calc(133 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content.tab-content .tab-content__contact__btn {
    margin-top: calc(80 * 100vw / 750);
  }
  .globalguideline .tab-container .tab-content.kr-content.tab-content .tab-content__contact__btn a {
    padding-bottom: calc(21 * 100vw / 750);
  }
}
@media screen and (min-width: 768px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__delivery__about--text p.text01 {
    width: 60rem;
    padding-left: 4rem;
  }
  .globalguideline .tab-container .tab-content.kr-content .tab-content__delivery__about--text p.text01:before {
    left: 0rem;
  }
}
@media screen and (min-width: 768px) {
  .globalguideline .tab-container .tab-content.kr-content .tab-content__delivery__about--text p.text02 {
    width: 59rem;
    padding-left: 3rem;
  }
  .globalguideline .tab-container .tab-content.kr-content .tab-content__delivery__about--text p.text02:before {
    left: -1rem;
  }
}
.globalguideline .tab-container .tab-content.kr-content .tab-content__contact__btn {
  margin-top: 5.4rem;
}
.globalguideline .tab-container .tab-content.kr-content .globalguideline__top-btn a {
  color: white;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.globalguideline .tab-container .tab-content.kr-content .globalguideline__top-btn a span {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .globalguideline__top-btn {
    margin-top: calc(125 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .globalguideline__top-btn a {
    font-size: calc(25 * 100vw / 750);
    padding: calc(25 * 100vw / 750);
    line-height: 1.8;
    letter-spacing: 0.07em;
    padding: calc(25 * 100vw / 750) 0 calc(30 * 100vw / 750);
  }
}
@media screen and (max-width: 767px) {
  .globalguideline .tab-container .tab-content.kr-content .globalguideline__top-btn__bland {
    font-size: calc(36 * 100vw / 750);
  }
}
.globalguideline__top-btn {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .globalguideline__top-btn {
    margin-top: calc(140 * 100vw / 750);
  }
}
.globalguideline__top-btn a {
  display: block;
  background-color: #d05122;
  width: 64rem;
  text-align: center;
  padding: 4rem 0 3.9rem;
  margin: 0 auto 10rem;
}
@media screen and (max-width: 767px) {
  .globalguideline__top-btn a {
    width: calc(630 * 100vw / 750);
    margin: 0 auto calc(240 * 100vw / 750);
    padding: calc(43 * 100vw / 750);
  }
}
.globalguideline__top-btn a img {
  width: 26.7rem;
}
@media screen and (max-width: 767px) {
  .globalguideline__top-btn a img {
    width: calc(273 * 100vw / 750);
  }
}