@font-face {
  font-family: "LINE Seed JP";
  src: url("../assets/fonts/LINESeedJP_OTF_Bd.woff2");
  font-weight: normal;
  font-style: normal;
}
body {
  width: 100%;
  color: #413838;
  font-size: 16px;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fw-700 {
  font-weight: 700;
}

h2,
h3 {
  font-weight: 700;
}

.br-sp {
  display: block;
}
@media (min-width: 1024px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media (min-width: 1024px) {
  .br-pc {
    display: block;
  }
}

.c-title {
  font-weight: 700;
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  line-height: 1;
  text-align: center;
}
.c-title--left {
  text-align: left;
}

.c-en-label {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #fd7514;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 16px;
}
.c-en-label--black {
  color: #413838;
}

.l-outer {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: clamp(16px, -20.98px + 9.861vw, 80px);
  padding-right: clamp(16px, -20.98px + 9.861vw, 80px);
}

.l-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 100px;
  padding: 16px 0px;
  background-color: #ffffff;
  box-shadow: 0 3px 0 #cccccc;
  transform: translateY(0);
  transition: box-shadow 0.3s, transform 0.3s;
  width: 90%;
  margin: 0 auto;
  max-width: 360px;
}
@media (min-width: 1024px) {
  .c-button:hover {
    box-shadow: 0 0 0;
    transform: translateY(3px);
  }
}
.c-button--submit {
  width: clamp(300px, 272.727px + 8.523vw, 360px);
}
.c-button--black {
  background-color: #413838;
  box-shadow: 0 3px 0 #1e1e1e;
  transition: box-shadow 0.3s, transform 0.3s;
  transform: translateY(0);
  color: #ffffff;
}
.c-button--red {
  background-color: #d70c0c;
  box-shadow: 0 3px 0 #a30a0a;
  transition: box-shadow 0.3s, transform 0.3s;
  transform: translateY(0);
  color: #ffffff;
}
.c-button__icon-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.c-button__text {
  font-weight: 700;
}
.c-button__icon {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media (min-width: 1024px) {
  .c-button__icon {
    right: 40px;
  }
}
.c-button__icon--white {
  color: #ffffff;
}

.swiper {
  width: 100vw;
  background-color: #ffffff;
  padding: 8px 0px;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-right: -50vw;
  margin-left: -50vw;
}
.swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear;
}
.swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  padding: 0 12px;
}
.swiper .swiper-slide img {
  width: 67px;
  height: auto;
  display: block;
}

.c-marquee {
  width: 100vw;
  background-color: #ffffff;
  padding: 8px 0px;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-right: -50vw;
  margin-left: -50vw;
}
.c-marquee__track {
  width: 100%;
  display: flex;
}
.c-marquee__list {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: loop 40s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.c-marquee__item:first-child {
  margin-left: 24px;
}
.c-marquee__item img {
  width: 67px;
  height: auto;
  display: block;
}

.c-nav-toggle {
  width: 30px;
  height: 20px;
  position: relative;
}
.c-nav-toggle__line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 10px;
}
.c-nav-toggle__line:first-child {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: right center;
}
.c-nav-toggle__line:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-nav-toggle__line:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: right center;
}

