@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/** Colorの定義 **/
/** 文字の定義**/
/* ==============================

	  共通

  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071bc;
}
a:hover {
  color: #ffb700;
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
  max-width: 100%;
}

i {
  font-style: normal;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space50 {
  height: 50px;
}
@media screen and (max-width: 600px) {
  .space50 {
    height: 30px;
  }
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

.font-s {
  font-size: smaller;
}

ul li {
  list-style: none;
}

.alpha {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .alpha:hover {
    opacity: 0.7;
  }
}

.wrap-alpha a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .wrap-alpha a:hover {
    opacity: 0.7;
  }
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.8) 0%);
  font-weight: 400;
}

.cursor {
  cursor: pointer;
}

.link a {
  color: #0071bc;
}
.link a:hover {
  color: #ffb700;
}

/** Loader **/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 9999;
  transition: all 2.6s cubic-bezier(0.49, 0.18, 0.16, 0.91);
}
#loader-bg .pd-name {
  max-width: 400px;
  display: block;
  margin: 0 auto 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loader-bg.on {
  opacity: 0;
  visibility: hidden;
}

#loader {
  position: fixed;
  z-index: 99999;
  background-color: #111;
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
#loader img {
  width: 30px;
  height: 30px;
  display: block;
}
#loader.on {
  opacity: 0;
  visibility: hidden;
}

/** ***********************************************

COMMON

*********************************************** **/
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  background-color: #fff;
  overflow-x: hidden;
  color: #111;
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 50px;
}
@media screen and (max-width: 900px) {
  .inner {
    padding: 0 20px;
  }
}

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

/* ==============================

	  ファイル読み込み 

  ==============================   */
.header {
  position: fixed;
  height: 80px;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
  border-bottom: solid 1px #eee;
}
.header .col-1 {
  width: 20%;
}
@media screen and (max-width: 834px) {
  .header .col-1 {
    width: 50%;
  }
}
.header .col-1 .logo {
  width: 100%;
  max-width: 220px;
  border-radius: 3px;
}
.header .col-2 {
  width: 60%;
}
@media screen and (max-width: 1100px) {
  .header .col-2 {
    width: 80%;
    padding-right: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .header .col-2 {
    display: none;
  }
}
.header .g-navi {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .g-navi a {
  font-weight: bold;
  color: #333;
  border-right: solid 1px #333;
  display: block;
  padding: 0 30px;
  font-size: 15px;
  white-space: nowrap;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .header .g-navi a {
    font-size: 13px;
  }
}
@media screen and (max-width: 1500px) {
  .header .g-navi a {
    padding: 0 20px;
  }
}
.header .g-navi a:hover {
  opacity: 0.7;
}
.header .g-navi li:last-child a {
  border-right: none;
}
.header .col-form {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .header .col-form {
    width: 330px;
  }
}
@media screen and (max-width: 600px) {
  .header .col-form {
    display: none;
  }
}
.header .col-form .bt-form {
  display: flex;
  background-color: #ffe200;
  padding: 20px;
  text-align: center;
  max-width: 200px;
  width: 100%;
  border-radius: 8px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: bold;
  color: #111;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .header .col-form .bt-form {
    font-size: 12px;
  }
}
.header .col-form .bt-form .txt {
  display: block;
}
.header .col-form .bt-form img {
  display: block;
  max-height: 10px;
  width: auto;
}
.header .col-form .bt-form:hover {
  opacity: 0.8;
  color: #111;
}
.header .lang {
  width: 20%;
}
@media screen and (max-width: 1500px) {
  .header .lang {
    width: 15%;
  }
}
@media screen and (max-width: 1100px) {
  .header .lang {
    display: none;
  }
}
.header .lang a {
  font-size: 14px;
  color: #333;
}
@media screen and (max-width: 1200px) {
  .header .lang a {
    font-size: 12px;
  }
}
.header .lang a:hover {
  text-decoration: underline;
}
.header .lang a.on {
  font-weight: bold;
}
.header .fa-globe {
  color: #333;
  position: absolute;
  top: 25px;
  right: 80px;
  z-index: 999;
  display: none;
  font-size: 25px;
}
@media screen and (max-width: 1100px) {
  .header .fa-globe {
    display: block;
  }
}

.top header {
  background-color: transparent;
  transition: 0.4s;
  border-bottom: none;
}
.top header.on {
  background-color: #fff;
  transition: 0.6s;
  border-bottom: solid 1px #eee;
}

.top .logo {
  opacity: 0;
  transition: opacity 0.6s;
}
.top .logo.on {
  opacity: 1;
}

#bt-nav {
  display: none;
}
@media screen and (max-width: 1024px) {
  #bt-nav {
    position: absolute;
    top: 15px;
    right: 20px;
    display: block;
    padding: 8px;
    cursor: pointer;
    z-index: 99999;
    border-radius: 3px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 500px) and (orientation: portrait) {
  #bt-nav {
    top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  #bt-nav span {
    position: absolute;
    width: 30px;
    display: block;
    border-top: solid 1.5px #111;
    transition: all 0.4s ease;
  }
  #bt-nav .item-01 {
    top: 10px;
    left: 10px;
  }
  #bt-nav .item-02 {
    top: 18px;
    left: 10px;
  }
  #bt-nav .item-03 {
    top: 26px;
    left: 10px;
  }
  #bt-nav .txt {
    font-size: 10px;
    top: 32px;
    border-top: none;
    width: 50px;
    text-align: center;
    left: 0px;
  }
  #bt-nav.on .item-01 {
    transform: rotate(-34deg);
    transform-origin: right;
  }
  #bt-nav.on .item-02 {
    width: 0;
  }
  #bt-nav.on .item-03 {
    transform: rotate(34deg);
    transform-origin: right;
  }
}

