@charset "UTF-8";
/*----------------------------------------------

  FUNCTIONS

----------------------------------------------*/
/*----------------------------------------------

  VARIABLE

----------------------------------------------*/
:root {
  --base-font-color: #434343;
  --key-color: #004EA2;
  --gutter: 20;
  --container-width: 1000;
  --base-font-size: 14;
}

/*----------------------------------------------

  FONT ICON

----------------------------------------------*/
/*----------------------------------------------

  FOUNDATION

----------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

svg {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}
a:hover img {
  opacity: 1;
}
a:hover {
  outline: none;
  color: inherit;
}

a[target=_blank]:after {
  display: none;
}

b,
strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  max-height: 100%;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*---------------------------------------
   BASE
---------------------------------------*/
body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  color: var(--base-font-color);
  background-color: #fff;
  font-size: min(calc(12 / 375 * 100vw), calc(var(--base-font-size) * 1px));
  line-height: 2;
}

/*----------------------------------------------

  LAYOUT

----------------------------------------------*/
/*---------------------------------------
   l-wrapper
---------------------------------------*/
.l-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/*---------------------------------------
   l-container
---------------------------------------*/
.l-container {
  width: 100%;
  max-width: calc((var(--container-width) + var(--gutter) * 2) * 1px);
  padding: 0 calc(var(--gutter) * 1px);
  margin-left: auto;
  margin-right: auto;
}

