@charset "UTF-8";
/** Colorの定義 **/
/** 文字の定義**/
/* ==============================

	  共通

  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  -webkit-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%;
}

img[data-echo] {
  background-image: url(../images/common/loader-white.gif);
  background-size: 30px 30px;
  background-position: center center;
  border: solid 1px #ddd;
  border-radius: 5px;
}

img[data-echo].loaded {
  background-image: none;
}

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;
}

.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;
}

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;
}

.bd-02 {
  background: linear-gradient(transparent 60%, rgba(228, 0, 3, 0.4) 0%);
  font-weight: bold;
}

.bd-03 {
  background: linear-gradient(transparent 60%, rgba(0, 65, 219, 0.5) 0%);
  font-weight: bold;
}

.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: #e8e7db;
  z-index: 999999;
  transition: 0.6s ease-out 1s;
}
#loader-bg.on {
  opacity: 0;
  visibility: hidden;
}

#loader {
  position: absolute;
  top: 51%;
  left: 50%;
  width: 80%;
  max-width: 400px;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: 0.6s ease-out;
}
#loader.on {
  opacity: 1;
  top: 50%;
}
#loader.next {
  opacity: 0;
  top: 49%;
}

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

COMMON

*********************************************** **/
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", "Roboto",sans-serif, ;
  font-size: 16px;
  letter-spacing: 1px;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .inner {
    padding: 0 20px;
  }
}

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

.bt-lineup {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  background-color: #04807f;
  border-radius: 100px;
  text-align: center;
  padding: 20px;
  max-width: 250px;
  color: #333;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .bt-lineup {
    font-size: 14px;
  }
}
.bt-lineup span {
  position: relative;
  z-index: 3;
}
.bt-lineup::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -102%;
  background-color: #ffb700;
  width: 102%;
  height: 100%;
  transform: skewX(-7deg);
  transition: left 0.5s ease;
}
.bt-lineup:hover {
  color: #fff;
}
.bt-lineup:hover::after {
  left: 0;
}

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

	  ファイル読み込み

  ==============================   */
.header {
  position: relative;
  z-index: 999;
}
.header .logo-kenko {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  max-width: 80px;
  display: block;
}
@media screen and (max-width: 834px) {
  .header .logo-kenko {
    max-width: 60px;
  }
}
@media screen and (max-width: 500px) {
  .header .logo-kenko {
    left: 10px;
  }
}
.header .bt {
  background: #40220f;
  color: #fff;
  font-size: 14px;
  width: 100%;
  max-width: 180px;
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 10px 0;
  position: fixed;
  top: 20px;
  right: 20px;
  border-radius: 100px;
  font-weight: 400;
  box-shadow: 0 0 3px #999;
}
@media screen and (max-width: 1024px) {
  .header .bt {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .header .bt span {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .header .bt {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    padding: 13px 0 0;
  }
}
.header .bt img {
  max-height: 20px;
  width: auto;
  vertical-align: center;
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .header .bt img {
    max-height: 23px;
    margin: 0 auto;
    transform: translateX(-3px);
    display: block;
  }
}
@media screen and (max-width: 400px) {
  .header .bt img {
    transform: translateX(-2px);
  }
}
.header .wrap-lang {
  position: absolute;
  top: 15px;
  right: 200px;
}
@media screen and (max-width: 600px) {
  .header .wrap-lang {
    top: 18px;
    right: 80px;
  }
}
.header .wrap-lang .lang {
  background-color: #fff;
  border-radius: 3px;
  border: solid 1px #ddd;
  padding: 5px 15px;
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .header .wrap-lang .lang {
    font-size: 10px;
  }
}
@media (hover: hover) {
  .header .wrap-lang .lang:hover {
    background-color: #333;
    color: #fff;
  }
}
.header .wrap-lang ul {
  background-color: #fff;
  border-radius: 3px;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}
.header .wrap-lang ul li {
  text-align: center;
}
.header .wrap-lang ul li a {
  display: block;
  color: #333;
  padding: 5px;
  transition: 0.4s;
}
@media screen and (max-width: 600px) {
  .header .wrap-lang ul li a {
    font-size: 10px;
  }
}
@media (hover: hover) {
  .header .wrap-lang ul li a:hover {
    background-color: #333;
    color: #fff;
  }
}
.header .wrap-lang ul li:first-child a {
  border-bottom: solid 1px #333;
}
.header .wrap-lang {
  position: absolute;
  top: 15px;
  right: 200px;
}
@media screen and (max-width: 600px) {
  .header .wrap-lang {
    top: 18px;
    right: 80px;
  }
}
.header .wrap-lang .lang {
  background-color: #fff;
  border-radius: 3px;
  border: solid 1px #ddd;
  padding: 5px 15px;
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .header .wrap-lang .lang {
    font-size: 10px;
  }
}
@media (hover: hover) {
  .header .wrap-lang .lang:hover {
    background-color: #333;
    color: #fff;
  }
}
.header .wrap-lang ul {
  background-color: #fff;
  border-radius: 3px;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}
.header .wrap-lang ul li {
  text-align: center;
}
.header .wrap-lang ul li a {
  display: block;
  color: #333;
  padding: 5px;
  transition: 0.4s;
}
@media screen and (max-width: 600px) {
  .header .wrap-lang ul li a {
    font-size: 10px;
  }
}
@media (hover: hover) {
  .header .wrap-lang ul li a:hover {
    background-color: #333;
    color: #fff;
  }
}
.header .wrap-lang ul li:first-child a {
  border-bottom: solid 1px #333;
}

#cn .wrap-lang {
  position: absolute;
  top: 15px;
  right: 20px;
}

#back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  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;
}