.wrap-sp-navi {
  position: fixed;
  top: 0;
  right: -51%;
  width: 50%;
  max-width: 400px;
  height: 100%;
  background-color: #fff;
  z-index: 99;
  padding-top: 80px;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  .wrap-sp-navi {
    width: 70%;
    right: -71%;
  }
}
.wrap-sp-navi .in {
  position: relative;
  z-index: 2;
}
.wrap-sp-navi .sp-navi {
  border-top: solid 1px #999;
}
.wrap-sp-navi li {
  text-align: left;
  border-bottom: solid 1px #999;
}
.wrap-sp-navi li a {
  display: block;
  padding: 20px;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .wrap-sp-navi li a {
    font-size: 14px;
  }
}
.wrap-sp-navi li a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #333;
  border-right: solid 1.5px #333;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  transform: rotate(45deg);
}
.wrap-sp-navi .lang2 {
  text-align: center;
  display: none;
  padding: 30px 0;
}
.wrap-sp-navi .lang2 a {
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .wrap-sp-navi .lang2 a {
    font-size: 14px;
  }
}
.wrap-sp-navi .lang2 a.on {
  font-weight: bold;
}
.wrap-sp-navi.on {
  right: 0;
}

.layer {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  transition: all 0.4s;
}
.layer.on {
  opacity: 1;
  visibility: visible;
}

#back-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  max-width: 50px;
  display: none;
}
@media screen and (max-width: 700px) {
  #back-top {
    bottom: 20px;
    right: 10px;
    max-width: 40px;
  }
}
#back-top img {
  width: 100%;
  height: auto;
}

.back-top {
  display: block;
  background-color: #111;
  color: #fff;
  padding: 20px;
  width: 100%;
  position: relative;
}
.back-top::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(-45deg);
  margin: 0 auto;
}

