@charset "UTF-8";
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* add original reset style */
html {
  /* iPhone safariで文字サイズが大きくなるバグを回避 */
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(50%, 0.9vw, 62.5%);
  scrollbar-gutter: stable;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", Meiryo, メイリオ, Osaka, sans-serif;
  color: #333;
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  font-weight: bold;
}
body.fixed {
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
}

.relative {
  position: relative;
}

_::-webkit-full-page-media,
_:future,
:root * {
  -webkit-mask-image: none !important;
          mask-image: none !important;
}

input[name=tab-item] {
  display: none;
}

area {
  cursor: pointer;
}

.c-list li {
  position: relative;
  padding-left: 1em;
}
.c-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.c-list-disc li::before {
  content: "・";
}
.c-list-circle li::before {
  content: "●";
}
.c-list-asterisk li::before {
  content: "※";
}
.c-list-decimal li {
  counter-increment: cnt;
}
.c-list-decimal li::before {
  content: "" counter(cnt) ".";
}
.c-list-arrow li {
  padding-left: 1.1em;
}
.c-list-arrow li::before {
  content: "";
  display: inline-block;
  top: 0.55em;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 500px) {
  .c-list-arrow li::before {
    width: 0.7rem;
    height: 0.7rem;
  }
}

.c-text-indent {
  text-indent: 1em;
}
.c-text-underline {
  text-decoration: underline;
}
.c-text-light {
  font-weight: 300;
}
.c-text-regular {
  font-weight: 400;
}
.c-text-semibold {
  font-weight: 600;
}
.c-text-bold {
  font-weight: 700;
}
.c-text-underline {
  text-decoration: underline;
}
.c-text-italic {
  font-style: italic;
}
.c-text-caution {
  color: #de0012;
}
.c-text-asterisk {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.c-text-asterisk::before {
  content: "※";
  margin-right: 0.1em;
}

.c-inner {
  max-width: 107rem;
  padding: 0 3.5rem;
  margin: 0 auto;
}

.c-details summary {
  cursor: pointer;
  display: block;
}
.c-details summary::-webkit-details-marker {
  display: none;
}
.l-header-hamburger {
  display: block;
  position: fixed;
  top: 4.5rem;
  right: 4.5rem;
  content: "";
  background-image: url(../images/top/hamburger-open.png);
  background-size: 54.2%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  border-radius: 50%;
  border: 0.2rem solid #2c5680;
  z-index: 10;
  width: 13.1rem;
  height: 13.1rem;
  cursor: pointer;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 768px) {
  .l-header-hamburger {
    width: 5.5rem;
    height: 5.5rem;
    top: 2rem;
    right: 2rem;
  }
}
.l-header-hamburger:hover {
  opacity: 0.9;
}
.l-header-hamburger.-active {
  background-image: url(../images/top/hamburger-close.png);
}

.l-footer {
  padding-top: 22rem;
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 10rem;
  }
}
.l-footer__copyright {
  text-align: center;
  font-size: 1.2rem;
}

.l-gnav {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.93);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.l-gnav.-show {
  opacity: 1;
  visibility: visible;
}
.l-gnav ul {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2rem;
  max-width: 100rem;
  width: 80%;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-gnav ul {
    font-size: 1.6rem;
  }
}
.l-gnav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #2c5680;
  padding-bottom: 1.25em;
}
.l-gnav ul li:not(:first-of-type) {
  margin-top: 1.5em;
}
.l-gnav ul li::before {
  display: inline-block;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  background-color: #d9e021;
  margin-right: 1em;
}
.l-gnav ul li a {
  color: #2c5680;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  width: calc(100% - 1.25em);
  line-height: 1.4;
  display: block;
}
.l-gnav ul li a:hover {
  opacity: 0.8;
}
.l-gnav ul li a span {
  font-size: 0.8em;
  display: block;
  line-height: 2;
}

