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

	  共通

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

.space50 {
  height: 50px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .space50 {
    height: 0px;
  }
}

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

input[type=text]:focus {
  outline: 0;
}

button:focus {
  outline: 0;
  -webkit-appearance: none;
  border-radius: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

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

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

#loader {
  position: fixed;
  bottom: 10px;
  right: 10px;
  text-align: center;
  transform: translate(-50%, -50%);
}
#loader img {
  width: 30px;
  height: 30px;
}

.wrap-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  max-width: 800px;
  width: 100%;
  animation: logo 10s forwards;
}
@media screen and (max-width: 1024px) {
  .wrap-logo {
    max-width: 50vw;
    min-width: 300px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .wrap-logo {
    min-width: 80%;
  }
}

@keyframes logo {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.txt-everyday {
  max-width: 300px;
  margin: 0 auto 30px;
  display: block;
  filter: blur(10px) drop-shadow(10px 10px 4px #333);
  transition: all 1s cubic-bezier(0.49, 0.18, 0.16, 0.91);
  transform: translateX(-10px);
  opacity: 0;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .txt-everyday {
    max-width: 150px;
  }
}
.txt-everyday.on {
  transform: translateX(0px);
  filter: blur(0px) drop-shadow(10px 10px 4px #333);
  opacity: 1;
}

.logo-bmp {
  width: 100%;
  display: block;
  filter: blur(10px) drop-shadow(10px 10px 4px #333);
  transition: all 1s cubic-bezier(0.49, 0.18, 0.16, 0.91) 0.2s;
  transform: translateX(-10px);
  opacity: 0;
}
.logo-bmp.on {
  transform: translateX(0px);
  filter: blur(0px) drop-shadow(10px 10px 4px #333);
  opacity: 1;
}

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

COMMON

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

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "ＭＳ 明朝", MS Mincho, "ＭＳ ゴシック", sans-serif;
}

#wrapper {
  transition: opacity 0.4s;
}
#wrapper.on {
  opacity: 1;
}

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

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

.sec-common {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec-common {
    padding: 100px 0;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-common {
    padding: 50px 0;
  }
}
.sec-common .title {
  position: absolute;
  top: 100px;
  left: 2.5vw;
  width: 2.5vw;
  max-width: 40px;
  height: auto;
  filter: drop-shadow(0, 0, 2px, #333);
  transition: all 1s cubic-bezier(0.49, 0.18, 0.16, 0.91);
  transform: translateY(20px);
  filter: blur(10px);
  opacity: 0;
}
.sec-common .title.on {
  transform: translateY(0px);
  filter: blur(0px);
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .sec-common .title {
    top: -50px;
    left: 20px;
    width: 30px;
    transform: rotate(90deg);
    transform-origin: right;
  }
  .sec-common .title.on {
    transform: translateY(0px) rotate(90deg);
  }
}

.bt-lineup {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  background-color: #fbead4;
  border: solid 1px #ffb700;
  box-shadow: 0 5px 0 #ffb700;
  border-radius: 100px;
  text-align: center;
  padding: 20px;
  max-width: 250px;
  color: #333;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .bt-lineup {
    font-size: 14px;
  }
}
.bt-lineup span {
  position: relative;
  z-index: 3;
}
.bt-lineup::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #e9f4f0;
  width: 100%;
  height: 100%;
  transition: left 0.3s ease;
}
.bt-lineup:hover {
  color: #333;
}
.bt-lineup:hover::after {
  left: 0;
}

.enlarge {
  position: relative;
}
.enlarge::after {
  content: url(../images/common/search.svg);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 3px;
  right: 3px;
  z-index: 3;
  opacity: 0.4;
  transition: opacity 0.4s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .enlarge::after {
    opacity: 1;
    display: none;
  }
}
@media (hover: hover) {
  .enlarge:hover::after {
    opacity: 1;
  }
}

.rear_prosofton_logo_wh {
  position: absolute;
  top: 40%;
  right: 7%;
  z-index: 100000;
  width: 100%;
  max-width: 35%;
  opacity: 0;
  transition: 2.5s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .rear_prosofton_logo_wh {
    max-width: 50%;
  }
}
.rear_prosofton_logo_wh.on {
  opacity: 1;
  right: 5%;
}

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

	  ファイル読み込み 

  ==============================   */
.header {
  position: relative;
  z-index: 999;
}
.header h1 {
  color: #333;
  font-weight: normal;
  font-size: 10px;
  position: absolute;
  top: 10px;
  right: 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .header h1 {
    display: none;
  }
}
.header .logo-kenko {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  max-width: 7%;
  display: block;
}
@media screen and (max-width: 1100px) {
  .header .logo-kenko {
    max-width: 60px;
  }
}
@media screen and (max-width: 700px) {
  .header .logo-kenko {
    max-width: 50px;
    top: 20px;
    left: 20px;
  }
}

.onlineshop {
  position: fixed;
  bottom: 10px;
  left: 10px;
  max-width: 250px;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.49, 0.18, 0.16, 0.91) 0s;
  transform: translateX(-280px);
  z-index: 9999;
}
@media screen and (max-width: 834px) {
  .onlineshop {
    max-width: 200px;
    transform: translateX(-230px);
  }
}
.onlineshop img {
  display: block;
  vertical-align: middle;
}
.onlineshop span {
  display: block;
}
.onlineshop.on {
  transform: translateX(0);
  transition: transform 1s cubic-bezier(0.49, 0.18, 0.16, 0.91) 1.5s;
}
.onlineshop .bt-close {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .onlineshop .bt-close {
    display: none;
  }
}
.onlineshop .bt {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 3px;
  border: solid 1px #666;
  overflow: visible;
}
@media screen and (max-width: 600px) {
  .onlineshop .bt span {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .onlineshop .bt {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    padding: 13px 0 0;
  }
}
.onlineshop .bt img {
  max-height: 20px;
  width: auto;
  vertical-align: center;
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .onlineshop .bt img {
    max-height: 23px;
    margin: 0 auto;
    transform: translateX(-3px);
    display: block;
  }
}
@media screen and (max-width: 400px) and (orientation: portrait) {
  .onlineshop .bt img {
    transform: translateX(-2px);
  }
}

#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;
}
@media screen and (max-width: 834px) {
  footer .ft-logo {
    max-width: 200px;
  }
}
footer .copy {
  letter-spacing: 1.5px;
  font-size: 10px;
  color: #666;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .copy {
    letter-spacing: 1px;
  }
}

.mv {
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .mv img {
    display: block;
    width: auto;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.sec-01 {
  position: relative;
  margin: 0 auto;
}
.sec-01 .bg-img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 834px) {
  .sec-01 .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .sec-01 .bg-img img {
    width: auto !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
    display: block;
  }
}
.sec-01 .layer {
  position: absolute;
  width: 100%;
  height: 500px;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .sec-01 .layer {
    height: 300px;
  }
}
@media screen and (max-width: 900px) {
  .sec-01 .layer {
    height: 200px;
  }
}
.sec-01 .layer.layer-1 {
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(0, 0, 0) 100px, rgba(0, 0, 0, 0));
}
.sec-01 .layer.layer-2 {
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 100px, rgba(0, 0, 0, 0));
}
@media screen and (max-width: 834px) {
  .sec-01 .layer.layer-2 {
    border-bottom: solid 1px #111;
  }
}
.sec-01 .inner {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .sec-01 .inner {
    position: relative;
    top: inherit;
    left: inherit;
    transform: none;
  }
}
.sec-01 .inner .txt-img-a {
  display: block;
  max-height: 50px;
  width: auto;
  margin: 0 auto 10px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .inner .txt-img-a {
    max-height: inherit;
    width: 80%;
  }
}
.sec-01 .inner .jp {
  color: #fff;
  font-size: 14px;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}
