html {
  background-color: #000;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    background-image: url(../images/common/header_common_bg.webp);
    background-size: cover;
    background-position: 50% 50%;
    padding-bottom: 15px;
  }
  header .headerInner {
    width: 90vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 5px;
  }
  header .headerInner .headLogo {
    width: 60px;
    grid-column: 1/2;
    grid-row: 1/2;
    padding: 3vw 0 0 0;
  }
  header .headerInner .headLogo img {
    width: 100%;
    height: auto;
  }
  header .headerInner #siteName {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-left: 10px;
    grid-column: 2/3;
    grid-row: 1/2;
    align-content: center;
  }
  header .headerInner #siteName span {
    display: block;
  }
  header .headerInner #siteName span.cy {
    margin-top: 5px;
    color: #F7CF07;
  }
  header .headerInner .endedMsg {
    background-color: #F7CF07;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    margin-left: 20px;
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .pageTitle {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .pageTitle:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/result/title_bg.webp);
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
  }
  .pageTitle h1 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    border-bottom: 7px solid #F7CF07;
    position: relative;
    z-index: 5;
  }
  .resultBlock {
    width: 90vw;
    margin: 40px auto 0;
    padding-bottom: 100px;
  }
  .resultBlock .resultSec {
    background-color: #fff;
    border-radius: 5vw;
    padding: 10vw 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .resultBlock .resultSec + .resultSec {
    margin-top: 15vw;
  }
  .resultBlock .resultSec h2 {
    text-align: center;
    position: relative;
    padding-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
  }
  .resultBlock .resultSec h2:after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background-color: #00B9BA;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .resultBlock .resultSec .graph {
    margin-top: 20px;
  }
  .resultBlock .resultSec .graph img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .resultBlock .resultSec .list {
    width: 100%;
    margin-top: 20px;
  }
  .resultBlock .resultSec .list .listItem {
    background-color: #E9E9E9;
    border-radius: 5px;
    padding: 10vw 5vw;
    font-size: 16px;
    line-height: 1.6;
  }
  .resultBlock .resultSec .list .listItem + .listItem {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 769px) {
  header {
    width: 100%;
    background-image: url(../images/common/header_common_bg.webp);
    background-size: cover;
    background-position: 50% 50%;
  }
  header .headerInner {
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 160px;
  }
  header .headerInner .headLogo {
    width: 93px;
  }
  header .headerInner .headLogo img {
    width: 100%;
    height: auto;
  }
  header .headerInner #siteName {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-left: 30px;
  }
  header .headerInner #siteName span {
    display: block;
  }
  header .headerInner #siteName span.cy {
    margin-top: 5px;
    color: #F7CF07;
  }
  header .headerInner .endedMsg {
    background-color: #F7CF07;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    margin-left: 50px;
  }
  .pageTitle {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .pageTitle:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/result/title_bg.webp);
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
  }
  .pageTitle h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    border-bottom: 7px solid #F7CF07;
    position: relative;
    z-index: 5;
  }
  .resultBlock {
    max-width: 1140px;
    width: 95%;
    margin: 60px auto 0;
    padding-bottom: 100px;
  }
  .resultBlock .resultSec {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .resultBlock .resultSec + .resultSec {
    margin-top: 60px;
  }
  .resultBlock .resultSec h2 {
    text-align: center;
    position: relative;
    padding-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
  }
  .resultBlock .resultSec h2:after {
    content: "";
    display: block;
    width: 70px;
    height: 7px;
    background-color: #00B9BA;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .resultBlock .resultSec .graph {
    margin-top: 40px;
  }
  .resultBlock .resultSec .list {
    width: 100%;
    margin-top: 40px;
  }
  .resultBlock .resultSec .list .listItem {
    background-color: #E9E9E9;
    border-radius: 10px;
    padding: 25px;
    font-size: 20px;
    line-height: 1.6;
  }
  .resultBlock .resultSec .list .listItem + .listItem {
    margin-top: 10px;
  }
  footer {
    height: auto;
  }
}
/*# sourceMappingURL=map/second.css.map */
