@charset "UTF-8";
/* ----- Font Faces ----- */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NotoSansJP-Black.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
}
.lato {
  font-family: "Lato", sans-serif;
}

/* ----- Breakpoints ----- */
.sp {
  display: none;
}

.tab {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .tab {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .tab {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* ----- Layout ----- */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding: 64px 0;
  }
}

body {
  position: relative;
  width: 100%;
  line-height: 1.8;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #231c07;
}
body::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
body.bg-rd::after {
  background: url("../images/bg-rd.jpg") no-repeat center center/cover;
}
body.bg-bl::after {
  background: url("../images/bg-bl.jpg") no-repeat center center/cover;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-inline: 40px;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap {
    padding-inline: 0;
  }
}

/* ----- .nav ----- */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #fff;
}
.nav-item {
  border-bottom: 1px solid #fff;
}
.nav-item a {
  display: block;
  padding: 12px 0 12px 4px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav-item a {
    padding: 10px 0 10px 4px;
    font-size: 1.4rem;
  }
}
.nav-item a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url("../images/icon-nav-arrow.svg");
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  transition: 0.15s;
}
@media (hover: hover) {
  .nav-item a:hover::after {
    right: 0;
  }
}

/* ----- .side-menu ----- */
.side-menu {
  width: calc(50% - 40px);
  padding-right: 40px;
  height: 100vh;
  overflow-y: auto;
  position: sticky;
  top: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.side-menu::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .side-menu {
    display: none;
  }
}
.side-menu .inner {
  max-width: 320px;
  padding-block: 60px 40px;
}
.side-menu .nav {
  margin-top: 40px;
}
.side-menu .bnr {
  margin-top: 24px;
}
.side-menu .bnr a {
  transition: 0.3s;
}
@media (hover: hover) {
  .side-menu .bnr a:hover {
    opacity: 0.8;
  }
}

/* ----- .main-contents ----- */
.main-contents {
  width: 50%;
  max-width: 540px;
  min-width: 400px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .main-contents {
    width: 100%;
    max-width: 540px;
    min-width: auto;
    margin: 0 auto;
    padding-top: 64px;
  }
}
.main-contents::after {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  left: -20px;
  z-index: -1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .main-contents::after {
    display: none;
  }
}

/* ----- .header ----- */
.header {
  width: 100%;
  background-color: #ffffff;
  padding: 12px 20px;
}
@media screen and (max-width: 768px) {
  .header {
    max-width: 540px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }
}
.header .inner {
  display: flex;
  justify-content: space-between;
}
.header .sp-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .sp-menu {
    display: block;
  }
}
.header .sp-menu-trig {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}
.header .sp-menu-trig > span {
  display: inline-block;
  width: 20px;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333333;
  transition: 0.3s;
}
.header .sp-menu-trig > span:nth-child(1) {
  top: 12px;
}
.header .sp-menu-trig > span:nth-child(2) {
  top: 20px;
}
.header .sp-menu-trig > span:nth-child(3) {
  top: 28px;
}
.header .sp-menu-trig.is-active > span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .sp-menu-trig.is-active > span:nth-child(2) {
  opacity: 0;
}
.header .sp-menu-trig.is-active > span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .sp-menu-content {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 64px);
  background-color: #ff0000;
  z-index: 1000;
  padding: 32px;
  transform: translateX(100%);
  transition: 0.3s;
  opacity: 0;
}
.header .sp-menu-content.is-active {
  transform: translateX(0);
  opacity: 1;
}
.header .sp-menu-content .nav {
  margin-top: 40px;
}

.bg-rd .sp-menu-content {
  background: url("../images/bg-sp-menu-rd.jpg") no-repeat center center/cover;
}

.bg-bl .sp-menu-content {
  background: url("../images/bg-sp-menu-bl.jpg") no-repeat center center/cover;
}

.sp-float-bnr {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-float-bnr {
    display: block;
    width: 104px;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
  }
}

