@charset "UTF-8";
@font-face {
  src: local("NotoSansCJKjp-Regular"), local("NotoSansJP-Regular"), url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype");
  font-family: 'Noto Sans CJK JP Subset';
  font-style: normal;
  font-weight: 400;
}

@font-face {
  src: local("NotoSansCJKjp-Medium"), local("NotoSansJP-Medium"), url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Medium.woff") format("woff"), url("../fonts/NotoSansCJKjp-Medium.ttf") format("truetype");
  font-family: 'Noto Sans CJK JP Subset';
  font-style: normal;
  font-weight: 500;
}

@font-face {
  src: local("NotoSansCJKjp-Bold"), local("NotoSansJP-Bold"), url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype");
  font-family: 'Noto Sans CJK JP Subset';
  font-style: normal;
  font-weight: 700;
}

.hover {
  display: block;
  transition: 0.4s;
}

@media (hover: hover) {
  .hover:hover {
    transform: scale(0.96);
    transition: 0.2s;
  }
}

.hover:active {
  transform: scale(0.95);
  transition: 0.2s;
}

/*
 * Container style
 */
.ps {
  overflow-anchor: none;
  -ms-overflow-style: none;
  -ms-touch-action: auto;
  overflow: hidden !important;
  touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  display: none;
  /* please don't change 'position' */
  position: absolute;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  height: 15px;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
}

.ps__rail-y {
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  display: none;
  /* please don't change 'position' */
  position: absolute;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  width: 15px;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  /* please don't change 'position' */
  position: absolute;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  height: 6px;
  border-radius: 6px;
  background-color: #aaa;
  transition: background-color .2s linear, height .2s ease-in-out;
}

.ps__thumb-y {
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  /* please don't change 'position' */
  position: absolute;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  width: 6px;
  border-radius: 6px;
  background-color: #aaa;
  transition: background-color .2s linear, width .2s ease-in-out;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  height: 11px;
  background-color: #999;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  width: 11px;
  background-color: #999;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
}

.modaal-overlay {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.modaal-wrapper {
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  display: block;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

.modaal-wrapper .modaal-close {
  -webkit-appearance: none;
  padding: 0;
  border: none;
  background: transparent;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 80px 25px;
  text-align: center;
  vertical-align: middle;
}

.modaal-fullscreen .modaal-inner-wrapper {
  display: block;
  padding: 0;
  vertical-align: top;
}

.modaal-container {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #000;
  text-align: left;
  cursor: auto;
}

.modaal-container.is_loading {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-close span {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
}

.modaal-close:before, .modaal-close:after {
  display: block;
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  content: " ";
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  transform: rotate(-45deg);
}

.modaal-close:after {
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  top: 10px;
  right: 10px;
  background: #afb7bc;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  font-size: 0;
  text-align: center;
}

.modaal-confirm-btn {
  display: inline-block;
  margin: 0 10px;
  border: none;
  background: transparent;
  font-size: 14px;
  vertical-align: middle;
  cursor: pointer;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  border-radius: 3px;
  background: #555;
  color: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  color: #2f2f2f;
  text-decoration: none;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  -webkit-animation: instaReveal 1s linear forwards;
  width: 1000px !important;
  max-width: 800px !important;
  margin: -6px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
          animation: instaReveal 1s linear forwards;
  opacity: 0;
}

.modaal-image .modaal-inner-wrapper {
  padding-right: 140px;
  padding-left: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: none;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  cursor: default;
  opacity: 0;
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
}

.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  content: " ";
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  position: relative;
  margin: auto 50px;
}

.modaal-video-container {
  position: relative;
  max-width: 100%;
  max-width: 1300px;
  height: 0;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    height: 731px;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-right: 25px;
    padding-left: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    right: 20px;
    left: auto;
  }
  .modaal-gallery-prev {
    right: auto;
    left: 20px;
  }
}

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}

.modaal-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
  background: none;
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: .1;
  }
}

@keyframes modaal-loading-spinner {
  0% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: .1;
  }
}

.modaal-loading-spinner > div {
  position: absolute;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  margin-left: 4px;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
          animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
          animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
          animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
          animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
          animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
          animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* Slider */
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
  float: left;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  /* 2 */
  -webkit-text-decoration: underline dotted;
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /* 1 */
  margin: 0;
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 1 */
  color: inherit;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  background-color: #fff;
}

