@charset "UTF-8";
:root {
  --blue: #005fa2;
  --skyblue: #00a0e9;
  --black: #000;
  --gray: #c8c8c8;
  --white: #fff;
}

@media (min-width: 481px), print {
  :root {
    --width: 1200;
  }
}
@media (max-width: 480px) {
  :root {
    --width: 480;
  }
}
/* ---------- COMMON ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.5;
  min-width: 1200px;
}

/* PHONE */
@media (max-width: 480px) {
  body {
    font-size: calc((18 / var(--width)) * 100vw);
    scroll-padding-top: calc((55 / var(--width)) * 100vw);
    min-width: 100%;
  }
}
header, footer, section, article, aside, nav, pre {
  display: block;
}

button {
  border: 0;
}

ul, ol, dl {
  list-style: none;
}

a {
  text-decoration: none;
  transition: ease 0.5s;
}

a[href^="tel:"] {
  color: var(--black);
  pointer-events: none;
}

/* PHONE */
@media (max-width: 480px) {
  a[href^="tel:"] {
    text-decoration: underline;
    pointer-events: auto;
  }
}
img {
  width: 100%;
  height: auto;
  vertical-align: top;
  object-fit: contain;
  object-position: center center;
}

figure img {
  text-align: center;
}
figure figcaption {
  color: var(--black);
  font-size: 90%;
  margin: 8px;
}
figure figcaption strong {
  font-size: 110%;
}

@media screen and (min-width: 481px), print {
  .sp-only {
    display: none;
  }
}
/* PHONE */
@media (max-width: 480px) {
  .pc-only {
    display: none;
  }
}
/* ---------- HEADER ---------- */
.header {
  width: 100%;
  padding: 32px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  transition: background ease-out .3s;
}
.header.sticky {
  background-color: rgba(0, 95, 162, 0.75);
  backdrop-filter: blur(3px);
  padding: 16px 0;
}
.header.sticky a.logo {
  width: 180px;
}

/* PHONE */
@media (max-width: 480px) {
  .header {
    padding: calc((14 / var(--width)) * 100vw) 0;
  }

  .header .inner {
    display: flex;
    flex-direction: row;
  }
}
a.logo {
  display: block;
  width: 260px;
  height: auto;
}

/* PHONE */
@media (max-width: 480px) {
  a.logo {
    display: flex;
    align-items: center;
    width: calc((140 / var(--width)) * 100vw);
    height: auto;
    max-width: 140px;
  }
}
/* ---------- NAVIGATION - menu-button ---------- */
/* PC - menu button */
@media screen and (min-width: 481px), print {
  button.menu-btn {
    display: none;
  }
}
/* PHONE - menu button */
@media screen and (max-width: 480px) {
  button.menu-btn {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: calc((44 / 480) * 100vw);
    height: calc((44 / 480) * 100vw);
    max-width: 44px;
    max-height: 44px;
    margin-left: auto;
    position: relative;
    z-index: 16;
  }

  .menu-btn__bars {
    width: calc((36 / 480) * 100vw);
    height: calc((18 / 480) * 100vw);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .menu-btn__bar {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 2px;
    margin-bottom: 4px;
    transition: transform ease .3s, top ease .3s, left ease .3s;
  }
  .menu-btn__bar:nth-child(2) {
    width: 80%;
  }
  .menu-btn__bar:last-child {
    width: 50%;
    margin-bottom: 0;
  }

  /* is-active */
  button.menu-btn.is-active .menu-btn__bar:first-child {
    transform-origin: center center;
    transform: rotate(45deg) translate(4px, 5px);
  }
  button.menu-btn.is-active .menu-btn__bar:nth-child(2) {
    opacity: 0;
    width: 100%;
  }
  button.menu-btn.is-active .menu-btn__bar:last-child {
    width: 100%;
    transform-origin: center center;
    transform: rotate(-45deg) translate(4px, -4px);
  }
}
/* ---------- NAVIGATION ---------- */
.gnav__list {
  font-size: 1.7rem;
  line-height: 1.47;
}

.gnav__item {
  margin-bottom: 20px;
}

.gnav__link {
  display: block;
  color: var(--blue);
  padding: 10px 0;
  position: relative;
}
.gnav__link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width ease .3s;
}
.gnav__link.is-active::after, .gnav__link:hover::after {
  width: 100%;
}