/*---------------------------------------
   l-header
---------------------------------------*/
.l-header {
  width: 100%;
  height: min( calc(50 / 375 * 100vw), 90px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 1001;
}
.l-header__body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 calc(var(--gutter) * 1px);
}
@media (min-width: 992px) {
  .l-header__body {
    padding: 0 calc(var(--gutter) * 2px);
  }
}
.l-header__btn {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
  width: 18px;
  height: 15px;
  margin-right: 14px;
  margin-left: -10px;
}
.l-header__btn span {
  width: 100%;
  height: 1px;
  transition: all 0.4s;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.l-header__btn span:nth-child(2) {
  margin-top: 7px;
}
.l-header__btn span:nth-child(3) {
  margin-top: 14px;
}
.l-header__btn.opened span {
  transform: translateY(7px) rotate(-315deg);
}
.l-header__btn.opened span:nth-child(2) {
  opacity: 0;
}
.l-header__btn.opened span:nth-child(3) {
  transform: translateY(-7px) rotate(315deg);
}
@media (min-width: 992px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__logo {
  width: min( calc(46 / 375 * 100vw), 64px);
  position: relative;
  top: -3px;
}
.l-header__nav {
  display: none;
}
@media (min-width: 992px) {
  .l-header__nav {
    display: block;
    margin-left: auto;
  }
  .l-header__nav ul {
    display: flex;
  }
  .l-header__nav li {
    font-size: min( calc(15 / 1920 * 100vw), 13px);
    border-left: 1px solid #C7C8C8;
  }
  .l-header__nav li:first-child {
    border-left: none;
  }
  .l-header__nav li a {
    font-weight: 500;
    line-height: 1.5em;
    display: inline-block;
    color: #000;
    padding: 5px 15px;
  }
}

/*---------------------------------------
   l-side-nav
---------------------------------------*/
.l-side-nav {
  text-align: center;
  display: block;
  position: fixed;
  top: min( calc(50 / 375 * 100vw), 90px);
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background: #004EA2;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  width: 100%;
  height: calc(100vh - min( calc(50 / 375 * 100vw), 90px));
  padding: 16px 20px;
  box-sizing: border-box;
  z-index: -1;
  overflow-y: scroll;
}
.l-side-nav.opened {
  visibility: visible;
  opacity: 1;
  z-index: 200;
}
.l-side-nav nav ul {
  width: 240px;
  margin: 0 auto;
}
.l-side-nav nav ul li {
  border-bottom: 1px solid #fff;
}
.l-side-nav nav ul li a {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5em;
  display: block;
  padding: 25px 0 12px;
}
.l-side-nav nav ._img1 {
  display: block;
  width: 188px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}

/*---------------------------------------
   l-footer
---------------------------------------*/
.l-footer__info {
  background-color: var(--key-color);
  color: #ffffff;
  padding-top: min( calc(30 / 375 * 100vw), 50px);
  padding-bottom: min( calc(30 / 375 * 100vw), 50px);
}
.l-footer__info .title {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  padding: min( calc(4 / 375 * 100vw), 8px) 0;
  border: 1px solid #fff;
  font-size: min( calc(10 / 375 * 100vw), 16px);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .l-footer__info .title {
    max-width: 495px;
  }
}
.l-footer__info .address {
  font-size: min( calc(13 / 375 * 100vw), 20px);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-top: min( calc(10 / 375 * 100vw), 24px);
}
.l-footer__info .contact {
  margin-top: min( calc(10 / 375 * 100vw), 24px);
}
.l-footer__info .contact .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min( calc(13 / 375 * 100vw), 20px);
  font-weight: bold;
  line-height: 1;
}
.l-footer__info .contact .mail img {
  display: block;
  width: min( calc(19 / 375 * 100vw), 39px);
  margin-right: 10px;
}
.l-footer__info .contact .attention {
  display: flex;
  justify-content: center;
  margin-top: min( calc(10 / 375 * 100vw), 24px);
  font-size: min( calc(9 / 375 * 100vw), 14px);
  width: 100%;
  max-width: 495px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer__nav {
  background: #ffffff;
  text-align: center;
  padding: 12px 10px;
}
.l-footer__nav li {
  font-size: min( calc(10 / 375 * 100vw), 16px);
  font-weight: bold;
  display: inline-block;
}
.l-footer__nav a {
  color: #000;
}
.l-footer__copy {
  padding: 24px 0;
  background-color: var(--key-color);
  color: #ffffff;
}
.l-footer__copy .copy {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min( calc(7 / 375 * 100vw), 16px);
}
.l-footer__copy .copy img {
  display: block;
  display: block;
  width: min( calc(36 / 375 * 100vw), 64px);
  margin-right: min( calc(14 / 375 * 100vw), 24px);
}

/*---------------------------------------
   l-main
---------------------------------------*/
/*----------------------------------------------

  OBJECT - COMPONENT

----------------------------------------------*/
/*---------------------------------------
   hover
---------------------------------------*/
/* c-hover-opacity
---------------------------------------*/
.c-hover-opacity {
  display: block;
  transition: opacity 0.3s;
}
.c-hover-opacity:hover {
  cursor: pointer;
  opacity: 0.7;
}

/* c-hover-key-color
---------------------------------------*/
.c-hover-key-color {
  display: block;
  transition: color 0.3s;
  color: inherit;
}
.c-hover-key-color:hover {
  color: var(--key-color);
}

/*---------------------------------------
   img
---------------------------------------*/
/* c-img-cover
---------------------------------------*/
.c-img-cover {
  display: block;
  overflow: hidden;
  position: relative;
}
.c-img-cover:before {
  content: "";
  display: block;
}
.c-img-cover img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/* c-img-contain
---------------------------------------*/
.c-img-contain {
  display: block;
  overflow: hidden;
  position: relative;
}
.c-img-contain:before {
  content: "";
  display: block;
}
.c-img-contain img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

/* c-delay
---------------------------------------*/
.c-delay {
  transition: 0.5s;
  opacity: 0;
}
.c-delay.loaded {
  opacity: 1;
}

/* c-section
---------------------------------------*/
.c-section {
  padding-top: min( calc(32 / 375 * 100vw), 100px);
  padding-bottom: min( calc(32 / 375 * 100vw), 100px);
}
.c-section--child {
  padding: 0;
  margin-top: min( calc(30 / 375 * 100vw), 80px);
}

/*---------------------------------------
   c-list
---------------------------------------*/
.c-list {
  list-style: disc;
  padding-left: 1em;
}

/*----------------------------------------------

  OBJECT - PROJECT

----------------------------------------------*/
/*---------------------------------------
   p-common-title
---------------------------------------*/
.p-common-title {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--key-color);
  margin-bottom: min( calc(32 / 375 * 100vw), 60px);
}
.p-common-title .main {
  font-size: min( calc(25 / 375 * 100vw), 25px);
  letter-spacing: -0.05em;
  position: relative;
  padding-bottom: 6px;
}
.p-common-title .main::before {
  content: "";
  display: block;
  width: 100%;
  min-width: 262px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--key-color);
}
.p-common-title .sub {
  font-size: min( calc(10 / 375 * 100vw), 10px);
  letter-spacing: 0.05em;
  padding-top: 6px;
}
.p-common-title--white {
  color: #ffffff;
}
.p-common-title--white .main::before {
  background-color: #ffffff;
}

