@charset "UTF-8";
/* =========================================================
  color
========================================================= */
:root {
  /* Figma Variables */
  --white: #ffffff;
  --red: #ff1d25;
  --light-green: #cefb6c;
  --yellow: #ffff00;
  --black: #333333;
  --light-gray: #f0f0f0;
  --gray: #cfcfcf;
  --light-pink: #fff1fa;
  --light-yellow: #fffccc;
  --light-blue: #f0f9ff;
  --pink: #ed3ab7;
  --BG-01: #fffdf3;
  --dark-black: #a9a9a9;
  --green: #06c755;
  --blue: #006fee;
  /* breakpoint */
  --bp-sp: 480px;
  --bp-tab: 980px;
}

/* =========================================================
  layout
========================================================= */
main {
  overflow: hidden;
  margin-top: 64px;
}

.lp-inner {
  padding: 0 40px;
}

.mw-1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.mw-1140 {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.mw-900 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .lp-inner {
    padding: 0 16px;
  }
}
@media (hover: hover) {
  a:hover,
  button:hover {
    cursor: pointer;
  }
}
/* =========================================================
  adjust
========================================================= */
/* text-align
--------------------------------------------------------- */
.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

@media (max-width: 480px) {
  .sp-t-left {
    text-align: left;
  }
}
/* br
--------------------------------------------------------- */
.br-pc {
  display: block;
}

.br-pc-tb {
  display: block;
}

.br-tb {
  display: none;
}

.br-tb-sp {
  display: none;
}

.br-sp {
  display: none;
}

@media (max-width: 980px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: block;
  }
  .br-tb-sp {
    display: block;
  }
}
@media (max-width: 480px) {
  .br-pc-tb {
    display: none;
  }
  .br-tb {
    display: none;
  }
  .br-tb-sp {
    display: block;
  }
  .br-sp {
    display: block;
  }
}
/* grid
--------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.gap-24 {
  gap: 24px;
}
.grid.gap-32 {
  gap: 32px;
}
.grid.gap-40 {
  gap: 40px;
}
.grid.column-gap-16 {
  column-gap: 16px;
}
.grid.column-gap-24 {
  column-gap: 24px;
}
.grid.column-gap-32 {
  column-gap: 32px;
}
.grid.column-gap-40 {
  column-gap: 40px;
}
.grid.row-gap-16 {
  row-gap: 16px;
}
.grid.row-gap-24 {
  row-gap: 24px;
}
.grid.row-gap-32 {
  row-gap: 32px;
}
.grid.row-gap-40 {
  row-gap: 40px;
}
.grid.align-end {
  align-items: end;
}
.grid.sp-reverse > *:first-child {
  order: 2;
}
.grid.sp-reverse > *:last-child {
  order: 1;
}

@media (max-width: 980px) {
  .grid.tb-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.tb-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.tb-column-gap-16 {
    column-gap: 16px;
  }
  .grid.tb-column-gap-24 {
    column-gap: 24px;
  }
  .grid.tb-column-gap-32 {
    column-gap: 32px;
  }
  .grid.tb-column-gap-40 {
    column-gap: 40px;
  }
  .grid.tb-row-gap-16 {
    row-gap: 16px;
  }
  .grid.tb-row-gap-24 {
    row-gap: 24px;
  }
  .grid.tb-row-gap-32 {
    row-gap: 32px;
  }
  .grid.tb-row-gap-40 {
    row-gap: 40px;
  }
}
@media (max-width: 480px) {
  .grid.sp-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.sp-gap-0 {
    gap: 0;
  }
  .grid.sp-reverse > *:first-child {
    order: 1;
  }
  .grid.sp-reverse > *:last-child {
    order: 2;
  }
  .grid.sp-column-gap-16 {
    column-gap: 16px;
  }
  .grid.sp-column-gap-24 {
    column-gap: 24px;
  }
  .grid.sp-column-gap-32 {
    column-gap: 32px;
  }
  .grid.sp-column-gap-40 {
    column-gap: 40px;
  }
  .grid.sp-row-gap-16 {
    row-gap: 16px;
  }
  .grid.sp-row-gap-24 {
    row-gap: 24px;
  }
  .grid.sp-row-gap-32 {
    row-gap: 32px;
  }
  .grid.sp-row-gap-40 {
    row-gap: 40px;
  }
}
/* margin
--------------------------------------------------------- */
.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-56 {
  margin-top: 56px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-64 {
  margin-top: 64px;
}

.mg-auto {
  margin: 0 auto;
}

img:has(.mg-auto) {
  display: inline-block;
}

@media (max-width: 980px) {
  .tb-mt-4 {
    margin-top: 4px;
  }
  .tb-mt-8 {
    margin-top: 8px;
  }
  .tb-mt-12 {
    margin-top: 12px;
  }
  .tb-mt-16 {
    margin-top: 16px;
  }
  .tb-mt-24 {
    margin-top: 24px;
  }
  .tb-mt-32 {
    margin-top: 32px;
  }
  .tb-mt-40 {
    margin-top: 40px;
  }
  .tb-mt-56 {
    margin-top: 56px;
  }
  .tb-mt-60 {
    margin-top: 60px;
  }
  .tb-mt-64 {
    margin-top: 64px;
  }
  .tb-mg-auto {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .sp-mt-4 {
    margin-top: 4px;
  }
  .sp-mt-8 {
    margin-top: 8px;
  }
  .sp-mt-12 {
    margin-top: 12px;
  }
  .sp-mt-16 {
    margin-top: 16px;
  }
  .sp-mt-24 {
    margin-top: 24px;
  }
  .sp-mt-32 {
    margin-top: 32px;
  }
  .sp-mt-40 {
    margin-top: 40px;
  }
  .sp-mt-56 {
    margin-top: 56px;
  }
  .sp-mt-64 {
    margin-top: 64px;
  }
  .sp-mg-auto {
    margin: 0 auto;
  }
}
/* padding
--------------------------------------------------------- */
.pd-16 {
  padding: 16px;
}

.p-lr-80 {
  padding: 0 80px;
}

@media (max-width: 980px) {
  .tb-p-lr-16 {
    padding: 0 16px;
  }
}
/* deco-parts
--------------------------------------------------------- */
/* ----- 背景上下 ----- */
.deco-bg {
  position: relative;
}

.deco-bg.top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 90px;
  background: no-repeat left top/contain;
  background-image: url(../img/bg_01.png);
}

.deco-bg.type-2.top::before {
  z-index: 0;
  min-height: 110px;
  max-height: fit-content;
  background-image: url(../img/bg_03.png);
}

.deco-bg.bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100%;
  min-height: 90px;
  background: no-repeat right bottom/contain;
  background-image: url(../img/bg_02.png);
}