/* link none */
a.gnav__link[href=""] {
  color: #666;
  pointer-events: none;
}
a.gnav__link[href=""].is-active::after, a.gnav__link[href=""]:hover::after {
  width: 0;
}

@media screen and (min-width: 481px), print {
  #gnav {
    max-width: 360px;
    width: 30%;
    float: left;
  }
  #gnav.side-sticky {
    position: sticky;
    top: 71px;
  }
}
/* PHONE */
@media (max-width: 480px) {
  #gnav {
    background-color: var(--blue);
    color: #fff;
    width: 100%;
    height: 100vh;
    padding: calc((56 / var(--width)) * 100vw) calc((24 / var(--width)) * 100vw) calc((24 / var(--width)) * 100vw);
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 14;
    overflow-y: auto;
    transition: right ease-out .375s;
  }
  #gnav.is-active {
    right: 0;
  }

  .gnav__list {
    font-size: calc((20 / var(--width)) * 100vw);
    line-height: 1.47;
  }

  .gnav__item {
    border-bottom: 1px solid #197dd1;
    margin-bottom: 0;
  }

  .gnav__link {
    color: #fff;
    padding: calc((24 / var(--width)) * 100vw) calc((40 / var(--width)) * 100vw) calc((24 / var(--width)) * 100vw) 0;
    position: relative;
  }
  .gnav__link::before {
    content: '';
    display: block;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: calc((18 / var(--width)) * 100vw);
    height: calc((18 / var(--width)) * 100vw);
    position: absolute;
    top: 50%;
    right: calc((20 / var(--width)) * 100vw);
    transform: rotate(45deg) translateY(-50%);
  }
}
/* ---------- MAIN ---------- */
.inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.inner--min {
  max-width: 648px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1200px) and (min-width: 481px) {
  .inner,
  .inner--min {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* PHONE */
@media (max-width: 480px) {
  .inner,
  .inner--min {
    padding-left: calc((20 / var(--width)) * 100vw);
    padding-right: calc((20 / var(--width)) * 100vw);
  }
}
section,
.box-wrap {
  clear: both;
  margin-bottom: 150px;
}
section:last-child,
.box-wrap:last-child {
  margin-bottom: 0;
}
section > article,
.box-wrap > article {
  margin-bottom: 96px;
}
section > article:last-child,
.box-wrap > article:last-child {
  margin-bottom: 0;
}

/* PHONE */
@media (max-width: 480px) {
  section,
  .box-wrap {
    margin-bottom: calc((96 / var(--width)) * 100vw);
  }
  section > article,
  .box-wrap > article {
    margin-bottom: calc((56 / var(--width)) * 100vw);
  }
}
@media screen and (min-width: 481px), print {
  .contents {
    padding-bottom: 135px;
  }
  .contents::after {
    content: '';
    display: block;
    clear: both;
    width: 100%;
  }
}
/* ---------- PAGE-HEADER ---------- */
.page-header {
  background: url("../img/page-header.webp") top center repeat-x;
  background-size: cover;
  min-height: 368px;
  padding-top: 124px;
  padding-bottom: 148px;
  margin-bottom: 53px;
}
.page-header::after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}

.page-ttl {
  float: right;
  color: #fff;
  font-size: 3.3rem;
  line-height: 1.3;
  min-width: 788px;
}
.page-ttl__label {
  font-size: 51.51%;
}

/* PHONE */
@media (max-width: 480px) {
  .page-header {
    min-height: 160px;
    padding: calc((85 / var(--width)) * 100vw) 0 calc((14 / var(--width)) * 100vw);
    margin-bottom: calc((10 / var(--width)) * 100vw);
  }

  .page-ttl {
    float: none;
    font-size: calc((22 / var(--width) * 100vw));
    text-align: center;
    min-width: 100%;
  }
  .page-ttl__label {
    font-size: 100%;
  }
}
/* ---------- CONTENTS ---------- */
@media screen and (min-width: 481px), print {
  .page-contents {
    max-width: 786px;
    width: 65.5%;
    float: right;
  }
}
/* PHONE */
@media (max-width: 480px) {
  .sp-overimg {
    display: block;
    margin-left: calc((20 / var(--width)) * -100vw);
    margin-right: calc((20 / var(--width)) * -100vw);
  }
}
/* 受講するメリット */
.merit {
  width: 215px;
  height: auto;
}

@media screen and (min-width: 481px), print {
  .merits {
    display: flex;
    flex-direction: row;
  }

  .merit:nth-child(odd) {
    margin-left: -24px;
  }
  .merit:nth-child(even) {
    margin-top: 100px;
    margin-left: -24px;
  }
  .merit:first-child {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .merits::after {
    content: '';
    display: block;
    width: 100%;
    clear: both;
  }

  .merit {
    width: 50%;
    height: auto;
    float: left;
  }
  .merit:nth-child(odd) {
    margin-top: -20%;
  }
  .merit:nth-child(even) {
    margin-top: 5%;
    margin-left: -5%;
  }
  .merit:first-child {
    margin-top: 0;
  }
  .merit:nth-child(2) {
    margin-top: 25%;
    margin-left: -5%;
  }
}
.bp > div {
  width: 100%;
}

@media screen and (min-width: 481px), print {
  .bp {
    display: flex;
    flex-direction: row;
    column-gap: 48px;
    margin: 72px 0 64px;
  }

  .logo--bp {
    width: 86px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .bp {
    margin: calc((40 / var(--width)) * 100vw) 0;
  }

  .logo--bp {
    width: calc((67 / var(--width)) * 100vw);
    height: auto;
    margin: 0 auto calc((10 / var(--width)) * 100vw);
  }
}
.link__item:not(:last-child) {
  margin-bottom: 22px;
}

@media (max-width: 480px) {
  .link__item:not(:last-child) {
    margin-bottom: calc((6 / var(--width)) * 100vw);
  }
}
/* 開講科目 */
.program {
  margin-bottom: 57px;
}
.program:last-child {
  margin-bottom: 0;
}

.program__img {
  aspect-ratio: 1 / 1;
  display: block;
  flex-shrink: 0;
  width: 267px;
  height: 267px;
  overflow: hidden;
  position: relative;
}

.program__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.program__name {
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: calc(24px * 50 / 1000);
  margin-bottom: 44px;
}

.program p {
  font-size: 1.8rem;
  line-height: 1.72;
}

@media screen and (min-width: 481px), print {
  .program {
    display: flex;
    flex-direction: row;
    column-gap: 23px;
  }
}
/* PHONE */
@media (max-width: 480px) {
  .program {
    margin-bottom: calc((40 / var(--width)) * 100vw);
  }

  .program__img {
    aspect-ratio: 375 / 160;
    display: block;
    width: calc(100% + ((40 / var(--width) * 100vw)));
    height: 160px;
    margin: 0 calc((20 / var(--width)) * -100vw) calc((18 / var(--width)) * 100vw) calc((20 / var(--width)) * -100vw);
  }

  .program__name {
    font-size: calc((20 / var(--width)) * 100vw);
    line-height: 1.3;
    letter-spacing: calc(15px * 100 / 1000);
    margin-bottom: calc((16 / var(--width)) * 100vw);
  }

  .program p {
    font-size: calc((18 / var(--width)) * 100vw);
  }
}
@media (max-width: 480px) {
  #program-features .inner--min {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ---------- VOICE ---------- */
.voices {
  display: flex;
  flex-direction: row;
  column-gap: 42px;
}

.voice {
  display: flex;
  flex-direction: column;
  max-width: 373px;
}

.voice p {
  font-size: 1.8rem;
  line-height: 1.72;
}

.voice__img {
  aspect-ratio: 373 / 250;
  display: block;
  flex-shrink: 0;
  width: 373px;
  height: 250px;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}

.voice__img > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.voice__ttl {
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: calc(24px * 50 / 1000);
  margin-bottom: 22px;
}

.voice__txt {
  padding-bottom: 24px;
}

.voice__profiles {
  border-top: 1px solid var(--gray);
  min-height: 146px;
  margin-top: auto;
  padding-top: 24px;
}

.voice__profiles p {
  font-size: 1.9rem;
  line-height: 1.57;
}

/* PHONE */
@media (max-width: 480px) {
  .voices {
    flex-direction: column;
    gap: calc((47 / var(--width)) * 100vw);
  }

  .voice__img {
    width: calc(100% + ((40 / var(--width)) * 100vw));
    height: auto;
    margin-right: calc((20 / var(--width)) * -100vw);
    margin-left: calc((20 / var(--width)) * -100vw);
  }

  .voice__ttl {
    font-size: calc((20 / var(--width)) * 100vw);
    line-height: 1.3;
    letter-spacing: calc(15px * 100 / 1000);
    margin-bottom: calc((15 / var(--width)) * 100vw);
  }

  .voice p {
    font-size: calc((18 / var(--width)) * 100vw);
  }

  .voice__profiles {
    min-height: auto;
  }

  .voice__profiles p {
    font-size: calc((18 / var(--width)) * 100vw);
  }
}
/* PHONE */
@media (max-width: 480px) {
  #documents {
    margin-bottom: calc((96 / var(--width)) * 100vw);
  }
}
.movie {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin-bottom: 16px;
}
.movie lite-youtube {
  max-width: 100%;
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: #e4eef5;
  padding: 18px 0 108px;
}
.footer > .inner {
  display: flex;
  flex-direction: row;
}
.footer__campus {
  display: flex;
  flex-direction: row;
}

p.tel {
  font-size: 4.7rem;
}

@media screen and (min-width: 481px), print {
  .footer > .inner {
    column-gap: 70px;
  }
  .footer__campus {
    column-gap: 29px;
  }
  .footer__map {
    width: 410px;
    height: 275px;
  }
}
/* PHONE */
@media (max-width: 480px) {
  .footer {
    padding: calc((24 / var(--width)) * 100vw) 0;
  }
  .footer > .inner {
    flex-direction: column;
    column-gap: calc((29 / var(--width)) * 100vw);
  }
  .footer__campus {
    flex-direction: column;
    row-gap: calc((14 / var(--width)) * 100vw);
  }
  .footer__contact {
    margin-bottom: calc((32 / var(--width)) * 100vw);
  }

  p.tel {
    font-size: min(calc((40 / var(--width)) * 100vw), 4rem);
  }
}
/* ---------- TABLE ---------- */
table {
  border-collapse: collapse;
  width: 100%;
}
table caption {
  caption-side: bottom;
  text-align: right;
  font-size: 85%;
}

.blank-cell::before,
.blank-cell::before {
  content: '-';
}

table.table--basic {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
table.table--basic thead {
  border-bottom: 1px solid var(--gray);
}
table.table--basic tr {
  border-bottom: 1px solid var(--gray);
}
table.table--basic tr:last-child {
  border-bottom: none;
}
table.table--basic th,
table.table--basic td {
  border-right: 1px solid var(--gray);
  padding: 18px;
}
table.table--basic th.last,
table.table--basic td.last {
  border-right: none;
}
table.table--basic.odd-color tr:nth-child(odd) {
  background-color: #e4eef5;
}

/* PHONE */
@media (max-width: 480px) {
  .table--scroll {
    width: 100%;
    padding-bottom: 10px;
    overflow-x: auto;
  }
  .table--scroll table th,
  .table--scroll table td {
    white-space: nowrap;
  }
}
dl.dl--label-style {
  margin-top: 64px;
}
dl.dl--label-style dt {
  color: #fff;
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1.3;
  letter-spacing: calc(22px * 200 / 1000);
  text-align: center;
  padding: 10px 22px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
dl.dl--label-style dt::after {
  content: '';
  display: block;
  background-color: var(--blue);
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 480px) {
  dl.dl--label-style {
    margin-top: 0;
  }
  dl.dl--label-style dt {
    font-size: 1.7rem;
    letter-spacing: calc(17px * 100 / 1000);
    padding: calc((8 / var(--width)) * 100vw) calc((16 / var(--width)) * 100vw);
    margin-bottom: calc((12 / var(--width)) * 100vw);
  }
}
/* ---------- BUTTON ---------- */
a.link-btn {
  display: block;
  border: 1px solid var(--black);
  color: var(--black);
  padding: 16px 27px;
  position: relative;
  z-index: 1;
  transition: color ease .3s;
}
a.link-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--blue);
  transition: width ease .3s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
a.link-btn:hover {
  color: #fff;
}
a.link-btn:hover::after {
  width: 100%;
}
a.link-btn[href=""] {
  background-color: #f1f1f1;
  pointer-events: none;
}

@media (max-width: 480px) {
  a.link-btn {
    padding: calc((10 / var(--width)) * 100vw);
  }
}
/* ---------- FLEXBOX ---------- */
.flexbox {
  display: flex;
  flex-direction: row;
}
.flexbox.col2 {
  column-gap: 2%;
}
.flexbox.flex-item {
  width: 48%;
}

/* ---------- LIST ---------- */
ol.list--num {
  counter-reset: ol_li;
  margin-left: 2rem;
}
ol.list--num li::before {
  counter-increment: ol_li;
  content: counter(ol_li) ". ";
  margin-left: -2rem;
}
ol.list--num.marker-blue li::before {
  color: var(--blue);
}

ul.list--labels li {
  background-color: var(--blue);
  color: #fff;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: calc(24px * 50 / 1000);
  padding: 12px;
  margin-bottom: 12px;
}
ul.list--labels li:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  ul.list--labels li {
    font-size: calc((18 / var(--width)) * 100vw);
    line-height: 1.53;
    letter-spacing: calc(15px * 50 / 1000);
    padding: calc((8 / var(--width)) * 100vw);
    margin-bottom: calc((12 / var(--width)) * 100vw);
  }
}
ul.list--circle li::before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 1px solid var(--black);
  border-radius: 50%;
}
ul.list--circle li:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  ul.list--circle li::before {
    width: calc((10 / var(--width)) * 100vw);
    height: calc((10 / var(--width)) * 100vw);
  }
}
/* ---------- TITLE ---------- */
.ttl {
  font-size: 2.4rem;
  line-height: 1.65;
  letter-spacing: calc(24px * 40 / 1000);
  margin-bottom: 44px;
}

@media (max-width: 480px) {
  .ttl {
    font-size: calc((20 / var(--width)) * 100vw);
    line-height: 1.8;
    letter-spacing: calc(15px * 40 / 1000);
    margin-bottom: calc((24 / var(--width)) * 100vw);
  }
}
.ttl--btm-br {
  font-size: 2.4rem;
  line-height: 1.58;
  letter-spacing: calc(24px * 50 / 1000);
  margin-bottom: 38px;
}
.ttl--btm-br > span {
  display: inline-block;
  border-bottom: 2px solid var(--skyblue);
  padding-bottom: 10px;
}

@media (max-width: 480px) {
  .ttl--btm-br {
    font-size: calc((22 / var(--width)) * 100vw);
    letter-spacing: calc(22px * 40 / 1000);
    margin-bottom: calc((34 / var(--width)) * 100vw);
  }
}
.ttl--bg-blue {
  background-color: var(--blue);
  color: #fff;
  font-size: 3rem;
  line-height: 1.26;
  letter-spacing: calc(30px * 50 / 1000);
  padding: 14px;
  margin-bottom: 40px;
}

/* PHONE */
@media (max-width: 480px) {
  .ttl--bg-blue {
    font-size: calc((22 / var(--width)) * 100vw);
    line-height: 1.43;
    letter-spacing: calc(16px * 50 / 1000);
    padding: calc((18 / var(--width)) * 100vw) calc((20 / var(--width)) * 100vw);
    margin-left: calc((20 / var(--width)) * -100vw);
    margin-right: calc((20 / var(--width)) * -100vw);
    margin-bottom: calc((28/ var(--width)) * 100vw);
  }
}
/* ---------- TEXT ---------- */
/* text-align */
.txt--left,
.sp-txt--left {
  text-align: left;
}

.txt--right,
.sp-txt--right {
  text-align: right;
}

.txt--center,
.sp-txt--center {
  text-align: center;
}

/* font-color */
.fc--blue {
  color: var(--blue);
}

/* font-size */
.fs--small {
  font-size: 83.3%;
}

.fs22 {
  font-size: 2.2rem;
}

.fs15 {
  font-size: 1.5rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs26 {
  font-size: 2.6rem;
}

@media (max-width: 480px) {
  .fs22 {
    font-size: calc((22 / var(--width)) * 100vw);
  }

  .fs15 {
    font-size: calc((15 / var(--width)) * 100vw);
  }

  .fs16 {
    font-size: calc((16 / var(--width)) * 100vw);
  }

  .fs26 {
    font-size: calc((26 / var(--width)) * 100vw);
  }
}
.nowrap {
  white-space: nowrap;
}

/* font-weight */
.fw--normal {
  font-weight: normal;
}

/* line-height */
.lh13 {
  line-height: 1.3;
}

.lh15 {
  line-height: 1.5;
}

.lh17 {
  line-height: 1.7;
}

.lh19 {
  line-height: 1.9;
}

/* notes */
.note {
  text-indent: -2rem;
  padding-left: 2rem;
}

/* others */
.wrap-txt > span {
  display: inline-block;
}

.link-txt {
  color: var(--black);
  text-decoration: underline 1px dashed var(--black);
  transition: color ease .3s, text-decoration ease .3s;
}
.link-txt:not([href=""]):hover {
  color: var(--blue);
  text-decoration: underline 1px dashed var(--blue);
}
.link-txt[href=""] {
  text-decoration: line-through;
  pointer-events: none;
}

/* ---------- MARGIN ---------- */
.mgb8 {
  margin-bottom: 8px;
}

.mgb16 {
  margin-bottom: 16px;
}

.mgb24 {
  margin-bottom: 24px;
}

.mgb32 {
  margin-bottom: 32px;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgb48 {
  margin-bottom: 48px;
}

.mgb56 {
  margin-bottom: 56px;
}

.mgb64 {
  margin-bottom: 64px;
}

.mgb72 {
  margin-bottom: 72px;
}

.mgb80 {
  margin-bottom: 80px;
}

.mgb88 {
  margin-bottom: 88px;
}

.mgb96 {
  margin-bottom: 96px;
}

.mgb104 {
  margin-bottom: 104px;
}

/* PHONE */
@media (max-width: 480px) {
  .mgb8 {
    margin-bottom: calc((8 / var(--width)) * 100vw);
  }

  .mgb16 {
    margin-bottom: calc((16 / var(--width)) * 100vw);
  }

  .mgb24 {
    margin-bottom: calc((24 / var(--width)) * 100vw);
  }

  .mgb32 {
    margin-bottom: calc((32 / var(--width)) * 100vw);
  }

  .mgb40 {
    margin-bottom: calc((40 / var(--width)) * 100vw);
  }

  .mgb48 {
    margin-bottom: calc((48 / var(--width)) * 100vw);
  }

  .mgb56 {
    margin-bottom: calc((56 / var(--width)) * 100vw);
  }

  .mgb64 {
    margin-bottom: calc((64 / var(--width)) * 100vw);
  }

  .mgb72 {
    margin-bottom: calc((72 / var(--width)) * 100vw);
  }

  .mgb80 {
    margin-bottom: calc((80 / var(--width)) * 100vw);
  }

  .mgb88 {
    margin-bottom: calc((88 / var(--width)) * 100vw);
  }

  .mgb96 {
    margin-bottom: calc((96 / var(--width)) * 100vw);
  }

  .mgb104 {
    margin-bottom: calc((104 / var(--width)) * 100vw);
  }
}