/* ----- .footer ----- */
.footer {
  margin-top: 120px;
  padding-inline: 12px;
}
.footer .inner {
  padding-block: 60px;
  border-top: 1px solid #cccccc;
}
.footer-link-list {
  display: flex;
  justify-content: center;
  list-style: none;
}
.footer-link-item {
  padding-inline: 16px;
  position: relative;
}
.footer-link-item::before {
  content: "｜";
  display: block;
  position: absolute;
  left: -8px;
  top: 0;
}
.footer-link-item:first-child::before {
  content: "";
}
.footer-link-item a {
  color: #231c07;
  text-decoration: none;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .footer-link-item a:hover {
    text-decoration: underline;
  }
}
.footer-copyright {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #333333;
  font-size: 1rem;
}
.footer .btn-page-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .footer .btn-page-top {
    right: 12px;
    bottom: 8px;
    width: 65px;
  }
}

/* ----- Common ----- */
.mt-20 {
  margin-top: 20px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-36 {
  margin-top: 36px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.notes-list {
  margin-top: 20px;
  list-style: none;
}
.notes-item {
  font-size: 1.4rem;
  padding-left: calc(1em + 4px);
  position: relative;
  margin-top: 2px;
}
@media screen and (max-width: 1024px) {
  .notes-item {
    font-size: 1.2rem;
  }
}
.notes-item:first-child {
  margin-top: 0;
}
.notes-item::before {
  content: "※";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.common-btn {
  padding-inline: 16px;
}
.common-btn a {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  background: url("../images/bg-common-btn-rd.jpg") no-repeat center center/cover;
  border-radius: 9999px;
  text-decoration: none;
  padding-block: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .common-btn a {
    font-size: 1.8rem;
    padding-block: 16px;
  }
}
@media (hover: hover) {
  .common-btn a:hover {
    opacity: 0.8;
  }
}
.common-btn.--bl a {
  background-image: url("../images/bg-common-btn-bl.jpg");
}

.contents-menu {
  padding-inline: 12px;
}
.contents-menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
}
.contents-menu-item {
  text-align: center;
}
.contents-menu-item:first-child {
  grid-column: span 2;
}
.contents-menu-item:first-child a {
  aspect-ratio: 516/76;
  background: url("../images/btn-contents-menu-lg-rd.png") no-repeat center center/cover;
}
.contents-menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 254/76;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
  background: url("../images/btn-contents-menu-sm-rd.png") no-repeat center center/cover;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .contents-menu-item a {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .contents-menu-item a:hover {
    opacity: 0.8;
  }
}

.bg-bl .contents-menu-item:first-child a {
  background-image: url("../images/btn-contents-menu-lg-bl.png");
}
.bg-bl .contents-menu-item a {
  background-image: url("../images/btn-contents-menu-sm-bl.png");
}

.intro {
  padding-block: 64px;
  padding-inline: 40px;
}
@media screen and (max-width: 1024px) {
  .intro {
    padding-block: 48px;
    padding-inline: 20px;
  }
}
.intro p {
  font-weight: 500;
}
.intro .common-btn {
  margin-top: 48px;
  padding-inline: 0;
}
@media screen and (max-width: 1024px) {
  .intro .common-btn {
    margin-top: 40px;
    padding-inline: 16px;
  }
}

.bg-rd .pickup {
  background: url("../images/bg-pickup-rd.jpg") repeat-y top center/100% auto;
}

.bg-bl .pickup {
  background: url("../images/bg-pickup-bl.jpg") repeat-y top center/100% auto;
}

.pickup {
  padding: 54px 24px;
}
@media screen and (max-width: 1024px) {
  .pickup {
    padding: 48px 16px;
  }
}
.pickup-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 1024px) {
  .pickup-list {
    gap: 44px;
  }
}
.pickup-item {
  padding: 28px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .pickup-item {
    padding: 22px 16px;
  }
}
.pickup-item::before, .pickup-item::after {
  content: "";
  display: block;
  background-color: transparent;
  border: 2px solid #d3ad6f;
  border-radius: 3px;
  position: absolute;
  z-index: -1;
}
.pickup-item::before {
  width: calc(100% + 12px);
  height: 100%;
  top: 0;
  left: -6px;
}
.pickup-item::after {
  width: 100%;
  height: calc(100% + 12px);
  top: -6px;
  left: 0;
}
.pickup-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .pickup-title {
    font-size: 1.6rem;
  }
}
.pickup-title + p {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .pickup-title + p {
    font-size: 1.4rem;
  }
}
.pickup .price {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .pickup .price {
    font-size: 1.4rem;
  }
}
.pickup .price .tax {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .pickup .price .tax {
    font-size: 1rem;
  }
}
.pickup .price .num {
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .pickup .price .num {
    font-size: 1.8rem;
  }
}
.pickup .shop {
  margin-top: 32px;
  background-color: rgba(211, 173, 111, 0.4);
  border-radius: 8px;
  padding: 16px;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .pickup .shop {
    font-size: 1.2rem;
    gap: 5px;
  }
}
.pickup .shop-link a {
  color: #231c07;
  display: inline-block;
}
.pickup .shop-link a::after {
  content: "";
  display: inline-block;
  width: 12.6px;
  height: 10.6px;
  background-image: url("../images/icon-link-blank.svg");
  margin-left: 5px;
}
@media (hover: hover) {
  .pickup .shop-link a:hover {
    text-decoration: none;
  }
}