body {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

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

header {
  z-index: 2;
  position: relative;
}

body, main, footer, aside {
  z-index: 1;
  position: relative;
}

section {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

ul, ol, li, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

p, dl {
  margin: 0;
}

dt {
  display: inline;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

strong {
  font-size: 1.15em;
}

hr {
  margin: 0;
  border: none;
}

iframe {
  border: none;
}

button {
  padding: 0;
  border-width: 0;
  outline: none;
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
  touch-action: manipulation;
}

input::-moz-focus-inner {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  word-wrap: break-word;
  color: #262626;
  font-family: "Noto Sans", "Noto Sans CJK JP", "Noto Sans CJK JP Subset", -apple-system, BlinkMacSystemFont, Arial, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Meiryo, メイリオ, sans-serif;
  font-size: 62.5%;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.75;
}

body {
  overflow-x: hidden;
  font-size: 1.2rem;
}

@media (min-width: 48.0625em) {
  body {
    font-size: 1.4rem;
  }
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  position: absolute;
  top: -1em;
  left: -100%;
  width: 300%;
  font-size: 0.5em;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  content: attr(data-ruby);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

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

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  word-wrap: break-word;
  min-width: 0;
}

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 48.0625em) {
  .pc-col-1, .pc-col-2, .pc-col-3, .pc-col-4, .pc-col-5, .pc-col-6, .pc-col-7, .pc-col-8, .pc-col-9, .pc-col-10, .pc-col-11, .pc-col-12 {
    word-wrap: break-word;
    min-width: 0;
  }
  .pc-col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .pc-col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .pc-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pc-col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .pc-col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .pc-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pc-col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .pc-col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .pc-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pc-col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .pc-col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .pc-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-auto {
  word-wrap: break-word;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 48.0625em) {
  .pc-col-auto {
    word-wrap: break-word;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    max-width: 100%;
  }
}

.info {
  padding-right: 18px;
  overflow: hidden;
}

.info__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #454545;
  font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  letter-spacing: 0.075em;
  line-height: 1;
}

@media (min-width: 48.0625em) {
  .info__head {
    font-size: 3rem;
  }
}

.info__head span {
  color: #2b5a75;
  font-size: 4rem;
  vertical-align: -1px;
}

.info__headLine {
  width: 100%;
  height: 1px;
  margin-right: 0.5em;
  margin-bottom: -0.5em;
  background-image: linear-gradient(to right, currentColor, currentColor 3px, transparent 0);
  background-repeat: repeat-x;
  background-size: 6px 1px;
  color: #2b5a75;
}

@media (min-width: 48.0625em) {
  .info__headLine {
    margin-right: 1em;
    margin-bottom: -0.3em;
  }
}

.info__more {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  letter-spacing: 0.075em;
  line-height: 1;
}

.info__moreIcon {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 2px;
  margin-left: 0.4em;
  transform: rotate(90deg);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%232b5a75%22%3E%3Cpath%20d%3D%22M22%2012l-20%2012%207.289-12-7.289-12z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  transition: 0.2s;
}

.info__moreIcon.is-active {
  transform: rotate(270deg);
}

.info__item {
  margin-bottom: 0.8em;
  padding: 0.5em 1em;
  background-color: #fff;
  color: #454545;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.info__item:nth-of-type(n + 4) {
  display: none;
}

@media (min-width: 48.0625em) {
  .info__item {
    font-size: 1.6rem;
  }
}

.info__item a {
  display: block;
  position: relative;
  margin: -0.5em -1em;
  padding: 0.5em 1em;
  transition: 0.2s;
}

@media (hover: hover) {
  .info__item a:hover {
    background-color: rgba(111, 169, 202, 0.1);
  }
}

.info__item a:active {
  background-color: rgba(111, 169, 202, 0.1);
}

.info__item time {
  margin-right: 1em;
  color: #7b7b7b;
}

.info__activeTarget.is-active .info__item:nth-of-type(n + 4) {
  -webkit-animation: infoItem 0.3s both;
  display: block;
          animation: infoItem 0.3s both;
}

@-webkit-keyframes infoItem {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes infoItem {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.info__scroll {
  position: relative;
  max-height: 260px;
  margin-right: -18px;
  padding-right: 18px;
}

.info .ps__thumb-y,
.info .ps__rail-y {
  width: 6px;
  border-radius: 6px;
  color: #fff;
}

.info .ps__rail-y {
  background-color: rgba(255, 255, 255, 0.33);
}

.inline {
  padding: 3rem 2rem 4rem;
  border: 8px solid #2b5a75;
  background-color: #fff;
}

@media (min-width: 48.0625em) {
  .inline {
    padding: 4rem;
  }
}

.inline--maintenance {
  display: table;
  max-width: 1200px;
  margin: 0 auto;
  border: none;
}

.inline__title {
  margin-bottom: 1em;
  color: #2b5a75;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
}

.inline__head {
  color: #2b5a75;
  font-size: 1.8rem;
  font-weight: 500;
}

.inline__subhead {
  font-size: 1.8rem;
  font-weight: 500;
}

.inline .lv1 {
  margin-left: 1em;
}

.inline .lv2 {
  margin-left: 2em;
}

.inline a {
  color: #226FFF;
  text-decoration: underline;
}

.inline hr {
  height: 1px;
  border: none;
  background: #dfdfdf;
}

.mainSlider {
  position: relative;
  opacity: 0;
  transition: 0.2s;
}

.mainSlider.slick-initialized {
  opacity: 1;
}

.mainSlider .slick-list::before, .mainSlider .slick-list::after {
  z-index: 1;
  position: absolute;
  top: 0;
  width: calc(50% - 400px);
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  content: '';
}

.mainSlider .slick-list::before {
  left: 0;
}

.mainSlider .slick-list::after {
  right: 0;
}

.mainSlider .slick-slide img {
  max-width: 100%;
}

.mainSlider .slick-slide a {
  display: block !important;
}

.mainSlider .slick-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.mainSlider .slick-dots li {
  display: inline-block;
}

.mainSlider .slick-dots li button {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 1rem;
  border: 1px solid #797979;
  border-radius: 50%;
  background-color: #797979;
  font-size: 0;
  transition: 0.2s;
}

.mainSlider .slick-dots li button::before {
  position: absolute;
  top: -1rem;
  right: -1rem;
  bottom: -1rem;
  left: -1rem;
  content: '';
  pointer-events: auto;
}

.mainSlider .slick-dots li button:hover {
  background-color: #a2a2a2;
}

.mainSlider .slick-dots li.slick-active button {
  width: 14px;
  height: 14px;
  background-color: transparent;
}

.product {
  z-index: 1;
  position: relative;
  border: 1px solid #dfe1f2;
}

.product::before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 98%;
  height: 100%;
  transform: translate(1rem, 1rem);
  background: linear-gradient(to bottom, rgba(225, 225, 243, 0.72) 0%, rgba(192, 225, 234, 0.72) 100%);
  content: '';
}

.product:not(:last-child) {
  margin-bottom: 2.5rem;
}

@media (min-width: 48.0625em) {
  .product:not(:last-child) {
    margin-bottom: 6.5rem;
  }
}

.product__inner {
  padding: 1.5rem 1.5rem 3.5rem;
  background-color: #fff;
}

@media (min-width: 48.0625em) {
  .product__inner {
    padding: 5rem 4rem 5rem;
  }
}

.product__title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
  letter-spacing: 0.075em;
  line-height: 1.5;
}

@media (min-width: 48.0625em) {
  .product__title {
    margin-bottom: 2em;
  }
}

.product__title::before {
  display: inline-block;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  border-radius: 50%;
  background: linear-gradient(to bottom, #abb9d1 0%, #6b85a6 100%);
  content: '';
  opacity: .68;
}

@media (min-width: 48.0625em) {
  .product__title::before {
    width: 4.4rem;
    height: 4.4rem;
  }
}

.product__subTitle {
  display: block;
  color: #2b5a75;
  font-size: 1.1rem;
}

@media (min-width: 48.0625em) {
  .product__subTitle {
    font-size: 1.6rem;
  }
}

.product__mainTitle {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
}

@media (min-width: 48.0625em) {
  .product__mainTitle {
    font-size: 2.6rem;
  }
}

.product__imageOuter {
  position: relative;
  padding-bottom: 1.5rem;
  border: 1px solid #dfdfdf;
  background-color: #fff;
}

.product__imageLink {
  outline: none;
}

@media (min-width: 48.0625em) {
  .product__closeAndRelease {
    position: absolute;
    top: -3.5rem;
    right: -3rem;
  }
}

.product__close {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 1em;
  background: linear-gradient(to right, #d3e7ed 0%, #e3e3f4 100%);
  color: #454545;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

@media (min-width: 48.0625em) {
  .product__close {
    font-size: 1.8rem;
    white-space: nowrap;
  }
}

.product__close b {
  margin: 0 0.05em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  vertical-align: -0.05em;
}

@media (min-width: 48.0625em) {
  .product__close b {
    font-size: 3rem;
  }
}

.product__release {
  margin-bottom: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (min-width: 48.0625em) {
  .product__release {
    margin-right: 4rem;
    text-align: right;
  }
}

.product__release b, .product__release span {
  font-size: 1.2em;
}

@media (min-width: 48.0625em) {
  .product__release b, .product__release span {
    font-size: 1.3em;
  }
}

.product__releaseLabel {
  margin-right: 0.5em;
  padding: 0.5em;
  color: #2b5a75;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.product__releaseDate {
  font-size: 1.05em;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.product__price {
  margin-bottom: 0.1em;
  padding-top: 0.6em;
  border-top: 1px dashed #2b5a75;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.product__desc {
  margin-bottom: 3em;
  padding-bottom: 1em;
  border-bottom: 1px dashed #2b5a75;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.8;
  text-align: justify;
}

.product__scene {
  display: table;
  width: 80%;
  margin: 0 auto;
}

.product__scene img {
  width: 100%;
}

.product__detailButton {
  width: 90%;
  margin: 0 auto;
}

.product__detailButton__notBuy {
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-48%, -48%);
  color: #fff;
  font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2rem !important;
  font-weight: bold;
}

@media (min-width: 48.0625em) {
  .product__detailButton {
    width: auto;
  }
}

.product .slick-arrow {
  top: auto;
  bottom: 1rem;
}

.product .slick-prev {
  left: 1rem;
}

.product .slick-next {
  right: 1rem;
}

.smallProduct {
  display: block;
  z-index: 1;
  position: relative;
  border: 1px solid #dfe1f2;
}

.smallProduct::before {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 99%;
  height: 99%;
  transform: translate(0.5rem, 0.5rem);
  background: linear-gradient(to bottom, rgba(225, 225, 243, 0.72) 0%, rgba(192, 225, 234, 0.72) 100%);
  content: '';
}

.smallProduct__release {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 4em;
  height: 4em;
  padding-top: 0.7em;
  transform: translate(-30%, -30%);
  border-radius: 100px;
  background: linear-gradient(45deg, #c0e1ea 0%, #e1e1f3 100%);
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 48.0625em) {
  .smallProduct__release {
    width: 4.5em;
    height: 4.5em;
    padding-top: 0.9em;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
  }
}

.smallProduct__release time {
  font-size: 1.2em;
}

.smallProduct__inner {
  padding: 1em;
  background-color: #fff;
  transition: 0.3s;
}

@media (min-width: 48.0625em) {
  .smallProduct__inner {
    padding: 1.5em 1.5em 2em;
  }
}

@media (hover: hover) {
  .smallProduct:hover .smallProduct__inner {
    background: #f5fbfc;
  }
}

.smallProduct:active .smallProduct__inner {
  background: #f5fbfc;
}

.smallProduct__imageOuter {
  position: relative;
  margin-bottom: 0.5em;
  border: 1px solid #dfdfdf;
  background-color: #fff;
}

.smallProduct__title {
  font-weight: 500;
  line-height: 1.5;
}

.smallProduct__subTitle {
  display: block;
  color: #2b5a75;
}

.frameButton {
  display: flex;
  align-items: center;
  padding: 0.6em 0.6em 0.6em 1.2em;
  border: 1px solid #2b5a75;
  border-radius: 8px;
  color: #2b5a75;
  font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  letter-spacing: 0.075em;
  line-height: 1;
  transition: 0.2s;
}

@media (min-width: 48.0625em) {
  .frameButton {
    font-size: 2rem;
  }
}

@media (hover: hover) {
  .frameButton:hover {
    background: rgba(111, 169, 202, 0.1);
  }
}

.frameButton:active {
  background: rgba(111, 169, 202, 0.1);
}

.frameButton__icon {
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.8em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%232b5a75%22%3E%3Cpath%20d%3D%22M22%2012l-20%2012%207.289-12-7.289-12z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.overseas {
  margin: 0 auto;
}

@media (min-width: 48.0625em) {
  .overseas {
    width: 800px;
  }
}

.overseas__header {
  padding: 0.5em;
  background-color: #2b5a75;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-align: center;
}

.overseas__content {
  padding: 1.5em;
  background-color: #fff;
  font-size: 1.4rem;
}

@media (min-width: 48.0625em) {
  .overseas__content {
    font-size: 1.8rem;
  }
}

.overseas a {
  color: #226FFF;
  text-decoration: underline;
}

.rug-grad {
  background: linear-gradient(to right, rgba(192, 225, 234, 0.72) 0%, rgba(225, 225, 243, 0.72) 100%);
}

.bg-base {
  background: url(../img/bg-base.png) center top;
  background-size: 100% auto;
}

.head-main {
  display: table;
  position: relative;
  color: #a1d6e0;
  font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.5rem;
  letter-spacing: 0.125em;
  line-height: 1;
}

@media (min-width: 48.0625em) {
  .head-main {
    font-size: 7rem;
  }
}

.head-main::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: url(../img/bg-dot.png);
  content: '';
}

.arrowAnimationButton {
  display: table;
  z-index: 0;
  position: relative;
  padding: 0.75rem 4rem 1.25rem;
  border-radius: 100px;
  transition: 0.3s;
}

.arrowAnimationButton--blue::before {
  background-color: #e3f7fd;
}

.arrowAnimationButton--blue::after {
  box-shadow: 0 0 0 2px #a3cdd9 inset;
}

.arrowAnimationButton--pink::before {
  background-color: #fde6f6;
}

.arrowAnimationButton--pink::after {
  box-shadow: 0 0 0 2px #ea9edb inset;
}

.arrowAnimationButton::before, .arrowAnimationButton::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  content: '';
}

.arrowAnimationButton::before {
  z-index: -1;
  transform: translate(8px, 8px);
  transition: 0.3s;
}

@media (hover: hover) {
  .arrowAnimationButton:hover::before {
    transform: translate(0, 0);
  }
}

.arrowAnimationButton:active::before {
  transform: translate(0, 0);
}

.arrowAnimationButton::after {
  z-index: 1;
}

.arrowAnimationButton2 {
  display: table;
  z-index: 0;
  position: relative;
  padding: 0.75rem 4rem 1.25rem;
  border-radius: 100px;
}

.arrowAnimationButton2--gray::before {
  background-color: rgba(0, 0, 0, 0.5);
}

.arrowAnimationButton2::before, .arrowAnimationButton2::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  content: '';
}

.nav {
  z-index: 2;
  position: relative;
  margin-bottom: -3.25rem;
  font-size: 1.2rem;
  text-align: center;
}

.nav a {
  display: block;
  transition: 0.3s;
}

@media (hover: hover) {
  .nav a:hover {
    color: #2b5a75;
  }
  .nav a:hover img {
    -webkit-animation: navItem 0.8s;
            animation: navItem 0.8s;
  }
}

.nav a:active {
  color: #2b5a75;
}

.nav a:active img {
  -webkit-animation: navItem 0.8s;
          animation: navItem 0.8s;
}

.nav img {
  width: 6.5rem;
  height: 6.5rem;
}

@-webkit-keyframes navItem {
  33% {
    transform: rotate(-7deg);
  }
  66% {
    transform: rotate(7deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes navItem {
  33% {
    transform: rotate(-7deg);
  }
  66% {
    transform: rotate(7deg);
  }
  100% {
    transform: rotate(0);
  }
}

.footer {
  padding-top: 4rem;
  font-size: 1.1rem;
  line-height: 2.1;
}

@media (min-width: 48.0625em) {
  .footer {
    padding-top: 6.5rem;
    font-size: 1.2rem;
  }
}

.footer__bottom {
  margin-top: 3.5em;
  padding: 0 1em;
}

@media (min-width: 48.0625em) {
  .footer__bottom {
    padding: 0 2em;
  }
}

.footer__bottomInner {
  padding: 2.2em 0;
  border-top: 1px dashed #2b5a75;
}

.banners {
  margin: -0.5em;
}

.banners::after {
  display: block;
  clear: both;
  content: '';
}

@media (min-width: 48.0625em) {
  .banners {
    display: table;
    margin-left: auto;
  }
}

.banners__item {
  width: 50%;
  padding: 0.5em;
  float: left;
}

@media (min-width: 48.0625em) {
  .banners__item {
    width: auto;
  }
}

@media (min-width: 48.0625em) {
  .banners__item:nth-of-type(4n) {
    clear: both;
  }
}

.banners__item a {
  display: block;
  transition: 0.3s;
}

@media (hover: hover) {
  .banners__item a:hover {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.banners__item a:active {
  transform: scale(0.95);
  opacity: 0.7;
}

.guide {
  position: relative;
  border: 1px solid #dfe1f2;
  line-height: 1.9;
}

@media (min-width: 48.0625em) {
  .guide {
    width: 94%;
    margin: 0 auto;
  }
}

.guide::before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translate(1rem, 1rem);
  background: linear-gradient(to bottom, rgba(225, 225, 243, 0.72) 0%, rgba(192, 225, 234, 0.72) 100%);
  content: '';
}

.guide__inner {
  padding: 4rem 2.5rem;
  background-color: #fff;
}

@media (min-width: 48.0625em) {
  .guide__inner {
    padding: 6.5rem 4rem;
  }
}

.guide__navLink {
  display: block;
  position: relative;
  padding-bottom: 0.5em;
  font-size: 1.6rem;
  transition: 0.2s;
}

@media (min-width: 48.0625em) {
  .guide__navLink {
    font-size: 2.1rem;
  }
}

.guide__navLink::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  margin: auto;
  border-bottom: 1px dashed #2b5a75;
  content: '';
  pointer-events: none;
  transition: 0.2s;
}

.guide__head {
  display: flex;
  align-items: center;
  color: #2b5a75;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.guide__head::before {
  display: inline-block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  border-radius: 50%;
  background: linear-gradient(to bottom, #abb9d1 0%, #6b85a6 100%);
  content: '';
  opacity: .68;
}

@media (min-width: 48.0625em) {
  .guide__head::before {
    width: 35px;
    height: 35px;
  }
}

.guide__mainHead {
  margin-bottom: 0.8em;
  font-size: 1.8rem;
}

@media (min-width: 48.0625em) {
  .guide__mainHead {
    font-size: 2.4rem;
  }
}

.guide__subhead {
  display: table;
  position: relative;
  margin-bottom: 0.5em;
  padding: 0 0.5em 0.5em 0;
  border-bottom: 1px dashed;
  font-size: div(16em, 14, 2);
  font-weight: 500;
}

.guide__strong {
  color: #dc0000;
  font-size: 1.1em;
  font-weight: 500;
}

.guide__section:not(:last-child) {
  margin-bottom: 4.5rem;
}

@media (min-width: 48.0625em) {
  .guide__section:not(:last-child) {
    margin-bottom: 6rem;
  }
}

.guide__subsection:not(:last-child) {
  margin-bottom: 2.5rem;
}

@media (min-width: 48.0625em) {
  .guide__subsection:not(:last-child) {
    margin-bottom: 4rem;
  }
}

.guide__link {
  color: #226FFF;
  text-decoration: underline;
}

.archiveNav__item {
  position: relative;
  padding: 0.3em 1.4em;
  border-radius: 100px;
  color: #2b5a75;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-align: center;
}

@media (min-width: 48.0625em) {
  .archiveNav__item {
    font-size: 1.6rem;
  }
}

.archiveNav__item--active::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, 100%);
  border-top: 0.5em solid #2b5a75;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  content: '';
}

.archiveNav__link {
  display: block;
  position: relative;
  margin: -0.3em -1.4em;
  padding: 0.3em 1.4em;
  border: 2px solid #2b5a75;
  border-radius: 100px;
  opacity: 0.7;
  transition: 0.3s;
}

.archiveNav__link:hover {
  opacity: 1;
}

.archiveNav__item--active .archiveNav__link {
  opacity: 1;
}

.u-d-b {
  display: block;
}

.u-d-n {
  display: none;
}

.u-d-i {
  display: inline;
}

.u-d-ib {
  display: inline-block;
}

.u-d-t {
  display: table;
}

.u-d-f {
  display: flex;
}

@media (min-width: 48.0625em) {
  .u-pc-d-b {
    display: block;
  }
  .u-pc-d-n {
    display: none;
  }
  .u-pc-d-i {
    display: inline;
  }
  .u-pc-d-ib {
    display: inline-block;
  }
  .u-pc-d-t {
    display: table;
  }
  .u-pc-d-f {
    display: flex;
  }
}

.u-z-n3 {
  z-index: -3;
}

.u-z-n2 {
  z-index: -2;
}

.u-z-n1 {
  z-index: -1;
}

.u-z-1 {
  z-index: 1;
}

.u-z-2 {
  z-index: 2;
}

.u-z-3 {
  z-index: 3;
}

.u-pos-a {
  position: absolute;
}

.u-pos-r {
  position: relative;
}

.u-ai-c {
  align-items: center;
}

.u-ai-e {
  align-items: flex-end;
}

@media (min-width: 48.0625em) {
  .u-pc-ai-c {
    align-items: center;
  }
  .u-pc-ai-e {
    align-items: flex-end;
  }
}

.u-jc-c {
  justify-content: center;
}

.u-jc-e {
  justify-content: flex-end;
}

.u-jc-sb {
  justify-content: space-between;
}

.u-jc-sa {
  justify-content: space-around;
}

@media (min-width: 48.0625em) {
  .u-pc-jc-c {
    justify-content: center;
  }
  .u-pc-jc-e {
    justify-content: flex-end;
  }
  .u-pc-jc-sb {
    justify-content: space-between;
  }
  .u-pc-jc-sa {
    justify-content: space-around;
  }
}

.u-fd-c {
  flex-direction: column;
}

.u-fd-cr {
  flex-direction: column-reverse;
}

.u-fd-r {
  flex-direction: row;
}

.u-fd-rr {
  flex-direction: row-reverse;
}

@media (min-width: 48.0625em) {
  .u-pc-fd-c {
    flex-direction: column;
  }
  .u-pc-fd-cr {
    flex-direction: column-reverse;
  }
  .u-pc-fd-r {
    flex-direction: row;
  }
  .u-pc-fd-rr {
    flex-direction: row-reverse;
  }
}

.u-fw-w {
  flex-wrap: wrap;
}

.u-fw-nw {
  flex-wrap: nowrap;
}

@media (min-width: 48.0625em) {
  .u-pc-fw-w {
    flex-wrap: wrap;
  }
  .u-pc-fw-nw {
    flex-wrap: nowrap;
  }
}

.u-color-text {
  color: #262626;
}

.u-color-link {
  color: #226FFF;
}

.u-color-main {
  color: #e3007a;
}

.u-color-sub {
  color: #ea68ae;
}

.u-color-success {
  color: #71b78d;
}

.u-color-white {
  color: #fff;
}

.u-color-grey {
  color: #e4e4e4;
}

.u-color-red {
  color: red;
}

.u-color-blue {
  color: #2b5a75;
}

.u-bg-text {
  background-color: #262626;
}

.u-bg-link {
  background-color: #226FFF;
}

.u-bg-main {
  background-color: #e3007a;
}

.u-bg-sub {
  background-color: #ea68ae;
}

.u-bg-success {
  background-color: #71b78d;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-grey {
  background-color: #e4e4e4;
}

.u-bg-red {
  background-color: red;
}

.u-bg-blue {
  background-color: #2b5a75;
}

.u-fs-i {
  font-size: inherit !important;
}

.u-fs-30 {
  font-size: 30% !important;
}

.u-fs-40 {
  font-size: 40% !important;
}

.u-fs-50 {
  font-size: 50% !important;
}

.u-fs-60 {
  font-size: 60% !important;
}

.u-fs-70 {
  font-size: 70% !important;
}

.u-fs-80 {
  font-size: 80% !important;
}

.u-fs-90 {
  font-size: 90% !important;
}

.u-fs-100 {
  font-size: 100% !important;
}

.u-fs-110 {
  font-size: 110% !important;
}

.u-fs-120 {
  font-size: 120% !important;
}

.u-fs-130 {
  font-size: 130% !important;
}

.u-fs-140 {
  font-size: 140% !important;
}

.u-fs-150 {
  font-size: 150% !important;
}

.u-fs-160 {
  font-size: 160% !important;
}

.u-fs-170 {
  font-size: 170% !important;
}

.u-fs-180 {
  font-size: 180% !important;
}

.u-fs-200 {
  font-size: 200% !important;
}

.u-fs-250 {
  font-size: 250% !important;
}

.u-fs-300 {
  font-size: 300% !important;
}

.u-fs-400 {
  font-size: 400% !important;
}

@media (min-width: 48.0625em) {
  .u-pc-fs-i {
    font-size: inherit !important;
  }
  .u-pc-fs-30 {
    font-size: 30% !important;
  }
  .u-pc-fs-40 {
    font-size: 40% !important;
  }
  .u-pc-fs-50 {
    font-size: 50% !important;
  }
  .u-pc-fs-60 {
    font-size: 60% !important;
  }
  .u-pc-fs-70 {
    font-size: 70% !important;
  }
  .u-pc-fs-80 {
    font-size: 80% !important;
  }
  .u-pc-fs-90 {
    font-size: 90% !important;
  }
  .u-pc-fs-100 {
    font-size: 100% !important;
  }
  .u-pc-fs-110 {
    font-size: 110% !important;
  }
  .u-pc-fs-120 {
    font-size: 120% !important;
  }
  .u-pc-fs-130 {
    font-size: 130% !important;
  }
  .u-pc-fs-140 {
    font-size: 140% !important;
  }
  .u-pc-fs-150 {
    font-size: 150% !important;
  }
  .u-pc-fs-160 {
    font-size: 160% !important;
  }
  .u-pc-fs-170 {
    font-size: 170% !important;
  }
  .u-pc-fs-180 {
    font-size: 180% !important;
  }
  .u-pc-fs-200 {
    font-size: 200% !important;
  }
  .u-pc-fs-250 {
    font-size: 250% !important;
  }
  .u-pc-fs-300 {
    font-size: 300% !important;
  }
  .u-pc-fs-400 {
    font-size: 400% !important;
  }
}

.u-weight-s {
  font-weight: normal;
}

.u-weight-m {
  font-weight: 500;
}

.u-weight-l {
  font-weight: bold;
}

.u-weight-base {
  font-weight: normal;
}

.u-style-i {
  font-style: italic;
}

.u-style-n {
  font-style: normal;
}

.u-lh-50 {
  line-height: 0.5 !important;
}

.u-lh-60 {
  line-height: 0.6 !important;
}

.u-lh-70 {
  line-height: 0.7 !important;
}

.u-lh-80 {
  line-height: 0.8 !important;
}

.u-lh-90 {
  line-height: 0.9 !important;
}

.u-lh-100 {
  line-height: 1 !important;
}

.u-lh-110 {
  line-height: 1.1 !important;
}

.u-lh-120 {
  line-height: 1.2 !important;
}

.u-lh-130 {
  line-height: 1.3 !important;
}

.u-lh-140 {
  line-height: 1.4 !important;
}

.u-lh-150 {
  line-height: 1.5 !important;
}

.u-lh-160 {
  line-height: 1.6 !important;
}

.u-lh-170 {
  line-height: 1.7 !important;
}

.u-lh-180 {
  line-height: 1.8 !important;
}

.u-lh-190 {
  line-height: 1.9 !important;
}

.u-lh-200 {
  line-height: 2 !important;
}

@media (min-width: 48.0625em) {
  .u-pc-lh-50 {
    line-height: 0.5 !important;
  }
  .u-pc-lh-60 {
    line-height: 0.6 !important;
  }
  .u-pc-lh-70 {
    line-height: 0.7 !important;
  }
  .u-pc-lh-80 {
    line-height: 0.8 !important;
  }
  .u-pc-lh-90 {
    line-height: 0.9 !important;
  }
  .u-pc-lh-100 {
    line-height: 1 !important;
  }
  .u-pc-lh-110 {
    line-height: 1.1 !important;
  }
  .u-pc-lh-120 {
    line-height: 1.2 !important;
  }
  .u-pc-lh-130 {
    line-height: 1.3 !important;
  }
  .u-pc-lh-140 {
    line-height: 1.4 !important;
  }
  .u-pc-lh-150 {
    line-height: 1.5 !important;
  }
  .u-pc-lh-160 {
    line-height: 1.6 !important;
  }
  .u-pc-lh-170 {
    line-height: 1.7 !important;
  }
  .u-pc-lh-180 {
    line-height: 1.8 !important;
  }
  .u-pc-lh-190 {
    line-height: 1.9 !important;
  }
  .u-pc-lh-200 {
    line-height: 2 !important;
  }
}

.u-letter-xs {
  letter-spacing: 0.025em;
}

.u-letter-s {
  letter-spacing: 0.05em;
}

.u-letter-m {
  letter-spacing: 0.075em;
}

.u-letter-l {
  letter-spacing: 0.125em;
}

.u-letter-xl {
  letter-spacing: 0.2em;
}

.u-letter-base {
  letter-spacing: 0;
}

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

.u-ta-l {
  text-align: left;
}

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

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

@media (min-width: 48.0625em) {
  .u-pc-ta-r {
    text-align: right;
  }
  .u-pc-ta-l {
    text-align: left;
  }
  .u-pc-ta-c {
    text-align: center;
  }
  .u-pc-ta-j {
    text-align: justify;
  }
}

.u-vertical-tb {
  vertical-align: text-bottom;
}

.u-vertical-m {
  vertical-align: middle;
}

.u-vertical-s {
  vertical-align: super;
}

.u-td-lt {
  text-decoration: line-through;
}

.u-td-ul {
  text-decoration: underline;
}

.u-family-sans-serif {
  font-family: Noto Sans Noto Sans CJK JP Noto Sans CJK JP Subset -apple-system BlinkMacSystemFont Arial YuGothic Yu Gothic Hiragino Kaku Gothic ProN ヒラギノ角ゴ ProN W3 Osaka Meiryo メイリオ sans-serif;
}

.u-family-serif {
  font-family: 游明朝体 YuMincho 游明朝 Yu Mincho ヒラギノ明朝 ProN W3 Hiragino Mincho ProN W3 HiraMinProN-W3 ヒラギノ明朝 ProN Hiragino Mincho ProN ヒラギノ明朝 Pro Hiragino Mincho Pro HGS明朝E ＭＳ Ｐ明朝 MS PMincho serif;
}

.u-family-base {
  font-family: Noto Sans Noto Sans CJK JP Noto Sans CJK JP Subset -apple-system BlinkMacSystemFont Arial YuGothic Yu Gothic Hiragino Kaku Gothic ProN ヒラギノ角ゴ ProN W3 Osaka Meiryo メイリオ sans-serif;
}

.u-white-nw {
  white-space: nowrap;
}

.u-w-10 {
  width: 10% !important;
}

.u-w-20 {
  width: 20% !important;
}

.u-w-30 {
  width: 30% !important;
}

.u-w-40 {
  width: 40% !important;
}

.u-w-50 {
  width: 50% !important;
}

.u-w-60 {
  width: 60% !important;
}

.u-w-70 {
  width: 70% !important;
}

.u-w-80 {
  width: 80% !important;
}

.u-w-90 {
  width: 90% !important;
}

.u-w-100 {
  width: 100% !important;
}

.u-w-auto {
  width: auto !important;
}

@media (min-width: 48.0625em) {
  .u-pc-w-10 {
    width: 10% !important;
  }
  .u-pc-w-20 {
    width: 20% !important;
  }
  .u-pc-w-30 {
    width: 30% !important;
  }
  .u-pc-w-40 {
    width: 40% !important;
  }
  .u-pc-w-50 {
    width: 50% !important;
  }
  .u-pc-w-60 {
    width: 60% !important;
  }
  .u-pc-w-70 {
    width: 70% !important;
  }
  .u-pc-w-80 {
    width: 80% !important;
  }
  .u-pc-w-90 {
    width: 90% !important;
  }
  .u-pc-w-100 {
    width: 100% !important;
  }
  .u-pc-w-auto {
    width: auto !important;
  }
}

.u-mw-10 {
  max-width: 10% !important;
}

.u-mw-20 {
  max-width: 20% !important;
}

.u-mw-30 {
  max-width: 30% !important;
}

.u-mw-40 {
  max-width: 40% !important;
}

.u-mw-50 {
  max-width: 50% !important;
}

.u-mw-60 {
  max-width: 60% !important;
}

.u-mw-70 {
  max-width: 70% !important;
}

.u-mw-80 {
  max-width: 80% !important;
}

.u-mw-90 {
  max-width: 90% !important;
}

.u-mw-100 {
  max-width: 100% !important;
}

.u-mw-none {
  max-width: none !important;
}

@media (min-width: 48.0625em) {
  .u-pc-mw-10 {
    max-width: 10% !important;
  }
  .u-pc-mw-20 {
    max-width: 20% !important;
  }
  .u-pc-mw-30 {
    max-width: 30% !important;
  }
  .u-pc-mw-40 {
    max-width: 40% !important;
  }
  .u-pc-mw-50 {
    max-width: 50% !important;
  }
  .u-pc-mw-60 {
    max-width: 60% !important;
  }
  .u-pc-mw-70 {
    max-width: 70% !important;
  }
  .u-pc-mw-80 {
    max-width: 80% !important;
  }
  .u-pc-mw-90 {
    max-width: 90% !important;
  }
  .u-pc-mw-100 {
    max-width: 100% !important;
  }
  .u-pc-mw-none {
    max-width: none !important;
  }
}

.u-h-10 {
  height: 10% !important;
}

.u-h-20 {
  height: 20% !important;
}

.u-h-30 {
  height: 30% !important;
}

.u-h-40 {
  height: 40% !important;
}

.u-h-50 {
  height: 50% !important;
}

.u-h-60 {
  height: 60% !important;
}

.u-h-70 {
  height: 70% !important;
}

.u-h-80 {
  height: 80% !important;
}

.u-h-90 {
  height: 90% !important;
}

.u-h-100 {
  height: 100% !important;
}

.u-h-auto {
  height: auto !important;
}

@media (min-width: 48.0625em) {
  .u-pc-h-10 {
    height: 10% !important;
  }
  .u-pc-h-20 {
    height: 20% !important;
  }
  .u-pc-h-30 {
    height: 30% !important;
  }
  .u-pc-h-40 {
    height: 40% !important;
  }
  .u-pc-h-50 {
    height: 50% !important;
  }
  .u-pc-h-60 {
    height: 60% !important;
  }
  .u-pc-h-70 {
    height: 70% !important;
  }
  .u-pc-h-80 {
    height: 80% !important;
  }
  .u-pc-h-90 {
    height: 90% !important;
  }
  .u-pc-h-100 {
    height: 100% !important;
  }
  .u-pc-h-auto {
    height: auto !important;
  }
}

.u-nm-xxs {
  margin: -0.5rem !important;
}

.u-nm-xs {
  margin: -1rem !important;
}

.u-nm-s {
  margin: -1.5rem !important;
}

.u-nm-m {
  margin: -2.5rem !important;
}

.u-nm-l {
  margin: -4rem !important;
}

.u-nm-xl {
  margin: -6.5rem !important;
}

.u-nm-xxl {
  margin: -10.5rem !important;
}

@media (min-width: 48.0625em) {
  .u-pc-nm-xxs {
    margin: -0.5rem !important;
  }
  .u-pc-nm-xs {
    margin: -1rem !important;
  }
  .u-pc-nm-s {
    margin: -1.5rem !important;
  }
  .u-pc-nm-m {
    margin: -2.5rem !important;
  }
  .u-pc-nm-l {
    margin: -4rem !important;
  }
  .u-pc-nm-xl {
    margin: -6.5rem !important;
  }
  .u-pc-nm-xxl {
    margin: -10.5rem !important;
  }
}

.u-nmt-xxs, .u-nmy-xxs {
  margin-top: -0.5rem !important;
}

.u-nmt-xs, .u-nmy-xs {
  margin-top: -1rem !important;
}

.u-nmt-s, .u-nmy-s {
  margin-top: -1.5rem !important;
}

.u-nmt-m, .u-nmy-m {
  margin-top: -2.5rem !important;
}

.u-nmt-l, .u-nmy-l {
  margin-top: -4rem !important;
}

.u-nmt-xl, .u-nmy-xl {
  margin-top: -6.5rem !important;
}

.u-nmt-xxl, .u-nmy-xxl {
  margin-top: -10.5rem !important;
}

@media (min-width: 48.0625em) {
  .u-pc-nmt-xxs, .u-pc-nmy-xxs {
    margin-top: -0.5rem !important;
  }
  .u-pc-nmt-xs, .u-pc-nmy-xs {
    margin-top: -1rem !important;
  }
  .u-pc-nmt-s, .u-pc-nmy-s {
    margin-top: -1.5rem !important;
  }
  .u-pc-nmt-m, .u-pc-nmy-m {
    margin-top: -2.5rem !important;
  }
  .u-pc-nmt-l, .u-pc-nmy-l {
    margin-top: -4rem !important;
  }
  .u-pc-nmt-xl, .u-pc-nmy-xl {
    margin-top: -6.5rem !important;
  }
  .u-pc-nmt-xxl, .u-pc-nmy-xxl {
    margin-top: -10.5rem !important;
  }
}

.u-nmb-xxs, .u-nmy-xxs {
  margin-bottom: -0.5rem !important;
}

.u-nmb-xs, .u-nmy-xs {
  margin-bottom: -1rem !important;
}

.u-nmb-s, .u-nmy-s {
  margin-bottom: -1.5rem !important;
}

.u-nmb-m, .u-nmy-m {
  margin-bottom: -2.5rem !important;
}

.u-nmb-l, .u-nmy-l {
  margin-bottom: -4rem !important;
}

.u-nmb-xl, .u-nmy-xl {
  margin-bottom: -6.5rem !important;
}

.u-nmb-xxl, .u-nmy-xxl {
  margin-bottom: -10.5rem !important;
}

@media (min-width: 48.0625em) {
  .u-pc-nmb-xxs, .u-pc-nmy-xxs {
    margin-bottom: -0.5rem !important;
  }
  .u-pc-nmb-xs, .u-pc-nmy-xs {
    margin-bottom: -1rem !important;
  }
  .u-pc-nmb-s, .u-pc-nmy-s {
    margin-bottom: -1.5rem !important;
  }
  .u-pc-nmb-m, .u-pc-nmy-m {
    margin-bottom: -2.5rem !important;
  }
  .u-pc-nmb-l, .u-pc-nmy-l {
    margin-bottom: -4rem !important;
  }
  .u-pc-nmb-xl, .u-pc-nmy-xl {
    margin-bottom: -6.5rem !important;
  }
  .u-pc-nmb-xxl, .u-pc-nmy-xxl {
    margin-bottom: -10.5rem !important;
  }
}

.u-nmr-xxs, .u-nmx-xxs {
  margin-right: -0.5rem !important;
}

.u-nmr-xs, .u-nmx-xs {
  margin-right: -1rem !important;
}

.u-nmr-s, .u-nmx-s {
  margin-right: -1.5rem !important;
}

.u-nmr-m, .u-nmx-m {
  margin-right: -2.5rem !important;
}

.u-nmr-l, .u-nmx-l {
  margin-right: -4rem !important;
}

.u-nmr-xl, .u-nmx-xl {
  margin-right: -6.5rem !important;
}

.u-nmr-xxl, .u-nmx-xxl {
  margin-right: -10.5rem !important;
}

@media (min-width: 48.0625em) {
  .u-pc-nmr-xxs, .u-pc-nmx-xxs {
    margin-right: -0.5rem !important;
  }
  .u-pc-nmr-xs, .u-pc-nmx-xs {
    margin-right: -1rem !important;
  }
  .u-pc-nmr-s, .u-pc-nmx-s {
    margin-right: -1.5rem !important;
  }
  .u-pc-nmr-m, .u-pc-nmx-m {
    margin-right: -2.5rem !important;
  }
  .u-pc-nmr-l, .u-pc-nmx-l {
    margin-right: -4rem !important;
  }
  .u-pc-nmr-xl, .u-pc-nmx-xl {
    margin-right: -6.5rem !important;
  }
  .u-pc-nmr-xxl, .u-pc-nmx-xxl {
    margin-right: -10.5rem !important;
  }
}

.u-nml-xxs, .u-nmx-xxs {
  margin-left: -0.5rem !important;
}

.u-nml-xs, .u-nmx-xs {
  margin-left: -1rem !important;
}

.u-nml-s, .u-nmx-s {
  margin-left: -1.5rem !important;
}

.u-nml-m, .u-nmx-m {
  margin-left: -2.5rem !important;
}

.u-nml-l, .u-nmx-l {
  margin-left: -4rem !important;
}

.u-nml-xl, .u-nmx-xl {
  margin-left: -6.5rem !important;
}

.u-nml-xxl, .u-nmx-xxl {
  margin-left: -10.5rem !important;
}

@media (min-width: 48.0625em) {
  .u-pc-nml-xxs, .u-pc-nmx-xxs {
    margin-left: -0.5rem !important;
  }
  .u-pc-nml-xs, .u-pc-nmx-xs {
    margin-left: -1rem !important;
  }
  .u-pc-nml-s, .u-pc-nmx-s {
    margin-left: -1.5rem !important;
  }
  .u-pc-nml-m, .u-pc-nmx-m {
    margin-left: -2.5rem !important;
  }
  .u-pc-nml-l, .u-pc-nmx-l {
    margin-left: -4rem !important;
  }
  .u-pc-nml-xl, .u-pc-nmx-xl {
    margin-left: -6.5rem !important;
  }
  .u-pc-nml-xxl, .u-pc-nmx-xxl {
    margin-left: -10.5rem !important;
  }
}

.u-m-xxs {
  margin: 0.5rem !important;
}

.u-m-xs {
  margin: 1rem !important;
}

.u-m-s {
  margin: 1.5rem !important;
}

.u-m-m {
  margin: 2.5rem !important;
}

.u-m-l {
  margin: 4rem !important;
}

.u-m-xl {
  margin: 6.5rem !important;
}

.u-m-xxl {
  margin: 10.5rem !important;
}

.u-m-0 {
  margin: 0 !important;
}

.u-m-auto {
  margin: auto !important;
}

@media (min-width: 48.0625em) {
  .u-pc-m-xxs {
    margin: 0.5rem !important;
  }
  .u-pc-m-xs {
    margin: 1rem !important;
  }
  .u-pc-m-s {
    margin: 1.5rem !important;
  }
  .u-pc-m-m {
    margin: 2.5rem !important;
  }
  .u-pc-m-l {
    margin: 4rem !important;
  }
  .u-pc-m-xl {
    margin: 6.5rem !important;
  }
  .u-pc-m-xxl {
    margin: 10.5rem !important;
  }
  .u-pc-m-0 {
    margin: 0 !important;
  }
  .u-pc-m-auto {
    margin: auto !important;
  }
}

.u-mt-xxs, .u-my-xxs {
  margin-top: 0.5rem !important;
}

.u-mt-xs, .u-my-xs {
  margin-top: 1rem !important;
}

.u-mt-s, .u-my-s {
  margin-top: 1.5rem !important;
}

.u-mt-m, .u-my-m {
  margin-top: 2.5rem !important;
}

.u-mt-l, .u-my-l {
  margin-top: 4rem !important;
}

.u-mt-xl, .u-my-xl {
  margin-top: 6.5rem !important;
}

.u-mt-xxl, .u-my-xxl {
  margin-top: 10.5rem !important;
}

.u-mt-0, .u-my-0 {
  margin-top: 0 !important;
}

.u-mt-auto, .u-my-auto {
  margin-top: auto !important;
}

@media (min-width: 48.0625em) {
  .u-pc-mt-xxs, .u-pc-my-xxs {
    margin-top: 0.5rem !important;
  }
  .u-pc-mt-xs, .u-pc-my-xs {
    margin-top: 1rem !important;
  }
  .u-pc-mt-s, .u-pc-my-s {
    margin-top: 1.5rem !important;
  }
  .u-pc-mt-m, .u-pc-my-m {
    margin-top: 2.5rem !important;
  }
  .u-pc-mt-l, .u-pc-my-l {
    margin-top: 4rem !important;
  }
  .u-pc-mt-xl, .u-pc-my-xl {
    margin-top: 6.5rem !important;
  }
  .u-pc-mt-xxl, .u-pc-my-xxl {
    margin-top: 10.5rem !important;
  }
  .u-pc-mt-0, .u-pc-my-0 {
    margin-top: 0 !important;
  }
  .u-pc-mt-auto, .u-pc-my-auto {
    margin-top: auto !important;
  }
}

.u-mb-xxs, .u-my-xxs {
  margin-bottom: 0.5rem !important;
}

.u-mb-xs, .u-my-xs {
  margin-bottom: 1rem !important;
}

.u-mb-s, .u-my-s {
  margin-bottom: 1.5rem !important;
}

.u-mb-m, .u-my-m {
  margin-bottom: 2.5rem !important;
}

.u-mb-l, .u-my-l {
  margin-bottom: 4rem !important;
}

.u-mb-xl, .u-my-xl {
  margin-bottom: 6.5rem !important;
}

.u-mb-xxl, .u-my-xxl {
  margin-bottom: 10.5rem !important;
}

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

.u-mb-auto, .u-my-auto {
  margin-bottom: auto !important;
}

@media (min-width: 48.0625em) {
  .u-pc-mb-xxs, .u-pc-my-xxs {
    margin-bottom: 0.5rem !important;
  }
  .u-pc-mb-xs, .u-pc-my-xs {
    margin-bottom: 1rem !important;
  }
  .u-pc-mb-s, .u-pc-my-s {
    margin-bottom: 1.5rem !important;
  }
  .u-pc-mb-m, .u-pc-my-m {
    margin-bottom: 2.5rem !important;
  }
  .u-pc-mb-l, .u-pc-my-l {
    margin-bottom: 4rem !important;
  }
  .u-pc-mb-xl, .u-pc-my-xl {
    margin-bottom: 6.5rem !important;
  }
  .u-pc-mb-xxl, .u-pc-my-xxl {
    margin-bottom: 10.5rem !important;
  }
  .u-pc-mb-0, .u-pc-my-0 {
    margin-bottom: 0 !important;
  }
  .u-pc-mb-auto, .u-pc-my-auto {
    margin-bottom: auto !important;
  }
}

.u-mr-xxs, .u-mx-xxs {
  margin-right: 0.5rem !important;
}

.u-mr-xs, .u-mx-xs {
  margin-right: 1rem !important;
}

.u-mr-s, .u-mx-s {
  margin-right: 1.5rem !important;
}

.u-mr-m, .u-mx-m {
  margin-right: 2.5rem !important;
}

.u-mr-l, .u-mx-l {
  margin-right: 4rem !important;
}

.u-mr-xl, .u-mx-xl {
  margin-right: 6.5rem !important;
}

.u-mr-xxl, .u-mx-xxl {
  margin-right: 10.5rem !important;
}

.u-mr-0, .u-mx-0 {
  margin-right: 0 !important;
}

.u-mr-auto, .u-mx-auto {
  margin-right: auto !important;
}

.u-mr-1e, .u-mx-1e {
  margin-right: 1em !important;
}

@media (min-width: 48.0625em) {
  .u-pc-mr-xxs, .u-pc-mx-xxs {
    margin-right: 0.5rem !important;
  }
  .u-pc-mr-xs, .u-pc-mx-xs {
    margin-right: 1rem !important;
  }
  .u-pc-mr-s, .u-pc-mx-s {
    margin-right: 1.5rem !important;
  }
  .u-pc-mr-m, .u-pc-mx-m {
    margin-right: 2.5rem !important;
  }
  .u-pc-mr-l, .u-pc-mx-l {
    margin-right: 4rem !important;
  }
  .u-pc-mr-xl, .u-pc-mx-xl {
    margin-right: 6.5rem !important;
  }
  .u-pc-mr-xxl, .u-pc-mx-xxl {
    margin-right: 10.5rem !important;
  }
  .u-pc-mr-0, .u-pc-mx-0 {
    margin-right: 0 !important;
  }
  .u-pc-mr-auto, .u-pc-mx-auto {
    margin-right: auto !important;
  }
  .u-pc-mr-1e, .u-pc-mx-1e {
    margin-right: 1em !important;
  }
}

.u-ml-xxs, .u-mx-xxs {
  margin-left: 0.5rem !important;
}

.u-ml-xs, .u-mx-xs {
  margin-left: 1rem !important;
}

.u-ml-s, .u-mx-s {
  margin-left: 1.5rem !important;
}

.u-ml-m, .u-mx-m {
  margin-left: 2.5rem !important;
}

.u-ml-l, .u-mx-l {
  margin-left: 4rem !important;
}

.u-ml-xl, .u-mx-xl {
  margin-left: 6.5rem !important;
}

.u-ml-xxl, .u-mx-xxl {
  margin-left: 10.5rem !important;
}

.u-ml-0, .u-mx-0 {
  margin-left: 0 !important;
}

.u-ml-auto, .u-mx-auto {
  margin-left: auto !important;
}

.u-ml-1e, .u-mx-1e {
  margin-left: 1em !important;
}

@media (min-width: 48.0625em) {
  .u-pc-ml-xxs, .u-pc-mx-xxs {
    margin-left: 0.5rem !important;
  }
  .u-pc-ml-xs, .u-pc-mx-xs {
    margin-left: 1rem !important;
  }
  .u-pc-ml-s, .u-pc-mx-s {
    margin-left: 1.5rem !important;
  }
  .u-pc-ml-m, .u-pc-mx-m {
    margin-left: 2.5rem !important;
  }
  .u-pc-ml-l, .u-pc-mx-l {
    margin-left: 4rem !important;
  }
  .u-pc-ml-xl, .u-pc-mx-xl {
    margin-left: 6.5rem !important;
  }
  .u-pc-ml-xxl, .u-pc-mx-xxl {
    margin-left: 10.5rem !important;
  }
  .u-pc-ml-0, .u-pc-mx-0 {
    margin-left: 0 !important;
  }
  .u-pc-ml-auto, .u-pc-mx-auto {
    margin-left: auto !important;
  }
  .u-pc-ml-1e, .u-pc-mx-1e {
    margin-left: 1em !important;
  }
}

.u-mrc-xxs > :not:last-child {
  margin-right: 0.5rem !important;
}

.u-mrc-xs > :not:last-child {
  margin-right: 1rem !important;
}

.u-mrc-s > :not:last-child {
  margin-right: 1.5rem !important;
}

.u-mrc-m > :not:last-child {
  margin-right: 2.5rem !important;
}

.u-mrc-l > :not:last-child {
  margin-right: 4rem !important;
}

.u-mrc-xl > :not:last-child {
  margin-right: 6.5rem !important;
}

.u-mrc-xxl > :not:last-child {
  margin-right: 10.5rem !important;
}

@media (min-width: 48.0625em) {
  .u-pc-mrc-xxs > :not:last-child {
    margin-right: 0.5rem !important;
  }
  .u-pc-mrc-xs > :not:last-child {
    margin-right: 1rem !important;
  }
  .u-pc-mrc-s > :not:last-child {
    margin-right: 1.5rem !important;
  }
  .u-pc-mrc-m > :not:last-child {
    margin-right: 2.5rem !important;
  }
  .u-pc-mrc-l > :not:last-child {
    margin-right: 4rem !important;
  }
  .u-pc-mrc-xl > :not:last-child {
    margin-right: 6.5rem !important;
  }
  .u-pc-mrc-xxl > :not:last-child {
    margin-right: 10.5rem !important;
  }
}

.u-mbc-xxs > :not:last-child {
  margin-bottom: 0.5rem !important;
}

.u-mbc-xs > :not:last-child {
  margin-bottom: 1rem !important;
}

.u-mbc-s > :not:last-child {
  margin-bottom: 1.5rem !important;
}

.u-mbc-m > :not:last-child {
  margin-bottom: 2.5rem !important;
}

.u-mbc-l > :not:last-child {
  margin-bottom: 4rem !important;
}

.u-mbc-xl > :not:last-child {
  margin-bottom: 6.5rem !important;
}

.u-mbc-xxl > :not:last-child {
  margin-bottom: 10.5rem !important;
}

@media (min-width: 48.0625em) {
  .u-pc-mbc-xxs > :not:last-child {
    margin-bottom: 0.5rem !important;
  }
  .u-pc-mbc-xs > :not:last-child {
    margin-bottom: 1rem !important;
  }
  .u-pc-mbc-s > :not:last-child {
    margin-bottom: 1.5rem !important;
  }
  .u-pc-mbc-m > :not:last-child {
    margin-bottom: 2.5rem !important;
  }
  .u-pc-mbc-l > :not:last-child {
    margin-bottom: 4rem !important;
  }
  .u-pc-mbc-xl > :not:last-child {
    margin-bottom: 6.5rem !important;
  }
  .u-pc-mbc-xxl > :not:last-child {
    margin-bottom: 10.5rem !important;
  }
}

.u-p-xxs {
  padding: 0.5rem !important;
}

.u-p-xs {
  padding: 1rem !important;
}

.u-p-s {
  padding: 1.5rem !important;
}

.u-p-m {
  padding: 2.5rem !important;
}

.u-p-l {
  padding: 4rem !important;
}

.u-p-xl {
  padding: 6.5rem !important;
}

.u-p-xxl {
  padding: 10.5rem !important;
}

.u-p-0 {
  padding: 0 !important;
}

@media (min-width: 48.0625em) {
  .u-pc-p-xxs {
    padding: 0.5rem !important;
  }
  .u-pc-p-xs {
    padding: 1rem !important;
  }
  .u-pc-p-s {
    padding: 1.5rem !important;
  }
  .u-pc-p-m {
    padding: 2.5rem !important;
  }
  .u-pc-p-l {
    padding: 4rem !important;
  }
  .u-pc-p-xl {
    padding: 6.5rem !important;
  }
  .u-pc-p-xxl {
    padding: 10.5rem !important;
  }
  .u-pc-p-0 {
    padding: 0 !important;
  }
}

.u-pt-xxs, .u-py-xxs {
  padding-top: 0.5rem !important;
}

.u-pt-xs, .u-py-xs {
  padding-top: 1rem !important;
}

.u-pt-s, .u-py-s {
  padding-top: 1.5rem !important;
}

.u-pt-m, .u-py-m {
  padding-top: 2.5rem !important;
}

.u-pt-l, .u-py-l {
  padding-top: 4rem !important;
}

.u-pt-xl, .u-py-xl {
  padding-top: 6.5rem !important;
}

.u-pt-xxl, .u-py-xxl {
  padding-top: 10.5rem !important;
}

.u-pt-0, .u-py-0 {
  padding-top: 0 !important;
}

@media (min-width: 48.0625em) {
  .u-pc-pt-xxs, .u-pc-py-xxs {
    padding-top: 0.5rem !important;
  }
  .u-pc-pt-xs, .u-pc-py-xs {
    padding-top: 1rem !important;
  }
  .u-pc-pt-s, .u-pc-py-s {
    padding-top: 1.5rem !important;
  }
  .u-pc-pt-m, .u-pc-py-m {
    padding-top: 2.5rem !important;
  }
  .u-pc-pt-l, .u-pc-py-l {
    padding-top: 4rem !important;
  }
  .u-pc-pt-xl, .u-pc-py-xl {
    padding-top: 6.5rem !important;
  }
  .u-pc-pt-xxl, .u-pc-py-xxl {
    padding-top: 10.5rem !important;
  }
  .u-pc-pt-0, .u-pc-py-0 {
    padding-top: 0 !important;
  }
}

.u-pb-xxs, .u-py-xxs {
  padding-bottom: 0.5rem !important;
}

.u-pb-xs, .u-py-xs {
  padding-bottom: 1rem !important;
}

.u-pb-s, .u-py-s {
  padding-bottom: 1.5rem !important;
}

.u-pb-m, .u-py-m {
  padding-bottom: 2.5rem !important;
}

.u-pb-l, .u-py-l {
  padding-bottom: 4rem !important;
}

.u-pb-xl, .u-py-xl {
  padding-bottom: 6.5rem !important;
}

.u-pb-xxl, .u-py-xxl {
  padding-bottom: 10.5rem !important;
}

.u-pb-0, .u-py-0 {
  padding-bottom: 0 !important;
}

@media (min-width: 48.0625em) {
  .u-pc-pb-xxs, .u-pc-py-xxs {
    padding-bottom: 0.5rem !important;
  }
  .u-pc-pb-xs, .u-pc-py-xs {
    padding-bottom: 1rem !important;
  }
  .u-pc-pb-s, .u-pc-py-s {
    padding-bottom: 1.5rem !important;
  }
  .u-pc-pb-m, .u-pc-py-m {
    padding-bottom: 2.5rem !important;
  }
  .u-pc-pb-l, .u-pc-py-l {
    padding-bottom: 4rem !important;
  }
  .u-pc-pb-xl, .u-pc-py-xl {
    padding-bottom: 6.5rem !important;
  }
  .u-pc-pb-xxl, .u-pc-py-xxl {
    padding-bottom: 10.5rem !important;
  }
  .u-pc-pb-0, .u-pc-py-0 {
    padding-bottom: 0 !important;
  }
}

.u-pr-xxs, .u-px-xxs {
  padding-right: 0.5rem !important;
}

.u-pr-xs, .u-px-xs {
  padding-right: 1rem !important;
}

.u-pr-s, .u-px-s {
  padding-right: 1.5rem !important;
}

.u-pr-m, .u-px-m {
  padding-right: 2.5rem !important;
}

.u-pr-l, .u-px-l {
  padding-right: 4rem !important;
}

.u-pr-xl, .u-px-xl {
  padding-right: 6.5rem !important;
}

.u-pr-xxl, .u-px-xxl {
  padding-right: 10.5rem !important;
}

.u-pr-0, .u-px-0 {
  padding-right: 0 !important;
}

@media (min-width: 48.0625em) {
  .u-pc-pr-xxs, .u-pc-px-xxs {
    padding-right: 0.5rem !important;
  }
  .u-pc-pr-xs, .u-pc-px-xs {
    padding-right: 1rem !important;
  }
  .u-pc-pr-s, .u-pc-px-s {
    padding-right: 1.5rem !important;
  }
  .u-pc-pr-m, .u-pc-px-m {
    padding-right: 2.5rem !important;
  }
  .u-pc-pr-l, .u-pc-px-l {
    padding-right: 4rem !important;
  }
  .u-pc-pr-xl, .u-pc-px-xl {
    padding-right: 6.5rem !important;
  }
  .u-pc-pr-xxl, .u-pc-px-xxl {
    padding-right: 10.5rem !important;
  }
  .u-pc-pr-0, .u-pc-px-0 {
    padding-right: 0 !important;
  }
}

.u-pl-xxs, .u-px-xxs {
  padding-left: 0.5rem !important;
}

.u-pl-xs, .u-px-xs {
  padding-left: 1rem !important;
}

.u-pl-s, .u-px-s {
  padding-left: 1.5rem !important;
}

.u-pl-m, .u-px-m {
  padding-left: 2.5rem !important;
}

.u-pl-l, .u-px-l {
  padding-left: 4rem !important;
}

.u-pl-xl, .u-px-xl {
  padding-left: 6.5rem !important;
}

.u-pl-xxl, .u-px-xxl {
  padding-left: 10.5rem !important;
}

.u-pl-0, .u-px-0 {
  padding-left: 0 !important;
}

@media (min-width: 48.0625em) {
  .u-pc-pl-xxs, .u-pc-px-xxs {
    padding-left: 0.5rem !important;
  }
  .u-pc-pl-xs, .u-pc-px-xs {
    padding-left: 1rem !important;
  }
  .u-pc-pl-s, .u-pc-px-s {
    padding-left: 1.5rem !important;
  }
  .u-pc-pl-m, .u-pc-px-m {
    padding-left: 2.5rem !important;
  }
  .u-pc-pl-l, .u-pc-px-l {
    padding-left: 4rem !important;
  }
  .u-pc-pl-xl, .u-pc-px-xl {
    padding-left: 6.5rem !important;
  }
  .u-pc-pl-xxl, .u-pc-px-xxl {
    padding-left: 10.5rem !important;
  }
  .u-pc-pl-0, .u-pc-px-0 {
    padding-left: 0 !important;
  }
}

.u-radius-base {
  border-radius: 24px;
}

.u-float-r {
  float: right;
}

.u-float-l {
  float: left;
}

.u-float-n {
  float: none;
}

.u-link {
  color: #226FFF;
  text-decoration: underline;
}

.u-disable {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}

.u-bullet,
.u-bullets > * {
  padding-left: 1em;
  text-indent: -1em;
}

.u-hanging,
.u-hangings > * {
  display: table;
}

.u-hanging > *,
.u-hangings > * > * {
  display: table-cell;
  position: relative;
  right: -1px;
  white-space: nowrap;
}

.u-clearfix::after {
  display: block;
  clear: both;
  content: '';
}

.u-visuallyHidden {
  clip: rect(0, 0, 0, 0);
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
}

@media (min-width: 48.0625em) {
  .u-pc-visuallyHidden {
    clip: rect(0, 0, 0, 0);
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    white-space: nowrap;
  }
}

.u-ti-1 {
  text-indent: .05rem;
}

.u-ti-2 {
  text-indent: 1.5rem;
}

.modaal-container {
  width: auto;
  max-width: 1000px;
  background-color: transparent;
  box-shadow: none;
  color: inherit;
}

.modaal-content-container {
  padding: 0;
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 48.0625em) {
  .modaal-gallery-control:focus, .modaal-gallery-control:hover {
    outline: none;
    background: #fff;
  }
}

.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #fff;
}

@media (min-width: 48.0625em) {
  .modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
    background: #afb7bc;
  }
}

.modaal-video-wrap {
  margin: 0 auto;
}

@media (min-width: 48.0625em) {
  .modaal-video-wrap {
    display: table;
  }
}

@media (min-width: 48.0625em) {
  .modaal-video-container {
    display: table;
    width: 900px;
    max-width: none;
    height: 506.25px;
    max-height: none;
  }
}

.modaal-close {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M12%2011.293l10.293-10.293.707.707-10.293%2010.293%2010.293%2010.293-.707.707-10.293-10.293-10.293%2010.293-.707-.707%2010.293-10.293-10.293-10.293.707-.707%2010.293%2010.293z%22%2F%3E%3C%2Fsvg%3E") !important;
  background-repeat: no-repeat;
}

.modaal-close:hover {
  background-color: transparent;
}

.modaal-close::before, .modaal-close::after {
  content: none;
}

.slick-slider {
  padding: 0 3rem;
}

.slick-arrow,
.slick-dots button {
  z-index: 1;
  position: relative;
  outline: none;
  font-size: 0;
  touch-action: manipulation;
}

.slick-arrow::before,
.slick-dots button::before {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  content: '';
}

.slick-arrow {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0.4rem;
  color: #2b5a75;
}

.slick-arrow.slick-disabled {
  opacity: 0.5;
}

.slick-arrow::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  border-radius: 50%;
  background-color: #e6e6e6;
  content: '';
  opacity: 0;
  transition: 0.2s;
}

.slick-arrow:hover::after {
  transform: scale(1.5);
  opacity: 1;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-prev-icon,
.slick-next-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.slick-prev-icon {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%232b5a75%22%3E%3Cpath%20d%3D%22M22%2012l-20%2012%207.289-12-7.289-12z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.slick-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%232b5a75%22%3E%3Cpath%20d%3D%22M22%2012l-20%2012%207.289-12-7.289-12z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.slick-dots {
  margin: -0.5rem;
  text-align: center;
  pointer-events: none;
}

.slick-dots li {
  display: inline-block;
  margin: 0.5rem;
}

.slick-dots button {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #bcbcbc;
  color: #2b5a75;
  pointer-events: all;
}

.slick-active button {
  background-color: currentColor;
}

.ps__rail-y {
  width: 6px;
  opacity: 1;
}

.ps--active-y:hover .ps__rail-y {
  opacity: 1;
}

.ps__thumb-y {
  right: 0;
  width: 6px;
  border-radius: 0;
  background-color: currentColor !important;
}

.ps__thumb-y:hover {
  background-color: currentColor;
}
/*# sourceMappingURL=main.css.map */
