/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::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]) {
  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;
}

/**  base  **/
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  font-size: 1rem;
}
body.scroll_rock {
  overflow: hidden;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

:root {
  --vw: 760*100vw;
  --rems: 16 * 1rem;
  --remx: 32 * 1rem;
  --color-text: #222222;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-brand: #07084D;
  --color-blue: #036EB7;
  --global-header-height: calc(100 / var(--vw));
}

body {
  color: var(--color-text);
  font-family: "Sharoa Pro Regular";
}

h1,
h2,
h3 {
  font-family: "Sharoa Pro Bold";
  text-wrap: unset;
}

br {
  display: block;
}

.has-overlay {
  overflow: hidden;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --content-pad: 6.25vw;
  --max-page-width: 1200px;
  --max-content-width: 940px;
}

.page {
  padding-left: calc((100% - var(--max-page-width)) / 2);
  padding-right: calc((100% - var(--max-page-width)) / 2);
  margin: 0 auto;
}

.content {
  padding: 0 var(--content-pad);
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .content {
    padding: 0 calc((100% - var(--max-content-width)) / 2);
  }
}

@media (min-width: 750px) {
  :root {
    --content-pad: 20px;
  }
}
.header {
  --globe-logo-w: calc(130 / var(--vw));
  --earth-pos-top: calc(24 / var(--vw));
  --earth-pos-left: calc(30 / var(--vw));
  --earth-logo-w: calc(54 / var(--vw));
  --nav-pos-top: calc(13 / var(--vw));
  --nav-pos-right: calc(26 / var(--vw));
  --header-height: calc(100 / var(--vw));
  --control-pad: 0 calc(27 / var(--vw));
  --control-transition: all .7s;
  position: sticky;
  z-index: 10;
  top: 0;
  background-color: rgba(255, 255, 255, 0);
}
.header__control {
  position: relative;
  width: 100%;
  height: min(var(--header-height), 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--control-pad);
  transition: var(--control-transition);
}
.header__logo_earth {
  width: var(--earth-logo-w);
  height: auto;
}
.header__logo_globe {
  width: min(var(--globe-logo-w), 130px);
  height: auto;
  opacity: 0;
  transition: var(--control-transition);
}
.header.is-inbetween {
  opacity: 0;
  transform: translateY(-100%);
  transition: var(--control-transition);
}
.header.is-inbetween.is-sticked {
  opacity: 1;
  transform: translateY(0);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1px);
}
.header.is-inbetween.is-sticked .header__logo_globe {
  opacity: 1;
}
.header.is-inbetween.is-sticked .header__logo_earth,
.header.is-inbetween.is-sticked .nav__button {
  position: relative;
}
@media (min-width: 750px) {
  .header {
    --earth-logo-w: 48px;
    --earth-pos-top: 45px;
    --earth-pos-left: var(--content-pad);
    --nav-pos-top: 28px;
    --nav-pos-right: var(--content-pad);
  }
}
@media (min-width: 1250px) {
  .header {
    --control-pad: 0;
  }
}

