@charset "utf-8";
/* CSS Document */ :root {
  --w-basesize: 1000px;
  overflow-x: hidden;
}
:root {
  --point-color01: #9100C8;
  --point-color02: #FFF41E;
  --point-color03: #4B4B4B;
  --point-color04: #EC9200;
  --sell: #009AF0;
  --trade-in: #6E7582;
}
br.sp-br {
  display: none;
}
br.pc-br {}
.outline_3_px {
  border: solid 3px #000000;
}
.outline_2_px_gray {
  border: 5px solid #DDDDDD;
  box-sizing: border-box;
}
.t_delete {
  text-indent: -9999px;
}
.t_center {
  text-align: center;
}
.position_center {
  display: block;
  margin: 0 auto;
  text-align: center;
}
img.fit {
  width: 100%;
  height: auto;
}
/*h*/
h2 {
  font-size: 1.8em;
  line-height: 1.4em;
  font-weight: bold;
}
h3 {
  font-size: 1.6em;
  line-height: 1.4em;
  font-weight: bold;
}
h3.chi_same0 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  text-align: center;
  margin: 1em 0;
  color: #00408E;
}
h3.chi_same0::before, h3.chi_same0::after {
  content: '';
  width: 70px;
  height: 4px;
  background-color: #0089ED;
}
h3.chi_same0::before {
  margin-right: 20px;
}
h3.chi_same0::after {
  margin-left: 20px;
}
h3.chi_same1 {
  font-size: 1.6em;
  margin-bottom: 0.5em;
  padding: 0.25em 0.5em;
  border-left: solid 12px #84DC00;
  background: transparent;
}
h3.chi_same2 {
  font-size: 1.6em;
  margin-bottom: 0.5em;
  text-align: center;
  padding: 0.25em 0.5em;
  border-bottom: solid 5px #84DC00;
  background: transparent;
}
h2.tit_1 {
  font-size: 3rem;
  margin: 3em 0 1em 0;
  padding: 0em 0 0 0.8em;
  color: #004759;
  padding-bottom: 20px;
  background-image: repeating-linear-gradient(90deg, #71E8C9 0, #71E8C9 2px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0) 4px);
  background-size: 4px 10px;
  background-repeat: repeat-x;
  background-position: center bottom;
}
h2.title_01 {
  display: block;
  text-align: center;
  font-size: 2em;
  line-height: 1.4em;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0.4em;
  background-image: url("../img/title_bg.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  color: #0089ED;
  text-shadow:
    4px 4px 0 #FFFFFF, -2px -2px 0 #FFFFFF, 2px -2px 0 #FFFFFF, -2px 2px 0 #FFFFFF, 2px 2px 0 #FFFFFF;
}
.font-size70 {
  font-size: 70%;
}
.font-size80 {
  font-size: 80%;
}
.font-size90 {
  font-size: 90%;
}
.font-size100 {
  font-size: 100%;
}
.impact-120 {
  font-size: 120%;
}
.impact-150 {
  font-size: 150%;
}
.price {
  color: red;
}
.flipDownTrigger, .flipLeftTrigger, .flipLeftTopTrigger, .flipRightTrigger, .flipRightTopTrigger {
  opacity: 0;
}
/* 左上へ */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* 右上へ */
.flipRightTop {
  animation-name: flipRightTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes flipRightTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
.rotateX {
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
    opacity: 0;
  }
  to {
    transform: rotateX(-360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  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);
  }
}