@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body.backWhite {
  padding-top: 100px;
  padding-top: 0;
}

input {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

a {
  display: block;
  color: #000000;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  width: 100%;
}

button {
  padding: 0;
  background-color: transparent;
  transition: unset;
  line-height: 1;
  letter-spacing: 0;
  font-weight: normal;
}

:focus {
  outline: unset;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/*========= ローディング画面のためのCSS ===============*/

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) skewY(0);
  opacity: 0;
  animation: logo 0.8s ease-out 0s forwards;
}

@keyframes logo {
  0% {
    opacity: 0;
    top: 70%;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/

body {
  background: #fff;
}

body.appear {
  background: #fff;
  /*画面を開いた後の背景色を指定*/
}

.appear #splash-logo {
  opacity: 0;
}

.splashbg {
  display: none;
  content: "";
  position: fixed;
  transform: scale(100);
  background-color: #000;
  /*伸びる背景色の設定*/
  z-index: 999;
  /*丸のスタートの形状*/
  top: calc(50% - 1rem);
  /*50%から円の半径を引いた値*/
  left: calc(50% - 1rem);
  /*50%から円の半径を引いた値*/
  width: 2rem;
  height: 2rem;
}

/*bodyにappearクラスがついたら出現*/

.appear .splashbg {
  display: block;
  border-radius: 50%;
  animation-name: PageAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/*bodyにappearクラスがついたら出現*/

.appear .splashbg {
  display: block;
  border-radius: 50%;
  animation: PageAnime 1s forwards;
}

@keyframes PageAnime {
  0% {
    /*丸のスタート位置と形状*/
    transform: scale(100);
  }
  100% {
    /*丸の終了位置と形状*/
    transform: scale(0);
    display: none;
    /*終了時は消える*/
  }
}

/*画面遷移の後現れるコンテンツ設定*/

#container {
  opacity: 0;
}

/*bodyにappearクラスがついたら出現*/

.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*----
------ヘッダー------------------------------*/

/*---100vhで削除---*/

.appear .headCont01 h1.hide {
  opacity: 0;
  animation: hide 0.8s ease 0s 1 normal forwards;
}

.headCont01 h1.hide {
  opacity: 0;
  animation: hide 0.8s ease 0s 1 normal forwards;
}

@keyframes hide {
  0% {
    opacity: 1;
    transform: translate3d(0px, 0, 0) skewX(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) skewX(0);
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.headCont01 {
  display: flex;
  justify-content: space-between;
  /* align-items: flex-end; */
  height: 0;
}

.headCont01 h1 {
  width: 200px;
  /* width: 18.22916667vw; */
  margin: 50px 0 0 50px;
  /* margin: 2.604166667vw 0 0 2.604166667vw; */
  z-index: 1001;
  opacity: 0;
}

.appear .headCont01 h1 {
  animation: appear 0.8s ease 0s 1 normal forwards;
}

.headCont01 h1 {
  animation: appear 0.8s ease 0s 1 normal forwards;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) skewX(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(0);
  }
}

.appear .headCont01 h1.active {
  opacity: 0;
  animation: 0.5s ease-out 0.6s 1;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  display: none;
}

.headCont01 h1.active {
  opacity: 0;
  animation: 0.5s ease-out 0.6s 1;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  display: none;
}

.nav-open .headCont01 h1 {
  opacity: 0;
  animation: 0.5s ease-out 0.6s 1;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 25px, 0) skewY(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(0);
  }
}

/*-------
------ハンバーガーメニュー--------------*/

.headCont01 .hamburger {
  position: relative;
  transition: all 0.6s;
  z-index: 1000;
  font-family: "Century Gothic", "sans-serif", "arial";
  /* animation: opacity 1s ease-out 4s 1 forwards; */
  /*     opacity: 0; */
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.headCont01 .hamburger p {
  opacity: 0.7;
  cursor: pointer;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  width: 200px;
  height: 70px;
  z-index: 1000;
  cursor: pointer;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  background: #000;
  font-size: 20px;
}

.headCont01 .hamburger p:hover {
  opacity: 1;
}

.headCont01 .hamburger p.entBtn {
  top: 70px;
}

.headCont01 .hamburger p a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.headCont01 .hamburger p a span:first-child {
  margin-right: 5px;
}

.headCont01 .hamburger p a span:last-child {
  margin-left: 5px;
}

.toggle {
  display: inline-block;
  position: fixed;
  opacity: 0.7;
  right: 0;
  /* top: 0; */
  width: 200px;
  height: 70px;
  z-index: 1000;
  cursor: pointer;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  background: #fff;
  font-family: "Century Gothic", "sans-serif", "arial";
}

.toggle:hover {
  opacity: 1;
}

.toggle span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: all 0.6s;
  z-index: 1001;
}

.toggle span:nth-child(1) {
  top: 30px;
  left: 50px;
}

.toggle span:nth-child(2) {
  width: 0;
}

.toggle span:nth-child(2):after {
  content: "MENU";
  font-size: 20px;
  display: inline-block;
  width: 65px;
  margin-left: 95px;
  position: relative;
  top: 24px;
}

.toggle span:nth-child(3) {
  bottom: 30px;
  left: 50px;
  width: 15px;
}

.NavMenu {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background: transparent;
  text-align: center;
  width: 100%;
  transform: translatex(100%);
  transition: all 0.6s;
  background-color: #fff;
}

/*-----ハンバーガーメニューオープン
-----------------------------------*/

.hamburger.active .toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 33px;
}