.nav {
  --nav-button-size: calc(62px / 2);
  --nav-button-gap: 7px;
  --nav-burger-color: #666666;
  --nav-wrapper-pt: calc(200 / var(--vw));
  --nav-content-font-size: calc(34.4556 / var(--remx));
  --nav-content-btn-h: calc(82.4919px / 2);
  --nav-content-btn-font-size: calc(38.284 / var(--remx));
  --nav-content-list-gap: calc(60px / 2);
  --nav-list-font-size: calc(18 / var(--rems));
}
.nav__button {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--nav-button-gap);
  width: var(--nav-button-size);
  height: var(--nav-button-size);
}
.nav__button:before, .nav__button:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--nav-burger-color);
  transition: all 0.25s;
  transform-origin: center;
}
.nav__button[aria-expanded=true] {
  gap: 0;
}
.nav__button[aria-expanded=true]:before, .nav__button[aria-expanded=true]:after {
  background-color: var(--color-white);
}
.nav__button[aria-expanded=true]:before {
  transform: rotate(13.25deg);
}
.nav__button[aria-expanded=true]:after {
  transform: rotate(-13.25deg) translateY(-1px);
}
.nav__wrapper {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  padding-top: var(--nav-wrapper-pt);
  color: var(--color-white);
  font-size: var(--nav-content-font-size);
  background-color: rgba(0, 0, 0, 0.9);
}
.nav__wrapper.show {
  z-index: 5;
  display: flex;
  justify-content: center;
  animation: fade-in 1s;
}
.nav .button {
  padding: 0.5818181818em 20px 0.4545454545em;
  color: var(--color-white);
  font-size: var(--nav-content-btn-font-size);
  border-color: currentColor;
  border-radius: calc(var(--nav-content-btn-h) / 2);
}
.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--nav-content-list-gap);
  font-size: var(--nav-list-font-size);
  line-height: 1;
}
.nav__list li:nth-of-type(n + 3) {
  padding-left: 20px;
}
@media (min-width: 750px) {
  .nav {
    --nav-button-size: 45px;
    --nav-wrapper-pt: 118px;
    --nav-content-font-size: calc(18 / var(--rems));
    --nav-content-btn-h: 43px;
    --nav-content-btn-font-size: calc(20 / var(--rems));
    --nav-content-list-gap: 32px;
    --nav-button-gap: 10px;
  }
}

.footer {
  --text-footer: #4d4d4d;
  --footer-mt: calc(190 / var(--vw));
  --social-w: calc(502 / var(--vw));
  --primary-pt: calc(85 / var(--vw));
  --primary-pb: calc(90 / var(--vw));
  --globe-mb: calc(113 / var(--vw));
  --share-list-p: calc(55 / var(--vw));
  --share-gap: calc(86 / var(--vw));
  --icon-size: calc(78 / var(--vw));
  --terms-pt: calc(77 / var(--vw));
  --terms-pb: calc(69 / var(--vw));
  --terms-w: var(--social-w);
  --terms-font-size: calc(32 / var(--remx));
  --terms-row-gap: calc(56 / var(--vw));
  --hobo-pt: calc(69 / var(--vw));
  --hobo-pb: calc(298 / var(--vw));
  margin-top: var(--footer-mt);
  color: var(--text-footer);
}
.footer_primary {
  display: grid;
  justify-content: center;
  padding-top: var(--primary-pt);
  padding-bottom: var(--primary-pb);
  background-color: rgba(188, 210, 220, 0.8);
}
.footer_globe {
  margin-bottom: var(--globe-mb);
}
.footer_globe ul {
  font-size: calc(18 / var(--rems));
  line-height: 1;
}
.footer_globe li:not(:last-child) {
  margin-bottom: 15px;
}
.footer_share .button {
  width: var(--social-w);
  margin-bottom: var(--share-gap);
}
.footer_share ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: var(--social-w);
  padding: 0 var(--share-list-p);
}
.footer_share img {
  width: var(--icon-size);
  height: var(--icon-size);
}
.footer_terms {
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: var(--terms-pt);
  padding-bottom: var(--terms-pb);
}
.footer_terms ul {
  width: var(--terms-w);
  margin: 0 auto;
  display: flex;
  flex-flow: wrap;
  gap: 1rem var(--terms-row-gap);
  font-size: var(--terms-font-size);
}
.footer_hobo {
  padding: var(--hobo-pt) 0 var(--hobo-pb);
  text-align: center;
}
.footer_hobo img {
  display: inline-flex;
}
@media (min-width: 750px) {
  .footer {
    --footer-mt: 90px;
    --primary-pt: 46px;
    --primary-pb: 46px;
    --social-w: 180px;
    --globe-mb: 0;
    --share-list-p: 0;
    --share-gap: 35px;
    --icon-size: 35px;
    --terms-pt: 32px;
    --terms-pb: 38px;
    --terms-w: auto;
    --terms-font-size: calc(14 / var(--rems));
    --terms-row-gap: 42px;
    --hobo-pt: 39px;
    --hobo-pb: 49px;
  }
  .footer_primary {
    grid-template-columns: auto max-content;
    justify-content: unset;
  }
  .footer_globe ul {
    columns: 2;
  }
}