.ft-navi {
  display: none;
  flex-wrap: wrap;
  gap: 1px;
  background-color: #ddd;
}
@media screen and (max-width: 834px) {
  .ft-navi {
    display: flex;
  }
}
.ft-navi li {
  width: calc(20% - 1px);
}
@media screen and (max-width: 834px) {
  .ft-navi li {
    width: calc(50% - 1px);
  }
}
@media screen and (max-width: 834px) {
  .ft-navi li:last-child {
    width: 100%;
  }
}
.ft-navi li a {
  display: block;
  font-size: 14px;
  padding: 15px 20px;
  color: #333;
  font-weight: bold;
  background-color: #fff;
  position: relative;
}
.ft-navi li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1.5px #333;
  border-right: solid 1.5px #333;
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  transform: rotate(45deg);
}

footer {
  background-color: #fff;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
}
footer .inner {
  padding: 70px 50px 50px;
}
footer .ft-logo {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  footer .ft-logo {
    max-width: 200px;
  }
}
footer .copy {
  letter-spacing: 1.5px;
  font-size: 10px;
  color: #666;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .copy {
    letter-spacing: 1px;
  }
}

.mv {
  position: relative;
  height: 100dvh;
}
@media screen and (max-width: 834px) {
  .mv {
    height: 70dvh;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv {
    height: 80dvh;
  }
}
.mv .mv-slide .slick-slide {
  height: 100dvh;
}
@media screen and (max-width: 834px) {
  .mv .mv-slide .slick-slide {
    height: 70dvh;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv .mv-slide .slick-slide {
    height: 80dvh;
  }
}
.mv .mv-slide .slick-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100dvh;
}
@media screen and (max-width: 834px) {
  .mv .mv-slide .slick-slide img {
    height: 70dvh;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv .mv-slide .slick-slide img {
    height: 80dvh;
  }
}
.mv .wrap-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv .wrap-txt {
    padding-top: 30px;
  }
}
.mv .wrap-txt .txt-ifpc {
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  text-shadow: 0 2px 2px #666;
  font-size: clamp(40px, 6vw, 120px);
  margin-bottom: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv .wrap-txt .txt-ifpc {
    line-height: 1.2;
  }
}
.mv .wrap-txt .txt-ifpc .txt {
  display: block;
  margin-top: 20px;
  overflow: hidden;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv .wrap-txt .txt-ifpc .txt {
    margin-top: 0;
  }
}
.mv .wrap-txt .txt-ifpc .txt .txt-1 {
  transform: translateY(110%);
  transition: transform 0.8s;
  display: block;
}
.mv .wrap-txt .txt-ifpc .txt .txt-2 {
  transform: translateY(110%);
  transition: transform 0.8s 0.1s;
  display: block;
}
.mv .wrap-txt .txt-ifpc .txt .txt-3 {
  transform: translateY(110%);
  transition: transform 0.8s 0.2s;
  display: block;
}
.mv .wrap-txt .txt-ifpc.on .txt-1 {
  transform: translateY(0);
}
.mv .wrap-txt .txt-ifpc.on .txt-2 {
  transform: translateY(0);
}
.mv .wrap-txt .txt-ifpc.on .txt-3 {
  transform: translateY(0);
}
.mv .wrap-txt .desc {
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.6s 0.8s;
}
.mv .wrap-txt .desc.on {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 834px) {
  .mv .wrap-txt .desc {
    max-width: 80%;
    margin: 0 auto;
  }
}
.mv .wrap-txt .desc p {
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 2px #666;
  letter-spacing: 1.5px;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .mv .wrap-txt .desc p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv .wrap-txt .desc p {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .mv .wrap-txt .desc p {
    font-size: 13px;
    text-align: justify;
  }
}

.bt-entry {
  display: block;
  background-color: #ffe200;
  padding: 30px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  position: fixed;
  bottom: 20px;
  right: 0px;
  font-size: 20px;
  font-weight: bold;
  color: #111;
  z-index: 99;
  transition: opacity 0.6s 1.2s, right 0.6s 1.2s;
  box-shadow: 0 0 5px #666;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .bt-entry {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .bt-entry {
    opacity: 1;
    transform: translateX(0);
  }
}
.bt-entry .txt {
  display: block;
}
.bt-entry img {
  display: block;
  height: 12px;
  width: 12px;
  margin-left: 6px;
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
}
.bt-entry:hover {
  opacity: 0.8;
  color: #111;
}
@media screen and (max-width: 600px) {
  .bt-entry {
    padding: 20px;
    max-width: 90%;
    width: 100%;
    border-radius: 6px;
    bottom: 10px;
    right: 5%;
    font-size: 14px;
  }
}
.bt-entry.on {
  opacity: 1;
  right: 20px;
}

.bt-entry2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffe200;
  padding: 30px;
  text-align: center;
  width: 180px;
  height: 180px;
  border-radius: 100%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #111;
  z-index: 99;
  box-shadow: 0 0 5px #666;
}
@media screen and (max-width: 1024px) {
  .bt-entry2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .bt-entry2 {
    font-size: 14px;
  }
}
.bt-entry2 .txt {
  display: block;
}
.bt-entry2 img {
  display: block;
  max-height: 12px;
  width: auto;
  margin-top: 6px;
}

