@charset "UTF-8";
/* ==========================================================
  フォント
========================================================== */
/* ===================================================================
CSS information
 file name  :top.css
 style info :トップのスタイル
=================================================================== */
/* ==========================================================
    VISUAL AREA
  ========================================================== */
#visualArea {
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #visualArea {
    background-color: rgb(255, 255, 0);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 40px, rgb(255, 237, 0) 40px, rgb(255, 237, 0) 80px);
    height: min(45.9vw, 673px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  #visualArea {
    height: 51.6vw;
  }
}
@media screen and (min-width: 768px) {
  #visualArea h1 {
    position: absolute;
    bottom: 0;
    left: calc(50% - min(62%, 890px));
    width: min(120%, 1740px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  #visualArea h1 {
    left: -20%;
    width: 136%;
  }
}

.date {
  text-align: center;
  background: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .date {
    padding: 16px 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .date {
    padding: 4vw 4vw 6vw;
  }
}
@media screen and (min-width: 768px) {
  .date img {
    width: min(96%, 1102px);
  }
}

/* ==========================================================
    各機種の見出し
  ========================================================== */
h2 {
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.4em 0 0.5em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  h2 {
    border-radius: 100px;
    font-size: clamp(26px, 3vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 5.8vw;
  }
}
h2.switch {
  color: #fff;
  background: #ca010e;
}
h2.steam {
  color: #fff;
  background: #194d75;
  border: solid 1px #0a3455;
}
h2.ps5 {
  color: #0070cc;
  background: #fff;
}
h2.ps4 {
  color: #fff;
  background: #0070cc;
}

.closeTxt {
  background: #fff;
  border: solid 3px #ca010e;
  color: #ca010e;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .closeTxt {
    font-size: 32px;
    border-radius: 20px;
    width: 860px;
    padding: 10px 0 14px;
    margin: 40px auto;
  }
}
@media screen and (max-width: 767px) {
  .closeTxt {
    font-size: 5.4vw;
    border-radius: 10px;
    width: 90%;
    padding: 2vw 0 2.4vw;
    margin: 4vw auto;
  }
}

/* ==========================================================
    LIST AREA
  ========================================================== */
#listArea {
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #listArea {
    width: min(96%, 1100px);
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  #listArea {
    padding: 8vw 0;
  }
}
#listArea .anchorLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #listArea .anchorLink {
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .anchorLink {
    gap: 3vw 0;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 768px) {
  #listArea .anchorLink li {
    font-size: 18px;
    width: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .anchorLink li {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .anchorLink li {
    width: 70%;
  }
}
#listArea .anchorLink li a {
  display: block;
  position: relative;
  text-align: center;
  border-radius: 100px;
  text-decoration: none;
  background: #fff;
  line-height: 1.4;
  padding: 0.4em 0 0.6em;
}
@media screen and (max-width: 767px) {
  #listArea .anchorLink li a {
    font-size: 3.2vw;
  }
}
#listArea .anchorLink li a:after {
  content: "";
  border: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 768px) {
  #listArea .anchorLink li a:after {
    width: 6px;
    height: 6px;
    right: 14px;
    margin-top: -6px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .anchorLink li a:after {
    width: 1.6vw;
    height: 1.6vw;
    right: 4.6vw;
    margin-top: -1.8vw;
  }
}
#listArea .anchorLink li.switch a {
  color: #fff;
  background: #ca010e;
}
#listArea .anchorLink li.switch a:after {
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
}
#listArea .anchorLink li.steam a {
  color: #fff;
  background: #194d75;
  border: solid 1px #0a3455;
}
#listArea .anchorLink li.steam a:after {
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
}
#listArea .anchorLink li.ps5 a {
  color: #0070cc;
  background: #fff;
}
#listArea .anchorLink li.ps5 a:after {
  border-top: solid 3px #0070cc;
  border-right: solid 3px #0070cc;
}
#listArea .anchorLink li.ps4 a {
  color: #fff;
  background: #0070cc;
}
#listArea .anchorLink li.ps4 a:after {
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
}
#listArea .listBox {
  text-align: left;
}
@media screen and (min-width: 768px) {
  #listArea .listBox {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox {
    margin-bottom: 16vw;
  }
}
#listArea .listBox .saleBox {
  background: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox {
    padding: 40px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox {
    width: 94%;
    padding: 4vw;
    margin: 0 auto 8vw;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main {
    margin-bottom: 1vw;
  }
}
#listArea .listBox .saleBox .main > li {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li {
    margin-bottom: 8vw;
  }
}
#listArea .listBox .saleBox .main > li.new {
  position: relative;
}
#listArea .listBox .saleBox .main > li.new:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  background: url(../img/icn_new.png) no-repeat center center/100%;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li.new:before {
    width: 56px;
    height: 56px;
    top: -10px;
    left: -10px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li.new:before {
    width: 10vw;
    height: 10vw;
    top: -2vw;
    left: -2vw;
  }
}
#listArea .listBox .saleBox .main > li figure {
  position: relative;
  border: solid 1px #c2c2c2;
  overflow: hidden;
}
#listArea .listBox .saleBox .main > li figure span {
  display: block;
  position: absolute;
  top: 6px;
  right: -3px;
  color: #fff;
  background: #ca010e;
  border: 2px #ffffff solid;
  border-radius: 30px 0 0 30px;
  padding: 0 0.6em 0.05em;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li figure span {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li figure span {
    font-size: 3.6vw;
  }
}
#listArea .listBox .saleBox .main > li dl dt {
  font-weight: 900;
  border-bottom: dashed 1px #000;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li dl dt {
    font-size: clamp(14px, 1.8vw, 20px);
    padding: 10px 0;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li dl dt {
    font-size: 4vw;
    padding: 2vw 0;
    margin-bottom: 2vw;
  }
}
#listArea .listBox .saleBox .main > li dl dd .price {
  color: #7b7b7b;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li dl dd .price {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li dl dd .price {
    font-size: 3.6vw;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li dl dd .price span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li dl dd .price span {
    font-size: 4vw;
  }
}
#listArea .listBox .saleBox .main > li dl dd .price em {
  font-weight: 900;
  color: #ca010e;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li dl dd .price em {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li dl dd .price em {
    font-size: 3.8vw;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li dl dd .price em span {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .saleBox .main > li dl dd .price em span {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li dl dd .price em span {
    font-size: 5vw;
  }
}
#listArea .listBox .saleBox .main > li dl dd .price em:before {
  content: "";
  display: inline-block;
  margin: 0 0.5em;
  background: url(../img/bg_arrow_red.png) no-repeat center center/100%;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .main > li dl dd .price em:before {
    width: 26px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li dl dd .price em:before {
    background-size: 100%;
    width: 5vw;
    height: 4vw;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .main > li dl dd ul.btn li a {
    width: 70%;
  }
}
#listArea .listBox .saleBox .dlcBox h3 {
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .dlcBox h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .saleBox .dlcBox h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .dlcBox h3 {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#listArea .listBox .saleBox .dlcBox .dlc {
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .dlcBox .dlc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .dlcBox .dlc li {
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .dlcBox .dlc li.wide {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .dlcBox .dlc li.wide a {
    padding: 1.4em 0 1.6em;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .dlcBox .dlc li.wide a dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .saleBox .dlcBox .dlc li.wide a dl {
    display: block;
  }
}
#listArea .listBox .saleBox .dlcBox .dlc li a {
  background: url(../img/bg_arrow_black.png) no-repeat center right 0.8em/1em;
  color: #000;
  display: block;
  border-bottom: solid 1px #b9b1a3;
  text-decoration: none;
  padding: 0.6em 0 0.8em;
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .dlcBox .dlc li a dl {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .saleBox .dlcBox .dlc li a dl dt {
    font-size: 14px;
  }
}
#listArea .listBox .saleBox .dlcBox .dlc li a dl dd {
  color: #7b7b7b;
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .saleBox .dlcBox .dlc li a dl dd {
    font-size: 14px;
  }
}
#listArea .listBox .saleBox .dlcBox .dlc li a dl dd em {
  font-weight: 900;
  color: #ca010e;
}
#listArea .listBox .saleBox .dlcBox .dlc li a dl dd em:before {
  content: "";
  display: inline-block;
  margin: 0 0.5em;
  background: url(../img/bg_arrow_red.png) no-repeat center center/100%;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .dlcBox .dlc li a dl dd em:before {
    width: 18px;
    height: 14px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .dlcBox .dlc li a dl dd em:before {
    width: 3vw;
    height: 2.4vw;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .saleBox .dlcBox .dlc li:nth-child(1) {
    border-top: solid 1px #b9b1a3;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .saleBox .dlcBox .dlc li:nth-child(1) a, #listArea .listBox .saleBox .dlcBox .dlc li:nth-child(2) a {
    border-top: solid 1px #b9b1a3;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .anoTxt {
    font-size: 14px;
    text-align: right;
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .anoTxt {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .anoTxt {
    font-size: 2.8vw;
    margin-top: 2vw;
  }
}
#listArea .listBox .anoTxt li {
  padding-left: 1em;
  text-indent: -1em;
}
#listArea .listBox ul.btn li a {
  color: #fff;
  display: block;
  border-radius: 100px;
  text-decoration: none;
  padding: 0.8em 0 1em;
}
@media screen and (min-width: 768px) {
  #listArea .listBox ul.btn li a {
    font-size: 15px;
    width: 254px;
    margin: 0 auto 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox ul.btn li a {
    font-size: 14px;
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox ul.btn li a {
    font-size: 2.8vw;
    width: 100%;
    margin: 0 auto 2vw;
  }
}
#listArea .listBox ul.btn li.site a {
  background: #00a037 url(../img/bg_arrow_white.png) no-repeat center right 0.6em/1.2em;
}
#listArea .listBox ul.btn li.store.switch a {
  background: #ca010e url(../img/bg_arrow_white.png) no-repeat center right 0.6em/1.2em;
}
#listArea .listBox ul.btn li.store.steam a {
  background: #194d75 url(../img/bg_arrow_white.png) no-repeat center right 0.6em/1.2em;
}
#listArea .listBox ul.btn li.store.ps a {
  background: #0070cc url(../img/bg_arrow_white.png) no-repeat center right 0.6em/1.2em;
}
#listArea .listBox .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list {
    gap: min(4vw, 44px) 4%;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .list {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list {
    gap: 4vw 4%;
    width: 94%;
    margin: 0 auto 8vw;
  }
}
#listArea .listBox .list > li {
  background: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li {
    width: 30.6%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .list > li {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li {
    width: 48%;
  }
}
#listArea .listBox .list > li figure {
  position: relative;
}
#listArea .listBox .list > li figure span {
  display: block;
  position: absolute;
  bottom: 4px;
  right: -2px;
  color: #fff;
  background: #ca010e;
  border: 2px #ffffff solid;
  border-radius: 30px 0 0 30px;
  padding: 0 0.6em 0.05em;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li figure span {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li figure span {
    font-size: 2.6vw;
  }
}
#listArea .listBox .list > li figure.best:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/icn_best.png) no-repeat 0 0/100%;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li figure.best:before {
    width: 90px;
    height: 90px;
    top: -2px;
    left: -2px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li figure.best:before {
    width: 14vw;
    height: 14vw;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl {
    padding: 10px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl {
    padding: 0 2vw 2vw;
  }
}
#listArea .listBox .list > li dl dt {
  font-weight: 900;
  border-bottom: dashed 1px #000;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dt {
    font-size: clamp(14px, 1.8vw, 20px);
    padding-bottom: 10px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl dt {
    font-size: 3.4vw;
    padding: 2vw 0;
    margin-bottom: 2vw;
  }
}
#listArea .listBox .list > li dl dt span {
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dt span {
    margin-top: 6px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl dt span {
    margin-top: 1vw;
  }
}
#listArea .listBox .list > li dl dd {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dd {
    padding-bottom: 10px;
  }
}
#listArea .listBox .list > li dl dd .price {
  color: #7b7b7b;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dd .price {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl dd .price {
    font-size: 3vw;
    margin-bottom: 2vw;
    text-align: center;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dd .price span {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl dd .price span {
    font-size: 3.6vw;
  }
}
#listArea .listBox .list > li dl dd .price em {
  font-weight: 900;
  color: #ca010e;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dd .price em {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl dd .price em {
    display: block;
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dd .price em span {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .listBox .list > li dl dd .price em span {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl dd .price em span {
    font-size: 4.6vw;
  }
}
#listArea .listBox .list > li dl dd .price em:before {
  content: "";
  display: inline-block;
  margin: 0 0.2em;
  background: url(../img/bg_arrow_red.png) no-repeat center center/100%;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dd .price em:before {
    width: 18px;
    height: 14px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl dd .price em:before {
    width: 4vw;
    height: 3vw;
  }
}
#listArea .listBox .list > li dl dd .anoTxt {
  text-align: left;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #listArea .listBox .list > li dl dd .anoTxt {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .listBox .list > li dl dd .anoTxt {
    font-size: 2.6vw;
  }
}
#listArea .listBox .list > li dl dd .anoTxt li {
  padding-left: 1em;
  text-indent: -1em;
}
#listArea .importantTxt {
  background: #fff;
  border-radius: 24px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #listArea .importantTxt {
    padding: 20px;
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .importantTxt {
    width: 94%;
    padding: 4vw;
    margin: 0 auto 14vw;
  }
}
#listArea .importantTxt dt {
  text-align: center;
  background: #efefef;
  border-radius: 100px;
  padding: 0.2em 0;
}
@media screen and (min-width: 768px) {
  #listArea .importantTxt dt {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .importantTxt dt {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .importantTxt dt {
    font-size: 3vw;
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  #listArea .importantTxt dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #listArea .importantTxt dd {
    font-size: 2.6vw;
  }
}
#listArea .importantTxt dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}
#listArea .importantTxt dd ul li em {
  font-weight: 700;
  color: #ca010e;
}
@media screen and (min-width: 768px) {
  #listArea .importantTxt dd ul li sub {
    font-size: 10px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  #listArea .importantTxt dd ul li sub {
    font-size: 1vw;
    line-height: 1.3;
  }
}