.hamburger.active .toggle span:nth-child(2):after {
  content: "CLOSE";
  width: 70px;
  position: relative;
  bottom: 0;
}

.hamburger.active .toggle span:nth-child(3) {
  transform: rotate(-45deg);
  top: 33px;
  width: 30px;
}

.headCont01 .hamburger.active p.entBtn {
  display: none !important;
}

.hamburger.active .NavMenu {
  transform: translatex(0%);
  height: 100%;
  overflow-y: auto;
}

.hamburger.active .NavMenu:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  z-index: 1;
  opacity: 0.4;
  transform: translatex(-50%);
}

.hamburger.active .NavMenu .actionMenu {
  position: relative;
  margin: 100px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  max-width: 95%;
}

.hamburger .NavMenu .actionMenu h2 {
  width: 55%;
  /* width: 44.27083333vw; */
  /* font-size: 162px; */
  /* font-size: 8.4375vw; */
  margin-right: 5%;
  /* margin-right: 3.645833333vw; */
  font-weight: 100;
  /* font-family: 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN'; */
  /* text-align: left; */
  opacity: 0;
  position: relative;
}

.hamburger .NavMenu .actionMenu h2 > img {
  position: relative;
  z-index: 2;
}

.hamburger.active .NavMenu .actionMenu h2 {
  animation: 0.5s ease-out 0.6s 1;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
}

.hamburger.active .NavMenu .actionMenu h2 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  opacity: 0.6;
}

.hamburger .NavMenu .actionMenu ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  opacity: 0;
}

.hamburger.active .NavMenu .actionMenu ul {
  width: 500px;
  width: max(360px, 30vw);
  animation: 0.5s ease-out 0.8s 1;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
}

.hamburger.active .NavMenu .actionMenu ul li {
  border-bottom: 2px solid #000;
  width: 100%;
}

.hamburger.active .NavMenu .actionMenu ul li:hover {
  background-color: #000;
  color: #fff;
}

.hamburger.active .NavMenu .actionMenu ul li:first-child a {
  /* padding-top: 0; */
}

.hamburger.active .NavMenu .actionMenu ul li a {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  position: relative;
}

.hamburger.active .NavMenu .actionMenu ul li a:hover {
  opacity: 1;
}

.hamburger.active .NavMenu .actionMenu ul li:hover span:first-child {
  color: #fff;
}

.hamburger.active .NavMenu .actionMenu ul li:hover span:last-child {
  background-color: #fff;
  color: #000;
}

.hamburger.active .NavMenu .actionMenu ul li a span {
  font-size: 40px;
  font-size: max(25px, 2.083333333vw);
  display: flex;
  white-space: nowrap;
}

.hamburger.active .NavMenu .actionMenu ul li a span:first-child {
  /* margin-right: 20px; */
  line-height: 1;
  font-weight: normal;
}

.hamburger.active .NavMenu .actionMenu ul li a span:last-child {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-size: max(13px, 0.9375vw);
  margin-right: 0;
  color: #fff;
  background-color: #000;
  padding: 0px 5px;
  position: absolute;
  left: 350px;
  left: max(230px, 18.22916667vw);
}

.hamburger.active .NavMenu .actionMenu ul li.info a,
.hamburger.active .NavMenu .actionMenu ul li.question a,
.hamburger.active .NavMenu .actionMenu ul li.about a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hamburger.active .NavMenu .actionMenu ul li.info a span:first-child,
.hamburger.active .NavMenu .actionMenu ul li.question a span:first-child,
.hamburger.active .NavMenu .actionMenu ul li.about a span:first-child {
  position: relative;
  left: 0;
  background-color: transparent;
  color: #000;
  font-weight: bold;
  padding: 0;
  font-size: max(20px, 1.822916667vw);
  margin-bottom: 15px;
}

