@charset "utf-8";
/* CSS Document */
/*==================================
common
==================================*/
.main {
  font-size: 16px;
}
a:hover {
  cursor: pointer;
}
.inline-b {
  display: inline-block;
}
.sec-area {
  padding: 70px 0 50px;
}
.sec-area:empty {
  display: none;
}
.sec-ttl {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}
.sub-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .main {
    font-size: 14px;
  }
  .sec-area {
    padding: 30px 0 25px;
  }
  .sec-ttl {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .sub-ttl {
    font-size: 16px;
  }
}
a.btn-yellow {
  text-decoration: none;
}
.btn-yellow {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 14px 0;
  font-size: 18px;
  font-weight: bold;
  color: #f44a87;
  background: #fff30b;
  border-radius: 10px;
  box-shadow: 0 8px 0px rgba(124, 120, 62, 0.7);
  transition: all 0.25s;
}
.btn-yellow::after {
  content: "";
  display: inline-block;
  border: 10px solid transparent;
  border-left: 10px solid #f44a87;
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -10px;
}
.btn-yellow:hover {
  box-shadow: none;
  transform: translateY(6px);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .btn-yellow {
    font-size: 16px;
  }
}

/*==================================
header
==================================*/
body {
  position: relative;
}
.header {
  width: 100%;
  position: absolute;
  top: 0;
}
.header .inner {
  max-width: 100%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .header .inner {
    padding: 15px;
  }
}

/*==================================
footer
==================================*/
.footer {
  background: #000;
  color: #fff;
}
.footer-company .inner {
  padding: 10px 0 30px;
  position: relative;
}

.footer a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.footer-service {
  margin-bottom: 10px;
}
.footer-service li + li {
  margin-left: 15px;
  padding-left: 32px;
  position: relative;
}
.footer-service li + li:before {
  position: absolute;
  content: "|";
  left: 0;
  top: 0;
}
.footer-service li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: -15px;
  width: 10px;
  height: 11px;
  background: url(../images/icon-arrow_w.svg) no-repeat;
  background-size: auto;
}
.copyright {
  position: absolute;
  right: 0;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer-company .inner {
    padding: 10px 15px;
  }
  .footer-service {
    text-align: center;
    margin-bottom: 0;
  }
  .copyright {
    position: relative;
    right: auto;
    bottom: auto;
  }
}


/*==================================
mv-area
==================================*/
.mv-area {
  padding: 50px 70px 26px;
  background-color: #39e3ff;
  background-image: url("../images/info-mv-bg.png");
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .mv-area {
    padding: 0;
    background: #5ff0ff;
  }
  .mv-area .inner {
    max-width: none;
    padding: 0;
  }
}

/*==================================
result-area
==================================*/
.result-area {
  padding: 50px 70px;
  background: url("../images/bg-pink.png") no-repeat center;
  background-color: #ff92b1;
  background-size: cover;
}

.result-area .inner {
  padding: 16px;
}

.result-group {
  border: 8px solid #f44a87;
  background-color: #fff;
  padding: 8px;
}

.result-group .sec-ttl {
  border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 768px) {
  .result-area{
    padding: 0;
    background-size: contain;
  }
  .result-area .inner{
    padding: 15px;
  }
  
}

#lottery-result {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin: 8px 0;
  background-color: #fff;
}

#lottery-result > p {
  text-align: center;
  width: 80%;
}

#lottery-result section {
  width: 80%;
  margin: 16px;
}

#lottery-result section div:last-child span:first-child {
  border-radius: 0 0 0 5px;
}

#lottery-result section div:last-child span:last-child {
  border-radius: 0 0 5px 0;
}

#lottery-result section div.table-row span:last-child {
  border-right: 1px solid #a8b7c5;
}

#lottery-result section div.table-header {
  text-align: center;
  color: white;
  display: flex;
}

#lottery-result section div.table-header span {
  text-align: center;
  color: white;
  background: linear-gradient(#829ebc, #225588);
  width: 50%;
  padding: 8px 0;
}

#lottery-result section h2 {
  text-align: center;
  color: white;
  background: linear-gradient(#829ebc, #225588);
  padding: 8px 0;
  border-radius: 5px 5px 0 0;
}

#lottery-result section div.table-row {
  text-align: center;
  display: flex;
}

#lottery-result section div.table-row span {
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  box-shadow: 0px -3px 5px 1px #eee inset;
  width: 50%;
  padding: 8px 0;
  font-size: 12px;
}

/*==================================
campaign-area
==================================*/
#campaign-bnr-body-area.sec-area {
  padding: 0;
}