html {
  font-size: 62.5%;
}
body {
  width: 100%;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN",
    "Hiragino Kaku Gothic Pro", "Noto Sans JP", "Montserrat", verdana, "Meiryo",
    "Osaka", sans-serif;

  color: #323430;
  letter-spacing: 0.1rem;
  line-height: 1.75;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  margin: 0;
  background-color: #fff;
}

a {
  color: #323430;
  text-decoration: none !important;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  color: #888020;
}
img {
  display: block;
  width: 100%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=8);
  -moz-opacity: 0.8;
}
ul,
ol,
dl {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="tel"],
select,
textarea {
  height: 45px;
  font-size: 1rem;
}
/*セレクトの矢印を無効化*/
select {
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}
::-ms-expand {
  /* select要素のデザインを無効にする（IE用） */
  display: none;
}

::placeholder {
  color: #999;
}

/* ----------------------------------------
  *header
  ---------------------------------------- */
.header {
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
}

#js-header {
  position: fixed;
  top: 0;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  background-color: #ffffff;
  width: 100%;

  z-index: 100;
}

/*にスクロールしている時ヘッダーを隠す*/
.head-animation {
  transform: translateY(-100%);
}

.headerNav {
  /* max-width: 1140px; */
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.headerNav__logo {
  display: inline-block;
  margin-right: 50px;
}
#headerNav__logo_img {
  width: 110px;
}

.headerNav__insta {
  display: inline-block;
}
#headerNav__insta_img {
  width: 25px;
}
.headerNav__nav {
  display: flex;
  margin-right: 20px;
}
.headerNav__nav li a {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-size: 1.2rem;
  margin: 10px;
  letter-spacing: 3px;
}
.headerNav__nav li a:hover {
  color: #888020;
  text-decoration: underline !important;
}

/* ----------------------------------------
* ヒーロー
---------------------------------------- */
#hero_sec {
  margin-top: 100px;
  margin-bottom: 150px;
}

.heroArea__ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 3.4rem;
  margin-bottom: 30px;
}
/* ----------------------------------------
* シリーズ説明
---------------------------------------- */

.container_mb_50 {
  margin-bottom: 50px;
}

.container_mb_100 {
  margin-bottom: 100px;
}
.container_mb_150 {
  margin-bottom: 150px;
}
.container_mb_200 {
  margin-bottom: 200px;
}

.series_box .series_ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 3.6rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.series_ttl_small .series_ttl {
  font-size: 3rem;
  flex-direction: column;
  align-items: flex-start;
}
.series_box .series_ja {
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 20px;
}
.series_ttl_small .series_ja {
  margin-left: 0;
  margin-top: 10px;
}
.series_txt {
  font-size: 1.4rem;
  line-height: 2.2;
}
.series_txt p {
  margin-bottom: 15px;
}
.series_txt_two_col p {
  /* columns: 2;
  column-gap: 2em; */
}
/* ----------------------------------------
* シリーズ商品一覧
---------------------------------------- */
.series_tem_sec {
  border-bottom: 1px solid #999;
  padding-bottom: 150px;
}
.series_tem_heading {
  margin-bottom: 50px;
}
.series_tem_heading__en {
  font-family: "Libre Caslon Text", serif;
  font-size: 3rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.series_tem_heading__ja {
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 20px;
}
.series_item_box {
  margin-bottom: 50px;
}
.series_item_box a {
  display: block;
}
.series_item_box a:hover {
  text-decoration: underline !important;
}
.series_item_box__name {
  font-size: 1.6rem;
}
.series_item_box_price {
  font-size: 1.4rem;
  text-align: right;
}
.series_item_box_price_yen {
  font-size: 1.2rem;
}
.series_item_box_tax {
  font-size: 1.1rem;
}

.series_item_link {
  max-width: 350px;
  margin: 0 auto;
  margin-top: 50px;
  font-size: 1.4rem;
  width: 100%;
  display: block;
  background-color: #888020;
  text-align: center;
  padding: 15px;
  color: #fff;
  transition: all 0.4s ease;
  letter-spacing: 2px;
}
.series_item_link:hover {
  background-color: #a4a4a4;
  color: #fff !important;
}
.series_item_link_ap {
  margin-bottom: 70px;
}

/* ----------------------------------------
* category_link
---------------------------------------- */
/* #cate_link_sec {
  margin-bottom: 50px;
} */
.cate_link_box:before {
  /*正方形*/
  content: "";
  display: block;
  padding-top: 100%;
}
.cate_link_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cate_link_box_wrap,
.cate_link_coming_soon {
  display: block;
  overflow: hidden;
}
.cate_link_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-size: cover;
  z-index: 1;
  transition: all 1s;
}
#cate_link_bg_1 {
  background-image: url("../2022ss/link_bg_1.jpg");
}
#cate_link_bg_2 {
  background-image: url("../2022ss/link_bg_2.jpg");
}
#cate_link_bg_3 {
  background-image: url("../2022ss/link_bg_3.jpg");
}
#cate_link_bg_4 {
  background-image: url("../2022ss/link_bg_4.jpg");
}