.hamburger.active .NavMenu .actionMenu ul li.info a span:last-child,
.hamburger.active .NavMenu .actionMenu ul li.question a span:last-child,
.hamburger.active .NavMenu .actionMenu ul li.about a span:last-child {
  position: relative;
  left: 0;
  font-size: 12px;
  font-size: max(10px, 0.625vw);
  text-align: left;
  background-color: transparent;
  color: #000;
  padding: 0;
  letter-spacing: -1px;
}

.hamburger.active .NavMenu .actionMenu ul li.info:hover a span,
.hamburger.active .NavMenu .actionMenu ul li.question:hover a span,
.hamburger.active .NavMenu .actionMenu ul li.about:hover a span {
  color: #fff;
}

.hamburger .NavMenu .pagemenu {
  position: relative;
  z-index: 2;
  /* margin: 0 0 0 50px; */
  display: flex;
  opacity: 0;
  max-width: 85%;
  margin: 0 auto;
  position: relative;
}

.hamburger.active .NavMenu .pagemenu {
  animation: 0.5s ease-out 1.2s 1;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
}

.hamburger.active .NavMenu div a h2 {
  margin-bottom: 60px;
}

.hamburger.active .NavMenu div a .btn {
  display: flex;
  align-items: center;
  flex-direction: unset;
  position: absolute;
  bottom: 0;
}

.hamburger .NavMenu div a .btn span:first-child {
  font-size: 30px;
  margin-right: 40px;
  margin-right: 2.083333333vw;
}

.hamburger .NavMenu div a .btn span:last-child {
  width: 10px;
}

.hamburger.active .NavMenu .pagemenu div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hamburger.active .NavMenu .cont01 {
  width: 30%;
  margin-right: 100px;
  margin-right: 5.208333333vw;
}

.hamburger .NavMenu .cont01 a h2 {
  width: 445px;
  width: 100%;
}

.hamburger .NavMenu .cont01 a .btn {
  display: flex;
  align-items: center;
}

.hamburger .NavMenu .cont01 a .btn span:last-child {
  width: 10px;
}

.hamburger.active .NavMenu .cont01 a .btn span:last-child {
  width: 10px;
}

.hamburger.active .NavMenu .cont02 {
  width: 30%;
  margin-right: 100px;
  margin-right: 5.208333333vw;
}

.hamburger .NavMenu .cont02 a h2 {
  width: 446px;
  width: 100%;
}

.hamburger.active .NavMenu .cont03 {
  width: 40%;
}

.hamburger .NavMenu .cont03 a h2 {
  width: 630px;
  width: 100%;
}

/*----
フッター--------------------------*/

footer {
  /* font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro'; */
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-bottom: 200px;
}

footer > h2 {
  width: 1616px;
  width: 84.16666667vw;
  margin: 0 auto 60px;
  margin-bottom: 3.125vw;
}

