<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&amp;display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&amp;display=swap);
@font-face {
  font-family: ProductSans;
  src: url("./ProductSans-Regular.ttf") format("truetype");
}
/* ベース
=================================== */
* {
  box-sizing: border-box;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

li {
  list-style: none;
}

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

a {
  text-decoration: none;
  color: #000000;
}

button {
  border: none;
  outline: none;
}

@media (max-width: 768px) {
  .p-pc_view {
    display: none;
  }
}

@media (min-width: 769px) {
  .p-sp_view {
    display: none;
  }
}

.container {
  max-width: 910px;
  margin: 0 auto;
  padding: 2.1875rem 0 0;
}
@media (max-width: 768px) {
  .container {
    padding: 2.5rem 4rem 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 2.5rem 1rem 0;
  }
}

.contentWrap {
  max-width: 892px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .contentWrap {
    padding: 0;
  }
}

.note li {
  padding-left: 1em;
  text-indent: -1em;
  color: #393939;
}

.p-note {
  padding-left: 1em;
  text-indent: -1em;
  color: #393939;
}

@media (min-width: 769px) {
  a {
    transition: all 250ms ease;
  }
  a:hover {
    opacity: 0.7;
  }
}
/* ヘッダー
=================================== */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 72px;
  background-color: #fff;
  z-index: 1000;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
    background-color: #fff;
  }
  .header__logo {
    max-width: 121px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header__logo {
    display: flex;
    align-items: center;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .header .container {
    padding: 0 1rem 0 3.3125rem;
    width: 100%;
  }
}
.header__navi ul {
  display: flex;
  align-items: center;
}
.header__naviItem {
  font-size: 1rem;
  font-weight: bold;
}
@media (max-width: 910px) {
  .header__naviItem {
    font-size: 0.875rem;
  }
}
.header__naviItem:not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 910px) {
  .header__naviItem:not(:last-child) {
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  .header__naviItem:not(:last-child) {
    margin-right: 0;
  }
}

/* ハンバーガーメニュー
=================================== */
@media (max-width: 768px) {
  .header__navi {
    width: 300px;
    height: calc(100vh - 60px);
    position: absolute;
    bottom: 0;
    right: 0;
    top: 60px;
    padding: 2.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }
  .header__navi.active {
    opacity: 1;
    visibility: visible;
    background-color: #e60012;
  }
  .header__navi ul {
    flex-direction: column;
    margin: 0 auto;
    padding: 0 3rem;
  }
  .header__navi ul li {
    width: 100%;
  }
  .header__navi ul li:last-child a {
    border-bottom: 1px solid #fff;
  }
  .header__navi ul li a {
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    padding: 1rem;
    width: 100%;
    border-top: 1px solid #fff;
  }
}
@media (max-width: 375px) {
  .header__navi {
    width: 100vw;
    left: 0;
  }
  .header__navi ul {
    max-width: 200px;
    padding: 0;
  }
}
.openbtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #000000;
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background: #eb3414;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background: #eb3414;
}

/* hero
=================================== */
.hero {
  position: relative;
}
.hero__image {
  background: url(../images/hero_bg.png) repeat;
  border-top: 3px solid #e60012;
  text-align: center;
  margin-top: 75px;
}
@media (max-width: 768px) {
  .hero__image {
    margin-top: 60px;
    border-top: none;
  }
}
.hero__image img {
  width: 100%;
  max-width: 960px;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .hero__image img {
    width: 100%;
  }
}
.hero .end-message {
  background: rgba(255, 255, 255, 0.95);
  border: 10px solid #e60012;
  border-radius: 20px;
  color: #e60012;
  font-weight: 800;
  left: 50%;
  line-height: 1.7;
  padding: 3.5em 0.5em;
  position: absolute;
  font-size: 2.25rem;
  text-align: center;
  top: 5.5em;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 960px;
  z-index: 1;
}
@media (max-width: 959px) {
  .hero .end-message {
    padding: 2em 0.5em;
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .hero .end-message {
    top: 45%;
    max-width: 480px;
    padding: 2.2em 0.25em;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    border: 5px solid #e60012;
  }
}
.hero__period {
  margin-top: -3.75rem;
  padding: 0.875rem 0 1.375rem;
  background-color: #fff100;
  text-align: left;
}
@media (max-width: 768px) {
  .hero__period {
    margin-top: -6.25vw;
    padding: 2vw 0;
  }
}
.hero__text {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  line-height: 1;
  letter-spacing: 0.5px;
  font-weight: bold;
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 1.4375rem;
  }
}
.hero__text span.heroTitle {
  margin-right: 2rem;
  font-size: 1.875rem;
}
@media (max-width: 960px) {
  .hero__text span.heroTitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero__text span.heroTitle {
    font-size: 1.25rem;
  }
}