/* ----- Animation ----- */
/* ----- Top page ----- */
.XMAS {
  margin-top: 48px;
}
.XMAS .inner {
  padding-inline: 24px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .XMAS .inner {
    padding-inline: 16px;
  }
}
.XMAS .sub-title {
  font-size: 2.8rem;
  color: #006e51;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  background: url("../images/bg-xmas-subtitle.png") no-repeat center bottom/440px auto;
}
@media screen and (max-width: 1024px) {
  .XMAS .sub-title {
    font-size: 1.8rem;
    background: url("../images/bg-xmas-subtitle_sp.png") no-repeat center bottom/310px auto;
  }
}
.XMAS .sub-title > span {
  font-size: 4.4rem;
}
@media screen and (max-width: 1024px) {
  .XMAS .sub-title > span {
    font-size: 3.4rem;
  }
}
.XMAS .detail-box {
  margin-top: 60px;
}
.XMAS .detail-box-inner {
  margin-top: 68px;
  padding: 44px 24px;
  position: relative;
  z-index: 2;
}
.XMAS .detail-box-inner:first-child {
  margin-top: 0;
}
.XMAS .detail-box-inner::before, .XMAS .detail-box-inner::after {
  content: "";
  display: block;
  background-color: transparent;
  border: 2px solid #d3ad6f;
  border-radius: 3px;
  position: absolute;
  z-index: -1;
}
.XMAS .detail-box-inner::before {
  width: calc(100% + 12px);
  height: 100%;
  top: 0;
  left: -6px;
}
.XMAS .detail-box-inner::after {
  width: 100%;
  height: calc(100% + 12px);
  top: -6px;
  left: 0;
}
.XMAS .detail-box-inner h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  max-width: 420px;
  margin: -75px auto 0;
  background: url("../images/bg-xmas-h3.png") no-repeat center center/100% auto;
  aspect-ratio: 420/56;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .XMAS .detail-box-inner h3 {
    font-size: 2rem;
    max-width: 320px;
    aspect-ratio: 320/48;
    margin: -70px auto 0;
  }
}
.XMAS .detail-box-inner .text-box {
  margin-top: 40px;
}
.XMAS .detail-box-inner .text-box-title {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .XMAS .detail-box-inner .text-box-title {
    font-size: 1.6rem;
  }
}
.XMAS .detail-box-inner .text-box-title.mt-20 {
  margin-top: 20px;
}
.XMAS .detail-box-inner .text-box-paragraph {
  margin-top: 12px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .XMAS .detail-box-inner .text-box-paragraph {
    font-size: 1.4rem;
  }
}
.XMAS .detail-box-inner .text-box-paragraph > span {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .XMAS .detail-box-inner .text-box-paragraph > span {
    font-size: 1.3rem;
  }
}
.XMAS .detail-box-inner h4 {
  margin-top: 32px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #c99f5a;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .XMAS .detail-box-inner h4 {
    font-size: 2rem;
  }
}
.XMAS .detail-box-inner h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #d3ad6f;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
  border-radius: 4px;
}
.XMAS .detail-box-inner h4 span {
  background-color: #ffffff;
  padding-inline: 24px;
}
.XMAS .detail-box .detail-link {
  text-align: center;
  margin-top: 20px;
  font-size: 1.6rem;
}
.XMAS .detail-box .detail-link .pdf-link {
  color: #231c07;
  text-decoration: underline;
}
@media (hover: hover) {
  .XMAS .detail-box .detail-link .pdf-link:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 1024px) {
  .XMAS .detail-box .detail-link {
    font-size: 1.4rem;
  }
}

