@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.311rem + 0.278vw, 1.6rem);
  line-height: 2.4rem;
  text-align: center;
}
section {
  overflow: hidden;
}
section h2 {
  line-height: 1.2;
  font-size: clamp(2rem, 1.378rem + 1.944vw, 3.4rem);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.main-title {
  color: #e95455;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-top: 12px;
}
#merit .main-title {
  margin-top: 0;
}
/* section h2 {
  font-size: 4rem;
  position: relative;
  padding-top: 20px;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  z-index: 2;
}
section h2 span {
  position: relative;
  z-index: 50;
}
section h2::before {
  font-style: italic;
  font-style: normal;
  display: inline-block;
  content: attr(data-en);
  position: absolute;
  margin: auto;
  top: 10px;
  left: 50%;
  color: #e9545533;
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
  z-index: -1;
  transform: translateX(-50%);
  white-space: nowrap;
} */
section h3 {
  font-size: 3.6rem;
  position: relative;
  padding-top: 30px;
  padding-bottom: 50px;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  z-index: 2;
}
a {
  text-decoration: none;
  color: #fff;
}
.none {
  display: none;
}
img {
  max-width: 100%;
  height: auto;
}
.inner {
  margin: 0 auto;
  max-width: 1040px;
  width: 90%;
}
ul,
ol {
  list-style-type: none;
  padding: 0;
}
/*レスポンシブ対応のため、pcの時は改行を機能させない。*/
.br-sp,
.br-sp1 {
  display: none;
}
.br-pc {
  display: block;
}
/**-------------------------------------**/
@media screen and (max-width: 960px) {
  .br-sp {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  section h2 {
    position: relative;
    display: inline-block;
    text-align: center;
  }
  section h2::before {
    font-size: 6rem;
    font-weight: 600;
  }
  section h2 span {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 480px) {
  .br-pc {
    display: none;
  }
  .br-sp1 {
    display: block;
  }
}
@media screen and (max-width: 420px) {
  section h2::before {
    font-size: 4.4rem;
  }
}
/********************fade in**************************/
.box {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg) !important;
}
.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg) !important;
}
