@charset "UTF-8";
html {
  overflow-y: scroll;
}

body {
  line-height: 1;
  color: #000;
}

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #909090;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.9em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  position: relative;
  background-color: #4BAFEB;
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 1.6rem;
    line-height: 2.1em;
  }
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/bg-body.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  body::before {
    background-size: cover;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

a {
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: underline;
}
a:hover {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

h1,
h2,
h3 {
  margin-bottom: 20px;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  margin: 0 0 15px;
}
@media screen and (min-width: 1025px) {
  p {
    margin: 0 0 25px;
  }
}

b {
  font-weight: 700;
}

hr {
  border-top: 1px solid #F5F5F5;
}

ul {
  margin: 10px 0;
}
ul li {
  line-height: 1.3em;
  margin-bottom: 10px;
}
ul ul {
  margin-bottom: 20px;
}

.pc {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}

.center {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 3%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 1000px;
}
.flex img {
  display: block;
  max-width: 100%;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

/* MAIN */
.main {
  min-height: 500px;
  padding-bottom: 100px;
  padding-top: 53px;
}
@media screen and (min-width: 1025px) {
  .main {
    padding-top: 90px;
  }
}

/* GLOVAL_NAVI_BUTTON */
.gnav-btn {
  background-image: url(../img/common/bg-menu-btn.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  width: 60px;
  height: 50px;
  top: 0;
  left: 0;
  margin: auto;
  z-index: 11;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px 15px;
}
@media screen and (min-width: 1025px) {
  .gnav-btn {
    display: none;
  }
}

.gnav-btn div {
  position: relative;
}

.gnav-btn span {
  display: block;
  height: 2px;
  background: #4BAFEB;
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.gnav-btn span:nth-child(1) {
  top: 0px;
}

.gnav-btn span:nth-child(2) {
  top: 7px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.gnav-btn span:nth-child(3) {
  top: 14px;
}

/*開閉ボタンopen時*/
.open .gnav-btn span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.open .gnav-btn span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open .gnav-btn span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 100%;
}

/* GLOVAL_NAVI */
.gnav {
  display: none;
  background-color: #4BAFEB;
  background-image: url(../img/common/bg-dark.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 0 0;
  z-index: 10;
  background-color: #012258;
}
@media screen and (min-width: 768px) {
  .gnav {
    padding: 60px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .gnav {
    background-image: none;
    background-color: transparent;
    display: block;
    height: 100%;
    width: 69%;
    max-width: 1000px;
    position: relative;
    padding: 0;
    overflow: visible;
  }
}
.gnav__logo {
  margin: 30px auto 40px;
  text-align: center;
  width: 65%;
}
@media screen and (min-width: 768px) {
  .gnav__logo {
    margin: 0 auto 60px;
    width: 60%;
  }
}
@media screen and (min-width: 1025px) {
  .gnav__logo {
    display: none;
  }
}
.gnav__logo a {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 auto;
  width: 70%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1025px) {
  .gnav__list {
    height: 100%;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.gnav__item {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  display: inline-block;
  color: #FFFFFF;
  position: relative;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .gnav__item {
    font-size: 1.9rem;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1025px) {
  .gnav__item {
    width: auto;
    font-size: 1.3rem;
    padding: 0 1%;
    margin-bottom: 0;
  }
}
.gnav__item a {
  text-decoration: none;
  line-height: 1em;
  display: block;
  font-family: "Anton", sans-serif;
  color: #999999;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 2.1rem;
}
@media screen and (min-width: 768px) {
  .gnav__item a {
    font-size: 3.5rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1025px) {
  .gnav__item a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 2.1rem;
  }
}
.gnav__item a span {
  font-family: "Noto Serif JP", sans-serif;
  display: block;
  font-size: 1.1rem;
  padding-top: 4px;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .gnav__item a span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .gnav__item a span {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .gnav__item a:hover {
    color: #4BAFEB;
  }
}
.gnav__item a.nolink {
  text-decoration: none;
  line-height: 1em;
  pointer-events: none;
  color: #bababa;
}
@media screen and (min-width: 1025px) {
  .gnav__item a.nolink {
    color: #c3ac34;
  }
}
.gnav__item--twitter {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .gnav__item--twitter {
    margin-top: 0;
  }
}

/* FOOTER */
.footer {
  padding: 50px 0;
}
.footer .footer-nav {
  margin-bottom: 50px;
  overflow: visible;
}
@media screen and (min-width: 1025px) {
  .footer .footer-nav {
    margin: 50px 0 80px;
  }
}
.footer .footer-nav .footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 30px;
  overflow: visible;
}
.footer .footer-nav .footer-nav__item {
  margin: 15px 15px;
  line-height: 1em;
  overflow: visible;
}
@media screen and (min-width: 1025px) {
  .footer .footer-nav .footer-nav__item {
    margin: 0 20px;
  }
}
.footer .footer-nav .footer-nav__item a {
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .footer .footer-nav .footer-nav__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .footer .footer-nav .footer-nav__item a span {
    z-index: 2;
  }
  .footer .footer-nav .footer-nav__item a::before {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    content: "";
    width: 1px;
    height: 0%;
    background: #E71619;
    border-radius: 3px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
  }
  .footer .footer-nav .footer-nav__item a:hover::before {
    top: -16px;
    height: 50px;
  }
}
.footer .banner-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 0 30px;
  width: 70%;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .banner-area {
    width: 100%;
    padding: 70px 0 0;
  }
}
.footer .banner-area__banner {
  display: block;
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .footer .banner-area__banner {
    display: inline-block;
    margin: 0 10px 20px;
  }
}
.footer .banner-area__banner img {
  display: block;
  border: 1px solid #F5F5F5;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer .banner-area__banner img {
    width: auto;
    height: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .footer .banner-area__banner img {
    height: 90px;
  }
}

.footer__copyright {
  line-height: 2em;
  font-size: 0.8rem;
  text-align: center;
  padding: 30px 0 100px;
}
@media screen and (min-width: 1025px) {
  .footer__copyright {
    font-size: 1.1rem;
  }
}

.gotop {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 50px;
  height: 35px;
}
.gotop img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .gotop {
    bottom: 50px;
    right: 20px;
    width: 80px;
    height: 50px;
  }
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  background-color: #012258;
}
@media screen and (min-width: 1025px) {
  .header {
    -webkit-box-shadow: 1px 6px 7px -2px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 6px 7px -2px rgba(0, 0, 0, 0.2);
    height: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .header {
    padding: 0 30px;
    height: 90px;
  }
}
.header__logo {
  margin: 0 auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__logo {
    display: block;
    width: 16%;
    max-width: 263px;
    position: relative;
    margin: 0;
  }
}
.header__logo h1 {
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .header__logo h1 {
    padding-bottom: 10px;
  }
}
.header__logo h1 a {
  display: block;
}
.header__logo h1 a img {
  width: 100%;
}
.header__ticket {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 110px;
  height: 25px;
}
@media screen and (min-width: 1025px) {
  .header__ticket {
    top: auto;
    right: auto;
    position: relative;
    width: 14%;
    max-width: 190px;
    height: 45px;
  }
}
.header__ticket a.ticket-btn {
  background-color: #4BAFEB;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  line-height: 1em;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1A4594;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .header__ticket a.ticket-btn {
    font-size: 1.4rem;
    padding: 15px 5px;
    -webkit-box-shadow: none;
            box-shadow: none;
    line-height: 1.3em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
  }
}
.header__ticket a.ticket-btn .icon-ticket {
  width: 17px;
  height: 18px;
  background-image: url(../img/common/icon-ticket.svg);
  background-size: 100%;
  margin-right: 5px;
}
@media screen and (min-width: 1025px) {
  .header__ticket a.ticket-btn .icon-ticket {
    width: 23px;
    height: 23px;
    margin-right: 10px;
  }
}

.page-title {
  background-image: url(../img/common/bg-pagetitle.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #012258;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-title {
    background-size: cover;
    height: 200px;
    background-position: left center;
  }
}
@media screen and (min-width: 1025px) {
  .page-title {
    height: 260px;
    margin-bottom: 50px;
  }
}
.page-title__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  color: #4BAFEB;
  margin: 0;
  text-align: center;
  font-size: 4rem;
  line-height: 1em;
}
@media screen and (min-width: 768px) {
  .page-title__title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-title__title {
    font-size: 8rem;
  }
}
.page-title__title__small {
  display: block;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1em;
  padding-top: 7px;
}
@media screen and (min-width: 1025px) {
  .page-title__title__small {
    font-size: 1.6rem;
  }
}

/* Head */
.head--h2 {
  font-size: 1.6rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .head--h2 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}
.head--h3 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .head--h3 {
    font-size: 1.8rem;
  }
}
.head--center {
  text-align: center;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .head--center {
    margin-bottom: 50px;
    padding-bottom: 40px;
    font-size: 3.1rem;
  }
}
.head--center::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  background-color: #FFFFFF;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .head--center::after {
    width: 65px;
  }
}

.title-section {
  font-size: 3rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.2em;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .title-section {
    font-size: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 50px;
    margin-bottom: 40px;
    gap: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .title-section {
    font-size: 5rem;
  }
}
.title-section::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .title-section::after {
    width: 50px;
  }
}
.title-section__jp {
  font-size: 1.5rem;
  display: block;
  padding-top: 10px;
  letter-spacing: 0.1em;
  line-height: 1em;
  text-shadow: none;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .title-section__jp {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .title-section__jp {
    font-size: 2rem;
  }
}

.news-h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .news-h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.news-h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .news-h3 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}

/* SNS SHARE */
.sns-area {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns-area__label {
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Anton", sans-serif;
  font-weight: 300;
}

.sns-area__icon-list ul {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.sns-area__icon-list li {
  margin: 0 10px;
}
.sns-area__icon-list li a {
  display: block;
}
.sns-area__icon-list li a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* SubNav */
.sub-nav {
  margin-bottom: 20px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1000px;
  margin: 0 auto 60px;
}
@media screen and (min-width: 768px) {
  .sub-nav {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1025px) {
  .sub-nav {
    padding: 0 70px;
  }
}
@media screen and (min-width: 768px) {
  .sub-nav {
    margin: 0 auto 80px;
  }
}
.sub-nav--ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6%;
}
@media screen and (min-width: 768px) {
  .sub-nav--ul {
    gap: 5%;
  }
}
.sub-nav--li {
  width: 28%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .sub-nav--li {
    width: 8em;
  }
}
.sub-nav--li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 61px;
  border-bottom: solid 1px #FFFFFF;
  position: relative;
  text-align: center;
  text-decoration: none;
  padding-bottom: 13px;
  font-weight: 600;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .sub-nav--li a {
    font-size: 1.7rem;
    padding-bottom: 20px;
  }
}
.sub-nav--li a:hover {
  color: #E8DB00;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-bottom-color: #E8DB00;
}
.sub-nav--li a:hover::before {
  -webkit-transform: translateX(-50%) translateY(-2px);
          transform: translateX(-50%) translateY(-2px);
  opacity: 0.8;
}
.sub-nav--li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 24px;
  height: 24px;
  background: url("../img/common/arrow-bottom.svg") no-repeat center/contain;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .sub-nav--li a::before {
    width: 24px;
    height: 24px;
  }
}
.sub-nav--li:has(.active) a {
  color: #E8DB00;
}
.sub-nav--li:has(.btn--fin) a {
  color: #CCCCCC;
}
.sub-nav--li::before {
  display: none;
}

a > img {
  display: block;
  width: 100%;
}
a > img:hover {
  opacity: 0.6;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* BUTTON */
.btn a {
  padding: 0 20px;
  text-decoration: none;
  display: block;
  color: #FFFFFF;
  width: 70%;
  max-width: 330px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin: 25px auto;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  text-decoration: none;
  position: relative;
  font-weight: normal;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  overflow: hidden;
  border: 1px solid #FFFFFF;
}
@media screen and (min-width: 1025px) {
  .btn a {
    height: 55px;
    line-height: 55px;
  }
}
.btn a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1025px) {
  .btn a::after {
    right: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .btn a:hover::after {
    -webkit-transform: translateY(-50%) translateX(10px);
            transform: translateY(-50%) translateX(10px);
  }
}

/* CONTENT */
.section-article {
  margin-top: -130px;
  padding-top: 130px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .section-article {
    padding-top: 140px;
    padding-bottom: 40px;
  }
}

.card .section-article:first-of-type {
  padding-top: 0;
  margin-top: 0;
}
.card .section-article:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}

.content-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .content-inner {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1025px) {
  .content-inner {
    padding: 0 70px;
  }
}
.content-inner + .content-inner {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .content-inner + .content-inner {
    padding-top: 100px;
  }
}
.content-inner--wide {
  max-width: 1200px;
}

.tokuten__item {
  position: relative;
  padding-bottom: 20px;
  background: rgba(16, 41, 87, 0.2);
  padding: 30px 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .tokuten__item {
    padding: 40px 60px;
    margin-bottom: 40px;
  }
}
.tokuten__item__name {
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  line-height: 1.7em;
  font-size: 1.2em;
  color: #FFF000;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .tokuten__item__name {
    font-size: 1.4em;
  }
}
.tokuten__item__img {
  margin: 0 auto;
  text-align: center;
}
.tokuten__item__img img {
  max-width: 100%;
}

.border-box {
  border: 1px solid #FFFFFF;
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .border-box {
    padding: 40px 20px;
  }
}

.news-list {
  margin-top: 0;
  border-top: 1px solid #F5F5F5;
}
.news-list .news-item {
  border-bottom: 1px solid #F5F5F5;
  position: relative;
  margin-bottom: 0;
}
.news-list .news-item a {
  text-decoration: none;
  color: #FFFFFF;
}
.news-list .news-item:hover .news-title::after {
  -webkit-transform: translateY(-50%) translateX(8px);
          transform: translateY(-50%) translateX(8px);
}
.news-list .news-item:hover::after {
  -webkit-transform: translate(8px);
          transform: translate(8px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news-list .news-item:hover .news-title {
  color: #E8DB00;
}

.news-title-group {
  display: block;
  padding: 25px 0 25px 0;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-title-group {
    padding: 35px 10px 35px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.news-date {
  color: #FFFFFF;
  font-family: "Anton", sans-serif;
  padding-bottom: 7px;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .news-date {
    font-size: 1.5rem;
    width: 13em;
    display: block;
  }
}
.news-date .news-date__year {
  font-size: 0.8em;
  letter-spacing: 0.05em;
  margin-right: 0.3em;
  line-height: 1em;
}
@media screen and (min-width: 768px) {
  .news-date .news-date__year {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
  }
}
.news-date .news-date__month-date {
  font-size: 1.6em;
  letter-spacing: 0.05em;
  margin-right: 0.3em;
  line-height: 1em;
}
@media screen and (min-width: 768px) {
  .news-date .news-date__month-date {
    font-size: 2.9rem;
  }
}

.news-title {
  position: relative;
  padding-right: 25px;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4em;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.9em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  .news-title {
    font-size: 1.6rem;
    line-height: 2.1em;
  }
}
@media screen and (min-width: 1025px) {
  .news-title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .news-title {
    padding-right: 35px;
  }
}
.news-title::after {
  content: "";
  background-image: url(../img/common/arrow-right.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 20px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 1025px) {
  .news-title::after {
    width: 25px;
    height: 20px;
  }
}

.icon--new {
  display: inline-block;
  background-color: #E8DB00;
  padding: 3px 5px;
  color: #178FD7;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1em;
  height: 1em;
  width: 4em;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .icon--new {
    padding: 3px 10px;
    position: absolute;
    top: -25px;
    left: 0;
  }
}

.pager {
  text-align: center;
  margin-top: 50px;
}

.thumb-list {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 1000px;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .thumb-list {
    width: 100%;
    gap: 50px 3%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.thumb-list__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .thumb-list__item {
    width: 31%;
  }
}
.thumb-list__item a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
}
.thumb-list__item a:hover {
  text-decoration: underline;
}
.thumb-list__item a:hover {
  opacity: 1;
}
.thumb-list__item a:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.thumb-list__item__thumb {
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.thumb-list__item__thumb img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.thumb-list__item__title {
  line-height: 1.4em;
}

.back_idx {
  text-align: center;
  margin-top: 50px;
}
.back_idx .btn::before {
  display: none;
}
@media screen and (min-width: 1025px) {
  .back_idx .btn::before {
    display: none;
  }
}

.news-detail__date, .special-detail__date {
  color: #CCCCCC;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .news-detail__date, .special-detail__date {
    font-size: 1.5rem;
  }
}
.news-detail .news-title-group, .special-detail .news-title-group {
  border-bottom: 1px solid #F5F5F5;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .news-detail .news-title-group .news-date, .special-detail .news-title-group .news-date {
    width: 10em;
  }
}
@media screen and (min-width: 768px) {
  .news-detail .news-title-group .news-date__month-date, .special-detail .news-title-group .news-date__month-date {
    font-size: 3.8rem;
  }
}
.news-detail .news-title-group .news-title, .special-detail .news-title-group .news-title {
  font-weight: 500;
  line-height: 1.6em;
  font-size: 2.2rem;
}
@media screen and (min-width: 1025px) {
  .news-detail .news-title-group .news-title, .special-detail .news-title-group .news-title {
    font-size: 2.7rem;
    width: 100%;
  }
}
.news-detail .news-title-group .news-title::after, .special-detail .news-title-group .news-title::after {
  display: none;
}

/* YOUTUBE */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 52.25%;
  border: solid 6px #181818;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 6px 10px 0px 0px #000000;
          box-shadow: 6px 10px 0px 0px #000000;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .youtube {
    -webkit-box-shadow: 20px 20px 0px 0px #000000;
            box-shadow: 20px 20px 0px 0px #000000;
    outline-offset: -15px;
    padding: 30px 60px 60px;
    width: 700px;
    height: 400px;
  }
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* IMAGES */
.img-box {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .img-box {
    margin-bottom: 50px;
  }
}
.img-box img {
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0;
}
.img-box.center img {
  margin: auto;
}

/* COMING SOON */
.coming-soon {
  text-align: center;
  margin: 100px auto;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  color: #CCCCCC;
}
@media screen and (min-width: 768px) {
  .coming-soon {
    margin: 200px auto;
    font-size: 3rem;
  }
}

/* 終了しましたメッセージ */
.fin-message {
  text-align: center;
  margin: 30px auto;
  font-size: 2rem;
  color: #CCCCCC;
}
.font--red {
  color: #E71619;
}
.font--blue {
  color: #4BAFEB;
}
.font--yellow {
  color: #FFF000;
}
.font--xl {
  font-size: 4rem;
}
.font--l {
  font-size: 1.6rem;
}
@media screen and (min-width: 1025px) {
  .font--l {
    font-size: 1.8rem;
  }
}
.font--m {
  font-size: 1.4rem;
}
@media screen and (min-width: 1025px) {
  .font--m {
    font-size: 1.6rem;
  }
}
.font--s {
  font-size: 1rem;
  line-height: 1.4em;
}
@media screen and (min-width: 1025px) {
  .font--s {
    font-size: 1.2rem;
  }
}

/* LIST */
.list--circle {
  margin-bottom: 10px;
}
.list--circle > li {
  margin-bottom: 10px;
  line-height: 1.6em;
  padding-left: 1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .list--circle > li {
    line-height: 1.8em;
  }
}
.list--circle > li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.list--notice {
  margin-bottom: 10px;
}
.list--notice > li {
  margin-bottom: 7px;
  line-height: 1.4em;
  padding-left: 1em;
  position: relative;
  font-size: 1.2rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .list--notice > li {
    font-size: 1.4rem;
  }
}
.list--notice > li::before {
  content: "※";
  position: absolute;
  left: 0;
}

.table_list {
  border-top: 1px solid #F5F5F5;
  margin-bottom: 20px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .table_list {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.table_list dt {
  color: #E71619;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 600;
  font-size: 1em;
  padding: 20px 5px 10px;
}
@media screen and (min-width: 1025px) {
  .table_list dt {
    padding: 20px 10px;
    width: 16%;
    border-bottom: 1px solid #F5F5F5;
  }
}
.table_list dt span {
  display: inline-block;
  background-color: rgba(35, 47, 112, 0.45);
  color: #FFFFFF;
  padding: 5px 20px;
  line-height: 1em;
  border-radius: 1px;
}
@media screen and (min-width: 1025px) {
  .table_list dt span {
    padding: 8px 20px;
    line-height: 1em;
  }
}
.table_list dd {
  padding: 0 5px 20px;
  border-bottom: 1px solid #F5F5F5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1025px) {
  .table_list dd {
    padding: 20px 10px 20px;
    width: 84%;
  }
}
.table_list dd p {
  line-height: 1.5em;
}

.head--h2 + .table_list {
  border-top: none;
}

.table_basic th {
  background-color: #181818;
  color: white;
  border: solid 1px #181818;
}
.table_basic td {
  background-color: #F5F5F5;
  border: solid 1px #CCCCCC;
}
.table_basic td, .table_basic th {
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*========= 頁遷移 ===============*/
body {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fuContent {
  -webkit-animation-name: fuContentAnime;
          animation-name: fuContentAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fuContentAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fuContentAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 横流れテキストアニメーション */
.scrolling-text {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.scrolling-text::before {
  content: attr(data-text) " " attr(data-text) " " attr(data-text) " ";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: scrollText 15s linear infinite;
          animation: scrollText 15s linear infinite;
  white-space: nowrap;
}

@-webkit-keyframes scrollText {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollText {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* INTRODUCTION専用のスタイル */
.introduction-scrolling {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100vw;
  height: 1.2em;
  line-height: 1;
  font-family: "Anton", sans-serif;
  font-size: 4rem;
  opacity: 0.29;
  z-index: 0;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .introduction-scrolling {
    font-size: 6rem;
    height: 1.2em;
    letter-spacing: 0.25em;
  }
}
@media screen and (min-width: 1025px) {
  .introduction-scrolling {
    font-size: 8rem;
    height: 1.2em;
    letter-spacing: 0.3em;
  }
}

.introduction-scrolling::before {
  content: "Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction ";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: scrollIntroduction 60s linear infinite;
          animation: scrollIntroduction 60s linear infinite;
  white-space: nowrap;
  font-weight: 400;
}

.introduction-scrolling::after {
  content: "Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction ";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: scrollIntroduction2 60s linear infinite;
          animation: scrollIntroduction2 60s linear infinite;
  white-space: nowrap;
  font-weight: 400;
}

@-webkit-keyframes scrollIntroduction {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollIntroduction {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes scrollIntroduction2 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes scrollIntroduction2 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
/* modaal */
.modaal-image .modaal-close {
  position: absolute;
  right: 0;
  top: -60px;
  margin: auto;
  width: 40px;
  height: 40px;
}
.modaal-image .modaal-close::after, .modaal-image .modaal-close::before {
  border-radius: 0;
  width: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 30px;
}
@media screen and (min-width: 1025px) {
  .modaal-image .modaal-close::after, .modaal-image .modaal-close::before {
    height: 40px;
  }
}
.modaal-image .modaal-close:hover {
  background: transparent;
}
.modaal-image .modaal-close:focus:before, .modaal-image .modaal-close:focus:after, .modaal-image .modaal-close:hover:before, .modaal-image .modaal-close:hover:after {
  background: #4BAFEB;
}