.l-hamburger {
  width: 3rem;
  height: 2.2rem;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  position: relative;
  display: none;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger__top, .l-hamburger__middle, .l-hamburger__bottom {
  display: inline-block;
  display: block;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-hamburger__top {
  width: 3rem;
  top: 0;
  left: 0;
}
.l-hamburger__middle {
  width: 3rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-hamburger__bottom {
  width: 2rem;
  bottom: 0;
  left: 0;
}
.l-hamburger:hover {
  cursor: pointer;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
}
.js-fade.-show {
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-top__image-wrapper {
  position: relative;
  max-width: 192rem;
  margin: 0 auto;
}
.p-top__ywbg {
  background-color: #f2f4c5;
  position: relative;
}
.p-top__bg-book1 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.p-top__bg-book1.-book1 {
  -webkit-transform: translateY(-360%);
          transform: translateY(-360%);
}
.p-top__bg-book1.-book2 {
  -webkit-transform: translateY(-260%);
          transform: translateY(-260%);
}
.p-top__bg-book1.-book3 {
  -webkit-transform: translateY(-160%);
          transform: translateY(-160%);
}
.p-top__bg-book1.-book4 {
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}
.p-top__bg-book2 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.p-top__bg-book2.-book1 {
  -webkit-transform: translateY(-375%);
          transform: translateY(-375%);
}
.p-top__bg-book2.-book2 {
  -webkit-transform: translateY(-275%);
          transform: translateY(-275%);
}
.p-top__bg-book2.-book3 {
  -webkit-transform: translateY(-175%);
          transform: translateY(-175%);
}
.p-top__bg-book2.-book4 {
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
}
.p-top-mv {
  background-image: url(../images/top/mv-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  max-height: calc(100dvh - 20rem);
  aspect-ratio: 1366/768;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-mv {
    aspect-ratio: 430/632;
  }
}
.p-top-mv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 36.45%;
  max-width: 49.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv h1 {
    width: 81.39%;
  }
}
.p-top-lead {
  padding: 13rem 0 8rem;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-lead {
    padding: 6.6rem 0 4rem;
  }
}
.p-top-lead__img1 {
  position: absolute;
  top: -5%;
  right: 0;
  width: 36.7%;
  z-index: -1;
  max-width: 55rem;
}
@media screen and (max-width: 768px) {
  .p-top-lead__img1 {
    top: initial;
    bottom: 14.1rem;
    right: initial;
    left: 0;
    width: 60.2%;
    z-index: 1;
  }
}
.p-top-lead__img2 {
  position: absolute;
  top: 40%;
  left: 0;
  width: 36.7%;
  z-index: -1;
  max-width: 55rem;
}
@media screen and (max-width: 768px) {
  .p-top-lead__img2 {
    top: initial;
    left: initial;
    width: 60.2%;
    bottom: 28.4rem;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-lead__title {
    text-align: center;
  }
}
.p-top-lead__title img {
  width: 21.2rem;
}
@media screen and (max-width: 768px) {
  .p-top-lead__title img {
    width: 10.9rem;
  }
}
.p-top-lead__text {
  text-align: right;
  font-size: 2rem;
  margin-top: 15%;
  line-height: 3.2;
}
@media screen and (max-width: 960px) {
  .p-top-lead__text {
    margin-top: 5%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-lead__text {
    text-align: center;
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 2.8;
    margin-top: 6rem;
  }
}
.p-top-lead__text p {
  display: inline-block;
  font-weight: bold;
  color: #2c5680;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-top-lead__text p {
    text-align: center;
  }
}
.p-top-lead__scroll {
  margin-top: 40rem;
  margin-top: 29.2%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-lead__scroll {
    margin-top: max(42.2rem, 90vw);
  }
}
.p-top-lead__scroll img {
  height: min(40vw, 14.4rem);
  width: auto;
  max-inline-size: none;
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
@media screen and (max-width: 768px) {
  .p-top-lead__scroll img {
    height: 5.8rem;
  }
}
.p-top-class {
  padding: 9rem 0 17rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-class {
    padding: 4.4rem 0 16.2rem;
  }
}
.p-top-class__h2 {
  white-space: nowrap;
}
@media screen and (max-width: 1330px) {
  .p-top-class__h2 {
    white-space: wrap;
  }
}
@media screen and (max-width: 768px) {
  .p-top-class__h2 {
    text-align: center;
  }
}
.p-top-class__h2 .box {
  display: inline-block;
  background-color: #0071bc;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 0.8em 2.4em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top-class__h2 .box {
    font-size: 1.4rem;
  }
}
.p-top-class__h2 .text {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.42;
  color: #0071bc;
}
@media screen and (max-width: 768px) {
  .p-top-class__h2 .text {
    font-size: 2.4rem;
  }
}
.p-top-class-texts {
  max-width: 53.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-class-texts {
    text-align: center;
    max-width: initial;
  }
}
.p-top-class-texts__date {
  margin-top: 2em;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top-class-texts__date {
    font-size: 2.4rem;
  }
}
.p-top-class-texts__date span {
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  .p-top-class-texts__date span {
    font-size: 1.33em;
  }
}
.p-top-class-texts__overview1 {
  margin-top: 2rem;
}
.p-top-class-texts__overview1 p {
  font-size: 2.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-top-class-texts__overview1 p {
    font-size: 2rem;
  }
}
.p-top-class-texts__overview1 p span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top-class-texts__overview1 p span {
    display: block;
  }
}
.p-top-class-texts__lead {
  line-height: 2.25;
  font-size: 2rem;
  margin-top: 5rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-top-class-texts__lead {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: max(34.4rem, 90vw);
  }
}
.p-top-class-texts__overview2 {
  margin-top: 1rem;
}
.p-top-class-texts__overview2 p {
  color: #0071bc;
  font-size: 2.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-top-class-texts__overview2 p {
    font-size: 2rem;
  }
}
.p-top-class-texts__overview2 p span {
  font-size: 1.875em;
}
@media screen and (max-width: 768px) {
  .p-top-class-texts__overview2 p span {
    font-size: 1.6em;
  }
}
.p-top-class-timetable {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-top-class-timetable {
    margin-top: 5rem;
  }
}
.p-top-class-timetable__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top-class-timetable__dl dt {
  background-color: #fff;
  width: 12em;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0.75em;
}
@media screen and (max-width: 768px) {
  .p-top-class-timetable__dl dt {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-top-class-timetable__dl dt:not(:first-of-type) {
  margin-top: 1.3rem;
}
.p-top-class-timetable__dl dt::before {
  content: "";
  display: inline-block;
  width: 1.69em;
  height: 1.69em;
  background-image: url(../images/top/icon-clock.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 0.8em;
}
.p-top-class-timetable__dl dd {
  background-color: #fff;
  width: calc(100% - 11.2em);
  font-size: 2rem;
  padding: 8px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top-class-timetable__dl dd {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
  }
}
.p-top-class-timetable__dl dd:not(:first-of-type) {
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-top-class-timetable__dl dd:not(:first-of-type) {
    margin-top: 0;
  }
}
.p-top-class-timetable__dl dd span {
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  .p-top-class-timetable__dl dd span {
    display: block;
  }
}
.p-top-class-timetable p {
  font-size: 1.6rem;
  margin-top: 1em;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-top-class-timetable p {
    font-size: 1.3rem;
  }
}
.p-top-class-benefits {
  text-align: center;
  margin-top: 17rem;
}
@media screen and (max-width: 768px) {
  .p-top-class-benefits {
    margin-top: 10rem;
  }
}
.p-top-class-benefits dt {
  color: #0071bc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-top-class-benefits dt {
    font-size: 1.6rem;
    margin-bottom: 1em;
  }
}
.p-top-class-benefits dt::before, .p-top-class-benefits dt::after {
  content: "";
  display: inline-block;
  background-color: #0071bc;
  height: 2.08em;
  width: 0.3rem;
}
.p-top-class-benefits dt::before {
  -webkit-transform: rotate(-29deg);
          transform: rotate(-29deg);
  margin-right: 1.5em;
}
.p-top-class-benefits dt::after {
  -webkit-transform: rotate(29deg);
          transform: rotate(29deg);
  margin-left: 1.5em;
}
.p-top-class-benefits dd {
  background-color: #fff;
  display: inline-block;
  color: #0071bc;
  font-size: 3.2rem;
  margin-top: 1em;
  padding: 0.2em;
  line-height: 1.87;
}
@media screen and (max-width: 768px) {
  .p-top-class-benefits dd {
    display: inline;
    padding: 0;
    font-size: 2rem;
  }
}
.p-top-class.-first {
  background-color: #ccdfeb;
}
.p-top-class.-second .p-top-class__h2 {
  margin-left: auto;
  max-width: 53.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-class.-second .p-top-class__h2 {
    max-width: initial;
  }
}
.p-top-class.-second .p-top-class__h2 .box {
  background-color: #9da219;
}
.p-top-class.-second .p-top-class__h2 .text {
  color: #9da219;
}
.p-top-class.-second .p-top-class-texts {
  margin-left: auto;
}
.p-top-class.-second .p-top-class-texts__date {
  margin-top: 0.5em;
}
.p-top-class.-second .p-top-class-texts__overview2 p {
  color: #9da219;
}
.p-top-class.-second .p-top-class-benefits dt {
  color: #9da219;
}
.p-top-class.-second .p-top-class-benefits dt::before, .p-top-class.-second .p-top-class-benefits dt::after {
  background-color: #9da219;
}
.p-top-class.-second .p-top-class-benefits dd {
  color: #9da219;
}
.p-top-class.-second .p-top-class__app a {
  border-color: #9da219;
  color: #9da219;
}
.p-top-class-first__img1 {
  position: absolute;
  top: 27.5rem;
  right: 0;
  width: 31.47%;
}
@media screen and (max-width: 768px) {
  .p-top-class-first__img1 {
    right: initial;
    left: 0;
    width: 62.1%;
    top: 19%;
  }
}
.p-top-class-first__img2 {
  position: absolute;
  top: 54.1rem;
  right: 18.3rem;
  width: 30.6%;
}
@media screen and (max-width: 768px) {
  .p-top-class-first__img2 {
    right: 0;
    width: 60.46%;
    top: 24%;
  }
}
.p-top-class-second__img1 {
  position: absolute;
  top: 8.7rem;
  left: 0;
  width: 39%;
}
@media screen and (max-width: 768px) {
  .p-top-class-second__img1 {
    width: 62.1%;
    top: 16%;
  }
}
.p-top-class-second__img2 {
  position: absolute;
  top: min(42.9rem, 30vw);
  left: 13.3%;
  width: 30.6%;
}
@media screen and (max-width: 768px) {
  .p-top-class-second__img2 {
    left: initial;
    right: 0;
    width: 60.46%;
    top: 21%;
  }
}
.p-top-class-second__img3 {
  position: absolute;
  top: 66rem;
  left: 9.3%;
  width: 12.15%;
}
@media screen and (max-width: 768px) {
  .p-top-class-second__img3 {
    display: none;
  }
}
.p-top-class__app {
  text-align: center;
  margin-top: 4em;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-top-class__app {
    font-size: 1.6rem;
    margin-top: 3em;
  }
}
.p-top-class__app a {
  display: inline-block;
  background-color: #fff;
  border: 0.3rem solid #0071BC;
  border-radius: 10rem;
  padding: 0.87em 3.7em;
  color: #0071bc;
}
@media screen and (max-width: 768px) {
  .p-top-class__app a {
    padding: 0.77em 3.5em;
    border-width: 0.2rem;
  }
}
.p-top-class__photo {
  text-align: center;
  margin: 0 auto;
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.4%;
     -moz-column-gap: 4.4%;
          column-gap: 4.4%;
}
.p-top-class__photos {
  position: relative;
  width: 33%;
}
@media screen and (max-width: 768px) {
  .p-top-class__photos {
    max-width: 312px;
    width: 59.2%;
  }
}
.p-top-class__photo2 {
  position: absolute;
  bottom: -33%;
  left: -33%;
  width: 59.8%;
}
.p-top-class__what {
  font-size: 1.6rem;
  line-height: 2.25;
  width: 40%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-top-class__what {
    width: 100%;
    margin-top: 4em;
  }
}
@media screen and (max-width: 500px) {
  .p-top-class__what {
    font-size: 1.4rem;
  }
}
.p-top-class__what > span {
  font-size: 1.25em;
}
.p-top-class-instructor {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-top-class-instructor {
    margin-top: 5rem;
  }
}
.p-top-class-instructor__title {
  color: #0071bc;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-top-class-instructor__title {
    font-size: 2.2rem;
  }
}
.p-top-class-instructor__title span {
  font-size: 0.75em;
}
.p-top-class-instructor__list {
  padding: 0;
  max-width: 70rem;
  font-size: 2.4rem;
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .p-top-class-instructor__list {
    max-width: 35rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  .p-top-class-instructor__list {
    font-size: 1.2rem;
  }
}
.p-top-class-instructor__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1em;
}
.p-top-class-instructor__list li .bar {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px solid #333;
  margin: 0 8px;
}
.p-top-archive {
  padding-top: 16rem;
}
@media screen and (max-width: 768px) {
  .p-top-archive {
    padding-top: 8rem;
  }
}
.p-top-archive__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top-archive__title {
    font-size: 2.2rem;
  }
}
.p-top-archive-unit {
  background-color: #e6e6e6;
  position: relative;
  padding: 8.7rem 3.5rem 4rem;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-top-archive-unit {
    padding: 5rem 1em 1.5rem;
    margin-top: 6rem;
  }
}
.p-top-archive-unit__h2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-top-archive-unit__h2 {
    font-size: 1.9rem;
  }
}
.p-top-archive-unit__overview {
  font-size: 2rem;
  line-height: 1.45;
  margin-top: 0.9em;
}
@media screen and (max-width: 768px) {
  .p-top-archive-unit__overview {
    font-size: 1.6rem;
  }
}
.p-top-archive-unit__lead {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-top-archive-unit__lead {
    font-size: 1.4rem;
  }
}
.p-top-archive-unit__header {
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-archive-unit__header h1 {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.8em 2.3em;
}
@media screen and (max-width: 768px) {
  .p-top-archive-unit__header h1 {
    font-size: 1.3rem;
  }
}
.p-top-archive-unit .p-top-class-timetable {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top-archive-unit .p-top-class-timetable {
    margin-top: 3rem;
  }
}
.p-top-archive-unit .p-top-class-timetable dt {
  font-size: 1.4rem;
}
.p-top-archive-unit .p-top-class-timetable dd {
  font-size: 1.6rem;
}
.p-top-archive-unit .p-top-class-timetable dd span {
  font-size: 0.875em;
}
.p-top-archive-unit__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 2rem;
  margin-top: 4rem;
}
.p-top-archive-unit__images > div {
  width: 48.4%;
}
@media screen and (max-width: 768px) {
  .p-top-archive-unit__images > div {
    width: 100%;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-inline-block {
  display: inline-block;
}
.u-d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-d-inline {
  display: inline;
}
@media screen and (max-width: 500px) {
  .u-d-sp-none {
    display: none;
  }
  .u-d-sp-block {
    display: block;
  }
  .u-d-sp-inline-block {
    display: inline-block;
  }
  .u-d-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-sp-inline {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .u-d-tb-none {
    display: none;
  }
  .u-d-tb-block {
    display: block;
  }
  .u-d-tb-inline-block {
    display: inline-block;
  }
  .u-d-tb-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-tb-inline {
    display: inline;
  }
}
@media screen and (max-width: 960px) {
  .u-d-pc-none {
    display: none;
  }
  .u-d-pc-block {
    display: block;
  }
  .u-d-pc-inline-block {
    display: inline-block;
  }
  .u-d-pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-pc-inline {
    display: inline;
  }
}

.u-m-0auto {
  margin: 0 auto !important;
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-1em {
  margin-top: 1em !important;
}
.u-mt-2em {
  margin-top: 2em !important;
}
.u-mt-3em {
  margin-top: 3em !important;
}
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mb-1em {
  margin-bottom: 1em !important;
}
.u-mb-2em {
  margin-bottom: 2em !important;
}
.u-mb-3em {
  margin-bottom: 3em !important;
}
.u-ml-0 {
  margin-left: 0 !important;
}
.u-ml-1em {
  margin-left: 1em !important;
}
.u-ml-2em {
  margin-left: 2em !important;
}
.u-ml-3em {
  margin-left: 3em !important;
}
.u-mr-0 {
  margin-right: 0 !important;
}
.u-mr-1em {
  margin-right: 1em !important;
}
.u-mr-2em {
  margin-right: 2em !important;
}
.u-mr-3em {
  margin-right: 3em !important;
}

.u-align-left {
  text-align: left;
}
.u-align-center {
  text-align: center;
}
.u-align-right {
  text-align: right;
}
.u-align-justify {
  text-align: justify;
}
@media screen and (max-width: 500px) {
  .u-align-sp-left {
    text-align: left;
  }
  .u-align-sp-center {
    text-align: center;
  }
  .u-align-sp-right {
    text-align: right;
  }
  .u-align-sp-justify {
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  .u-align-tb-left {
    text-align: left;
  }
  .u-align-tb-center {
    text-align: center;
  }
  .u-align-tb-right {
    text-align: right;
  }
  .u-align-tb-justify {
    text-align: justify;
  }
}
@media screen and (max-width: 960px) {
  .u-align-pc-left {
    text-align: left;
  }
  .u-align-pc-center {
    text-align: center;
  }
  .u-align-pc-right {
    text-align: right;
  }
  .u-align-pc-justify {
    text-align: justify;
  }
}

.u-flex-start-start, .u-flex-start-center, .u-flex-start-end, .u-flex-start-stretch, .u-flex-start-baseline, .u-flex-center-start, .u-flex-center-center, .u-flex-center-end, .u-flex-center-stretch, .u-flex-center-baseline, .u-flex-end-start, .u-flex-end-center, .u-flex-end-end, .u-flex-end-stretch, .u-flex-end-baseline, .u-flex-between-start, .u-flex-between-center, .u-flex-between-end, .u-flex-between-stretch, .u-flex-between-baseline, .u-flex-around-start, .u-flex-around-center, .u-flex-around-end, .u-flex-around-stretch, .u-flex-around-baseline, .u-flex-evenly-start, .u-flex-evenly-center, .u-flex-evenly-end, .u-flex-evenly-stretch, .u-flex-evenly-baseline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.u-flex-start-start.u-flex-wrap, .u-flex-start-center.u-flex-wrap, .u-flex-start-end.u-flex-wrap, .u-flex-start-stretch.u-flex-wrap, .u-flex-start-baseline.u-flex-wrap, .u-flex-center-start.u-flex-wrap, .u-flex-center-center.u-flex-wrap, .u-flex-center-end.u-flex-wrap, .u-flex-center-stretch.u-flex-wrap, .u-flex-center-baseline.u-flex-wrap, .u-flex-end-start.u-flex-wrap, .u-flex-end-center.u-flex-wrap, .u-flex-end-end.u-flex-wrap, .u-flex-end-stretch.u-flex-wrap, .u-flex-end-baseline.u-flex-wrap, .u-flex-between-start.u-flex-wrap, .u-flex-between-center.u-flex-wrap, .u-flex-between-end.u-flex-wrap, .u-flex-between-stretch.u-flex-wrap, .u-flex-between-baseline.u-flex-wrap, .u-flex-around-start.u-flex-wrap, .u-flex-around-center.u-flex-wrap, .u-flex-around-end.u-flex-wrap, .u-flex-around-stretch.u-flex-wrap, .u-flex-around-baseline.u-flex-wrap, .u-flex-evenly-start.u-flex-wrap, .u-flex-evenly-center.u-flex-wrap, .u-flex-evenly-end.u-flex-wrap, .u-flex-evenly-stretch.u-flex-wrap, .u-flex-evenly-baseline.u-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.u-flex-start-start.u-flex-column, .u-flex-start-center.u-flex-column, .u-flex-start-end.u-flex-column, .u-flex-start-stretch.u-flex-column, .u-flex-start-baseline.u-flex-column, .u-flex-center-start.u-flex-column, .u-flex-center-center.u-flex-column, .u-flex-center-end.u-flex-column, .u-flex-center-stretch.u-flex-column, .u-flex-center-baseline.u-flex-column, .u-flex-end-start.u-flex-column, .u-flex-end-center.u-flex-column, .u-flex-end-end.u-flex-column, .u-flex-end-stretch.u-flex-column, .u-flex-end-baseline.u-flex-column, .u-flex-between-start.u-flex-column, .u-flex-between-center.u-flex-column, .u-flex-between-end.u-flex-column, .u-flex-between-stretch.u-flex-column, .u-flex-between-baseline.u-flex-column, .u-flex-around-start.u-flex-column, .u-flex-around-center.u-flex-column, .u-flex-around-end.u-flex-column, .u-flex-around-stretch.u-flex-column, .u-flex-around-baseline.u-flex-column, .u-flex-evenly-start.u-flex-column, .u-flex-evenly-center.u-flex-column, .u-flex-evenly-end.u-flex-column, .u-flex-evenly-stretch.u-flex-column, .u-flex-evenly-baseline.u-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.u-flex-start-start.u-flex-row-reverse, .u-flex-start-center.u-flex-row-reverse, .u-flex-start-end.u-flex-row-reverse, .u-flex-start-stretch.u-flex-row-reverse, .u-flex-start-baseline.u-flex-row-reverse, .u-flex-center-start.u-flex-row-reverse, .u-flex-center-center.u-flex-row-reverse, .u-flex-center-end.u-flex-row-reverse, .u-flex-center-stretch.u-flex-row-reverse, .u-flex-center-baseline.u-flex-row-reverse, .u-flex-end-start.u-flex-row-reverse, .u-flex-end-center.u-flex-row-reverse, .u-flex-end-end.u-flex-row-reverse, .u-flex-end-stretch.u-flex-row-reverse, .u-flex-end-baseline.u-flex-row-reverse, .u-flex-between-start.u-flex-row-reverse, .u-flex-between-center.u-flex-row-reverse, .u-flex-between-end.u-flex-row-reverse, .u-flex-between-stretch.u-flex-row-reverse, .u-flex-between-baseline.u-flex-row-reverse, .u-flex-around-start.u-flex-row-reverse, .u-flex-around-center.u-flex-row-reverse, .u-flex-around-end.u-flex-row-reverse, .u-flex-around-stretch.u-flex-row-reverse, .u-flex-around-baseline.u-flex-row-reverse, .u-flex-evenly-start.u-flex-row-reverse, .u-flex-evenly-center.u-flex-row-reverse, .u-flex-evenly-end.u-flex-row-reverse, .u-flex-evenly-stretch.u-flex-row-reverse, .u-flex-evenly-baseline.u-flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.u-flex-start-start.u-flex-column-reverse, .u-flex-start-center.u-flex-column-reverse, .u-flex-start-end.u-flex-column-reverse, .u-flex-start-stretch.u-flex-column-reverse, .u-flex-start-baseline.u-flex-column-reverse, .u-flex-center-start.u-flex-column-reverse, .u-flex-center-center.u-flex-column-reverse, .u-flex-center-end.u-flex-column-reverse, .u-flex-center-stretch.u-flex-column-reverse, .u-flex-center-baseline.u-flex-column-reverse, .u-flex-end-start.u-flex-column-reverse, .u-flex-end-center.u-flex-column-reverse, .u-flex-end-end.u-flex-column-reverse, .u-flex-end-stretch.u-flex-column-reverse, .u-flex-end-baseline.u-flex-column-reverse, .u-flex-between-start.u-flex-column-reverse, .u-flex-between-center.u-flex-column-reverse, .u-flex-between-end.u-flex-column-reverse, .u-flex-between-stretch.u-flex-column-reverse, .u-flex-between-baseline.u-flex-column-reverse, .u-flex-around-start.u-flex-column-reverse, .u-flex-around-center.u-flex-column-reverse, .u-flex-around-end.u-flex-column-reverse, .u-flex-around-stretch.u-flex-column-reverse, .u-flex-around-baseline.u-flex-column-reverse, .u-flex-evenly-start.u-flex-column-reverse, .u-flex-evenly-center.u-flex-column-reverse, .u-flex-evenly-end.u-flex-column-reverse, .u-flex-evenly-stretch.u-flex-column-reverse, .u-flex-evenly-baseline.u-flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.u-flex-start-start.u-flex-grow-1, .u-flex-start-center.u-flex-grow-1, .u-flex-start-end.u-flex-grow-1, .u-flex-start-stretch.u-flex-grow-1, .u-flex-start-baseline.u-flex-grow-1, .u-flex-center-start.u-flex-grow-1, .u-flex-center-center.u-flex-grow-1, .u-flex-center-end.u-flex-grow-1, .u-flex-center-stretch.u-flex-grow-1, .u-flex-center-baseline.u-flex-grow-1, .u-flex-end-start.u-flex-grow-1, .u-flex-end-center.u-flex-grow-1, .u-flex-end-end.u-flex-grow-1, .u-flex-end-stretch.u-flex-grow-1, .u-flex-end-baseline.u-flex-grow-1, .u-flex-between-start.u-flex-grow-1, .u-flex-between-center.u-flex-grow-1, .u-flex-between-end.u-flex-grow-1, .u-flex-between-stretch.u-flex-grow-1, .u-flex-between-baseline.u-flex-grow-1, .u-flex-around-start.u-flex-grow-1, .u-flex-around-center.u-flex-grow-1, .u-flex-around-end.u-flex-grow-1, .u-flex-around-stretch.u-flex-grow-1, .u-flex-around-baseline.u-flex-grow-1, .u-flex-evenly-start.u-flex-grow-1, .u-flex-evenly-center.u-flex-grow-1, .u-flex-evenly-end.u-flex-grow-1, .u-flex-evenly-stretch.u-flex-grow-1, .u-flex-evenly-baseline.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.u-flex-start-start.u-flex-grow-0, .u-flex-start-center.u-flex-grow-0, .u-flex-start-end.u-flex-grow-0, .u-flex-start-stretch.u-flex-grow-0, .u-flex-start-baseline.u-flex-grow-0, .u-flex-center-start.u-flex-grow-0, .u-flex-center-center.u-flex-grow-0, .u-flex-center-end.u-flex-grow-0, .u-flex-center-stretch.u-flex-grow-0, .u-flex-center-baseline.u-flex-grow-0, .u-flex-end-start.u-flex-grow-0, .u-flex-end-center.u-flex-grow-0, .u-flex-end-end.u-flex-grow-0, .u-flex-end-stretch.u-flex-grow-0, .u-flex-end-baseline.u-flex-grow-0, .u-flex-between-start.u-flex-grow-0, .u-flex-between-center.u-flex-grow-0, .u-flex-between-end.u-flex-grow-0, .u-flex-between-stretch.u-flex-grow-0, .u-flex-between-baseline.u-flex-grow-0, .u-flex-around-start.u-flex-grow-0, .u-flex-around-center.u-flex-grow-0, .u-flex-around-end.u-flex-grow-0, .u-flex-around-stretch.u-flex-grow-0, .u-flex-around-baseline.u-flex-grow-0, .u-flex-evenly-start.u-flex-grow-0, .u-flex-evenly-center.u-flex-grow-0, .u-flex-evenly-end.u-flex-grow-0, .u-flex-evenly-stretch.u-flex-grow-0, .u-flex-evenly-baseline.u-flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.u-flex-start-start.u-flex-shrink-1, .u-flex-start-center.u-flex-shrink-1, .u-flex-start-end.u-flex-shrink-1, .u-flex-start-stretch.u-flex-shrink-1, .u-flex-start-baseline.u-flex-shrink-1, .u-flex-center-start.u-flex-shrink-1, .u-flex-center-center.u-flex-shrink-1, .u-flex-center-end.u-flex-shrink-1, .u-flex-center-stretch.u-flex-shrink-1, .u-flex-center-baseline.u-flex-shrink-1, .u-flex-end-start.u-flex-shrink-1, .u-flex-end-center.u-flex-shrink-1, .u-flex-end-end.u-flex-shrink-1, .u-flex-end-stretch.u-flex-shrink-1, .u-flex-end-baseline.u-flex-shrink-1, .u-flex-between-start.u-flex-shrink-1, .u-flex-between-center.u-flex-shrink-1, .u-flex-between-end.u-flex-shrink-1, .u-flex-between-stretch.u-flex-shrink-1, .u-flex-between-baseline.u-flex-shrink-1, .u-flex-around-start.u-flex-shrink-1, .u-flex-around-center.u-flex-shrink-1, .u-flex-around-end.u-flex-shrink-1, .u-flex-around-stretch.u-flex-shrink-1, .u-flex-around-baseline.u-flex-shrink-1, .u-flex-evenly-start.u-flex-shrink-1, .u-flex-evenly-center.u-flex-shrink-1, .u-flex-evenly-end.u-flex-shrink-1, .u-flex-evenly-stretch.u-flex-shrink-1, .u-flex-evenly-baseline.u-flex-shrink-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.u-flex-start-start.u-flex-shrink-o, .u-flex-start-center.u-flex-shrink-o, .u-flex-start-end.u-flex-shrink-o, .u-flex-start-stretch.u-flex-shrink-o, .u-flex-start-baseline.u-flex-shrink-o, .u-flex-center-start.u-flex-shrink-o, .u-flex-center-center.u-flex-shrink-o, .u-flex-center-end.u-flex-shrink-o, .u-flex-center-stretch.u-flex-shrink-o, .u-flex-center-baseline.u-flex-shrink-o, .u-flex-end-start.u-flex-shrink-o, .u-flex-end-center.u-flex-shrink-o, .u-flex-end-end.u-flex-shrink-o, .u-flex-end-stretch.u-flex-shrink-o, .u-flex-end-baseline.u-flex-shrink-o, .u-flex-between-start.u-flex-shrink-o, .u-flex-between-center.u-flex-shrink-o, .u-flex-between-end.u-flex-shrink-o, .u-flex-between-stretch.u-flex-shrink-o, .u-flex-between-baseline.u-flex-shrink-o, .u-flex-around-start.u-flex-shrink-o, .u-flex-around-center.u-flex-shrink-o, .u-flex-around-end.u-flex-shrink-o, .u-flex-around-stretch.u-flex-shrink-o, .u-flex-around-baseline.u-flex-shrink-o, .u-flex-evenly-start.u-flex-shrink-o, .u-flex-evenly-center.u-flex-shrink-o, .u-flex-evenly-end.u-flex-shrink-o, .u-flex-evenly-stretch.u-flex-shrink-o, .u-flex-evenly-baseline.u-flex-shrink-o {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.u-flex-start-start, .u-flex-start-center, .u-flex-start-end, .u-flex-start-stretch, .u-flex-start-baseline {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.u-flex-center-start, .u-flex-center-center, .u-flex-center-end, .u-flex-center-stretch, .u-flex-center-baseline {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.u-flex-end-start, .u-flex-end-center, .u-flex-end-end, .u-flex-end-stretch, .u-flex-end-baseline {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.u-flex-between-start, .u-flex-between-center, .u-flex-between-end, .u-flex-between-stretch, .u-flex-between-baseline {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-flex-around-start, .u-flex-around-center, .u-flex-around-end, .u-flex-around-stretch, .u-flex-around-baseline {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.u-flex-evenly-start, .u-flex-evenly-center, .u-flex-evenly-end, .u-flex-evenly-stretch, .u-flex-evenly-baseline {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.u-flex-start-start, .u-flex-center-start, .u-flex-end-start, .u-flex-between-start, .u-flex-around-start, .u-flex-evenly-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.u-flex-start-center, .u-flex-center-center, .u-flex-end-center, .u-flex-between-center, .u-flex-around-center, .u-flex-evenly-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-flex-start-end, .u-flex-center-end, .u-flex-end-end, .u-flex-between-end, .u-flex-around-end, .u-flex-evenly-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.u-flex-start-stretch, .u-flex-center-stretch, .u-flex-end-stretch, .u-flex-between-stretch, .u-flex-around-stretch, .u-flex-evenly-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.u-flex-start-baseline, .u-flex-center-baseline, .u-flex-end-baseline, .u-flex-between-baseline, .u-flex-around-baseline, .u-flex-evenly-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
/*# sourceMappingURL=style.css.map */