/* 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;
}

/* Original Reset */
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

ul,
li {
  list-style: none;
}

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

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

input,
select,
button,
textarea {
  font: inherit;
}

input[type=text],
textarea {
  -webkit-appearance: none;
}

button,
input[type=button],
input[type=submit] {
  cursor: pointer;
}

body {
  color: #333;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-kerning: normal;
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}

a img {
  transition: 0.4s;
}

a img:hover {
  transition: 0.4s;
  opacity: 0.7;
}

.l-container {
  width: 100%;
  margin-bottom: 48px;
}
@media screen and (min-width: 841px) {
  .l-container {
    margin-bottom: 64px;
  }
}

.l-main .js-scroll-add-class {
  opacity: 0;
  visibility: hidden;
}
.l-main .js-scroll-add-class.is-animated {
  visibility: visible;
  -webkit-animation: scrollFadeIn 1s 1 both;
          animation: scrollFadeIn 1s 1 both;
}

@-webkit-keyframes scrollFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scrollFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-drawer {
  position: fixed;
  width: 100vw;
  height: 0;
  background-color: #FFF;
  z-index: 999999;
  transition-property: height;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  overflow-y: auto;
}
.l-drawer.is-open {
  height: 100vh;
}
.l-drawer__inner {
  color: #000;
  height: 100%;
}

