@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
html, body, div, span, object, iframe,  h1, h2, h3, h4, h5, h6, p, blockquote, pre,  abbr, address, cite, code,  del, dfn, em, img, ins, kbd, q, samp,  small, strong, sub, sup, var,  b, i,  dl, dt, dd, ol, ul, li,  fieldset, form, label, legend,  table, caption, tbody, tfoot, thead, tr, th, td,  article, aside, canvas, details, figcaption, figure,  footer, header, hgroup, menu, nav, section, summary,  time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

body {
  background: #fff;
  color: #000;
  /* font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  line-height: 1;
  font-size: 62.5%;
  text-size-adjust: 100%;
  text-align: center;
  -webkit-text-size-adjust: 100%; /*Chrome,Safari*/
  -ms-text-size-adjust: 100%; /*EgdeMobile*/
  -moz-text-size-adjust: 100%; /*firefox*/
}

p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
}

* {
  box-sizing: border-box; /* padding and border are included in Inner diameter. */
}

article, aside, details, figcaption, figure,  footer, header, hgroup, menu, nav, section, picture {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,  q:before, q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

picture { display: block; margin: auto; text-align: center; }
img { max-width: 100%; height: auto; }

ul { list-style: none; padding-left: 0; }
li { font-weight: normal; }

section a { color: #000; }
section a:hover { text-decoration: none }

/* @media (min-width: 751px) {
  html,body{ font-size: 50%}
} */

/* ===============================
layout
 =============================== */
.container {
  display: block;
  position: relative;
  width: 750px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}

.layout-center {
  display: block;
  margin: 0 auto;
}

.block-padding-5 { padding: 5px 0; }
.block-padding-10 { padding: 10px 0; }
.block-padding-15 { padding: 15px 0; }
.block-padding-20 { padding: 20px 0; }
.block-padding-25 { padding: 25px 0; }
.block-padding-30 { padding: 30px 0; }
.block-padding-35 { padding: 35px 0; }
.block-padding-40 { padding: 40px 0; }
.block-padding-45 { padding: 45px 0; }
.block-padding-50 { padding: 50px 0; }

.bottom-margin-50 { margin-bottom: 50px; }

.hover-action {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.hover-action:hover {
  filter: brightness(200%);
}

.br-pc {
  display: none;
}
.br-sp {
  display: inline;
}

@media (min-width: 751px) {
  .br-pc {
    display: inline;
  }
  .br-sp {
    display: none;
  }
}

/* ===============================
#header
 =============================== */
#header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  height: 140px;
  margin: -140px auto 0;
  background-image: url(../images/header_texture.png);
  background-size: cover;
  background-position: bottom center;
  z-index: 999;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#header.disp {
  margin: 0 auto;
}

.logo {
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  margin: 0 auto;
}

.menu-btn,
.close-btn {
  position: absolute;
  right: 35px;
  top: 35px;
  width: 80px;
  cursor: pointer;
}

#menu-list {
  position: fixed;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background-color: rgba(230,0,18,0.85);
  margin: 0 auto;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 1000;
}
#menu-list.open {
 left: 0;
}

#menu-list ul {
  padding: 120px 0 0;
  background-color: rgba(230,0,18,1);
}
#menu-list ul li {
  height: 100px;
  padding: 30px 0 0 100px;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #ffffff;
  background-image: url(../images/menu_li_bcg.png);
  background-repeat: no-repeat;
  background-position: top left;
}
#menu-list ul li:first-child {
  border-top: 1px solid #ffffff;
}
#menu-list ul li a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#menu-list ul li a:hover {
  filter: brightness(200%);
}

/* ===============================
#keyvisual
 =============================== */
#keyvisual {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
}

/* ===============================
#intro
 =============================== */
#intro {
  width: 100%;
  margin: 50px 0 75px;
}
#intro::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

.intro-text {
  border-radius: 25px;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

/* ===============================
#campaign
 =============================== */
#campaign {
  width: 100%;
  margin: 0;
  background-color: #f4eff2;
  background-image: url(../images/bcg_white.png);
  background-repeat: repeat-x;
  background-size: 1px 193px;
}
#campaign::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

/* ===============================
#product
 =============================== */
 #product {
  width: 100%;
  margin: 0;
  background-color: #f4eff2;
}
#product::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

.product-target {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  width: 80%;
  margin: 0 10%;
}

.product-target li {
  list-style: disc;
  font-size: 1.75rem;
  line-height: 1.5;
}