.cate_link_box_wrap:hover .link_info {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgb(226, 225, 225);
}
.link_info {
  transition: all 0.5s;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-family: "Montserrat", sans-serif;

  letter-spacing: 5px;
}
.link_ttl {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 300;
  text-transform: uppercase;
}
.cate_link_txt {
  padding: 5px;
  text-decoration: underline !important;
  font-size: 1.4rem;
  text-align: center;
  display: block;
}
.cate_link_txt:hover {
  color: #888020;
  text-decoration: underline !important;
}

#slick_bottom_bnr_slide {
  margin-bottom: 50px;
}
/* ----------------------------------------
* TOPページへのリンク
---------------------------------------- */

#toppage_link_sec {
  background-size: cover;
  background-image: url("../2022ss/topbtn_bg.jpg");
  background-position: center center;
  background-size: cover;
}

.toppage_link_box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
}
.toppage_link {
  max-width: 400px;
  margin: 0 auto;

  font-size: 1.6rem;
  width: 100%;
  display: block;
  background-color: #b42f2f;
  text-align: center;
  padding: 15px;
  color: #fff;
  transition: all 0.4s ease;
  letter-spacing: 2px;
}
.toppage_link:hover {
  background-color: #7d2020;
  color: #fff !important;
}
/* ----------------------------------------
* footer
---------------------------------------- */
.footer {
  background-color: #333;
}
.footer_copy {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 5px;
}

/* ----------------------------------------
* プラグインカスタマイズ
---------------------------------------- */

/*シリーズスライダー用ドットカスタマイズ*/
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.my-series-dots {
  position: absolute;
  right: -30px;
  bottom: 0;
  z-index: 10;
}
.slick_left .my-series-dots {
  right: auto;
  left: -30px;
}
.my-series-dots li {
  margin: 10px 0;
}
.my-series-dots li button {
  width: 15px;
  margin: 0;
  padding: 0;
  background: none;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  text-indent: -9999px;
  color: #8e803f;
}
.my-series-dots li button:before {
  content: "◇";
  font-size: 1.3rem;
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
}
.my-series-dots li.slick-active button:before {
  content: "◆";
}

.my-series-dots li button:hover:before {
  color: #534b25;
}
.slide-arrow {
  position: absolute;
  top: 39%;

  margin-top: 0;
}
.next-arrow {
  right: -35px;
  width: 25px;
  height: 55px;
}
.next-arrow:before {
  color: #827230;
  border: 1px solid #827230;
  padding: 15px 5px;
  font-size: 1.5rem;
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "custom-icons";
  font-weight: normal;
  content: "\e901";
}

.prev-arrow {
  left: -35px;
  width: 25px;
  height: 55px;
}
.prev-arrow:before {
  color: #827230;
  border: 1px solid #827230;
  padding: 15px 5px;
  font-family: "custom-icons";
  font-weight: normal;
  content: "\e902";
  font-size: 1.5rem;
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
}

.next-arrow:hover:before,
.next-arrow:active:before,
.prev-arrow:hover:before,
.prev-arrow:active:before {
  color: #655925;
  border: 1px solid #655925;
}

#top_slick_slide .my-series-dots li button {
  color: #fff;
}

/* ----------------------------------------
* アパレル
---------------------------------------- */
.container-mb-150 {
  margin-bottom: 150px;
}
#ap_hero_sec {
  background-color: #e2ccc1;
}
#ap_midi_hero_sec {
  background-color: #4d4844;
}