.title-h2 {
  display: flex;
  background-color: #0052a5;
  padding: 40px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .title-h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .title-h2 {
    padding: 30px 10px;
    font-size: 16px;
  }
}
.title-h2 .txt {
  display: block;
}
.title-h2 img {
  display: block;
  max-height: 14px;
  width: auto;
  margin-left: 5px;
}

span.bt-apply {
  padding: 40px 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  span.bt-apply {
    padding: 30px 10px;
    font-size: 14px;
  }
}

.sec-contents {
  padding-bottom: 100px;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 600px) {
  .sec-contents {
    padding-bottom: 50px;
  }
}
.sec-contents .inner {
  max-width: 1200px;
}
.sec-contents .block {
  padding: 50px 20px 0;
}
@media screen and (max-width: 600px) {
  .sec-contents .block {
    padding: 30px 0 0;
  }
}
.sec-contents .title-h3 {
  font-size: 24px;
  border-bottom: solid 1px #333;
  margin-bottom: 30px;
  padding-bottom: 10px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .sec-contents .title-h3 {
    font-size: 20px;
  }
}
.sec-contents p {
  font-size: 16px;
  margin-bottom: 1em;
  line-height: 1.6;
}
@media screen and (max-width: 1100px) {
  .sec-contents p {
    font-size: 14px;
  }
}
.sec-contents .cont {
  padding: 0 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-contents .cont {
    padding: 0;
  }
}
.sec-contents .block-1 .bold {
  margin-bottom: 30px;
}
.sec-contents .list-disc {
  margin: 0 20px;
}
.sec-contents .list-disc li {
  list-style: disc;
  margin-bottom: 10px;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .sec-contents .list-disc li {
    font-size: 14px;
  }
}
.sec-contents .wrap-table {
  margin-bottom: 30px;
}
.sec-contents .wrap-table table {
  width: 100%;
  border-spacing: 0;
}
@media screen and (max-width: 600px) {
  .sec-contents .wrap-table tr:first-child th {
    margin-top: 0;
  }
}
.sec-contents .wrap-table th {
  text-align: left;
  padding: 20px;
  border-bottom: solid 1px #ddd;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .sec-contents .wrap-table th {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .sec-contents .wrap-table th {
    padding: 10px;
    font-size: 13px;
    display: block;
    width: 100%;
    border-bottom: none;
    background-color: #eee;
    margin-top: 20px;
  }
}
.sec-contents .wrap-table td {
  padding: 20px;
  border-bottom: solid 1px #ddd;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .sec-contents .wrap-table td {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .sec-contents .wrap-table td {
    padding: 10px;
    font-size: 13px;
    display: block;
    border-bottom: none;
  }
}
.sec-contents .note {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 1024px) {
  .sec-contents .note {
    font-size: 12px;
  }
}
.sec-contents .wrap-info {
  background-color: #eee;
  padding: 30px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .sec-contents .wrap-info {
    font-size: 12px;
  }
}

