@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Lato:wght@700&family=Barlow:wght@600;700&family=Alumni+Sans&display=swap");
html {
  font-size: 62.5%;
}

body {
  position: relative;
  color: #2f303a;
  width: 100%;
  background-color: #3f454a;
  font: normal 400 1.4rem/1.7 "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  /*スマホの文字の大きさ一定*/
  -webkit-text-size-adjust: 100%;
  /*アンチエイリアス*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media print, screen and (min-width: 920px) {
  body {
    font-size: 1.6rem;
  }
}

/*breakpoint display*/
.sp_min {
  display: block;
}

.sp_min_inline {
  display: inline;
}

.sp {
  display: block;
}

.sp_inline {
  display: inline;
}

.sp_tab {
  display: block;
}

.sp_tab_inline {
  display: inline;
}

.pc,
.pc_inline {
  display: none !important;
}

.tab,
.tab_inline {
  display: none !important;
}

.pc_tab,
.pc_tab_inline {
  display: none !important;
}

@media print, screen and (min-width: 414px) {
  .sp_min,
  .sp_min_inline {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp,
  .sp_inline {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab_inline {
    display: inline !important;
  }
  .pc_tab {
    display: block !important;
  }
  .pc_tab_inline {
    display: inline !important;
  }
}
@media print, screen and (min-width: 920px) {
  .sp_tab,
  .sp_tab_inline {
    display: none !important;
  }
  .tab,
  .tab_inline {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .pc_inline {
    display: inline !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
*:before,
* :after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}

button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

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

details {
  overflow: hidden;
}
details.open summary + * {
  height: auto;
  visibility: visible;
  opacity: 1;
}
details:not(.open) summary + * {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

summary {
  cursor: pointer;
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary + * {
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a,
a:focus,
button,
button:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input,
button,
label,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: 1.6rem;
}
input:hover, input:focus, input:active,
button:hover,
button:focus,
button:active,
label:hover,
label:focus,
label:active,
textarea:hover,
textarea:focus,
textarea:active,
select:hover,
select:focus,
select:active {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

[class*=inner] {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 32px);
}
@media print, screen and (min-width: 920px) {
  [class*=inner] {
    width: calc(100% - 80px);
    max-width: 1280px;
  }
}

.inner_s {
  max-width: 920px;
}

.inner_m {
  max-width: 1160px;
}

.inner_l {
  max-width: 1440px;
}

#wrapper {
  overflow: hidden;
  padding-top: 50px;
  background-color: #f2f4fa;
}
@media print, screen and (min-width: 920px) {
  #wrapper {
    padding-top: 70px;
  }
}

#header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  padding-left: 15px;
  width: 100%;
  height: 50px;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 1024px) {
  #header {
    padding-left: 40px;
    height: 70px;
  }
}
#header.fixed {
  position: fixed;
  background-color: #f2f4fa;
}
#header.fixed .btn_inquiry.fixed {
  border-radius: 0;
}
#header.fixed .btn_inquiry.fixed::before {
  border-radius: 0;
}
#header > .logo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: absolute;
  left: 16px;
  top: 6px;
  margin-right: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 1024px) {
  #header > .logo {
    position: relative;
    left: auto;
    top: auto;
  }
}
#header > .logo img {
  height: 38px;
}
@media print, screen and (min-width: 1024px) {
  #header > .logo img {
    height: 42px;
  }
}
#header .catch {
  display: none;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  #header .catch {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    display: block;
  }
}
@media print, screen and (min-width: 1024px) {
  #header .catch {
    font-size: 1.1rem;
  }
}
@media print, screen and (min-width: 768px) {
  #header .catch br {
    display: block;
  }
}
@media print, screen and (min-width: 1280px) {
  #header .catch br {
    display: none;
  }
}
#header nav {
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  left: 0;
  top: 0;
  padding: 120px 16px 50px;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 1024px) {
  #header nav {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    visibility: visible;
    overflow: visible;
    overflow-y: visible;
    position: relative;
    opacity: 1;
    margin-left: auto;
    margin-right: 3%;
    padding: 0;
    height: auto;
    background-color: transparent;
  }
}
@media print, screen and (min-width: 1160px) {
  #header nav {
    margin-right: 5%;
  }
}
#header nav.open {
  visibility: visible;
  opacity: 1;
}
#header nav.open .logo {
  display: block;
  visibility: visible;
  opacity: 1;
}
#header nav.open .btn_inquiry.fixed {
  display: none;
}
#header nav .logo {
  position: absolute;
  left: 16px;
  top: 6px;
}
@media print, screen and (min-width: 1024px) {
  #header nav .logo {
    display: none !important;
  }
}
#header nav .logo img {
  max-width: 96px;
}
#header nav .global {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 35px 0;
}
@media print, screen and (min-width: 1024px) {
  #header nav .global {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 0;
    -webkit-column-gap: 3%;
       -moz-column-gap: 3%;
            column-gap: 3%;
  }
}
@media print, screen and (min-width: 1160px) {
  #header nav .global {
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
}
#header nav .global li {
  font-weight: 700;
  font-size: 1.7rem;
}
@media print, screen and (min-width: 1024px) {
  #header nav .global li {
    font-size: 1.5rem;
  }
}
#header nav .global a {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header nav .global a:hover, #header nav .global a:active {
  text-decoration: none;
  opacity: 0.7;
}
#header nav .others {
  margin-top: 50px;
}
@media print, screen and (min-width: 1024px) {
  #header nav .others {
    display: none;
    margin-top: 0;
  }
}
#header nav .others .btn_inquiry,
#header nav .others .btn_download,
#header nav .others .btn_registration {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 16px;
  padding-left: 6%;
  padding-right: 40px;
  max-width: 100%;
  min-height: 64px;
  border-radius: 5px;
  font-size: 1.6rem;
  text-align: left;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#header nav .others .btn_inquiry::before,
