@charset "UTF-8";
/* --------------------------------------
　　案件ごとに編集　▼ ここから ▼
-------------------------------------- */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

html {
  -webkit-tap-highlight-color: transparent;
  font-size: 10px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 900px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #191919;
  background-color: #fff;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type="checkbox"] {
  display: none;
}

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

select::-ms-expand {
  display: none;
}

input[type="radio"] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

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

canvas {
  display: block;
}

.column {
  display: flex;
}

a {
  transition: all 0.3s;
}

.grecaptcha-badge {
  display: none;
}

.contents__inner {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1440px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contents__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.pageContainer {
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .pageContainer {
    margin: 54px auto 0;
  }
}

.pageMain {
  width: 37.5rem;
  margin: 0 auto;
  background-color: #fcfcf7;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .pageMain {
    width: 100%;
    padding-bottom: 10rem;
  }
}

.pageSidebar {
  position: fixed;
  z-index: 10;
  width: calc(50% - 18.75rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .pageSidebar {
    display: none;
  }
}

.pageSidebar--left {
  top: 0;
  left: 0;
}

.pageSidebar--right {
  top: 0;
  right: 0;
}

.pageBg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .pageBg {
    display: none;
  }
}
.pageBg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blkNavButton {
  max-width: 24rem;
  width: 100%;
  background-color: #fff;
  border: 0.2rem solid #e60000;
  border-radius: 1.6rem;
  overflow: hidden;
}

.blkNavButton__item:not(:first-child) {
  border-top: 0.1rem solid #e60000;
}

.buttonSideNav {
  display: block;
  width: 100%;
}
.buttonSideNav:hover {
  background-color: #e60000;
}
.buttonSideNav:hover .buttonSideNav__text {
  color: #fff;
}
.buttonSideNav:hover .buttonSideNav__text::after {
  background-image: url(/company/lp/general/lp03/img/arrow_02.webp);
}

.buttonSideNav__inner {
  padding: 2.1rem 1.8rem;
  width: 100%;
  display: block;
}

