@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #222;
  word-wrap: break-word;
  line-height: 1.2;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

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

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

* {
  min-height: 0vw;
}

em {
  font-weight: bold;
}

li {
  list-style-type: none;
}

.br-sp {
  display: block;
}
@media screen and (min-width: 414px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-pc {
    display: block;
  }
}

.br-tb {
  display: block;
}
@media screen and (min-width: 1100px) {
  .br-tb {
    display: none;
  }
}

.dp-none {
  display: none;
}

.dp-inlineblock {
  display: inline-block;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.txt {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}

.note {
  font-size: clamp(0.625rem, 0.5413190824rem + 0.417101147vw, 0.875rem);
  margin-top: 40px;
  line-height: 1.6;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.left {
  text-align: left;
  margin-right: auto;
}

.right {
  text-align: right;
  margin-left: auto;
}

.btn {
  border-radius: 9999px;
}

.small {
  font-size: 0.8em;
}

.large {
  font-size: 1.25em;
}

.c-white {
  color: #fff;
}

.shadow {
  filter: drop-shadow(0px 1px 2px #333);
}

.em {
  font-weight: 900;
  font-size: 1.4em;
}

.strong {
  font-weight: 900;
}

.bold {
  font-weight: 700;
}

.big {
  font-size: 1.2em;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.green {
  color: #009F83;
}

.link {
  text-decoration: underline;
}

.site-ttl {
  font-size: 20px;
  display: inline-block;
}

.site-ttl-sub {
  font-size: 0.6em;
}

.sec {
  padding: 80px 24px;
  text-align: center;
}

.head {
  font-size: 24px;
  line-height: 1;
}

.head-sub {
  font-size: 0.6em;
}

/* header */
.header {
  position: relative;
  padding: 20px;
}

/* ハンバーガー */
.hamburger {
  width: 32px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: 0.35s;
}

/* 上の線 */
.hamburger span:nth-child(1) {
  top: 0;
}

/* 下の線 */
.hamburger span:nth-child(2) {
  bottom: 0;
}

/* 開いた時 */
.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  bottom: 0;
  transform: rotate(-45deg);
}

/* メニュー */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #fff;
  transition: 0.4s;
  z-index: 1000;
  padding-top: 120px;
}

/* 開いた状態 */
.menu.active {
  right: 0;
}

/* メニュー中身 */
.menu-item {
  list-style: none;
  padding: 0;
}

.menu-item-cont {
  margin: 25px 0;
  text-align: center;
}

.menu-item-cont a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

/* 背景スクロール停止 */
body.menu-open {
  overflow: hidden;
}

.body {
  background-color: #FFE7B4;
}

.wrap {
  height: 100vh;
  background: none;
}

.side {
  display: none;
  background-image: url(../images/back.png);
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .side {
    display: block;
    position: fixed;
    top: 0;
    width: calc((100% - 400px) / 2);
    height: 100vh;
  }
}
@media screen and (min-width: 1100px) {
  .side {
    width: calc((100% - 400px) / 2);
  }
}
.side--left {
  left: 0;
}
.side--right {
  display: none;
  right: 0;
}
@media screen and (min-width: 768px) {
  .side--right {
    display: flex;
  }
}
.side--right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.side-cont {
  display: none;
}
@media screen and (min-width: 1100px) {
  .side-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
  }
}
.side-cont--left, .side-cont--right {
  width: 50%;
  margin: 0 auto;
  text-align: left;
}
.side-cont--left img, .side-cont--right img {
  width: 100%;
}

.side-img {
  width: 50%;
  margin: 0 auto;
}

.cp-head-img {
  width: 50%;
  margin: 40px auto 0;
}

.side-cp-btn {
  width: 60%;
  margin: 10px auto 0;
}
.side-cp-btn:hover {
  transform: translateY(4px);
}

.mid {
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #fff;
  border-left: solid 1px #222;
  border-right: solid 1px #222;
}

.sec {
  padding: 50px 32px;
}

.lineup {
  background-color: #C85055;
}

.head {
  text-align: center;
  display: inline-block;
  position: relative;
  font-size: clamp(1.75rem, 1.7081595412rem + 0.2085505735vw, 1.875rem);
  color: #FFE7B4;
}
.head::before, .head::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background-color: #FFE7B4;
  top: 6px;
}
.head::before {
  left: -14px;
  transform: rotate(-16deg);
}
.head::after {
  right: -14px;
  transform: rotate(16deg);
}

.head-schedule {
  color: #C85055;
}
.head-schedule::before, .head-schedule::after {
  background-color: #C85055;
}