.sec-01 .inner h3 {
  color: #71bdbf;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .sec-01 .inner h3 {
    font-size: 20px;
  }
}
.sec-01 .inner .desc {
  max-width: 800px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 1200px) {
  .sec-01 .inner .desc {
    max-width: 800px;
  }
}
@media screen and (max-width: 1024px) {
  .sec-01 .inner .desc {
    max-width: 90%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-01 .inner .desc {
    max-width: 100%;
    margin-bottom: 50px;
  }
}
.sec-01 .inner .desc p {
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .sec-01 .inner .desc p {
    font-size: 14px;
  }
}
.sec-01 .inner .wrap-items {
  display: flex;
  max-width: 1000px;
  padding: 0 10%;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .inner .wrap-items {
    gap: 20px;
    padding: 0;
  }
}
.sec-01 .inner .wrap-items .col-1 {
  width: 50%;
  text-align: center;
}
.sec-01 .inner .wrap-items .col-2 {
  width: 50%;
  text-align: center;
}
.sec-01 .inner .wrap-items .pd-img {
  display: block;
  margin: 0 auto 20px;
  width: 100%;
}
.sec-01 .inner .wrap-items .name {
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .sec-01 .inner .wrap-items .name {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .inner .wrap-items .name {
    font-size: 13px;
  }
}
.sec-01 .inner .wrap-items .new {
  color: orange;
  font-weight: bold;
  font-size: 16px;
  display: block;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 1100px) {
  .sec-01 .inner .wrap-items .new {
    font-size: 14px;
  }
}

.sec-02 {
  background-color: #0d0b1a;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 0;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 {
    padding-top: 50px;
  }
}
.sec-02 .inner {
  max-width: 1200px;
}
.sec-02 .h2-title {
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
  color: #71bdbf;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 36px;
}
@media screen and (max-width: 1024px) {
  .sec-02 .h2-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .h2-title {
    margin-bottom: 40px;
    font-size: 24px;
    display: block;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) and (max-width: 1024px) {
  .sec-02 .h2-title {
    font-size: 20px;
  }
}
.sec-02 .h2-title br {
  display: none;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .h2-title br {
    display: block;
  }
}
.sec-02 .h2-title .txt-ft {
  width: auto;
  height: 70px;
  display: block;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .h2-title .txt-ft {
    height: 50px;
    margin: 0 auto 10px;
  }
}
.sec-02 .block {
  padding-bottom: 100px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .block {
    padding-bottom: 50px;
  }
}
.sec-02 .block h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .sec-02 .block h3 {
    font-size: 18px;
  }
}
.sec-02 .block.block-03 .wrap-flex {
  display: flex;
  flex-wrap: nowrap;
}
.sec-02 .block-02 h4 {
  margin-bottom: 10px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-02 .block-02 h4 {
    font-size: 12px;
  }
}
.sec-02 .block-02 .wrap-cols-4 {
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .block-02 .wrap-cols-4 {
    flex-wrap: wrap;
  }
}
.sec-02 .block-02 .wrap-cols-4 .col {
  width: 23.3333333333%;
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .block-02 .wrap-cols-4 .col {
    width: calc(33.3333333333% - 3.3333333333px);
  }
}
.sec-02 .block-02 .wrap-cols-4 .col.col-1 {
  width: 30%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .block-02 .wrap-cols-4 .col.col-1 {
    width: 100%;
  }
}
.sec-02 .block-02 .wrap-cols-4 .col.col-1::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: solid 1.5px red;
  position: absolute;
  top: 8px;
  right: 30px;
}
.sec-02 .block-02 .wrap-cols-4 .col .cap {
  display: block;
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-02 .block-02 .wrap-cols-4 .col .cap {
    font-size: 10px;
  }
}
.sec-02 .wrap-pd-imgs {
  display: flex;
  max-width: 800px;
  margin: 0 auto 30px;
  gap: 20px;
}
.sec-02 .wrap-pd-imgs .col {
  width: calc(33.3333333333% - 13.3333333333px);
  text-align: center;
}
.sec-02 .wrap-pd-imgs .col .cap {
  font-size: 12px;
  color: #fff;
  line-height: 1.6;
  display: block;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .sec-02 .wrap-pd-imgs .col .cap {
    font-size: 10px;
  }
}
.sec-02 .wrap-img {
  position: relative;
  margin: 30px auto;
  max-width: 100%;
}
.sec-02 .wrap-img.portrait {
  max-width: 500px;
}
.sec-02 .wrap-img.portrait .beforeafter {
  width: 100%;
  height: 100%;
}
.sec-02 .wrap-img img {
  width: 100%;
  height: auto;
}
.sec-02 .wrap-img img.window {
  width: 10px;
  display: inline-block;
  vertical-align: middle;
}
.sec-02 .wrap-img .beforeafter {
  width: 100%;
  height: 100%;
}
.sec-02 .wrap-img .item-01 {
  position: absolute;
  bottom: -40px;
  left: 0;
  padding: 10px 0;
  display: block;
  color: #fff;
  font-size: 11px;
  line-height: 180%;
  width: 38%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .wrap-img .item-01 {
    font-size: 10px;
    transform: scale(0.9);
  }
}
.sec-02 .wrap-img .item-01 .comment {
  display: block;
  color: #fff;
  position: absolute;
  top: 40px;
}
.sec-02 .wrap-img .item-02 {
  position: absolute;
  bottom: -40px;
  right: 0;
  padding: 10px 0;
  display: block;
  color: #fff;
  text-align: right;
  font-size: 11px;
  line-height: 180%;
  width: 58%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .wrap-img .item-02 {
    font-size: 10px;
    transform: scale(0.9);
  }
}
.sec-02 .wrap-img .item-02 .comment {
  display: block;
  color: #fff;
  position: absolute;
  top: 40px;
  right: 0;
  text-align: right;
}
@media screen and (max-width: 400px) and (orientation: portrait) {
  .sec-02 .wrap-img .item-02 .comment {
    text-align: left;
  }
}
.sec-02 .wrap-img .item-03 {
  position: absolute;
  bottom: -40px;
  right: 0;
  padding: 10px 0;
  display: block;
  color: #666;
  text-align: center;
  font-size: 11px;
  line-height: 180%;
  width: 100%;
}
.sec-02 .wrap-img .item-03 a {
  color: #666;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .wrap-img .item-03 {
    font-size: 10px;
    transform: scale(0.9);
  }
}
@media screen and (max-width: 400px) and (orientation: portrait) {
  .sec-02 .wrap-img .item-03 {
    bottom: -70px;
  }
}
.sec-02 .wrap-img .copy {
  font-size: 11px;
  color: #666;
  display: block;
  margin-top: 10px;
  text-align: right;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .wrap-img .copy {
    font-size: 10px;
    transform: scale(0.9);
  }
}
.sec-02 .twentytwenty-horizontal .twentytwenty-handle:before,
.sec-02 .twentytwenty-horizontal .twentytwenty-handle:after,
.sec-02 .twentytwenty-vertical .twentytwenty-handle:before,
.sec-02 .twentytwenty-vertical .twentytwenty-handle:after {
  background: #eee;
}
.sec-02 .twentytwenty-horizontal .twentytwenty-handle:before,
.sec-02 .twentytwenty-horizontal .twentytwenty-handle:after {
  width: 1px;
  margin-left: 0px;
}
.sec-02 .twentytwenty-handle {
  border: 1px solid #eee;
}
.sec-02 .twentytwenty-left-arrow {
  border-right: 6px solid #eee;
}
.sec-02 .twentytwenty-right-arrow {
  border-left: 6px solid #eee;
}