footer {
  background-color: #222;
  color: #fff;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
}
footer .inner {
  padding: 100px 50px 50px;
}
@media screen and (max-width: 834px) {
  footer .ft-logo {
    max-width: 200px;
  }
}
footer .copy {
  letter-spacing: 2px;
  font-size: 10px;
  color: #999;
}
@media screen and (max-width: 500px) {
  footer .copy {
    letter-spacing: 1px;
  }
}

.sec-mv {
  position: relative;
  inset: 0;
  overflow: hidden;
  width: 100%;
  height: calc(100vh + 100px);
}
@media screen and (max-width: 600px) {
  .sec-mv {
    height: calc(100dvh + 50px);
  }
}
.sec-mv .wrap-img {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}
.sec-mv .wrap-img .slide-mv {
  overflow: hidden;
}
.sec-mv .wrap-img .slide-mv .slick-slide .mv {
  width: 100%;
  height: calc(100vh + 100px) !important;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-img .slide-mv .slick-slide .mv {
    height: calc(100dvh + 50px) !important;
  }
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-img .slide-mv .slick-slide .mv {
    width: auto;
    height: calc(100vh + 50px) !important;
  }
}
.sec-mv .wrap-img .add-animation {
  animation: cover 24s;
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-img .add-animation {
    animation: cover 12s;
  }
}
@keyframes cover {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.sec-mv .logo-pieniflex {
  display: block;
  position: absolute;
  width: 100%;
  max-width: 450px;
  top: calc(50% - 100px);
  left: 9%;
  opacity: 0;
  transition: 1s 1.6s;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .sec-mv .logo-pieniflex {
    top: inherit;
    bottom: 50px;
    width: 80%;
    filter: drop-shadow(0 1px 3px #666);
  }
}
.sec-mv .logo-pieniflex.on {
  left: 10%;
  opacity: 1;
}
.sec-mv .wrap-scroll {
  position: absolute;
  bottom: 200px;
  left: 50%;
  z-index: 30;
  width: 1px;
}
@media screen and (max-width: 1100px) {
  .sec-mv .wrap-scroll {
    max-width: 100px;
    bottom: 20px;
    left: -20px;
  }
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-scroll {
    max-width: 80px;
    bottom: -20px;
  }
}
.sec-mv .wrap-scroll .line {
  display: block;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  background-color: #ddd;
  overflow: hidden;
}
.sec-mv .wrap-scroll .line::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #666;
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollline 2.4s ease infinite;
}
@keyframes scrollline {
  0% {
    top: -30px;
    height: 30px;
  }
  50% {
    top: calc(100% + 30px);
  }
  100% {
    top: calc(100% + 30px);
    height: 100px;
  }
}
.sec-mv .slick-dots {
  bottom: 120px;
  width: -moz-fit-content;
  width: fit-content;
  left: inherit;
  right: 20px;
}
@media screen and (max-width: 600px) {
  .sec-mv .slick-dots {
    bottom: 70px;
  }
}
.sec-mv .slick-dots li {
  background-color: #eee;
  width: 10px;
  height: 10px;
  opacity: 0.4;
}
.sec-mv .slick-dots li.slick-active {
  background-color: #eee;
  opacity: 1;
}

.sec-01 {
  position: relative;
  z-index: 10;
  background-color: #fff;
  border-radius: 100px 0 100px 0;
  min-height: 300px;
  margin-top: -100px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .sec-01 {
    border-radius: 60px 0 60px 0;
    margin-top: -50px;
    padding: 50px 0;
  }
}
.sec-01 .inner {
  max-width: 1200px;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 600px) {
  .sec-01 .inner {
    flex-direction: column;
    gap: 50px;
  }
}
.sec-01 .col-1 {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 600px) {
  .sec-01 .col-1 {
    width: 100%;
  }
}
.sec-01 .col-1 .img-1 {
  display: block;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .sec-01 .col-1 .img-1 {
    max-width: 90%;
  }
}
.sec-01 .col-1 .img-2 {
  width: 150px;
  position: absolute;
  bottom: -50px;
  right: -50px;
  z-index: 2;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .sec-01 .col-1 .img-2 {
    width: 120px;
    right: -10px;
    bottom: -20px;
  }
}
.sec-01 .col-2 {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .sec-01 .col-2 {
    width: 100%;
  }
}
.sec-01 .col-2 h3 {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .sec-01 .col-2 h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-01 .col-2 h3 br {
    display: none;
  }
}
.sec-01 .col-2 p {
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .sec-01 .col-2 p {
    font-size: 18px;
  }
}

.wrap-items {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.wrap-items li {
  width: 25%;
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 500px) {
  .wrap-items li {
    width: 50%;
  }
}
.wrap-items li img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto 10px;
}
@media screen and (max-width: 500px) {
  .wrap-items li img {
    max-width: 150px;
  }
}
.wrap-items li .name {
  display: inline-block;
  background-color: #f5f5f5;
  padding: 2px 10px;
  text-align: center;
  font-size: 12px;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .wrap-items li .name {
    font-size: 10px;
  }
}
.wrap-items.items-1 {
  margin-bottom: 80px;
}
.wrap-items.items-2 {
  max-width: 100%;
  margin-bottom: 50px;
}
.wrap-items.items-2 li {
  width: 16.6666666667%;
}
@media screen and (max-width: 1024px) {
  .wrap-items.items-2 li {
    width: 25%;
    max-width: 800px;
  }
}
@media screen and (max-width: 500px) {
  .wrap-items.items-2 li {
    width: 50%;
  }
}

.sec-common {
  padding: 150px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 600px) {
  .sec-common {
    padding: 80px 0;
  }
}
.sec-common .sec-title {
  margin: 0 auto 150px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .sec-common .sec-title {
    margin-bottom: 80px;
  }
}
.sec-common .sec-title span {
  display: block;
  position: relative;
}
.sec-common .sec-title span::after {
  content: "";
  position: absolute;
  transition: 0.6s 0.1s;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #111;
}
.sec-common .sec-title span.on::after {
  width: 100%;
}
.sec-common .sec-title img {
  height: 24px;
  width: auto;
  display: block;
  margin-bottom: -1px;
}
@media screen and (max-width: 600px) {
  .sec-common .sec-title img {
    height: 20px;
  }
}
.sec-common .desc {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .sec-common .desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 834px) {
  .sec-common .desc {
    max-width: 600px;
  }
}
.sec-common .desc p {
  line-height: 1.8;
}

.sec-features {
  background-color: #e8e7db;
  margin-top: -100px;
  padding-top: 250px;
  padding-bottom: 250px;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .sec-features {
    padding-top: 180px;
    padding-bottom: 150px;
  }
}
.sec-features .inner {
  max-width: 1100px;
}
.sec-features .wrap-ft {
  display: flex;
  margin: 0 auto;
  margin-bottom: 100px;
  gap: 100px;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft {
    margin-bottom: 50px;
    flex-direction: column;
    gap: 20px;
  }
}
.sec-features .wrap-ft .col-img {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft .col-img {
    width: 100%;
    order: 1;
  }
}
.sec-features .wrap-ft .col-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin: 0 auto;
  box-shadow: 0 0 0 rgba(105, 102, 82, 0);
  transition: 1s;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft .col-img img {
    max-width: 90%;
    margin-left: 0;
  }
}
.sec-features .wrap-ft .col-img img.on {
  box-shadow: 20px 20px 0 rgba(105, 102, 82, 0.8);
}
.sec-features .wrap-ft .col-txt {
  width: 50%;
  padding: 40px 20px 0 40px;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft .col-txt {
    width: 100%;
    padding: 30px 0;
    order: 2;
  }
}
.sec-features .wrap-ft .col-txt h4 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .sec-features .wrap-ft .col-txt h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft .col-txt h4 {
    margin-bottom: 20px;
  }
}
.sec-features .wrap-ft .col-txt h4::after {
  content: "";
  display: block;
  background-color: #40220f;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}
.sec-features .wrap-ft .col-txt h4 span {
  position: relative;
  z-index: 2;
}
.sec-features .wrap-ft .col-txt h4.on::after {
  left: 0;
}
.sec-features .wrap-ft .col-txt p {
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .sec-features .wrap-ft .col-txt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft .col-txt p {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft .col-txt p {
    line-height: 1.6;
  }
}
.sec-features .wrap-ft:nth-of-type(even) .col-img {
  order: 2;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft:nth-of-type(even) .col-img {
    order: 1;
  }
}
.sec-features .wrap-ft:nth-of-type(even) .col-txt {
  order: 1;
  padding: 40px 40px 0 20px;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft:nth-of-type(even) .col-txt {
    order: 1;
    padding: 30px 0;
  }
}
.sec-features .scroll-note {
  display: none;
}
@media screen and (max-width: 600px) {
  .sec-features .scroll-note {
    display: block;
    font-size: 11px;
    margin-top: 20px;
  }
}
.sec-features .ft-scroll {
  margin-bottom: 100px;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .sec-features .ft-scroll {
    width: 100%;
    overflow-x: scroll;
    padding: 20px 0;
    margin-bottom: 50px;
  }
}
.sec-features .wrap-ft-3 {
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft-3 {
    gap: 20px;
    width: 600px;
  }
}
.sec-features .wrap-ft-3 .col {
  width: 33.3333333333%;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-ft-3 .col {
    width: calc(50% - 20px);
  }
}
.sec-features .wrap-ft-3 .wrap-img {
  margin-bottom: 20px;
}
.sec-features .wrap-ft-3 .wrap-img img {
  display: block;
  border-radius: 6px;
}
.sec-features .wrap-ft-3 h4 {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .sec-features .wrap-ft-3 h4 {
    font-size: 14px;
  }
}
.sec-features .wrap-ft-3 p {
  line-height: 1.6;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-features .wrap-ft-3 p {
    font-size: 12px;
  }
}
.sec-features .wrap-monitor {
  background-color: #fff;
  padding: 50px;
  border-radius: 6px;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-monitor {
    flex-direction: column;
    padding: 20px;
  }
}
.sec-features .wrap-monitor h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .sec-features .wrap-monitor h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-features .wrap-monitor h4 {
    font-size: 18px;
  }
}
.sec-features .wrap-monitor p {
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .sec-features .wrap-monitor p {
    font-size: 14px;
  }
}

.sec-gallery {
  border-radius: 100px 0 100px 0;
  margin-top: -100px;
  background-color: #fff;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 600px) {
  .sec-gallery {
    margin-top: -50px;
    border-radius: 60px 0 60px 0;
  }
}
.sec-gallery .note {
  margin: 15px 0 0;
  text-align: right;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .sec-gallery .note {
    font-size: 10px;
  }
}
.sec-gallery .note .txt-pc {
  display: inline;
}
@media screen and (max-width: 834px) {
  .sec-gallery .note .txt-pc {
    display: none;
  }
}
.sec-gallery .note .txt-sp {
  display: none;
}
@media screen and (max-width: 834px) {
  .sec-gallery .note .txt-sp {
    display: inline;
  }
}

.inner {
  max-width: 1100px;
}
@media screen and (max-width: 1300px) {
  .inner {
    max-width: 1000px;
  }
}

.gal-1,
.gal-2 {
  padding-bottom: 100px;
  margin-bottom: 100px;
  border-bottom: solid 1px #ddd;
}

.gal-3 .sec-title {
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .gal-3 .sec-title {
    margin-bottom: 50px;
  }
}
.gal-3 .sec-title img {
  height: 18px;
  width: auto;
  display: block;
  margin-bottom: -1px;
}
@media screen and (max-width: 600px) {
  .gal-3 .sec-title img {
    height: 14px;
  }
}

.wrap-creator {
  display: flex;
  gap: 100px;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .wrap-creator {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 0px;
  }
}
.wrap-creator .col-1 {
  width: 40%;
}
@media screen and (max-width: 600px) {
  .wrap-creator .col-1 {
    width: 100%;
    order: 2;
  }
}
.wrap-creator .col-2 {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .wrap-creator .col-2 {
    width: 100%;
    order: 1;
  }
}
.wrap-creator .col-2 img {
  display: block;
  border-radius: 6px;
}
.wrap-creator .wrap-prof {
  margin-bottom: 20px;
}
.wrap-creator .wrap-prof img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  width: 200px;
  border-radius: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .wrap-creator .wrap-prof img {
    width: 120px;
  }
}
.wrap-creator .title {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .wrap-creator .title {
    font-size: 12px;
  }
}
.wrap-creator .name {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .wrap-creator .name {
    font-size: 14px;
  }
}
.wrap-creator .desc {
  display: block;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .wrap-creator .desc {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-creator .desc {
    font-size: 13px;
  }
}
.wrap-creator .wrap-sns {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .wrap-creator .wrap-sns {
    margin-bottom: 30px;
  }
}
.wrap-creator .wrap-sns a {
  display: block;
  width: 28px;
}
.wrap-creator .wrap-sns a:nth-of-type(2) {
  width: 25px;
}

.list-ex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .list-ex {
    gap: 5px;
  }
}
.list-ex li {
  width: calc(33.3333333333% - 6.6666666667px);
}
@media screen and (max-width: 600px) {
  .list-ex li {
    width: calc(33.3333333333% - 3.3333333333px);
    transition-delay: 0 !important;
  }
}
@media screen and (max-width: 600px) {
  .list-ex li img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1/1;
  }
}

