html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

*,
*::before,
*::after {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

strong {
  font-weight: 700;
}

.bg-menu,
.bg-menu-overlay {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #022527;
  z-index: 10;
}
.header-container {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(12px, 1rem, 16px) clamp(16px, 1.25rem, 20px);
}
.header-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-mid .logo {
  width: 112px;
  height: auto;
  line-height: 0;
}
.header-mid .logo img {
  width: 100%;
  height: auto;
}
.header-mid .toggle-menu {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0B1427;
  border: 1px solid #73A5A9;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  color: #2DD4C0;
  cursor: pointer;
}
.header-mid .toggle-menu svg {
  width: 22px;
  height: 22px;
}
.header-action {
  gap: 0.75rem;
}
.header-action .user-caption {
  display: none;
}
.header .nav {
  position: absolute;
  right: 0;
  top: 76px;
  width: 100%;
  height: calc(100vh - 80px);
  padding: 40px 20px;
  background-color: #022527;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  -webkit-transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}
.header .nav-menu {
  width: 100%;
  max-height: 100%;
  display: flex;
  gap: 20px;
}
.header .nav-menu li {
  flex: 0 0 100%;
  max-width: 100%;
}
.header .nav-menu li a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #CFCFCF;
  font-weight: 500;
  gap: 13px;
  padding: 16px;
  border-radius: 8px;
}
.header .nav-menu li a .nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav-menu li a .nav-icon svg {
  width: 100%;
  height: 100%;
}
.header .nav-menu li.current a {
  background-color: rgba(45, 212, 192, 0.3294117647);
  color: #fff;
}
.header .close-menu--icon {
  display: none;
}
.header.open-menu .close-menu--icon {
  display: block;
}
.header.open-menu .open-menu--icon {
  display: none;
}
.header.open-menu .nav {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 900px) and (orientation: landscape) {
  .header .nav {
    padding: 10px 20px;
    top: 80px;
  }
  .header .nav-menu {
    gap: 3px;
  }
  .header .nav-menu li a {
    padding: 12px 16px;
  }
}
:root {
  --global-color: #015aab;
  --global-colorA: 1, 90, 171;
  --global-color-dark: #07274a;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --g-blue: linear-gradient(180deg,
      rgba(10, 124, 220, 0) 23.17%,
      rgba(5, 92, 165, 0.95) 88.61%);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  line-height: 1.375;
  color: #fff;
  background-color: #022527;
  font-size: clamp(12px, 1rem, 16px);
}

input,
button,
textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
}

button {
  cursor: pointer;
}

.hide {
  display: none !important;
}

.page,
.section {
  width: 100%;
  height: auto;
}

.container,
.container-full {
  width: 100%;
  height: auto;
}

.section {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}

.w-90 {
  width: 90%;
}

.mg-auto {
  margin: 0 auto;
}

.no-wrap {
  flex-wrap: nowrap;
}

.ali-s {
  align-items: flex-start;
}

.ali-c {
  align-items: center;
}

.ali-e {
  align-items: flex-end;
}

.jus-s {
  justify-content: flex-start;
}

.jus-c {
  justify-content: center;
}

.jus-e {
  justify-content: end;
}

.jus-b {
  justify-content: space-between;
}

.text-c {
  text-align: center;
}

.text-f {
  text-align: left;
}

.text-r {
  text-align: right;
}

.text-j {
  text-align: justify;
}

.hide-text {
  font-size: 0;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.box-center {
  text-align: center;
}

.lh-16 {
  line-height: 1.6;
}

.img {
  line-height: 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mt-auto {
  margin-top: auto;
}

.flex-column {
  flex-direction: column;
}

.gap-10 {
  gap: clamp(5px, 0.625rem, 10px);
}

.gap-20 {
  gap: clamp(10px, 1.25rem, 20px);
}

.flex-grow {
  flex-grow: 1;
}

.flex-auto {
  flex-grow: unset !important;
}

.img {
  display: block;
  line-height: 0;
}
.img img {
  width: 100%;
  height: auto;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.main {
  width: 100%;
  height: auto;
  max-width: 840px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 3.635vw;
  }
}
