@charset "UTF-8";
/* Don't Edit */
html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-style: normal;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 769px) {
  /*----------------------------------------
    General
  ----------------------------------------*/
  p {
    margin-bottom: 5%;
    font-size: 16px;
    font-size: 1.6rem;
    color: #333;
    line-height: 160%;
  }
  li {
    margin-bottom: 3%;
    font-size: 16px;
    font-size: 1.6rem;
    list-style: none;
    font-weight: bold;
    line-height: 130%;
  }
  .img-r {
    width: 30%;
    margin: 0 0 1em 1em;
    float: right;
  }
  .img-l {
    margin: 0 1em 1em 0;
    float: left;
  }
  .of-h {
    width: 100%;
    overflow: hidden;
  }
  .break-sp {
    display: none;
  }
  p:last-child,
li:last-child,
dl:last-child,
dd:last-child,
.inner:last-child,
.text:last-child {
    margin-bottom: 0 !important;
  }
  .column2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .column2 li {
    margin-bottom: 0;
    width: 49.5%;
  }
  .column3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .column3 li {
    margin-bottom: 0;
    width: 33%;
  }
  .name {
    text-align: right;
  }
  .name img {
    width: 40%;
  }
  /*----------------------------------------
    List
  ----------------------------------------*/
  ol {
    padding: 0;
    counter-reset: my-counter;
    list-style: none;
  }
  ol li {
    padding-left: 30px;
    position: relative;
  }
  ol li:before {
    margin-left: -30px;
    width: 22px;
    height: 22px;
    display: block;
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    float: left;
    background-color: #fff;
    border-radius: 50%;
    content: counter(my-counter);
    counter-increment: my-counter;
  }
  .list-green {
    padding: 2.5em;
    background: #24b7b5;
    background: linear-gradient(to right, #24b7b5 0%, #67bf75 100%);
  }
  .list-green li {
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
  }
  .list-green li:last-child {
    margin-bottom: 0;
  }
  .list-blue {
    padding: 2.5em;
    background: #24b7b5;
    background: linear-gradient(to right, #002fb7 0%, #9700e2 100%);
  }
  .list-blue li {
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
  }
  .list-blue li:last-child {
    margin-bottom: 0;
  }
  .list-orange {
    padding: 2.5em;
    background: #ff8832;
    background: linear-gradient(to right, #ff8832 0%, #ff215c 100%);
  }
  .list-orange li {
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
  }
  .list-orange li:last-child {
    margin-bottom: 0;
  }
  .list-black {
    padding: 2.5em;
    background: black;
    border: 2px solid #fff;
  }
  .list-black li {
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
  }
  .list-black li:last-child {
    margin-bottom: 0;
  }
  .list-white {
    padding: 2.5em;
    background: #fff;
  }
  .list-white li {
    font-size: 18px;
    font-size: 1.8rem;
    color: #333;
  }
  .list-white li:last-child {
    margin-bottom: 0;
  }
  .check {
    padding: 2.5em 2.5em 2.5em 5em;
  }
  .check li {
    position: relative;
  }
  .check li:last-child {
    margin-bottom: 0;
  }
  .check li::after {
    display: block;
    content: '';
    position: absolute;
    top: 6px;
    left: -30px;
    width: 16px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /*----------------------------------------
    .movie
  ----------------------------------------*/
  .movie {
    margin: 0 0 2em 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .movie dt {
    margin: 0 !important;
    padding: 1em !important;
    font-size: 25px !important;
    font-size: 2.5rem !important;
    line-height: 130% !important;
    color: #fff !important;
    font-weight: bold !important;
    background: #ee0000 !important;
    display: flex;
    border: none !important;
    text-shadow: none !important;
    border-top-right-radius: 1rem !important;
    border-top-left-radius: 1rem !important;
  }
  .movie dd {
    padding: 0 !important;
    box-shadow: none !important;
  }
  .movie i {
    margin-right: .5em;
    font-size: 40px;
    font-size: 4rem;
    line-height: 80%;
  }
  .player {
    position: relative;
  }
  .player .thumbnail {
    cursor: pointer;
    z-index: 1;
  }
  .player .fa-youtube {
    font-size: 20px;
    font-size: 5.3vw;
    color: #f00;
    cursor: pointer;
    z-index: 2;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.5s 0s ease;
    /*transitionの記述を追加*/
  }
  .player .fa-youtube:before {
    margin-top: 25%;
    display: block;
  }
  .player .fa-youtube:hover {
    color: #fc0;
  }
  #modal-video {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    transition: .5s;
  }
  #modal-video.close {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    visibility: hidden;
  }
  #modal-video.open {
    -webkit-filter: opacity(1);
            filter: opacity(1);
    visibility: visible;
  }
  #modal-video iframe {
    width: 64vw;
    height: 36vw;
  }
  /*----------------------------------------
    .comment
  ----------------------------------------*/
  .comment {
    padding: 5%;
    border: 1px dotted #333;
  }
  .comment p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .comment h4 {
    margin-bottom: 1em;
    padding: .5em 0 .5em .5em;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    border-left: 8px solid #f00;
  }
  /*----------------------------------------
    table
  ----------------------------------------*/
  .table {
    margin-bottom: 5%;
    padding: 3%;
    background: rgba(0, 0, 0, 0.8);
    border: 5px solid #ffbb00;
  }
  .table table {
    width: 100%;
    border-collapse: collapse;
  }
  .table tr:last-child {
    border-bottom: none;
  }
  .table th {
    padding: .8em 1em;
    width: 10%;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: #000;
    border-right: 1px solid #fff;
  }
  .table th:last-child {
    border-right: none;
  }
  .table .kind {
    background: #d18400;
    color: #fff;
  }
  .table td {
    padding: .8em 1em;
    width: 18%;
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;
    background: #eee;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .table .large {
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
  }
  .table .limited {
    width: 30% !important;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    background: #d40064;
  }
  .table .kind-all {
    font-weight: bold;
    color: #fff;
    background: #774b00;
  }
  .table .all {
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    background: #d40064;
  }
  .table .off {
    color: #d40064;
    font-weight: bold;
  }
  /*----------------------------------------
    .chat
  ----------------------------------------*/
  .chat {
    margin: 0 auto 5%;
    padding: 5%;
    width: 100%;
    background: #7da4cd;
    border-radius: 3rem;
  }
  .chat .balloon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .chat .balloon .faceicon {
    width: 15%;
    font-size: 80px;
    font-size: 8rem;
  }
  .chat .balloon .faceicon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    background: #fff;
  }
  .chat .balloon .chatting {
    width: 80%;
  }
  .chat .balloon .chatting .says {
    display: inline-block;
    position: relative;
    padding: 5%;
    width: 100%;
    border-radius: 2rem;
    background: #fff;
  }
  .chat .balloon .chatting .says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 3px;
    left: -19px;
    border: 8px solid transparent;
    border-right: 18px solid #fff;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  .chat .balloon .chatting .says p {
    margin-bottom: .5em;
    font-size: 15px;
    font-size: 1.5rem;
    color: #333 !important;
  }
  .chat-black {
    margin: 0 auto 5%;
    padding: 5% 5%;
    width: 100%;
    background: #000;
    border: 1px solid #fff;
  }
  .chat-black .balloon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .chat-black .balloon .faceicon {
    width: 20%;
  }
  .chat-black .balloon .faceicon img {
    width: 100%;
    height: auto;
    border-radius: 0% !important;
  }
  .chat-black .balloon .chatting {
    width: 75%;
  }
  .chat-black .balloon .chatting .says {
    display: inline-block;
    position: relative;
    margin: 0 0 0 0;
    padding: 8%;
    width: 100%;
    text-align: left;
    border-radius: 0% !important;
    background: #fff;
  }
  .chat-black .balloon .chatting .says p {
    margin-bottom: .5em;
    font-size: 15px;
    font-size: 1.5rem;
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    color: #333 !important;
  }
  /*----------------------------------------
    .point
  ----------------------------------------*/
  .point {
    margin-bottom: 5%;
    padding: 5%;
    background: #e95a00;
    border-radius: 1rem;
  }
  .point dt {
    margin: 0 0 .5em 0 !important;
    font-size: 30px;
    font-size: 3rem;
    color: #fff !important;
    line-height: 150%;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold !important;
    background: transparent !important;
  }
  .point dt i {
    margin-right: .3em;
  }
  .point dd {
    padding: 5%;
    background: #fff !important;
    border-radius: .5rem;
  }
  .point p, .point li {
    margin-bottom: 1em;
    font-size: 14px;
    font-size: 1.4rem;
    color: #333 !important;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: normal;
  }
  .point p span, .point li span {
    margin-bottom: .2em;
    padding: .2em .5em;
    color: #000;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    border-radius: .3em;
  }
  .point-orange {
    background: #e95a00;
  }
  .point-red {
    background: #f00;
  }
  .point-blue {
    background: #0039a7;
  }
  .point-green {
    background: #007a1f;
  }
  .point-black {
    background: #000;
    border: 2px solid #fff;
  }
  .point-white {
    background: #fff;
    border: 5px solid #000;
  }
  .point-white dt {
    color: #000 !important;
  }
  .point-white dd {
    background: #000 !important;
  }
  .point-white p, .point-white li {
    color: #fff !important;
  }
  /*----------------------------------------
    .description
  ----------------------------------------*/
  .description {
    margin-bottom: 5% !important;
  }
  .description dt {
    margin-bottom: 0 !important;
    padding: .5em .8em;
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
  }
  .description dt i {
    margin-right: .5em;
  }
  .description dd {
    padding: 5%;
    background: #fff !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
    border-right: 3px solid #cce7ff;
    border-bottom: 3px solid #cce7ff;
    border-left: 3px solid #cce7ff;
  }
  .description dd p {
    margin-bottom: 1em;
    font-size: 15px;
    font-size: 1.5rem;
    color: #333 !important;
  }
  .description-blue dt {
    color: #010079;
    text-shadow: 0 0 5px #fff;
    background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px, #e9f4ff 3px, #e9f4ff 7px);
  }
  .description-blue dd {
    border-right: 3px solid #e9f4ff;
    border-bottom: 3px solid #e9f4ff;
    border-left: 3px solid #e9f4ff;
  }
  .description-blue dd p {
    margin-bottom: 1em;
    font-size: 15px;
    font-size: 1.5rem;
    color: #333 !important;
  }
  .description-orange dt {
    color: #bb2e00;
    text-shadow: 0 0 5px #fff;
    background: repeating-linear-gradient(-45deg, #ffb229, #ffb229 3px, #f9c15e 3px, #f9c15e 7px);
  }
  .description-orange dd {
    border-right: 3px solid #f9c15e;
    border-bottom: 3px solid #f9c15e;
    border-left: 3px solid #f9c15e;
  }
  .description-orange dd p {
    margin-bottom: 1em;
    font-size: 15px;
    font-size: 1.5rem;
    color: #333 !important;
  }
  .description-green {
    margin-bottom: 3em !important;
  }
  .description-green dt {
    margin-bottom: 0 !important;
    padding: .5em .8em;
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
    color: #4e2800;
    text-shadow: 0 0 5px #fff;
    background: -webkit-repeating-linear-gradient(-45deg, #c2e6b6, #c2e6b6 3px, #dcffc2 3px, #dcffc2 7px);
    background: repeating-linear-gradient(-45deg, #c2e6b6, #c2e6b6 3px, #dcffc2 3px, #dcffc2 7px);
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
  }
  .description-green dt i {
    margin-right: .5em;
  }
  .description-green dd {
    padding: 6%;
    background: #fff !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
    border-right: 3px solid #c2e6b6;
    border-bottom: 3px solid #c2e6b6;
    border-left: 3px solid #c2e6b6;
  }
  .description-green dd p {
    margin-bottom: 1em;
    font-size: 15px;
    font-size: 1.8rem;
    color: #333 !important;
  }
  /*----------------------------------------
    .pre
  ----------------------------------------*/
  .pre {
    margin: 0 auto;
    padding: 3% 5%;
    width: 100%;
    text-align: center;
    background: #fff;
  }
  .pre .start {
    margin-bottom: 0.2em !important;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 130%;
    color: #333 !important;
    letter-spacing: -0.05em;
    /* display: inline-block; */
  }
  .pre .date {
    margin-bottom: 0.2em !important;
    font-size: 70px;
    font-size: 7rem;
    font-weight: bold;
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    color: #900;
    line-height: 110%;
    letter-spacing: -0.05em;
    /* display: inline-block; */
  }
  .pre .caution {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 160%;
    display: block;
    letter-spacing: 0.05em;
    margin-bottom: 2%;
  }
  .pre .timer {
    margin: 0 auto;
    padding: 2% 1% 1% !important;
    width: 60%;
    text-align: center;
    background: #a00;
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  }
  .pre .timer p {
    margin-bottom: 0.5em !important;
    font-size: 35px;
    font-size: 3.5rem;
    color: #fff !important;
    letter-spacing: 0.1em;
    line-height: 110% !important;
  }
  .pre .timer span {
    padding: 0.5em 1em !important;
    font-size: 40px;
    font-size: 4rem;
    color: #000;
    letter-spacing: 0.1em;
    background: #fff;
    display: inline-block;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }
  /*----------------------------------------
    #btn-float
  ----------------------------------------*/
  #btn-float {
    padding: 0;
    width: 180px;
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
  #btn-float i {
    margin-right: 10px;
    font-size: 30px;
    font-size: 3rem;
  }
  #btn-float a {
    padding: 10px 0;
    display: block;
    background-color: #1ca800;
    background-size: 100%;
    background-image: linear-gradient(to bottom, #1ca800 0%, #0b8e14 100%);
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-size: 1.8rem;
    box-shadow: 0 8px 0 #176802;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-shadow: 0px 1px 0px #333;
    transition: all .3s ease;
    cursor: pointer;
  }
  #btn-float a:hover {
    box-shadow: none;
    -webkit-transform: translate3d(0, 8px, 0);
            transform: translate3d(0, 8px, 0);
  }
  #btn-float a span {
    font-weight: bold;
    color: #fff !important;
  }
  /*----------------------------------------
    #header
  ----------------------------------------*/
  #header-top {
    padding: 1.5% 0;
    width: 100%;
    text-align: center;
    background: #bb0a0a;
  }
  #header-top .timer {
    margin: 0 auto;
    width: 100%;
    background: none;
  }
  #header-top p {
    margin-bottom: 0 !important;
    font-size: 16px;
    font-size: 1.6rem;
    color: #fff;
    /*font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;*/
    font-weight: bold;
    line-height: 130%;
  }
  #header-top a {
    margin: 10px auto 0;
    padding: 1em;
    width: 50%;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    background: #fff;
    display: block;
    transition: all .3s ease;
    border-radius: 1rem;
    border: 1px solid transparent;
  }
  #header-top a:hover {
    color: #fff;
    background: #000;
    border: 1px solid #fff;
  }
  #header-top .timer span {
    margin-top: 10px;
    padding: .3em 1em;
    font-size: 35px;
    font-size: 3.5rem;
    text-shadow: 1px 1px 0 #000;
    font-weight: bold;
    background: #ef2617;
    background: linear-gradient(to right, #ef2617 0%, #fcc605 100%);
    display: inline-block;
    border-radius: 1rem;
    box-shadow: 0 0 10px #000;
  }
  #margin-top .kiwi {
    background: none;
  }
  /*----------------------------------------
    #footer
  ----------------------------------------*/
  #footer {
    padding: 10px 0;
    overflow: hidden;
    background: #333;
  }
  #footer .inner {
    margin: 0 auto;
    width: 900px;
  }
  #footer p {
    margin-bottom: 0;
    font-size: 10px;
    font-size: 1rem;
    color: #fff;
    float: left;
  }
  #footer-navi {
    padding-right: 10px;
    overflow: hidden;
    border-right: 1px solid #fff;
    float: right;
  }
  #footer-navi li {
    margin: 0 0 0 10px;
    padding-left: 10px;
    font-size: 10px;
    font-size: 1rem;
    list-style: none;
    border-left: 1px solid #fff;
    float: left;
  }
  #footer-navi li a {
    color: #fff;
  }
  /*----------------------------------------
    .product
  ----------------------------------------*/
  .product .product-caution {
    margin: 0 auto 5%;
    padding: 3%;
    width: 50%;
    min-width: 600px;
    text-align: center;
    background: #fff;
  }
  .product .product-caution p {
    font-size: 20px;
    font-size: 2rem;
  }
  .product .product-caution a {
    color: #00f;
  }
  .product .timer {
    margin: 0 auto 5%;
    padding: 20px 0;
    width: 680px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
  }
  .product .timer p {
    margin-bottom: 5px !important;
    font-size: 32px;
    font-size: 3.2rem;
    color: #FFF;
    font-weight: bold;
    line-height: 180%;
  }
  .product .timer a {
    margin: 0 auto;
    padding: 1em;
    width: 90%;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    background: #fff;
    display: block;
    transition: all .3s ease;
    border: 1px solid #000;
    border-radius: 1rem;
  }
  .product .timer a:hover {
    color: #fff;
    background: #000;
    border: 1px solid #fff;
  }
  .product .timer span {
    padding: 0 .5em;
    font-size: 38px;
    font-size: 3.8rem;
    font-weight: bold;
    background: #ef2617;
    background: linear-gradient(to right, #ef2617 0%, #fcc605 100%);
    display: inline-block;
    border-radius: 1rem;
  }
  .product .aside {
    margin: 0 auto;
    width: 50%;
    min-width: 600px;
  }
  .product .aside .consulting {
    background: #ff9300;
  }
  .product .aside .consulting .operator {
    padding: 10px 0;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
    background: #000;
  }
  .product .bank-attention, .product .btn-bank-text {
    display: none;
  }
  .product .attention {
    margin: 0 auto 5%;
    padding: 3%;
    width: 50%;
    min-width: 600px;
    text-align: left;
    background: #fff;
    border: 1px dotted #333;
  }
  .product .attention dt {
    margin-bottom: 10px;
    padding: 5px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: 1px dotted #333;
    border-left: 3px solid #900;
  }
  .product .attention dd {
    margin-bottom: 30px;
  }
  .product .attention p {
    margin-bottom: .8em;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 160%;
  }
  .product .attention .ifrm-container {
    width: 100%;
    height: 100px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: inline-block;
    border: solid 1px #bbb;
  }
  .product .attention .ifrm-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }
  .product-btn-m {
    margin: 0 auto 50px;
    width: 680px;
  }
  .product-btn-m dt {
    padding: 30px 0;
    font-size: 40px;
    font-size: 4rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #009245;
  }
  .product-btn-m dd {
    padding: 50px 0 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-right: 10px solid #009245;
    border-bottom: 10px solid #009245;
    border-left: 10px solid #009245;
  }
  .product-btn-y {
    margin: 0 auto 50px;
    width: 680px;
  }
  .product-btn-y dt {
    padding: 30px 0;
    font-size: 40px;
    font-size: 4rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #e21352;
  }
  .product-btn-y dd {
    padding: 50px 0 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-right: 10px solid #e21352;
    border-bottom: 10px solid #e21352;
    border-left: 10px solid #e21352;
  }
 /*----------------------------------------
    Btn
  ----------------------------------------*/
  .product .btn1, .product .btn2 {
    margin-bottom: 2%;
    width: 50%;
    min-width: 600px;
  }
 .btn1 {
    margin: 0 auto;
  }
  .btn1 a {
    padding: 2rem 0;
    width: 100%;
    font-size: 42px;
    font-size: 4.2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 120%;
    display: block;
    border-radius: 5rem;
    text-shadow: 0px 1px 0px #333;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn1 a:hover {
    box-shadow: none;
    transform: translate3d(0, 10px, 0);
  }
  .btn1 a span {
    font-weight: bold;
    color: #fff !important;
  }
  .btn1-s {
    margin: 0 auto;
  }
  .btn1-s a {
    padding: 2rem 0;
    width: 100%;
    font-size: 30px;
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 120%;
    display: block;
    border-radius: 5rem;
    text-shadow: 0px 1px 0px #333;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn1-s a:hover {
    box-shadow: none;
    transform: translate3d(0, 10px, 0);
  }
  .btn1-s a span {
    font-weight: bold;
    color: #fff !important;
  }
  .btn2 {
    margin: 0 auto;
  }
  .btn2 a {
    padding: 1rem 0 2rem;
    width: 100%;
    font-size: 42px;
    font-size: 4.2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 120%;
    display: block;
    border-radius: 5rem;
    text-shadow: 0px 1px 0px #333;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn2 a:hover {
    box-shadow: none;
    transform: translate3d(0, 10px, 0);
  }
  .btn2 a span {
    font-weight: bold;
  }
  .btn2 a .small {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1;
    font-weight: normal;
    display: inline-block;
  }
  .btn-green a {
    background-color: #1ca800;
    background-image: linear-gradient(to bottom, #1ca800 0%, #0b8e14 100%);
    box-shadow: 0 12px 0 #176802;
  }
  .btn-red a {
    background-color: #f33;
    background-image: linear-gradient(to bottom, #ff3333 0%, #c62c2c 100%);
    box-shadow: 0 12px 0 #7f1c1c;
  }
  .btn-blue a {
    background-color: #00f;
    background-image: linear-gradient(to bottom, #0000ff 0%, #0000ce 100%);
    box-shadow: 0 12px 0 #000070;
  }
  .btn-orange a {
    background-color: #fa0;
    background-image: linear-gradient(to bottom, #fa0 0%, #f80 100%);
    box-shadow: 0 12px 0 #e76d00;
  }
  .attention {
    margin: 0 auto 5%;
    padding: 3%;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px dotted #333;
  }
  .attention dt {
    margin-bottom: 10px;
    padding: 5px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: 1px dotted #333;
    border-left: 3px solid #900;
  }
  .attention dd {
    margin-bottom: 30px;
  }
  .attention p {
    margin-bottom: .8em;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 160%;
  }
  .attention .ifrm-container {
    width: 100%;
    height: 100px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: inline-block;
    border: solid 1px #bbb;
  }
  .attention .ifrm-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }
  .result-seris-3 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 2.9);
    position: relative;
    background: #000;
  }
  .result-seris-3 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-seris-3 dd {
    position: absolute;
    z-index: 1;
  }
  .result-seris-3 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-seris-3 ul li {
    margin-bottom: .5% !important;
    width: 33%;
  }
  .result-series-4 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 1.9);
    position: relative;
    background: #000;
  }
  .result-series-4 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-4 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-4 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-4 ul li {
    margin-bottom: .5% !important;
    width: 25%;
  }
  .result-series-5 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 1.9);
    position: relative;
    background: #000;
  }
  .result-series-5 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-5 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-5 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-5 ul li {
    margin-bottom: .5% !important;
    width: 20%;
  }
}

