@charset "utf-8";

/* ==================================================
valiable
================================================== */
:root {
  --blue-01: #e1f5ff;
  --blue-02: #00a8ea;
  --blue-03: #373daa;
  --blue-03-dark: #2c328d;
  --pink-01: #f44a87;
  --orange-01: #ec6c00;
  --yellow-01: #ffd23b;
  --yellow-02: #f9f5c5;
  --gray-01: #f2f2f2;
  --gray-02: #cccccc;
  --gray-03: #999999;
  --gray-04: #4d4d4d;
  --gray-05: #1a1a1a;
  --gray-06: #e2e2e2;
  --transparent: rgba(0, 0, 0, 0);
}

/* ==================================================
my Reset
================================================== */
* {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  box-sizing: border-box;
}

body {
  font-family: Hiragino Kaku Gothic Pro, Meiryo, Osaka, MS PGothic, sans-serif;;
  font-size: 16px;
  color: var(--gray-05);
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  color: inherit;
}
a:hover {
  color: var(--pink-01);
}

ul,
li {
  list-style: none;
}

/* ==================================================
utility
================================================== */
.inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
/* ==================================================
component
================================================== */
.btnPrimary {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  max-width: 500px;
  height: 3em;
  margin: 0 auto;
  background: var(--pink-01);
  box-shadow: 0 0.3em 0 rgba(0, 0, 0, 0.5), 0 0.3em 0 var(--pink-01);
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  padding: 0.5em 2.5em 0.5em 2em;
  position: relative;
  top: 0em;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .btnPrimary {
    font-size: 14px;
  }
}
.btnPrimary::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.7em;
  border-top: 0.5em solid var(--transparent);
  border-bottom: 0.5em solid var(--transparent);
  border-left: 0.5em solid #fff;
  transition: 0.3s;
}
.btnPrimary:hover {
  top: 0.2em;
  box-shadow: 0 0.1em 0 rgba(0, 0, 0, 0.5), 0 0.1em 0 var(--pink-01);
  color: #fff;
}
.btnPrimary:hover::before {
  right: 0.5em;
}

.secTitle {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secTitle {
    font-size: 14px;
  }
}
.secTitle h2 {
  line-height: 1;
  font-size: 1.5em;
}
.secTitle img {
  max-width: 100%;
}
.secTitle p {
  font-size: max(0.8em, 14px);
  line-height: 1.2;
  margin-top: 1em;
}

.updateTime {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .updateTime {
    font-size: 11px;
  }
}

.acBtn {
  font-size: 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 0.1em solid var(--blue-03);
  box-shadow: 0 0.3em 0 rgba(0, 0, 0, 0.5), 0 0.3em 0 var(--blue-03);
}
@media screen and (max-width: 768px) {
  .acBtn {
    font-size: 14px;
  }
}