.desc {
  padding: 0 30px;
  max-width: 800px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .desc {
    padding: 0;
    margin-bottom: 0;
  }
}
.desc p {
  letter-spacing: 1.5px;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .desc p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .desc p {
    font-size: 13px;
  }
}

.block-04 {
  max-width: 1000px;
  margin: 0 auto;
}
.block-04 h4 {
  font-size: 30px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .block-04 h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .block-04 h4 {
    font-size: 15px;
  }
}
.block-04 .note {
  font-size: 14px;
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .block-04 .note {
    font-size: 12px;
  }
}
.block-04 .tab-menu {
  display: flex;
  text-align: center;
  gap: 2px;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .block-04 .tab-menu {
    flex-wrap: wrap;
  }
}
.block-04 .tab-menu li {
  width: 16.6666666667%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .block-04 .tab-menu li {
    width: calc(33.3333333333% - 1.3333333333px);
  }
}
.block-04 .tab-menu li:nth-of-type(1) a {
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .block-04 .tab-menu li:nth-of-type(1) a {
    font-size: 10px;
  }
}
.block-04 .tab-menu li:nth-of-type(2) a {
  background-color: #52b4d2;
}
.block-04 .tab-menu li:nth-of-type(3) a {
  background-color: #8074ac;
}
.block-04 .tab-menu li:nth-of-type(4) a {
  background-color: #e58954;
}
.block-04 .tab-menu li:nth-of-type(5) a {
  background-color: #666;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .block-04 .tab-menu li:nth-of-type(5) a {
    font-size: 10px;
  }
}
.block-04 .tab-menu li:nth-of-type(6) a {
  background-color: #333;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .block-04 .tab-menu li:nth-of-type(6) a {
    font-size: 10px;
  }
}
.block-04 .tab-menu li a {
  display: block;
  background-color: #000;
  padding: 10px;
  min-height: 50px;
  font-size: 14px;
  color: #fff;
  opacity: 0.4;
  border: solid 2px #0d0b1a;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .block-04 .tab-menu li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .block-04 .tab-menu li a {
    padding: 10px 2px;
    letter-spacing: 0.8;
  }
}
.block-04 .tab-menu li a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
  margin: 0 auto;
}
.block-04 .tab-menu li a.selected {
  font-weight: bold;
  opacity: 1;
  border: solid 2px #fff;
}
.block-04 .panel {
  display: none;
}
.block-04 .panel.show {
  display: block;
}
.block-04 .panel .cap {
  display: block;
  text-align: right;
  font-size: 12px;
  margin: 5px;
}
@media screen and (max-width: 1024px) {
  .block-04 .panel .cap {
    font-size: 10px;
  }
}
.block-04 .desc {
  margin-top: 30px;
}
.block-04 p {
  margin-bottom: 2em;
}
.block-04 .wrap-ex-02 img {
  display: block;
  margin: 0 auto;
  max-height: 700px;
}