@media screen and (max-width: 769px) {
  /*----------------------------------------
    General
  ----------------------------------------*/
  p {
    margin-bottom: 4.2666666667vw;
    font-size: 13px;
    font-size: 3.5vw;
    color: #333;
    line-height: 160%;
  }
  li {
    margin-bottom: 2.6666666667vw;
    font-size: 20px;
    font-size: 5.3vw;
    list-style: none;
    font-weight: bold;
    line-height: 130%;
  }
  br {
    display: none;
  }
  .break {
    display: block;
  }
  .break-sp {
    display: block;
  }
  .img-r {
    margin: 0 0 5.3333333333vw 5.3333333333vw;
    width: 30%;
    float: right;
  }
  .img-l {
    margin: 0 5.3333333333vw 5.3333333333vw 0;
    float: left;
  }
  .of-h {
    width: 100%;
    overflow: hidden;
  }
  #modal {
    display: none;
  }
  p:last-child,
li:last-child,
dl:last-child,
dd:last-child,
.inner:last-child,
.text:last-child {
    margin-bottom: 0 !important;
  }
  .column2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .column2 li {
    margin-bottom: 0;
    width: 49.5%;
  }
  .column3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .column3 li {
    margin-bottom: 0;
    width: 33%;
  }
  .name {
    text-align: right;
  }
  .name img {
    width: 60%;
  }
  /*----------------------------------------
    List
  ----------------------------------------*/
  ol {
    padding: 0;
    counter-reset: my-counter;
    list-style: none;
  }
  ol li {
    margin-bottom: 2.6666666667vw;
    padding-left: 5.3333333333vw;
    position: relative;
  }
  ol li:before {
    margin-left: -8vw;
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    display: block;
    text-align: center;
    color: #222;
    font-weight: normal;
    float: left;
    background-color: #fff;
    border-radius: 50%;
    content: counter(my-counter);
    counter-increment: my-counter;
  }
  .list-green {
    padding: 10%;
    background: #24b7b5;
    background: linear-gradient(to right, #24b7b5 0%, #67bf75 100%);
  }
  .list-green li {
    margin-bottom: 5%;
    font-size: 14px;
    font-size: 3.7vw;
    color: #fff;
  }
  .list-blue {
    padding: 10%;
    background: #24b7b5;
    background: linear-gradient(to right, #002fb7 0%, #9700e2 100%);
  }
  .list-blue li {
    margin-bottom: 5%;
    font-size: 14px;
    font-size: 3.7vw;
    color: #fff;
  }
  .list-orange {
    padding: 10%;
    background: #ff8837;
    background: linear-gradient(to right, #ff8837 0%, #ff215c 100%);
  }
  .list-orange li {
    margin-bottom: 5%;
    font-size: 14px;
    font-size: 3.7vw;
    color: #fff;
  }
  .list-black {
    padding: 10%;
    background: black;
    border: 2px solid #fff;
  }
  .list-black li {
    margin-bottom: 5%;
    font-size: 14px;
    font-size: 3.7vw;
    color: #fff;
  }
  .list-white {
    padding: 10%;
    background: #fff;
  }
  .list-white li {
    margin-bottom: 5%;
    font-size: 14px;
    font-size: 3.7vw;
    color: #333;
  }
  .check {
    padding: 10% 10% 10% 15%;
  }
  .check li {
    position: relative;
  }
  .check li::after {
    display: block;
    content: '';
    position: absolute;
    top: 5px;
    left: -10%;
    width: 16px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /*----------------------------------------
    .movie
  ----------------------------------------*/
  .movie {
    margin: 0 0 5% 0 !important;
    padding: 0 !important;
  }
  .movie dt {
    margin: 0 !important;
    padding: 5% !important;
    font-size: 16px !important;
    font-size: 3vw !important;
    color: #fff !important;
    line-height: 140% !important;
    font-weight: 900 !important;
    background: #ee0000 !important;
    display: flex;
    align-items: center;
    border: none !important;
    text-shadow: none !important;
  }
  .movie dd {
    padding: 0 !important;
    border: none !important;
  }
  .movie dd:before, .movie dd:after {
    height: 0 !important;
    background: none !important;
  }
  .movie i {
    margin-right: 3%;
    font-size: 22px;
    font-size: 5.9vw;
  }
  .player {
    position: relative;
  }
  .player .thumbnail {
    cursor: pointer;
    z-index: 1;
  }
  .player .fa-youtube {
    font-size: 20px;
    font-size: 5.3vw;
    color: #f00;
    cursor: pointer;
    z-index: 2;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.5s 0s ease;
    /*transitionの記述を追加*/
  }
  .player .fa-youtube:before {
    margin-top: 25%;
    display: block;
  }
  .player .fa-youtube:hover {
    color: #fc0;
  }
  #modal-video {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    transition: .5s;
  }
  #modal-video.close {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    visibility: hidden;
  }
  #modal-video.open {
    -webkit-filter: opacity(1);
            filter: opacity(1);
    visibility: visible;
  }
  #modal-video iframe {
    width: 80vw;
    height: 60vw;
  }
  /*----------------------------------------
    .comment
  ----------------------------------------*/
  .comment {
    margin-bottom: 5%;
    padding: 5%;
    border: 1px dotted #333;
  }
  .comment p {
    font-size: 13px;
    font-size: 3.5vw;
  }
  /*----------------------------------------
    table
  ----------------------------------------*/
  .table {
    margin: 0 auto 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 5px solid #ffbb00;
  }
  .table table {
    width: 100%;
    border-collapse: collapse;
  }
  .table tr:last-child {
    border-bottom: none;
  }
  .table th {
    padding: 1em .5em;
    font-size: 13px;
    font-size: 3.5vw;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: #000;
    border-right: 1px dotted #fff;
  }
  .table th:last-child {
    border-right: none;
  }
  .table .kind {
    width: 20% !important;
    background: #d18400;
    color: #fff;
  }
  .table td {
    padding: .8em 1em;
    width: 18%;
    font-size: 13px;
    font-size: 3.5vw;
    text-align: center;
    background: #eee;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .table .large {
    font-size: 20px;
    font-size: 5.3vw;
    font-weight: bold;
  }
  .table .limited {
    width: 40% !important;
    font-size: 15px;
    font-size: 4vw;
    font-weight: bold;
    color: #fff;
    background: #d40064;
  }
  .table .kind-all {
    font-weight: bold;
    color: #fff;
    background: #774b00;
  }
  .table .all {
    font-size: 15px;
    font-size: 4vw;
    font-weight: bold;
    color: #fff;
    background: #d40064;
  }
  .table .off {
    color: #d40064;
    font-weight: bold;
  }
  /*----------------------------------------
    .chat
  ----------------------------------------*/
  .chat {
    margin: 0 auto 1rem;
    padding: 1rem;
    width: 100%;
    background: #7da4cd;
    border-radius: 1.5rem;
  }
  .chat .balloon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .chat .balloon .faceicon {
    width: 15%;
    font-size: 40px;
    font-size: 10.7vw;
  }
  .chat .balloon .faceicon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    background: #fff;
  }
  .chat .balloon .chatting {
    width: 80%;
  }
  .chat .balloon .chatting .says {
    display: inline-block;
    position: relative;
    padding: 1rem;
    width: 100%;
    border-radius: 1rem;
    background: #fff;
  }
  .chat .balloon .chatting .says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 3px;
    left: -19px;
    border: 8px solid transparent;
    border-right: 18px solid #fff;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  .chat .balloon .chatting .says p {
    color: #333 !important;
  }
  .chat-black {
    margin: 0 auto 3rem;
    padding: 2rem;
    width: 100%;
    background: #000;
    border: 1px solid #fff;
  }
  .chat-black .balloon {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .chat-black .balloon .faceicon {
    width: 30%;
  }
  .chat-black .balloon .faceicon img {
    width: 100%;
    height: auto;
  }
  .chat-black .balloon .chatting {
    width: 65%;
  }
  .chat-black .balloon .chatting .says {
    display: inline-block;
    position: relative;
    padding: 2rem;
    background: #fff;
  }
  .chat-black .balloon .chatting .says p {
    margin-bottom: .5em;
    font-size: 10px;
    font-size: 2.7vw;
    color: #333 !important;
  }
  /*----------------------------------------
    .point
  ----------------------------------------*/
  .point-orange {
    margin-bottom: 1rem;
    padding: 2rem;
    background: #e95a00;
    border-radius: 1rem;
  }
  .point-orange dt {
    margin: 0 0 1em 0 !important;
    padding: 0 0 .5em 0 !important;
    font-size: 18px;
    font-size: 4.8vw;
    color: #fff !important;
    line-height: 160%;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold !important;
    border-bottom: 2px dashed #fff !important;
    background: transparent !important;
  }
  .point-orange dt i {
    margin-right: .3em;
  }
  .point-orange dd {
    padding: 2rem;
    background: #fff;
    border-radius: .5rem;
  }
  .point-orange p, .point-orange li {
    margin-bottom: .5em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #333 !important;
  }
  .point-orange p span, .point-orange li span {
    margin-bottom: .2em;
    padding: .2em .5em;
    color: #000;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    border-radius: .3em;
  }
  .point-red {
    margin-bottom: 1rem;
    padding: 2rem;
    background: #f00;
    border-radius: 1rem;
  }
  .point-red dt {
    margin: 0 0 1em 0 !important;
    padding: 0 0 .5em 0 !important;
    font-size: 18px;
    font-size: 4.8vw;
    color: #fff !important;
    line-height: 160%;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold !important;
    border-bottom: 2px dashed #fff !important;
    background: transparent !important;
  }
  .point-red dt i {
    margin-right: .3em;
  }
  .point-red dd {
    padding: 2rem;
    background: #fff;
    border-radius: .5rem;
  }
  .point-red p, .point-red li {
    margin-bottom: .5em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #333 !important;
  }
  .point-red p span, .point-red li span {
    margin-bottom: .2em;
    padding: .2em .5em;
    color: #000;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    border-radius: .3em;
  }
  .point-blue {
    margin-bottom: 1rem;
    padding: 2rem;
    background: #0039a7;
    border-radius: 1rem;
  }
  .point-blue dt {
    margin: 0 0 1em 0 !important;
    padding: 0 0 .5em 0 !important;
    font-size: 18px;
    font-size: 4.8vw;
    color: #fff !important;
    line-height: 160%;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold !important;
    border-bottom: 2px dashed #fff !important;
    background: transparent !important;
  }
  .point-blue dt i {
    margin-right: .3em;
  }
  .point-blue dd {
    padding: 2rem;
    background: #fff;
    border-radius: .5rem;
  }
  .point-blue p, .point-blue li {
    margin-bottom: .5em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #333 !important;
  }
  .point-blue p span, .point-blue li span {
    margin-bottom: .2em;
    padding: .2em .5em;
    color: #000;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    border-radius: .3em;
  }
  .point-green {
    margin-bottom: 1rem;
    padding: 2rem;
    background: #007a1f;
    border-radius: 1rem;
  }
  .point-green dt {
    margin: 0 0 1em 0 !important;
    padding: 0 0 .5em 0 !important;
    font-size: 18px;
    font-size: 4.8vw;
    color: #fff !important;
    line-height: 160%;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold !important;
    border-bottom: 2px dashed #fff !important;
    background: transparent !important;
  }
  .point-green dt i {
    margin-right: .3em;
  }
  .point-green dd {
    padding: 2rem;
    background: #fff;
    border-radius: .5rem;
  }
  .point-green p, .point-green li {
    margin-bottom: .5em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #333 !important;
  }
  .point-green p span, .point-green li span {
    margin-bottom: .2em;
    padding: .2em .5em;
    color: #000;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    border-radius: .3em;
  }
  .point-black {
    margin-bottom: 1rem;
    padding: 2rem;
    background: #000;
    border-radius: 1rem;
    border: 2px solid #fff;
  }
  .point-black dt {
    margin: 0 0 1em 0 !important;
    padding: 0 0 .5em 0 !important;
    font-size: 18px;
    font-size: 4.8vw;
    color: #fff !important;
    line-height: 160%;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold !important;
    border-bottom: 2px dashed #fff !important;
    background: transparent !important;
  }
  .point-black dt i {
    margin-right: .3em;
  }
  .point-black dd {
    padding: 2rem;
    background: #fff;
    border-radius: .5rem;
  }
  .point-black p, .point-black li {
    margin-bottom: .5em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #333 !important;
  }
  .point-black p span, .point-black li span {
    margin-bottom: .2em;
    padding: .2em .5em;
    color: #000;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    border-radius: .3em;
  }
  .point-white {
    margin-bottom: 1rem;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
  }
  .point-white dt {
    margin: 0 0 1em 0 !important;
    padding: 0 0 .5em 0 !important;
    font-size: 18px;
    font-size: 4.8vw;
    color: #fff !important;
    line-height: 160%;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold !important;
    border-bottom: 2px dashed #fff !important;
    background: transparent !important;
  }
  .point-white dt i {
    margin-right: .3em;
  }
  .point-white dd {
    padding: 2rem;
    background: #000;
    border-radius: .5rem;
  }
  .point-white p, .point-white li {
    margin-bottom: .5em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #fff !important;
  }
  .point-white p span, .point-white li span {
    margin-bottom: .2em;
    padding: .2em .5em;
    color: #000;
    font-family: 'Kosugi Maru', sans-serif !important;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    border-radius: .3em;
  }
  /*----------------------------------------
    .description
  ----------------------------------------*/
  .description-blue {
    margin-bottom: 3em !important;
    padding: 0 !important;
  }
  .description-blue dt {
    margin-bottom: 0 !important;
    padding: .3em 5%;
    font-size: 20px;
    font-size: 5.3vw;
    font-weight: bold;
    color: #010079;
    text-shadow: 0 0 5px #fff;
    background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px, #e9f4ff 3px, #e9f4ff 7px);
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
  }
  .description-blue dt i {
    margin-right: .5em;
  }
  .description-blue dd {
    padding: 2em 5% 1em !important;
    background: #fff !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
    border-right: 3px solid #cce7ff;
    border-bottom: 3px solid #cce7ff;
    border-left: 3px solid #cce7ff;
  }
  .description-blue dd p {
    margin-bottom: 1em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #333 !important;
  }
  .description-orange {
    margin-bottom: 3em !important;
    padding: 0 !important;
  }
  .description-orange dt {
    margin-bottom: 0 !important;
    padding: .3em 5%;
    font-size: 20px;
    font-size: 5.3vw;
    font-weight: bold;
    color: #4e2800;
    text-shadow: 0 0 5px #fff;
    background: repeating-linear-gradient(-45deg, #ffb229, #ffb229 3px, #f9ddaa 3px, #f9ddaa 7px);
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
  }
  .description-orange dt i {
    margin-right: .5em;
  }
  .description-orange dd {
    padding: 2em 5% 1em !important;
    background: #fff !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
    border-right: 3px solid #ffb229;
    border-bottom: 3px solid #ffb229;
    border-left: 3px solid #ffb229;
  }
  .description-orange dd p {
    margin-bottom: 1em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #333 !important;
  }
  .description-green {
    margin-bottom: 3em !important;
    padding: 0 !important;
  }
  .description-green dt {
    margin-bottom: 0 !important;
    padding: .3em 5%;
    font-size: 20px;
    font-size: 5.3vw;
    font-weight: bold;
    color: #4e2800;
    text-shadow: 0 0 5px #fff;
    background: repeating-linear-gradient(-45deg, #c2e6b6, #c2e6b6 3px, #dcffc2 3px, #dcffc2 7px);
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
  }
  .description-green dt i {
    margin-right: .5em;
  }
  .description-green dd {
    padding: 2em 5% 1em !important;
    background: #fff !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
    border-right: 3px solid #c2e6b6;
    border-bottom: 3px solid #c2e6b6;
    border-left: 3px solid #c2e6b6;
  }
  .description-green dd p {
    margin-bottom: 1em;
    font-size: 12px;
    font-size: 3.2vw;
    color: #333 !important;
  }
  /*----------------------------------------
    .pre
  ----------------------------------------*/
  .pre {
    padding: 2rem;
    width: 100%;
    text-align: center;
    background: #fff;
  }
  .pre .start {
    margin-bottom: 0.5em;
    font-size: 13px;
    font-size: 3.5vw;
    font-weight: bold;
    line-height: 150%;
    color: #333 !important;
    letter-spacing: -0.05em;
  }
  .pre .date {
    margin-bottom: 0.2em;
    font-size: 30px;
    font-size: 8vw;
    font-weight: bold;
    line-height: 120%;
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    display: inline-block;
    color: #900;
  }
  .pre .caution {
    font-size: 10px;
    font-size: 2.7vw;
    line-height: 160%;
    display: block;
    letter-spacing: -0.05em;
  }
  .pre .timer {
    padding: 1rem;
    text-align: center;
    background: #a00;
    border-radius: 1rem;
  }
  .pre .timer p {
    margin-bottom: 0.2em;
    font-size: 20px;
    font-size: 5.3vw;
    color: #fff !important;
    letter-spacing: 0.1em;
  }
  .pre .timer small {
    font-size: 15px;
    font-size: 4vw;
    line-height: 140%;
    display: block;
  }
  .pre .timer span {
    padding: 0.3em 1em;
    font-size: 20px;
    font-size: 5.3vw;
    color: #000;
    letter-spacing: 0.1em;
    background: #fff;
    display: inline-block;
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }
  /*----------------------------------------
    #btn-float
  ----------------------------------------*/
  #btn-float {
    padding: 0 5%;
    width: 100%;
    position: fixed;
    bottom: 10px;
  }
  #btn-float i {
    font-size: 20px;
    font-size: 5.3vw;
  }
  #btn-float a {
    margin: 0 auto;
    padding: 3% 0;
    width: 100%;
    font-size: 18px;
    font-size: 4.8vw;
    color: #fff;
    font-weight: bold;
    text-align: center;
    display: block;
    letter-spacing: -0.05em;
    background-color: #1ca800;
    background-size: 100%;
    background-image: linear-gradient(to bottom, #1ca800 0%, #0b8e14 100%);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 1.3333333333vw 0 #176802;
    text-shadow: 0 0.2666666667vw 0 #333;
    cursor: pointer;
  }
  #btn-float a span {
    font-weight: bold;
    color: #fff !important;
  }
  /*----------------------------------------
    #header
  ----------------------------------------*/
  #header-top {
    padding: 1rem;
    width: 100%;
    text-align: center;
    background: #bb0a0a;
  }
  #header-top .timer {
    margin: 0 auto;
    width: 100%;
    background: none;
  }
  #header-top p {
    margin-bottom: 0 !important;
    font-size: 10px;
    font-size: 2.7vw;
    color: #fff;
    font-weight: normal;
    line-height: 160%;
  }
  #header-top a {
    margin: 2% auto 0;
    padding: 2%;
    width: 90%;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    background: #fff;
    display: block;
    transition: all .3s ease;
    border-radius: 10px;
  }
  #header-top a:hover {
    color: #fff;
    background: #000;
  }
  #header-top br {
    display: block;
  }
  #header-top .timer span {
    margin-top: 1%;
    padding: 1% 3%;
    font-size: 18px;
    font-size: 4.8vw;
    text-shadow: 1px 1px 0px #000;
    background: #ef2617;
    background: linear-gradient(to right, #ef2617 0%, #fcc605 100%);
    display: inline-block;
    border-radius: 5px;
    box-shadow: 0 0 5px #000;
  }
  #margin-top .kiwi {
    background: none;
  }
  /*----------------------------------------
    #footer
  ----------------------------------------*/
  #footer {
    text-align: center;
    background: #fff;
  }
  #footer li {
    margin-bottom: 0;
    font-size: 16px;
    font-size: 4.3vw;
    color: #fff;
    background: #333;
    border-bottom: 1px dotted #fff;
  }
  #footer a {
    padding: 5%;
    color: #fff;
    display: block;
  }
  #footer .copyright {
    margin-bottom: 0;
    padding: 3%;
    font-size: 14px;
    font-size: 3.7vw;
    color: #666;
  }
  #footer .space {
    padding-bottom: 0%;
  }
  /*----------------------------------------
    .product
  ----------------------------------------*/
  .product {
    background: url(../images/contents-background.jpg) repeat-y center top;
    background-size: 300%;
  }
  .product h3 {
    margin-bottom: 2rem;
    padding: 3rem 12rem;
    background: rgba(255, 255, 255, 0.95);
  }
  .product h4 {
    padding: 1rem;
  }
  .product .timer {
    margin: 0 auto 5%;
    padding: 5% 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
  }
  .product .timer p {
    margin-bottom: 5px !important;
    font-size: 18px;
    font-size: 4.8vw;
    color: #FFF;
    font-weight: bold;
    line-height: 200%;
  }
  .product .timer a {
    margin: 2% auto 0;
    padding: 2%;
    width: 90%;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    background: #fff;
    display: block;
    transition: all .3s ease;
    border-radius: 10px;
  }
  .product .timer a:hover {
    color: #fff;
    background: #000;
  }
  .product .timer br {
    display: block;
  }
  .product .timer span {
    padding: 0 2%;
    font-size: 18px;
    font-size: 4.8vw;
    background: #ef2617;
    background: linear-gradient(to right, #ef2617 0%, #fcc605 100%);
    display: inline-block;
    border-radius: 5px;
  }
  .product .menu {
    margin: 0 auto 1rem;
    width: 90%;
  }
  .product .menu li {
    margin-bottom: .5rem;
  }
  .product .menu .product-contents {
    margin-bottom: 1rem;
  }
  .product .menu .product-contents ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .product .menu .product-contents ul:after {
    content: "";
    display: block;
    width: 49%;
  }
  .product .menu .product-contents li {
    width: 49%;
  }
  .product .menu .product-bonus {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
  }
  .product .menu .product-bonus ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  /* .product .menu .product-bonus ul:after {
    content: "";
    display: block;
    width: 33%;
  } */
  .product .menu .product-bonus li {
    margin-bottom: .5rem;
    width: 33%;
  }
  .product .menu .product-bonus li img {
    vertical-align: top;
  }
  .product .menu .product-price {
    margin-bottom: 5rem;
  }
  .product .product-caution {
    padding: 3rem;
    text-align: center;
    background: #fff;
    border: 5px solid #900;
  }
  .product .product-caution p {
    font-size: 15px;
    font-size: 4vw;
  }
  .product .product-caution a {
    color: #00f;
  }
  .product .aside {
    width: 100%;
  }
  .product .aside li {
    margin-bottom: 0;
  }
  .product .aside .consulting {
    background: #ff9300;
  }
  .product .aside .consulting .operator {
    margin-bottom: 0;
    padding: 3%;
    font-size: 13px;
    font-size: 3.5vw;
    color: #fff;
    text-align: center;
    background: #000;
  }
  .product .bank-attention a {
    color: #fff;
    margin: 0 auto 1em;
    padding: .5em;
    width: 90%;
    text-align: center;
    display: block;
    background: #f00;
    border-radius: 1em;
  }
  .product .btn-bank-text a {
    margin: 0 auto;
    padding: 1em;
    width: 90%;
    font-size: 12px;
    font-size: 3.2vw;
    text-align: center;
    background: #fff;
    border: .2rem solid #333;
    display: block;
  }
  .product .attention {
    margin-bottom: 0;
    padding: 5%;
    width: 100%;
    text-align: left;
    background: #fff;
  }
  .product .attention dt {
    margin-bottom: 5%;
    padding: 2%;
    font-size: 14px;
    font-size: 3.7vw;
    font-weight: bold;
    border-bottom: 1px dotted #333;
    border-left: 0.8vw solid #900;
  }
  .product .attention dd {
    margin-bottom: 10%;
  }
  .product .attention p {
    margin-bottom: 2.6666666667vw;
    font-size: 8px;
    font-size: 2.1vw;
    line-height: 160%;
  }
  .product .attention .ifrm-container {
    width: 100%;
    height: 100px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: inline-block;
    border: solid 1px #bbb;
  }
  .product .attention .ifrm-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }
  .product-btn-m {
    margin: 0 auto 5%;
    width: 100%;
  }
  .product-btn-m dt {
    padding: 5% 0;
    font-size: 25px;
    font-size: 6.7vw;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #009245;
  }
  .product-btn-m dd {
    padding: 5% 0 2%;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-right: 5px solid #009245;
    border-bottom: 5px solid #009245;
    border-left: 5px solid #009245;
  }
  .product-btn-y {
    margin: 0 auto 5%;
    width: 100%;
  }
  .product-btn-y dt {
    padding: 5% 0;
    font-size: 25px;
    font-size: 6.7vw;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #e21352;
  }
  .product-btn-y dd {
    padding: 5% 0 2%;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-right: 5px solid #e21352;
    border-bottom: 5px solid #e21352;
    border-left: 5px solid #e21352;
  }
  /*----------------------------------------
    Btn
  ----------------------------------------*/
  .product .btn1, .product .btn2 {
    margin: 0 auto 2rem;
    width: 95%;
  }
  .btn1 {
    margin: 0 auto;
  }
  .btn1 a {
    padding: 2rem 0;
    width: 100%;
    font-size: 25px;
    font-size: 6.7vw;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 120%;
    display: block;
    border-radius: 5rem;
    text-shadow: 0px 1px 0px #333;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn1 a:hover {
    box-shadow: none;
    transform: translate3d(0, 10px, 0);
  }
  .btn1 a span {
    font-weight: bold;
    color: #fff !important;
  }
  .btn1-s {
    margin: 0 auto;
  }
  .btn1-s a {
    padding: 2rem 0;
    width: 100%;
    font-size: 18px;
    font-size: 4.8vw;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 120%;
    display: block;
    border-radius: 5rem;
    text-shadow: 0px 1px 0px #333;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn1-s a:hover {
    box-shadow: none;
    transform: translate3d(0, 10px, 0);
  }
  .btn1-s a span {
    font-weight: bold;
    color: #fff !important;
  }
  .btn2 {
    margin: 0 auto;
  }
  .btn2 a {
    padding: 1rem 0 2rem;
    width: 100%;
    font-size: 25px;
    font-size: 6.7vw;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 120%;
    display: block;
    border-radius: 5rem;
    text-shadow: 0px 1px 0px #333;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn2 a:hover {
    box-shadow: none;
    transform: translate3d(0, 10px, 0);
  }
  .btn2 a span {
    font-weight: bold;
  }
  .btn2 a .small {
    font-size: 13px;
    font-size: 3.5vw;
    line-height: 1;
    font-weight: normal;
    display: inline-block;
  }
  .btn-green a {
    background-color: #1ca800;
    background-image: linear-gradient(to bottom, #1ca800 0%, #0b8e14 100%);
    box-shadow: 0 12px 0 #176802;
  }
  .btn-red a {
    background-color: #f33;
    background-image: linear-gradient(to bottom, #ff3333 0%, #c62c2c 100%);
    box-shadow: 0 12px 0 #7f1c1c;
  }
  .btn-blue a {
    background-color: #00f;
    background-image: linear-gradient(to bottom, #0000ff 0%, #0000ce 100%);
    box-shadow: 0 12px 0 #000070;
  }
  .btn-orange a {
    background-color: #fa0;
    background-image: linear-gradient(to bottom, #fa0 0%, #f80 100%);
    box-shadow: 0 12px 0 #e76d00;
  }
  /*----------------------------------------
    #voice
  ----------------------------------------*/
  #voice h3 {
    padding: 4rem .5rem 4rem 13rem;
    background: url(../images/voice-background.jpg) no-repeat center top;
    background-size: cover;
  }
  #voice .movie {
    margin-bottom: 0 !important;
  }
  #voice .text {
    padding: 3rem;
  }
  #voice .text dt {
    margin-bottom: 1em;
    padding: 1em 1em;
    font-size: 15px;
    font-size: 4vw;
    color: #fff;
    font-weight: bold;
    line-height: 120%;
    background: #900;
    border-radius: 1em;
  }
  #voice .text dd {
    margin-bottom: 8em;
  }
  #voice .text .name {
    padding: .5rem;
    font-size: 8px;
    font-size: 2.1vw;
    color: #900;
    display: inline;
    border: 1px solid #900;
    border-radius: 5em;
  }
  #voice .text .img-r {
    width: 40%;
    text-align: center;
  }
  #voice .text .img-r img {
    margin-bottom: 1rem;
  }
  .attention {
    padding: 2rem;
    width: 100%;
    background: #fff;
    border: 1px solid #aaa;
  }
  .attention dt {
    margin-bottom: .5em;
    padding: .5em 0 .5em .5em;
    font-size: 14px;
    font-size: 3.7vw;
    font-weight: bold;
    border-bottom: 1px dotted #333;
    border-left: 3px solid #900;
  }
  .attention dd {
    margin-bottom: 2rem;
  }
  .attention p {
    margin-bottom: 1em;
    font-size: 8px;
    font-size: 2.1vw;
    line-height: 130%;
  }
  .attention .ifrm-container {
    width: 100%;
    height: 100px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: inline-block;
    border: solid 1px #bbb;
  }
  .attention .ifrm-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }
}