#header nav .others .btn_download::before,
#header nav .others .btn_registration::before {
  border-radius: 3px;
}
#header nav .others .btn_inquiry::after,
#header nav .others .btn_download::after,
#header nav .others .btn_registration::after {
  right: 16px;
}
#header nav .others .btn_inquiry em,
#header nav .others .btn_download em,
#header nav .others .btn_registration em {
  margin-left: 0;
  margin-right: 10px;
  padding: 5px 10px;
  width: auto;
  height: auto;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}
@media print, screen and (min-width: 414px) {
  #header nav .others .btn_inquiry em,
  #header nav .others .btn_download em,
  #header nav .others .btn_registration em {
    font-size: 1.4rem;
  }
}
#header nav .others .btn_inquiry,
#header nav .others .btn_registration {
  max-height: 78px;
}
@media print, screen and (min-width: 414px) {
  #header nav .others .btn_inquiry,
  #header nav .others .btn_registration {
    font-size: 1.7rem;
  }
}
#header nav .others .sns {
  margin-top: 50px;
  margin-bottom: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #5470c7;
}
#header nav .others .sns a {
  background-color: #eff1fc;
}
#header nav .others .privacy {
  color: #5470c7;
  font-size: 1.2rem;
}
#header .btn_hamburger {
  cursor: pointer;
  display: block;
  position: fixed;
  right: 16px;
  top: 4px;
  width: 42px;
  height: 42px;
}
#header .btn_hamburger:before, #header .btn_hamburger::after,
#header .btn_hamburger i {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 42px;
  height: 2px;
  background-color: #5470c7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header .btn_hamburger::before {
  content: "";
  top: 11px;
}
#header .btn_hamburger::after {
  content: "";
  bottom: 11px;
}
#header .btn_hamburger i {
  margin-top: -1px;
  top: 50%;
}
#header .btn_hamburger.open::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
#header .btn_hamburger.open::after {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#header .btn_hamburger.open i {
  opacity: 0;
}
@media print, screen and (min-width: 1024px) {
  #header .btn_hamburger {
    display: none;
  }
}
#header .btn_inquiry.fixed {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  margin: 0;
  width: 165px;
  min-height: 50px;
  border-radius: 0 0 0 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#header .btn_inquiry.fixed::before {
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 0 0 0 8px;
}
#header .btn_inquiry.fixed::after {
  content: none;
}
@media print, screen and (min-width: 1024px) {
  #header .btn_inquiry.fixed {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    width: 180px;
    min-height: 70px;
    font-size: 1.4rem;
  }
}
#header .btn_inquiry.fixed em {
  margin-right: 10px;
  width: 50px;
  height: 32px;
  border-radius: 5px;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 920px) {
  #header .btn_inquiry.fixed em {
    margin-right: 15px;
    width: 54px;
    height: 42px;
  }
}
#header .btn_inquiry.fixed:hover, #header .btn_inquiry.fixed:active {
  color: #5470c7;
}
#header .btn_login {
  position: fixed;
  right: 28px;
  top: 16px;
  border-color: #5470c7;
  background-color: #fff;
  color: #5470c7;
}
#header .btn_login::before {
  background-color: #d4dbee;
}
#header .btn_login::after {
  border-bottom-color: #5470c7;
  border-right-color: #5470c7;
}
#header .btn_login.open, #header .btn_login:hover, #header .btn_login:active {
  background-color: #5470c7;
  color: #fff;
}
#header .btn_login.open::after, #header .btn_login:hover::after, #header .btn_login:active::after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}
@media print, screen and (min-width: 1024px) {
  #header .login_box {
    position: fixed;
    right: 28px;
    top: 54px;
    background-color: #fff;
  }
}
#header .login_box.open {
  -webkit-box-shadow: 2px 10px 15px rgba(49, 66, 117, 0.2);
          box-shadow: 2px 10px 15px rgba(49, 66, 117, 0.2);
}
#header .login_box li + li {
  border-top-color: #c9ccd8;
}
#header .login_box a {
  color: #5470c7;
}
#header .login_box a::after {
  border-top-color: #5470c7;
  border-right-color: #5470c7;
}