/* section共通項目
=================================== */
.section {
  background-color: #e60012;
}
.section__title {
  display: inline-block;
  width: auto;
  min-width: 4rem;
  margin: 0 auto 2.5rem;
  padding: 0.3125rem 1.25rem 0.75rem;
  background-color: #000000;
  border-radius: 0 0 1rem 1rem;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section__title {
    margin-bottom: 1.875rem;
    font-size: 1.25rem;
  }
}
.section__box {
  padding-top: 0;
  padding-bottom: 2.5rem;
  border-radius: 1rem;
  background-color: #fff;
  border: 4px solid #000000;
  text-align: center;
}
@media (max-width: 768px) {
  .section__box {
    padding: 0 1.25rem 2.5rem;
  }
}
.section__box:not(:last-child) {
  margin-bottom: 2.5rem;
}
.section__subTitle {
  max-width: 835px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.4375rem;
  padding-bottom: 2.25rem;
  background-image: url(../images/ribbon_title.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 959px) {
  .section__subTitle {
    font-size: 3.2vw;
  }
}
@media (max-width: 768px) {
  .section__subTitle {
    padding: 2.75vw 0 6.5vw;
    background-image: url(../images/ribbon_title_sp.png);
    font-size: 2.825vw;
  }
}
@media (max-width: 414px) {
  .section__subTitle {
    padding: 2.75vw 0 6.8vw;
  }
}

.hero__lead .container {
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .hero__lead .container {
    font-size: 1.25rem;
  }
}

/* 賞品紹介​
=================================== */
.campaign .present {
  padding-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .campaign .present {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.campaign .present__lead {
  margin: -1.3125rem 0 2.5rem;
  font-size: 1.25rem;
  text-align: center;
}
@media (max-width: 768px) {
  .campaign .present__lead {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    margin: -1vw 0 2.5rem;
  }
}
@media (max-width: 414px) {
  .campaign .present__lead {
    margin: 1vw 0 2rem;
  }
}
.campaign .present p {
  margin-top: 1.75rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .campaign .present p {
    font-size: 1rem;
  }
}
.campaign .present p.notice {
  margin-top: 0.875rem;
  margin-right: 1.75rem;
  text-align: right;
  font-weight: normal;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .campaign .present p.notice {
    text-align: left;
    font-size: 0.75rem;
  }
}
.campaign .present__img {
  max-width: 670px;
  margin: 0 auto;
  text-align: center;
}

/* 応募方法
=================================== */
.about .targetItems {
  margin-bottom: 0;
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
}
.about .targetItems .section {
  /*&amp;__subTitle {
    letter-spacing: -0.25rem;
    @media (max-width: 768px) {
      letter-spacing: -0.2rem;
    }
    @media (max-width: 414px) {
      letter-spacing: -0.15rem;
    }
  }*/
}
.about .targetItems__item {
  max-width: 801px;
  margin: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .about .targetItems__item {
    margin-top: 1rem;
  }
}
.about p.notice {
  margin-bottom: 1.75rem;
  text-align: center;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .about p.notice {
    font-size: 1rem;
  }
}
.about .part {
  border-radius: 0 0 1rem 1rem;
}
.about .part__row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4rem;
  margin-right: 4rem;
}
@media (max-width: 768px) {
  .about .part__row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}
.about .part__row &gt; *:first-child {
  margin-right: 2.375rem;
}
@media (max-width: 768px) {
  .about .part__row &gt; *:first-child {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
.about .part__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 268px;
}
.about .part__item p {
  text-align: center;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .about .part__item p {
    font-size: 0.9rem;
  }
}
.about .part__note {
  max-width: 500px;
  margin: 0;
  font-size: 1.25rem;
  text-align: left;
}
@media (max-width: 768px) {
  .about .part__note {
    font-size: 1.125rem;
  }
}
.about .part__note ol {
  counter-reset: my-counter;
  list-style: none;
}
.about .part__note ol li {
  line-height: 1.5;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}
.about .part__note ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #000000;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 24px;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  position: absolute;
  top: 2px;
  left: 0;
}

/* お問い合わせ
=================================== */
.contact__box--title {
  margin-bottom: 0.875rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .contact__box--title {
    text-align: center;
    font-size: 1.125rem;
  }
}
.contact__box h4 {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
}
@media (max-width: 768px) {
  .contact__box h4 {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
    font-weight: 500;
  }
}
.contact__box h4 .telnumber {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .contact__box h4 .telnumber {
    font-size: 1.125rem;
  }
}
.contact__box p {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact__box p {
    font-size: 0.75rem;
  }
}

/* 縦スクロールの設定
=================================== */
.scrollbox {
  overflow-y: scroll;
}
.scrollbox::-webkit-scrollbar {
  width: 7px;
}
.scrollbox::-webkit-scrollbar-track {
  background-color: #E3E3E3;
  border-radius: 50px;
}
.scrollbox::-webkit-scrollbar-thumb {
  background: #ACACAC;
  border-radius: 50px;
}

/* 注意事項 ご利用規約
=================================== */
@media (max-width: 768px) {
  .attention__box--titleArea h3 {
    text-align: center;
  }
}

.attention__box,
.terms__box {
  font-weight: 500;
}
@media (max-width: 768px) {
  .attention__box,
  .terms__box {
    font-size: 0.875rem;
  }
}
.attention__box--titleArea,
.terms__box--titleArea {
  margin-bottom: 1.875rem;
  text-align: center;
}
@media (max-width: 768px) {
  .attention__box--titleArea,
  .terms__box--titleArea {
    text-align: left;
  }
}
.attention__box--titleArea h3,
.attention__box--titleArea h4,
.terms__box--titleArea h3,
.terms__box--titleArea h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .attention__box--titleArea h3,
  .attention__box--titleArea h4,
  .terms__box--titleArea h3,
  .terms__box--titleArea h4 {
    font-size: 1.125rem;
  }
}
.attention__box--titleArea h4,
.terms__box--titleArea h4 {
  margin: 1em 0;
}
@media (max-width: 768px) {
  .attention__box--titleArea h4 span,
  .terms__box--titleArea h4 span {
    display: inline-block;
    margin-left: 3.4em;
  }
}
@media (max-width: 768px) {
  .attention__box--titleArea p,
  .terms__box--titleArea p {
    font-size: 1rem;
  }
  .attention__box--titleArea p:first-of-type,
  .terms__box--titleArea p:first-of-type {
    margin-bottom: 1rem;
  }
}
.attention__box .fw-regular,
.terms__box .fw-regular {
  font-weight: normal;
}
.attention__box .br,
.terms__box .br {
  margin-bottom: 1.5rem;
}
.attention__box .contentWrap,
.terms__box .contentWrap {
  max-height: 360px;
}
@media (max-width: 768px) {
  .attention__box .contentWrap,
  .terms__box .contentWrap {
    max-height: 300px;
  }
}
.attention__box .contentWrap[data-height="215"],
.terms__box .contentWrap[data-height="215"] {
  max-height: 215px;
}
@media (max-width: 768px) {
  .attention__box .contentWrap[data-height="215"],
  .terms__box .contentWrap[data-height="215"] {
    max-height: 300px;
  }
}
.attention .terms__box--title,
.terms .terms__box--title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .attention .terms__box--title,
  .terms .terms__box--title {
    font-size: 1.125rem;
  }
}
.attention a,
.terms a {
  word-wrap: break-word;
}

.attention .container {
  padding-bottom: 2.1875rem;
}
.attention .container .section__box {
  background-color: transparent;
  border: none;
  text-align: left;
}
.attention .container .section__box .note li {
  font-size: 1.125rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  .attention .container .section__box .note li {
    font-size: 0.75rem;
  }
}

/* フッター
=================================== */
.footer {
  padding: 1.625rem 1rem;
  background-color: #000000;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    padding: 2.625rem 1rem;
  }
}
.footer small {
  font-weight: 0.875rem;
}
@media (max-width: 768px) {
  .footer small {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>