.ap_hero_bg {
  background-image: url("../2022ss/ap_hero.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.ap_midi_hero_bg {
  background-image: url("../2022ss/ap_midi_hero.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.ap_nepre_logo {
  width: 250px;
  margin: 0 auto;
}
.ap_concept__logo {
  width: 300px;
  margin-bottom: 50px;
}
.ap_consept {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 500;
  letter-spacing: 2px;
}
.ap_consept__ttl {
  font-size: 2rem;
  margin-bottom: 100px;
  letter-spacing: 3px;
}

.ap_consept__txt {
  font-size: 1.6rem;
  line-height: 2.2;
}

/*event*/
.ap_event_ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 3.4rem;
  padding: 20px;
  margin-bottom: 70px;
  background-color: #efecd4;
}
#ap_event_1_img {
  max-width: 650px;
  margin-bottom: 50px;
}
.ap_event_img {
  max-width: 900px;
  margin: 0 auto 30px;
}
.ap_event_heading {
  width: 100%;
  position: relative;
  display: inline-block;

  margin-bottom: 70px;
  font-family: "Libre Caslon Text", serif;
  text-align: center;
}
.ap_event_heading span {
  padding: 0 65px;
  font-size: 2.5rem;
  background-color: #fff;
}
.ap_event_heading:before {
  z-index: -1;
  position: absolute;
  top: calc(50% - 3px);
  width: 100%;
  height: 6px;
  content: "";
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}

.ap_event_heading:before {
  left: 0;
}
.ap_event_info .ap_event_info_ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.ap_event_info_txt {
  font-size: 1.5rem;
  line-height: 2.2;
  margin-bottom: 50px;
}
.ap_event_info_price__set {
  font-size: 1.6rem;
  font-weight: 600;
  margin-right: 5px;
}
.ap_event_info_price__normal {
  font-size: 1.1rem;
  margin-right: 5px;
  color: #323430;
  text-decoration: line-through;
}
.ap_event_info_price__yaji {
  font-weight: 600;
  margin-right: 5px;
}
.ap_event_info_price__sale {
  font-size: 2rem;
  color: #c80c16;
  font-weight: 600;
}
.ap_event_info_price__tax {
  font-size: 1.4rem;
  color: #c80c16;
  font-weight: 600;
}
.ap_event_info_buy_link {
  max-width: 350px;
  margin: 0 auto;
  margin-top: 0px;
  margin-top: 50px;
  font-size: 1.4rem;
  width: 100%;
  display: block;
  background-color: #c80c16;
  text-align: center;
  padding: 15px;
  color: #fff;
  transition: all 0.4s ease;
  letter-spacing: 2px;
}
.ap_event_info_buy_link:hover {
  background-color: #000;
  color: #fff !important;
}
.ap_event_img {
  margin-bottom: 70px;
}
.row-mb-100 {
  margin-bottom: 100px;
}
/*ギャラリー*/
.ap_photo_box img {
  margin-bottom: 30px;
}
.ap_photo_box_mini {
  padding: 30px;
}
/*apparelリンク*/
.ap_more_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}
.ap_code_info .ap_more_link {
  text-decoration: underline !important;
}
.ap_more_link_end {
  justify-content: end;
}
.ap_more_link:hover .ap_more_link__info {
  text-decoration: underline !important;
}
.ap_more_link__name {
  font-size: 1.4rem;
  flex-basis: 70%;
}
.ap_more_link__price___en {
  font-size: 1.1rem;
}
.ap_more_link__price___tax {
  font-size: 1.1rem;
}

.ap_more_link__price {
  flex-basis: 20%;
  font-size: 1.2rem;
  margin-left: 10px;
  font-family: "Montserrat", sans-serif;
}

.ap_more_link__icon {
  margin-left: 10px;
  flex-basis: 10%;
  background-color: #82a176;
  color: #fff;
  font-size: 1.2rem;
  padding: 3px 10px;
  display: inline-block;
  text-align: center;
  transition: 0.5s;
}
.ap_more_link:hover .ap_more_link__icon {
  color: #fff;
  background-color: #506b45;
}