/*---------------------------------------
   p-sub-title
---------------------------------------*/
.p-sub-title {
  font-size: min( calc(16 / 375 * 100vw), 20px);
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.33333;
}

/*---------------------------------------
   p-common-btn
---------------------------------------*/
.p-common-btn {
  width: 100%;
  max-width: 268px;
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}
.p-common-btn a,
.p-common-btn button {
  cursor: pointer;
  font-weight: bold;
  font-size: min( calc(16 / 375 * 100vw), 16px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--key-color);
  background-color: #ffffff;
  color: var(--key-color);
}
.p-common-btn a::after,
.p-common-btn button::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-image: url(../images/ico_more_blue.svg);
  background-size: 100%;
  margin-left: 6px;
}
.p-common-btn--sm a,
.p-common-btn--sm button {
  font-size: min( calc(15 / 375 * 100vw), 15px);
}
.p-common-btn--key {
  height: 94px;
}
.p-common-btn--key a,
.p-common-btn--key button {
  color: #ffffff;
  background-color: var(--key-color);
  font-size: min( calc(22 / 375 * 100vw), 22px);
}
.p-common-btn--key a::before,
.p-common-btn--key button::before {
  content: "";
  display: block;
  border: 1px solid #ffffff;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  left: 4px;
  top: 4px;
}
.p-common-btn--key a::after,
.p-common-btn--key button::after {
  width: 20px;
  height: 20px;
  background-image: url(../images/ico_more_white.svg);
  margin-left: 18px;
}
.p-common-btn--white a,
.p-common-btn--white button {
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: transparent;
}
.p-common-btn--white a::after,
.p-common-btn--white button::after {
  background-image: url(../images/ico_more_white.svg);
}
.p-common-btn--black a,
.p-common-btn--black button {
  color: var(--base-font-color);
  border: 1px solid var(--base-font-color);
}
.p-common-btn--black a::after,
.p-common-btn--black button::after {
  background-image: url(../images/ico_more_black.svg);
}
.p-common-btn--disable {
  cursor: not-allowed;
}
.p-common-btn--disable a,
.p-common-btn--disable button {
  color: #ffffff;
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
  pointer-events: none;
}

/*---------------------------------------
   p-column
---------------------------------------*/
.p-column {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -15px;
  overflow: hidden;
}
.p-column__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-column .item {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 15px;
}
.p-column .item img {
  width: 100%;
}
@media (min-width: 568px) {
  .p-column .item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .p-column--item-3 .item {
    width: 33.33333%;
  }
}
@media (min-width: 768px) {
  .p-column--item-4-6 .item:first-child {
    width: 40%;
  }
  .p-column--item-4-6 .item:last-child {
    width: 60%;
  }
}
.p-column--gutter-lg {
  margin-left: -25px;
  margin-right: -25px;
}
.p-column--gutter-lg .item {
  padding-left: 25px;
  padding-right: 25px;
}