/*----------------------------------------
  border
----------------------------------------*/
.brdr-w {
  border: 1px solid #fff;
}

.brdr-b {
  border: 1px solid #000;
}

/*----------------------------------------
  font-color
----------------------------------------*/
.fc-r {
  color: #900!important;
}

.fc-b {
  color: #009!important;
}

.fc-g {
  color: #090!important;
}

.fc-y {
  color: #ffc926!important;
}

.fc-bk {
  color: #000!important;
}
/*----------------------------------------
  font-background-color
----------------------------------------*/
.fb-r {
  padding: 1px;
  color: #fff;
  font-weight: bold;
  background: #900;
}

.fb-b {
  padding: 1px;
  color: #fff;
  font-weight: bold;
  background: #009;
}

.fb-g {
  padding: 1px;
  color: #fff;
  font-weight: bold;
  background: #090;
}

.fb-y {
  padding: 1px;
  font-weight: bold;
  background: #ffc926;
}

.fb-yr {
  padding: 1px;
  color: #900;
  font-weight: bold;
  background: #ffc926;
}

/*----------------------------------------
  font-weight
----------------------------------------*/
.fw-n {
  font-weight: normal;
}

.fw-b {
  /* font-family: 'Noto Sans JP'; */
  font-weight: 900;
}