.sup {
  font-size: 80%;
  vertical-align: super;
}

.notice {
  font-size: smaller;
}

.sec-results {
  position: relative;
}
.sec-results .title-result {
  background-color: #b39f62;
  padding: 15px;
  color: #fff;
  display: flex;
  gap: 0 10px;
  margin-bottom: 30px;
}
.sec-results .titile-result-sub {
  font-size: 18px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-results .titile-result-sub {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .titile-result-sub {
    font-size: 14px;
  }
}
.sec-results .titile-result-sub::before {
  content: "―";
  margin-right: 10px;
}
.sec-results .wrap-work.wrap-flex {
  display: flex;
  flex-wrap: wrap;
}
.sec-results .wrap-work.wrap-flex .wrap-img {
  width: 60%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .wrap-work.wrap-flex .wrap-img {
    width: 100%;
  }
}
.sec-results .wrap-work.wrap-flex .wrap-txt {
  width: 40%;
  padding-left: 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .wrap-work.wrap-flex .wrap-txt {
    width: 100%;
    padding-left: 0;
  }
}
.sec-results .wrap-img {
  margin-bottom: 20px;
}
.sec-results .wrap-img a {
  cursor: zoom-in;
}
.sec-results .wrap-txt .title {
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-results .wrap-txt .title {
    font-size: 20px;
  }
}
.sec-results .wrap-txt .name {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-results .wrap-txt .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .wrap-txt .name {
    font-size: 14px;
  }
}
.sec-results .wrap-txt .name .country {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-results .wrap-txt .name .country {
    font-size: 12px;
  }
}
.sec-results .wrap-txt .filter {
  display: flex;
  gap: 0 10px;
  align-items: center;
  margin-bottom: 20px;
}
.sec-results .wrap-txt .filter .fl {
  display: block;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  padding: 3px 10px;
  background-color: #000;
}
@media screen and (max-width: 1024px) {
  .sec-results .wrap-txt .filter .fl {
    font-size: 10px;
  }
}
.sec-results .wrap-txt .filter .filter-name {
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 3px 10px;
}
@media screen and (max-width: 1024px) {
  .sec-results .wrap-txt .filter .filter-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .wrap-txt .filter .filter-name {
    font-size: 14px;
  }
}
.sec-results .wrap-txt .message {
  margin-bottom: 30px;
}
.sec-results .wrap-judges .title-comment {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #333;
}
.sec-results .wrap-judges .wrap-judge {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: solid 1px #ddd;
}
.sec-results .wrap-judges .wrap-judge .judge {
  display: flex;
  gap: 0 15px;
  align-items: center;
  margin-bottom: 10px;
}
.sec-results .wrap-judges .wrap-judge .judge img {
  display: block;
  width: 50px;
  height: auto;
}
.sec-results .wrap-judges .wrap-judge .judge .judge-name {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .sec-results .wrap-judges .wrap-judge .judge .judge-name {
    font-size: 14px;
  }
}
.sec-results .wrap-judges .wrap-judge .comment p {
  font-size: 15px;
}
.sec-results .list-ex {
  display: flex;
  gap: 30px 20px;
  flex-wrap: wrap;
}
.sec-results .list-ex li {
  width: calc(25% - 15px);
  text-align: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .list-ex li {
    width: calc(50% - 20px);
  }
}
.sec-results .list-ex .list-ex__wrap-img {
  height: 200px;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/common/loader-oval-bk.svg);
  background-size: 20px;
  background-position: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .list-ex .list-ex__wrap-img {
    height: 120px;
  }
}
.sec-results .list-ex .list-ex__wrap-img a {
  cursor: zoom-in;
}
.sec-results .list-ex .list-ex__wrap-img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 200px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .list-ex .list-ex__wrap-img img {
    max-height: 120px;
  }
}
.sec-results .list-ex .title {
  font-size: 14px;
  font-weight: bold;
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .sec-results .list-ex .title {
    font-size: 12px;
  }
}
.sec-results .list-ex .name {
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .sec-results .list-ex .name {
    font-size: 12px;
  }
}
.sec-results .list-ex .name .country {
  font-size: smaller;
}
.sec-results .list-ex .filter {
  align-items: center;
}
.sec-results .list-ex .filter .fl {
  display: block;
  font-size: 10px;
  color: #fff;
  font-weight: bold;
  padding: 3px 5px;
  background-color: #000;
  margin: 0 auto 5px;
  width: -moz-fit-content;
  width: fit-content;
}
.sec-results .list-ex .filter .filter-name {
  display: block;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .sec-results .list-ex .filter .filter-name {
    font-size: 10px;
  }
}
.sec-results .wrap-sticky {
  position: absolute;
  left: 0;
  top: 50px;
  width: 20%;
  height: calc(100% - 80px);
}
@media screen and (max-width: 1400px) {
  .sec-results .wrap-sticky {
    display: none;
  }
}
.sec-results .sticky-menu {
  position: sticky;
  top: 100px;
  left: 0;
  padding: 0 20px;
}
.sec-results .sticky-menu li {
  margin-bottom: 10px;
}
.sec-results .sticky-menu li a.firstLevel {
  color: #333;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-results .sticky-menu li a.firstLevel {
    font-size: 12px;
  }
}
.sec-results .sticky-menu li a.firstLevel::before {
  content: "●";
  margin-right: 5px;
  font-size: 10px;
  display: inline-block;
  vertical-align: middle;
}
.sec-results .sticky-menu .sub {
  margin-left: 10px;
}
.sec-results .sticky-menu .sub li {
  margin-bottom: 0px;
}
.sec-results .sticky-menu .sub a {
  color: #333;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .sec-results .sticky-menu .sub a {
    font-size: 10px;
  }
}
.sec-results .sticky-menu .sub a::before {
  content: "―";
  margin-right: 5px;
  font-size: 10px;
  display: inline-block;
  vertical-align: middle;
}
.sec-results .inline-menu {
  padding: 30px 20px 0;
  display: none;
}
@media screen and (max-width: 1400px) {
  .sec-results .inline-menu {
    display: block;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-results .inline-menu {
    padding: 20px 0;
  }
}
.sec-results .inline-menu ul {
  display: flex;
  gap: 5x;
  flex-wrap: wrap;
}
.sec-results .inline-menu ul li {
  width: 50%;
  padding: 2px;
}
.sec-results .inline-menu ul a {
  color: #333;
  background-color: #eee;
  font-size: 14px;
  display: block;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-results .inline-menu ul a {
    font-size: 12px;
  }
}
.sec-results .inline-menu ul a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1.5px #333;
  border-right: solid 1.5px #333;
  transform: rotate(135deg);
  margin: 5px auto 0;
}

