@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* ===============================================
 base
=============================================== */

:root {
  --txt-base-color: #000;
  --corp-color: #5e7775;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--txt-base-color);
  position: relative;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}
* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
::after,
::before {
  box-sizing: inherit;
}
a,
abbr,
address,
article,
aside,
audio,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
iframe,
img,
ins,
label,
legend,
li,
main,
mark,
nav,
ol,
p,
pre,
q,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
video {
  padding: 0;
  margin: 0;
  border: 0;
}
a {
  outline: 0;
  -webkit-touch-callout: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
:focus,
a:focus {
  outline: 0;
}
a,
a:visited {
  color: inherit;
}
article,
aside,
footer,
header,
main,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
  vertical-align: top;
  border-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::after,
blockquote::before,
q::after,
q::before {
  content: none;
}
[hidden] {
  display: none !important;
}
[disabled] {
  cursor: not-allowed;
}
:focus:not(:focus-visible) {
  outline: 0;
}
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="time"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
textarea {
  display: block;
}
fieldset {
  margin: 0;
  border: none;
}
legend {
  display: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
[v-cloak] {
  display: none;
}

/* ===============================================
 common
=============================================== */

/* --- br for PC/SP --- */
.br_pc {
  display: inline !important;
}
.br_sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: none !important;
  }
  .br_sp {
    display: inline !important;
  }
}
/* --- img for PC/SP --- */
.img_pc {
  display: block;
}
.img_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .img_pc {
    display: none;
  }
  .img_sp {
    display: block;
  }
}

/* --- scroll in animation --- */
.scrollin {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}
.scrollin.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scrollin {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===============================================
 header
=============================================== */

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 13.214vw;
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    height: 55px;
    background-color: #fff;
  }
}
.header_logo {
  position: absolute;
  top: min(5vw, 70px);
  left: min(5vw, 70px);
  width: 11.571vw;
  max-width: 162px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header_logo {
    top: 12px;
    left: 12px;
    width: 42px;
    max-width: 42px;
  }
}
.header_nav {
  position: absolute;
  top: min(3.571vw, 50px);
  right: min(3.571vw, 50px);
}
.header_nav ul {
  display: flex;
  gap: 1.428vw;
}
@media screen and (max-width: 767px) {
  .header_nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 100svh;
    padding: 45px;
    background-color: var(--corp-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0s linear 0.35s;
  }
  .header_nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .header_nav ul {
    flex-direction: column;
    gap: 25px;
  }
}
.header_nav ul li a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .header_nav ul li a {
    font-size: 4vw;
  }
}
.header_nav ul li a:hover {
  opacity: 0.7;
}
.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 1001;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
    border: 1px solid var(--corp-color);
  }
  .hamburger.active {
    border: none;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 19px;
    height: 1px;
    left: 5px;
    background: var(--corp-color);
    transition: 0.3s ease-in-out;
  }
  .hamburger.active span {
    width: 24px;
    background: #fff;
  }
  .hamburger span:nth-child(1) {
    top: 9px;
  }
  .hamburger span:nth-child(2) {
    top: 14px;
  }
  .hamburger span:nth-child(3) {
    top: 19px;
  }
  .hamburger.active span:nth-child(1) {
    top: 14px;
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 14px;
    transform: rotate(45deg);
  }
}
body.menu-open {
  overflow: hidden;
}

/* ===============================================
 loading
=============================================== */

#loading {
  width: 100%;
  min-height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--corp-color);
  overflow: hidden;
  z-index: 9999;
  -webkit-animation-name: top00;
  animation-name: top00;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
@-webkit-keyframes top00 {
  0% {
    opacity: 1;
  }
  40%,
  100% {
    opacity: 0;
    z-index: 0;
  }
}
@keyframes top00 {
  0% {
    opacity: 1;
  }
  40%,
  100% {
    opacity: 0;
    z-index: 0;
  }
}
#loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11.571vw;
  max-width: 162px;
  opacity: 0;
  -webkit-animation-name: top01;
  animation-name: top01;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  #loading img {
    width: 30%;
  }
}
@-webkit-keyframes top01 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes top01 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ===============================================
 hero
=============================================== */