.acBtn_ttl {
  background: var(--blue-03);
  color: #fff;
  font-weight: bold;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 0 2em 0 1em;
}
.acBtn_ttl::before, .acBtn_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  width: 1.2em;
  height: 0.2em;
  background: #fff;
}
.acBtn_ttl::before {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.acBtn_ttl.is-active::before {
  transform: translateY(-50%) rotate(0deg);
}

.acBtn_content {
  display: none;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .acBtn_content {
    padding: 1em 10px;
  }
}

/* ==================================================
common
================================================== */
.font-bold {
  font-weight: bold;
}
.font-red {
  color: red;
}

/* ==================================================
footer
================================================== */
.footer a {
  color: #000;
  text-decoration: none;
  position: relative;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-sitemap {
  background: #f1ede3;
  font-size: 12px;
}

.footer-sitemap .inner {
  padding: 40px 0;
}

.footer-sitemap .upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-sitemap .upper .lead {
  font-size: 18px;
  font-weight: bold;
}

.footer-sitemap .upper .text {
  font-weight: bold;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-menu .menu-col:nth-child(1) {
  width: 60%;
  padding-right: 30px;
}

.footer-menu .menu-col:nth-child(2) {
  width: 20%;
  border-left: 2px dotted #c5ba9f;
  padding: 0 30px;
}

.footer-menu .menu-col:nth-child(3) {
  width: 20%;
  border-left: 2px dotted #c5ba9f;
  padding-left: 30px;
}

.footer-menu.is-service .menu-col:nth-child(1) {
  width: 28%;
  padding-right: 0;
}

.footer-menu.is-service .menu-col:nth-child(2) {
  width: 44%;
}

.footer-menu .menu-head {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-menu .menu-text {
  font-size: 13px;
  margin-bottom: 30px;
}

.list-menu + .list-menu {
  margin-top: 15px;
}

.list-menu li + li {
  margin-top: 8px;
}

.list-menu-sub {
  padding: 0 14px;
}

.list-menu .lead {
  font-size: 14px;
  font-weight: bold;
}

.list-menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-menu-grid .list-menu {
  width: 32%;
}

.list-menu-grid .list-menu + .list-menu {
  margin-top: 0;
}

.list-menu a {
  display: inline-block;
}

.footer-company {
  background: #fff;
}

.footer-company .inner {
  padding: 10px 0;
}

.footer-company-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.btn-footer-wrap {
  display: flex;
  flex-wrap: wrap;
}

.btn-footer-wrap li + li {
  margin-left: 10px;
}

.footer-service {
  display: flex;
  flex-wrap: wrap;
}

.footer-service li {
  font-size: 12px;
}

.footer-service li + li {
  margin-left: 12px;
}

.footer-service.list-triangle > li + li {
  margin-top: 0;
}

.copyright {
  font-size: 12px;
  margin-top: 5px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .footer-company {
    background: #ffa513;
  }
  .footer-company .inner {
    padding: 20px 12px;
    max-width: 980px;
  }
  .footer-service {
    justify-content: center;
  }
  .footer-service li {
    padding: 0 8px;
    margin-top: 6px;
    line-height: 1.1;
  }
  .footer-service.list-triangle > li + li {
    margin-top: 6px;
  }
  .footer-service.list-triangle > li:before {
    display: none;
  }
  .footer-service li + li {
    margin-left: 0;
    border-left: 1px solid #000;
  }
  .copyright {
    margin-top: 10px;
    text-align: center;
  }
}
.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: 15px;
  position: relative;
}

.footer-service li + li:before {
  position: absolute;
  content: "|";
  left: 0;
  top: 0;
}

.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;
  }
  .footer-service li + li:before {
    content: none;
  }
  .copyright {
    position: relative;
    right: auto;
    bottom: auto;
  }
}
/* ==================================================
nifkujiResultsContent
================================================== */
.nifkujiResultsContent {
  background: url(../img/bg-main_5th.webp) center no-repeat, #39e3ff;
  background-attachment: fixed;
  background-size: cover;
  padding: 60px 10px;
}
@media screen and (max-width: 768px) {
  .nifkujiResultsContent {
    padding: 40px 10px;
  }
}

/* ==================================================
nifkujiResultsHeader
================================================== */
.nifkujiResultsHeader {
  font-size: 20px;
  padding: 0 10px;
  height: 60px;
  border-bottom: 2px solid var(--gray-01);
}
@media screen and (max-width: 768px) {
  .nifkujiResultsHeader {
    font-size: 16px;
    height: 45px;
  }
}
.nifkujiResultsHeader .inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1em;
}

.nifkujiResultsHeader_logo img {
  vertical-align: middle;
  height: 1.8em;
}

.nifkujiResultsHeader_btn {
  margin-left: auto;
}
.nifkujiResultsHeader_btn .btnPrimary {
  font-size: max(0.7em, 11px);
  height: 2.4em;
}

.nifkujiResultsHeader_link {
  font-size: max(0.8em, 14px);
}
@media screen and (max-width: 768px) {
  .nifkujiResultsHeader_link {
    display: none;
  }
}

/* ==================================================
nifkujiStamp
================================================== */
.nifkujiStamp .inner {
  border-radius: 20px;
  background: #fff;
  padding: 30px 60px;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp .inner {
    border-radius: 12px;
    padding: 15px 10px;
  }
}
.nifkujiStamp_earn p {
  background-color: var(--gray-01);
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  padding: 0.1em 1em;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_earn p {
    font-size: 14px;
  }
}

.nifkujiStamp_earn span {
  color: var(--blue-03);
  border: 1px solid #000;
  background-color: #fff;
  padding: 1.5px 4px;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_earn span {
    font-size: 18px;
  }
}