.footCont01 {
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.footCont01 .flex a:hover {
  opacity: 1;
}

.footCont01 .flex .change {
  position: relative;
}

.footCont01 .flex .character {
  position: absolute;
  top: 0;
  width: 100%;
}

.footCont01 .flex .change figure {
  position: relative;
  width: 100%;
  height: 630px;
  height: 32.8125vw;
  /* margin: 0 auto; */
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.footCont01 .flex .change figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.footCont01 .flex .change figure img:first-child {
  opacity: 0;
}

.footCont01 .flex .change figure:hover img:first-child {
  opacity: 1;
}

.footCont01 .flex .change figure img:nth-child(2) {
  opacity: 1;
}

.footCont01 .flex .change figure:hover img:nth-child(2) {
  opacity: 0;
}

.footCont01 .flex .textArea {
  width: 85%;
  margin: 0 auto;
}

.footCont01 .flex img {
  margin-bottom: 60px;
  margin-bottom: 3.125vw;
}

.footCont01 .flex h3 {
  font-size: 37px;
  font-size: 1.927083333vw;
  letter-spacing: 1px;
  margin-bottom: 45px;
  margin-bottom: 2.34375vw;
}

.footCont01 .flex p {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-size: 1.302083333vw;
  color: #828282;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 60px;
  margin-bottom: 3.125vw;
}

.footCont01 .flex p span {
  position: relative;
}

.footCont01 .flex p span {
  font-size: 20px;
  font-size: 1.041666667vw;
  margin-right: 5px;
}

.footCont01 .flex .textArea .btn {
  font-family: "Century Gothic", "sans-serif", "arial";
  margin-bottom: 0;
  width: 100%;
  text-align: right;
  color: #fff;
  background-color: #000;
  padding: 15px 30px 15px 0;
  padding: 0.78125vw 1.5625vw 0.78125vw 0;
  text-decoration: none;
  font-size: 24px;
  font-size: max(15px, 1.25vw);
  position: relative;
  border: 1px solid #000;
  z-index: 1;
}

.footCont01 .flex .textArea .btn:hover {
  color: #000;
}

.footCont01 .flex .textArea .btn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.5s;
}

.footCont01 .flex .textArea .btn:hover:before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.footCont01 .flex .textArea .btn span:first-child {
  margin-right: 5px;
}

.footCont02 {
  background-color: #f8f8f8;
  padding: 115px 0;
  padding: 5.989583333vw 0;
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.footCont02 ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}

.footCont02 ul li {
  border-left: 1px solid #000;
  padding: 0 30px;
}

.footCont02 ul li a img {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.footCont02 ul li:first-child {
  border-left: none;
}

/* 
.footCont02 {
    background-color: #f8f8f8;
    padding: 115px 0;
    padding: 5.989583333vw 0;
    margin-bottom: 120px;
    margin-bottom: 6.25vw;
}

.footCont02 ul {
    display: flex;
    width: 1500px;
    width: 78.125vw;
    margin: 0 auto;
}

.footCont02 ul li {
    border-left: 1px solid #000;
    padding: 0 20px 0;
    padding: 0 8% 0;
    position: relative;
}

.footCont02 ul li:first-child {
    width: 485px;
    width: 24%;
    padding-left: 0;
    border-left: 0;
}

.footCont02 ul li:nth-child(2) {
    width: 665px;
    width: 424%;
    animation-delay: .3s;
}

.footCont02 ul li:nth-child(3) {
    width: 340px;
    width: 24%;
    border-left: 1px solid #000;
}


.footCont02 ul li:last-child {
    width: 340px;
    width: 24%;
    border-left: 1px solid #000;
    padding-right: 0;
    animation-delay: .6s;
}

.footCont02 ul li a {
    position: relative;
}

.footCont02 ul li:first-child a {
    top: 27%;
}

.footCont02 ul li:nth-child(2) a {
    top: 27%;
} */

.footCont03 h2 {
  margin-bottom: 240px;
  margin-bottom: 12.5vw;
  /* opacity: 0; */
}

.footCont03 h2 {
  margin-bottom: 240px;
  margin-bottom: 12.5vw;
}

.footCont04 > h2 {
  width: 200px;
  /* width: 18.22916667vw; */
  margin-right: 120px;
  margin-right: 6.25vw;
}

.footCont04 {
  width: 87.5%;
  margin: 0 auto;
  display: flex;
}

.footCont04 ul {
  display: flex;
  margin-bottom: 200px;
  margin-bottom: 10.41666667vw;
}

.footCont04 ul li:first-child {
  margin-right: 120px;
  margin-right: 6.25vw;
}

.footCont04 ul li p {
  font-size: 20px;
  font-size: 1.041666667vw;
  line-height: 1.8;
  letter-spacing: 1.3px;
}

.footCont04 ul li p {
  font-size: 20px;
  font-size: 1.041666667vw;
  line-height: 1.8;
  letter-spacing: 1.3px;
}

.footCont04 ul li h3 {
  font-family: "Century Gothic", "sans-serif", "arial";
  display: block;
  font-size: 30px;
  font-size: 1.5625vw;
  margin-bottom: 15px;
  margin-bottom: 0.78125vw;
  letter-spacing: 1px;
  font-weight: normal;
}

.footCont04 ul li p span {
  display: flex;
}

.footCont05 {
  width: 87.5%;
  margin: 0 auto;
}

.footCont05 nav ul {
  display: flex;
  align-items: center;
  margin-bottom: 200px;
  margin-bottom: 10.41666667vw;
}

.footCont05 nav ul li {
  margin-right: 30px;
  margin-right: 1.5625vw;
  font-size: 20px;
  font-size: 1.041666667vw;
  white-space: nowrap;
}

.footCont05 p {
  font-size: 20px;
  font-size: 1.041666667vw;
  margin-bottom: 100px;
  margin-bottom: 5.208333333vw;
}

body .footBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.footBtn a {
  width: 120px;
  opacity: 0.7;
}

.footBtn a:hover {
  opacity: 1;
}

/*---スライダー矢印---*/

.slick-arrow:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next:before {
  background-image: url(../img/common/pc/right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.slick-prev:before {
  background-image: url(../img/common/pc/left.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/*--- footer-nav --*/
.footer-nav {
  width: 87.5%;
  margin: 0 auto 80px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
.footer-nav ul li {
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.footer-nav ul li a {
  padding: 5px 20px;
  display: block;
  transition: 0.5s;
}
.footer-nav ul li a:hover {
  opacity: 0.7;
}
.footer-nav ul li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
}
.footer-nav ul li:last-child::after {
  content: none;
}