/*----------------------------------------
  font-size
----------------------------------------*/
/* PCサイズ */
@media screen and (min-width: 769px){
  .fs-10 { font-size: 10px; font-size: 1.0rem!important; }
  .fs-11 { font-size: 11px; font-size: 1.1rem!important; }
  .fs-12 { font-size: 12px; font-size: 1.2rem!important; }
  .fs-13 { font-size: 13px; font-size: 1.3rem!important; }
  .fs-14 { font-size: 14px; font-size: 1.4rem!important; }
  .fs-15 { font-size: 15px; font-size: 1.5rem!important; }
  .fs-16 { font-size: 16px; font-size: 1.6rem!important; }
  .fs-17 { font-size: 17px; font-size: 1.7rem!important; }
  .fs-18 { font-size: 18px; font-size: 1.8rem!important; }
  .fs-19 { font-size: 19px; font-size: 1.9rem!important; }
  .fs-20 { font-size: 20px; font-size: 2.0rem!important; }
  .fs-21 { font-size: 21px; font-size: 2.1rem!important; }
  .fs-22 { font-size: 22px; font-size: 2.2rem!important; }
  .fs-23 { font-size: 23px; font-size: 2.3rem!important; }
  .fs-24 { font-size: 24px; font-size: 2.4rem!important; }
  .fs-25 { font-size: 25px; font-size: 2.5rem!important; }
  .fs-26 { font-size: 26px; font-size: 2.6rem!important; }
  .fs-27 { font-size: 27px; font-size: 2.7rem!important; }
  .fs-28 { font-size: 28px; font-size: 2.8rem!important; }
  .fs-29 { font-size: 29px; font-size: 2.9rem!important; }
  .fs-30 { font-size: 30px; font-size: 3.0rem!important; }
  .fs-31 { font-size: 31px; font-size: 3.1rem!important; }
  .fs-32 { font-size: 32px; font-size: 3.2rem!important; }
  .fs-33 { font-size: 33px; font-size: 3.3rem!important; }
  .fs-34 { font-size: 34px; font-size: 3.4rem!important; }
  .fs-35 { font-size: 35px; font-size: 3.5rem!important; }
  .fs-36 { font-size: 36px; font-size: 3.6rem!important; }
  .fs-37 { font-size: 37px; font-size: 3.7rem!important; }
  .fs-38 { font-size: 38px; font-size: 3.8rem!important; }
  .fs-39 { font-size: 39px; font-size: 3.9rem!important; }
  .fs-40 { font-size: 40px; font-size: 4.0rem!important; }
  .fs-41 { font-size: 41px; font-size: 4.1rem!important; }
  .fs-42 { font-size: 42px; font-size: 4.2rem!important; }
  .fs-43 { font-size: 43px; font-size: 4.3rem!important; }
  .fs-44 { font-size: 44px; font-size: 4.4rem!important; }
  .fs-45 { font-size: 45px; font-size: 4.5rem!important; }
  .fs-46 { font-size: 46px; font-size: 4.6rem!important; }
  .fs-47 { font-size: 47px; font-size: 4.7rem!important; }
  .fs-48 { font-size: 48px; font-size: 4.8rem!important; }
  .fs-49 { font-size: 49px; font-size: 4.9rem!important; }
  .fs-50 { font-size: 50px; font-size: 5.0rem!important; }
  .fs-51 { font-size: 51px; font-size: 5.1rem!important; }
  .fs-52 { font-size: 52px; font-size: 5.2rem!important; }
  .fs-53 { font-size: 53px; font-size: 5.3rem!important; }
  .fs-54 { font-size: 54px; font-size: 5.4rem!important; }
  .fs-55 { font-size: 55px; font-size: 5.5rem!important; }
  .fs-56 { font-size: 56px; font-size: 5.6rem!important; }
  .fs-57 { font-size: 57px; font-size: 5.7rem!important; }
  .fs-58 { font-size: 58px; font-size: 5.8rem!important; }
  .fs-59 { font-size: 59px; font-size: 5.9rem!important; }
  .fs-60 { font-size: 60px; font-size: 6.0rem!important; }
  .fs-61 { font-size: 61px; font-size: 6.1rem!important; }
  .fs-62 { font-size: 62px; font-size: 6.2rem!important; }
  .fs-63 { font-size: 63px; font-size: 6.3rem!important; }
  .fs-64 { font-size: 64px; font-size: 6.4rem!important; }
  .fs-65 { font-size: 65px; font-size: 6.5rem!important; }
  .fs-66 { font-size: 66px; font-size: 6.6rem!important; }
  .fs-67 { font-size: 67px; font-size: 6.7rem!important; }
  .fs-68 { font-size: 68px; font-size: 6.8rem!important; }
  .fs-69 { font-size: 69px; font-size: 6.9rem!important; }
  .fs-70 { font-size: 70px; font-size: 7.0rem!important; }
  .fs-71 { font-size: 71px; font-size: 7.1rem!important; }
  .fs-72 { font-size: 72px; font-size: 7.2rem!important; }
  .fs-73 { font-size: 73px; font-size: 7.3rem!important; }
  .fs-74 { font-size: 74px; font-size: 7.4rem!important; }
  .fs-75 { font-size: 75px; font-size: 7.5rem!important; }
  .fs-76 { font-size: 76px; font-size: 7.6rem!important; }
  .fs-77 { font-size: 77px; font-size: 7.7rem!important; }
  .fs-78 { font-size: 78px; font-size: 7.8rem!important; }
  .fs-79 { font-size: 79px; font-size: 7.9rem!important; }
  .fs-80 { font-size: 80px; font-size: 8.0rem!important; }
  .fs-81 { font-size: 81px; font-size: 8.1rem!important; }
  .fs-82 { font-size: 82px; font-size: 8.2rem!important; }
  .fs-83 { font-size: 83px; font-size: 8.3rem!important; }
  .fs-84 { font-size: 84px; font-size: 8.4rem!important; }
  .fs-85 { font-size: 85px; font-size: 8.5rem!important; }
  .fs-86 { font-size: 86px; font-size: 8.6rem!important; }
  .fs-87 { font-size: 87px; font-size: 8.7rem!important; }
  .fs-88 { font-size: 88px; font-size: 8.8rem!important; }
  .fs-89 { font-size: 89px; font-size: 8.9rem!important; }
  .fs-90 { font-size: 90px; font-size: 9.0rem!important; }
  .fs-91 { font-size: 91px; font-size: 9.1rem!important; }
  .fs-92 { font-size: 92px; font-size: 9.2rem!important; }
  .fs-93 { font-size: 93px; font-size: 9.3rem!important; }
  .fs-94 { font-size: 94px; font-size: 9.4rem!important; }
  .fs-95 { font-size: 95px; font-size: 9.5rem!important; }
  .fs-96 { font-size: 96px; font-size: 9.6rem!important; }
  .fs-97 { font-size: 97px; font-size: 9.7rem!important; }
  .fs-98 { font-size: 98px; font-size: 9.8rem!important; }
  .fs-99 { font-size: 99px; font-size: 9.9rem!important; }
  .fs-100 { font-size: 100px; font-size: 10.0rem!important; }
}
/* スマホサイズ */
@media screen and (max-width: 768px) {
  .fs-sp20 { font-size: 2vw!important; }
  .fs-sp21 { font-size: 2.1vw!important; }
  .fs-sp22 { font-size: 2.2vw!important; }
  .fs-sp23 { font-size: 2.3vw!important; }
  .fs-sp24 { font-size: 2.4vw!important; }
  .fs-sp25 { font-size: 2.5vw!important; }
  .fs-sp26 { font-size: 2.6vw!important; }
  .fs-sp27 { font-size: 2.7vw!important; }
  .fs-sp28 { font-size: 2.8vw!important; }
  .fs-sp29 { font-size: 2.9vw!important; }
  .fs-sp30 { font-size: 3vw!important; }
  .fs-sp31 { font-size: 3.1vw!important; }
  .fs-sp32 { font-size: 3.2vw!important; }
  .fs-sp33 { font-size: 3.3vw!important; }
  .fs-sp34 { font-size: 3.4vw!important; }
  .fs-sp35 { font-size: 3.5vw!important; }
  .fs-sp36 { font-size: 3.6vw!important; }
  .fs-sp37 { font-size: 3.7vw!important; }
  .fs-sp38 { font-size: 3.8vw!important; }
  .fs-sp39 { font-size: 3.9vw!important; }
  .fs-sp40 { font-size: 4vw!important; }
  .fs-sp41 { font-size: 4.1vw!important; }
  .fs-sp42 { font-size: 4.2vw!important; }
  .fs-sp43 { font-size: 4.3vw!important; }
  .fs-sp44 { font-size: 4.4vw!important; }
  .fs-sp45 { font-size: 4.5vw!important; }
  .fs-sp46 { font-size: 4.6vw!important; }
  .fs-sp47 { font-size: 4.7vw!important; }
  .fs-sp48 { font-size: 4.8vw!important; }
  .fs-sp49 { font-size: 4.9vw!important; }
  .fs-sp50 { font-size: 5vw!important; }
  .fs-sp51 { font-size: 5.1vw!important; }
  .fs-sp52 { font-size: 5.2vw!important; }
  .fs-sp53 { font-size: 5.3vw!important; }
  .fs-sp54 { font-size: 5.4vw!important; }
  .fs-sp55 { font-size: 5.5vw!important; }
  .fs-sp56 { font-size: 5.6vw!important; }
  .fs-sp57 { font-size: 5.7vw!important; }
  .fs-sp58 { font-size: 5.8vw!important; }
  .fs-sp59 { font-size: 5.9vw!important; }
  .fs-sp60 { font-size: 6vw!important; }
  .fs-sp61 { font-size: 6.1vw!important; }
  .fs-sp62 { font-size: 6.2vw!important; }
  .fs-sp63 { font-size: 6.3vw!important; }
  .fs-sp64 { font-size: 6.4vw!important; }
  .fs-sp65 { font-size: 6.5vw!important; }
  .fs-sp66 { font-size: 6.6vw!important; }
  .fs-sp67 { font-size: 6.7vw!important; }
  .fs-sp68 { font-size: 6.8vw!important; }
  .fs-sp69 { font-size: 6.9vw!important; }
  .fs-sp70 { font-size: 7vw!important; }
  .fs-sp71 { font-size: 7.1vw!important; }
  .fs-sp72 { font-size: 7.2vw!important; }
  .fs-sp73 { font-size: 7.3vw!important; }
  .fs-sp74 { font-size: 7.4vw!important; }
  .fs-sp75 { font-size: 7.5vw!important; }
  .fs-sp76 { font-size: 7.6vw!important; }
  .fs-sp77 { font-size: 7.7vw!important; }
  .fs-sp78 { font-size: 7.8vw!important; }
  .fs-sp79 { font-size: 7.9vw!important; }
  .fs-sp80 { font-size: 8vw!important; }
  .fs-sp81 { font-size: 8.1vw!important; }
  .fs-sp82 { font-size: 8.2vw!important; }
  .fs-sp83 { font-size: 8.3vw!important; }
  .fs-sp84 { font-size: 8.4vw!important; }
  .fs-sp85 { font-size: 8.5vw!important; }
  .fs-sp86 { font-size: 8.6vw!important; }
  .fs-sp87 { font-size: 8.7vw!important; }
  .fs-sp88 { font-size: 8.8vw!important; }
  .fs-sp89 { font-size: 8.9vw!important; }
  .fs-sp90 { font-size: 9vw!important; }
  .fs-sp91 { font-size: 9.1vw!important; }
  .fs-sp92 { font-size: 9.2vw!important; }
  .fs-sp93 { font-size: 9.3vw!important; }
  .fs-sp94 { font-size: 9.4vw!important; }
  .fs-sp95 { font-size: 9.5vw!important; }
  .fs-sp96 { font-size: 9.6vw!important; }
  .fs-sp97 { font-size: 9.7vw!important; }
  .fs-sp98 { font-size: 9.8vw!important; }
  .fs-sp99 { font-size: 9.9vw!important; }
  .fs-sp100 { font-size: 10vw!important; }
}