.nifkujiStamp_earn span:nth-of-type(1) {
  margin-left: 0.2em;
}
.nifkujiStamp_earn span:nth-of-type(2) {
  margin-right: 0.2em;
}

.nifkujiStamp_earn span + span {
  margin-left: 0.1em;
}

.nifkujiStamp_text p {
  margin-top: 25px;
}

.nifkujiStamp_top {
  font-size: 20px;
  display: flex;
  gap: 2em;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_top {
    font-size: 14px;
    margin-top: 20px;
    gap: 1em;
  }
}

.nifkujiStamp_ttl {
  font-weight: bold;
}

.nifkujiStamp_btn {
  font-size: 0.9em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
  position: relative;
  cursor: pointer;
}
.nifkujiStamp_btn.is-prev::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  background: var(--blue-03);
  border-radius: 100vh;
}
.nifkujiStamp_btn.is-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.35em;
  border-top: 0.3em solid var(--transparent);
  border-bottom: 0.3em solid var(--transparent);
  border-right: 0.4em solid #fff;
}
.nifkujiStamp_btn.is-next::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.35em;
  border-top: 0.3em solid var(--transparent);
  border-bottom: 0.3em solid var(--transparent);
  border-left: 0.4em solid #fff;
}
.nifkujiStamp_btn.is-next::after {
  content: "";
  width: 1.1em;
  height: 1.1em;
  background: var(--blue-03);
  border-radius: 100vh;
}
.nifkujiStamp_btn:hover {
  color: var(--pink-01);
}
.nifkujiStamp_btn:hover.is-prev::before {
  background: var(--pink-01);
}
.nifkujiStamp_btn:hover.is-next::after {
  background: var(--pink-01);
}
.nifkujiStamp_btn.is-disabled {
  color: var(--gray-02);
  cursor: not-allowed;
}
.nifkujiStamp_btn.is-disabled.is-prev::before {
  background: var(--gray-02);
}
.nifkujiStamp_btn.is-disabled.is-next::after {
  background: var(--gray-02);
}

.nifkujiStamp_today {
  font-size: max(0.7em, 11px);
  position: absolute;
  right: 0;
  height: auto;
  background: var(--blue-03);
  color: #fff;
  padding: 0.1em 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  top: 0;
  box-shadow: 0 0.3em 0 var(--blue-03-dark);
  transition: 0.3s;
}

.nifkujiStamp_today:hover {
  top: 0.2em;
  box-shadow: 0 0.1em 0  var(--blue-03-dark);
  color: #fff;
}

.nifkujiStamp_calendar {
  font-size: 20px;
  border-collapse: separate;
  border-spacing: 0.2em;
  table-layout: fixed;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_calendar {
    font-size: 14px;
    margin-top: 15px;
  }
}

.nifkujiStamp_week td {
  font-size: 0.9em;
  text-align: center;
  height: 1.6em;
}
.nifkujiStamp_week td:first-child {
  color: var(--pink-01);
}
.nifkujiStamp_week td:last-child {
  color: var(--blue-02);
}

.nifkujiStamp_date td {
  font-size: 0.8em;
  background: var(--gray-01);
  height: 6em;
  vertical-align: text-top;
  padding: 0.3em;
  line-height: 1.2;
  border-color: var(--gray-03) var(--transparent) var(--transparent) var(--transparent);
  border-width: 0.3em 0.2em 0.2em 0.2em;
  border-style: solid;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_date td {
    height: 14vw;
    padding: 0.1em;
  }
}
.nifkujiStamp_date td.is-current {
  border-right: 0.2em solid var(--gray-02);
  border-left: 0.2em solid var(--gray-02);
  border-bottom: 0.2em solid var(--gray-02);
}
.nifkujiStamp_date td.is-challenged::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-lottery.svg) center/60% auto no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_date td.is-challenged::before {
    background: url(../img/icon-lottery.svg) center 80%/65% auto no-repeat;
  }
}
.nifkujiStamp_date td.is-bonus {
  background: var(--yellow-02);
}
.nifkujiStamp_date td:first-child {
  border-top: 0.3em solid var(--pink-01);
}
.nifkujiStamp_date td:last-child {
  border-top: 0.3em solid var(--blue-02);
}
.nifkujiStamp_date td.is-challenged {
  cursor: pointer;
}
.nifkujiStamp_date td.is-challenged:hover {
  border-right: 0.2em solid var(--gray-02);
  border-left: 0.2em solid var(--gray-02);
  border-bottom: 0.2em solid var(--gray-02);
}

