@charset "UTF-8";
html {
  @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #1b2440;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

h1 {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

.fs-1 {
  font-size: 32px !important;
  font-weight: bold !important;
}
@media (max-width: 768px) {
  .fs-1 {
    font-size: 24px !important;
  }
}

h2 {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
}

.fs-2 {
  font-size: 24px !important;
  font-weight: bold !important;
}
@media (max-width: 768px) {
  .fs-2 {
    font-size: 20px !important;
  }
}

h3 {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  h3 {
    font-size: 18px;
  }
}

.fs-3 {
  font-size: 20px !important;
  font-weight: bold !important;
}
@media (max-width: 768px) {
  .fs-3 {
    font-size: 18px !important;
  }
}

p,
dd {
  line-height: 1.6;
}

main a,
article a {
  color: #0d6efd;
  white-space: nowrap;
}
main a:hover, main a:active,
article a:hover,
article a:active {
  color: #ff1212;
}

/* ユーティリティ */
.container {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.position-relative {
  position: relative;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (max-width: 1080px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (max-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 768px) {
  .flex-md-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .flex-sm-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-content-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-content-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.m-half {
  margin: 4px !important;
}

.mt-half {
  margin-top: 4px !important;
}

.mb-half {
  margin-bottom: 4px !important;
}

.ms-half {
  margin-left: 4px !important;
}

.me-half {
  margin-right: 4px !important;
}

.my-half {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mx-half {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.ms-1 {
  margin-left: 0.5rem !important;
}

.me-1 {
  margin-right: 0.5rem !important;
}

.my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.m-2 {
  margin: 1rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.ms-2 {
  margin-left: 1rem !important;
}

.me-2 {
  margin-right: 1rem !important;
}

.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.m-3 {
  margin: 1.5rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.ms-3 {
  margin-left: 1.5rem !important;
}

.me-3 {
  margin-right: 1.5rem !important;
}

.my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.m-4 {
  margin: 2rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.ms-4 {
  margin-left: 2rem !important;
}

.me-4 {
  margin-right: 2rem !important;
}

.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.m-5 {
  margin: 2.5rem !important;
}

.mt-5 {
  margin-top: 2.5rem !important;
}

.mb-5 {
  margin-bottom: 2.5rem !important;
}

.ms-5 {
  margin-left: 2.5rem !important;
}

.me-5 {
  margin-right: 2.5rem !important;
}

.my-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.mx-5 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

@media (max-width: 1080px) {
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mx-xl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .m-xl-1 {
    margin: 0.5rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.5rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }
  .ms-xl-1 {
    margin-left: 0.5rem !important;
  }
  .me-xl-1 {
    margin-right: 0.5rem !important;
  }
  .my-xl-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-xl-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .m-xl-2 {
    margin: 1rem !important;
  }
  .mt-xl-2 {
    margin-top: 1rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 1rem !important;
  }
  .ms-xl-2 {
    margin-left: 1rem !important;
  }
  .me-xl-2 {
    margin-right: 1rem !important;
  }
  .my-xl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-xl-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .m-xl-3 {
    margin: 1.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-xl-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .m-xl-4 {
    margin: 2rem !important;
  }
  .mt-xl-4 {
    margin-top: 2rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 2rem !important;
  }
  .ms-xl-4 {
    margin-left: 2rem !important;
  }
  .me-xl-4 {
    margin-right: 2rem !important;
  }
  .my-xl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-xl-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .m-xl-5 {
    margin: 2.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 2.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 2.5rem !important;
  }
  .me-xl-5 {
    margin-right: 2.5rem !important;
  }
  .my-xl-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-xl-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 992px) {
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .m-lg-1 {
    margin: 0.5rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.5rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }
  .ms-lg-1 {
    margin-left: 0.5rem !important;
  }
  .me-lg-1 {
    margin-right: 0.5rem !important;
  }
  .my-lg-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-lg-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .m-lg-2 {
    margin: 1rem !important;
  }
  .mt-lg-2 {
    margin-top: 1rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 1rem !important;
  }
  .ms-lg-2 {
    margin-left: 1rem !important;
  }
  .me-lg-2 {
    margin-right: 1rem !important;
  }
  .my-lg-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-lg-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .m-lg-3 {
    margin: 1.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-lg-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .m-lg-4 {
    margin: 2rem !important;
  }
  .mt-lg-4 {
    margin-top: 2rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 2rem !important;
  }
  .ms-lg-4 {
    margin-left: 2rem !important;
  }
  .me-lg-4 {
    margin-right: 2rem !important;
  }
  .my-lg-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-lg-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .m-lg-5 {
    margin: 2.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 2.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 2.5rem !important;
  }
  .me-lg-5 {
    margin-right: 2.5rem !important;
  }
  .my-lg-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-lg-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 768px) {
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .m-md-1 {
    margin: 0.5rem !important;
  }
  .mt-md-1 {
    margin-top: 0.5rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }
  .ms-md-1 {
    margin-left: 0.5rem !important;
  }
  .me-md-1 {
    margin-right: 0.5rem !important;
  }
  .my-md-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-md-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .m-md-2 {
    margin: 1rem !important;
  }
  .mt-md-2 {
    margin-top: 1rem !important;
  }
  .mb-md-2 {
    margin-bottom: 1rem !important;
  }
  .ms-md-2 {
    margin-left: 1rem !important;
  }
  .me-md-2 {
    margin-right: 1rem !important;
  }
  .my-md-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-md-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .m-md-3 {
    margin: 1.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1.5rem !important;
  }
  .me-md-3 {
    margin-right: 1.5rem !important;
  }
  .my-md-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-md-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .m-md-4 {
    margin: 2rem !important;
  }
  .mt-md-4 {
    margin-top: 2rem !important;
  }
  .mb-md-4 {
    margin-bottom: 2rem !important;
  }
  .ms-md-4 {
    margin-left: 2rem !important;
  }
  .me-md-4 {
    margin-right: 2rem !important;
  }
  .my-md-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-md-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .m-md-5 {
    margin: 2.5rem !important;
  }
  .mt-md-5 {
    margin-top: 2.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2.5rem !important;
  }
  .ms-md-5 {
    margin-left: 2.5rem !important;
  }
  .me-md-5 {
    margin-right: 2.5rem !important;
  }
  .my-md-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-md-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 576px) {
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .m-sm-1 {
    margin: 0.5rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.5rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }
  .ms-sm-1 {
    margin-left: 0.5rem !important;
  }
  .me-sm-1 {
    margin-right: 0.5rem !important;
  }
  .my-sm-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mx-sm-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .m-sm-2 {
    margin: 1rem !important;
  }
  .mt-sm-2 {
    margin-top: 1rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 1rem !important;
  }
  .ms-sm-2 {
    margin-left: 1rem !important;
  }
  .me-sm-2 {
    margin-right: 1rem !important;
  }
  .my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-sm-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .m-sm-3 {
    margin: 1.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .mx-sm-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .m-sm-4 {
    margin: 2rem !important;
  }
  .mt-sm-4 {
    margin-top: 2rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 2rem !important;
  }
  .ms-sm-4 {
    margin-left: 2rem !important;
  }
  .me-sm-4 {
    margin-right: 2rem !important;
  }
  .my-sm-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mx-sm-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .m-sm-5 {
    margin: 2.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 2.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 2.5rem !important;
  }
  .me-sm-5 {
    margin-right: 2.5rem !important;
  }
  .my-sm-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .mx-sm-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.ps-1 {
  padding-left: 0.5rem !important;
}

.pe-1 {
  padding-right: 0.5rem !important;
}

.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.px-1 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.ps-2 {
  padding-left: 1rem !important;
}

.pe-2 {
  padding-right: 1rem !important;
}

.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.px-2 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.ps-3 {
  padding-left: 1.5rem !important;
}

.pe-3 {
  padding-right: 1.5rem !important;
}

.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.px-3 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.ps-4 {
  padding-left: 2rem !important;
}

.pe-4 {
  padding-right: 2rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.px-4 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.p-5 {
  padding: 2.5rem !important;
}

.pt-5 {
  padding-top: 2.5rem !important;
}

.pb-5 {
  padding-bottom: 2.5rem !important;
}

.ps-5 {
  padding-left: 2.5rem !important;
}

.pe-5 {
  padding-right: 2.5rem !important;
}

.py-5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.px-5 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

@media (max-width: 1080px) {
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.5rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.5rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.5rem !important;
  }
  .ps-xl-1 {
    padding-left: 0.5rem !important;
  }
  .pe-xl-1 {
    padding-right: 0.5rem !important;
  }
  .py-xl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .px-xl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .p-xl-2 {
    padding: 1rem !important;
  }
  .pt-xl-2 {
    padding-top: 1rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 1rem !important;
  }
  .ps-xl-2 {
    padding-left: 1rem !important;
  }
  .pe-xl-2 {
    padding-right: 1rem !important;
  }
  .py-xl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .px-xl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .p-xl-3 {
    padding: 1.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .p-xl-4 {
    padding: 2rem !important;
  }
  .pt-xl-4 {
    padding-top: 2rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 2rem !important;
  }
  .ps-xl-4 {
    padding-left: 2rem !important;
  }
  .pe-xl-4 {
    padding-right: 2rem !important;
  }
  .py-xl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .px-xl-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .p-xl-5 {
    padding: 2.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 2.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 2.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 2.5rem !important;
  }
  .py-xl-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .px-xl-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 992px) {
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.5rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.5rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }
  .ps-lg-1 {
    padding-left: 0.5rem !important;
  }
  .pe-lg-1 {
    padding-right: 0.5rem !important;
  }
  .py-lg-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .px-lg-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .p-lg-2 {
    padding: 1rem !important;
  }
  .pt-lg-2 {
    padding-top: 1rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 1rem !important;
  }
  .ps-lg-2 {
    padding-left: 1rem !important;
  }
  .pe-lg-2 {
    padding-right: 1rem !important;
  }
  .py-lg-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .px-lg-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .p-lg-3 {
    padding: 1.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .p-lg-4 {
    padding: 2rem !important;
  }
  .pt-lg-4 {
    padding-top: 2rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 2rem !important;
  }
  .ps-lg-4 {
    padding-left: 2rem !important;
  }
  .pe-lg-4 {
    padding-right: 2rem !important;
  }
  .py-lg-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .px-lg-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .p-lg-5 {
    padding: 2.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 2.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 2.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 2.5rem !important;
  }
  .py-lg-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .px-lg-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 768px) {
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.5rem !important;
  }
  .pt-md-1 {
    padding-top: 0.5rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }
  .ps-md-1 {
    padding-left: 0.5rem !important;
  }
  .pe-md-1 {
    padding-right: 0.5rem !important;
  }
  .py-md-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .px-md-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .p-md-2 {
    padding: 1rem !important;
  }
  .pt-md-2 {
    padding-top: 1rem !important;
  }
  .pb-md-2 {
    padding-bottom: 1rem !important;
  }
  .ps-md-2 {
    padding-left: 1rem !important;
  }
  .pe-md-2 {
    padding-right: 1rem !important;
  }
  .py-md-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .px-md-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .p-md-3 {
    padding: 1.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1.5rem !important;
  }
  .py-md-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .px-md-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .p-md-4 {
    padding: 2rem !important;
  }
  .pt-md-4 {
    padding-top: 2rem !important;
  }
  .pb-md-4 {
    padding-bottom: 2rem !important;
  }
  .ps-md-4 {
    padding-left: 2rem !important;
  }
  .pe-md-4 {
    padding-right: 2rem !important;
  }
  .py-md-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .px-md-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .p-md-5 {
    padding: 2.5rem !important;
  }
  .pt-md-5 {
    padding-top: 2.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2.5rem !important;
  }
  .ps-md-5 {
    padding-left: 2.5rem !important;
  }
  .pe-md-5 {
    padding-right: 2.5rem !important;
  }
  .py-md-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .px-md-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 576px) {
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.5rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.5rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }
  .ps-sm-1 {
    padding-left: 0.5rem !important;
  }
  .pe-sm-1 {
    padding-right: 0.5rem !important;
  }
  .py-sm-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .px-sm-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .p-sm-2 {
    padding: 1rem !important;
  }
  .pt-sm-2 {
    padding-top: 1rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 1rem !important;
  }
  .ps-sm-2 {
    padding-left: 1rem !important;
  }
  .pe-sm-2 {
    padding-right: 1rem !important;
  }
  .py-sm-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .px-sm-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .p-sm-3 {
    padding: 1.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .p-sm-4 {
    padding: 2rem !important;
  }
  .pt-sm-4 {
    padding-top: 2rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 2rem !important;
  }
  .ps-sm-4 {
    padding-left: 2rem !important;
  }
  .pe-sm-4 {
    padding-right: 2rem !important;
  }
  .py-sm-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .px-sm-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .p-sm-5 {
    padding: 2.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 2.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 2.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 2.5rem !important;
  }
  .py-sm-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .px-sm-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
}
.border-0 {
  border: 0 !important;
}

.border {
  border: 1px solid #d7d7d7 !important;
}

.border-top {
  border-top: 1px solid #d7d7d7 !important;
}

.border-bottom {
  border-bottom: 1px solid #d7d7d7 !important;
}

.border-start {
  border-left: 1px solid #d7d7d7 !important;
}

.border-end {
  border-right: 1px solid #d7d7d7 !important;
}

.border-width-bold {
  border-width: 2px !important;
}

.border-primary {
  border-color: #bf0000 !important;
}

.border-body {
  border-color: #1b2440 !important;
}

.rounded {
  border-radius: 4px !important;
}

.rounded-lg {
  border-radius: 8px !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.box-shadow {
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16) !important;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16) !important;
}

.hover-shadow {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.hover-shadow:hover {
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16) !important;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16) !important;
}

.hover-opacity {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.hover-opacity:hover {
  opacity: 0.8;
}

.bg-primary {
  background-color: #bf0000 !important;
}

.bg-secondary {
  background-color: #1b2440 !important;
}

.bg-gray {
  background-color: #d7d7d7 !important;
}

.bg-light {
  background-color: #f7f7f7 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.fs-large {
  font-size: 18px !important;
}
@media (max-width: 768px) {
  .fs-large {
    font-size: 16px !important;
  }
}

.fs-default {
  font-size: 16px !important;
}
@media (max-width: 768px) {
  .fs-default {
    font-size: 14px !important;
  }
}

.fs-medium {
  font-size: 14px !important;
}
@media (max-width: 768px) {
  .fs-medium {
    font-size: 13px !important;
  }
}

.fs-small {
  font-size: 12px !important;
}

.fs-xsmall {
  font-size: 10px !important;
}

.fw-bold {
  font-weight: bold !important;
}

.lh-1 {
  line-height: 1 !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

@media (max-width: 992px) {
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
}
@media (max-width: 768px) {
  .text-md-center {
    text-align: center !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
}
@media (max-width: 576px) {
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
}
.text-success {
  color: #198754 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-body {
  color: #1b2440 !important;
}

.text-primary {
  color: #bf0000 !important;
}

.text-rakuwin {
  color: #2a3556 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.grid-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 14px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 24px auto;
  grid-template-rows: auto auto;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
  row-gap: 24px;
  -ms-grid-column-align: space-between;
  justify-self: space-between;
}

.grid-2 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-2 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.grid-2 > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.grid-2 > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media (max-width: 768px) {
  .grid-2 {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
  }
}

.grid-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 14px 1fr 14px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto 24px auto;
  grid-template-rows: auto auto;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
  row-gap: 24px;
  -ms-grid-column-align: space-between;
  justify-self: space-between;
}

.grid-3 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-3 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.grid-3 > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.grid-3 > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.grid-3 > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.grid-3 > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
@media (max-width: 768px) {
  .grid-3 {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
  }
}

.grid-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 14px 1fr 14px 1fr 14px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto 24px auto;
  grid-template-rows: auto auto;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
  row-gap: 24px;
  -ms-grid-column-align: space-between;
  justify-self: space-between;
}

.grid-4 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-4 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.grid-4 > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.grid-4 > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.grid-4 > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.grid-4 > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.grid-4 > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.grid-4 > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
@media (max-width: 768px) {
  .grid-4 {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
  }
}

@media (max-width: 1080px) {
  .grid-xl-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 16px auto;
    grid-template-rows: auto auto;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
    row-gap: 16px;
    -ms-grid-column-align: space-between;
    justify-self: space-between;
  }
  .grid-xl-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-xl-2 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid-xl-2 > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid-xl-2 > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media (max-width: 768px) {
  .grid-xl-2 {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
  }
}

@media (max-width: 992px) {
  .grid-lg-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 16px auto;
    grid-template-rows: auto auto;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
    row-gap: 16px;
    -ms-grid-column-align: space-between;
    justify-self: space-between;
  }
  .grid-lg-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-lg-2 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid-lg-2 > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid-lg-2 > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media (max-width: 768px) {
  .grid-lg-2 {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
  }
}

@media (max-width: 992px) {
  .grid-lg-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: auto 16px auto;
    grid-template-rows: auto auto;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
    row-gap: 16px;
    -ms-grid-column-align: space-between;
    justify-self: space-between;
  }
  .grid-lg-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-lg-1 > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
@media (max-width: 768px) {
  .grid-lg-1 {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
  }
}

@media (max-width: 768px) {
  .grid-md-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 12px auto;
    grid-template-rows: auto auto;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
    -ms-grid-column-align: space-between;
    justify-self: space-between;
  }
  .grid-md-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-md-2 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid-md-2 > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid-md-2 > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

@media (max-width: 768px) {
  .grid-md-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: auto 12px auto;
    grid-template-rows: auto auto;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
    -ms-grid-column-align: space-between;
    justify-self: space-between;
  }
  .grid-md-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-md-1 > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

@media (max-width: 576px) {
  .grid-sm-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: auto 12px auto;
    grid-template-rows: auto auto;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 12px;
    -ms-grid-column-align: space-between;
    justify-self: space-between;
  }
  .grid-sm-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-sm-1 > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-x-auto {
  overflow-y: auto !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

/* コンポーネント */
.alert-noscript {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding-top: 32px;
  padding-right: 32px;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .alert-noscript {
    padding-top: 16px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

.alert-noscript__inner {
  padding: 24px 40px;
  background-color: #f7f7f7;
  border: solid 1px #d1d1d1;
}
@media (max-width: 768px) {
  .alert-noscript__inner {
    padding: 12px;
  }
}

.breadcrumb {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 12px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb li {
  white-space: nowrap;
}
.breadcrumb li:last-child {
  padding-right: 14px;
}
.breadcrumb .ico {
  font-size: 12px;
  margin: 0 4px;
}
.breadcrumb a {
  text-decoration: underline;
  color: #0d6efd;
}
.breadcrumb a:visited {
  color: #0d6efd;
}
.breadcrumb a:hover, .breadcrumb a:active {
  color: #ff1212;
  text-decoration: underline;
}

.cursor-pointer {
  cursor: pointer !important;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  min-width: 270px;
  height: 56px;
  padding: 0 24px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  color: #1b2440;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn:hover, .btn:active {
  color: #1b2440;
  background-color: rgba(27, 36, 64, 0.1);
}
@media (max-width: 768px) {
  .btn {
    height: 48px;
    padding: 0 24px 2px;
  }
}
@media (max-width: 576px) {
  .btn {
    width: 100%;
    min-width: 100%;
  }
}

.btn-small {
  width: auto;
  max-width: auto;
  height: auto;
  line-height: 1;
  padding: 14px 40px 15px;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary {
  color: #ffffff;
  background-color: #bf0000;
}
.btn-primary:hover, .btn-primary:active {
  color: #ffffff;
  background-color: #ff1212;
}

.btn-outline-primary {
  color: #bf0000;
  border: 1px solid #bf0000;
  background-color: #ffffff;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
  color: #ffffff;
  background-color: #ff1212;
  border: none;
}

.btn-rakuwin {
  color: #ffffff;
  background-color: #2a3556;
}
.btn-rakuwin:hover, .btn-rakuwin:active {
  color: #ffffff;
  background-color: #1070ef;
}

.btn-secondary {
  color: #ffffff;
  background-color: #1b2440;
}
.btn-secondary:hover, .btn-secondary:active {
  color: #ffffff;
  background-color: #505050;
}

.btn-outline-secondary {
  color: #1b2440;
  border: 1px solid #1b2440;
  background-color: #ffffff;
}
.btn-outline-secondary:hover, .btn-outline-secondary:active {
  color: #ffffff;
  background-color: #505050;
  border: none;
}

.btn-big {
  color: #ffffff;
  background-color: #e61616;
}
.btn-big:hover, .btn-big:active {
  color: #ffffff;
  background-color: #ff3a3a;
}

.btn-outline-big {
  color: #e61616;
  border: 1px solid #e61616;
  background-color: #ffffff;
}
.btn-outline-big:hover, .btn-outline-big:active {
  color: #ffffff;
  background-color: #ff3a3a;
  border: none;
}

.btn-toto {
  color: #1b2440;
  background-color: #ffd800;
}
.btn-toto:hover, .btn-toto:active {
  color: #1b2440;
  background-color: #ffe343;
}

.btn-outline-toto {
  color: #1b2440;
  border: 1px solid #ffd800;
  background-color: #ffffff;
}
.btn-outline-toto:hover, .btn-outline-toto:active {
  color: #1b2440;
  background-color: #ffe343;
  border: none;
}

.btn-winner {
  color: #1b2440;
  background-color: #d6e6ef;
}
.btn-winner:hover, .btn-winner:active {
  color: #1b2440;
  background-color: #c0e1f4;
}

.btn-outline-winner {
  color: #1b2440;
  border: 1px solid #d6e6ef;
  background-color: #ffffff;
}
.btn-outline-winner:hover, .btn-outline-winner:active {
  color: #1b2440;
  background-color: #c0e1f4;
  border: none;
}

.list {
  display: inline-block;
  list-style: none;
}
.list li {
  position: relative;
  padding-left: calc(1rem + 1px);
  padding-bottom: 0.25rem;
  font-size: calc(1rem - 1px);
  text-align: left;
}
.list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.list li:last-child {
  padding-bottom: 0;
}

.list-asterisk {
  display: inline-block;
  list-style: none;
}
.list-asterisk li {
  position: relative;
  padding-left: calc(1rem + 1px);
  padding-bottom: 0.25rem;
  font-size: calc(1rem - 1px);
  text-align: left;
}
.list-asterisk li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
.list-asterisk li:last-child {
  padding-bottom: 0;
}

.list-num {
  display: inline-block;
  list-style: none;
}
.list-num > li {
  position: relative;
  padding-left: calc(1rem + 1px);
  padding-bottom: 0.5rem;
  font-size: calc(1rem - 1px);
  text-align: left;
  counter-increment: num;
}
.list-num > li::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: counter(num) ".";
}
@media (max-width: 768px) {
  .list-num > li::before {
    top: 2px;
  }
}
.list-num > li:last-child {
  padding-bottom: 0;
}
.list-num .list-num {
  display: inline-block;
  list-style: none;
}
.list-num .list-num > li {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 0.5rem;
  font-size: calc(1rem - 2px);
  text-align: left;
  counter-increment: innum;
}
.list-num .list-num > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "（" counter(innum) "）";
}
.list-num .list-num > li:last-child {
  padding-bottom: 0;
}

.list-unstyled {
  display: inline-block;
  list-style: none;
}
.list-unstyled li {
  position: relative;
  padding-bottom: 0.25rem;
  font-size: calc(1rem - 1px);
  text-align: left;
}
.list-unstyled li:last-child {
  padding-bottom: 0;
}

.js-accordion {
  width: 100%;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d7d7d7;
}

.js-accordion-header {
  position: relative;
  padding: calc(1rem - 2px) 1rem 1rem;
  cursor: pointer;
}

.js-accordion-body {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.js-accordion-body__inner {
  border-top: 1px solid #d7d7d7;
  padding: 1rem;
}

.js-accordion-open .accordion-head__toggle-arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}