/*----------------------------------------
  width
----------------------------------------*/
.w-5   { width: 5% !important; margin: 0 auto; }
.w-10  { width: 10% !important; margin: 0 auto; }
.w-15  { width: 15% !important; margin: 0 auto; }
.w-20  { width: 20% !important; margin: 0 auto; }
.w-25  { width: 25% !important; margin: 0 auto; }
.w-30  { width: 30% !important; margin: 0 auto; }
.w-35  { width: 35% !important; margin: 0 auto; }
.w-40  { width: 40% !important; margin: 0 auto; }
.w-45  { width: 45% !important; margin: 0 auto; }
.w-50  { width: 50% !important; margin: 0 auto; }
.w-55  { width: 55% !important; margin: 0 auto; }
.w-60  { width: 60% !important; margin: 0 auto; }
.w-65  { width: 65% !important; margin: 0 auto; }
.w-70  { width: 70% !important; margin: 0 auto; }
.w-75  { width: 75% !important; margin: 0 auto; }
.w-80  { width: 80% !important; margin: 0 auto; }
.w-85  { width: 85% !important; margin: 0 auto; }
.w-90  { width: 90% !important; margin: 0 auto; }
.w-95  { width: 95% !important; margin: 0 auto; }
.w-100 { width: 100% !important; margin: 0 auto; }