.block-05 {
  max-width: 1000px;
  margin: 0 auto;
}
.block-05 .note {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .block-05 .note {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .block-05 .desc {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .block-05 .desc br {
    display: none;
  }
}

.wrap-howto {
  gap: 20px;
  display: flex;
  max-width: 800px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .wrap-howto {
    margin-bottom: 0;
  }
}
.wrap-howto .col {
  text-align: center;
}
@media screen and (max-width: 700px) {
  .wrap-howto .col-1 {
    margin-bottom: 30px;
  }
}
.wrap-howto .cap {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .wrap-howto .cap {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .wrap-howto .cap {
    font-size: 10px;
  }
}

.notice {
  list-style: disc;
  margin: 0 0 40px 30px;
}
.notice li {
  font-size: 12px;
  list-style: disc;
  margin-bottom: 10px;
  color: #ddd;
}
@media screen and (max-width: 1024px) {
  .notice li {
    font-size: 10px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .notice li {
    font-size: 11px;
  }
}

.sec-05 {
  background-color: #111;
}
.sec-05 .title-img {
  display: block;
  max-width: 100px;
  margin: 0 auto 50px;
}
.sec-05 .img-sec-title {
  font-size: 14px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 100px;
  position: relative;
}
.sec-05 .img-sec-title::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 15px;
  right: 50%;
  transition: width 0.6s;
  margin: 0 auto;
}
.sec-05 .img-sec-title::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 15px;
  left: 50%;
  transition: width 0.6s;
  margin: 0 auto;
}
.sec-05 .img-sec-title .wrap-title-img {
  background-color: #000;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
}
.sec-05 .img-sec-title img {
  width: 140px;
  display: block;
  margin: 0 auto 20px;
}
.sec-05 .img-sec-title .txt {
  display: block;
  margin: 0 auto;
  color: #fff;
}
.sec-05 .img-sec-title.on::after {
  width: 50%;
}
.sec-05 .img-sec-title.on::before {
  width: 50%;
}
.sec-05 .gal-slide .slick-slide {
  height: 62vw !important;
  max-height: 90vh;
}
@media screen and (max-width: 1400px) {
  .sec-05 .gal-slide .slick-slide {
    height: 62vw !important;
    max-height: 734px;
  }
}
.sec-05 .gal-slide .slick-slide img {
  display: block;
  margin: 0 auto;
  height: 100% !important;
  width: auto !important;
}
.sec-05 .gal-thumbs {
  text-align: center !important;
  max-width: 90%;
  margin-left: 5%;
  position: relative;
  overflow: hidden;
}
.sec-05 .gal-thumbs .slick-track {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sec-05 .gal-thumbs .slick-slide {
  margin-right: 2px;
  cursor: pointer;
  opacity: 0.6;
  border: solid 1px #111;
}
.sec-05 .gal-thumbs .slick-slide img {
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .gal-thumbs .slick-slide img {
    height: 40px;
  }
}
.sec-05 .gal-thumbs .slick-slide.slick-current {
  opacity: 1;
  border: solid 1px #999;
}
.sec-05 .arrow {
  display: block;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  cursor: pointer;
}
.sec-05 .arrow i {
  width: 12px;
  height: 12px;
  border-top: solid 1px #eee;
  border-right: solid 1px #eee;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.sec-05 .arrow.prev {
  left: 0;
}
.sec-05 .arrow.prev i {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.sec-05 .arrow.next {
  right: 0;
}
.sec-05 .arrow.next i {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sec-05 .wrap-thumbs {
  position: relative;
  max-width: 70%;
  margin: 30px auto 80px;
}
@media screen and (max-width: 834px) {
  .sec-05 .wrap-thumbs {
    max-width: 100%;
  }
}
.sec-05 .wrap-thumbs .cap {
  font-size: 11px;
  color: #fff;
  top: -20px;
  right: -20%;
  display: block;
  position: absolute;
}
@media screen and (max-width: 834px) {
  .sec-05 .wrap-thumbs .cap {
    right: 10px;
    top: -22px;
    font-size: 10px;
  }
}
.sec-05 .wrap-thumbs .arrow {
  width: 30px;
  height: 30px;
  background-color: #000;
  bottom: auto;
  top: 10px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .wrap-thumbs .arrow {
    display: none;
  }
}
.sec-05 .wrap-thumbs .arrow i {
  width: 8px;
  height: 8px;
  border-top: solid 1px #eee;
  border-right: solid 1px #eee;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.sec-05 .wrap-prof {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .wrap-prof {
    padding: 0 10px;
    gap: 10px;
  }
}
.sec-05 .wrap-prof .col {
  width: 33.3333333333%;
  color: #fff;
  text-align: center;
}
.sec-05 .wrap-prof .col img {
  display: block;
  max-width: 100px;
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .wrap-prof .col img {
    max-width: 80px;
  }
}
.sec-05 .wrap-prof .col span {
  display: block;
  text-align: center;
}
.sec-05 .wrap-prof .col span.name {
  font-size: 16px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1100px) {
  .sec-05 .wrap-prof .col span.name {
    font-size: 14px;
  }
}
.sec-05 .wrap-prof .col span.en {
  font-size: 12px;
  margin-bottom: 10px;
  min-height: 20px;
}
@media screen and (max-width: 1024px) {
  .sec-05 .wrap-prof .col span.en {
    font-size: 10px;
  }
}
.sec-05 .wrap-prof .col span.p-title {
  font-size: 12px;
  margin-bottom: 20px;
  min-height: 40px;
}
@media screen and (max-width: 1024px) {
  .sec-05 .wrap-prof .col span.p-title {
    font-size: 10px;
  }
}
.sec-05 .wrap-prof .col .bt {
  display: block;
  background-color: #000;
  border: solid 1px #333;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px 10px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec-05 .wrap-prof .col .bt {
    font-size: 10px;
  }
}
.sec-05 .wrap-prof .col .bt::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 2.5px);
  right: 5px;
}
.sec-05 .pop {
  background-color: #fff;
  border-radius: 6px;
  width: 100%;
  max-width: 600px;
  min-height: 50%;
  max-height: calc(100vh - 40px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  padding: 30px;
  color: #333;
  display: none;
  overflow: auto;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .pop {
    max-width: calc(100% - 20px);
    max-width: 80%;
  }
}
.sec-05 .pop .wrap-hd {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.sec-05 .pop .wrap-hd .wrap-img {
  width: 30%;
}
.sec-05 .pop .wrap-hd .wrap-img img {
  width: 100%;
  max-width: 150px !important;
}
.sec-05 .pop .wrap-hd .wrap-name {
  width: 70%;
}
.sec-05 .pop .wrap-hd .wrap-name span {
  display: block;
  text-align: left;
}
.sec-05 .pop .p-title {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-05 .pop .p-title {
    font-size: 12px;
  }
}
.sec-05 .pop .en {
  font-size: smaller;
  display: block;
  margin-bottom: 5px;
}
.sec-05 .pop .prof-desc {
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .sec-05 .pop .prof-desc {
    font-size: 12px;
  }
}
.sec-05 .pop .bt-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #333;
  border-radius: 0 6px 0 0;
  cursor: pointer;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .pop .bt-close {
    border-radius: 0;
  }
}
.sec-05 .pop .bt-close::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  display: block;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 20%;
}
.sec-05 .pop .bt-close::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 20%;
}

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