.buttonSideNav__text {
  color: #e60000;
  text-align: center;
  width: 100%;
  display: block;
  /* fw-700（Bold）/fs-m */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.05em;
  padding-right: 2.2rem;
  position: relative;
}
.buttonSideNav__text::after {
  content: "";
  display: block;
  background-image: url(/company/lp/general/lp03/img/arrow_01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
  top: 50%;
}

.blkSideBanner {
  max-width: 24rem;
  width: 100%;
  background-color: #fff;
  border: 0.2rem solid #e60000;
  border-radius: 1.6rem;
  overflow: hidden;
}

.blkSideBanner__inner {
  padding: 2.9rem 2rem;
}

.blkSideBanner__title--small {
  color: #e60000;
  text-align: center;
  /* fw-700（Bold）/fs-s */
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 19.6px */
  letter-spacing: 0.05em;
  display: block;
}

.blkSideBanner__title--large {
  color: #333;
  text-align: center;
  /* fw-700（Bold）/fs-m */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 19.6px */
  letter-spacing: 0.05em;
  display: block;
}

.blkSideBanner__link {
  display: block;
  margin-top: 1.6rem;
  position: relative;
}
.blkSideBanner__link--before,
.blkSideBanner__link--after {
  transition: all 0.3s;
}
.blkSideBanner__link--before {
  position: relative;
  z-index: 10;
}
.blkSideBanner__link--after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.blkSideBanner__link:hover .blkSideBanner__link--before {
  opacity: 0;
}

.contents__inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.secFv__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.secFv__notice {
  margin-top: 1.6rem;
}

.textNotice {
  color: #333;
  /* fw-500（Medium）/fs-2xs */
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4; /* 14px */
  letter-spacing: 0.02em;
}

.textNotice--kome {
  padding-left: 1.4rem;
  position: relative;
}
.textNotice--kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.blkCvArea__inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.blkCvArea__text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.4rem;
}
.blkCvArea__text::before {
  content: "";
  display: block;
  background-image: url(/company/lp/general/lp03/img/phrease_01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
}
.blkCvArea__text::after {
  content: "";
  display: block;
  background-image: url(/company/lp/general/lp03/img/phrease_01.webp);
  transform: scaleX(-1);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 1rem;
}

.blkCvArea__text--strong {
  color: #e60000;
  /* fw-700（Bold）/fs-3l */
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3; /* 31.2px */
  letter-spacing: 0.02em;
}

.blkCvArea__text--normal {
  color: #333;
  /* fw-700（Bold）/fs-m */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.02em;
}

.blkCvArea__button {
  position: relative;
}
.blkCvArea__button:not(:first-child) {
  margin-top: 0.8rem;
}
.blkCvArea__button--before,
.blkCvArea__button--after {
  transition: all 0.3s;
}
.blkCvArea__button--before {
  position: relative;
  z-index: 10;
}
.blkCvArea__button--after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.blkCvArea__button:hover .blkCvArea__button--before {
  opacity: 0;
}

.secCost__inner {
  background-color: #e60000;
}

.secCost__title {
  color: #fff;
  text-align: center;
  /* fw-700（Bold）/fs-3l */
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3; /* 31.2px */
  letter-spacing: 0.05em;
}

.secCost__title--small {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}

.secCost__title--large {
  margin-top: 0.8rem;
  font-size: 4rem;
  line-height: 1.2; /* 48px */
  display: block;
}

.secCost__title--sup {
  font-size: 2.4rem;
}

.secCost__yen {
  margin: 4rem auto 0;
  width: 20rem;
}

.secCost__group {
  margin: 4rem auto 0;
}

.groupCost {
  padding: 2.4rem 1.6rem;
  background-color: #fff;
  border-radius: 2rem;
}

.groupCost__notice--upper {
  margin-top: 2rem;
}

.groupCost__notice--item + .groupCost__notice--item {
  margin-top: 0.4rem;
}

.textNotice--num01 {
  padding-left: 2.1rem;
  position: relative;
}
.textNotice--num01::before {
  content: "※1";
  position: absolute;
  left: 0;
  top: 0;
}

.textNotice--num02 {
  padding-left: 2.1rem;
  position: relative;
}
.textNotice--num02::before {
  content: "※2";
  position: absolute;
  left: 0;
  top: 0;
}

.textNotice--num03 {
  padding-left: 2.1rem;
  position: relative;
}
.textNotice--num03::before {
  content: "※3";
  position: absolute;
  left: 0;
  top: 0;
}

.textNotice--num04 {
  padding-left: 2.1rem;
  position: relative;
}
.textNotice--num04::before {
  content: "※4";
  position: absolute;
  left: 0;
  top: 0;
}

.textNotice--num05 {
  padding-left: 2.1rem;
  position: relative;
}
.textNotice--num05::before {
  content: "※5";
  position: absolute;
  left: 0;
  top: 0;
}

.groupCost__notice--lower {
  margin-top: 2rem;
}

.groupCost__example {
  margin-top: 2rem;
}

.boxCost__head {
  color: #a05d00;
  text-align: center;
  /* fw-700（Bold）/fs-m */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.05em;
  background-color: #fff2a7;
  border-radius: 1.6rem 1.6rem 0 0;
  padding: 1.3rem 1.6rem;
}

.boxCost__inner {
  padding: 1.6rem;
  background-color: #fcfcf7;
  border-radius: 0 0 1.6rem 1.6rem;
}

.boxCost__lead {
  color: #333;
  text-align: center;
  /* fw-700（Bold）/fs-2l */
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 28px */
  letter-spacing: 0.05em;
}

.boxCost__exampleImg {
  margin-top: 1.6rem;
}

.boxCost__notice {
  margin-top: 1rem;
}

.boxCost__notice--item + .boxCost__notice--item {
  margin-top: 0.4rem;
}

.secCost__moreover {
  margin-top: 2.4rem;
}

.secCost__nisa {
  margin-top: 2.4rem;
}

.secService__inner {
  background-color: #fff;
}

.secService__content {
  position: relative;
}

.secService__fukidashi {
  width: 10rem;
  position: absolute;
  top: -11.6rem;
  left: 0;
}

.secService__title--small {
  color: #333;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 24px */
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secService__title--small::before {
  content: "";
  display: block;
  background-image: url(/company/lp/general/lp03/img/phrease_01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.8rem;
}
.secService__title--small::after {
  content: "";
  display: block;
  background-image: url(/company/lp/general/lp03/img/phrease_01.webp);
  transform: scaleX(-1);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.8rem;
}

.secService__title--large {
  margin-top: 0.4rem;
  display: block;
  color: #e60000;
  text-align: center;
  /* fw-700（Bold）/fs-5xl */
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 48px */
  letter-spacing: 0.05em;
}

.secService__ac {
  margin-top: 4rem;
}

.acBoxService__head {
  color: #e60000;
  text-align: center;
  /* fw-700（Bold）/fs-2l */
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 28px */
  letter-spacing: 0.05em;
  border: 0.1rem solid #e60000;
  border-radius: 1rem;
  padding: 1.8rem 1.6rem;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
}
.acBoxService__head::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(/company/lp/general/lp03/img/plus_01.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1.6rem;
}
.acBoxService__head.is-active {
  opacity: 0;
  visibility: hidden;
}
.acBoxService__head:hover {
  background-color: #fee;
}

.acBoxService__content {
  padding-top: 4rem;
  margin-top: -10rem;
}

.acBoxService__item + .acBoxService__item {
  margin-top: 4rem;
}

.boxService__head {
  color: #a05d00;
  text-align: center;
  /* fw-700（Bold）/fs-m */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.05em;
  background-color: #fff2a7;
  border-radius: 1.6rem 1.6rem 0 0;
  padding: 1.3rem 1.6rem;
}

.boxService__inner {
  padding: 1.6rem;
  background-color: #fcfcf7;
  border-radius: 0 0 1.6rem 1.6rem;
}

.boxService__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem 0;
}

.boxService__lead--strong {
  display: block;
  color: #e60000;
  text-align: center;
  /* fw-700（Bold）/fs-3l */
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3; /* 31.2px */
  letter-spacing: 0.05em;
}

.boxService__lead--sup {
  font-size: 1.4rem;
}

.boxService__lead--small {
  display: block;
  color: #333;
  text-align: center;
  /* fw-700（Bold）/fs-m */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.05em;
}

.boxService__table {
  margin-top: 1.6rem;
}

.boxService__notice {
  margin-top: 1.6rem;
}

.boxService__notice--item + .boxService__notice--item {
  margin-top: 0.4rem;
}

.boxService__cost {
  margin-top: 1.6rem;
}

.boxService__link {
  margin-top: 1.6rem;
}

.buttonLink {
  color: #0870d2;
  text-align: center;
  /* fw-500（Medium）/fs-s */
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4; /* 19.6px */
  letter-spacing: 0.05em;
  text-decoration: underline;
  padding-right: 3.2rem;
  position: relative;
  text-align: center;
  display: block;
  width: max-content;
  margin-inline: auto;
}
.buttonLink::after {
  content: "";
  display: block;
  background-image: url(/company/lp/general/lp03/img/arrow_01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  transform: translateY(-50%);
  right: 0;
  top: 50%;
}
.buttonLink:hover {
  text-decoration: none;
}

.secPoint {
  margin-top: 4rem;
}

.secPoint__inner {
  background-color: #e60000;
}

.secPoint__title--small {
  display: block;
  color: #fff;
  text-align: center;
  /* fw-700（Bold）/fs-3l */
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3; /* 31.2px */
  letter-spacing: 0.05em;
}

.secPoint__title--large {
  display: block;
  margin-top: 0.4rem;
  color: #fff;
  text-align: center;
  /* fw-700（Bold）/fs-5xl */
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 48px */
  letter-spacing: 0.05em;
}

.secPoint__group {
  margin-top: 8rem;
}

.groupPoint__box + .groupPoint__box {
  margin-top: 5.6rem;
}

.boxPoint {
  position: relative;
  border-radius: 2rem;
  background: #fcfcf7;
}

.boxPoint__point {
  width: 12rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
}

.boxPoint__inner {
  padding: 5.6rem 1.6rem 3.2rem;
}

.boxPoint__title {
  text-align: center;
  line-height: 1.5;
}
.boxPoint__title:not(:first-child) {
  margin-top: 1.6rem;
}

.boxPoint__title--small {
  color: #333;
  text-align: center;
  /* fw-700（Bold）/fs-3l */
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.boxPoint__title--large {
  color: #e60000;
  text-align: center;
  /* fw-700（Bold）/fs-4xl */
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.boxPoint__title--sup {
  font-size: 1.9rem;
}

.boxPoint__img {
  margin-top: 1.6rem;
  border-radius: 1.6rem;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.05);
}

.boxPoint__notice {
  margin-top: 1.6rem;
}

.boxPoint__notice--item + .boxPoint__notice--item {
  margin-top: 0.4rem;
}

.boxPoint__moreover {
  margin-top: 1.6rem;
}

.boxPoint__link {
  margin-top: 1.6rem;
}

.secSupport {
  margin-top: 4rem;
}

.secSupport__inner {
  background-color: #fff;
}

.secSupport__title--small {
  color: #333;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 24px */
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secSupport__title--small::before {
  content: "";
  display: block;
  background-image: url(/company/lp/general/lp03/img/phrease_01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.8rem;
}
.secSupport__title--small::after {
  content: "";
  display: block;
  background-image: url(/company/lp/general/lp03/img/phrease_01.webp);
  transform: scaleX(-1);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.8rem;
}

.secSupport__title--large {
  margin-top: 0.4rem;
  display: block;
  color: #e60000;
  text-align: center;
  /* fw-700（Bold）/fs-5xl */
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 48px */
  letter-spacing: 0.05em;
}

.secSupport__group {
  margin-top: 4rem;
}

.groupSupport__box + .groupSupport__box {
  margin-top: 4rem;
}

.boxSupport__head {
  position: relative;
  z-index: 10;
  display: block;
  width: 30.9rem;
  margin: 0 auto;
}

.boxSupport__head--text {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  /* fw-700（Bold）/fs-3l */
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3; /* 31.2px */
  letter-spacing: 0.05em;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 0.9rem;
}

.boxSupport__bg {
  margin-top: -4rem;
  border-radius: 1.6rem;
  background-color: #f6f6f6;
  padding: 6.4rem 1.6rem 1.6rem;
}

.boxSupport__appeal {
  width: 24.8rem;
  margin: 0 auto;
}

.boxSupport__notice {
  text-align: center;
  margin: 1.6rem auto 0;
  width: max-content;
}

.boxSupport__kinds {
  width: 26rem;
  margin: 0 auto;
}

.secFlow__inner {
  padding-bottom: 0;
}

.secFlow__title {
  text-align: center;
}

.secFlow__title--large {
  color: #e60000;
  /* fw-700（Bold）/fs-4xl */
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3; /* 41.6px */
  letter-spacing: 0.05em;
}

.secFlow__flow {
  margin-top: 2.4rem;
}

.footer__upper {
  background-color: #444;
  padding: 2.4rem 2rem;
}

.footer__upperBox + .footer__upperBox {
  margin-top: 2.4rem;
}

.footer__title {
  color: #fff;
  /* fw-700（Bold）/fs-m */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.05em;
}

.footer__list {
  margin-top: 1rem;
}

.listFooterText {
  color: #fff;
  /* fw-500（Medium）/fs-xs */
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4; /* 16.8px */
  letter-spacing: 0.05em;
}

.listFooterText__item {
  position: relative;
  padding-left: 1.6rem;
}
.listFooterText__item::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.4rem;
  background-color: #fff;
  position: absolute;
  left: 0.4rem;
  top: 0.8rem;
}

.listFooterText__link {
  text-decoration: underline;
}
.listFooterText__link:hover {
  text-decoration: none;
}

.footer__lower {
  background-color: #777;
  padding: 2.4rem 2rem;
}

.footer__lowerBox + .footer__lowerBox {
  margin-top: 2.4rem;
}

.footer__content {
  margin-top: 1rem;
}

.footer__text {
  color: #fff;
  /* fw-500（Medium）/fs-xs */
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4; /* 16.8px */
  letter-spacing: 0.05em;
}

.footer__copyright {
  background-color: #f2f2f2;
  padding: 1rem 0;
  display: block;
  color: #5a5a5a;
  text-align: center;
  /* fw-500（Medium）/fs-2xs */
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4; /* 14px */
  letter-spacing: 0.05em;
}

.blkFootArea {
  display: none;
}
@media screen and (max-width: 768px) {
  .blkFootArea {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.6rem);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s ease;
    pointer-events: none;
  }
  .blkFootArea.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.blkFootArea__inner {
  padding: 1.8rem 2rem;
  background-color: #fff;
}

.blkToTop {
  width: 5.6rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  transition: all 0.3s;
}
.blkToTop:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .blkToTop {
    width: 4.8rem;
    bottom: 10.8rem;
    right: 1rem;
  }
}

.titleTopBlogSec {
  color: #191919;
  font-family: "Jost", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2; /* 116.667% */
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .titleTopBlogSec {
    font-size: 2rem;
    line-height: 1.2; /* 120% */
  }
}

.titleSubTopBlogSec {
  color: #2d1f23;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .titleSubTopBlogSec {
    font-size: 1.4rem;
  }
}

.titleTopLeadSec {
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.2em;
}
.titleTopLeadSec--tac {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .titleTopLeadSec {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .titleTopLeadSec--spVertical {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
  }
}
@media screen and (max-width: 768px) {
  .titleTopLeadSec--spLarge {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.75; /* 175% */
  }
}

.headTitle__inner {
  padding: 6rem 5rem;
}
@media screen and (max-width: 768px) {
  .headTitle__inner {
    padding: 6rem 3.5rem 4.5rem;
  }
}

.headTitle__title--en {
  font-family: "Jost", sans-serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1; /* 75% */
  display: block;
  text-align: center;
}

.headTitle__title--jp {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
  text-align: center;
}

.titlePrivacy {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2; /* 200% */
}

.titleMaterialsDetail {
  color: #2d1f23;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75; /* 175% */
}
@media screen and (max-width: 768px) {
  .titleMaterialsDetail {
    font-size: 2rem;
  }
}

.textTopBlogSec {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .textTopBlogSec {
    font-size: 1rem;
  }
}
.textTopBlogSec--ls0 {
  letter-spacing: 0;
}

.textTopLeadSec {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2; /* 200% */
  letter-spacing: 0.1em;
}
.textTopLeadSec--tac {
  text-align: center;
}
.textTopLeadSec--lhLarge {
  line-height: 2.8; /* 280% */
}
@media screen and (max-width: 768px) {
  .textTopLeadSec {
    letter-spacing: 0.02em;
    line-height: 2.1; /* 200% */
  }
  .textTopLeadSec--lhLarge {
    line-height: 2.3; /* 280% */
  }
}

.textTopLeadSec__blk {
  display: block;
}
.textTopLeadSec__blk + .textTopLeadSec__blk {
  margin-top: 1.8rem;
}
@media screen and (max-width: 768px) {
  .textTopLeadSec__blk + .textTopLeadSec__blk {
    margin-top: 2rem;
  }
}

.textRequestLeadSec {
  text-align: center;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.3; /* 228.571% */
}
.textRequestLeadSec--link {
  text-decoration: underline;
}
.textRequestLeadSec--link:hover {
  text-decoration: none;
}

.textPrivacy {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.3; /* 228.571% */
}
.textPrivacy--bold {
  font-weight: 600;
}

.textMaterialsDetail {
  color: #2d1f23;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2; /* 200% */
}

.card-merit {
  background-color: #fff;
  position: relative;
  border-radius: 1rem;
  padding-top: 5rem;
  padding-bottom: 2.1rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .card-merit {
    padding-top: 2.3rem;
    padding-bottom: 1.7rem;
  }
}
.card-merit__icon {
  width: 5.8rem;
  height: 5.8rem;
  position: absolute;
  top: -1.2rem;
  left: -2.9rem;
}
@media screen and (max-width: 768px) {
  .card-merit__icon {
    top: -2.5rem;
    left: -1.1rem;
  }
}
.card-merit__iconContent {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.card-merit__iconText {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0;
  font-weight: 500;
  display: block;
}
.card-merit__iconNum {
  margin-top: -0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 2.6rem;
  line-height: 1.3076923077;
  letter-spacing: 0;
  font-weight: 700;
  display: block;
  text-align: center;
}
.card-merit__img {
  width: 27.4rem;
  margin: 0 auto;
}
.card-merit__title {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2f3d45;
  width: 25.2rem;
  margin: 1.6rem auto 0;
}
@media screen and (max-width: 768px) {
  .card-merit__title {
    letter-spacing: 0.1em;
  }
}
.card-merit__text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.1em;
  font-weight: 500;
  width: 25.2rem;
  margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
  .card-merit__text {
    line-height: 2;
  }
}
.card-features {
  background-color: #f5f5f5;
  position: relative;
  border-radius: 0 1rem 1rem 1rem;
  padding-top: 5.5rem;
  padding-bottom: 2.1rem;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .card-features {
    padding-top: 2rem;
    padding-bottom: 2.6rem;
  }
}
.card-features__icon::before {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  transform: rotate(45deg);
  background-color: #b5cb39;
  position: absolute;
  z-index: 1;
  left: -5.5rem;
  top: -5.5rem;
}
.card-features__iconNum {
  font-family: "Roboto", sans-serif;
  font-size: 2.6rem;
  line-height: 1.3076923077;
  letter-spacing: 0;
  font-weight: 700;
  position: absolute;
  z-index: 10;
  top: 0.4rem;
  left: 1rem;
  color: #fff;
}
.card-features__img {
  width: 22rem;
  margin: 0 auto;
}
.card-features__title {
  margin: 2rem 2.6rem 0;
  padding-bottom: 0.6rem;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-bottom: 1px solid #2f3d45;
}
@media screen and (max-width: 768px) {
  .card-features__title {
    letter-spacing: 0.1em;
  }
}
.card-features__text {
  margin: 1.5rem 2.6rem 0;
  padding-bottom: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .card-features__text {
    line-height: 2;
  }
}
.card-features--04 {
  padding-top: 3.2rem;
}
.card-features--04 .card-features__img {
  width: 22.8rem;
}
.card-features--04 .card-features__title {
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .card-features--04 .card-features__title {
    margin-top: 2.4rem;
  }
}
.card-features--05 {
  padding-top: 6.8rem;
}
@media screen and (max-width: 768px) {
  .card-features--05 {
    padding-top: 1rem;
  }
}
.card-features--05 .card-features__title {
  margin-top: 3.6rem;
}
@media screen and (max-width: 768px) {
  .card-features--05 .card-features__title {
    margin-top: 0.5rem;
  }
}
.card-features--06 {
  padding-top: 1.7rem;
}
@media screen and (max-width: 768px) {
  .card-features--06 {
    padding-top: 1.1rem;
  }
}
.card-features--06 .card-features__title {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .card-features--06 .card-features__title {
    margin-top: 1.4rem;
  }
}
.card-use {
  position: relative;
  border-radius: 0 1rem 1rem 1rem;
  padding-top: 5.5rem;
  padding-bottom: 2.1rem;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .card-use {
    display: flex;
    flex-direction: column;
    padding-left: 3.5rem;
    padding-top: 0;
    padding-bottom: 3rem;
    overflow: visible;
  }
}
.card-use__icon {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .card-use__icon {
    flex-direction: column;
    position: absolute;
    order: 1;
    left: 0;
  }
}
.card-use__iconNum {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  padding: 0.4rem 1rem;
  background-color: #2f3d45;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .card-use__iconNum {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    padding: 1rem 0.4rem;
    margin-left: -0.8rem;
  }
}
.card-use__iconArrow {
  margin-top: 0.3rem;
  display: block;
  width: 100%;
  height: 0.5rem;
}
.card-use__iconArrow img {
  display: block;
}
@media screen and (max-width: 768px) {
  .card-use__iconArrow {
    width: 0.6rem;
    height: 35rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .card-use__iconArrow--spHidden {
    height: 26rem;
    overflow: hidden;
  }
}
.card-use__title {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 6rem;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .card-use__title {
    order: 3;
    margin-top: 0.6rem;
    font-size: 1.6rem;
    line-height: 2.25;
    display: block;
    text-align: left;
    height: auto;
  }
}
.card-use__titleSub {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .card-use__titleSub {
    font-size: 1.2rem;
    line-height: 2.0833333333;
    margin-top: -0.5rem;
    display: block;
  }
}
.card-use__img {
  width: 18.4rem;
  margin: 2rem auto 0;
}
@media screen and (max-width: 768px) {
  .card-use__img {
    width: 18rem;
    order: 2;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .card-use__img--mtSmallSp {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .card-use__img--wSmallSp {
    width: 13.4rem;
  }
}
.card-use__text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.card-use__textNotice {
  display: block;
  padding-left: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .card-use__textNotice {
    font-size: 1.2rem;
    line-height: 2;
    padding-left: 0;
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .card-use__text {
    order: 4;
    line-height: 2;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .card-use__text--lsSmallSp {
    letter-spacing: 0.05em;
  }
}
.card-price {
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.card-price__title {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #b5cb39;
  padding: 1rem 2rem;
}
.card-price__content {
  padding-top: 2rem;
}
.card-price__contentText {
  padding: 0 3rem;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.card-price__contentText--color01 {
  color: #b5cb39;
}
.card-price__contentText--small {
  padding: 0 2.4rem;
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.card-price__contentNotice {
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.card-price__price {
  font-family: "Roboto", sans-serif;
  color: #b5cb39;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-price__price--align-items-flex-end {
  align-items: flex-end;
}
.card-price__price--mtSmall {
  margin-top: 1rem;
}
.card-price__price--mbMedium {
  margin-bottom: 2.5rem;
}
.card-price__price--mtNegaSmall {
  margin-top: -1rem;
}
.card-price__price--mbNegaSmall {
  margin-bottom: -1rem;
}
.card-price__price--cancell {
  color: #2f3d45;
  opacity: 0.3;
  position: relative;
}
.card-price__price--cancell::after {
  content: "";
  display: block;
  width: 25.9rem;
  height: 0.3rem;
  background-color: #2f3d45;
  position: absolute;
}
.card-price__priceMark {
  font-size: 5rem;
  line-height: 1.32;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-right: 0.8rem;
}
.card-price__priceMark--small {
  font-size: 4.3rem;
}
.card-price__priceMark--large {
  font-size: 8rem;
  margin-bottom: 1rem;
}
.card-price__priceNum {
  margin-right: 1.4rem;
  font-size: 6.6rem;
  line-height: 1.3181818182;
  letter-spacing: 0;
  font-weight: 500;
}
.card-price__priceNum--large {
  font-size: 15.8rem;
  line-height: 1;
}
.card-price__priceNum--small {
  font-size: 5.7rem;
}
.card-price__priceSlash {
  font-size: 5rem;
  line-height: 1.32;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.card-price__priceSlash--small {
  font-size: 4.3rem;
}
.card-price__priceUnit {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-right: -0.4rem;
  margin-top: 1.4rem;
}
.card-price__priceUnit--small {
  font-size: 1.7rem;
}
.card-price__checklist {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.2rem 0 3.4rem;
  margin: 1.3rem 2rem 0;
  border-top: 2px solid #b5cb39;
}
.card-price__text {
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.card-price__text--check {
  display: flex;
  align-items: flex-start;
}
.card-price__text--check::before {
  flex-shrink: 0;
  content: "";
  display: inline;
  background-image: url(../images/price-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.7rem;
  margin-top: 0.7rem;
  margin-right: 1.6rem;
}

.JsInviewFadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.JsInviewFadeInUp.is-active {
  opacity: 1;
  transform: translateY(0);
}
.JsInviewFadeInUpBox__01,
.JsInviewFadeInUpBox__02,
.JsInviewFadeInUpBox__03,
.JsInviewFadeInUpBox__04,
.JsInviewFadeInUpBox__05,
.JsInviewFadeInUpBox__06,
.JsInviewFadeInUpBox__07,
.JsInviewFadeInUpBox__08,
.JsInviewFadeInUpBox__09,
.JsInviewFadeInUpBox__10 {
  filter: blur(3px);
  overflow: hidden;
  opacity: 0;
  transition: all 1.2s;
}
.is-active .JsInviewFadeInUpBox__01,
.is-active .JsInviewFadeInUpBox__02,
.is-active .JsInviewFadeInUpBox__03,
.is-active .JsInviewFadeInUpBox__04,
.is-active .JsInviewFadeInUpBox__05,
.is-active .JsInviewFadeInUpBox__06,
.is-active .JsInviewFadeInUpBox__07,
.is-active .JsInviewFadeInUpBox__08,
.is-active .JsInviewFadeInUpBox__09,
.is-active .JsInviewFadeInUpBox__10 {
  opacity: 1;
  filter: blur(0px);
}
.JsInviewFadeInUpBox__01 {
  transition-delay: 0;
}
.JsInviewFadeInUpBox__02 {
  transition-delay: 0.2s;
}
.JsInviewFadeInUpBox__03 {
  transition-delay: 0.4s;
}
.JsInviewFadeInUpBox__04 {
  transition-delay: 0.6s;
}
.JsInviewFadeInUpBox__05 {
  transition-delay: 0.8s;
}
.JsInviewFadeInUpBox__06 {
  transition-delay: 1s;
}
.JsInviewFadeInUpBox__07 {
  transition-delay: 1.2s;
}
.JsInviewFadeInUpBox__08 {
  transition-delay: 1.4s;
}
.JsInviewFadeInUpBox__09 {
  transition-delay: 1.6s;
}
.JsInviewFadeInUpBox__10 {
  transition-delay: 1.8s;
}

.JsParallax {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.JsBrightBox__01,
.JsBrightBox__02,
.JsBrightBox__03,
.JsBrightBox__04,
.JsBrightBox__05,
.JsBrightBox__06,
.JsBrightBox__07,
.JsBrightBox__08,
.JsBrightBox__09,
.JsBrightBox__10 {
  filter: blur(0.8rem) brightness(0.1); /* 明るくする */
  transition: all 1.2s;
  opacity: 0;
}
.is-active .JsBrightBox__01,
.is-active .JsBrightBox__02,
.is-active .JsBrightBox__03,
.is-active .JsBrightBox__04,
.is-active .JsBrightBox__05,
.is-active .JsBrightBox__06,
.is-active .JsBrightBox__07,
.is-active .JsBrightBox__08,
.is-active .JsBrightBox__09,
.is-active .JsBrightBox__10 {
  filter: blur(0) brightness(1); /* 明るくする */
  opacity: 1;
}
.JsBrightBox__01 {
  transition-delay: 0;
}
.JsBrightBox__02 {
  transition-delay: 0.8s;
}
.JsBrightBox__03 {
  transition-delay: 1.6s;
}
.JsBrightBox__04 {
  transition-delay: 2.4s;
}
.JsBrightBox__05 {
  transition-delay: 3.2s;
}
.JsBrightBox__06 {
  transition-delay: 4s;
}
.JsBrightBox__07 {
  transition-delay: 4.8s;
}
.JsBrightBox__08 {
  transition-delay: 5.6s;
}
.JsBrightBox__09 {
  transition-delay: 3.2s;
}
.JsBrightBox__10 {
  transition-delay: 3.6s;
}

.JsInviewBounceIn {
  opacity: 0;
}
.JsInviewBounceIn.is-active {
  animation: bounce-in 0.6s ease forwards;
}

@keyframes bounce-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.show-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .show-pc {
    display: none;
  }
}

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

.modal-image img.show-pc,
.modal-title img.show-pc,
.ui-box-highlight img.show-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .modal-image img.show-pc,
  .modal-title img.show-pc,
  .ui-box-highlight img.show-pc {
    display: none;
  }
}

.modal-image img.show-sp,
.modal-title img.show-sp,
.ui-box-highlight img.show-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal-image img.show-sp,
  .modal-title img.show-sp,
  .ui-box-highlight img.show-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */

.nobreak {
  white-space: nowrap;
}
