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

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: calc(16 / 750 * 550px);
}
@media screen and (max-width: 549px) {
  html {
    font-size: calc(16 / 750 * 100vw);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  color: #fff;
  letter-spacing: 0.1em;
}

html,
body {
  height: 100dvh;
  /* iOSでの高さズレを防ぐ */
}

main {
  overflow-x: hidden;
}

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

picture {
  vertical-align: middle;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.6;
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
  }
}
@media (hover: none) {
  a:hover {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
    cursor: default;
  }
}

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

h1,
h2,
h3,
h4,
p,
a {
  color: #fff;
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

input,
textarea,
select {
  font: inherit;
}

.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease;
  transition: opacity 0.8s ease, translate 0.8s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__fadeIn--right {
  opacity: 0;
  translate: 40px 0;
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease;
  transition: opacity 0.8s ease, translate 0.8s ease;
}
.animated__fadeIn--right.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__fadeIn--left {
  opacity: 0;
  translate: -40px 0;
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease;
  transition: opacity 0.8s ease, translate 0.8s ease;
}
.animated__fadeIn--left.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__fadeIn--static {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.animated__fadeIn--static.js-show {
  opacity: 1;
}

.animated__fadeIn--early {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
.animated__fadeIn--early.js-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.animated__fadeIn--stagger {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

.cta-btn {
  display: block;
  padding: 5rem 2.0625rem;
  text-align: center;
}
.cta-btn__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 42.5rem;
  margin: 0 auto;
  padding: 3rem 1.875rem;
  background-color: #009245;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  border-radius: 100vmax;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.cta-btn__link:hover {
  opacity: 0.85;
}
.cta-btn__link:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.cta-btn__arrow {
  margin-left: 1rem;
  display: inline-block;
  max-width: 2.3125rem;
  width: 100%;
  aspect-ratio: 37/15;
}

.img01-container {
  position: relative;
  width: 100%;
}

.cta-btn-fixed {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  width: min(550px, 100%);
  padding: 0 2.0625rem;
  text-align: center;
  pointer-events: none;
}
.cta-btn-fixed__link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 42.5rem;
  margin: 0 auto;
  padding: 4.375rem 3.75rem;
  background-color: #009245;
  color: #fff;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  border-radius: 3.75rem;
  text-decoration: none;
  text-align: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}
.cta-btn-fixed__link:hover {
  opacity: 0.85;
}
.cta-btn-fixed__link:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.cta-btn-fixed__arrow {
  position: absolute;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  max-width: 2.5rem;
  width: 100%;
  aspect-ratio: 37/15;
}

.img-with-title {
  position: relative;
  width: 100%;
}
.img-with-title__bg {
  display: block;
  width: 100%;
  height: auto;
}
.img-with-title__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 37.5rem;
  width: 100%;
  height: auto;
  z-index: 2;
}
.img-with-title__title--center {
  top: 46.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.img-with-title__title--top {
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bg {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F6F7F8;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main__container {
  position: relative;
  z-index: 1;
  width: min(550px, 100%);
  margin-inline: auto;
  background: #fff;
}
.main__container img {
  display: block;
  width: 100%;
  height: auto;
}

.white-bg-spacer {
  width: 100%;
  max-width: 34.375rem;
  margin: 0 auto;
  background-color: #fff;
  height: 3.125rem;
}

.img03-container {
  position: relative;
  width: 100%;
}

.youtube-container {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 43.75rem;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  z-index: 2;
}
.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}/*# sourceMappingURL=style.css.map */