/*アイテム紹介*/
.ap_item_ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 3rem;
  margin-bottom: 70px;

  position: relative;
  padding: 0 65px;
}

.ap_item_ttl:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #000;
}

.ap_item_ttl span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
.ap_series_box {
  padding: 0 35px;
}

.ap_item_sub_ttl {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  letter-spacing: 4px;
  line-height: 1.6;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.ap_item_txt {
  font-size: 1.5rem;
  line-height: 2.2;
  margin-bottom: 50px;
}
.ap_item_txt p {
  margin-bottom: 15px;
}

.ap_item_mark_box {
  margin-bottom: 20px;
}
.ap_item_mark {
  font-size: 1.2rem;
  padding: 1px 6px;

  margin-right: 5px;
}
.ap_item_mark_march {
  color: #fff;
  background-color: #4a5f6f;
}
.ap_item_mark_april {
  color: #fff;
  background-color: #984415;
}
.ap_item_mark_any {
  color: #231815;
  background-color: #dfcc10;
}

/*coordinate*/

.code_heading {
  width: 100%;
  position: relative;
  display: inline-block;

  margin-bottom: 70px;
  font-family: "Libre Caslon Text", serif;
  text-align: center;
}
.code_heading span {
  padding: 0 65px;
  font-size: 2rem;
  background-color: #fff;
}
.code_heading:before {
  z-index: -1;
  position: absolute;
  top: calc(50% - 3px);
  width: 100%;
  height: 6px;
  content: "";
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}

.code_heading:before {
  left: 0;
}

.ap_code_no {
  font-size: 1.6rem;
  margin-top: 50px;
  margin-bottom: 20px;
  font-family: "Libre Caslon Text", serif;
}
.ap_code_txt {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 20px;
}
.ap_code_link {
  display: block;
  text-decoration: underline !important;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.ap_two_col_image {
  display: flex;
  align-items: flex-end;
}
.ap_two_col_image_mg a {
  margin: 10px;
}

/**/
.container_bg_p {
  background-color: #f4e9ec;
  padding: 50px 20px;
}
.container_bg_y {
  background-color: #eeeadf;
  padding: 50px 20px;
}
.code_nepre_logo {
  max-width: 200px;
  margin: 0 auto 80px;
  display: block;
}
/* ----------------------------------------
* レスポンシブ
---------------------------------------- */

@media screen and (max-width: 1140px) {
  .headerNav {
    max-width: 960px;
  }
}
@media screen and (max-width: 992px) {
  .two_col_image {
    margin-bottom: 70px;
  }

  .my-series-dots {
    display: flex;
    right: -5px;
    bottom: -25px;
  }
  .slick_left .my-series-dots {
    left: -10px;
  }

  .my-series-dots li {
    margin: 0 5px;
  }
  .slide-arrow {
    top: 34%;
  }
  .next-arrow {
    right: -30px;
  }
  .prev-arrow {
    left: -30px;
  }

  .headerNav {
    max-width: 992px;
    justify-content: left;
    margin-left: 20px;
  }
  .headerNav__logo {
    display: inline-block;
    margin-right: 20px;
  }
  .headerNav__nav {
    margin-right: 10px;
  }
  #hero_sec {
    margin-bottom: 70px;
  }

  .series_item_box__name {
    font-size: 1.4rem;
  }

  .series_txt_two_col p {
    columns: 1;
    column-gap: 0;
  }

  .row-reverse {
    flex-direction: column-reverse;
  }

  .container_mb_50 {
    margin-bottom: 25px;
  }

  .container_mb_100 {
    margin-bottom: 50px;
  }
  .container_mb_150 {
    margin-bottom: 100px;
  }
  .container_mb_200 {
    margin-bottom: 150px;
  }

  .two_col_image {
    margin-bottom: 30px;
  }

  /*アパレル*/
  #ap_hero_sec .row {
    position: relative;
  }
  #logo-col {
    width: auto;
    position: absolute;
    right: 30px;
    bottom: 30px;
  }

  .ap_consept {
    margin-bottom: 100px;
  }
  .ap_series_box {
    margin-top: 50px;
  }
  .ap_code_box {
    margin-bottom: 50px;
  }
  #ap_midi_hero_sec .row {
    position: relative;
  }
  #logo-col-2 {
    width: auto;
    position: absolute;
    left: 30px;
    bottom: 50px;
  }
}
@media (max-width: 768px) {
  .sp_none {
    display: none;
  }

  .heroArea__ttl {
    font-size: 2.2rem;
  }

  .series_box .series_ttl {
    font-size: 2.6rem;
  }
  .series_tem_heading__en {
    font-size: 2.2rem;
  }
  .series_tem_sec {
    padding-bottom: 100px;
  }
  .container_mb_100 {
    margin-bottom: 30px;
  }
  .container_mb_150 {
    margin-bottom: 70px;
  }
  .container_mb_200 {
    margin-bottom: 100px;
  }
  .slick_slide {
    margin-bottom: 50px !important;
  }
  .my-series-dots li button::before {
    font-size: 1.5rem;
  }
  .my-series-dots li {
    margin: 0 6px;
  }

  .toppage_link_box {
    padding: 60px 50px;
  }
  .toppage_link {
    font-size: 1.4rem;
  }

  /*アパレル*/
  .container-mb-150 {
    margin-bottom: 50px;
  }
  .row-mb-100 {
    margin-bottom: 30px;
  }
  .ap_event_img {
    margin-bottom: 30px;
  }
  .con .ap_nepre_logo {
    width: 170px;
  }
  .ap_concept__logo {
    width: 250px;
  }
  h2.ap_event_heading {
    display: none;
  }
  .ap_event_ttl {
    font-size: 2.5rem;
    padding: 10px;
    margin-bottom: 50px;
  }
  .ap_event_info .ap_event_info_ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .ap_event_info .ap_more_link {
    display: none;
  }
  .ap_event_info_price__set {
    font-size: 1.4rem;
    display: block;
    margin-right: 0;
  }
  .ap_event_info_price__normal {
    margin-right: 0;
    color: #323430;
    display: block;
  }
  .ap_event_info_buy_link {
    margin-top: 30px;
    font-size: 1.4rem;
    padding: 12px;
  }
  .ap_event_info_txt {
    font-size: 1.3em;
    line-height: 2;
    margin-bottom: 30px;
  }
  .ap_code_txt {
    font-size: 1.3rem;
  }
  .ap_item_ttl {
    font-size: 2rem;
    padding: 0;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
  }
  .ap_item_ttl:before {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
  }
  .ap_item_ttl span {
    padding: 0;
  }
  .ap_series_box {
    padding: 0;
  }
  .ap_item_sub_ttl {
    font-size: 2rem;
  }
  .code_nepre_logo {
    max-width: 150px;
    margin: 0 auto 40px;
  }
  .ap_nepre_logo {
    width: 200px;
  }
  .ap_nepre_logo {
    width: 150px;
  }
  .ap_more_link {
    text-decoration: underline !important;
  }
  .ap_more_link__name {
    font-size: 1.2rem;
    flex-basis: 80%;
  }
  .ap_more_link__price {
    flex-basis: 20%;
    font-size: 1.2rem;
    margin-left: 0;
  }
  span.ap_more_link__icon {
    display: none;
  }
}

@media (max-width: 576px) {
  .headerNav {
    justify-content: space-between;
  }
}

/*************************************
  * スマホ横向き用ＣＳＳ
  *************************************/
@media screen and (max-width: 1026px) and (orientation: landscape) {
}

@media (max-width: 320px) {
}

.visible,
.invisible {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.visible {
  opacity: 1;
}

/*アニメーション*/
/* .js-fadeIn,
  .js-bn-fadeIn {
    opacity: 0;
    transition: all 0.9s ease;
  }
  .js-fadeIn.active,
  .js-bn-fadeIn.active {
    opacity: 1;
  }
  
  .js-txt-fadeIn {
    opacity: 0;
    transition: all 0.9s ease;
  }
  .js-txt-fadeIn.active {
    opacity: 1;
  }
  
  .js-scale-fadeIn {
    opacity: 0;
  
    transform: scale(1.2);
  
    transition: all 1.5s ease;
  }
  .js-scale-fadeIn.active {
    transform: scale(1);
    opacity: 1;
  }
  
  @-webkit-keyframes fadeInUp20 {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInUp20 {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
     */
/* IEのみに適用 */
@media all and (-ms-high-contrast: none) {
}