.nifkujiStamp_bottom {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_bottom {
    flex-direction: column;
    align-items: flex-end;
  }
}

.nifkujiStamp_labelWrap {
  font-size: 14px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_labelWrap {
    font-size: 12px;
  }
}

.nifkujiStamp_label {
  display: flex;
  align-items: center;
  gap: 0.1em;
  line-height: 1.2;
}
.nifkujiStamp_label::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: #000;
  border-radius: 100vh;
}
.nifkujiStamp_label.is-bonus::before {
  background: var(--yellow-02);
}

/* 当選本数2倍日 */
.nifkujiStamp_date td.is-special::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-special.svg) center 60% / 50% auto no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_date td.is-special::before {
    background: url(../img/icon-special.svg) center 80%/70% auto no-repeat;
  }
}

/* 当選本数22倍日 */
.nifkujiStamp_date td.is-premium::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-premium.svg) center 65% / 60% auto no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_date td.is-premium::before {
    background: url(../img/icon-premium.svg) center 80%/80% auto no-repeat;
  }
}

/* 当日 */
.nifkujiStamp_date td.is-today {
  background: var(--gray-06);
  color: #fff;
}

.nifkujiStamp_date td.is-today span {
  display: grid;
  place-content: center;
  background: #373daa;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_date td.is-today span {
    width: 16px;
    height: 16px;
    padding: 8px;
  }
}
/* 当日が増量日 */
.nifkujiStamp_date td.is-today.is-bonus {
  background: var(--yellow-02);
}

/* 増量日にくじ実施 */
.nifkujiStamp_date td.is-challenged.is-special::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-lottery.svg) center/60% auto no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_date td.is-challenged.is-special::before {
    background: url(../img/icon-lottery.svg) center 80%/65% auto no-repeat;
  }
}
.nifkujiStamp_date td.is-challenged.is-premium::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-lottery.svg) center/60% auto no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .nifkujiStamp_date td.is-challenged.is-premium::before {
    background: url(../img/icon-lottery.svg) center 80%/65% auto no-repeat;
  }
}

/* ==================================================
nifkujiResults
================================================== */
.nifkujiResults {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .nifkujiResults {
    margin-top: 25px;
  }
}
.nifkujiResults .inner {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .nifkujiResults .inner {
    padding: 15px 10px;
    border-radius: 12px;
  }
}

.nifkujiDevice {
  margin-top: 30px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .nifkujiDevice {
    margin-top: 20px;
    font-size: 14px;
  }
}

.nifkujiDevice_date {
  text-align: center;
  font-weight: bold;
}

.nifkujiDevice_tab {
  margin-top: 20px;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (max-width: 768px) {
  .nifkujiDevice_tab {
    margin-top: 15px;
  }
}
.nifkujiDevice_tab th {
  padding: 0 0.2em;
}
@media screen and (max-width: 768px) {
  .nifkujiDevice_tab th {
    cursor: pointer;
  }
}
.nifkujiDevice_tab th p {
  background: var(--blue-03);
  color: #fff;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
}
@media screen and (max-width: 768px) {
  .nifkujiDevice_tab th p {
    background: var(--gray-02);
    color: var(--gray-04);
  }
  .nifkujiDevice_tab th.is-active p {
    background: var(--blue-03);
    color: #fff;
  }
}

.nifkujiDevice_tblWrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .nifkujiDevice_tblWrap {
    display: block;
  }
}

.nifkujiDevice_tbl {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .nifkujiDevice_tbl {
    display: none;
  }
}
.nifkujiDevice_tbl.is-active {
  display: table;
}
.nifkujiDevice_tbl th {
  font-size: max(0.8em, 14px);
  background: var(--blue-02);
  color: #fff;
  height: 2em;
}
.nifkujiDevice_tbl td {
  font-size: max(0.8em, 14px);
  background: var(--gray-01);
  height: 2em;
  text-align: center;
}
.nifkujiDevice_tbl td.is-1stPrize {
  font-weight: bold;
  color: var(--pink-01);
}
.nifkujiDevice_tbl td.is-2stPrize {
  font-weight: bold;
  color: var(--blue-02);
}
.nifkujiDevice_tbl td.is-3stPrize {
  font-weight: bold;
  color: var(--blue-03);
}