.globe {
  --bottom-globe-w: 90%;
  --bottom-globe-mb: calc(21 / var(--vw));
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.globe img {
  width: var(--bottom-globe-w);
  height: auto;
  margin: 0 auto var(--bottom-globe-mb);
}
@media (min-width: 750px) {
  .globe {
    --bottom-globe-mb: 21px;
  }
}

.button {
  --button-color: #036EB7;
  --button-font-size: calc(40 / var(--remx));
  --button-height: calc(70px / 2);
  --button-small-height: calc(61px / 2);
  --button-small-font-size: calc(37 / var(--remx));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3863636364em 0 0.2409090909em;
  color: var(--button-color);
  font-family: "Sharoa Pro DemiBold";
  font-size: var(--button-font-size);
  line-height: 1;
  border: 1.14px solid var(--button-color);
  border-radius: calc(var(--button-height) / 2);
}
.button--cta {
  color: var(--color-white);
  background-color: var(--button-color);
}
.button--small {
  padding: 0.3684210526em 0 0.2947368421em;
  font-size: var(--button-small-font-size);
}
@media (min-width: 750px) {
  .button {
    --button-height: 38px;
    --button-font-size: calc(22 / var(--rems));
    --button-small-height: 32px;
    --button-small-font-size: 19px;
  }
}

.main {
  --main-pad: 0 var(--content-pad);
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: var(--main-pad);
  --p-mb: 7.6315789474vw;
  --p-font-size: 1.0390625rem;
  --p-line-height: 1.4285714286;
  --small-font-size: 0.8703125rem;
  font-size: var(--p-font-size);
  line-height: var(--p-line-height);
  --h1-font-size: 1.75rem;
  --h1-mt: 12.6315789474vw;
  --h1-mb: 17.1052631579vw;
  --underline-offset: 12px;
  --h2-font-size: 1.5rem;
  --h2-line-height: 1.401875;
  --h2-m: 16.8421052632vw 0 5.5263157895vw;
  --figure-m: 10.9210526316vw 0 10vw;
  --button-pad: 0 42px;
  --section-mb: 15.7894736842vw;
  --label-font-size: calc(26 * .75 / var(--rems));
}
.main p {
  margin-bottom: calc(var(--p-mb) / 2);
  font-size: var(--p-font-size);
  line-height: var(--p-line-height);
}
.main p:last-of-type {
  margin-bottom: var(--p-mb);
}
.main small {
  display: block;
  font-size: var(--small-font-size);
}
.main h1 {
  margin: var(--h1-mt) 0 var(--h1-mb);
  color: var(--color-brand);
  font-size: var(--h1-font-size);
  text-align: center;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.41px;
  text-underline-offset: var(--underline-offset);
}
.main h1.with-lead {
  margin-bottom: calc(var(--h1-mb) / 2);
}
.main .h1-lead {
  text-align: center;
}
.main h2 {
  margin: var(--h2-m);
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
}
.main h3 {
  line-height: var(--h2-line-height);
}
.main figure + h3 {
  margin: var(--h2-m);
}
.main figure {
  margin: var(--figure-m);
}
.main figure img {
  width: 100%;
  height: auto;
}
.main figure img.max-335 {
  width: min(50vw, 335px);
  margin: 0 auto;
}
.main .button {
  width: max-content;
  padding: var(--button-pad);
}
.main .list__title {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  font-family: "Sharoa Pro Bold";
  font-size: var(--p-font-size);
  line-height: var(--p-line-height);
  border-bottom: 1px solid #000000;
}
.main .list--inline {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-left: 0;
}
.main .list--image {
  width: min(100%, 550px);
  margin-left: auto;
  margin-right: auto;
}
.main ul {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-left: 0.5rem;
}
.main .section--mb {
  margin-bottom: var(--section-mb);
}
.main .section--line {
  border-top: 1px solid var(--color-black);
}
.main .section .label {
  display: inline-flex;
  padding: 0.5384615385em 1.0769230769em 0.3846153846em;
  line-height: 1;
  letter-spacing: 0.025em;
  font-family: "Sharoa Pro Bold";
  font-size: var(--label-font-size);
  border: 1.14px solid var(--color-black);
}
.main .section h2 {
  margin-top: 0;
}

.footer {
  margin-top: 16.7105263158vw;
}

@media (min-width: 750px) {
  .main {
    --main-pad: 0;
    --h1-font-size: 3.125rem;
    --h1-mt: 106px;
    --h1-mb: 100px;
    --underline-offset: 20px;
    --h2-font-size: 2.25rem;
    --h2-line-height: 1.2777777778;
    --h2-m: 130px 0 1em;
    --p-mb: 2.4em;
    --p-font-size: 1.25rem;
    --p-line-height: 1.4;
    --small-font-size: 1.08125rem;
    --figure-m: 46px 0 51px;
    --button-pad: 0 54px;
    --section-mb: 120px;
    --label-font-size: calc(26 / var(--rems));
  }
  .footer {
    margin-top: 162px;
  }
}
.main .faq {
  border-bottom: 1px solid var(--color-black);
}
.main .faq h2 {
  margin: 1.5em 0 1em;
}

.faq {
  scroll-margin-top: var(--global-header-height);
}

.faq__anchor {
  justify-content: center;
}
.main .faq__anchor {
  gap: 30px;
  margin-bottom: 75px;
  padding: 0;
}
.faq__anchor .button {
  width: fit-content;
  height: auto;
  margin: 0 auto;
  padding: 0.4090909091em 1.5em 0.2181818182em;
}

.qa {
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.qa .q {
  display: grid;
  grid-template-columns: 2.5ch auto;
  margin: 0 0 1em;
  font-size: var(--q-font-size);
}
.qa .q:before {
  content: "Q.";
}
.qa .a {
  padding-left: 2.5ch;
}
.qa .a p {
  white-space: pre-wrap;
}
.qa .a p:not(:last-of-type) {
  margin-bottom: 0.75em;
}
.qa .a p:last-of-type {
  margin-bottom: 0;
}

.main .credit {
  border-bottom: 1px solid var(--color-black);
}
.main .credit h2 {
  margin: 1.5em 0 1em;
}

.credit h3 {
  margin: 1.5em 0 0.5em;
}
.credit .library {
  gap: 14px;
}
.credit .library p,
.credit .library p:last-of-type {
  margin-bottom: 0.25em;
}
.credit .library .button {
  padding: 0.4210526316em 1.2631578947em 0.2421052632em;
  width: fit-content;
  height: auto;
}

.license {
  --pre-font-size: calc(13 / var(--rems));
  --pre-font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
  scroll-margin-top: var(--global-header-height);
  margin-bottom: 3rem;
}
.license h2 {
  margin-bottom: 0;
}
.license pre {
  padding: 2em;
  overflow-x: auto;
  font-family: var(--pre-font-family);
  font-size: var(--pre-font-size);
  background-color: rgba(0, 0, 0, 0.05);
}

.main .section--step {
  --section-step-mt: calc(135px / 2);
  margin-top: var(--section-step-mt);
}
.main .section--step .mb-0 {
  margin-bottom: 0;
}

@media (min-width: 750px) {
  .main .section--step {
    --section-step-mt: 135px;
  }
}