/* ----- テキスト背景白 ----- */
.txt-bg-white {
  z-index: 1;
  position: relative;
  padding: 24px 16px;
  width: fit-content;
  height: fit-content;
}

.txt-bg-white::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 137px;
  background: var(--white);
  filter: blur(15px);
}

@media (max-width: 480px) {
  .txt-bg-white {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
/* =========================================================
  parts
========================================================= */
.panel {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  height: 0;
}

.panel.active {
  visibility: visible;
  opacity: 1;
  height: auto;
}

/* =========================================================
  fonts
========================================================= */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/NotoSans-Thin.woff2") format("woff2"), url("../fonts/NotoSans-Thin.woff") format("woff"), url("../fonts/NotoSans-Thin.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/NotoSans-Light.woff2") format("woff2"), url("../fonts/NotoSans-Light.woff") format("woff"), url("../fonts/NotoSans-Light.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSans-Regular.woff2") format("woff2"), url("../fonts/NotoSans-Regular.woff") format("woff"), url("../fonts/NotoSans-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSans-Medium.woff2") format("woff2"), url("../fonts/NotoSans-Medium.woff") format("woff"), url("../fonts/NotoSans-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSans-Bold.woff2") format("woff2"), url("../fonts/NotoSans-Bold.woff") format("woff"), url("../fonts/NotoSans-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NotoSans-Black.woff2") format("woff2"), url("../fonts/NotoSans-Black.woff") format("woff"), url("../fonts/NotoSans-Black.otf") format("opentype");
}
@font-face {
  font-family: "Dela Gothic One";
  src: url("../fonts/DelaGothicOne-Regular.woff2") format("woff2"), url("../fonts/DelaGothicOne-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 62.5%;
  word-break: break-word;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
}

p,
a,
li,
span,
button {
  font-size: 1.6rem;
  line-height: 160%;
}

.dela-font {
  font-family: "Dela Gothic One", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fw-bold {
  font-weight: 900;
}

h3.type-1 {
  font-size: 2.4rem;
}

h3.type-1 span {
  font-size: 4.2rem;
  font-weight: bold;
  background: linear-gradient(transparent 70%, var(--light-green) 30%);
}
h3.type-1 span > span {
  color: var(--red);
}

h3.type-2 {
  font-size: 3.4rem;
}

p.deco span {
  font-size: 2.4rem;
  background: linear-gradient(transparent 70%, var(--light-green) 30%);
  font-weight: bold;
}
p.deco span > span {
  color: var(--red);
}

.bold {
  font-weight: bold;
}

@media (max-width: 980px) {
  h3.type-1 {
    font-size: 1.8rem;
  }
  h3.type-1 span {
    font-size: 3rem;
  }
  h3.type-2 {
    font-size: 2.4rem;
  }
  h4,
  p,
  a,
  li,
  span,
  button {
    font-size: 1.4rem;
  }
  p.deco span {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  h3.type-1 span {
    font-size: 2.8rem;
  }
}
/* =========================================================
  Reset
========================================================= */
html {
  margin: 0;
  padding: 0;
  height: 100%;
  height: -webkit-fill-available;
}

body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

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

dfn {
  font-style: normal;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  img {
    width: 100%;
  }
}
article > * + * {
  margin-top: 1em;
}

a {
  display: inline-block;
  text-decoration: none;
  word-break: break-word;
  color: var(--black);
}
a:focus-visible {
  outline: var(--blue) auto 1px;
}

sub {
  vertical-align: bottom;
  position: relative;
  top: 0.1rem;
}

input,
button,
textarea,
select {
  font-family: "Noto Sans JP", sans-serif;
}

[type=search]:-webkit-search-cancel-button,
[type=search]:-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=text], input[type=search] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

input[type=checkbox]:checked + label {
  background: #ff0000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

iframe {
  width: 100%;
  height: 100%;
  max-height: 100%!important;
  border: none;
  overflow-y: hidden;
}

* {
  max-height: 100000000px;
} /* Android Chrome Font Size Bug Fix */
/* アクセシビリティ */
[tabindex="-1"]:focus {
  outline: 0;
}

.text-left {
  text-align: left!important;
}
.text-center {
  text-align: center!important;
}
.text-right {
  text-align: right!important;
}