.lottery-step-list {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lottery-step-item {
  display: flex;
  align-items: stretch;
  border: 2px solid #d3ad6f;
  border-radius: 4px;
  overflow: hidden;
}
.lottery-step-item .step-num {
  width: 80px;
  background-color: #d3ad6f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
}
@media screen and (max-width: 1024px) {
  .lottery-step-item .step-num {
    width: 64px;
  }
}
.lottery-step-item .step-num img {
  width: 60px;
}
@media screen and (max-width: 1024px) {
  .lottery-step-item .step-num img {
    width: 48px;
  }
}
.lottery-step-item p {
  display: flex;
  align-items: center;
  width: calc(100% - 80px);
  padding-inline: 20px;
  line-height: 1.5;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .lottery-step-item p {
    width: calc(100% - 64px);
    font-size: 1.4rem;
    padding-inline: 16px;
  }
}

.prize {
  margin-top: 36px;
}
.prize-item {
  padding-block: 27px 24px;
  background: url("../images/bg-line-dot.png") repeat-x left top/5px auto;
}
@media screen and (max-width: 1024px) {
  .prize-item {
    padding-block: 20px 17px;
  }
}
.prize-item:last-child {
  padding-block: 27px 0;
}
.prize-item-head {
  background-color: #cc3c3e;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .prize-item-head {
    height: 32px;
    font-size: 1.4rem;
  }
}
.prize-item-head > span {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .prize-item-head > span {
    font-size: 1.8rem;
  }
}

.common-section {
  margin-top: 80px;
  padding-inline: 24px;
}
@media screen and (max-width: 768px) {
  .common-section {
    padding-inline: 16px;
  }
}
.common-section .event-list .event-item {
  margin-top: 64px;
}
.common-section .event-list .event-item:first-child {
  margin-top: 0;
}
.common-section#apia {
  margin-top: 96px;
}
.common-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  color: #b51c1e;
  padding-block: 102px 28px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .common-section h2 {
    font-size: 2.4rem;
    padding-block: 73px 17px;
  }
}
.common-section h2::before, .common-section h2::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
.common-section h2::before {
  aspect-ratio: 492/78;
  background: url("../images/bg-common-section-title-top.png") no-repeat center top/100% auto;
  top: 0;
}
.common-section h2::after {
  aspect-ratio: 492/9;
  background: url("../images/bg-common-section-title-btm.png") no-repeat center top/100% auto;
  bottom: 0;
}
.common-section h3 {
  margin-top: 2.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #b51c1e;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .common-section h3 {
    font-size: 2rem;
  }
}
.common-section h3 + p {
  margin-top: 16px;
}
.common-section .img-box {
  margin-top: 28px;
}
.common-section p {
  font-size: 2rem;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .common-section p {
    font-size: 1.6rem;
  }
}
.common-section .common-btn {
  margin-top: 40px;
}

.detail-paragragh {
  font-size: 2rem;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .detail-paragragh {
    font-size: 1.6rem;
    margin-top: 12px;
  }
}
.detail-paragragh dl {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .detail-paragragh dl {
    margin-top: 6px;
  }
}
.detail-paragragh dl:first-child {
  margin-top: 0;
}
.detail-paragragh dl dt {
  width: 100px;
}
@media screen and (max-width: 1024px) {
  .detail-paragragh dl dt {
    width: 85px;
  }
}
.detail-paragragh dl dd {
  flex: 1;
}
.detail-paragragh .notes-list {
  margin-top: 12px;
}

/* ----- Apia page ----- */
/* ----- Stellar Place page ----- */

/*# sourceMappingURL=global.css.map */