.sec-howto {
  background-color: #04807f;
  margin-top: -100px;
  padding-top: 250px;
  padding-bottom: 250px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .sec-howto {
    margin-top: -50px;
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.sec-howto .sec-title span::after {
  background-color: #fff;
}
.sec-howto .wrap-img {
  max-width: 1000px;
  background-color: #fff;
  border-radius: 6px;
  padding: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .sec-howto .wrap-img {
    padding: 20px;
  }
}
.sec-howto .wrap-img h4 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .sec-howto .wrap-img h4 {
    font-size: 20px;
  }
}
.sec-howto .wrap-img h4 .note {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .sec-howto .wrap-img h4 .note {
    font-size: 12px;
  }
}
.sec-howto .wrap-img .wrap-flex {
  gap: 50px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .sec-howto .wrap-img .wrap-flex {
    flex-direction: column;
    gap: 20px;
  }
}
.sec-howto .wrap-img .wrap-flex img {
  display: block;
}

.sec-spec {
  background-color: #e8e7db;
  margin-top: -100px;
  position: relative;
  z-index: 4;
  border-radius: 100px 0 100px 0;
}
@media screen and (max-width: 600px) {
  .sec-spec {
    border-radius: 60px 0 60px 0;
    margin-top: -50px;
  }
}
.sec-spec .wrap-package {
  max-width: 800px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 600px) {
  .sec-spec .wrap-package {
    margin-bottom: 50px;
  }
}
.sec-spec .wrap-package img {
  display: block;
  border-radius: 6px;
}
.sec-spec .wrap-package span {
  display: block;
  margin: 15px auto 0;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .sec-spec .wrap-package span {
    font-size: 14px;
  }
}
.sec-spec .wrap-package span.jan {
  margin-top: 5px;
}
.sec-spec .wrap-table {
  background-color: #e8e7db;
  max-width: 1100px;
  margin: 0 auto 50px;
  display: flex;
}
@media screen and (max-width: 600px) {
  .sec-spec .wrap-table {
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
.sec-spec .wrap-table table {
  border-spacing: 1px;
  width: 50%;
}
@media screen and (max-width: 600px) {
  .sec-spec .wrap-table table {
    width: 100%;
  }
}
.sec-spec .wrap-table th {
  padding: 10px;
  background-color: #6a6652;
  font-size: 16px;
  text-align: left;
  color: #fff;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .sec-spec .wrap-table th {
    font-size: 14px;
  }
}
.sec-spec .wrap-table th .font-s {
  font-size: smaller;
  display: block;
}
@media screen and (max-width: 600px) {
  .sec-spec .wrap-table th {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
}
.sec-spec .wrap-table td {
  padding: 10px;
  width: 60%;
  background-color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .sec-spec .wrap-table td {
    font-size: 14px;
  }
}
.sec-spec .wrap-table td .font-s {
  font-size: smaller;
}
@media screen and (max-width: 600px) {
  .sec-spec .wrap-table td {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
  }
}
.sec-spec .note {
  max-width: 1100px;
  margin: 0 auto 30px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-spec .note {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .sec-spec .note {
    padding: 0 20px;
  }
}
.sec-spec .note span {
  display: block;
  text-indent: -2em;
  margin-left: 2em;
  margin-bottom: 5px;
}
.sec-spec .info {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-spec .info {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .sec-spec .info {
    padding: 0 20px;
  }
}
.sec-spec .info dt {
  margin-bottom: 10px;
  font-weight: 400;
}
.sec-spec .info dd {
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .sec-spec .info dd {
    line-height: 1.6;
    letter-spacing: 0;
  }
}
.sec-spec .info dd:last-child {
  margin-bottom: 0;
}

.sec-message .inner {
  max-width: 1400px;
}
.sec-message .wrap-img {
  max-width: 1000px;
}
.sec-message .wrap-img img {
  display: block;
  border-radius: 6px;
}
.sec-message .wrap-mes {
  position: absolute;
  right: 0;
  bottom: -100px;
  padding: 50px;
  background-color: #e8e7db;
  border-radius: 0 50px 0 50px;
  max-width: 600px;
  transform: translateX(20px);
  transition: 1s;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .sec-message .wrap-mes {
    bottom: inherit;
    position: static;
    padding: 20px 30px;
    max-width: 100%;
    margin: -30px 0 60px auto;
  }
}
.sec-message .wrap-mes.on {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .sec-message .wrap-mes.on {
    transform: translateX(10px);
  }
}
.sec-message .wrap-mes h4 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sec-message .wrap-mes h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-message .wrap-mes h4 {
    font-size: 18px;
  }
}
.sec-message .wrap-mes p {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .sec-message .wrap-mes p {
    font-size: 14px;
  }
}
.sec-message .logo-m {
  position: absolute;
  top: -25%;
  right: -20%;
  max-width: 50%;
}
@media screen and (max-width: 600px) {
  .sec-message .logo-m {
    top: -10%;
  }
}
.sec-message .wrap-slide {
  margin-top: 200px;
}
@media screen and (max-width: 600px) {
  .sec-message .wrap-slide {
    margin-top: 0;
  }
}
.sec-message .wrap-slide li {
  padding: 5px;
}
.sec-message .wrap-slide img {
  display: block;
  border-radius: 6px;
}

.sec-lineup {
  background-color: #e8e7db;
  margin-bottom: 30px;
}
.sec-lineup .block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.sec-lineup .block .logo-pieni {
  display: block;
  margin: 0 auto 50px;
}
@media screen and (max-width: 600px) {
  .sec-lineup .block .logo-pieni {
    max-width: 80%;
    margin-bottom: 0px;
  }
}
.sec-lineup .block .wrap-pd {
  width: 100%;
  margin-bottom: 20px;
}
.sec-lineup .block .wrap-pd img {
  width: 100%;
  max-width: 500px;
}
.sec-lineup .block .note {
  font-size: 10px;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 1px;
  color: #999;
}
.sec-lineup .block .model {
  font-size: 18px;
  color: #e9f4f0;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-lineup .block .model {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-lineup .block .model {
    font-size: 18px;
  }
}
.sec-lineup .block .name {
  font-size: 14px;
  margin-bottom: 20px;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .sec-lineup .block .name {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .sec-lineup .block .name {
    font-size: 14px;
  }
}
.sec-lineup .block .name .txt-s {
  font-weight: 400;
  font-size: 12px;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-lineup .block .name .txt-s {
    font-size: 10px;
  }
}
.sec-lineup .block .wrap-cta {
  text-align: center;
}
.sec-lineup .block .wrap-cta .bt-lineup {
  max-width: 400px;
  margin-bottom: 30px;
  font-size: 18px;
  background-color: #40220f;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .sec-lineup .block .wrap-cta .bt-lineup {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-lineup .block .wrap-cta .bt-lineup {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .sec-lineup .block .wrap-cta .bt-lineup {
    max-width: 350px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1024px) {
  .sec-lineup .block .wrap-cta .bt-lineup {
    font-size: 14px;
  }
}
.sec-lineup .block .wrap-cta img {
  width: 40px;
  margin-right: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 1200px) {
  .sec-lineup .block .wrap-cta img {
    width: 30px;
  }
}
.sec-lineup .block .link {
  font-size: 14px;
  border-bottom: solid 1px #0071bc;
  padding-bottom: 5px;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .sec-lineup .block .link {
    font-size: 12px;
  }
}
.sec-lineup .block .link::before {
  content: "▶";
  margin-right: 5px;
  font-size: 10px;
  display: inline-block;
  vertical-align: middle;
}
.sec-lineup .block .link:hover {
  border-bottom: solid 1px #ffb700;
}

.wrap-social {
  display: flex;
  justify-content: center;
}
.wrap-social .bt-tw {
  margin-right: 10px;
}

/**  Slick Base  fadeする場合はslick.cssの読み込みが必要**/
.slick {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-backface-visibility: hidden;
}
.slick li.slick-slide {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.slick li.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  margin-top: -50px;
  z-index: 2;
}

.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: 0px;
  left: 0;
  width: 100%;
}

.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background-color: #0071bc;
}

/*
    Colorbox Core Style:
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  font-size: 12px;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
  overflow: visible;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#cboxOverlay {
  background: #000;
}

#colorbox {
  outline: none;
}

#cboxContent {
  margin: 0px;
  background: #fff;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxTitle {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

#cboxCurrent {
  position: absolute;
  bottom: -30px;
  left: 0px;
  color: #ccc;
  font-size: 12px;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: none;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}

#colorbox .slick-arrow {
  color: #fff;
  font-size: 40px;
}

#cboxPrevious .slick-arrow {
  margin-top: -25px;
  left: -40px;
}

#cboxNext .slick-arrow {
  margin-top: -35px;
  right: -40px;
}

#cboxClose {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: -60px;
  right: 0;
}

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

.invisible {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.rotateIn {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  transition: 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:-webkit-full-screen::backdrop {
  opacity: 0;
}

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

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

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

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

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

.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 */