@media screen and (max-width: 768px){
  .w-sp5   { width: 5% !important; margin: 0 auto; }
  .w-sp10  { width: 10% !important; margin: 0 auto; }
  .w-sp15  { width: 15% !important; margin: 0 auto; }
  .w-sp20  { width: 20% !important; margin: 0 auto; }
  .w-sp25  { width: 25% !important; margin: 0 auto; }
  .w-sp30  { width: 30% !important; margin: 0 auto; }
  .w-sp35  { width: 35% !important; margin: 0 auto; }
  .w-sp40  { width: 40% !important; margin: 0 auto; }
  .w-sp45  { width: 45% !important; margin: 0 auto; }
  .w-sp50  { width: 50% !important; margin: 0 auto; }
  .w-sp55  { width: 55% !important; margin: 0 auto; }
  .w-sp60  { width: 60% !important; margin: 0 auto; }
  .w-sp65  { width: 65% !important; margin: 0 auto; }
  .w-sp70  { width: 70% !important; margin: 0 auto; }
  .w-sp75  { width: 75% !important; margin: 0 auto; }
  .w-sp80  { width: 80% !important; margin: 0 auto; }
  .w-sp85  { width: 85% !important; margin: 0 auto; }
  .w-sp90  { width: 90% !important; margin: 0 auto; }
  .w-sp95  { width: 95% !important; margin: 0 auto; }
  .w-sp100 { width: 100% !important; margin: 0 auto; }
}

