[data-anime].is-show {
  opacity: 1;
  filter: none;
  transform: none;
}

[data-anime="c-anime-box"].is-show [data-anime] {
  opacity: 1;
  filter: none;
  transform: none;
}

[data-anime="c-fade"] {
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-anime="c-fade-in"] {
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anime="c-mask-right"] {
  opacity: 0;
  clip-path: inset(0% 100% 0% 0%);
  transition:
    opacity 1.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    clip-path 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anime="c-blur"] {
  filter: blur(2px);
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 1s cubic-bezier(0.165, 0.84, 0.44, 1),
    filter 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anime="c-blur-in"] {
  filter: blur(2px);
  opacity: 0;
  transform: translateY(5px) scale(1.01);
  transition:
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 1s cubic-bezier(0.165, 0.84, 0.44, 1),
    filter 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anime="c-scale"] {
  transform: scale(1.01);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*-------------------------------------------
 button
-------------------------------------------*/

.m-button-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .m-button-box {
    grid-template-columns: 100%;
  }
}

.m-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #000;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #000;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button a:hover {
    opacity: 0.7;
  }
}
.m-button a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button a.--plus::before {
    right: 20px;
  }
}
.m-button a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button a.--plus::after {
    right: 14px;
  }
}
.m-button a {
  border: 1px solid #000;
}
@media (hover: hover) {
  .m-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button a:hover {
    opacity: 0.7;
  }
}
.m-button.--transparent-white a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--transparent-white a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--transparent-white a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--transparent-white a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--transparent-white a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--transparent-white a:hover {
    opacity: 0.7;
  }
}
.m-button.--transparent-white a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--transparent-white a.--plus::before {
    right: 20px;
  }
}
.m-button.--transparent-white a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--transparent-white a.--plus::after {
    right: 14px;
  }
}
.m-button.--transparent-white a {
  border: 1px solid #fff;
}
.m-button.--black a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--black a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--black a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--black a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--black a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--black a:hover {
    opacity: 0.7;
  }
}
.m-button.--black a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--black a.--plus::before {
    right: 20px;
  }
}
.m-button.--black a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--black a.--plus::after {
    right: 14px;
  }
}
.m-button.--black a {
  border: none;
}
.m-button.--white a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--white a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--white a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #000;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--white a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--white a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--white a:hover {
    opacity: 0.7;
  }
}
.m-button.--white a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--white a.--plus::before {
    right: 20px;
  }
}
.m-button.--white a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--white a.--plus::after {
    right: 14px;
  }
}
.m-button.--white a {
  border: none;
}
.m-button.--red a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e13928;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--red a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--red a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--red a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--red a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--red a:hover {
    opacity: 0.7;
  }
}
.m-button.--red a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--red a.--plus::before {
    right: 20px;
  }
}
.m-button.--red a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--red a.--plus::after {
    right: 14px;
  }
}
.m-button.--red a {
  border: none;
}
.m-button.--gradation a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--gradation a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--gradation a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>")
    no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--gradation a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--gradation a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--gradation a:hover {
    opacity: 0.7;
  }
}
.m-button.--gradation a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--gradation a.--plus::before {
    right: 20px;
  }
}
.m-button.--gradation a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--gradation a.--plus::after {
    right: 14px;
  }
}
.m-button.--gradation a {
  background: linear-gradient(-30deg, #384d9f, #7c9cd1);
  border: none;
}
.m-button.--size-s a {
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--size-s a {
    font-size: 1.3rem;
    line-height: 1;
  }
}
.m-button.--size-l a {
  width: 420px;
  height: 70px;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--size-l a {
    font-size: 1.4rem;
    line-height: 1;
    width: 270px;
    height: 48px;
  }
}

/*-------------------------------------------
 KV
-------------------------------------------*/
.hero {
  margin: 0 auto;
  height: 360px;
  position: relative;
  z-index: 0;
  -webkit-font-smoothing: auto;
  font-family:
    "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 180px;
  }
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .hero .hero-bg img {
    object-position: center bottom;
  }
}
.hero .hero-inner {
  height: 100%;
  display: grid;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero .hero-inner {
    padding-block: 30px;
    padding-inline: 13px;
    width: 100%;
    text-align: center;
  }
}
.hero .hero-heading {
  color: #fff;
  font-size: 4.4rem;
  line-height: 1.3636363636;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .hero .hero-heading {
    width: 100%;
    font-size: 2.7rem;
    line-height: 1.1851851852;
    letter-spacing: 0.1em;
    text-align: left;
  }
}
.hero .hero-heading b {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.hero .hero-heading b else {
  font-weight: 500;
}
.hero .hero-heading b {
  position: relative;
  top: 2px;
  padding-inline: 0.2em;
}
@media screen and (max-width: 768px) {
  .hero .hero-heading b {
    font-size: 3rem;
    letter-spacing: 0;
  }
}
.hero .hero-heading b:first-child,
.hero .hero-heading b:last-child {
  padding-left: 0;
}

.hero .hero-button-box {
  width: 620px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .hero .hero-button-box {
    width: 230px;
    margin-inline: auto;
    margin-top: 25px;
    grid-template-columns: 100%;
  }
}
.hero .hero-button.m-button a {
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .hero .hero-button.m-button a {
    width: 100%;
    height: 31px;
    font-size: 1.1rem;
  }
}

.hero .hero-lead {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .hero .hero-lead {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    letter-spacing: 0em;
    text-align: left;
    max-width: 440px;
    margin-inline: auto;
    margin-top: 10px;
  }
}

/*-------------------------------------------
 section
-------------------------------------------*/
.section-inner {
  width: 100%;
  padding: 0 10px;
  margin: auto;
  max-width: 1070px;
}
@media screen and (max-width: 768px) {
  .section-inner {
    width: 90.625%;
    margin: auto;
    padding: 0;
  }
}
.section-inner-wide {
  width: 100%;
  padding: 0 10px;
  margin: auto;
  max-width: 1170px;
}
@media screen and (max-width: 768px) {
  .section-inner-wide {
    width: 90.625%;
    margin: auto;
    padding: 0;
  }
}
