@charset "utf-8";
@import url(https://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 {
  color: var(--color-font);
  background-color: var(--color-bcg);
  /* 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: var(--color-bcg);
	color: var(--color-font);
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: var(--color-bcg);
	color: var(--color-font);
	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: var(--color-font); }
section a:hover { text-decoration: none }

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

/* ===============================
 color
 =============================== */
 :root {
  --color-bcg: #fcfaf4;
  --color-font: #57544d;
  --color-link: #ff8b95;
  --color-white: #ffffff;
  --color-blue: #7dbfca;
  --color-gold: #d0ad56;
 }

/* ===============================
 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; }
.block-padding-55 { padding: 55px 0; }
.block-padding-60 { padding: 60px 0; }
.block-padding-65 { padding: 65px 0; }
.block-padding-70 { padding: 70px 0; }
.block-padding-75 { padding: 75px 0; }
.block-padding-80 { padding: 80px 0; }
.block-padding-85 { padding: 85px 0; }
.block-padding-90 { padding: 90px 0; }
.block-padding-95 { padding: 95px 0; }
.block-padding-100 { padding: 100px 0; }

.block-padding-b-5 { padding-bottom: 5px; }
.block-padding-b-10 { padding-bottom: 10px; }
.block-padding-b-15 { padding-bottom: 15px; }
.block-padding-b-20 { padding-bottom: 20px; }
.block-padding-b-25 { padding-bottom: 25px; }
.block-padding-b-30 { padding-bottom: 30px; }
.block-padding-b-35 { padding-bottom: 35px; }
.block-padding-b-40 { padding-bottom: 40px; }
.block-padding-b-45 { padding-bottom: 45px; }
.block-padding-b-50 { padding-bottom: 50px; }
.block-padding-b-55 { padding-bottom: 55px; }
.block-padding-b-60 { padding-bottom: 60px; }
.block-padding-b-65 { padding-bottom: 65px; }
.block-padding-b-70 { padding-bottom: 70px; }
.block-padding-b-75 { padding-bottom: 75px; }
.block-padding-b-80 { padding-bottom: 80px; }
.block-padding-b-85 { padding-bottom: 85px; }
.block-padding-b-90 { padding-bottom: 90px; }
.block-padding-b-95 { padding-bottom: 95px; }
.block-padding-b-100 { padding-bottom: 100px; }

.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;
  }
}

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

/* ===============================
 #intro
 =============================== */
#intro {
  position: relative;
  width: 750px;
  margin: -100px auto 50px;
  padding: 160px 0;
  background-image: url(../images/intro_bcg.png);
  background-repeat: no-repeat;
}
#intro--about {
  position: relative;
  width: 750px;
  margin: 0 auto 50px;
  padding: 160px 0;
  background-image: url(../images/intro_bcg-about.png);
  background-repeat: no-repeat;
}
.intro-text {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
.intro-annotation {
  font-size: 1.25rem;
  line-height: 1.25 !important;
  text-align: center;
}

/* ===============================
 #step
 =============================== */
.step-text {
  width: 80%;
  margin: 0 10%;
  font-size: 1.6rem;
  line-height: 2;
}
.step-text.center {
  text-align: center;
}
.step-text .under-line {
  border-bottom: 1px solid var(--color-font);
}
.step-annotation {
  width: calc(84% - 1.25rem);
  margin: 0 8% 1.25rem calc(8% + 1.25rem);
  display: block;
  font-size: 1.25rem;
  line-height: 1.25 !important;
}
.step-annotation::before {
  content: '＊';
  margin-left: -1.25rem;
}
.step-annotation.center {
  text-align: center;
}

/* ===============================
 #step1
 =============================== */
#step1 {
  position: relative;
  width: 750px;
  margin: 0 auto;
  padding: 120px 0;
  background-image: url(../images/step1_bcg.png);
  background-repeat: no-repeat;
}

/* ===============================
 #step2
 =============================== */
#step2 {
  position: relative;
  width: 750px;
  margin: 0 auto;
  padding: 120px 0;
  background-image: url(../images/step2_bcg.png);
  background-repeat: no-repeat;
}

/* ===============================
 #step3
 =============================== */
#step3 {
  position: relative;
  width: 750px;
  margin: 0 auto;
  padding: 120px 0;
  background-image: url(../images/step3_bcg.png);
  background-repeat: no-repeat;
}

/* ===============================
 #benefit
 =============================== */
#benefit {
  position: relative;
  width: 750px;
  margin: 0 auto;
  padding: 120px 0;
  background-image: url(../images/benefit_bcg.png);
  background-repeat: no-repeat;
}
#benefit.about {
  background-image: url(../images/benefit_bcg-about.png);
}
.benefit-glid2 {
  position: relative;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  width: 100%;
}
.benefit-item {
  position: relative;
  margin-bottom: 25px;
}
.benefit-item .detail {
  position: absolute;
  width: 100%;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  cursor: pointer;
}
.benefit-annotation {
  width: calc(90% - 1.25rem);
  margin: 0 5% 1.25rem calc(5% + 1.25rem);
  display: block;
  font-size: 1.25rem;
  line-height: 1.25 !important;
  color: var(--color-gold);
}
.benefit-annotation::before {
  content: '＊';
  margin-left: -1.25rem;
}

/* ===============================
 #lottery
 =============================== */
 #lottery {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background-image: url(../images/lottery_bcg.png);
  background-repeat: no-repeat;
}
.lottery-item {
  width: 85%;
  height: 550px;
  margin: 0 auto;
  position: relative;
  background-size: 20px 2px;
  background-image: linear-gradient(to right, var(--color-white) 10px, transparent 10px);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 5px;
}
.lottery-item .detail {
  position: absolute;
  bottom: 25px;
  right: 0;
  cursor: pointer;
}
.lottery-item.lottery-item-400pt {
  height: 575px;
}
.lottery-item:last-child {
  background-size: 0px;
}