.c-accordion {
  width: 100%;
  background-color: #fafafa;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: 8px;
  overflow: hidden;
}
.c-accordion__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .c-accordion__head:hover .c-text {
    color: #ff9f00;
  }
}
.c-accordion__head .c-text {
  color: #413838;
  transition: color 0.3s;
  display: inline-block;
}
.c-accordion__label {
  display: flex;
  align-items: center;
  gap: 24px;
}
.c-accordion__label .questionmark {
  color: #ff9f00;
  font-family: "LINE Seed JP", sans-serif;
}
.c-accordion__icon {
  width: 16px;
  height: 16px;
  position: relative;
}
.c-accordion__icon img {
  width: 16px;
  height: auto;
  display: block;
}
.c-accordion__icon-line {
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #413838;
  border-radius: 10px;
}
.c-accordion__icon-line:first-child {
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: center center;
}
.c-accordion__icon-line:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.c-form__wrapper {
  padding-top: 56px;
  padding-bottom: 96px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.c-form__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
.c-form__field:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .c-form__field {
    display: grid;
    grid-template-columns: 150px 1fr;
  }
}
.c-form__label {
  justify-self: end;
  align-self: start;
}
@media (min-width: 1024px) {
  .c-form__label {
    align-self: center;
  }
}
.c-form__label--textarea {
  align-self: start;
}
.c-form__input {
  width: 100%;
  border: 1px solid #d3d3d3;
  font-size: 16px;
  border-radius: 4px;
  padding: 16px;
}
@media (min-width: 1024px) {
  .c-form__input:hover {
    box-shadow: 0 0 4px #d3d3d3;
  }
}
.c-form__textarea {
  width: 100%;
  border: 1px solid #d3d3d3;
  font-size: 16px;
  border-radius: 4px;
  padding: 20px 16px;
  resize: none;
  min-height: 200px;
}
@media (min-width: 1024px) {
  .c-form__textarea:hover {
    box-shadow: 0 0 4px #d3d3d3;
  }
}
.c-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1024px) {
  .c-form__radio-group {
    flex-direction: row;
  }
}
.c-form__radio-group .radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .c-form__radio-group .radio-option:hover .radio-circle {
    box-shadow: 0 0 4px #d3d3d3;
  }
}
.c-form__radio-group .radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-form__radio-group .radio:checked + .radio-circle::after {
  transform: translate(-50%, -50%) scale(1);
}
.c-form__radio-group .radio-circle {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1.5px solid #d3d3d3;
  border-radius: 50%;
  margin-right: 8px;
}
.c-form__radio-group .radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #fda214;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease-in-out;
}
.c-form .c-form-policy {
  font-size: 14px;
  margin-bottom: 4rem;
}
.c-form .c-form-policy__text {
  text-align: center;
}
.c-form .c-form-policy a {
  text-decoration: underline;
  color: #1a5090;
}
.c-form .required {
  color: #ff0000;
  font-size: 14px;
  font-weight: bold;
}
.c-form__button-wrapper {
  display: flex;
  justify-content: center;
}
.c-form .form-msg-status {
  margin-top: 32px;
  text-align: center;
  font-weight: 700;
  line-height: 2;
}