.hero {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .hero {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100svh;
    overflow: hidden;
  }
  .hero_inner,
  .hero_slider,
  .hero_slider .swiper-wrapper,
  .hero_slider .swiper-slide {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    padding-top: 55px;
  }
}
.hero_slider {
  position: relative;
  width: 100%;
  height: 100svh;
}
@media screen and (max-width: 767px) {
  .hero_slider {
    height: auto;
  }
}
.hero_slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: 7s 1s ease-out;
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .hero_slider img {
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.hero_slider .swiper-slide[class*="-active"] img {
  transition-delay: 0s;
  transform: scale(1);
}

.hero_slider .swiper-pagination {
  bottom: min(1.785vw, 25px);
}
@media screen and (max-width: 767px) {
  .hero_slider .swiper-pagination {
    bottom: 1vw;
  }
}
.hero_slider .swiper-pagination-bullet {
  width: min(1.071vw, 15px);
  height: min(1.071vw, 15px);
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  margin: 0 min(0.533vw, 8px) !important;
}
@media screen and (max-width: 767px) {
  .hero_slider .swiper-pagination-bullet {
    width: 1.6vw;
    height: 1.6vw;
    margin: 0 1vw !important;
  }
}
.hero_slider .swiper-pagination-bullet-active {
  background: #6c7174;
}

/* ===============================================
 about
=============================================== */

.about {
  position: relative;
  z-index: 2;
  background-color: #fff;
  text-align: center;
}
.about_inner {
  width: 85.714%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .about_inner {
    width: 91.333%;
    padding-bottom: 12vw;
  }
}
.about_subttl {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-top: 35px;
}
@media screen and (max-width: 767px) {
  .about_subttl {
    font-size: 2.933vw;
    padding-top: 4.666vw;
  }
}
.about_ttl {
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .about_ttl {
    margin: 12vw auto 0;
  }
}
.about_ttl img {
  width: 576px;
}
@media screen and (max-width: 767px) {
  .about_ttl img {
    width: 62.666%;
  }
}
.about_ttl span {
  display: block;
  font-size: 30px;
  font-weight: 500;
  margin: 50px auto 20px;
  color: var(--corp-color);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .about_ttl span {
    font-size: 4.533vw;
    margin: 12vw auto 5.333vw;
  }
}
.about_txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .about_txt {
    font-size: 3.733vw;
    margin-top: 6.666vw;
    text-align: left;
  }
}
.about_ttl + .about_txt {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .about_ttl + .about_txt {
    margin-top: 0;
  }
}

/* ===============================================
 workflow
=============================================== */

.workflow {
  position: relative;
  z-index: 2;
  background-color: #f1f3f3;
}
.workflow_inner {
  width: 85.714%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .workflow_inner {
    width: 80%;
    padding: 12vw 0;
  }
}
.workflow_ttl {
  margin: 0 auto 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .workflow_ttl {
    margin: 0 auto 12vw;
  }
}
.workflow_ttl img {
  width: auto;
  height: 44px;
}
@media screen and (max-width: 767px) {
  .workflow_ttl img {
    height: 4.8vw;
  }
}
.workflow_ttl span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 20px auto 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .workflow_ttl span {
    font-size: 2.666vw;
    margin: 2.666vw auto 0;
  }
}
.workflow_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 60px;
}
@media screen and (max-width: 767px) {
  .workflow_list {
    flex-direction: column;
    row-gap: 6.666vw;
  }
}
.workflow_item {
  width: 49.3%;
}
@media screen and (max-width: 767px) {
  .workflow_item {
    width: 100%;
  }
}
.workflow_item_txtbox {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .workflow_item_txtbox {
    flex-direction: column;
    margin-top: 5.333vw;
  }
}
.workflow_item_ttl {
  width: 45.333%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .workflow_item_ttl {
    width: 100%;
    flex-direction: column;
  }
}
.workflow_item_ttl span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--corp-color);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .workflow_item_ttl span {
    font-size: 4.533vw;
  }
}
.workflow_item_txt {
  width: 51%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .workflow_item_txt {
    width: 100%;
    font-size: 3.733vw;
    margin-top: 3.333vw;
  }
}

/* ===============================================
 company
=============================================== */

.company {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 110px 0;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 13.333vw 0;
  }
}
.company_inner {
  width: 85.714%;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #aebbba;
  padding: 110px 0 80px;
}
@media screen and (max-width: 767px) {
  .company_inner {
    width: 91.333%;
    padding: 12vw 0;
  }
}
.company_ttl {
  margin: 0 auto 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company_ttl {
    margin: 0 auto 10vw;
  }
}
.company_ttl img {
  width: auto;
  height: 44px;
}
@media screen and (max-width: 767px) {
  .company_ttl img {
    height: 4.8vw;
  }
}
.company_ttl span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 20px auto 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .company_ttl span {
    font-size: 2.666vw;
    margin: 2.666vw auto 0;
  }
}
.company_data {
  border-bottom: 1px #dfdfdf solid;
  width: 78.293%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company_data {
    width: 86.956%;
  }
}
.company_data > dl {
  padding: 16px 0;
  display: flex;
  border-top: 1px #dfdfdf solid;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .company_data > dl {
    padding: 10px 0;
    display: flex;
    border-top: 1px #dfdfdf solid;
    font-size: 3.733vw;
  }
}
.company_data > dl > dt {
  width: 26.6%;
  padding-left: 5%;
}
@media screen and (max-width: 767px) {
  .company_data > dl > dt {
    padding-left: 0;
  }
}
.company_data > dl > dd {
  width: 73.4%;
  text-align: left;
}

/* ===============================================
 work
=============================================== */