.head-check {
  color: #009F83;
  font-size: clamp(1.25rem, 1.2081595412rem + 0.2085505735vw, 1.375rem);
}
.head-check::before, .head-check::after {
  background-color: #009F83;
  width: 2px;
}

.head-eligible-second {
  margin-top: 40px;
}

.footer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-inner {
  width: 60%;
  margin: 0 auto;
  padding: 80px 0;
}

.footer-head {
  line-height: 1.4;
}

.footer-logo {
  margin: 50px auto 0;
}

.copyright {
  display: block;
  color: #fff;
  width: 100%;
  text-align: center;
  background-color: #C85055;
  font-size: 10px;
  padding: 10px 0;
}

.prize-list-item {
  background-color: #fff;
  padding: 20px;
  margin-top: 30px;
  border-radius: 16px;
}

.prize-list-item-ttl {
  display: grid;
  grid-template-columns: 60px auto;
  gap: 10px;
  align-items: center;
}

.prize-list-item-txt {
  font-size: 22px;
  text-align: left;
  font-weight: 600;
  color: #C85055;
}

.prize-list-item-cont {
  margin-top: 10px;
}

.schedule {
  background-color: #FFE7B4;
}

.cont-schedule {
  background-color: #fff;
  border: solid 6px #C85055;
  margin-top: 40px;
  padding: 26px 30px;
  color: #C85055;
  font-weight: bold;
  font-size: clamp(1.375rem, 1.3331595412rem + 0.2085505735vw, 1.5rem);
  border-radius: 16px;
  position: relative;
}
.cont-schedule::before {
  position: absolute;
  content: "";
  width: 66px;
  height: 66px;
  background-image: url(../images/part1.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: -30px;
  left: -16px;
}
.cont-schedule-next::before {
  background-image: url(../images/part2.png);
}

.cont-schedule-em {
  font-size: 1.6em;
}

.eligible {
  background-color: #C85055;
}

.txt-eligible {
  font-size: clamp(0.875rem, 0.8331595412rem + 0.2085505735vw, 1rem);
  text-align: left;
  color: #FFE7B4;
}

.note {
  font-size: clamp(0.75rem, 0.7081595412rem + 0.2085505735vw, 0.875rem);
}

.cont-enquete {
  text-align: center;
}

.mask-wrap {
  width: 100%;
  aspect-ratio: 440/400; /* 元画像比率に近い */
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 375px) {
  .mask-wrap {
    aspect-ratio: auto;
    padding-bottom: 20px;
  }
}
.circle {
  width: 140%;
  aspect-ratio: 1/1;
  background: #a9444a;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -55%;
  transform: translateX(-50%);
}

.img-enquete {
  width: 152px;
  position: relative;
  z-index: 100;
}

.head-enquete {
  font-size: clamp(1.375rem, 1.3331595412rem + 0.2085505735vw, 1.5rem);
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}

.btn-enquete {
  display: inline-block;
  margin-top: 20px;
  background-color: #FF7312;
  width: 90%;
  color: #FFE7B4;
  padding: 10px 40px 10px 26px;
  border-radius: 1000px;
  border: solid #FFE7B4 4px;
  font-size: clamp(1.125rem, 1.0831595412rem + 0.2085505735vw, 1.25rem);
  position: relative;
}
.btn-enquete::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
}
.btn-enquete:hover {
  transform: translateY(4px);
}

.btn-check {
  margin-top: 20px;
}
.btn-check:hover {
  opacity: 0.8;
}

.kiyaku {
  background-color: #FFE7B4;
  color: #C85055;
}

.kiyaku-ttl {
  border-bottom: solid #C85055 2px;
  padding-bottom: 10px;
  font-size: clamp(1.25rem, 1.2081595412rem + 0.2085505735vw, 1.375rem);
}
.kiyaku-ttl-info {
  margin-top: 40px;
}

.kiyaku-txt {
  font-size: 12px;
  text-align: left;
  line-height: 2;
  margin-top: 20px;
}

.info-kiyaku-item {
  text-indent: -1em;
  padding-left: 1em;
}

.footer {
  background-color: #C85055;
}

.footer-link {
  color: #FFE7B4;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
}

.footer-link-txt {
  text-decoration: underline;
}
.footer-link-txt:hover {
  text-decoration: none;
}

.floating-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-banner.is-active {
  opacity: 1;
  visibility: visible;
}

.floating-banner img {
  width: 100%;
  height: auto;
  display: block;
}/*# sourceMappingURL=style.css.map */