/*---------------------------------------
   p-modal
---------------------------------------*/
.p-modal {
  display: none;
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-backdrop-filter: blur(15.1765003204px);
          backdrop-filter: blur(15.1765003204px);
  --webkit-backdrop-filter: blur(15.17650032043457px);
  background-color: rgba(234, 238, 242, 0.15);
}
.p-modal__bg {
  z-index: 299;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.p-modal__content {
  z-index: 300;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  width: 90%;
  max-width: 1200px;
  overflow-y: scroll;
  padding: 60px 30px;
  border-radius: 10px;
  background: #fff;
}
.p-modal__content .name {
  font-size: min( calc(17 / 375 * 100vw), 1.7rem);
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 3px;
}
.p-modal__content .title {
  font-size: min( calc(30 / 375 * 100vw), 3rem);
  font-weight: 700;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.p-modal__content-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 31px;
  height: 31px;
  cursor: pointer;
}
.p-modal__content-close span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}
.p-modal__content-close span:nth-of-type(1) {
  top: 0;
  transform: translateY(15px) rotate(-315deg);
}
.p-modal__content-close span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-15px) rotate(315deg);
}
.p-modal__gallery {
  z-index: 300;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  width: 100%;
  max-width: 700px;
  padding: 45px 30px;
}
.p-modal__gallery__body {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.p-modal__gallery__item img {
  width: 100%;
}
.p-modal__gallery__close {
  position: absolute;
  top: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}
.p-modal__gallery__close img {
  width: 20px;
}
.p-modal__gallery__next, .p-modal__gallery__prev {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1;
  margin-top: -15px;
}
.p-modal__gallery__next img, .p-modal__gallery__prev img {
  width: 100%;
}
.p-modal__gallery__next {
  right: 10px;
}
.p-modal__gallery__prev {
  left: 10px;
}
.p-modal__gallery__caption {
  text-align: center;
  font-size: min( calc(15 / 375 * 100vw), 15px);
  font-weight: bold;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/*---------------------------------------
   p-works-list
---------------------------------------*/
.p-works-list {
  overflow: hidden;
}
.p-works-list__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: -40px;
}
.p-works-list__item {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 40px;
  cursor: pointer;
}
@media (min-width: 568px) {
  .p-works-list__item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .p-works-list__item {
    width: 33.33333%;
  }
}
.p-works-list__item-img {
  padding-top: 93.758%;
  position: relative;
}
.p-works-list__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}
.p-works-list__item-name {
  font-size: min( calc(12 / 375 * 100vw), 1.4rem);
  line-height: 1.5em;
  text-align: center;
  margin-top: 8px;
}
.p-works-list__item-title {
  font-size: min( calc(15 / 375 * 100vw), 1.8rem);
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
}

/*---------------------------------------
   p-works-detail
---------------------------------------*/
.p-works-detail {
  margin-left: -25px;
  margin-right: -25px;
  margin-top: -15px;
  overflow: hidden;
}
.p-works-detail__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-works-detail__img {
  width: 100%;
  height: auto;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .p-works-detail__img {
    width: auto;
    max-width: 400px;
    height: 240px;
  }
}
.p-works-detail__img img {
  width: 100%;
}
.p-works-detail__txt {
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .p-works-detail__txt {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    min-height: 300px;
    align-items: center;
  }
  .p-works-detail__txt p {
    width: 100 .p-works-detail__txt p;
  }
}

/*----------------------------------------------

  PAGE - INDEX

----------------------------------------------*/
/*---------------------------------------
   idx-fv
---------------------------------------*/
.idx-fv {
  width: 100%;
  margin-top: min( calc(50 / 375 * 100vw), 90px);
}
.idx-fv img {
  display: block;
  width: 100%;
}

/*---------------------------------------
   idx-scroll
---------------------------------------*/
.idx-scroll {
  background-color: #ffffff;
  padding: 12px;
  text-align: center;
}
.idx-scroll .txt {
  font-family: "roboto";
  font-size: min( calc(10 / 375 * 100vw), 12px);
}
.idx-scroll .bar {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 8px;
  height: min( calc(24 / 375 * 100vw), 48px);
  overflow: hidden;
}
.idx-scroll .bar::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--base-font-color);
  position: absolute;
  top: 0;
  left: 50%;
}
.idx-scroll .bar::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--base-font-color);
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -3px;
  animation: 2s scroll infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    top: -10px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: calc(100% + 10px);
  }
}
/*---------------------------------------
   idx-about
---------------------------------------*/
.idx-about {
  background-color: var(--key-color);
  color: #ffffff;
}
.idx-about__lead {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  line-height: 1.5;
  font-size: min( calc(20 / 375 * 100vw), 30px);
  margin-bottom: min( calc(20 / 375 * 100vw), 40px);
}
.idx-about__content p {
  margin-bottom: 1.25em;
  text-align: center;
}