.nifkujiResults_btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .nifkujiResults_btn {
    margin-top: 20px;
  }
}
.nifkujiResults_btn p {
  margin-top: 0.5em;
  text-align: center;
  color: var(--blue-03);
  font-weight: bold;
}

.nifkujiResults_bnr {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .nifkujiResults_bnr {
    margin-top: 25px;
  }
}
.nifkujiResults_bnr img {
  width: 700px;
  height: 140px;
}
@media screen and (max-width: 768px) {
  .nifkujiResults_bnr img {
    width: 300px;
    height: 100px;
  }
}

.nifkujiCalendar {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .nifkujiCalendar {
    margin-top: 25px;
  }
}
.nifkujiCalendar .updateTime {
  text-align: right;
}

.nifkujiCalendar_ballon {
  text-align: center;
}
.nifkujiCalendar_ballon img {
  width: 20em;
}

.nifkujiCalendar_wrap {
  font-size: 20px;
  border: 0.1em solid var(--blue-03);
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .nifkujiCalendar_wrap {
    font-size: 14px;
  }
}
.nifkujiCalendar_wrap dt {
  line-height: 3em;
  text-align: center;
  background: var(--blue-03);
  color: #fff;
  font-weight: bold;
}
.nifkujiCalendar_wrap dd {
  padding: 1em;
}

.nifkujiCalendar_grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .nifkujiCalendar_grid {
    display: block;
  }
}

.nifkujiCalendar_tbl {
  font-size: 20px;
  width: 62%;
  table-layout: fixed;
  border-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .nifkujiCalendar_tbl {
    width: 100%;
    font-size: 14px;
  }
}
.nifkujiCalendar_tbl td {
  text-align: center;
}

.nifkujiCalendar_tblHead {
  height: 2em;
}

.nifkujiCalendar_tblTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  width: 100%;
}

.nifkujiCalendar_tblBtn {
  background: var(--blue-03);
  width: 1.2em;
  height: 1.2em;
  border-radius: 100vh;
  position: relative;
  cursor: pointer;
}
.nifkujiCalendar_tblBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 0.3em solid var(--transparent);
  border-bottom: 0.3em solid var(--transparent);
}
.nifkujiCalendar_tblBtn.is-next::before {
  border-left: 0.4em solid #fff;
  margin-left: 0.05em;
}
.nifkujiCalendar_tblBtn.is-prev::before {
  border-right: 0.4em solid #fff;
  margin-left: -0.05em;
}
.nifkujiCalendar_tblBtn:hover {
  background: var(--pink-01);
}
.nifkujiCalendar_tblBtn.is-disabled {
  background: var(--gray-02);
  cursor: not-allowed;
}

.nifkujiCalendar_date td {
  height: 3em;
  border-radius: 4px;
  border-bottom: 0.3em solid #fff;
}
.nifkujiCalendar_date td.is-campaign {
  border-bottom: 0.3em solid var(--yellow-01);
}
.nifkujiCalendar_date td.is-bonus {
  background: var(--blue-01);
}
.nifkujiCalendar_date td.is-challenged p {
  background: var(--pink-01);
  color: #fff;
}
.nifkujiCalendar_date p {
  width: 2em;
  margin: 0 auto;
  line-height: 2em;
  border-radius: 100vh;
}

.nifkujiCalendar_labelList {
  font-size: 14px;
  border: 0.2em dashed var(--gray-01);
  border-radius: 6px;
  padding: 2em 3%;
  margin-top: 5em;
  width: 36%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .nifkujiCalendar_labelList {
    width: 100%;
    font-size: 12px;
    padding: 0;
    border: none;
    margin-top: 1em;
    display: flex;
    gap: 0 0.5em;
    flex-wrap: wrap;
  }
}

.nifkujiCalendar_label {
  display: flex;
  align-items: center;
  gap: 0.1em;
}
.nifkujiCalendar_label::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: var(--gray-02);
  border-radius: 100vh;
}
.nifkujiCalendar_label.is-campaign::before {
  background: var(--yellow-01);
}
.nifkujiCalendar_label.is-bonus::before {
  background: var(--blue-01);
}
.nifkujiCalendar_label.is-challenged::before {
  background: var(--pink-01);
}/*# sourceMappingURL=style.css.map */