.header {
  width: 100%;
  background-color: #413838;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.header__wrapper {
  padding-top: 24px;
  padding-bottom: 24px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  position: relative;
  z-index: 9999;
}
.header__logo img {
  width: clamp(147px, 122.704px + 6.479vw, 216px);
  height: auto;
  display: block;
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #413838;
  opacity: 0;
  pointer-events: none;
  padding-top: 160px;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: auto;
    padding-top: 0;
  }
}
.header .header-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .header .header-list {
    flex-direction: row;
  }
}
.header .header-list__item {
  width: 84vw;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #ffffff;
}
@media (min-width: 1024px) {
  .header .header-list__item {
    width: auto;
    text-align: start;
    border-top: none;
  }
  .header .header-list__item:hover .header-list__link {
    opacity: 0.7;
  }
}
.header .header-list__item:last-child {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 1024px) {
  .header .header-list__item:last-child {
    border-bottom: none;
  }
}
.header .header-list__link {
  display: block;
  opacity: 1;
  transition: opacity 0.2s;
  font-size: 20px;
  padding: 16px 0;
}
@media (min-width: 1024px) {
  .header .header-list__link {
    font-size: 16px;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .header .header-list {
    gap: 32px;
  }
}
.header__menu {
  position: relative;
  z-index: 9999;
}
@media (min-width: 1024px) {
  .header__menu {
    display: none;
  }
}

.fixed-button {
  width: 100vw;
  display: flex;
  position: fixed;
  bottom: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .fixed-button {
    flex-direction: column;
    width: auto;
    bottom: 32px;
    right: 32px;
    gap: 16px;
  }
}
.fixed-button__button {
  width: 50vw;
  padding: 4px 0 20px;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .fixed-button__button {
    width: 140px;
    height: 140px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
.fixed-button__button--document {
  background-color: #413838;
}
@media (min-width: 1024px) {
  .fixed-button__button--document {
    border: 3px solid #ffffff;
    transition: background-color 0.3s, border 0.3s;
  }
  .fixed-button__button--document:hover {
    background-color: #ffffff;
    border: 3px solid #413838;
  }
  .fixed-button__button--document:hover .fixed-button__text {
    color: #413838;
  }
  .fixed-button__button--document:hover .fixed-button__icon path {
    color: #413838;
  }
}
.fixed-button__button--contact {
  background-color: #d70c0c;
}
@media (min-width: 1024px) {
  .fixed-button__button--contact {
    border: 3px solid #ffffff;
    transition: background-color 0.3s, border 0.3s;
  }
  .fixed-button__button--contact:hover {
    background-color: #ffffff;
    border: 3px solid #d70c0c;
  }
  .fixed-button__button--contact:hover .fixed-button__text {
    color: #d70c0c;
  }
  .fixed-button__button--contact:hover .fixed-button__icon path {
    color: #d70c0c;
  }
}
.fixed-button__main {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .fixed-button__main {
    flex-direction: column;
    gap: 8px;
  }
}
.fixed-button__icon {
  position: absolute;
  right: -26px;
}
.fixed-button__icon--contact {
  right: 5px;
}
@media (min-width: 1024px) {
  .fixed-button__icon {
    position: static;
  }
}
.fixed-button__icon .icon {
  display: block;
}
@media (min-width: 1024px) {
  .fixed-button__icon .icon--sp {
    display: none;
  }
}
.fixed-button__icon .icon--pc {
  display: none;
}
@media (min-width: 1024px) {
  .fixed-button__icon .icon--pc {
    display: block;
  }
}
.fixed-button__text {
  color: #ffffff;
  transition: color 0.3s;
  line-height: 1.2;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}
@media (min-width: 1024px) {
  .fixed-button__text {
    font-size: 16px;
  }
}
.fixed-button__text--small {
  font-size: 10px;
}

.p-top-hero {
  width: 100%;
  background-image: url("../assets/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  overflow: hidden;
}
.p-top-hero__wrapper {
  padding-top: clamp(96px, 79.099px + 4.507vw, 144px);
}
.p-top-hero__inner {
  position: relative;
}
.p-top-hero__main {
  margin-bottom: 2.5rem;
}
.p-top-hero__visual {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: -22vw;
  width: 65.9946666667vw;
}
@media (min-width: 1024px) {
  .p-top-hero__visual {
    width: 55.5555555556vw;
    max-width: 800px;
    top: -150px;
    right: max(-18vw, -300px);
  }
}
.p-top-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.p-top-hero__slide {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}
.p-top-hero__title {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(1.5rem, 1.1479rem + 1.5023vw, 2.5rem);
  letter-spacing: 0.05em;
  line-height: 138%;
  width: 60.672vw;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .p-top-hero__title {
    width: auto;
  }
}
.p-top-hero__text {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(0.75rem, 0.662rem + 0.3756vw, 1rem);
  width: 48.64vw;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 180%;
}
.p-top-hero__badges {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  padding: 8px 0;
  margin-bottom: 2.5rem;
  max-width: 700px;
}
@media (min-width: 1024px) {
  .p-top-hero__badges {
    gap: 24px;
  }
}
.p-top-hero__badge img {
  width: 26.1333333333vw;
  height: auto;
  display: block;
}
@media (min-width: 375px) {
  .p-top-hero__badge img {
    width: clamp(98px, 65.254px + 8.732vw, 191px);
  }
}
.p-top-hero__button {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .p-top-hero__button {
    flex-direction: row;
  }
}

.p-top-theme {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border-radius: 36px;
  padding: clamp(40px, 31.549px + 2.254vw, 64px) 16px;
}
.p-top-theme__title {
  text-align: center;
  font-size: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
  margin-bottom: 4rem;
  line-height: 1;
}
.p-top-theme__lead {
  font-weight: 700;
  font-size: clamp(1rem, 0.8239rem + 0.7512vw, 1.5rem);
  text-align: center;
}
.p-top-theme__lead--highlight {
  color: #ff6600;
}
.p-top-theme .theme-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 40px;
  margin-bottom: 3rem;
}
.p-top-theme .theme-list__item {
  flex: 1;
}
.p-top-theme .theme-list__text {
  font-size: clamp(0.8125rem, 0.7465rem + 0.2817vw, 1rem);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.p-top-theme .theme-list__icon {
  width: clamp(112px, 94.042px + 4.789vw, 163px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fbead1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem auto;
}
.p-top-theme .theme-list__icon--personal img {
  width: clamp(44px, 38.718px + 1.408vw, 59px);
  height: auto;
  display: block;
}
.p-top-theme .theme-list__icon--visibility img {
  width: clamp(57px, 50.31px + 1.784vw, 76px);
  height: auto;
  display: block;
}
.p-top-theme .theme-list__icon--branding img {
  width: clamp(74px, 64.845px + 2.441vw, 100px);
  height: auto;
  display: block;
}
.p-top-theme .theme-list__icon--human img {
  width: clamp(62px, 54.606px + 1.972vw, 83px);
  height: auto;
  display: block;
}

.p-top-strength {
  width: 100%;
  background-color: #ffffff;
}
.p-top-strength__title {
  margin-bottom: 2rem;
}
.p-top-strength__text {
  font-weight: 700;
  text-align: center;
  margin-bottom: 4.5rem;
}
.p-top-strength .strength-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .p-top-strength .strength-list {
    flex-direction: row;
    column-gap: 40px;
    row-gap: 40px;
  }
}
.p-top-strength .strength-list__item {
  position: relative;
  background-color: #fbead1;
  border-radius: 30px;
  padding-top: 60px;
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1024px) {
  .p-top-strength .strength-list__item {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.p-top-strength .strength-list__img {
  position: absolute;
  top: -30px;
  left: 0;
}
.p-top-strength .strength-list__img img {
  width: 60px;
  height: auto;
  display: block;
}
.p-top-strength .strength-list__title {
  font-size: 20px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.p-top-strength .strength-list__desc {
  font-size: 14px;
}

.p-top-solution {
  width: 100%;
  background-color: #fbead1;
}
.p-top-solution__wrapper {
  padding-top: 48px;
  padding-bottom: 48px;
}
.p-top-solution__title {
  font-size: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
  text-align: center;
  margin-bottom: 3rem;
}
.p-top-solution .solution-figure {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .p-top-solution .solution-figure {
    flex-direction: row;
    gap: 48px;
  }
}
.p-top-solution .solution-figure__item {
  background-color: #413838;
  color: #ffffff;
  padding: 24px 0 32px;
  border-radius: 28px;
}
@media (min-width: 1024px) {
  .p-top-solution .solution-figure__item {
    flex: 1;
  }
}
.p-top-solution .solution-figure__item--after {
  background-color: #fd7514;
}
.p-top-solution .solution-figure__arrow {
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .p-top-solution .solution-figure__arrow {
    display: flex;
    align-items: center;
  }
}
.p-top-solution .solution-figure__arrow img {
  width: 60px;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .p-top-solution .solution-figure__arrow img {
    width: 160px;
  }
}
.p-top-solution .solution-figure__title {
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1;
}
.p-top-solution .solution-figure__img {
  width: fit-content;
  margin: 0 auto 1rem auto;
}
.p-top-solution .solution-figure__img img {
  width: 56px;
  height: auto;
  display: block;
}
.p-top-solution .solution-figure__img--after img {
  width: 90px;
  height: auto;
  display: block;
}
.p-top-solution .solution-figure__text {
  text-align: center;
}
.p-top-solution__lead {
  font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.p-top-solution__lead--highlight {
  color: #ff6600;
}

.p-top-result {
  width: 100%;
  background-image: url("../assets/result-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top 50%;
}
.p-top-result__wrapper {
  padding-top: 48px;
}
.p-top-result__inner {
  padding: 48px 0;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 1024px) {
  .p-top-result__inner {
    padding: 64px 0;
  }
}
.p-top-result__shape {
  width: 100%;
  height: 40px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  background-color: #fbead1;
}
@media (min-width: 1024px) {
  .p-top-result__shape {
    height: 80px;
  }
}
.p-top-result__title {
  font-size: clamp(2rem, 1.6479rem + 1.5023vw, 3rem);
  line-height: 1;
  text-align: center;
  margin-bottom: 2rem;
}
.p-top-result .result-badge {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 24px;
  justify-content: center;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .p-top-result .result-badge {
    flex-direction: row;
    justify-content: center;
    gap: 36px;
  }
}
.p-top-result .result-badge__img:first-child {
  flex: 1 1 100%;
}
@media (min-width: 1024px) {
  .p-top-result .result-badge__img:first-child {
    flex: 0 0 auto;
  }
}
.p-top-result .result-badge__img img {
  width: 37.3333333333vw;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 375px) {
  .p-top-result .result-badge__img img {
    width: clamp(140px, 122.394px + 4.695vw, 190px);
  }
}
.p-top-result .result-list__item {
  width: 90%;
  position: relative;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 16px 16px;
  max-width: 740px;
  margin: 0 auto 4rem auto;
}
.p-top-result .result-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .p-top-result .result-list__item {
    display: flex;
    gap: 64px;
    margin-bottom: 5rem;
    padding: 24px 40px;
  }
}
@media (min-width: 1024px) {
  .p-top-result .result-list__content {
    flex: 1;
  }
}
.p-top-result .result-list__icon {
  width: fit-content;
  margin: 0 auto;
}
.p-top-result .result-list__icon img {
  width: clamp(99px, 84.563px + 3.85vw, 140px);
  height: auto;
  display: block;
}
.p-top-result .result-list__badge {
  position: absolute;
  top: -30px;
  right: -2%;
}
.p-top-result .result-list__badge img {
  width: 26.6666666667vw;
  height: auto;
  display: block;
}
@media (min-width: 375px) {
  .p-top-result .result-list__badge img {
    width: clamp(100px, 85.915px + 3.756vw, 140px);
  }
}
.p-top-result .result-list__category {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .p-top-result .result-list__category {
    text-align: left;
  }
}
.p-top-result .result-list__text {
  display: block;
  line-height: 1.4;
}
.p-top-result .result-list__arrow picture {
  display: inline-block;
}
.p-top-result .result-list__arrow img {
  width: 23px;
  height: auto;
  display: inline-block;
}
@media (min-width: 1024px) {
  .p-top-result .result-list__arrow img {
    width: 55px;
    margin: 0 4px;
  }
}
.p-top-result .result-list__price {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .p-top-result .result-list__price {
    text-align: left;
  }
}
.p-top-result .result-list__price--before {
  font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
  font-family: "LINE Seed JP", sans-serif;
}
.p-top-result .result-list__price--after {
  color: #ff6600;
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  font-family: "LINE Seed JP", sans-serif;
}
.p-top-result .result-list__summary {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .p-top-result .result-list__summary {
    text-align: left;
  }
}

.p-top-feature {
  width: 100%;
  background-color: #fbead1;
}
.p-top-feature__title {
  margin-bottom: 5rem;
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  line-height: 1;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-top-feature .feature-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 120px;
  }
}
.p-top-feature .feature-list__item {
  position: relative;
  background-color: #fff7ea;
  border-radius: 30px;
  padding: 96px 28px 40px;
  margin-bottom: 5rem;
}
.p-top-feature .feature-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .p-top-feature .feature-list__item {
    width: 330px;
    margin-bottom: 0;
    display: grid;
    grid-template-rows: 1fr auto;
  }
}
.p-top-feature .feature-list__img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-feature .feature-list__img--marketing img {
  width: 84px;
  height: auto;
  display: block;
}
.p-top-feature .feature-list__img--talent img {
  width: 120px;
  height: auto;
  display: block;
}
.p-top-feature .feature-list__img--onestop img {
  width: 140px;
  height: auto;
  display: block;
}
.p-top-feature .feature-list__img--achievement {
  top: -50px;
}
.p-top-feature .feature-list__img--achievement img {
  width: 156px;
  height: auto;
  display: block;
}
.p-top-feature .feature-list__img--cost {
  top: -20px;
}
.p-top-feature .feature-list__img--cost img {
  width: 160px;
  height: auto;
  display: block;
}
.p-top-feature .feature-list__title {
  align-self: center;
  font-size: 24px;
  text-align: center;
  line-height: 1.36;
  margin-bottom: 1.5rem;
}
.p-top-feature .feature-list__title--highlight {
  color: #ff6600;
}
.p-top-feature .feature-list__desc {
  margin-top: auto;
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
}

.p-top-service {
  width: 100%;
  background-image: url("../assets/service-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.p-top-service__title {
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  line-height: 1;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-top-service .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 64px;
  }
}
.p-top-service .service-list__item {
  background-color: #fff7ea;
  border-radius: 30px;
  overflow: hidden;
  padding-bottom: 24px;
  margin-bottom: 2rem;
}
.p-top-service .service-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .p-top-service .service-list__item {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .p-top-service .service-list__item:first-child {
    width: 100%;
    padding-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .p-top-service .service-list__item:nth-child(2), .p-top-service .service-list__item:nth-child(3), .p-top-service .service-list__item:nth-child(4) {
    width: calc(33% - clamp(16px, -23.385px + 3.846vw, 32px));
  }
}
.p-top-service .service-list__title {
  font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
  background-color: #413838;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  padding: 8px 0;
}
@media (min-width: 1024px) {
  .p-top-service .service-list__title {
    margin-bottom: 3rem;
  }
}
.p-top-service .service-list__title--nogroup {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .p-top-service .service-list__title--nogroup {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-top-service .service-list__item-body {
    display: flex;
  }
}
.p-top-service .service-list__item-group {
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .p-top-service .service-list__item-group {
    flex: 1 1 calc(33% - 16px);
    margin-bottom: 0;
  }
}
.p-top-service .service-list__item-group:last-child {
  margin-bottom: 0;
}
.p-top-service .service-list__item-title {
  width: 90%;
  margin: 0 auto 1rem auto;
  font-size: clamp(1rem, 0.956rem + 0.1878vw, 1.125rem);
  background-color: #ff6600;
  color: #ffffff;
  border-radius: 20px;
  padding: 8px 16px;
  line-height: 1;
  font-weight: 700;
}
.p-top-service .service-list__item-list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: 14px;
  padding: 0 16px;
}
.p-top-service .service-list__item-list li {
  list-style: inside;
}

.p-top-flow {
  width: 100%;
  background-color: #ffffff;
}
.p-top-flow__title {
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  line-height: 1;
  text-align: center;
}
.p-top-flow .flow-list {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-top-flow .flow-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 40px;
  }
}
.p-top-flow .flow-list__item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 10.366px + 1.502vw, 32px);
  padding: clamp(16px, 10.366px + 1.502vw, 32px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  margin: 0 auto 2rem;
  max-width: 500px;
}
.p-top-flow .flow-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .p-top-flow .flow-list__item {
    flex: 1 1 calc(50% - 24px);
    margin-bottom: 0;
  }
}
.p-top-flow .flow-list__number-text {
  background: linear-gradient(to bottom right, #ff9700 50%, #ffc525 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.5rem, 2.0599rem + 1.8779vw, 3.75rem);
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
}
.p-top-flow .flow-list__title {
  font-size: clamp(1.125rem, 0.993rem + 0.5634vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.p-top-flow .flow-list__desc {
  font-size: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
}

.p-top-price {
  width: 100%;
  background-color: #fff7ea;
}
.p-top-price__title {
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1;
}
.p-top-price .price-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .p-top-price .price-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 40px;
    row-gap: 80px;
  }
}
.p-top-price .price-list__item {
  width: 100%;
  border-radius: 24px;
  background-color: #ffffff;
  overflow-y: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0 auto 3rem;
  max-width: 400px;
}
.p-top-price .price-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .p-top-price .price-list__item {
    width: 330px;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
  }
}
.p-top-price .price-list__item--primary {
  border: 4px solid #ff6600;
}
.p-top-price .price-list__item--secondary {
  border: 4px solid #ff9700;
}
.p-top-price .price-list__item--tertiary {
  border: 4px solid #fcaa34;
}
.p-top-price .price-list__item .content {
  padding-top: 32px;
  padding-bottom: 32px;
}
.p-top-price .price-list__title {
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-price .price-list__title--primary {
  background-color: #ff6600;
}
.p-top-price .price-list__title--secondary {
  background-color: #ff9700;
  height: 84px;
}
@media (min-width: 1024px) {
  .p-top-price .price-list__title--secondary {
    height: auto;
  }
}
.p-top-price .price-list__title--tertiary {
  background-color: #fcaa34;
}
.p-top-price .price-list__time {
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 22px;
}
.p-top-price .price-list__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.p-top-price .price-list__label {
  color: #ffffff;
  padding: 12px;
  font-size: 20px;
  border-radius: 4px;
  line-height: 1;
}
.p-top-price .price-list__label--primary {
  background-color: #ff6600;
}
.p-top-price .price-list__label--secondary {
  background-color: #ff9700;
}
.p-top-price .price-list__label--tertiary {
  background-color: #fcaa34;
}
.p-top-price .price-list__amount {
  display: flex;
  align-items: flex-end;
  font-weight: 700;
}
.p-top-price .price-list__number {
  font-family: "LINE Seed JP", sans-serif;
  font-size: clamp(4rem, 3.8239rem + 0.7512vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.p-top-price .price-list__number--primary {
  color: #ff6600;
}
.p-top-price .price-list__number--secondary {
  color: #ff9700;
}
.p-top-price .price-list__number--tertiary {
  color: #fcaa34;
}
.p-top-price .price-list__unit {
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.p-top-price .price-list__unit--primary {
  color: #ff6600;
}
.p-top-price .price-list__unit--secondary {
  color: #ff9700;
}
.p-top-price .price-list__unit--tertiary {
  color: #fcaa34;
}
.p-top-price .price-list__desc {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.p-top-price__note {
  font-size: 14px;
  text-align: center;
  color: #757575;
}

.p-top-faq {
  width: 100%;
  background-image: url("../assets/faq-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.p-top-faq__title {
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  line-height: 1;
  text-align: left;
}
.p-top-faq .accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-top-cta {
  position: relative;
  background-image: url("../assets/cta-bg-sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 1024px) {
  .p-top-cta {
    background-image: url("../assets/cta-bg-pc.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
}
.p-top-cta__wrapper {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .p-top-cta__wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-top-cta__title {
  text-align: center;
  color: #ffffff;
  font-size: clamp(1.25rem, 0.9859rem + 1.1268vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 40px;
}
.p-top-cta__title--small {
  display: block;
  font-weight: 500;
  font-size: clamp(1.125rem, 0.9049rem + 0.939vw, 1.75rem);
}
.p-top-cta__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .p-top-cta__button {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }
}

.p-top-contact {
  width: 100%;
  background-image: url("../assets/contact-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.p-top-contact__wrapper {
  padding-top: 80px;
  padding-bottom: 48px;
}
.p-top-contact__title {
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
  line-height: 1;
  text-align: center;
}
.p-top-contact__form {
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
}

.footer__wrapper {
  padding: 16px 0;
}
.footer__text {
  font-size: 12px;
  text-align: center;
  color: #757575;
}
@media (min-width: 1024px) {
  .footer__text {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