/*----------------------------------------
  serif
----------------------------------------*/
.serif {
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif !important;
}

/*----------------------------------------
  line-height
----------------------------------------*/
.lh-110 {
  line-height: 1.1;
}

.lh-120 {
  line-height: 1.2;
}

.lh-130 {
  line-height: 1.3;
}

.lh-140 {
  line-height: 1.4;
}

.lh-150 {
  line-height: 1.5;
}

.lh-160 {
  line-height: 1.6;
}

.lh-170 {
  line-height: 1.7;
}

.lh-180 {
  line-height: 1.8;
}

.lh-190 {
  line-height: 1.9;
}

.lh-200 {
  line-height: 2.0;
}

/*----------------------------------------
  text-decoration
----------------------------------------*/
.td-n {
  text-decoration: none;
}

.td-u {
  text-decoration: underline;
}

.td-o {
  text-decoration: overline;
}

.td-t {
  text-decoration: line-through;
}

/*----------------------------------------
  text-align
----------------------------------------*/
.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.ta-l {
  text-align: left;
}

/*----------------------------------------
  vertical-align
----------------------------------------*/
.va-t {
  vertical-align: top;
}

.va-m {
  vertical-align: middle;
}

.va-b {
  vertical-align: bottom;
}


/*------------------------------------------------------------
		margin
-------------------------------------------------------------*/
.m-0 {margin: 0 !important;}
.mt-0 {margin-top: 0 !important;}
.mr-0 {margin-right: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.ml-0 {margin-left: 0 !important;}
.m-5 {margin: .5% !important;}
.mt-5 {margin-top: .5% !important;}
.mr-5 {margin-right: .5% !important;}
.mb-5 {margin-bottom: .5% !important;}
.ml-5 {margin-left: .5% !important;}
.m-10 {margin: 1.0% !important;}
.mt-10 {margin-top: 1.0% !important;}
.mr-10 {margin-right: 1.0% !important;}
.mb-10 {margin-bottom: 1.0% !important;}
.ml-10 {margin-left: 1.0% !important;}
.m-20 {margin: 2.0% !important;}
.mt-20 {margin-top: 2.0% !important;}
.mr-20 {margin-right: 2.0% !important;}
.mb-20 {margin-bottom: 2.0% !important;}
.ml-20 {margin-left: 2.0% !important;}
.m-30 {margin: 3.0% !important;}
.mt-30 {margin-top: 3.0% !important;}
.mr-30 {margin-right: 3.0% !important;}
.mb-30 {margin-bottom: 3.0% !important;}
.ml-30 {margin-left: 3.0% !important;}
.m-40 {margin: 4.0% !important;}
.mt-40 {margin-top: 4.0% !important;}
.mr-40 {margin-right: 4.0% !important;}
.mb-40 {margin-bottom: 4.0% !important;}
.ml-40 {margin-left: 4.0% !important;}
.m-50 {margin: 5% !important;}
.mt-50 {margin-top: 5% !important;}
.mr-50 {margin-right: 5% !important;}
.mb-50 {margin-bottom: 5% !important;}
.ml-50 {margin-left: 5% !important;}
.m-60 {margin: 6.0% !important;}
.mt-60 {margin-top: 6.0% !important;}
.mr-60 {margin-right: 6.0% !important;}
.mb-60 {margin-bottom: 6.0% !important;}
.ml-60 {margin-left: 6.0% !important;}
.m-70 {margin: 7.0% !important;}
.mt-70 {margin-top: 7.0% !important;}
.mr-70 {margin-right: 7.0% !important;}
.mb-70 {margin-bottom: 7.0% !important;}
.ml-70 {margin-left: 7.0% !important;}
.m-80 {margin: 8.0% !important;}
.mt-80 {margin-top: 8.0% !important;}
.mr-80 {margin-right: 8.0% !important;}
.mb-80 {margin-bottom: 8.0% !important;}
.ml-80 {margin-left: 8.0% !important;}
.m-90 {margin: 9.0% !important;}
.mt-90 {margin-top: 9.0% !important;}
.mr-90 {margin-right: 9.0% !important;}
.mb-90 {margin-bottom: 9.0% !important;}
.ml-90 {margin-left: 9.0% !important;}
.m-100 {margin: 10.0% !important;}
.mt-100 {margin-top: 10.0% !important;}
.mr-100 {margin-right: 10.0% !important;}
.mb-100 {margin-bottom: 10.0% !important;}
.ml-100 {margin-left: 10.0% !important;}

@media screen and (max-width: 768px) {
.m-sp5  { margin: 1.3333vw !important; }
.mt-sp5 { margin-top: 1.3333vw !important; }
.mr-sp5 { margin-right: 1.3333vw !important; }
.mb-sp5 { margin-bottom: 1.3333vw !important; }
.ml-sp5 { margin-left: 1.3333vw !important; }
.m-sp10  { margin: 2.6667vw !important; }
.mt-sp10 { margin-top: 2.6667vw !important; }
.mr-sp10 { margin-right: 2.6667vw !important; }
.mb-sp10 { margin-bottom: 2.6667vw !important; }
.ml-sp10 { margin-left: 2.6667vw !important; }
.m-sp20  { margin: 4vw !important; }
.mt-sp20 { margin-top: 4vw !important; }
.mr-sp20 { margin-right: 4vw !important; }
.mb-sp20 { margin-bottom: 4vw !important; }
.ml-sp20 { margin-left: 4vw !important; }
.m-sp30  { margin: 5.3333vw !important; }
.mt-sp30 { margin-top: 5.3333vw !important; }
.mr-sp30 { margin-right: 5.3333vw !important; }
.mb-sp30 { margin-bottom: 5.3333vw !important; }
.ml-sp30 { margin-left: 5.3333vw !important; }
.m-sp40  { margin: 6.6667vw !important; }
.mt-sp40 { margin-top: 6.6667vw !important; }
.mr-sp40 { margin-right: 6.6667vw !important; }
.mb-sp40 { margin-bottom: 6.6667vw !important; }
.ml-sp40 { margin-left: 6.6667vw !important; }
.m-sp50  { margin: 8vw !important; }
.mt-sp50 { margin-top: 8vw !important; }
.mr-sp50 { margin-right: 8vw !important; }
.mb-sp50 { margin-bottom: 8vw !important; }
.ml-sp50 { margin-left: 8vw !important; }
.m-sp60  { margin: 9.3333vw !important; }
.mt-sp60 { margin-top: 9.3333vw !important; }
.mr-sp60 { margin-right: 9.3333vw !important; }
.mb-sp60 { margin-bottom: 9.3333vw !important; }
.ml-sp60 { margin-left: 9.3333vw !important; }
.m-sp70  { margin: 10.6667vw !important; }
.mt-sp70 { margin-top: 10.6667vw !important; }
.mr-sp70 { margin-right: 10.6667vw !important; }
.mb-sp70 { margin-bottom: 10.6667vw !important; }
.ml-sp70 { margin-left: 10.6667vw !important; }
.m-sp80  { margin: 12vw !important; }
.mt-sp80 { margin-top: 12vw !important; }
.mr-sp80 { margin-right: 12vw !important; }
.mb-sp80 { margin-bottom: 12vw !important; }
.ml-sp80 { margin-left: 12vw !important; }
.m-sp90  { margin: 13.3333vw !important; }
.mt-sp90 { margin-top: 13.3333vw !important; }
.mr-sp90 { margin-right: 13.3333vw !important; }
.mb-sp90 { margin-bottom: 13.3333vw !important; }
.ml-sp90 { margin-left: 13.3333vw !important; }
.m-sp100  { margin: 14.6667vw !important; }
.mt-sp100 { margin-top: 14.6667vw !important; }
.mr-sp100 { margin-right: 14.6667vw !important; }
.mb-sp100 { margin-bottom: 14.6667vw !important; }
.ml-sp100 { margin-left: 14.6667vw !important; }
}

/*----------------------------------------
  padding
----------------------------------------*/
.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pr-0 { padding-right: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }
.p-5 { padding: .5% !important; }
.pt-5 { padding-top: .5% !important; }
.pr-5 { padding-right: .5% !important; }
.pb-5 { padding-bottom: .5% !important; }
.pl-5 { padding-left: .5% !important; }
.p-10 { padding: 1.0% !important; }
.pt-10 { padding-top: 1.0% !important; }
.pr-10 { padding-right: 1.0% !important; }
.pb-10 { padding-bottom: 1.0% !important; }
.pl-10 { padding-left: 1.0% !important; }
.p-20 { padding: 2.0% !important; }
.pt-20 { padding-top: 2.0% !important; }
.pr-20 { padding-right: 2.0% !important; }
.pb-20 { padding-bottom: 2.0% !important; }
.pl-20 { padding-left: 2.0% !important; }
.p-30 { padding: 3.0% !important; }
.pt-30 { padding-top: 3.0% !important; }
.pr-30 { padding-right: 3.0% !important; }
.pb-30 { padding-bottom: 3.0% !important; }
.pl-30 { padding-left: 3.0% !important; }
.p-40 { padding: 4.0% !important; }
.pt-40 { padding-top: 4.0% !important; }
.pr-40 { padding-right: 4.0% !important; }
.pb-40 { padding-bottom: 4.0% !important; }
.pl-40 { padding-left: 4.0% !important; }
.p-50 { padding: 5% !important; }
.pt-50 { padding-top: 5% !important; }
.pr-50 { padding-right: 5% !important; }
.pb-50 { padding-bottom: 5% !important; }
.pl-50 { padding-left: 5% !important; }
.p-60 { padding: 6.0% !important; }
.pt-60 { padding-top: 4.8% !important; }
.pr-60 { padding-right: 4.8% !important; }
.pb-60 { padding-bottom: 4.8% !important; }
.pl-60 { padding-left: 4.8% !important; }
.p-70 { padding: 5.6% !important; }
.pt-70 { padding-top: 5.6% !important; }
.pr-70 { padding-right: 5.6% !important; }
.pb-70 { padding-bottom: 5.6% !important; }
.pl-70 { padding-left: 5.6% !important; }
.p-80 { padding: 6.4% !important; }
.pt-80 { padding-top: 6.4% !important; }
.pr-80 { padding-right: 6.4% !important; }
.pb-80 { padding-bottom: 6.4% !important; }
.pl-80 { padding-left: 6.4% !important; }
.p-90 { padding: 7.2% !important; }
.pt-90 { padding-top: 7.2% !important; }
.pr-90 { padding-right: 7.2% !important; }
.pb-90 { padding-bottom: 7.2% !important; }
.pl-90 { padding-left: 7.2em !important; }
.p-100 { padding: 8% !important; }
.pt-100 { padding-top: 8% !important; }
.pr-100 { padding-right: 8% !important; }
.pb-100 { padding-bottom: 8% !important; }
.pl-100 { padding-left: 8% !important; }

@media screen and (max-width: 768px){
.p-sp0 { padding: 0 !important; }
.pt-sp0 { padding-top: 0 !important; }
.pr-sp0 { padding-right: 0 !important; }
.pb-sp0 { padding-bottom: 0 !important; }
.pl-sp0 { padding-left: 0 !important; }
.p-sp5 { padding: 6.6667vw !important; }
.pt-sp5 { padding-top: 6.6667vw !important; }
.pr-sp5 { padding-right: 6.6667vw !important; }
.pb-sp5 { padding-bottom: 6.6667vw !important; }
.pl-sp5 { padding-left: 6.6667vw !important; }
.p-sp10 { padding: 1.3333vw !important; }
.pt-sp10 { padding-top: 1.3333vw !important; }
.pr-sp10 { padding-right: 1.3333vw !important; }
.pb-sp10 { padding-bottom: 1.3333vw !important; }
.pl-sp10 { padding-left: 1.3333vw !important; }
.p-sp20 { padding: 2.6667vw !important; }
.pt-sp20 { padding-top: 2.6667vw !important; }
.pr-sp20 { padding-right: 2.6667vw !important; }
.pb-sp20 { padding-bottom: 2.6667vw !important; }
.pl-sp20 { padding-left: 2.6667vw !important; }
.p-sp30 { padding: 4vw !important; }
.pt-sp30 { padding-top: 4vw !important; }
.pr-sp30 { padding-right: 4vw !important; }
.pb-sp30 { padding-bottom: 4vw !important; }
.pl-sp30 { padding-left: 4vw !important; }
.p-sp40 { padding: 5.3333vw !important; }
.pt-sp40 { padding-top: 5.3333vw !important; }
.pr-sp40 { padding-right: 5.3333vw !important; }
.pb-sp40 { padding-bottom: 5.3333vw !important; }
.pl-sp40 { padding-left: 5.3333vw !important; }
.p-sp50 { padding: 6.6667vw !important; }
.pt-sp50 { padding-top: 6.6667vw !important; }
.pr-sp50 { padding-right: 6.6667vw !important; }
.pb-sp50 { padding-bottom: 6.6667vw !important; }
.pl-sp50 { padding-left: 6.6667vw !important; }
.p-sp60 { padding: 8vw !important; }
.pt-sp60 { padding-top: 8vw !important; }
.pr-sp60 { padding-right: 8vw !important; }
.pb-sp60 { padding-bottom: 8vw !important; }
.pl-sp60 { padding-left: 8vw !important; }
.p-sp70 { padding: 9.3333vw !important; }
.pt-sp70 { padding-top: 9.3333vw !important; }
.pr-sp70 { padding-right: 9.3333vw !important; }
.pb-sp70 { padding-bottom: 9.3333vw !important; }
.pl-sp70 { padding-left: 9.3333vw !important; }
.p-sp80 { padding: 10.6667vw !important; }
.pt-sp80 { padding-top: 10.6667vw !important; }
.pr-sp80 { padding-right: 10.6667vw !important; }
.pb-sp80 { padding-bottom: 10.6667vw !important; }
.pl-sp80 { padding-left: 10.6667vw !important; }
.p-sp90 { padding: 12vw !important; }
.pt-sp90 { padding-top: 12vw !important; }
.pr-sp90 { padding-right: 12vw !important; }
.pb-sp90 { padding-bottom: 12vw !important; }
.pl-sp90 { padding-left: 12vw !important; }
.p-sp100 { padding: 13.3333vw !important; }
.pt-sp100 { padding-top: 13.3333vw !important; }
.pr-sp100 { padding-right: 13.3333vw !important; }
.pb-sp100 { padding-bottom: 13.3333vw !important; }
.pl-sp100 { padding-left: 13.3333vw !important; }
}

@media screen and (min-width: 769px){
  .result-data {
      margin: 0 auto 5%;
      width: 100%;
      height: calc(100vw / 3);
      overflow: hidden!important;
      overflow-y: scroll!important;
      position: relative;
  }
  .result-data h4 {
      width: 80%;
      position: absolute;
      top: 5%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      margin-top: 0!important;
  }
  .result-data li {
    margin-bottom: 0!important;
  }
  .result-seris-3 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 2.9);
    position: relative;
    background: #000;
  }
  .result-seris-3 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-seris-3 dd {
    position: absolute;
    z-index: 1;
  }
  .result-seris-3 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-seris-3 ul li {
    margin-bottom: .5% !important;
    width: 33%;
  }
  .result-series-4 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 1.9);
    position: relative;
    background: #000;
  }
  .result-series-4 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-4 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-4 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-4 ul li {
    margin-bottom: .5% !important;
    width: 25%;
  }
  .result-series-5 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 1.9);
    position: relative;
    background: #000;
  }
  .result-series-5 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-5 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-5 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-5 ul li {
    margin-bottom: .5% !important;
    width: 20%;
  }
  .result-seris-3 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 2.9);
    position: relative;
    background: #000;
  }
  .result-seris-3 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-seris-3 dd {
    position: absolute;
    z-index: 1;
  }
  .result-seris-3 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-seris-3 ul li {
    margin-bottom: .5% !important;
    width: 33%;
  }
  .result-series-4 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 1.9);
    position: relative;
    background: #000;
  }
  .result-series-4 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-4 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-4 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-4 ul li {
    margin-bottom: .5% !important;
    width: 25%;
  }
  .result-series-5 {
    margin-bottom: 5%;
    padding: 5% 0;
    width: 100%;
    height: calc(100vw / 1.9);
    position: relative;
    background: #000;
  }
  .result-series-5 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-5 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-5 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-5 ul li {
    margin-bottom: .5% !important;
    width: 20%;
  }
}
@media screen and (max-width :768px){
  .result-data {
    margin: 0 auto;
    width: 100%;
    height: calc(100vw / 2);
    overflow: scroll;
    position: relative;
  }
  .result-data h4 {
    padding: 0 !important;
    width: 80%;
    position: absolute;
    top: 10%;
    left: 10%;
    z-index: 2;
    background: none !important;
  }
  .result-data li {
    margin-bottom: 0!important;
  }
  .result-chart li {
    margin-bottom: 0!important;
  }
  .result-series-3 {
    margin-bottom: 1rem;
    padding: 2rem 0;
    width: 100%;
    height: calc(100vw / 2.0);
    position: relative;
    background: #000;
  }
  .result-series-3 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-3 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-3 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-3 ul li {
    margin-bottom: .5% !important;
    width: 33%;
  }
  .result-series-4 {
    margin-bottom: 1rem;
    padding: 2rem 0;
    width: 100%;
    height: calc(100vw / 2.0);
    position: relative;
    background: #000;
  }
  .result-series-4 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-4 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-4 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-4 ul li {
    margin-bottom: .5% !important;
    width: 25%;
  }
  .result-series-5 {
    margin-bottom: 1rem;
    padding: 2rem 0;
    width: 100%;
    height: calc(100vw / 2.0);
    position: relative;
    background: #000;
  }
  .result-series-5 dt {
    width: 80%;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 2;
  }
  .result-series-5 dd {
    position: absolute;
    z-index: 1;
  }
  .result-series-5 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #000;
  }
  .result-series-5 ul li {
    margin-bottom: .5% !important;
    width: 20%;
  }
}