.page-hd {
  text-align: center;
  padding: 50px;
  background-color: #eee;
  margin-top: 80px;
}
.page-hd h1 {
  letter-spacing: 3px;
  font-size: clamp(16px, 3vw, 30px);
}

.profile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  border-bottom: solid 1px #ddd;
  padding-bottom: 30px;
  flex-wrap: wrap;
}
.profile .facePic {
  width: 25%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .profile .facePic {
    width: 50%;
  }
}
.profile .facePic img {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
.profile .txts {
  width: 75%;
  padding-left: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .profile .txts {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
}
.profile .txts .nameTxt {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .profile .txts .nameTxt {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .profile .txts .nameTxt {
    font-size: 14px;
  }
}
.profile .txts .nameTxt02 {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.8;
}
@media screen and (max-width: 1100px) {
  .profile .txts .nameTxt02 {
    font-size: 14px;
  }
}
.profile:last-child {
  border-bottom: none;
}

.dl01 dt {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .dl01 dt {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .dl01 dt {
    font-size: 14px;
  }
}
.dl01 dt::before {
  content: "Q.";
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  text-align: center;
  padding-top: 1px;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .dl01 dt::before {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .dl01 dt::before {
    font-size: 14px;
  }
}
.dl01 dd {
  margin-bottom: 20px;
  font-size: 16px;
  border-bottom: solid 1px #ddd;
  padding-bottom: 20px;
  line-height: 1.6;
}
.dl01 dd::before {
  content: "A.";
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  text-align: center;
  padding-top: 1px;
  font-size: 18px;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .dl01 dd::before {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .dl01 dd::before {
    font-size: 14px;
  }
}

.wrap-form {
  max-width: 800px;
  margin: 0 auto;
}
.wrap-form table {
  width: 100%;
}
.wrap-form th {
  font-size: 16px;
  text-align: left;
  padding: 20px 20px 0;
  white-space: nowrap;
  vertical-align: top;
}
@media screen and (max-width: 1100px) {
  .wrap-form th {
    font-size: 14px;
  }
}
.wrap-form th .req {
  color: red;
  margin-left: 3px;
}
@media screen and (max-width: 600px) {
  .wrap-form th {
    display: block;
    width: 100%;
  }
}
.wrap-form td {
  font-size: 16px;
  text-align: left;
  padding: 10px 20px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .wrap-form td {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-form td {
    display: block;
    width: 100%;
  }
}
.wrap-form td input[type=text],
.wrap-form td input[type=mail] {
  width: 100%;
  border: solid 1px #ddd;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
}
.wrap-form td textarea {
  width: 100%;
  border: solid 1px #ddd;
  padding: 10px;
  font-size: 16px;
  height: 300px;
  border-radius: 6px;
}
.wrap-form .submitBox {
  text-align: center;
}
.wrap-form .submitBox .bt-submit {
  display: block;
  width: 100%;
  max-width: 280px;
  background-color: #0052a5;
  border-radius: 6px;
  padding: 20px;
  margin: 30px auto 0;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .wrap-form .submitBox .bt-submit:hover {
    opacity: 0.7;
  }
}
.wrap-form .submitBox .bt-submit::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  transform: rotate(45deg);
}
.wrap-form p.error {
  color: #de1c24;
  font-weight: bold;
  font-size: 14px;
  padding: 5px;
  background-color: floralwhite;
}

#wrap-confirm {
  width: 800px;
  height: 90%;
  background-color: #ddd;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  overflow: auto;
  display: none;
}
@media screen and (max-width: 600px) {
  #wrap-confirm {
    width: 90%;
    top: 5%;
    left: 5%;
    transform: translate(0, 0);
    background-color: #fff;
  }
}
#wrap-confirm table {
  width: 100%;
  height: 100%;
  border-spacing: 1px;
}
#wrap-confirm th {
  padding: 15px;
  white-space: nowrap;
  background-color: #eee;
}
@media screen and (max-width: 600px) {
  #wrap-confirm th {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: left;
  }
}
#wrap-confirm td {
  padding: 15px;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  #wrap-confirm td {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
#wrap-confirm .send {
  width: 200px;
  border: none;
  background-color: #de1c24;
  font-size: 14px;
  display: inline-block;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  position: relative;
}
@media screen and (max-width: 600px) {
  #wrap-confirm .send {
    margin: 0 auto 20px;
    display: block;
  }
}
#wrap-confirm .send .loader {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}
#wrap-confirm .back {
  width: 200px;
  border: none;
  background-color: #333;
  font-size: 14px;
  display: inline-block;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}