.work {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.work_inner {
  width: 85.714%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: min(7.857vw, 110px);
}
@media screen and (max-width: 767px) {
  .work_inner {
    width: 91.333%;
    padding-bottom: 12vw;
  }
}
.work iframe {
  width: 82%;
  margin: 0 9%;
}
@media screen and (max-width: 767px) {
  .work iframe {
    width: 100%;
    margin: 0;
  }
}

/* ===============================================
 footer
=============================================== */

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

.footer_logo {
  background-color: var(--corp-color);
  width: 100%;
  padding: 75px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    padding: 10vw 0;
  }
}
.footer_logo img {
  width: 106px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer_logo img {
    width: 14.133vw;
  }
}
.footer_copy {
  background-color: #f1f3f3;
  width: 100%;
  color: var(--corp-color);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer_copy {
    padding: 3.333vw;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3.333vw;
  }
}
.footer_copy small {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.footer_copy .privacy {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.3s;
}
.footer_copy .privacy:hover {
  opacity: 0.7;
}
.pagetop {
  display: block;
  background-color: #fff;
  border: 1px solid var(--corp-color);
  cursor: pointer;
  width: 46px;
  height: 46px;
  position: fixed;
  right: 25px;
  bottom: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .pagetop {
    display: none;
  }
}
.pagetop.active {
  opacity: 1;
  pointer-events: all;
}
.pagetop.stop {
  position: absolute;
  top: -28px;
  -webkit-animation: pagetopStopRise 0.35s ease-out;
  animation: pagetopStopRise 0.35s ease-out;
}
.pagetop span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.pagetop span::after {
  content: "";
  border-top: 1px solid var(--corp-color);
  border-right: 1px solid var(--corp-color);
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 4px;
  margin: auto;
  transform: rotate(-45deg);
}
@-webkit-keyframes pagetopStopRise {
  from {
    transform: translateY(12px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes pagetopStopRise {
  from {
    transform: translateY(12px);
  }
  to {
    transform: translateY(0);
  }
}

/* ===============================================
 modal - [ micromodal.js ]
=============================================== */

#modal-1 {
  display: none;
}
#modal-1.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__container {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 930px;
  /*height: 800px;*/
  max-height: 90svh;
  margin: 0 20px;
  padding: 40px 45px 45px;
  border: 1px solid #595757;
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  overflow: visible;
}
.rules__textContainer {
  max-width: 750px;
  height: 80%;
  margin: 0 auto;
  padding: 6px 0;
}
.rules__textContainer__inner {
  width: 100%;
  height: 70svh;
  padding: 15px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.rules__textContainer__inner__text {
  padding: 30px 25px 0;
}
.rules__textContainer__inner__text.start {
  padding: 0 25px;
}
.rules__textContainer__inner__text.end {
  padding: 30px 25px 15px;
}
.rules_ttl {
  margin: 0 auto min(5.714vw, 80px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .rules_ttl {
    margin: 0 auto 12vw;
  }
}
.rules_ttl img {
  width: auto;
  height: 44px;
}
@media screen and (max-width: 767px) {
  .rules_ttl img {
    height: 4.8vw;
  }
}
.rules_ttl span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 20px auto 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .rules_ttl span {
    font-size: 2.666vw;
    margin: 2.666vw auto 0;
  }
}
.rules__textContainer__inner__text h3 {
  text-align: center;
  margin: 0 auto 40px;
}
.rules__textContainer__inner__text span {
  display: block;
}
.rules__textContainer__inner__text h3 .jp {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.8;
}
.rules__textContainer__inner__text h3 .en {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.rules__textContainer__inner__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.rules__textContainer__inner__text h4 {
  font-size: 28px;
  font-weight: 400;
  border-bottom: 1px solid #bebebe;
  padding-bottom: 10px;
  margin: 0 0 15px;
}
.rules__textContainer__inner__text ul {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
.rules__textContainer__inner__text p.info {
  margin: 25px 0 0;
}
.rules__textContainer__inner__text p.info a {
  display: inline;
  text-decoration: underline;
}
.rules__textContainer__inner__text p.info a:hover {
  opacity: 0.7;
}
.modal__close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  width: 50px;
  height: 1px;
  background-color: currentColor;
}
.modal__close::before {
  transform: rotate(-45deg);
}
.modal__close::after {
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .modal__container {
    width: 100%;
    height: 800px;
    max-height: 90svh;
    margin: 0 20px;
    padding: 50px 15px 15px;
  }
  .rules__textContainer__inner {
    height: 75svh;
    padding: 5px 10px;
  }
  .rules__textContainer__inner__text {
    padding: 15px 10px 0;
  }
  .rules__textContainer__inner__text.start {
    padding: 0 10px;
  }
  .rules__textContainer__inner__text.end {
    padding: 15px 10px 10px;
  }
  .rules__textContainer__inner__text h3 {
    margin: 0 auto 20px;
  }
  .rules__textContainer__inner__text h3 .jp {
    font-size: 20px;
  }
  .rules__textContainer__inner__text h3 .en {
    font-size: 12px;
  }
  .rules__textContainer__inner__text p {
    font-size: 14px;
  }
  .rules__textContainer__inner__text h4 {
    font-size: 18px;
    padding-bottom: 7px;
    margin: 0 0 10px;
  }
  .rules__textContainer__inner__text ul {
    font-size: 14px;
  }
  .rules__textContainer__inner__text p.info {
    margin: 10px 0 0;
  }
  .modal__close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .modal__close::before,
  .modal__close::after {
    top: 15px;
    width: 30px;
  }
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* +++ */