.sec-06 {
  background-color: #fff;
  padding-bottom: 150px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-06 {
    padding-bottom: 70px;
  }
}
.sec-06 .inner {
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  .sec-06 .title {
    top: 50px;
    left: 100px;
    width: 50px;
    transform: rotate(90deg);
    transform-origin: right;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-06 .title {
    top: 0px;
    left: 60px;
    width: 30px;
  }
}
.sec-06 .wrap-flex {
  gap: 0 30px;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .sec-06 .wrap-flex {
    gap: 30px 0;
  }
}
.sec-06 .wrap-flex .col {
  width: calc(50% - 25px);
}
@media screen and (max-width: 834px) {
  .sec-06 .wrap-flex .col {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-06 .wrap-flex .col {
    padding: 0;
  }
}
.sec-06 .pd-img {
  max-width: 450px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .sec-06 .pd-img {
    max-width: 400px;
  }
}
@media screen and (max-width: 834px) {
  .sec-06 .pd-img {
    max-width: 300px;
  }
}
.sec-06 .wrap-catch .catch-1 {
  display: block;
  margin: 0 auto 20px;
  max-width: 400px;
}
@media screen and (max-width: 834px) {
  .sec-06 .wrap-catch .catch-1 {
    max-width: 300px;
  }
}
.sec-06 .wrap-catch .pd-name-ja {
  display: block;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .sec-06 .wrap-catch .pd-name-ja {
    font-size: 14px;
  }
}
@media screen and (max-width: 834px) {
  .sec-06 .wrap-catch .pd-name-ja {
    height: 10px;
  }
}
.sec-06 .desc {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .sec-06 .desc {
    font-size: 14px;
  }
}
.sec-06 .wrap-bts {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.sec-06 .bt {
  width: calc(50% - 10px);
  display: block;
  text-align: center;
  padding: 20px;
  background-color: #036eb8;
  color: #fff;
  font-weight: bold;
  position: relative;
  box-shadow: 0 3px 0 #666;
  transition: all 0.3s;
  border-radius: 3px;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1100px) {
  .sec-06 .bt {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-06 .bt {
    width: 100%;
  }
}
.sec-06 .bt i {
  font-style: normal;
  font-size: 10px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-2px);
}
.sec-06 .bt-orange {
  background-color: #ea5514;
  color: #fff;
}
.sec-06 .bt:hover {
  color: #fff;
  background-color: #036eb8;
  box-shadow: 0 0 0 #000;
  transform: translateY(3px);
}
.sec-06 .bt-orange:hover {
  background-color: #ea5514;
}

.wrap-sns {
  padding: 50px 20px 100px;
  position: relative;
  background-color: #111;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .wrap-sns {
    padding: 0px 0px 50px;
  }
}
.wrap-sns .inner {
  max-width: 1000px;
  background-color: #fff;
  z-index: 2;
  padding: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .wrap-sns .inner {
    max-width: 100%;
  }
}
.wrap-sns .inner .col-1 {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 600px) {
  .wrap-sns .inner .col-1 {
    width: 100%;
    height: auto;
  }
}
.wrap-sns .inner .col-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
  display: block;
}
@media screen and (max-width: 600px) {
  .wrap-sns .inner .col-1 img {
    height: 300px;
  }
}
.wrap-sns .inner .col-2 {
  width: 50%;
  padding: 50px 30px;
}
@media screen and (max-width: 600px) {
  .wrap-sns .inner .col-2 {
    width: 100%;
    padding: 30px 20px;
  }
}
.wrap-sns .inner .wrap-flex2 {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 834px) {
  .wrap-sns .inner .wrap-flex2 {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media screen and (max-width: 834px) {
  .wrap-sns .inner .wrap-flex2 .col-txt {
    width: 100%;
  }
}
.wrap-sns .inner .wrap-flex2 .col-img {
  text-align: center;
}
@media screen and (max-width: 834px) {
  .wrap-sns .inner .wrap-flex2 .col-img {
    margin-top: 30px;
  }
}
.wrap-sns .inner .wrap-flex2 .col-img img {
  display: block;
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 834px) {
  .wrap-sns .inner .wrap-flex2 .col-img img {
    max-width: 100px;
  }
}
.wrap-sns .inner .txt-1 {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 1100px) {
  .wrap-sns .inner .txt-1 {
    font-size: 14px;
  }
}
.wrap-sns .inner .txt-2 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .wrap-sns .inner .txt-2 {
    font-size: 16px;
  }
}
.wrap-sns .inner .txt-2 strong {
  display: block;
  margin: 10px 0;
  font-size: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .wrap-sns .inner .txt-2 strong {
    font-size: 20px;
  }
}
.wrap-sns .inner .bts {
  margin-top: 30px;
}
.wrap-sns .inner .bts .bt {
  display: block;
  padding: 15px 10px;
  background-color: #eee;
  width: 100%;
  max-width: 300px;
  position: relative;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.wrap-sns .inner .bts .bt img {
  width: 20px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.wrap-sns .inner .bts .bt.bt-1 {
  background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
}
.wrap-sns .inner .bts .bt.bt-2 {
  background-image: linear-gradient(to right, #ff512f 0%, #dd2476 100%);
}
.wrap-sns .social {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .wrap-sns .social {
    bottom: -80px;
  }
}
.wrap-sns .social .bt-tw {
  display: inline-block;
  margin-right: 10px;
}
.wrap-sns .social .bt-fb {
  display: inline-block;
}

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

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

/**  チラツキ防止 **/
.slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  transform: translateZ(0);
  perspective: 1000;
  backface-visibility: hidden;
}

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

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

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

.invisible {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.4s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

.speed1 {
  transition-duration: 0.1s;
}

.speed2 {
  transition-duration: 0.2s;
}

.speed3 {
  transition-duration: 0.3s;
}

.speed4 {
  transition-duration: 0.4s;
}

.speed5 {
  transition-duration: 0.5s;
}

.speed6 {
  transition-duration: 0.6s;
}

.speed7 {
  transition-duration: 0.7s;
}

.speed8 {
  transition-duration: 0.8s;
}

.speed9 {
  transition-duration: 0.9s;
}

.speed10 {
  transition-duration: 1s;
}

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

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

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

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

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

.carousel__track {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__container :focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__toolbar__items {
  display: flex;
}

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

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

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

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

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

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

.fancybox__thumbs,
.fancybox__button--thumbs {
  display: none !important;
}/*# sourceMappingURL=common.css.map */