/*---------------------------------------
   idx-designtheme
---------------------------------------*/
.idx-designtheme__title {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: min( calc(32 / 375 * 100vw), 40px);
  margin-top: -30px;
}
.idx-designtheme__title .main {
  font-size: min( calc(54 / 375 * 100vw), 109px);
  letter-spacing: -0.05em;
  color: var(--key-color);
}
.idx-designtheme__title .sub {
  font-size: min( calc(14 / 375 * 100vw), 30px);
  letter-spacing: -0.05em;
  margin-top: 1em;
}
.idx-designtheme__title--sm .main {
  font-size: min( calc(40 / 375 * 100vw), 109px);
}
.idx-designtheme__content p {
  margin-bottom: 1.25em;
  text-align: center;
}

/*---------------------------------------
   idx-works
---------------------------------------*/
.idx-works {
  padding-top: 0;
}

/*---------------------------------------
   idx-award
---------------------------------------*/
.idx-award {
  background-color: var(--key-color);
  color: #ffffff;
}
.idx-award__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: min( calc(32 / 375 * 100vw), 40px);
}
.idx-award__title .title {
  text-align: center;
  line-height: 1;
}
.idx-award__title .title .sub {
  font-family: "roboto", serif;
  font-size: min( calc(10 / 375 * 100vw), 10px);
}
.idx-award__title .title .main {
  font-weight: bold;
  font-size: min( calc(35 / 375 * 100vw), 35px);
  margin-top: 4px;
}
.idx-award__title--key-color .title {
  color: var(--key-color);
}
.idx-award__title--key-color::before {
  background-image: url(../images/award_ttl_l-b.svg) !important;
}
.idx-award__title--key-color::after {
  background-image: url(../images/award_ttl_r-b.svg) !important;
}
.idx-award__title--sm .title .main {
  font-size: min( calc(20 / 375 * 100vw), 35px);
}
.idx-award__title::before, .idx-award__title::after {
  content: "";
  width: 29px;
  height: 61px;
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0 6px;
}
.idx-award__title::before {
  background-image: url(../images/award_ttl_l.svg);
}
.idx-award__title::after {
  background-image: url(../images/award_ttl_r.svg);
}
.idx-award__content p {
  margin-bottom: 1.25em;
  text-align: center;
}
.idx-award__img-list {
  width: 100%;
  max-width: 655px;
  margin-left: auto;
  margin-right: auto;
}
.idx-award__img-list-item .item-more {
  display: block;
  position: relative;
  cursor: pointer;
}
.idx-award__img-list-item .item-more::before {
  content: "";
  display: block;
  width: 57px;
  height: 18px;
  background-image: url(../images/link-more.svg);
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/*---------------------------------------
   idx-judge
---------------------------------------*/
.idx-judge__list-item .title {
  padding: 5px;
  text-align: center;
  background-color: var(--key-color);
  color: #ffffff;
  font-weight: bold;
  font-size: min( calc(12 / 375 * 100vw), 12px);
  line-height: 1;
  margin-bottom: 5px;
}
.idx-judge__list-item .name {
  border-bottom: 1px solid var(--base-font-color);
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1;
}
.idx-judge__list-item .name .main {
  font-size: min( calc(12 / 375 * 100vw), 12px);
  font-weight: bold;
  margin-right: 14px;
}
.idx-judge__list-item .name .sub {
  font-size: min( calc(10 / 375 * 100vw), 10px);
}
.idx-judge__list-item .content {
  margin-top: 12px;
  font-size: min( calc(12 / 375 * 100vw), 12px);
}

/*---------------------------------------
   idx-information
---------------------------------------*/
.idx-information__content p {
  margin-bottom: 1.25em;
  text-align: center;
}

/*---------------------------------------
   idx-scissors
---------------------------------------*/
.idx-scissors {
  background-color: var(--key-color);
  color: #ffffff;
}
.idx-scissors__title {
  margin-bottom: min( calc(32 / 375 * 100vw), 40px);
  font-weight: bold;
  font-size: min( calc(23 / 375 * 100vw), 30px);
  text-align: center;
}
.idx-scissors__list-item {
  padding-top: 30px;
}
.idx-scissors__list-item:first-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .idx-scissors__list-item {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #ffffff;
  }
  .idx-scissors__list-item:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .idx-scissors__list-item:last-child {
    padding-bottom: 0;
  }
  .idx-scissors__list-item .p-common-btn {
    margin-left: 0;
  }
}