#footer {
  position: relative;
  z-index: 2;
  background-color: #3f454a;
  color: #9da2ab;
  font-size: 1.2rem;
  line-height: 1.2;
}
@media print, screen and (min-width: 920px) {
  #footer {
    font-size: 1.3rem;
  }
}
#footer .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 65px;
}
@media print, screen and (min-width: 920px) {
  #footer .inner {
    min-height: 105px;
  }
}
#footer a {
  color: #9da2ab;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer a:hover, #footer a:active {
  text-decoration: none;
  opacity: 0.7;
}
#footer .wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-top: 210px;
  border-bottom: 1px solid #6d747b;
}
@media print, screen and (min-width: 920px) {
  #footer .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    padding-bottom: 40px;
  }
}
#footer .btn_login {
  position: absolute;
  right: 0;
  top: 120px;
  border-color: #9da2ab;
  color: #9da2ab;
}
#footer .btn_login::before {
  background-color: #606568;
}
#footer .btn_login::after {
  border-bottom-color: #9da2ab;
  border-right-color: #9da2ab;
}
#footer .btn_login.open, #footer .btn_login:hover, #footer .btn_login:active {
  background-color: #9da2ab;
  color: #3f454a;
}
#footer .btn_login.open::after, #footer .btn_login:hover::after, #footer .btn_login:active::after {
  border-bottom-color: #3f454a;
  border-right-color: #3f454a;
}
@media print, screen and (min-width: 1024px) {
  #footer .login_box {
    position: absolute;
    right: 0;
    top: 158px;
    background-color: #50565a;
    color: #c0c2c4;
  }
}
#footer .login_box li + li {
  border-top-color: #6d747b;
}
#footer .login_box a {
  color: #c0c2c4;
}
#footer .login_box a::after {
  border-top-color: #fff;
  border-right-color: #fff;
}
#footer .global {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px 0;
  margin-bottom: 40px;
}
#footer .global li {
  font-size: 1.3rem;
  line-height: 1.3;
}
@media print, screen and (min-width: 920px) {
  #footer .global li {
    font-size: 1.4rem;
  }
}
#footer .btn {
  display: block;
  padding: 15px;
  width: 60%;
  border: 1px solid #6d747b;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 920px) {
  #footer .btn {
    width: 255px;
    font-size: 1.4rem;
  }
}
#footer .btn + .btn {
  margin-top: 10px;
}
#footer .btn:hover, #footer .btn:active {
  background-color: #6d747b;
  color: #fff;
}
#footer .sns {
  margin-top: 40px;
}
#footer .sns a {
  background-color: #6d747b;
}
#footer > .logo {
  position: absolute;
  left: 16px;
  top: 120px;
}
@media print, screen and (min-width: 920px) {
  #footer > .logo {
    left: 40px;
  }
}
@media print, screen and (min-width: 1360px) {
  #footer > .logo {
    left: calc(50% - 640px);
  }
}
#footer .company {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid #6d747b;
}
@media print, screen and (min-width: 920px) {
  #footer .company {
    margin-left: 6%;
    margin-top: 0;
    padding: 0 0 0 6%;
    border-top: none;
    border-left: 1px solid #6d747b;
  }
}
#footer .company .logo {
  display: block;
  margin-bottom: 20px;
  max-height: 28px;
}
@media print, screen and (min-width: 920px) {
  #footer .company .logo {
    margin-bottom: 45px;
    max-height: 30px;
  }
}
@media print, screen and (min-width: 920px) {
  #footer .company tr + tr th, #footer .company tr + tr td {
    padding-top: 23px;
  }
}
#footer .company th, #footer .company td {
  padding: 10px 0;
  font-size: 1.3rem;
  line-height: 2;
  text-align: left;
  vertical-align: top;
}
@media print, screen and (min-width: 920px) {
  #footer .company th, #footer .company td {
    padding: 0;
    font-size: 1.4rem;
  }
}
#footer .company th {
  min-width: 80px;
  font-weight: 700;
  white-space: nowrap;
}
@media print, screen and (min-width: 920px) {
  #footer .company th {
    padding-right: 25px;
  }
}
#footer .links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 0;
  border-top: 1px solid #6d747b;
  padding: 40px 0;
}
@media print, screen and (min-width: 920px) {
  #footer .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px 0;
    margin-left: auto;
    padding-left: 15px;
    border-top: none;
  }
}
#footer .links li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  min-height: 50px;
  text-align: center;
}
@media print, screen and (min-width: 920px) {
  #footer .links li {
    width: 100%;
    min-height: 0;
  }
}
#footer .links a {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 920px) {
  #footer .links a {
    font-size: 1.6rem;
    white-space: nowrap;
  }
}
#footer .links a + a span {
  margin-top: 6px;
}
@media print, screen and (min-width: 920px) {
  #footer .links a + a span {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 920px) {
  #footer .links img {
    -webkit-transform: none;
            transform: none;
  }
}
#footer .links img[src$="hatarake.svg"] {
  width: 150px;
}
@media print, screen and (min-width: 920px) {
  #footer .links img[src$="hatarake.svg"] {
    width: 220px;
  }
}
#footer .links img[src$="zero.svg"] {
  width: 130px;
}
@media print, screen and (min-width: 920px) {
  #footer .links img[src$="zero.svg"] {
    width: 160px;
  }
}
#footer .links strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
}
@media print, screen and (min-width: 920px) {
  #footer .links strong {
    margin-bottom: 15px;
  }
}
#footer .links span {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.3;
}
@media print, screen and (min-width: 920px) {
  #footer .links span {
    font-size: 1.1rem;
  }
}
#footer .copyright {
  font-size: inherit;
}