/* ===============================
 #modal
 =============================== */
 .modal-bf150pt,
 .modal-bf250pt,
 .modal-bf300pt,
 .modal-bf400pt,
 .modal-bf500pt,
 .modal-bf1000pt,
 .modal-bf2000pt,
 
 .modal-lt150pt,
 .modal-lt200pt,
 .modal-lt400pt,
 .modal-lt200pt-2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  margin: auto;
  z-index: 1000;
  background-color: rgba(0,0,0,.75);
}
.modal-bf150pt.disp,
.modal-bf250pt.disp,
.modal-bf300pt.disp,
.modal-bf400pt.disp,
.modal-bf500pt.disp,
.modal-bf1000pt.disp,
.modal-bf2000pt.disp,

.modal-lt150pt.disp,
.modal-lt200pt.disp,
.modal-lt400pt.disp,
.modal-lt200pt-2.disp {
  display: block;
}
.modal-container {
  position: absolute;
  width: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.modal-container--about {
  position: fixed;
  width: 95%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);

  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.modal-image img {
  width: 100%;
  height: auto;
  padding: 40px;
}
.modal-text {
  position: absolute;
  width: 80%;
  margin: 0 10%;
  top: 575px;
  font-size: 1.25rem;
  text-align: left;
  line-height: 1.6;
  color: var(--color-font);
}
.modal-text a {
  color: var(--color-link);
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.modal-bf150pt .modal-text {
  top: 565px;
}
.modal-bf300pt .modal-text {
  top: 650px;
}
.modal-bf1000pt .modal-text {
  top: 625px;
}
.modal-bf2000pt .modal-text {
  top: 700px;
}
.modal-lt400pt .modal-text {
  top: 650px;
}

/* ===============================
 #terms
 =============================== */
#terms {
  width: 100%;
  margin: 0;
}
.terms-document {
  margin: 25px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.terms-document h3 {
  padding: 25px 0 15px;
  font-size: 2rem;
  line-height: 2;
  font-weight: 500;
}
.terms-document h4 {
  padding: 0 0 5px;
  font-weight: 600;
}
.terms-document p {
  padding: 0 0 35px;
}
.terms-document ul {
  padding: 0 25px 35px;
}
.terms-document li {
  list-style: disc;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-left: 0.3rem;
}
.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; }

.terms-document li.maru1,
.terms-document li.maru2,
.terms-document li.maru3,
.terms-document li.maru4,
.terms-document li.maru5 {
  list-style: none;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-left: 0.3rem;
}
.terms-document li.maru1::before { content: "①"; font-weight: bold; margin-left: -1.8rem; }
.terms-document li.maru2::before { content: "②"; font-weight: bold; margin-left: -1.8rem; }
.terms-document li.maru3::before { content: "③"; font-weight: bold; margin-left: -1.8rem; }
.terms-document li.maru4::before { content: "④"; font-weight: bold; margin-left: -1.8rem; }
.terms-document li.maru5::before { content: "⑤"; font-weight: bold; margin-left: -1.8rem; }

.terms-document li.kakko1,
.terms-document li.kakko2,
.terms-document li.kakko3,
.terms-document li.kakko4,
.terms-document li.kakko5 {
  list-style: none;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-left: 0.8rem;
}
.terms-document li.kakko1::before { content: "(1) "; font-weight: bold; margin-left: -2.3rem; }
.terms-document li.kakko2::before { content: "(2) "; font-weight: bold; margin-left: -2.3rem; }
.terms-document li.kakko3::before { content: "(3) "; font-weight: bold; margin-left: -2.3rem; }
.terms-document li.kakko4::before { content: "(4) "; font-weight: bold; margin-left: -2.3rem; }
.terms-document li.kakko5::before { content: "(5) "; font-weight: bold; margin-left: -2.3rem; }

/* ===============================
 #faq
 =============================== */
#faq {
  width: 100%;
  margin: 0;
  padding: 75px 0 100px;
  background-color: var(--color-white);
}
.faq-container {
  width: 650px;
  margin: 0 auto;
  padding: 0;
}
.faq-item {
  border-bottom: 2px var(--color-font) solid;
  text-align: left;
}
.faq-q {
  position: relative;
  display: grid;
  gap: 15px;
  grid-template-columns: 60px 1fr 60px;
  align-items: start;
  padding: 35px 0;
}
.faq-q h3 {
  padding: 0 5px;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 500;
}
.faq-q img {
  display: block;
  width: 55px;
  height: auto;
}

.faq-p {
  display: block;
  line-height: 1;
  width: 35px;
  height: 4px;
  background: var(--color-blue);
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: 60px 0;
  cursor: pointer;
}
.faq-p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.faq-p.disp::before{
  transform: rotate(0deg);
}

.faq-a {
  position: relative;
  display: none;
  gap: 15px;
  grid-template-columns: 60px 1fr;
  align-items: start;
  padding: 35px 0;
  font-size: 1.8rem;
  border-top: 2px dashed var(--color-font);
}
.faq-a.disp {
  display: grid;
}
.faq-a img {
  display: block;
  width: 55px;
  height: auto;
}
.faq-a p {
  padding: 0 5px 25px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2;
}
.faq-a p:last-child {
  padding: 0 5px 0;
}
.faq-a a {
  color: var(--color-link);
}
.faq-a ul {
  list-style: disc;
  padding: 0 25px;
  font-weight: 200;
}

/* ===============================
 #inquiry
 =============================== */
#inquiry {
  width: 100%;
  margin: 0;
}
.inquiry-email {
  position: absolute;
  bottom: 275px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  cursor: pointer;
}
