@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    background-attachment: initial;
    scroll-behavior: auto;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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 {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

iframe,
img,
input,
select,
textarea {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

ol, ul {
  list-style: none;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

button {
  border-radius: 0;
  text-transform: none;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

:root {
  --f: 1px;
  --w: 1px;
}
@media screen and (max-width: 960px) {
  :root {
    --f: 0.16vw;
    --w: 0.104167vw;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

body {
  font-size: calc(var(--f) * 18);
  line-height: 1.75;
  position: relative;
  z-index: 10;
  color: #000;
}
@media screen and (max-width: 960px) {
  body {
    font-size: calc(var(--f) * 18);
  }
}
body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/lp/bg.png) center/cover;
}

h1, h2, h3, h4, h5, h6, b, strong, dt, th {
  font-weight: 500;
}

br.sp {
  display: none;
}

@media screen and (max-width: 960px) {
  br.pc {
    display: none;
  }
  br.sp {
    display: inline;
  }
}
span.nl {
  display: inline-block;
}

.footer__container {
  width: calc(var(--w) * 1440);
  max-width: 100%;
  height: calc(var(--w) * 120);
  padding: calc(var(--w) * 30) 0;
  margin: 0 auto;
  color: #fff;
  background: #000;
}
.footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(var(--w) * 20);
}
.footer__nav a {
  font-size: calc(var(--f) * 14);
}
.footer__copyright {
  display: block;
  margin: 1.5em 0 0;
  font-size: calc(var(--f) * 13);
  text-align: center;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  display: block;
  width: 100%;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(var(--w) * 1440);
  max-width: 100%;
  height: calc(var(--w) * 120);
  padding: 0 calc(var(--w) * 30);
  margin: 0 auto;
}
.header__logo img {
  display: block;
  width: calc(var(--w) * 290);
}
.header__cta {
  position: relative;
  display: block;
  padding: calc(var(--w) * 8) calc(var(--w) * 80) calc(var(--w) * 8) calc(var(--w) * 120);
  font-size: calc(var(--f) * 20);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#fff65f), to(#ffe400));
  background: linear-gradient(to right, #fff65f, #ffe400);
  border-radius: 999px;
}
.header__cta i {
  position: absolute;
  left: calc(var(--w) * 20);
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 100%;
  margin: auto 0;
}
@media screen and (max-width: 960px) {
  .header__container {
    height: calc(var(--w) * 160);
    padding-right: 0;
  }
  .header__logo img {
    display: block;
    width: calc(var(--w) * 350);
  }
  .header__cta {
    border-radius: 999px 0 0 999px;
    padding: calc(var(--w) * 12) calc(var(--w) * 80) calc(var(--w) * 12) calc(var(--w) * 120);
    font-size: calc(var(--f) * 24);
  }
}

.main section {
  text-align: center;
}
.main section img {
  display: inline-block;
}
.main section iframe {
  width: calc(var(--w) * 700);
  aspect-ratio: 560/315;
  margin: calc(var(--w) * 70) auto;
}
@media screen and (max-width: 960px) {
  .main section iframe {
    width: 100%;
    margin-top: 0;
    margin-bottom: calc(var(--w) * 180);
  }
}

.price {
  text-align: center;
}
.price img {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 960.02px) {
  .price img {
    width: 600px;
  }
}

.notice {
  padding: calc(var(--w) * 80) 0;
  background: #fff;
}
.notice__container {
  text-align: center;
}
.notice__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 0.5em;
  margin: 0 0 1em;
  font-size: calc(var(--f) * 20);
  font-weight: 700;
}
.notice__head::before, .notice__head::after {
  content: "";
  width: 1.5em;
  height: 1px;
  background: #000;
}
.notice__list {
  display: inline-block;
}
.notice__list li {
  padding: 0 0 0.25em 1.05em;
  font-size: calc(var(--f) * 16);
  text-indent: -1.05em;
  text-align: left;
}