.btn_login {
  display: none;
  cursor: pointer;
  padding-left: 16px;
  width: 126px;
  height: 38px;
  border: 1px solid #5470c7;
  border-radius: 5px;
  color: #5470c7;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_login::before, .btn_login::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_login::before {
  right: 34px;
  width: 1px;
  height: 18px;
  background-color: #5470c7;
}
.btn_login::after {
  right: 14px;
  top: -2px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #5470c7;
  border-right: 2px solid #5470c7;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn_login.open::after {
  top: 4px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
@media print, screen and (min-width: 1024px) {
  .btn_login {
    display: block;
    position: relative;
  }
}

.login_box {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .login_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    visibility: hidden;
    z-index: -10;
    padding: 20px 25px;
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.login_box.open {
  visibility: visible;
  z-index: 1;
  opacity: 1;
}
.login_box li {
  font-weight: 500;
  line-height: 1.3;
}
@media print, screen and (min-width: 1024px) {
  .login_box li {
    font-size: 1.4rem;
  }
}
.login_box li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #fff;
}
.login_box a {
  display: block;
  position: relative;
  color: #5470c7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.login_box a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #5470c7;
  border-right: 2px solid #5470c7;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.login_box a:hover, .login_box a:active {
  text-decoration: none;
  opacity: 0.8;
}
.login_box a:hover::after, .login_box a:active::after {
  opacity: 0.8;
}
.login_box .qr {
  display: inline-block;
  margin-left: 50px;
  margin-top: 5px;
  vertical-align: top;
}

.btn_download,
.btn_inquiry,
.btn_registration {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  margin: 40px auto 0;
  max-width: calc(100% - 32px);
  min-height: 90px;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  -webkit-box-shadow: 2px 10px 15px rgba(49, 66, 117, 0.2);
          box-shadow: 2px 10px 15px rgba(49, 66, 117, 0.2);
}
.btn_download::before, .btn_download::after,
.btn_inquiry::before,
.btn_inquiry::after,
.btn_registration::before,
.btn_registration::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_download::before,
.btn_inquiry::before,
.btn_registration::before {
  visibility: hidden;
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  z-index: -1;
  border-radius: 12px;
  background-color: #fff;
  opacity: 0;
}
.btn_download::after,
.btn_inquiry::after,
.btn_registration::after {
  visibility: visible;
  right: 5.2%;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: no-repeat 6px center/9px auto #fff;
  opacity: 1;
}
.btn_download:hover, .btn_download:active,
.btn_inquiry:hover,
.btn_inquiry:active,
.btn_registration:hover,
.btn_registration:active {
  text-decoration: none;
}
.btn_download:hover::before, .btn_download:active::before,
.btn_inquiry:hover::before,
.btn_inquiry:active::before,
.btn_registration:hover::before,
.btn_registration:active::before {
  visibility: visible;
  opacity: 1;
}

.btn_download {
  background: rgb(58, 187, 211);
  background: -webkit-gradient(linear, left top, right top, from(rgb(58, 187, 211)), to(rgb(58, 176, 243)));
  background: -webkit-linear-gradient(left, rgb(58, 187, 211) 0%, rgb(58, 176, 243) 100%);
  background: linear-gradient(90deg, rgb(58, 187, 211) 0%, rgb(58, 176, 243) 100%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: calc(100% - 32px);
  padding-right: 15px;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
}
.btn_download::after {
  background-image: url(../img/common/arrow2.svg);
}
@media print, screen and (min-width: 920px) {
  .btn_download {
    margin-top: 50px;
    max-width: 590px;
    min-height: 95px;
    font-size: 2.2rem;
  }
  .btn_download::after {
    right: 5%;
    width: 24px;
    height: 24px;
    background-position: 7px center;
    background-size: 11px auto;
  }
}
.btn_download:hover, .btn_download:active {
  color: #3abbd3;
}
.btn_download:hover::after, .btn_download:active::after {
  background-color: #3abbd3;
  background-image: url(../img/common/arrow_w.svg);
}
.btn_download:hover i::after, .btn_download:active i::after {
  visibility: visible;
  opacity: 1;
}
.btn_download i {
  display: inline-block;
  position: absolute;
  left: 58px;
  top: 0;
}
.btn_download i::before, .btn_download i::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_download i::before {
  background: rgb(58, 187, 211);
  background: -webkit-gradient(linear, left top, right top, from(rgb(58, 187, 211)), to(rgb(58, 176, 243)));
  background: -webkit-linear-gradient(left, rgb(58, 187, 211) 0%, rgb(58, 176, 243) 100%);
  background: linear-gradient(90deg, rgb(58, 187, 211) 0%, rgb(58, 176, 243) 100%);
  left: 0;
  top: -10px;
  width: 24px;
  height: 11px;
}
.btn_download i::after {
  visibility: hidden;
  left: 2px;
  top: -6px;
  width: 20px;
  height: 9px;
  background-color: #fff;
  opacity: 0;
}
@media print, screen and (min-width: 920px) {
  .btn_download i {
    left: 50%;
  }
  .btn_download i::before, .btn_download i::after {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .btn_download i::before {
    top: -16px;
    width: 36px;
    height: 17px;
  }
  .btn_download i::after {
    left: 0;
    top: -12px;
    width: 32px;
    height: 15px;
  }
}
.btn_download span {
  display: block;
  position: relative;
  margin-top: 5px;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 920px) {
  .btn_download span {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}

.btn_inquiry,
.btn_registration {
  background: rgb(110, 126, 219);
  background: -webkit-gradient(linear, left top, right top, from(rgb(110, 126, 219)), to(rgb(76, 157, 233)));
  background: -webkit-linear-gradient(left, rgb(110, 126, 219) 0%, rgb(76, 157, 233) 100%);
  background: linear-gradient(90deg, rgb(110, 126, 219) 0%, rgb(76, 157, 233) 100%);
  font-size: 1.6rem;
  line-height: 1.6;
}
.btn_inquiry::before,
.btn_registration::before {
  border-radius: 13px;
}
.btn_inquiry::after,
.btn_registration::after {
  background-image: url(../img/common/arrow1.svg);
}
@media print, screen and (min-width: 920px) {
  .btn_inquiry,
  .btn_registration {
    max-width: 590px;
    min-height: 95px;
    font-size: 1.6rem;
  }
  .btn_inquiry::after,
  .btn_registration::after {
    right: 5%;
    width: 24px;
    height: 24px;
    background-position: 7px center;
    background-size: 11px auto;
  }
}
.btn_inquiry:hover, .btn_inquiry:active,
.btn_registration:hover,
.btn_registration:active {
  color: #5470c7;
}
.btn_inquiry:hover::after, .btn_inquiry:active::after,
.btn_registration:hover::after,
.btn_registration:active::after {
  background-color: #5470c7;
  background-image: url(../img/common/arrow_w.svg);
}
.btn_inquiry:hover em, .btn_inquiry:active em,
.btn_registration:hover em,
.btn_registration:active em {
  background-color: #5470c7;
  color: #fff;
}
.btn_inquiry em,
.btn_registration em {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  margin-left: -5.2%;
  margin-right: 15px;
  width: 85px;
  height: 50px;
  border-radius: 5px;
  background-color: #fff;
  color: #5470c7;
  font-size: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 920px) {
  .btn_inquiry em,
  .btn_registration em {
    margin-left: 0;
  }
}
.btn_inquiry span,
.btn_registration span {
  position: relative;
  z-index: 3;
}

.btn_on-air {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 3;
  margin: 80px auto 0;
  padding: 8px 8px 12px;
  max-width: 75%;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 8px rgba(49, 66, 117, 0.05);
          box-shadow: 2px 4px 8px rgba(49, 66, 117, 0.05);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
}
.btn_on-air::before {
  content: "";
  display: block;
  padding-top: 63.8095238095%;
  width: 100%;
  border-radius: 6px;
  background: url(../img/top/on-air_thumb.jpg) no-repeat center center/contain;
}
@media print, screen and (min-width: 920px) {
  .btn_on-air {
    margin-top: 100px;
    padding: 18px 20px;
    width: 53.8194444444%;
    max-width: 775px;
    -webkit-box-shadow: 6px 6px 12px rgba(49, 66, 117, 0.15);
            box-shadow: 6px 6px 12px rgba(49, 66, 117, 0.15);
    font-size: 2.4rem;
  }
}
.btn_on-air:hover, .btn_on-air:active {
  background-color: #eaeef9;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
}
.btn_on-air p {
  position: relative;
  margin-top: 8px;
  padding-left: 44px;
  line-height: 1.5;
}
.btn_on-air p::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 28px;
  height: 28px;
  background: url(../img/top/icon_on-air.svg) no-repeat center center/contain;
}
@media print, screen and (min-width: 920px) {
  .btn_on-air p {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 15px;
    padding-left: 65px;
  }
  .btn_on-air p::before {
    width: 40px;
    height: 40px;
  }
}
@media print, screen and (min-width: 920px) {
  .btn_on-air p span {
    display: block;
    font-size: 2.4rem;
  }
}

.sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 12px;
}
.sns a {
  display: block;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sns a:hover, .sns a:active {
  opacity: 0.8;
}

.archives {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
}
@media print, screen and (min-width: 920px) {
  .archives {
    row-gap: 15px;
  }
}
.archives li {
  width: 100%;
}
.archives a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px 0;
  padding: 16px 24px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 8px rgba(49, 66, 117, 0.05);
          box-shadow: 2px 4px 8px rgba(49, 66, 117, 0.05);
}
@media print, screen and (min-width: 920px) {
  .archives a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 24px;
    padding: 16px 32px;
  }
}
.archives a:hover, .archives a:active {
  background-color: #eaeef9;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
}
.archives time {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: #2f303a;
  line-height: 1;
  white-space: nowrap;
}
.archives strong {
  display: block;
  font-weight: 400;
  color: #5470c7;
  line-height: 1.8;
}

/* modaal */
.modaal-video-wrap {
  margin: auto;
}

/* Gutenberg */
.sec_contents h3.wp-block-heading {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 920px) {
  .sec_contents h3.wp-block-heading {
    margin-bottom: 50px;
  }
}
.sec_contents .alignleft {
  margin-left: 0;
  margin-right: auto;
}
.sec_contents .alignleft img {
  display: block;
  margin-left: 0;
  margin-right: auto;
}
.sec_contents .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.sec_contents .aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sec_contents .alignright {
  margin-left: auto;
  margin-right: 0;
}
.sec_contents .alignright img {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.sec_contents .has-text-align-left {
  text-align: left;
}
.sec_contents .has-text-align-center {
  text-align: center;
}
.sec_contents .has-text-align-right {
  text-align: right;
}
.sec_contents .wp-block-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 10px;
  position: relative;
  margin-top: 50px;
}
.sec_contents .wp-block-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec_contents .btn,
.sec_contents input[type=submit].btn,
.sec_contents input[type=button].btn,
.sec_contents .wp-element-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  min-width: 170px;
  min-height: 52px;
  border-radius: 6px;
  background: #5470c7;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 920px) {
  .sec_contents .btn,
  .sec_contents input[type=submit].btn,
  .sec_contents input[type=button].btn,
  .sec_contents .wp-element-button {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 60px;
    max-width: 415px;
    border-radius: 15px;
  }
}
.sec_contents .btn:hover, .sec_contents .btn:active,
.sec_contents input[type=submit].btn:hover,
.sec_contents input[type=submit].btn:active,
.sec_contents input[type=button].btn:hover,
.sec_contents input[type=button].btn:active,
.sec_contents .wp-element-button:hover,
.sec_contents .wp-element-button:active {
  opacity: 0.8;
  text-decoration: none;
}
.sec_contents .btn.center,
.sec_contents input[type=submit].btn.center,
.sec_contents input[type=button].btn.center,
.sec_contents .wp-element-button.center {
  margin-left: auto;
  margin-right: auto;
}
.sec_contents .btn.back,
.sec_contents input[type=submit].btn.back,
.sec_contents input[type=button].btn.back,
.sec_contents .wp-element-button.back {
  background: #9da2ab;
}
.sec_contents .btn.submit,
.sec_contents input[type=submit].btn.submit,
.sec_contents input[type=button].btn.submit,
.sec_contents .wp-element-button.submit {
  background: rgb(110, 126, 219);
  background: -webkit-gradient(linear, left top, right top, from(rgb(110, 126, 219)), to(rgb(76, 157, 233)));
  background: -webkit-linear-gradient(left, rgb(110, 126, 219) 0%, rgb(76, 157, 233) 100%);
  background: linear-gradient(90deg, rgb(110, 126, 219) 0%, rgb(76, 157, 233) 100%);
}
.sec_contents .btn.wpcf7-submit:disabled,
.sec_contents input[type=submit].btn.wpcf7-submit:disabled,
.sec_contents input[type=button].btn.wpcf7-submit:disabled,
.sec_contents .wp-element-button.wpcf7-submit:disabled {
  background: #d8d8d8;
}

.slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.slick-track::before, .slick-track::after {
  content: none;
}

.slick-slide {
  float: none;
}

.slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.slick-dots li {
  float: none;
}
.slick-dots button {
  cursor: pointer;
}

.slick-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slick-arrow.slick-disabled {
  cursor: default;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.mfp-bg {
  background-color: #000;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-container {
  padding: 16px;
}
@media print, screen and (min-width: 920px) {
  .mfp-container {
    padding: 40px;
  }
}

.mfp-iframe-holder .mfp-content {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
@media print, screen and (min-width: 414px) {
  .mfp-iframe-holder .mfp-content {
    max-width: calc(100% - 64px);
  }
}
@media print, screen and (min-width: 1024px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 1070px;
  }
}

.mfp-content {
  padding: 40px 30px;
  border-radius: 30px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
@media print, screen and (min-width: 920px) {
  .mfp-content {
    padding: 80px;
    max-width: 1070px;
  }
}

.mfp-s-loading .mfp-arrow {
  display: none;
}

button.mfp-arrow {
  margin: 0;
  width: 34px;
  height: 44px;
  background-color: #eff1fc;
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
button.mfp-arrow::before, button.mfp-arrow::after {
  margin: 0;
  border: none;
}
button.mfp-arrow::before {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  border-top: 2px solid #5470c7;
  border-right: 2px solid #5470c7;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateX(-3px) rotate(45deg);
          transform: translateX(-3px) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
button.mfp-arrow::after {
  content: none;
}
button.mfp-arrow:hover, button.mfp-arrow:active {
  background-color: #5470c7;
}
button.mfp-arrow:hover::before, button.mfp-arrow:hover::after, button.mfp-arrow:active::before, button.mfp-arrow:active::after {
  border-top-color: #eff1fc;
  border-right-color: #eff1fc;
}
@media print, screen and (min-width: 920px) {
  button.mfp-arrow {
    top: auto;
    bottom: 80px;
    -webkit-transform: none;
            transform: none;
  }
}
button.mfp-arrow:active {
  margin-top: 0;
}
button.mfp-arrow.mfp-arrow-left {
  left: -16px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
@media print, screen and (min-width: 920px) {
  button.mfp-arrow.mfp-arrow-left {
    left: 80px;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}
button.mfp-arrow.mfp-arrow-right {
  right: -16px;
}
@media print, screen and (min-width: 920px) {
  button.mfp-arrow.mfp-arrow-right {
    left: 116px;
    right: auto;
  }
}

.mfp-close-btn-in .mfp-close {
  color: #d8d8d8;
}

button.mfp-close {
  overflow: hidden;
  right: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  color: #d8d8d8;
  text-indent: 101%;
  opacity: 1;
}
button.mfp-close::before, button.mfp-close::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: auto;
  width: 30px;
  height: 2px;
  background-color: #9da2ab;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
button.mfp-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
button.mfp-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
button.mfp-close:hover::before, button.mfp-close:hover::after, button.mfp-close:active::before, button.mfp-close:active::after {
  background-color: #5470c7;
}
@media print, screen and (min-width: 920px) {
  button.mfp-close {
    top: 28px;
    right: 28px;
    width: 34px;
    height: 34px;
  }
  button.mfp-close::before, button.mfp-close::after {
    width: 46px;
  }
}
button.mfp-close:active {
  top: 16px;
}
@media print, screen and (min-width: 920px) {
  button.mfp-close:active {
    top: 28px;
  }
}

.grecaptcha-badge {
  display: none !important;
}