*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

:root {
  --xd-px: 1vw / 7.5;
  --base-padding: 20px;
  --fontsize-pc-base: 16px;
  --fontsize-sp-base: calc(28 * var(--xd-px));
  --fontweight-medium: 500;
  --fontweight-extrabold: 800;
  --color-bggray-textblack: #333333;
  --color-white: #FFFFFF;
  --color-bgwhite-textblack: #303030;
  --bgcolor-lightgray: #EAEAEA;
  --bgcolor-blue:#0076FF;
  --bgcolor-deep-blue: #144CBD;
  --bgcolor-black: #0D0D0E;
  --bgcolor-lightblue: #D9EEFF;
  --bordercolor-black: #333333;
}
@media screen and (max-width: 800px) {
  :root {
    --header-height: calc(100 * var(--xd-px));
  }
}
@media screen and (min-width: 801px) {
  :root {
    --header-height: 80px ;
  }
}

* {
  font-family: noto-sans, sans-serif;
}

header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  z-index: 998;
  background: white;
}
header a {
  display: inline-block;
  text-decoration: none;
}
header .sp-menu {
  z-index: 999;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  transform: translateX(100%);
  background-color: var(--color-white);
  height: 100vh;
  width: 100%;
  transition: all 0.3s;
}
@media screen and (min-width: 801px) {
  header .sp-menu {
    display: none;
  }
}
header .sp-menu .list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: min(460 * var(--xd-px), 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .sp-menu .list a {
  display: inline-block;
  text-decoration: none;
  color: var(--color-bgwhite-textblack);
  font-size: calc(30 * var(--xd-px));
  font-weight: var(--fontweight-extrabold);
}
header .sp-menu.active {
  transform: translateX(0);
}
header .jugyo-logo {
  background-image: url(./global-img/jugyo_logo.png);
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  height: 65px;
  width: 129px;
  margin-left: 11px;
  margin-top: 9px;
}
@media screen and (max-width: 800px) {
  header .jugyo-logo {
    height: calc(75.78 * var(--xd-px));
    width: calc(150 * var(--xd-px));
    margin-left: calc(16 * var(--xd-px));
    margin-top: calc(12 * var(--xd-px));
  }
}
header .pc-right-wrapper {
  display: inline-flex;
  float: right;
  height: 80px;
  align-items: center;
  width: min(722px, 100% - 140px - 30px);
  justify-content: space-evenly;
}
@media screen and (max-width: 800px) {
  header .pc-right-wrapper {
    display: none;
  }
}
header .pc-right-wrapper .about, header .pc-right-wrapper .lineup, header .pc-right-wrapper .jisseki, header .pc-right-wrapper .contact {
  font-size: 14px;
  font-weight: var(--fontweight-extrabold);
  color: var(--color-bgwhite-textblack);
}
header .pc-right-wrapper .contact {
  display: flex;
  align-items: center;
  border-radius: 100vh;
  border: 2px solid var(--bordercolor-black);
  line-height: 28px;
  width: 144px;
  height: 32px;
}
header .pc-right-wrapper .contact .envelope {
  width: 20px;
  height: 15.38px;
  background-image: url(./global-img/envelope.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 16px;
}
header .pc-right-wrapper .contact .contact-text {
  margin-left: 8px;
  color: var(--color-bgwhite-textblack);
  font-size: 14px;
  font-weight: var(--fontweight-extrabold);
}
header .sp-right-wrapper {
  display: inline-flex;
  float: right;
  height: calc(100 * var(--xd-px));
  align-items: center;
  width: min(334 * var(--xd-px), 100% - 16 * var(--xd-px) - 150 * var(--xd-px) - 14 * var(--xd-px));
  justify-content: space-evenly;
}
@media screen and (min-width: 801px) {
  header .sp-right-wrapper {
    display: none;
  }
}
header .sp-right-wrapper .contact {
  display: flex;
  align-items: center;
  border-radius: 100vh;
  border: 2px solid var(--bordercolor-black);
  text-decoration: none;
  line-height: calc(72 * var(--xd-px) - 4px);
  width: calc(220 * var(--xd-px));
  height: calc(72 * var(--xd-px));
}
header .sp-right-wrapper .contact .envelope {
  width: calc(30 * var(--xd-px));
  height: calc(23.08 * var(--xd-px));
  background-image: url(./global-img/envelope.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: calc(32 * var(--xd-px));
}
header .sp-right-wrapper .contact .contact-text {
  margin-left: calc(14 * var(--xd-px));
  color: var(--color-bgwhite-textblack);
  font-size: calc(20 * var(--xd-px));
  font-weight: var(--fontweight-extrabold);
}
header .sp-right-wrapper .hamburger {
  display: inline-block;
  width: calc(72 * var(--xd-px));
  height: calc(72 * var(--xd-px));
  border-radius: 100vh;
  border: none;
  background-color: var(--color-white);
  z-index: 9999;
  background-image: url(./global-img/btn_menu.png);
  background-repeat: no-repeat;
  background-size: contain;
}
header .sp-right-wrapper .hamburger.active {
  background-image: url(./global-img/header_sp.png);
  background-repeat: no-repeat;
  background-size: contain;
}

main {
  padding-top: var(--header-height);
}

body.scroll-cancel {
  overflow-y: hidden;
}

footer {
  background-color: var(--bgcolor-deep-blue);
  color: var(--color-white);
  font-size: 14px;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 76px;
}
@media screen and (max-width: 800px) {
  footer {
    font-size: calc(18 * var(--xd-px));
    padding-top: calc(80 * var(--xd-px));
    padding-bottom: calc(76 * var(--xd-px));
  }
}
footer .zaidan-logo {
  display: block;
  height: 98.68px;
  width: 300px;
  background-image: url(./global-img/zaidan_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  margin-bottom: 40.32px;
}
@media screen and (max-width: 800px) {
  footer .zaidan-logo {
    height: calc(98.68 * var(--xd-px));
    width: calc(300 * var(--xd-px));
    margin-bottom: calc(40.32 * var(--xd-px));
  }
}
footer .credit {
  line-height: 40px;
}
@media screen and (max-width: 800px) {
  footer .credit {
    line-height: calc(40 * var(--xd-px));
  }
}

.global-title-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
  background-image: url("./global-img/wave.png"), url("./global-img/bg_lightblue.png");
  background-size: 1980px, 30px;
  background-position: bottom, top left;
  background-repeat: no-repeat, repeat;
  height: 189px;
}
@media screen and (max-width: 800px) {
  .global-title-wrapper {
    height: calc(158 * var(--xd-px));
    background-size: calc(1980 * var(--xd-px)), 30px;
  }
}
.global-title-text {
  position: absolute;
  color: var(--color-white);
  background-color: var(--bgcolor-black);
  font-weight: var(--fontweight-extrabold);
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  margin: auto;
  font-size: 28px;
  margin-top: 83px;
}
@media screen and (max-width: 800px) {
  .global-title-text {
    padding: calc(4 * var(--xd-px)) calc(12 * var(--xd-px));
    font-size: calc(34 * var(--xd-px));
    margin-top: calc(40 * var(--xd-px));
  }
}
.global-kankyo-wrapper {
  text-align: center;
}
.global-kanryo-title {
  margin: 80px auto;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: var(--fontweight-extrabold);
  font-size: 36px;
}
@media screen and (max-width: 800px) {
  .global-kanryo-title {
    margin: calc(80 * var(--xd-px)) auto;
    font-size: calc(40 * var(--xd-px));
  }
}
.global-graybox {
  background-color: var(--bgcolor-lightgray);
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 80px;
  border-radius: 20px;
  display: table;
  color: var(--color-bggray-textblack);
  font-size: var(--fontsize-pc-base);
}
@media screen and (max-width: 800px) {
  .global-graybox {
    font-size: var(--fontsize-sp-base);
    padding: calc(30 * var(--xd-px));
    margin: 0 calc(40 * var(--xd-px));
    margin-bottom: calc(80 * var(--xd-px));
    border-radius: calc(20 * var(--xd-px));
  }
}
.global-top-button {
  position: relative;
  display: block;
  color: var(--color-bgwhite-textblack);
  margin: auto;
  margin-bottom: 80px;
  border-radius: 100vh;
  border: 2px solid var(--color-bgwhite-textblack);
  font-weight: var(--fontweight-extrabold);
  text-decoration: none;
  width: 223px;
  height: 49px;
  padding-left: 20px;
  font-size: 20px;
  line-height: 45px;
}
@media screen and (max-width: 800px) {
  .global-top-button {
    width: calc(450 * var(--xd-px));
    height: calc(88 * var(--xd-px));
    padding-left: calc(113 * var(--xd-px));
    font-size: calc(28 * var(--xd-px));
    line-height: calc(88 * var(--xd-px) - 4px);
    margin-bottom: calc(80 * var(--xd-px));
  }
}
.global-top-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  box-sizing: border-box;
  border-top: 2px solid var(--color-bgwhite-textblack);
  border-right: 2px solid var(--color-bgwhite-textblack);
  right: 16px;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 800px) {
  .global-top-button::after {
    border-top: calc(4 * var(--xd-px)) solid var(--color-bgwhite-textblack);
    border-right: calc(4 * var(--xd-px)) solid var(--color-bgwhite-textblack);
    right: calc(34 * var(--xd-px));
    width: calc(17 * var(--xd-px));
    height: calc(17 * var(--xd-px));
  }
}
.global-blue-button, .global-white-button {
  position: relative;
  display: block;
  color: var(--color-white);
  background-color: var(--bgcolor-blue);
  margin: auto;
  margin-bottom: 80px;
  border-radius: 100vh;
  font-weight: var(--fontweight-extrabold);
  text-decoration: none;
  width: 223px;
  height: 49px;
  padding-left: 20px;
  font-size: 20px;
  line-height: 49px;
}
@media screen and (max-width: 800px) {
  .global-blue-button, .global-white-button {
    width: calc(450 * var(--xd-px));
    height: calc(88 * var(--xd-px));
    padding-left: calc(113 * var(--xd-px));
    font-size: calc(28 * var(--xd-px));
    line-height: calc(88 * var(--xd-px) - 4px);
    margin-bottom: calc(80 * var(--xd-px));
  }
}
.global-blue-button::after, .global-white-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  box-sizing: border-box;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  right: 16px;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 800px) {
  .global-blue-button::after, .global-white-button::after {
    border-top: calc(4 * var(--xd-px)) solid var(--color-white);
    border-right: calc(4 * var(--xd-px)) solid var(--color-white);
    right: calc(34 * var(--xd-px));
    width: calc(17 * var(--xd-px));
    height: calc(17 * var(--xd-px));
  }
}
.global-white-button {
  display: flex;
  padding: 0;
  background-color: var(--color-white);
  color: var(--color-bggray-textblack);
  border: 2px solid var(--color-bggray-textblack);
  align-items: center;
  justify-content: center;
  margin-bottom: unset;
}
.global-white-button::after {
  border-color: var(--bordercolor-black);
  border-width: 2px;
}
@media screen and (max-width: 800px) {
  .global-white-button::after {
    border-width: calc(2 * var(--xd-px));
  }
}
.global-light-blue-wrapper {
  position: relative;
  text-align: center;
  background-image: url("./global-img/bg_lightblue.png");
  background-size: 30px;
  background-position: top left;
  background-repeat: repeat;
}
@media screen and (max-width: 800px) {
  .global-light-blue-wrapper {
    background-size: calc(30 * var(--xd-px));
  }
}
.global-contact-button {
  display: flex;
  align-items: center;
  border-radius: 100vh;
  border: 2px solid var(--bordercolor-black);
  text-decoration: none;
  line-height: 44px;
  width: 200px;
  height: 48px;
  background-color: var(--color-white);
}
@media screen and (max-width: 800px) {
  .global-contact-button {
    width: calc(450 * var(--xd-px));
    height: calc(88 * var(--xd-px));
    line-height: calc(88 * var(--xd-px) - 4px);
  }
}
.global-contact-button .envelope {
  width: 30px;
  height: 23.08px;
  background-image: url(./global-img/envelope.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
}
@media screen and (max-width: 800px) {
  .global-contact-button .envelope {
    width: calc(37 * var(--xd-px));
    height: calc(28.46 * var(--xd-px));
    margin-left: calc(114 * var(--xd-px));
  }
}
.global-contact-button .contact-text {
  margin-left: 9px;
  color: var(--color-bgwhite-textblack);
  font-size: 20px;
  font-weight: var(--fontweight-extrabold);
}
@media screen and (max-width: 800px) {
  .global-contact-button .contact-text {
    margin-left: calc(12 * var(--xd-px));
    font-size: calc(28 * var(--xd-px));
  }
}
.global-down-triangle {
  background: var(--color-bgwhite-textblack);
  height: 24px;
  width: 44px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 800px) {
  .global-down-triangle {
    height: calc(24 * var(--xd-px));
    width: calc(44 * var(--xd-px));
  }
}
@media screen and (max-width: 800px) {
  .global-pc-only {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  .global-sp-only {
    display: none;
  }
}
.global-jugyo-images {
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  .global-jugyo-images {
    padding: calc(80 * var(--xd-px)) 0;
  }
}
.global-jugyo-images-title {
  font-size: 36px;
  text-align: center;
  font-weight: var(--fontweight-extrabold);
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .global-jugyo-images-title {
    font-size: calc(36 * var(--xd-px));
    margin-bottom: calc(40 * var(--xd-px));
  }
}
.global-jugyo-images-inner {
  margin: auto;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  row-gap: 30px;
}
@media screen and (max-width: 800px) {
  .global-jugyo-images-inner {
    width: calc(709 * var(--xd-px));
    row-gap: calc(12 * var(--xd-px));
  }
}
.global-jugyo-images-inner .global-jugyo-img {
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 15px;
  aspect-ratio: 354/228;
}
@media screen and (max-width: 800px) {
  .global-jugyo-images-inner .global-jugyo-img {
    width: calc(228 * var(--xd-px));
    height: calc(146 * var(--xd-px));
    border-radius: calc(10 * var(--xd-px));
  }
}
.global-jugyo-images-inner .global-img1 {
  background-image: url(./global-img/pic_1.png);
}
.global-jugyo-images-inner .global-img2 {
  background-image: url(./global-img/pic_2.png);
}
.global-jugyo-images-inner .global-img3 {
  background-image: url(./global-img/pic_3.png);
}
.global-jugyo-images-inner .global-img4 {
  background-image: url(./global-img/pic_4.png);
}
.global-jugyo-images-inner .global-img5 {
  background-image: url(./global-img/pic_5.png);
}
.global-jugyo-images-inner .global-img6 {
  background-image: url(./global-img/pic_6.png);
}
.global-jugyo-images-inner .global-img7 {
  background-image: url(./global-img/pic_7.png);
}
.global-jugyo-images-inner .global-img8 {
  background-image: url(./global-img/pic_8.png);
}
.global-jugyo-images-inner .global-img9 {
  background-image: url(./global-img/pic_9.png);
}
.global-contact-flow-button {
  position: fixed;
  width: 160px;
  height: 177px;
  right: 30px;
  bottom: 38px;
  z-index: 99;
  background-image: url(./global-img/btn_contact.png);
}
@media screen and (max-width: 800px) {
  .global-contact-flow-button {
    width: calc(160 * var(--xd-px));
    height: calc(177 * var(--xd-px));
    right: calc(30 * var(--xd-px));
    bottom: calc(38 * var(--xd-px));
    background-size: contain;
  }
}
.global-blue-box {
  background-color: #4074DD;
  margin: 100px auto;
  min-height: 1px;
  width: min(840px, 100%);
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 800px) {
  .global-blue-box {
    border-radius: calc(20 * var(--xd-px));
    padding: calc(42 * var(--xd-px)) calc(25 * var(--xd-px));
  }
}
.global-blue-box .ttl_sp {
  width: 351px;
  margin-bottom: 42px;
}
@media screen and (max-width: 800px) {
  .global-blue-box .ttl_sp {
    width: calc(439 * var(--xd-px));
    margin-bottom: calc(42 * var(--xd-px));
  }
}
.global-blue-box .grid-messages {
  display: grid;
  row-gap: 20px;
  grid-template-columns: 1fr 660px;
  --sankaku-top: 1.8rem;
  --sankaku-left: calc(-30rem/15);
  --sankaku-margin-top: calc(-15rem/15);
  --sankaku-border-right: calc(30rem/15);
  --sankaku-border: calc(13rem/15);
}
@media screen and (max-width: 800px) {
  .global-blue-box .grid-messages {
    row-gap: calc(20 * var(--xd-px));
    grid-template-columns: 1fr calc(570 * var(--xd-px));
  }
}
.global-blue-box .grid-messages img {
  width: 80px;
}
@media screen and (max-width: 800px) {
  .global-blue-box .grid-messages img {
    width: calc(80 * var(--xd-px));
  }
}
.global-blue-box .grid-messages .fukidashi {
  position: relative;
  display: inline-block;
  padding: 16px;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.75;
  background: var(--color-white);
  box-sizing: border-box;
  border-radius: 10px;
  text-align: left;
  color: var(--color-bggray-textblack);
  margin-left: 20px;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .global-blue-box .grid-messages .fukidashi {
    font-size: calc(28 * var(--xd-px));
    line-height: 1.5;
    padding: calc(16 * var(--xd-px));
    border-radius: calc(16 * var(--xd-px));
    margin-left: calc(20 * var(--xd-px));
  }
}
.global-blue-box .grid-messages .fukidashi:before {
  content: "";
  position: absolute;
  top: var(--sankaku-top);
  left: var(--sankaku-left);
  margin-top: var(--sankaku-margin-top);
  border: var(--sankaku-border) solid transparent;
  border-right: var(--sankaku-border-right) solid #FFF;
  z-index: -1;
}
.global-center {
  text-align: center;
}
.global-hidden {
  display: none !important;
}
.global-contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 290px;
}
@media screen and (max-width: 800px) {
  .global-contact-wrapper {
    height: calc(363 * var(--xd-px));
  }
}
.global-contact-wrapper .local-contact-text {
  font-size: 18px;
  font-weight: var(--fontweight-extrabold);
  margin-top: 80px;
  line-height: 36px;
}
@media screen and (max-width: 800px) {
  .global-contact-wrapper .local-contact-text {
    font-size: calc(24 * var(--xd-px));
    margin-top: calc(80 * var(--xd-px));
    line-height: calc(40 * var(--xd-px));
  }
}
.global-contact-wrapper .contact-button {
  margin-top: 20px;
}

form {
  margin-bottom: 80px;
}
form .blue-form-box {
  margin: auto;
  width: min(840px, 100%);
  border: 2px solid var(--bgcolor-deep-blue);
}
@media screen and (max-width: 800px) {
  form .blue-form-box {
    width: calc(710 * var(--xd-px));
  }
}
form .blue-form-box + .blue-form-box {
  margin-top: 37px;
}
form .blue-hero {
  height: 69px;
  width: 100%;
  color: white;
  background-color: var(--bgcolor-deep-blue);
  font-weight: bold;
  padding: 0 20px 2px;
  display: flex;
  align-items: center;
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  form .blue-hero {
    font-size: calc(30 * var(--xd-px));
    height: calc(84 * var(--xd-px));
  }
}
form .white-form-box {
  margin: 34px 40px;
  width: 760px;
}
@media screen and (max-width: 800px) {
  form .white-form-box {
    margin: calc(20 * var(--xd-px));
    width: calc(670 * var(--xd-px));
  }
}
form .white-form-box .blue-hero {
  height: 61px;
  padding: 0 16px;
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  form .white-form-box .blue-hero {
    font-size: calc(26 * var(--xd-px));
  }
}
form input, form textarea, form select {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid var(--color-bgwhite-textblack);
}
@media screen and (max-width: 800px) {
  form input, form textarea, form select {
    height: calc(60 * var(--xd-px));
  }
}
form input[name=privacy], form input[name=terms], form input[type=radio] {
  width: auto;
  height: auto;
}
form input[maxlength="3"] {
  width: 120px;
  margin: auto 8px;
}
@media screen and (max-width: 800px) {
  form input[maxlength="3"] {
    width: calc(100 * var(--xd-px));
    margin: auto calc(2 * var(--xd-px));
  }
}
form input[maxlength="4"] {
  width: 120px;
  margin-left: 9px;
}
@media screen and (max-width: 800px) {
  form input[maxlength="4"] {
    width: calc(120 * var(--xd-px));
    margin-left: calc(3 * var(--xd-px));
  }
}
form input.p-street-address {
  margin-top: 8px;
}
@media screen and (max-width: 800px) {
  form input.p-street-address {
    margin-top: calc(20 * var(--xd-px));
  }
}
form .max {
  width: 100%;
}
form textarea {
  margin: 20px;
  width: calc(100% - 40px);
  height: 160px;
}
@media screen and (max-width: 800px) {
  form textarea {
    margin: calc(20 * var(--xd-px));
    width: calc(100% - 40 * var(--xd-px));
  }
}
form textarea.no-margin {
  margin: 0;
}
form .table {
  border-spacing: 0;
}
@media screen and (max-width: 800px) {
  form .table {
    font-size: calc(16 * var(--xd-px));
  }
}
form .tr {
  display: flex;
  flex-wrap: wrap;
  width: 720px;
  margin: 20px 10px 20px 20px;
}
@media screen and (max-width: 800px) {
  form .tr {
    width: calc(640 * var(--xd-px));
    margin: calc(20 * var(--xd-px)) calc(10 * var(--xd-px)) calc(20 * var(--xd-px)) calc(20 * var(--xd-px));
  }
}
form .tr + .tr::before {
  content: "";
  width: 100%;
  height: 0;
  border-top: 3px dotted #C9C9C9;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  form .tr + .tr::before {
    border-top-width: calc(3 * var(--xd-px));
    margin-bottom: calc(20 * var(--xd-px));
  }
}
form .th {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 220px;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  form .th {
    width: calc(220 * var(--xd-px));
    font-size: calc(24 * var(--xd-px));
  }
}
form .required {
  width: 50px;
  height: 25px;
  border-radius: 4px;
  color: #FFFFFF;
  background-color: #D90000;
  text-align: center;
}
@media screen and (max-width: 800px) {
  form .required {
    width: calc(50 * var(--xd-px));
    height: calc(25 * var(--xd-px));
    border-radius: calc(4 * var(--xd-px));
    font-size: calc(16 * var(--xd-px));
  }
}
form span.required {
  margin-left: 10px;
}
@media screen and (max-width: 800px) {
  form span.required {
    margin-left: calc(10 * var(--xd-px));
  }
}
form .td {
  display: flex;
  flex-wrap: wrap;
  width: 500px;
}
@media screen and (max-width: 800px) {
  form .td {
    width: calc(420 * var(--xd-px));
  }
}
form .td.name-grid {
  justify-content: space-between;
  font-size: 16px;
}
form .td.name-grid > * {
  width: calc(50% - 10px);
}
@media screen and (max-width: 800px) {
  form .td.name-grid > * {
    width: calc(200 * var(--xd-px));
    font-size: calc(20 * var(--xd-px));
  }
}
form .td.name-grid input {
  margin-top: 7px;
}
@media screen and (max-width: 800px) {
  form .td.name-grid input {
    margin-top: calc(4 * var(--xd-px));
  }
}
form .td.with-radios .radios {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 7px;
}
@media screen and (max-width: 800px) {
  form .td.with-radios .radios {
    row-gap: calc(12 * var(--xd-px));
    margin-bottom: calc(12 * var(--xd-px));
  }
  form .td.with-radios .radios input {
    margin: 0;
    width: calc(28 * var(--xd-px));
    height: calc(28 * var(--xd-px));
    margin-right: calc(4 * var(--xd-px));
  }
}
form .td.with-radios label {
  display: inline-flex;
  vertical-align: middle;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  form .td.with-radios label {
    font-size: calc(20 * var(--xd-px));
  }
}
form .td.with-radios label input {
  width: auto;
  height: auto;
}
form .td.zipcode {
  align-items: center;
}
form .td.zipcode input[type=number] {
  width: 120px;
  margin: 8px;
}
@media screen and (max-width: 800px) {
  form .td.zipcode input[type=number] {
    width: calc(160 * var(--xd-px));
    margin: calc(6 * var(--xd-px));
  }
}
@media screen and (max-width: 800px) {
  form .td.zipcode .zipcode-line {
    font-size: calc(16 * var(--xd-px));
  }
}
@media screen and (max-width: 800px) {
  form .grade-count {
    font-size: calc(20 * var(--xd-px));
  }
}
form .grade-count > div + div {
  margin-top: 16px;
}
@media screen and (max-width: 800px) {
  form .grade-count > div + div {
    margin-top: calc(12 * var(--xd-px));
  }
}
form .grade-count select {
  width: 180px;
  height: 40px;
  margin-right: 8px;
}
@media screen and (max-width: 800px) {
  form .grade-count select {
    width: calc(120 * var(--xd-px));
    height: calc(60 * var(--xd-px));
  }
}
form .grade-count input {
  margin: 0 6px 0 23px;
  width: 160px;
}
@media screen and (max-width: 800px) {
  form .grade-count input {
    width: calc(120 * var(--xd-px));
    height: calc(60 * var(--xd-px));
  }
}
form .addGrade {
  display: block;
  margin-top: 23px;
}
form .billing {
  width: 300px;
}
form .billing div {
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
form .billing div + div {
  margin-top: 13px;
}
form .billing div:not(.billing-line):not(.mini) {
  margin-left: 40px;
  margin-right: 40px;
}
form .billing .billing-line {
  width: 100%;
  border-top: 1px solid #333333;
}
form .billing input {
  margin-left: auto;
  margin-right: 8px;
  border: none;
  background-color: transparent;
  color: var(--color-bgwhite-textblack);
  width: 100px;
  height: 23px;
  text-align: right;
  padding: 0;
}
form .billing .mini {
  font-size: 12px;
}
form .doui {
  display: flex;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  margin: 40px auto;
  text-align: left;
  font-size: 16px;
}
form .doui label + label {
  margin-top: 20px;
}
form .mini {
  font-size: 12px;
}
@media screen and (max-width: 800px) {
  form .mini {
    font-size: calc(20 * var(--xd-px));
  }
}
form button[type=submit] {
  display: flex;
  padding: 0;
  border: none;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.global-rules {
  max-width: 906px;
  margin: 100px auto;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
  .global-rules {
    padding: 0 calc(20 * var(--xd-px));
  }
}
.global-rules h2 {
  margin-bottom: 25px;
}
.global-rules h3 {
  padding: 8px;
  border-left: 5px solid black;
  margin-bottom: 16px;
}
.global-rules p {
  margin-bottom: 30px;
}/*# sourceMappingURL=global.css.map */