@-webkit-keyframes followingFadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(64px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes followingFadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(64px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@-webkit-keyframes followingFadeOut {
  from {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(64px);
  }
}
@keyframes followingFadeOut {
  from {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(64px);
  }
}
@-webkit-keyframes pageTopFadeIn {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes pageTopFadeIn {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes pageTopFadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes pageTopFadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.l-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-block: 20px;
}
@media screen and (min-width: 841px) {
  .l-footer__sns {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.l-footer__sns-item {
  width: 34px;
}
@media screen and (min-width: 841px) {
  .l-footer__sns-item {
    width: 40px;
  }
}
.l-footer__sns-item a {
  display: inline-block;
}
.l-footer__sns-item a:hover .c-svg--facebook {
  --color1: #1877F2;
  --color2: #fff;
}
.l-footer__sns-item a:hover .c-svg--twitter {
  --color1: #1E9BF0;
  --color2: #fff;
}
.l-footer__sns-item a:hover .c-svg--x {
  opacity: 0.7;
}
.l-footer__breadcrumb {
  padding-block: 24px;
  margin-top: 48px;
}
@media screen and (min-width: 841px) {
  .l-footer__breadcrumb {
    padding-block: 16px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 841px) {
  .l-footer__pc {
    padding-top: 40px;
    padding-inline: 2%;
    display: flex;
    justify-content: space-between;
  }
}
.l-footer__container {
  background: #000;
}
.l-footer__bottom {
  display: contents;
}
.l-footer__logo {
  margin-block: 40px;
  text-align: center;
}
.l-footer__logo a {
  display: block;
}
.l-footer__logo img {
  width: 120px;
  height: auto;
}
.l-footer__logo span {
  display: none;
}
@media screen and (min-width: 841px) {
  .l-footer__logo {
    margin: 0;
    width: 160px;
    text-align: left;
  }
  .l-footer__logo img {
    width: 88px;
  }
  .l-footer__logo a span {
    display: inline-block;
    font-size: 1.2rem;
    transition: 0.4s;
    margin-left: 30px;
    margin-top: 4px;
  }
  .l-footer__logo a:hover img {
    opacity: 1;
  }
}
.l-footer__links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 841px) {
  .l-footer__links {
    margin-top: 60px;
    gap: 40px;
  }
}
.l-footer__link a {
  display: block;
  font-size: 1.1rem;
}
@media screen and (min-width: 841px) {
  .l-footer__link a {
    font-size: 1.2rem;
  }
}
.l-footer__link svg {
  width: 8px;
  height: 8px;
  vertical-align: baseline;
  margin-left: 2px;
}
@media screen and (min-width: 841px) {
  .l-footer__link svg {
    width: 10px;
    height: 10px;
    margin-left: 4px;
  }
}
.l-footer__copyright {
  padding-block: 20px 12px;
  text-align: center;
}
.l-footer__copyright-text {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: 1rem;
}
@media screen and (min-width: 841px) {
  .l-footer__copyright-text {
    font-size: 1.1rem;
  }
}
.l-footer__following-pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
}
.l-footer__following-pagetop a {
  display: block;
  width: 64px;
  height: 64px;
  background: #000;
  position: relative;
}
@media screen and (min-width: 841px) {
  .l-footer__following-pagetop a {
    width: 50px;
    height: 50px;
  }
}
.l-footer__following-pagetop a span {
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 12px;
  height: 12px;
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(225deg);
}
@media screen and (min-width: 841px) {
  .l-footer__following-pagetop a span {
    width: 10px;
    height: 10px;
    transition: all 0.3s;
  }
}
.l-footer__following-pagetop.js-pagetop {
  opacity: 0;
  visibility: hidden;
}
.l-footer__following-pagetop.js-pagetop.is-active {
  -webkit-animation: followingFadeIn 1s ease 0.5s 1 both;
          animation: followingFadeIn 1s ease 0.5s 1 both;
  z-index: 9000;
}
@media screen and (min-width: 841px) {
  .l-footer__following-pagetop.js-pagetop.is-active {
    -webkit-animation: pageTopFadeIn 1s ease 0.5s 1 both;
            animation: pageTopFadeIn 1s ease 0.5s 1 both;
  }
  .l-footer__following-pagetop.js-pagetop.is-active:hover span {
    top: calc(50% - 1px);
  }
}
.l-footer__following-pagetop.js-pagetop.is-load:not(.is-active) {
  -webkit-animation: followingFadeOut 1s ease 0.5s 1 both;
          animation: followingFadeOut 1s ease 0.5s 1 both;
}
@media screen and (min-width: 841px) {
  .l-footer__following-pagetop.js-pagetop.is-load:not(.is-active) {
    -webkit-animation: pageTopFadeOut 1s ease 0.5s 1 both;
            animation: pageTopFadeOut 1s ease 0.5s 1 both;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: padding, height;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.1);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.l-header__heading {
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  width: calc(100% - 140px);
  padding-left: 20px;
}
@media screen and (min-width: 841px) {
  .l-header__heading {
    width: calc(174px + 2%);
    padding-left: 2cqb;
  }
}
.l-header__heading img {
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: max-width;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.l-header__logo {
  display: inline-block;
  padding-right: 8px;
  margin-right: 4px;
}
.l-header__logo img {
  max-width: inherit;
  height: 30px;
}
@media screen and (min-width: 385px) {
  .l-header__logo img {
    height: 35px;
  }
}
@media screen and (min-width: 841px) {
  .l-header__logo img {
    width: 92px;
    height: auto;
  }
}
.l-header__recruit {
  color: #555555;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  background-color: #F1F4F7;
  border-radius: 100vh;
}
@media screen and (min-width: 841px) {
  .l-header__flex-pc {
    width: calc(100% - (174px + 2%));
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-left: 12px;
  }
}
.l-header__menus {
  display: none;
}
@media screen and (min-width: 841px) {
  .l-header__menus {
    display: block;
    height: 100%;
  }
}
.l-header__menus-buttons {
  display: none;
}
@media screen and (min-width: 841px) {
  .l-header__menus-buttons {
    display: block;
    height: 100%;
  }
}
.l-header__trigger {
  width: 120px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 385px) {
  .l-header__trigger {
    width: 180px;
  }
}
@media screen and (min-width: 841px) {
  .l-header__trigger {
    display: none;
  }
}

.u-d-block {
  display: block;
}
.u-d-block--sp {
  display: none;
}
@media screen and (max-width: 384px) {
  .u-d-block--sp {
    display: block;
  }
}
.u-d-block--tb {
  display: none;
}
@media screen and (min-width: 385px) {
  .u-d-block--tb {
    display: block;
  }
}
.u-d-block--pc {
  display: none;
}
@media screen and (min-width: 841px) {
  .u-d-block--pc {
    display: block;
  }
}
.u-d-none {
  display: none;
}
.u-d-none--sp {
  display: block;
}
@media screen and (max-width: 384px) {
  .u-d-none--sp {
    display: none;
  }
}
.u-d-none--tb {
  display: block;
}
@media screen and (min-width: 385px) {
  .u-d-none--tb {
    display: none;
  }
}
.u-d-none--pc {
  display: block;
}
@media screen and (min-width: 841px) {
  .u-d-none--pc {
    display: none;
  }
}

.u-hide-sp {
  display: none;
}
@media screen and (min-width: 841px) {
  .u-hide-sp {
    display: block;
  }
}

@media screen and (min-width: 841px) {
  .u-hide-pc {
    display: none;
  }
}

.u-m-0 {
  margin: 0 !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-mr-4 {
  margin-right: 4px !important;
}

.u-ml-4 {
  margin-left: 4px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-mt-12 {
  margin-top: 12px !important;
}

.u-mb-12 {
  margin-bottom: 12px !important;
}

.u-mr-12 {
  margin-right: 12px !important;
}

.u-ml-12 {
  margin-left: 12px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-mt-28 {
  margin-top: 28px !important;
}

.u-mb-28 {
  margin-bottom: 28px !important;
}

.u-mr-28 {
  margin-right: 28px !important;
}

.u-ml-28 {
  margin-left: 28px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mt-36 {
  margin-top: 36px !important;
}

.u-mb-36 {
  margin-bottom: 36px !important;
}

.u-mr-36 {
  margin-right: 36px !important;
}

.u-ml-36 {
  margin-left: 36px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-mt-44 {
  margin-top: 44px !important;
}

.u-mb-44 {
  margin-bottom: 44px !important;
}

.u-mr-44 {
  margin-right: 44px !important;
}

.u-ml-44 {
  margin-left: 44px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-mt-52 {
  margin-top: 52px !important;
}

.u-mb-52 {
  margin-bottom: 52px !important;
}

.u-mr-52 {
  margin-right: 52px !important;
}

.u-ml-52 {
  margin-left: 52px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mr-60 {
  margin-right: 60px !important;
}

.u-ml-60 {
  margin-left: 60px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

.u-mt-68 {
  margin-top: 68px !important;
}

.u-mb-68 {
  margin-bottom: 68px !important;
}

.u-mr-68 {
  margin-right: 68px !important;
}

.u-ml-68 {
  margin-left: 68px !important;
}

.u-mt-72 {
  margin-top: 72px !important;
}

.u-mb-72 {
  margin-bottom: 72px !important;
}

.u-mr-72 {
  margin-right: 72px !important;
}

.u-ml-72 {
  margin-left: 72px !important;
}

.u-mt-76 {
  margin-top: 76px !important;
}

.u-mb-76 {
  margin-bottom: 76px !important;
}

.u-mr-76 {
  margin-right: 76px !important;
}

.u-ml-76 {
  margin-left: 76px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

@media screen and (min-width: 841px) {
  .u-mt-0--pc {
    margin-top: 0px !important;
  }
  .u-mb-0--pc {
    margin-bottom: 0px !important;
  }
  .u-mr-0--pc {
    margin-right: 0px !important;
  }
  .u-ml-0--pc {
    margin-left: 0px !important;
  }
  .u-mt-4--pc {
    margin-top: 4px !important;
  }
  .u-mb-4--pc {
    margin-bottom: 4px !important;
  }
  .u-mr-4--pc {
    margin-right: 4px !important;
  }
  .u-ml-4--pc {
    margin-left: 4px !important;
  }
  .u-mt-8--pc {
    margin-top: 8px !important;
  }
  .u-mb-8--pc {
    margin-bottom: 8px !important;
  }
  .u-mr-8--pc {
    margin-right: 8px !important;
  }
  .u-ml-8--pc {
    margin-left: 8px !important;
  }
  .u-mt-12--pc {
    margin-top: 12px !important;
  }
  .u-mb-12--pc {
    margin-bottom: 12px !important;
  }
  .u-mr-12--pc {
    margin-right: 12px !important;
  }
  .u-ml-12--pc {
    margin-left: 12px !important;
  }
  .u-mt-16--pc {
    margin-top: 16px !important;
  }
  .u-mb-16--pc {
    margin-bottom: 16px !important;
  }
  .u-mr-16--pc {
    margin-right: 16px !important;
  }
  .u-ml-16--pc {
    margin-left: 16px !important;
  }
  .u-mt-20--pc {
    margin-top: 20px !important;
  }
  .u-mb-20--pc {
    margin-bottom: 20px !important;
  }
  .u-mr-20--pc {
    margin-right: 20px !important;
  }
  .u-ml-20--pc {
    margin-left: 20px !important;
  }
  .u-mt-24--pc {
    margin-top: 24px !important;
  }
  .u-mb-24--pc {
    margin-bottom: 24px !important;
  }
  .u-mr-24--pc {
    margin-right: 24px !important;
  }
  .u-ml-24--pc {
    margin-left: 24px !important;
  }
  .u-mt-28--pc {
    margin-top: 28px !important;
  }
  .u-mb-28--pc {
    margin-bottom: 28px !important;
  }
  .u-mr-28--pc {
    margin-right: 28px !important;
  }
  .u-ml-28--pc {
    margin-left: 28px !important;
  }
  .u-mt-32--pc {
    margin-top: 32px !important;
  }
  .u-mb-32--pc {
    margin-bottom: 32px !important;
  }
  .u-mr-32--pc {
    margin-right: 32px !important;
  }
  .u-ml-32--pc {
    margin-left: 32px !important;
  }
  .u-mt-36--pc {
    margin-top: 36px !important;
  }
  .u-mb-36--pc {
    margin-bottom: 36px !important;
  }
  .u-mr-36--pc {
    margin-right: 36px !important;
  }
  .u-ml-36--pc {
    margin-left: 36px !important;
  }
  .u-mt-40--pc {
    margin-top: 40px !important;
  }
  .u-mb-40--pc {
    margin-bottom: 40px !important;
  }
  .u-mr-40--pc {
    margin-right: 40px !important;
  }
  .u-ml-40--pc {
    margin-left: 40px !important;
  }
  .u-mt-44--pc {
    margin-top: 44px !important;
  }
  .u-mb-44--pc {
    margin-bottom: 44px !important;
  }
  .u-mr-44--pc {
    margin-right: 44px !important;
  }
  .u-ml-44--pc {
    margin-left: 44px !important;
  }
  .u-mt-48--pc {
    margin-top: 48px !important;
  }
  .u-mb-48--pc {
    margin-bottom: 48px !important;
  }
  .u-mr-48--pc {
    margin-right: 48px !important;
  }
  .u-ml-48--pc {
    margin-left: 48px !important;
  }
  .u-mt-52--pc {
    margin-top: 52px !important;
  }
  .u-mb-52--pc {
    margin-bottom: 52px !important;
  }
  .u-mr-52--pc {
    margin-right: 52px !important;
  }
  .u-ml-52--pc {
    margin-left: 52px !important;
  }
  .u-mt-56--pc {
    margin-top: 56px !important;
  }
  .u-mb-56--pc {
    margin-bottom: 56px !important;
  }
  .u-mr-56--pc {
    margin-right: 56px !important;
  }
  .u-ml-56--pc {
    margin-left: 56px !important;
  }
  .u-mt-60--pc {
    margin-top: 60px !important;
  }
  .u-mb-60--pc {
    margin-bottom: 60px !important;
  }
  .u-mr-60--pc {
    margin-right: 60px !important;
  }
  .u-ml-60--pc {
    margin-left: 60px !important;
  }
  .u-mt-64--pc {
    margin-top: 64px !important;
  }
  .u-mb-64--pc {
    margin-bottom: 64px !important;
  }
  .u-mr-64--pc {
    margin-right: 64px !important;
  }
  .u-ml-64--pc {
    margin-left: 64px !important;
  }
  .u-mt-68--pc {
    margin-top: 68px !important;
  }
  .u-mb-68--pc {
    margin-bottom: 68px !important;
  }
  .u-mr-68--pc {
    margin-right: 68px !important;
  }
  .u-ml-68--pc {
    margin-left: 68px !important;
  }
  .u-mt-72--pc {
    margin-top: 72px !important;
  }
  .u-mb-72--pc {
    margin-bottom: 72px !important;
  }
  .u-mr-72--pc {
    margin-right: 72px !important;
  }
  .u-ml-72--pc {
    margin-left: 72px !important;
  }
  .u-mt-76--pc {
    margin-top: 76px !important;
  }
  .u-mb-76--pc {
    margin-bottom: 76px !important;
  }
  .u-mr-76--pc {
    margin-right: 76px !important;
  }
  .u-ml-76--pc {
    margin-left: 76px !important;
  }
  .u-mt-80--pc {
    margin-top: 80px !important;
  }
  .u-mb-80--pc {
    margin-bottom: 80px !important;
  }
  .u-mr-80--pc {
    margin-right: 80px !important;
  }
  .u-ml-80--pc {
    margin-left: 80px !important;
  }
}
.u-p-0 {
  padding: 0 !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-pt-4 {
  padding-top: 4px !important;
}

.u-pb-4 {
  padding-bottom: 4px !important;
}

.u-pr-4 {
  padding-right: 4px !important;
}

.u-pl-4 {
  padding-left: 4px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pt-12 {
  padding-top: 12px !important;
}

.u-pb-12 {
  padding-bottom: 12px !important;
}

.u-pr-12 {
  padding-right: 12px !important;
}

.u-pl-12 {
  padding-left: 12px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pt-28 {
  padding-top: 28px !important;
}

.u-pb-28 {
  padding-bottom: 28px !important;
}

.u-pr-28 {
  padding-right: 28px !important;
}

.u-pl-28 {
  padding-left: 28px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pt-36 {
  padding-top: 36px !important;
}

.u-pb-36 {
  padding-bottom: 36px !important;
}

.u-pr-36 {
  padding-right: 36px !important;
}

.u-pl-36 {
  padding-left: 36px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pt-44 {
  padding-top: 44px !important;
}

.u-pb-44 {
  padding-bottom: 44px !important;
}

.u-pr-44 {
  padding-right: 44px !important;
}

.u-pl-44 {
  padding-left: 44px !important;
}

.u-pt-48 {
  padding-top: 48px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-pt-52 {
  padding-top: 52px !important;
}

.u-pb-52 {
  padding-bottom: 52px !important;
}

.u-pr-52 {
  padding-right: 52px !important;
}

.u-pl-52 {
  padding-left: 52px !important;
}

.u-pt-56 {
  padding-top: 56px !important;
}

.u-pb-56 {
  padding-bottom: 56px !important;
}

.u-pr-56 {
  padding-right: 56px !important;
}

.u-pl-56 {
  padding-left: 56px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pr-60 {
  padding-right: 60px !important;
}

.u-pl-60 {
  padding-left: 60px !important;
}

.u-pt-64 {
  padding-top: 64px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

.u-pt-68 {
  padding-top: 68px !important;
}

.u-pb-68 {
  padding-bottom: 68px !important;
}

.u-pr-68 {
  padding-right: 68px !important;
}

.u-pl-68 {
  padding-left: 68px !important;
}

.u-pt-72 {
  padding-top: 72px !important;
}

.u-pb-72 {
  padding-bottom: 72px !important;
}

.u-pr-72 {
  padding-right: 72px !important;
}

.u-pl-72 {
  padding-left: 72px !important;
}

.u-pt-76 {
  padding-top: 76px !important;
}

.u-pb-76 {
  padding-bottom: 76px !important;
}

.u-pr-76 {
  padding-right: 76px !important;
}

.u-pl-76 {
  padding-left: 76px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

@media screen and (min-width: 841px) {
  .u-pt-0--pc {
    padding-top: 0px !important;
  }
  .u-pb-0--pc {
    padding-bottom: 0px !important;
  }
  .u-pr-0--pc {
    padding-right: 0px !important;
  }
  .u-pl-0--pc {
    padding-left: 0px !important;
  }
  .u-pt-4--pc {
    padding-top: 4px !important;
  }
  .u-pb-4--pc {
    padding-bottom: 4px !important;
  }
  .u-pr-4--pc {
    padding-right: 4px !important;
  }
  .u-pl-4--pc {
    padding-left: 4px !important;
  }
  .u-pt-8--pc {
    padding-top: 8px !important;
  }
  .u-pb-8--pc {
    padding-bottom: 8px !important;
  }
  .u-pr-8--pc {
    padding-right: 8px !important;
  }
  .u-pl-8--pc {
    padding-left: 8px !important;
  }
  .u-pt-12--pc {
    padding-top: 12px !important;
  }
  .u-pb-12--pc {
    padding-bottom: 12px !important;
  }
  .u-pr-12--pc {
    padding-right: 12px !important;
  }
  .u-pl-12--pc {
    padding-left: 12px !important;
  }
  .u-pt-16--pc {
    padding-top: 16px !important;
  }
  .u-pb-16--pc {
    padding-bottom: 16px !important;
  }
  .u-pr-16--pc {
    padding-right: 16px !important;
  }
  .u-pl-16--pc {
    padding-left: 16px !important;
  }
  .u-pt-20--pc {
    padding-top: 20px !important;
  }
  .u-pb-20--pc {
    padding-bottom: 20px !important;
  }
  .u-pr-20--pc {
    padding-right: 20px !important;
  }
  .u-pl-20--pc {
    padding-left: 20px !important;
  }
  .u-pt-24--pc {
    padding-top: 24px !important;
  }
  .u-pb-24--pc {
    padding-bottom: 24px !important;
  }
  .u-pr-24--pc {
    padding-right: 24px !important;
  }
  .u-pl-24--pc {
    padding-left: 24px !important;
  }
  .u-pt-28--pc {
    padding-top: 28px !important;
  }
  .u-pb-28--pc {
    padding-bottom: 28px !important;
  }
  .u-pr-28--pc {
    padding-right: 28px !important;
  }
  .u-pl-28--pc {
    padding-left: 28px !important;
  }
  .u-pt-32--pc {
    padding-top: 32px !important;
  }
  .u-pb-32--pc {
    padding-bottom: 32px !important;
  }
  .u-pr-32--pc {
    padding-right: 32px !important;
  }
  .u-pl-32--pc {
    padding-left: 32px !important;
  }
  .u-pt-36--pc {
    padding-top: 36px !important;
  }
  .u-pb-36--pc {
    padding-bottom: 36px !important;
  }
  .u-pr-36--pc {
    padding-right: 36px !important;
  }
  .u-pl-36--pc {
    padding-left: 36px !important;
  }
  .u-pt-40--pc {
    padding-top: 40px !important;
  }
  .u-pb-40--pc {
    padding-bottom: 40px !important;
  }
  .u-pr-40--pc {
    padding-right: 40px !important;
  }
  .u-pl-40--pc {
    padding-left: 40px !important;
  }
  .u-pt-44--pc {
    padding-top: 44px !important;
  }
  .u-pb-44--pc {
    padding-bottom: 44px !important;
  }
  .u-pr-44--pc {
    padding-right: 44px !important;
  }
  .u-pl-44--pc {
    padding-left: 44px !important;
  }
  .u-pt-48--pc {
    padding-top: 48px !important;
  }
  .u-pb-48--pc {
    padding-bottom: 48px !important;
  }
  .u-pr-48--pc {
    padding-right: 48px !important;
  }
  .u-pl-48--pc {
    padding-left: 48px !important;
  }
  .u-pt-52--pc {
    padding-top: 52px !important;
  }
  .u-pb-52--pc {
    padding-bottom: 52px !important;
  }
  .u-pr-52--pc {
    padding-right: 52px !important;
  }
  .u-pl-52--pc {
    padding-left: 52px !important;
  }
  .u-pt-56--pc {
    padding-top: 56px !important;
  }
  .u-pb-56--pc {
    padding-bottom: 56px !important;
  }
  .u-pr-56--pc {
    padding-right: 56px !important;
  }
  .u-pl-56--pc {
    padding-left: 56px !important;
  }
  .u-pt-60--pc {
    padding-top: 60px !important;
  }
  .u-pb-60--pc {
    padding-bottom: 60px !important;
  }
  .u-pr-60--pc {
    padding-right: 60px !important;
  }
  .u-pl-60--pc {
    padding-left: 60px !important;
  }
  .u-pt-64--pc {
    padding-top: 64px !important;
  }
  .u-pb-64--pc {
    padding-bottom: 64px !important;
  }
  .u-pr-64--pc {
    padding-right: 64px !important;
  }
  .u-pl-64--pc {
    padding-left: 64px !important;
  }
  .u-pt-68--pc {
    padding-top: 68px !important;
  }
  .u-pb-68--pc {
    padding-bottom: 68px !important;
  }
  .u-pr-68--pc {
    padding-right: 68px !important;
  }
  .u-pl-68--pc {
    padding-left: 68px !important;
  }
  .u-pt-72--pc {
    padding-top: 72px !important;
  }
  .u-pb-72--pc {
    padding-bottom: 72px !important;
  }
  .u-pr-72--pc {
    padding-right: 72px !important;
  }
  .u-pl-72--pc {
    padding-left: 72px !important;
  }
  .u-pt-76--pc {
    padding-top: 76px !important;
  }
  .u-pb-76--pc {
    padding-bottom: 76px !important;
  }
  .u-pr-76--pc {
    padding-right: 76px !important;
  }
  .u-pl-76--pc {
    padding-left: 76px !important;
  }
  .u-pt-80--pc {
    padding-top: 80px !important;
  }
  .u-pb-80--pc {
    padding-bottom: 80px !important;
  }
  .u-pr-80--pc {
    padding-right: 80px !important;
  }
  .u-pl-80--pc {
    padding-left: 80px !important;
  }
}
.u-pt-120 {
  padding-top: 120px !important;
}

.u-pt-140 {
  padding-top: 140px !important;
}

.u-pt-148 {
  padding-top: 148px !important;
}

.u-pt-160 {
  padding-top: 160px !important;
}

@media screen and (min-width: 841px) {
  .u-pt-120--pc {
    padding-top: 120px !important;
  }
  .u-pt-140--pc {
    padding-top: 140px !important;
  }
  .u-pt-148--pc {
    padding-top: 148px !important;
  }
  .u-pt-160--pc {
    padding-top: 160px !important;
  }
}
.u-pb-120 {
  padding-bottom: 120px !important;
}

.u-pb-140 {
  padding-bottom: 140px !important;
}

.u-pb-148 {
  padding-bottom: 148px !important;
}

.u-pb-160 {
  padding-bottom: 160px !important;
}

@media screen and (min-width: 841px) {
  .u-pb-120--pc {
    padding-bottom: 120px !important;
  }
  .u-pb-140--pc {
    padding-bottom: 140px !important;
  }
  .u-pb-148--pc {
    padding-bottom: 148px !important;
  }
  .u-pb-160--pc {
    padding-bottom: 160px !important;
  }
}
.u-p-inline-0 {
  padding-inline: 0 !important;
}
.u-p-inline-20 {
  padding-inline: 20px !important;
}

.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
@media screen and (min-width: 841px) {
  .u-text-left--pc {
    text-align: left;
  }
  .u-text-center--pc {
    text-align: center;
  }
  .u-text-right--pc {
    text-align: right;
  }
}

.lp-container__bg {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100vh;
  justify-content: flex-end;
  left: 0;
  margin: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: -1;
  max-width: 100vw;
}
.lp-container__bg::before {
  background-image: url(../img/lp/body_bg_pc.png);
  background-position: top center;
  background-size: cover;
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: inherit;
  width: 100%;
  z-index: -2;
}
.lp-container__inner {
  padding: 0;
  width: 1280px;
  height: auto;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
}
.lp-container__left {
  margin: 0;
  padding: 40px 20px 0 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: calc(60% - 192px);
  max-width: 100%;
  height: 100vh;
}
@media screen and (max-width: 840px) {
  .lp-container__left {
    display: none;
  }
}
.lp-container__main {
  flex: none;
  width: 384px;
  height: auto;
  background: #ffffff;
  margin: 0;
  padding: 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 540px) {
  .lp-container__main {
    flex: none;
    margin: 0;
    width: 100vw;
    max-width: 100vw;
  }
}
.lp-container__right {
  margin: 0;
  padding: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: calc(40% - 192px);
  max-width: 100%;
  height: 100vh;
}
@media screen and (max-width: 540px) {
  .lp-container__right {
    display: none;
  }
}

.lp-header {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 8px;
}
.lp-header__logo {
  width: 38%;
  max-width: 280px;
  margin-inline: auto;
}
.lp-header__logo img {
  max-width: 100%;
}

.lp-footer {
  background: #000;
  color: #FFF;
  padding-top: 40px;
  margin-bottom: 92px;
}
.lp-footer__logo {
  width: 52%;
  max-width: 52%;
  margin-inline: auto;
  height: auto;
  text-align: center;
}
.lp-footer__nav {
  padding-inline: 30px;
  margin-block: 40px;
}
.lp-footer__menus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}
.lp-footer__menu a {
  color: #FFF;
  font-size: 1.3rem;
  line-height: 1.4;
}
.lp-footer__copyright {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 8px;
}

.lp-following__button {
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 12px 0;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
.lp-following__button img {
  max-width: 312px;
  height: auto;
}
.lp-following__button.js-following-button {
  opacity: 0;
  visibility: hidden;
}
.lp-following__button.js-following-button.is-active {
  -webkit-animation: followingFadeIn 1s ease 0.5s 1 both;
          animation: followingFadeIn 1s ease 0.5s 1 both;
}
.lp-following__button.js-following-button.is-load:not(.is-active) {
  -webkit-animation: followingFadeOut 1s ease 0.5s 1 both;
          animation: followingFadeOut 1s ease 0.5s 1 both;
}

@keyframes followingFadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes followingFadeOut {
  from {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
  }
}
.lp-info__logo {
  margin-bottom: 40px;
}
.lp-info__logo img {
  width: 185px;
  height: auto;
}
.lp-info__items {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1160px) {
  .lp-info__items {
    display: flex;
    gap: 8px;
  }
}
.lp-info__items li {
  color: #fff;
  background-color: #ffabab;
  font-size: 3rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}
@media screen and (max-width: 1160px) {
  .lp-info__items li {
    font-size: 1.8rem;
    padding: 4px 6px;
  }
}
.lp-info__title {
  color: #FF5252;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media screen and (max-width: 1160px) {
  .lp-info__title {
    font-size: 2.5rem;
  }
}
.lp-info__title span {
  font-size: 4rem;
}
@media screen and (max-width: 1160px) {
  .lp-info__title span {
    font-size: 3.2rem;
  }
}
.lp-info__subtitle span {
  background: #fff;
  color: #000;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 2px 4px;
}
@media screen and (max-width: 1160px) {
  .lp-info__subtitle span {
    font-size: 1.6rem;
  }
}
.lp-info__subtitle span + span {
  margin-top: 16px;
}
@media screen and (max-width: 1160px) {
  .lp-info__subtitle span + span {
    margin-top: 8px;
  }
}
.lp-info__button {
  width: 100%;
  max-width: 390px;
  margin-top: 40px;
}

.lp-catch {
  background-color: #ffe0e0;
  padding: 20px;
}
.lp-catch__inner {
  background-color: rgba(255, 255, 255, 0.8);
  border: 3px solid #FF5252;
  padding: 20px 10px;
  text-align: center;
  position: relative;
}
.lp-catch__now {
  background-color: #FF5252;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  display: inline-block;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.lp-catch__now::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 16px solid #FF5252;
}
.lp-catch__title {
  color: #FF5252;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.lp-catch__title span {
  font-size: 3.2rem;
}
.lp-catch__button {
  margin-top: 16px;
}
.lp-catch__button a {
  display: block;
  width: 100%;
}
.lp-catch__button img {
  width: 100%;
}
.lp-catch__notes {
  font-size: 1.2rem;
}

.lp-faq {
  background-image: url(../img/lp/faq_bg.png);
  background-position: top left;
  background-size: cover;
  padding: 40px 10px;
}
.lp-faq__title {
  color: #FF5252;
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
}

.c-accordion {
  border-radius: 4px;
  transition: background-color 1s, border-color 1s;
  border-radius: 4px;
  border: 2px solid #FF6B6B;
  background: #FFF;
}
.c-accordion + .c-accordion {
  margin-top: 8px;
}
.c-accordion__heading {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  padding: 8px 24px 8px 36px;
  position: relative;
  transition: background-color 0.4s;
}
.c-accordion__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #FF6B6B;
  display: block;
  width: 28px;
  height: 100%;
}
.c-accordion__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjciIGhlaWdodD0iMjkiIHZpZXdCb3g9IjAgMCAyNyAyOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjEuNDk5OCAyLjgzMkwyMy4yOTE4IDQuNjI0QzI1LjE0NzggNi40OCAyNS45NDc4IDkuMjk2IDI1Ljk0NzggMTMuMTA0VjE3LjEzNkMyNS45NDc4IDE4LjM1MiAyNS45MTU4IDE5LjcyOCAyNS41NjM4IDIxLjA0TDI2LjA3NTggMjEuNTg0QzI2LjU1NTggMjIuMDk2IDI3LjAwMzggMjIuODMyIDI3LjAwMzggMjMuODI0QzI3LjAwMzggMjUuNjE2IDI1LjkxNTggMjcuMDg4IDI0LjAyNzggMjcuMDg4QzIzLjU0NzggMjcuMDg4IDIyLjY4MzggMjYuOTI4IDIyLjE3MTggMjYuNTEyTDE5LjMyMzggMjQuMzA0VjI0LjU5MkMxOS4zMjM4IDI2LjMyIDE4LjIwMzggMjguMTQ0IDE2LjM0NzggMjguMTQ0SDEzLjQwMzhDOS40OTk3NSAyOC4xNDQgNi43MTU3NSAyNy4zNDQgNC45MjM3NSAyNS41NTJMMy4wOTk3NSAyMy43MjhDMS4zMDc3NSAyMS45MzYgMC41MDc3NSAxOS4yMTYgMC41MDc3NSAxNS4zMTJWMTEuMjhDMC41MDc3NSAzLjUwNCAzLjgzNTc1IDAuMjcxOTk5IDExLjYxMTggMC4yNzE5OTlIMTUuMDY3OEMxNy45MTU4IDAuNDk1OTk4IDIwLjA1OTggMS4zMjggMjEuNDk5OCAyLjgzMlpNMTEuODM1OCAxOS4yMTZIMTIuNjk5OEwxMS41Nzk4IDE3Ljk2OEMxMC42MTk4IDE3LjIzMiAxMC4xMzk4IDE2LjE3NiAxMC4xMzk4IDE1LjA1NkMxMC4xMzk4IDEzLjM2IDExLjE5NTggMTEuOTUyIDEyLjk4NzggMTEuOTUyQzEzLjY5MTggMTEuOTUyIDE0LjM2MzggMTIuMTc2IDE0Ljg3NTggMTIuNTkyTDE2LjkyMzcgMTQuMDk2VjEwLjcwNEMxNi45MjM3IDkuNTUyIDE2LjUzOTggOS4yOTYgMTUuMzg3OCA5LjI5NkgxMy40MDM4QzEwLjMzMTggOS4yOTYgOS40Njc3NSAxMC4wMzIgOS40Njc3NSAxMy4xNjhWMTcuMTM2QzkuNDY3NzUgMTkuMTg0IDkuODE5NzUgMTkuMjE2IDExLjgzNTggMTkuMjE2Wk0yMy44MDM4IDIyLjAzMkMyMy44MDM4IDIxLjQ1NiAyMy41NDc4IDIwLjk0NCAyMy4wNjc4IDIwLjU2TDIyLjEwNzggMTkuODI0QzIyLjUyMzggMTguNzA0IDIyLjc0NzggMTcuMjk2IDIyLjc0NzggMTUuMzEyVjExLjI4QzIyLjc0NzggNC41NiAyMC4yNTE4IDEuODQgMTMuNjU5OCAxLjY4VjEuNjQ4SDExLjYxMThDNC41MDc3NSAxLjY0OCAxLjkxNTc1IDQuMzM2IDEuOTE1NzUgMTEuMjhWMTUuMzEyQzEuOTE1NzUgMjIuMzIgNC41MDc3NSAyNC45NDQgMTEuNjExOCAyNC45NDRIMTQuNTIzOEMxNS4yOTE3IDI0Ljk0NCAxNi4xMjM4IDI0LjA0OCAxNi4xMjM4IDIyLjc2OEMxNi4xMjM4IDIxLjQ1NiAxNS4yOTE3IDIwLjU5MiAxNC41MjM4IDIwLjU5MkgxMS42MTE4QzguMDkxNzUgMjAuNTkyIDYuMjY3NzUgMTkuNTM2IDYuMjY3NzUgMTUuMzEyVjExLjM0NEM2LjI2Nzc1IDcuMTIgOC4wOTE3NSA2LjA5NiAxMS42MTE4IDYuMDk2SDEzLjAxOThDMTYuNTA3OCA2LjA5NiAxOC4zMzE4IDcuMTIgMTguMzMxOCAxMS4zNDRWMTUuMzEyQzE4LjMzMTggMTUuODU2IDE4LjI2NzggMTYuMzY4IDE4LjIwMzggMTYuODQ4TDE0LjA0MzggMTMuNjhDMTMuNzIzOCAxMy40NTYgMTMuMzcxOCAxMy4zMjggMTIuOTg3OCAxMy4zMjhDMTIuMjUxOCAxMy4zMjggMTEuNTQ3OCAxMy44NzIgMTEuNTQ3OCAxNS4wNTZDMTEuNTQ3OCAxNS45ODQgMTIuMDI3OCAxNi41MjggMTIuNDExOCAxNi44NDhMMjEuMTc5OCAyMy42QzIxLjUzMTggMjMuNzkyIDIxLjg4MzggMjMuODg4IDIyLjIzNTggMjMuODg4QzIzLjA2NzggMjMuODg4IDIzLjgwMzggMjMuMjggMjMuODAzOCAyMi4wMzJaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 18px;
  height: 20px;
}
.c-accordion__heading span {
  position: relative;
  display: block;
  width: 100%;
}
.c-accordion__heading span::before, .c-accordion__heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background: #FF5252;
  transition: 0.4s;
}
.c-accordion__heading span::after {
  top: calc(50% - 1px);
  transform: rotate(90deg);
}
.c-accordion__container {
  line-height: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0 16px 0 36px;
  transition: line-height 0.4s ease-out, opacity 0.1s linear, visibility 0.1s linear, padding-bottom 0.1s linear;
}
.c-accordion__container p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
.c-accordion.is-open .c-accordion__heading span::after {
  transform: rotate(0deg);
  transition: 0.4s;
}
.c-accordion.is-open .c-accordion__heading {
  border-bottom: 1px solid #FF6B6B;
}
.c-accordion.is-open .c-accordion__container {
  line-height: 1.6;
  height: auto;
  opacity: 1;
  visibility: visible;
  padding-block: 12px;
  position: relative;
  transition: line-height 0.4s ease-out 0.1s, opacity 0.4s linear 0.1s, visibility 0.1s linear 0s, padding-bottom 0.1s linear 0.1s;
}
.c-accordion.is-open .c-accordion__container::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 8px;
  left: 4px;
  background-color: #FF6B6B;
  border-radius: 50%;
}
.c-accordion.is-open .c-accordion__container::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 13px;
  left: 10px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMSAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTMuNjUwNiAxOC45MkwxMy4yOTA2IDE3Ljg2NEgxMC41Nzg2QzkuOTMwNjUgMTcuODY0IDkuNDI2NjUgMTcuNjI0IDkuMDY2NjUgMTcuMjY0TDguNDE4NjUgMTYuNjE2TDcuMTcwNjUgMjAuMzM2QzYuODEwNjUgMjEuNTM2IDUuNjU4NjUgMjEuODcyIDQuNDgyNjUgMjEuODcyQzMuOTMwNjUgMjEuODcyIDIuOTk0NjUgMjEuNzA0IDIuMzk0NjUgMjEuMTA0TDEuMDI2NjUgMTkuNzM2QzAuNjkwNjQ2IDE5LjQgMC40NTA2NDYgMTguOTIgMC40NTA2NDYgMTguMjQ4QzAuNDUwNjQ2IDE4LjAwOCAwLjQ5ODY0NiAxNy43NDQgMC41NDY2NDYgMTcuNDhMNS4zNzA2NSAzLjJDNS44NzQ2NSAxLjgwOCA3LjA3NDY1IDAuODQ3OTk5IDguNjEwNjUgMC44NDc5OTlIMTAuNzQ2NkMxMS42NTg2IDAuODQ3OTk5IDEyLjYxODYgMS4yNTYgMTMuMjkwNiAxLjk1MkwxNC42MzQ2IDMuMjk2QzE0Ljk5NDYgMy42MzIgMTUuMjgyNiA0LjA4OCAxNS40MjY2IDQuNTQ0TDIwLjIyNjYgMTguOEMyMC4zMjI2IDE5LjA4OCAyMC4zNDY2IDE5LjM3NiAyMC4zNDY2IDE5LjU2OEMyMC4zNDY2IDIxLjAzMiAxOS4wNzQ2IDIxLjg3MiAxNy43MDY2IDIxLjg3MkMxNi44OTA2IDIxLjg3MiAxNi4xMjI2IDIxLjc3NiAxNS41MjI2IDIxLjE3NkwxNC4xNTQ2IDE5LjgwOEMxMy45Mzg2IDE5LjU2OCAxMy43NDY2IDE5LjI4IDEzLjY1MDYgMTguOTJaTTkuODEwNjUgMTEuMzZIMTEuMjAyNkwxMC40ODI2IDkuMjk2TDkuODEwNjUgMTEuMzZaTTE3Ljk0NjYgMTguMjI0QzE3Ljk0NjYgMTguMDggMTcuOTIyNiAxNy45MzYgMTcuODc0NiAxNy43OTJMMTMuMDc0NiAzLjUxMkMxMi44MTA2IDIuNjQ4IDExLjc3ODYgMS45MDQgMTAuNzQ2NiAxLjkwNEg4LjYxMDY1QzcuNDgyNjUgMS45MDQgNi42NjY2NSAyLjY3MiA2LjM1NDY1IDMuNTM2TDEuNTU0NjUgMTcuODE2QzEuNTA2NjUgMTcuOTYgMS41MDY2NSAxOC4xMjggMS41MDY2NSAxOC4yNDhDMS41MDY2NSAxOC44OTYgMi4wMTA2NSAxOS40NzIgMy4xMTQ2NSAxOS40NzJDNC4xNDY2NSAxOS40NzIgNC42NzQ2NSAxOS4xNiA0Ljg0MjY1IDE4LjYzMkw5LjU5NDY1IDQuNzEyQzkuNjE4NjUgNC41NjggOS42OTA2NSA0LjU0NCA5LjczODY1IDQuNTQ0QzkuNzg2NjUgNC41NDQgOS44MzQ2NSA0LjU2OCA5Ljg4MjY1IDQuNzEyTDEyLjUyMjYgMTIuMjcySDkuMjEwNjVDOC42MTA2NSAxMi4yNzIgNy45Mzg2NSAxMi45MiA3LjkzODY1IDEzLjg4QzcuOTM4NjUgMTQuODg4IDguNjEwNjUgMTUuNDY0IDkuMjEwNjUgMTUuNDY0SDEzLjU3ODZMMTQuNjM0NiAxOC42MDhDMTQuODI2NiAxOS4yMDggMTUuMjgyNiAxOS40NzIgMTYuMzYyNiAxOS40NzJDMTcuMjk4NiAxOS40NzIgMTcuOTQ2NiAxOC45MiAxNy45NDY2IDE4LjIyNFoiIGZpbGw9IndoaXRlIi8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
}
.c-accordion.is-open .c-accordion__container span {
  color: #FF6B6B;
}

.lp-form {
  background-color: #F2F2F2;
  padding-bottom: 80px;
}
.lp-form__inner {
  padding-inline: 20px;
  padding-bottom: 40px;
}
.lp-form__heading {
  text-align: center;
  padding: 60px 0 40px;
}
.lp-form__title {
  color: #000;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}
.lp-form__title-small {
  color: #f06264;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  margin-top: 12px;
}
.lp-form__description {
  font-size: 1.4rem;
  margin-top: 8px;
  text-align: center;
}
.lp-form__row {
  margin-bottom: 20px;
}
.lp-form__row label {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}
.lp-form__row label span.is-required {
  background: #FF5252;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 100vh;
  margin-left: 8px;
}
.lp-form__text input, .lp-form__email input {
  border: 1px solid #9f9f9f;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.6rem;
  line-height: 1;
  padding: 4px 8px;
  width: 100%;
}
.lp-form__text input::-moz-placeholder, .lp-form__email input::-moz-placeholder {
  color: #bebebe;
}
.lp-form__text input::placeholder, .lp-form__email input::placeholder {
  color: #bebebe;
}
.lp-form__textarea textarea {
  border: 1px solid #9f9f9f;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.6rem;
  line-height: 1;
  padding: 8px;
  width: 100%;
}
.lp-form__textarea textarea::-moz-placeholder {
  color: #bebebe;
}
.lp-form__textarea textarea::placeholder {
  color: #bebebe;
}
.lp-form__policy {
  background: #fff;
  border: 1px solid #9F9F9F;
  border-radius: 4px;
  height: 200px;
  padding: 8px;
  overflow-y: scroll;
  font-size: 1.5rem;
}
.lp-form__policy-checkbox {
  text-align: center;
  margin-top: 24px;
  font-size: 1.4rem;
}
.lp-form__policy-text {
  font-size: 1.2rem;
}
.lp-form input[type=checkbox] {
  margin-right: 4px;
}
.lp-form__button {
  margin-top: 24px;
  width: 100%;
}
.lp-form__button input[type=submit] {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px;
  background-color: #FF5252;
  border: 1px solid #FF5252;
  border-radius: 4px;
  color: #fff;
}
.lp-form__button input[type=submit]:disabled {
  background-color: #F2F2F2;
  border: 1px solid #bebebe;
  color: #bebebe;
}
.lp-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  margin-top: 4px;
}

.lp-solve {
  margin-top: -80px;
  position: relative;
  z-index: -1;
}

.js-scroll-add-class {
  opacity: 0;
  visibility: hidden;
}
.js-scroll-add-class.is-animated {
  visibility: visible;
  -webkit-animation: scrollFadeIn 1s 1 both 0.2s;
          animation: scrollFadeIn 1s 1 both 0.2s;
}

@keyframes scrollFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=lp.css.map */