@media screen and (max-width: 600px) {
  #wrap-confirm .back {
    display: block;
    margin: 0 auto;
  }
}
#wrap-confirm p.note {
  font-size: 14px;
  margin-bottom: 10px;
}

.bg-layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9998;
  display: none;
}

.bg-layer .bt-close {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: 0px;
  right: 20px;
  font-style: normal;
}
@media screen and (max-width: 600px) {
  .bg-layer .bt-close {
    display: none;
    font-size: 20px;
  }
}

.sp {
  display: none;
}

.slick {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
.slick .slick-slide {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.slick .slick-slide img {
  width: 100%;
  height: auto;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.slick-arrow i {
  width: 12px;
  height: 12px;
  border-top: solid 1px #eee;
  border-right: solid 1px #eee;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .slick-arrow i {
    width: 8px;
    height: 8px;
  }
}
.slick-arrow.prev {
  left: 0;
}
.slick-arrow.prev i {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.slick-arrow.next {
  right: 0;
}
.slick-arrow.next i {
  transform: translate(-50%, -50%) rotate(45deg);
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.fa-angle-left {
  width: 50px;
  height: 50px;
  display: block;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
  transform: rotate(-45deg);
}

.fa-angle-right {
  width: 50px;
  height: 50px;
  display: block;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .slick-dots {
    bottom: 0;
  }
}

.slick-dots li {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 8px;
  background-color: #ccc;
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
  position: relative;
}

.slick-dots li.slick-active {
  background-color: #eee;
}
.slick-dots li.slick-active::after {
  content: "";
  display: block;
  border: solid 1px #eee;
  width: 18px;
  height: 18px;
  border-radius: 100px;
  position: absolute;
  top: -6px;
  left: -6px;
}

.slide-dots {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 100%;
  z-index: 10;
  text-align: right;
  padding: 20px;
}

.slide-dots li {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 8px;
  background-color: #666;
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
  position: relative;
}

.slide-dots li.slick-active {
  background-color: #eee;
}
.slide-dots li.slick-active::after {
  content: "";
  display: block;
  border: solid 1px #333;
  width: 18px;
  height: 18px;
  border-radius: 100px;
  position: absolute;
  top: -6px;
  left: -6px;
}
.slide-dots li.slick-active .bd_0 {
  animation: bd_draw 6s ease-out forwards;
}
.slide-dots li.slick-active .bd_1 {
  animation: bd_draw 6s ease-out forwards;
}

.circle {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 2;
}

.bd_0 {
  stroke-dasharray: 189 191;
  stroke-dashoffset: 190;
}

.bd_1 {
  stroke-dasharray: 186 188;
  stroke-dashoffset: 187;
}

@keyframes bd_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes bd_fade {
  0% {
    stroke-opacity: 1;
  }
  92.5925925925926% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

.visible {
  opacity: 1;
  transition: opacity 1s;
}

.invisible {
  opacity: 0;
}

.fromTopIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.fromTopOut {
  transform: translate(0, -20px);
  opacity: 0;
}

.fromBottomIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.fromBottomOut {
  transform: translate(0, 20px);
  opacity: 0;
}

.fromLeftIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.fromLeftOut {
  transform: translate(-20px, 0);
  opacity: 0;
}

.fromRightIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.fromRightOut {
  transform: translate(20px, 0);
  opacity: 0;
}

.scaleUpIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.scaleUpOut {
  transform: scale(1.2, 1.2);
  opacity: 0;
}

.scaleDownIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.scaleDownOut {
  transform: scale(0.7, 0.7);
  opacity: 0;
}

.rotateIn {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  transition: opacity 1s, transform 1s;
}

.rotateOut {
  transform: rotate(30deg) scale(0.9);
  opacity: 0;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.4s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

.speed1 {
  transition-duration: 0.1s;
}

.speed2 {
  transition-duration: 0.2s;
}

.speed3 {
  transition-duration: 0.3s;
}

.speed4 {
  transition-duration: 0.4s;
}

.speed5 {
  transition-duration: 0.5s;
}

.speed6 {
  transition-duration: 0.6s;
}

.speed7 {
  transition-duration: 0.7s;
}

.speed8 {
  transition-duration: 0.8s;
}

.speed9 {
  transition-duration: 0.9s;
}

.speed10 {
  transition-duration: 1s;
}

.carousel {
  position: relative;
  box-sizing: border-box;
}

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

.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

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

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}/*# sourceMappingURL=common.css.map */