/* ===============================
#prize
 =============================== */
#prize {
  width: 100%;
  margin: 0;
  background-color: #f4eff2;
}
#prize::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

.prize-text {
  border-radius: 25px;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

/* ===============================
#apply
 =============================== */
#apply {
  width: 100%;
  margin: 0;
  background-color: #f4eff2;
}
#apply::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

.apply-step {
  width: 630px;
  margin: 0 auto;
}

.apply-step li {
  background-color: #ffffff;
  border-radius: 25px;
}

.apply-step li p {
  padding: 25px 45px;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
}

.apply-target {
  display: grid;
  gap: 0;
  grid-template-columns: 0.85fr 1.15fr;
  justify-content: center;
  padding: 5px 45px;
}

.apply-target li {
  list-style: none;
  font-size: 1.5rem;
  line-height: 1.5;
}

.apply-target li::before {
  content: '⚫︎';
  color: #e60012;
  font-size: 1.5rem;
  line-height: 1.5;
}

.apply-step li p.step-2-p {
  margin-top: -50px !important;
}

.apply-step li p.step-3-p {
  margin: -35px 0 -10px !important;
}

.apply-step li ul.step-3-ul {
  padding: 5px 45px 35px 70px;
}

.apply-step li ul.step-3-ul li {
  list-style: disc;
  font-size: 1.5rem;
  line-height: 1.5;
}

.apply-text {
  border-radius: 25px;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

/* ===============================
#note
 =============================== */
#note {
  width: 100%;
  margin: 0;
  background-color: #ffffff;
  background-image: url(../images/bcg_gray.png);
  background-repeat: repeat-x;
  background-size: 1px 218px;
}
#note::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

.note-list {
  padding: 25px;
}

.note-list li {
  margin: 0 35px;
  list-style: disc;
  font-size: 1.5rem;
  line-height: 1.5;
}

/* ===============================
#terms
 =============================== */
#terms {
  width: 100%;
  margin: 0;
  background-color: #f4eff2;
  background-image: url(../images/bcg_white.png);
  background-repeat: repeat-x;
  background-size: 1px 217px;
}
#terms::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

.terms-document {
  margin: 25px;
  font-size: 1.6rem;
  line-height: 1.6;
  /*font-weight: 200;*/
}

.terms-document h3 {
  padding: 25px 0 15px;
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
}

.terms-document h4 {
  padding: 0 0 15px;
  font-weight: bold;
}

.terms-document p {
  padding: 0 0 15px;
}

.terms-document ul {
  padding: 0 25px 15px;
}

.terms-document li {
  list-style: disc;
  font-size: 1.5rem;
  line-height: 1.5;
}

.terms-document li.kome {
  list-style: none;
  font-size: 1.5rem;
  line-height: 1.5;
}
.terms-document li.kome::before {
  content: "※";
  font-weight: bold;
  margin-left: -1.5rem;
}

/* ===============================
#faq
 =============================== */
#faq {
  width: 100%;
  margin: 0;
  background-color: #f4eff2;
}
#faq::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

.faq-container {
  width: 700px;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
}

.faq-contents {
  margin: 0 25px;
  border-bottom: 2px #ededed solid;
  text-align: left;
}
.faq-contents:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

.faq-q h3 {
  width: 500px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
}

.faq-q img {
  display: block;
  width: 60px;
  height: auto;
  padding: 10px 5px;
}

.faq-p {
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.faq-p.disp {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.faq-a {
  display: none;
  width: 600px;
  margin: 0 auto 25px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  font-size: 1.5rem;
  line-height: 1.4;
}
.faq-a.disp {
  display: block;
}

.faq-a h3 {
  padding: 15px 0;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
}


.faq-a h3 span {
  font-size: 2.5rem;
  font-weight: bold;
  padding-right: 0.5rem;
}

.faq-a h4 {
  padding: 25px 0 10px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
}

.faq-a p {
  padding: 15px 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

.faq-a ul {
  list-style: disc;
  padding: 0 25px;
  font-weight: 200;
}

/* ===============================
#inquiry
 =============================== */
#inquiry {
  width: 100%;
  margin: 0;
  background-color: #f4eff2;
}
#inquiry::before {
  content:'';
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

.inquiry-document {
  margin: 15px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 100;
}

.inquiry-document h3 {
  padding: 15px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: bold;
}

.inquiry-document p {
  padding: 15px;
}