/*---------------------------------------
   idx-overview
---------------------------------------*/
.idx-overview__title {
  padding: min( calc(8 / 375 * 100vw), 10px);
  text-align: center;
  background-color: #F5F5F5;
  font-weight: bold;
  font-size: min( calc(14 / 375 * 100vw), 20px);
  line-height: 1;
  margin-bottom: min( calc(15 / 375 * 100vw), 50px);
}
.idx-overview__item {
  margin-top: min( calc(25 / 375 * 100vw), 40px);
}
.idx-overview__item:first-child {
  margin-top: 0;
}
.idx-overview__terms {
  margin-top: min( calc(30 / 375 * 100vw), 100px);
  width: 100%;
  height: min( calc(398 / 375 * 100vw), 435px);
  overflow-y: scroll;
  padding: min( calc(30 / 375 * 100vw), 30px) min( calc(20 / 375 * 100vw), 60px);
  border: 1px solid var(--base-font-color);
  display: block;
}
.idx-overview__terms .title {
  font-size: min( calc(14 / 375 * 100vw), 20px);
  font-weight: bold;
  text-align: center;
}

/*---------------------------------------
   idx-support
---------------------------------------*/
.idx-support {
  background-color: #F0F0F0;
}
.idx-support__title {
  text-align: center;
  font-weight: bold;
  font-size: min( calc(17 / 375 * 100vw), 17px);
  margin-bottom: min( calc(25 / 375 * 100vw), 25px);
}

/*----------------------------------------------

  OBJECT - UTILITY

----------------------------------------------*/
/*---------------------------------------
   font
---------------------------------------*/
.u-bold {
  font-weight: bold;
}

/*---------------------------------------
   break
---------------------------------------*/
.u-br-xs {
  display: inline;
}

.u-br-md {
  display: none;
}

.u-br-lg {
  display: none;
}

.u-br-xl {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-br-xs {
    display: inline;
  }
  .u-br-xs--only {
    display: none;
  }
  .u-br-md {
    display: inline;
  }
  .u-br-lg {
    display: none;
  }
  .u-br-xl {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .u-br-xs {
    display: inline;
  }
  .u-br-xs--only {
    display: none;
  }
  .u-br-md {
    display: inline;
  }
  .u-br-lg {
    display: inline;
  }
  .u-br-xl {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .u-br-xs {
    display: inline;
  }
  .u-br-xs--only {
    display: none;
  }
  .u-br-md {
    display: inline;
  }
  .u-br-lg {
    display: inline;
  }
  .u-br-xl {
    display: inline;
  }
}
/*---------------------------------------
   align
---------------------------------------*/
.u-center {
  text-align: center;
}

.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

/* =======================================
margin
======================================== */
/* mt
-----------------------------------------*/
.u-mt00 {
  margin-top: 0px !important;
}

.u-mt05 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

/* mb
-----------------------------------------*/
.u-mb00 {
  margin-bottom: 0px !important;
}

.u-mb05 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

/* =======================================
padding
======================================== */
/* pt
-----------------------------------------*/
.u-pt00 {
  padding-top: 0px !important;
}

.u-pt05 {
  padding-top: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

/* pb
-----------------------------------------*/
.u-pb00 {
  padding-bottom: 0px !important;
}

.u-pb05 {
  padding-bottom: 5px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

/*******************************
*01
*Swiper
*******************************/
/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}/*# sourceMappingURL=theme.css.map */