@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}

.u-desktop {
  display: block;
}

.u-mobile {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-padding-top: 5.625rem;
  font-size: 62.5%;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
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: vertical;
}

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

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

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

/* ホバー */
a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a[href^="tel:"] {
  pointer-events: none;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 570px;
  }
}

img {
  width: 100%;
  max-width: 100%;
}

.annotation {
  font-size: 0.75rem;
  vertical-align: super;
}

.annotation-small {
  font-size: 0.5rem;
  vertical-align: super;
}

body.is-scroll {
  overflow: hidden;
}

.inner-narrow {
  margin: 0 auto;
  max-width: 77.5rem;
  padding: 0 1.25rem;
  width: 100%;
}

.js-text-slideIn {
  transform: translateY(40%);
}
.js-text-slideIn.is-active {
  animation: slideIn 0.4s ease-out forwards;
}
.js-text-slideIn.delay01 {
  animation-delay: 0.2s;
}
.js-text-slideIn.delay02 {
  animation-delay: 0.4s;
}
.js-text-slideIn.delay03 {
  animation-delay: 0.6s;
}
.js-text-slideIn.delay04 {
  animation-delay: 0.8s;
}
.js-text-slideIn.delay05 {
  animation-delay: 1s;
}
.js-text-slideIn.delay06 {
  animation-delay: 1.2s;
}
.js-text-slideIn.delay07 {
  animation-delay: 1.4s;
}

.js-fadeIn {
  opacity: 0;
  transform: translateY(20%);
}
.js-fadeIn.is-active {
  animation: fadeIn 0.4s ease-out forwards;
}
.js-fadeIn.delay01 {
  animation-delay: 0.2s;
}
.js-fadeIn.delay02 {
  animation-delay: 0.4s;
}
.js-fadeIn.delay03 {
  animation-delay: 0.6s;
}
.js-fadeIn.delay04 {
  animation-delay: 0.8s;
}
.js-fadeIn.delay05 {
  animation-delay: 1s;
}
.js-fadeIn.delay06 {
  animation-delay: 1.2s;
}
.js-fadeIn.delay07 {
  animation-delay: 1.4s;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
  html {
    scroll-padding-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
  .u-mobile {
    display: block;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(40%);
  }
  100% {
    transform: translateY(0);
  }
}
.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40.6rem;
  height: 9.6rem;
  background: #2DBE60;
  color: #fff;
  border: 5px solid #fff;
  border-radius: 1rem;
  font-size: 2.4rem;
  font-weight: bold;
  gap: 1.5rem;
  transition: 0.3s;
}
.c-button span {
  width: 5.2rem;
  display: block;
}
.c-button:hover {
  transform: scale(1.05);
}
.c-button.large {
  width: 61rem;
  height: 14.4rem;
  font-size: 2.9rem;
  gap: 3.5rem;
}
@media screen and (max-width: 1200px) {
  .c-button.large {
    width: 50rem;
    height: 12rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 574px) {
  .c-button.large {
    width: 100%;
    height: 7.2rem;
    gap: 1.5rem;
    font-size: 1.8rem;
  }
}
.c-button.large span {
  width: 8.5rem;
}
@media screen and (max-width: 1200px) {
  .c-button.large span {
    width: 6rem;
  }
}
@media screen and (max-width: 574px) {
  .c-button.large span {
    width: 4rem;
  }
}

.title {
  text-align: center;
}
.title h3 {
  font-weight: bold;
  font-size: 3rem;
  color: #FF9D3D;
}
@media screen and (max-width: 1600px) {
  .title h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 574px) {
  .title h3 {
    font-size: 1.5rem;
  }
}
.title__text {
  margin-top: 1.5rem;
  font-size: 4.6rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 1600px) {
  .title__text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 991px) {
  .title__text {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 574px) {
  .title__text {
    font-size: 2.4rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 11rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7rem;
  z-index: 999;
  box-shadow: 0px 0px 5px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1600px) {
  .header {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 991px) {
  .header {
    padding: 0 1.5rem;
    height: 6rem;
  }
}
.header__logo {
  width: 14.6rem;
}
@media screen and (max-width: 991px) {
  .header__logo {
    width: 8.8rem;
  }
}
.header__logo a, .header__logo img {
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0 5.5rem;
}
@media screen and (max-width: 1600px) {
  .header__nav {
    gap: 3rem;
  }
}
@media screen and (max-width: 991px) {
  .header__nav {
    display: none;
    position: absolute;
    left: 0;
    top: 6rem;
    height: calc(100vh - 6rem);
    height: calc(100dvh - 6rem);
    width: 100%;
    background: #FF9D3D;
    color: #fff;
    padding-top: 5rem;
    align-items: center;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0 5rem;
}
@media screen and (max-width: 1600px) {
  .header__nav-list {
    gap: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-list {
    gap: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .header__nav-list {
    flex-direction: column;
    gap: 4rem;
  }
}
.header__nav-list a {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .header__nav-list a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .header__nav-list a {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 991px) {
  .header__nav-contact {
    width: fit-content;
    margin: 4rem auto 0;
  }
}
.header__nav-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 3rem;
  background: #2DBE60;
  color: #fff;
  border-radius: 0.6rem;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .header__nav-contact a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .header__nav-contact a {
    padding: 1.5rem 3.5rem;
    border: 3px solid #fff;
    border-radius: 0.8rem;
  }
}
.header__nav-contact a span {
  display: block;
  width: 3.5rem;
}
@media screen and (max-width: 991px) {
  .header__nav-contact a span {
    width: 3.9rem;
  }
}
.header__nav-contact a span img {
  display: block;
}
.header__nav-contact a:hover {
  transform: scale(1.05);
}
.header__hamburger {
  width: 4.2rem;
  height: 0.8rem;
  position: relative;
  display: none;
}
@media screen and (max-width: 991px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #202020;
  transition: 0.5s;
  position: absolute;
  left: 0;
}
.header__hamburger span:nth-of-type(1) {
  top: 0;
}
.header__hamburger span:nth-of-type(2) {
  bottom: 0;
}
.header__hamburger.is-open span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}
.header__hamburger.is-open span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}

main {
  overflow: hidden;
}

.mv {
  margin-top: 11rem;
  position: relative;
  background: transparent linear-gradient(243deg, #FF9D3D 0%, #FF6600 100%) 0% 0% no-repeat padding-box;
  height: 970px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem 0 9rem;
  z-index: 0;
}
@media screen and (max-width: 1600px) {
  .mv {
    padding: 0 3rem 0 5rem;
    height: 820px;
  }
}
@media screen and (max-width: 1200px) {
  .mv {
    height: 75rem;
  }
}
@media screen and (max-width: 991px) {
  .mv {
    margin-top: 6rem;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: 95rem;
    justify-content: flex-end;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 574px) {
  .mv {
    height: 77.7rem;
    padding: 0 1.5rem 3.5rem;
  }
}
.mv::after {
  content: "";
  width: 100%;
  height: 10rem;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 1rem 1rem 0 0;
  background: #F6F6F6;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .mv::after {
    height: 8rem;
  }
}
.mv__text {
  z-index: 1;
}
.mv__text h2 {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  font-size: 8.4rem;
  font-weight: bold;
  color: #EE7600;
}
@media screen and (max-width: 1600px) {
  .mv__text h2 {
    font-size: 7rem;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .mv__text h2 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__text h2 {
    font-size: 4rem;
    position: absolute;
    top: 3rem;
    left: 2rem;
  }
}
@media screen and (max-width: 574px) {
  .mv__text h2 {
    font-size: 3.2rem;
    left: 1.5rem;
    gap: 1.2rem;
    top: 1.5rem;
  }
}
.mv__text h2 span {
  display: block;
  background: #fff;
  width: fit-content;
  padding: 0 2rem;
}
.mv__text h3 {
  margin-top: 4rem;
  font-weight: bold;
  font-size: 4rem;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 1600px) {
  .mv__text h3 {
    margin-top: 3rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__text h3 {
    margin-top: 0;
  }
}
@media screen and (max-width: 574px) {
  .mv__text h3 {
    font-size: 2.4rem;
  }
}
.mv__text p {
  margin-top: 3rem;
  font-weight: 400;
  line-height: 2;
  font-size: 2.2rem;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .mv__text p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__text p {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 574px) {
  .mv__text p {
    font-size: 1.5rem;
  }
}
.mv__text .c-button {
  margin-top: 3.5rem;
}
@media screen and (max-width: 1200px) {
  .mv__text .c-button {
    max-width: 33rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__text .c-button {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 574px) {
  .mv__text .c-button {
    margin: 3rem auto 0;
    width: 30.5rem;
    font-size: 1.8rem;
    height: 7.2rem;
  }
  .mv__text .c-button span {
    width: 3.9rem;
  }
}
.mv__text div {
  transition: 0.3s;
  width: fit-content;
}
.mv__text div:hover {
  transform: translateY(0) scale(1.05);
}
.mv__images {
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translateY(-50%);
  display: flex;
  gap: 5px 0;
  flex-wrap: wrap;
  width: 1243px;
  max-width: 100%;
}
@media screen and (max-width: 1600px) {
  .mv__images {
    width: 64.7vw;
  }
}
@media screen and (max-width: 1200px) {
  .mv__images {
    width: 55vw;
  }
}
@media screen and (max-width: 991px) {
  .mv__images {
    top: 47%;
    right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__images {
    width: 90%;
    right: 0;
    top: 40%;
  }
}
@media screen and (max-width: 574px) {
  .mv__images {
    width: 100%;
    top: 40%;
  }
}
.mv__images img {
  object-fit: cover;
  animation: zoomIn 1s ease-in-out forwards;
  opacity: 0;
}
.mv__images img.delay02 {
  animation-delay: 0.2s;
}
.mv__images img.delay03 {
  animation-delay: 0.4s;
}
.mv__images img.delay04 {
  animation-delay: 0.6s;
}
.mv__images img.delay05 {
  animation-delay: 0.8s;
}
.mv__images img.delay06 {
  animation-delay: 1s;
}
.mv__images img.delay07 {
  animation-delay: 1.2s;
}
.mv__images img.delay08 {
  animation-delay: 1.4s;
}
.mv__images-top {
  display: flex;
  gap: 5px;
  width: 100%;
}
.mv__images-top img:first-of-type {
  width: calc(42.5% - 2.5px);
}
.mv__images-top img:last-of-type {
  width: calc(57.5% - 2.5px);
}
@media screen and (max-width: 991px) {
  .mv__images-top img {
    height: 22rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__images-top img {
    height: auto;
  }
}
.mv__images-left {
  width: 26%;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
@media screen and (max-width: 991px) {
  .mv__images-left img:first-of-type {
    height: 17rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__images-left img:first-of-type {
    height: auto;
  }
}
@media screen and (max-width: 991px) {
  .mv__images-left img:last-of-type {
    height: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__images-left img:last-of-type {
    height: auto;
  }
}
.mv__images-center {
  width: 48.25%;
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.mv__images-center div {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.mv__images-center div img:first-of-type {
  width: calc(72% - 2.5px);
}
.mv__images-center div img:nth-of-type(2) {
  width: calc(28% - 2.5px);
}
@media screen and (max-width: 991px) {
  .mv__images-center div img {
    height: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__images-center div img {
    height: auto;
  }
}
@media screen and (max-width: 991px) {
  .mv__images-center > img {
    height: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__images-center > img {
    height: auto;
  }
}
.mv__images-right {
  width: 25.75%;
}
@media screen and (max-width: 991px) {
  .mv__images-right img {
    height: 32.5rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__images-right img {
    height: auto;
  }
}

.feature {
  background: #F6F6F6;
  padding: 7rem 0 12rem;
}
@media screen and (max-width: 1200px) {
  .feature {
    padding: 4rem 0 8rem;
  }
}
@media screen and (max-width: 991px) {
  .feature {
    padding: 3rem 0 6rem;
  }
}
@media screen and (max-width: 574px) {
  .feature {
    padding: 1rem 0 5rem;
  }
}
.feature__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14rem;
}
@media screen and (max-width: 1600px) {
  .feature__lead {
    gap: 10rem;
  }
}
@media screen and (max-width: 1200px) {
  .feature__lead {
    gap: 7rem;
  }
}
@media screen and (max-width: 991px) {
  .feature__lead {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .feature__lead {
    flex-direction: column;
  }
}
@media screen and (max-width: 574px) {
  .feature__lead {
    gap: 2.5rem;
  }
}
.feature__lead-image {
  width: 38rem;
}
@media screen and (max-width: 1200px) {
  .feature__lead-image {
    width: 30rem;
  }
}
@media screen and (max-width: 574px) {
  .feature__lead-image {
    width: 18rem;
  }
}
.feature__lead-text {
  text-align: center;
}
.feature__lead-text h3 {
  color: #FF9D3D;
  font-size: 4.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1600px) {
  .feature__lead-text h3 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .feature__lead-text h3 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 574px) {
  .feature__lead-text h3 {
    font-size: 2.6rem;
  }
}
.feature__lead-text p {
  margin-top: 3.5rem;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .feature__lead-text p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 574px) {
  .feature__lead-text p {
    margin-top: 2.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  .feature__lead-text p .sp_none {
    display: none;
  }
}
.feature__example {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3.125vw;
  gap: 2.5rem;
  margin-top: 15rem;
}
@media screen and (max-width: 1200px) {
  .feature__example {
    justify-content: center;
    gap: 6rem 4rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 574px) {
  .feature__example {
    gap: 5rem;
    margin-top: 5rem;
  }
}
.feature__example-item {
  width: calc(25% - 1.875rem);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .feature__example-item {
    width: calc(40% - 2rem);
  }
}
@media screen and (max-width: 574px) {
  .feature__example-item {
    width: 100%;
  }
}
.feature__example-item span {
  font-size: 2.8rem;
  color: #FF9D3D;
  position: relative;
  font-weight: bold;
  transform: rotate(-45deg);
  display: block;
  width: fit-content;
  position: absolute;
  left: -2rem;
  top: 0;
}
@media screen and (max-width: 1600px) {
  .feature__example-item span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 574px) {
  .feature__example-item span {
    transform: rotate(0);
    left: 3.5rem;
    top: 2rem;
    font-size: 2.8rem;
  }
}
.feature__example-item span::before, .feature__example-item span::after {
  content: "";
  width: 1px;
  height: 2.5rem;
  background: #FF9D3D;
  position: absolute;
}
@media screen and (max-width: 574px) {
  .feature__example-item span::before, .feature__example-item span::after {
    height: 2rem;
  }
}
.feature__example-item span::before {
  left: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}
.feature__example-item span::after {
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}
.feature__example-text {
  padding: 1.5rem 1.5rem 2rem;
  border: 3px solid #FF9D3D;
  border-radius: 1.5rem;
  background: #fff;
  margin-top: -5rem;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .feature__example-text {
    padding: 1.5rem 0.5rem 2rem;
  }
}
.feature__example-text h4 {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .feature__example-text h4 {
    font-size: 2rem;
  }
}
.feature__example-text h4 small {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 1600px) {
  .feature__example-text h4 small {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 574px) {
  .feature__example-text h4 small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 574px) {
  .feature__example-text h4 .sp_none {
    display: none;
  }
}

.conversion {
  padding: 11rem 0 0;
}
@media screen and (max-width: 574px) {
  .conversion {
    padding-top: 5rem;
  }
}
.conversion .container {
  position: relative;
  padding-bottom: 10rem;
}
@media screen and (max-width: 574px) {
  .conversion .container {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    padding-bottom: 17rem;
  }
}
.conversion__illust01 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34rem;
}
@media screen and (max-width: 1600px) {
  .conversion__illust01 {
    width: 28rem;
  }
}
@media screen and (max-width: 1200px) {
  .conversion__illust01 {
    width: 22rem;
  }
}
@media screen and (max-width: 991px) {
  .conversion__illust01 {
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .conversion__illust01 {
    width: 15rem;
    left: -6rem;
  }
}
@media screen and (max-width: 574px) {
  .conversion__illust01 {
    display: none;
  }
}
.conversion__illust02 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42rem;
}
@media screen and (max-width: 1600px) {
  .conversion__illust02 {
    width: 32rem;
  }
}
@media screen and (max-width: 1200px) {
  .conversion__illust02 {
    width: 26rem;
  }
}
@media screen and (max-width: 991px) {
  .conversion__illust02 {
    width: 23rem;
  }
}
@media screen and (max-width: 767px) {
  .conversion__illust02 {
    width: 18rem;
    right: -6rem;
  }
}
@media screen and (max-width: 574px) {
  .conversion__illust02 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 27rem;
  }
}
.conversion__button {
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 574px) {
  .conversion__button {
    width: 100%;
  }
}
.conversion__button p {
  font-size: 3.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 574px) {
  .conversion__button p {
    font-size: 2.1rem;
  }
}
.conversion__button p::before, .conversion__button p::after {
  content: "";
  width: 1px;
  height: 3rem;
  background: #202020;
  display: block;
  transform: rotate(-25deg);
}
@media screen and (max-width: 574px) {
  .conversion__button p::before, .conversion__button p::after {
    height: 2rem;
  }
}
.conversion__button p::after {
  transform: rotate(25deg);
  margin-left: -0.5rem;
}
.conversion__button .c-button {
  margin-top: 3.5rem;
}
@media screen and (max-width: 574px) {
  .conversion__button .c-button {
    margin-top: 1rem;
  }
}

.result {
  background: transparent linear-gradient(243deg, #FF9D3D 0%, #FF6600 100%) 0% 0% no-repeat padding-box;
  padding: 10rem 0;
  border-radius: 0 0 3rem 3rem;
}
@media screen and (max-width: 574px) {
  .result {
    padding: 1.5rem 0;
    border-radius: 0 0 1.8rem 1.8rem;
  }
}
@media screen and (max-width: 574px) {
  .result .title__text {
    font-size: 2.2rem;
  }
}
.result__box {
  border-radius: 3rem;
  background: #FFFEEF;
  padding: 7rem 13.5rem 13.5rem;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .result__box {
    padding: 5rem 5rem 10rem;
  }
}
@media screen and (max-width: 991px) {
  .result__box {
    padding: 5rem 3rem 8rem;
  }
}
@media screen and (max-width: 574px) {
  .result__box {
    padding: 4rem 2rem 2.5rem;
    border-radius: 0.8rem;
  }
}
.result__box-item {
  margin-top: 8rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .result__box-item {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .result__box-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 574px) {
  .result__box-item {
    margin-top: 3.5rem;
  }
}
.result__box-image {
  position: absolute;
  right: -13rem;
  bottom: -7rem;
  width: 40rem;
}
@media screen and (max-width: 1600px) {
  .result__box-image {
    width: 25rem;
    right: -2rem;
    bottom: -10rem;
  }
}
@media screen and (max-width: 991px) {
  .result__box-image {
    width: 22rem;
  }
}
@media screen and (max-width: 767px) {
  .result__box-image {
    position: static;
    width: 35rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 574px) {
  .result__box-image {
    width: 15rem;
  }
}
.result__image {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .result__image {
    width: 100%;
  }
}
.result__text {
  width: 52%;
  padding-left: 7rem;
}
@media screen and (max-width: 1200px) {
  .result__text {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .result__text {
    width: 100%;
    padding-left: 0;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 574px) {
  .result__text {
    margin-top: 2rem;
  }
}
.result__text h4 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .result__text h4 {
    font-size: 2.4rem;
  }
}
.result__text .client {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 1rem;
}
@media screen and (max-width: 991px) {
  .result__text .client {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 574px) {
  .result__text .client {
    font-size: 1.5rem;
  }
}
.result__text .client::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #FF9D3D;
  border-radius: 50%;
  display: block;
}
.result__text p {
  margin-top: 3.5rem;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .result__text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .result__text p {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 574px) {
  .result__text p {
    font-size: 1.5rem;
  }
}
.result__text .more {
  background: #D84D4D;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35.5rem;
  height: 7.8rem;
  border-radius: 1.1rem;
  font-size: 2rem;
  margin-top: 5rem;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .result__text .more {
    width: 30rem;
  }
}
@media screen and (max-width: 991px) {
  .result__text .more {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .result__text .more {
    margin: 3rem auto 0;
  }
}
@media screen and (max-width: 574px) {
  .result__text .more {
    width: 100%;
  }
}
.result__text .more:hover {
  transform: translateY(0) scale(1.05);
}

.flow {
  padding: 10rem 0;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .flow {
    padding: 8rem 1.5rem;
  }
}
@media screen and (max-width: 574px) {
  .flow {
    padding: 5rem 1.5rem;
  }
}
.flow__lead {
  margin-top: 3.5rem;
  line-height: 2;
  font-size: 2rem;
}
@media screen and (max-width: 574px) {
  .flow__lead {
    font-size: 1.55rem;
  }
}
.flow__list {
  max-width: 163rem;
  margin: 8rem auto 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .flow__list {
    flex-wrap: wrap;
    gap: 6rem 0 0;
    max-width: 1000px;
  }
}
@media screen and (max-width: 574px) {
  .flow__list {
    margin-top: 6.5rem;
    padding: 0 1.5rem;
    gap: 12rem 0;
  }
}
.flow__card {
  width: 46.5rem;
  height: 46.5rem;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-left: -8rem;
  background: #fff;
  padding: 9rem 1rem 7rem;
}
@media screen and (max-width: 1600px) {
  .flow__card {
    width: 32rem;
    height: 32rem;
    padding-top: 5rem;
    margin-left: -5rem;
  }
}
@media screen and (max-width: 1200px) {
  .flow__card {
    width: 38rem;
    height: 38rem;
    padding-top: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .flow__card {
    width: 29rem;
    height: 29rem;
    padding-top: 4.6rem;
  }
}
@media screen and (max-width: 574px) {
  .flow__card {
    width: 34.5rem;
    height: 34.5rem;
    margin-left: 0;
    padding-top: 7rem;
  }
}
.flow__card:first-of-type {
  margin-left: 0;
}
.flow__card:first-of-type::after {
  display: none;
}
@media screen and (max-width: 1200px) {
  .flow__card:nth-of-type(3) {
    margin-left: 0;
  }
}
.flow__card::after {
  content: "";
  width: 1.9rem;
  height: 7.4rem;
  position: absolute;
  top: 50%;
  left: 3.5rem;
  transform: translateY(-50%);
  background: url(../images/arrow.webp) no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 1600px) {
  .flow__card::after {
    left: 1.5rem;
  }
}
@media screen and (max-width: 574px) {
  .flow__card::after {
    transform: rotate(90deg) translateX(-50%);
    left: 46.5%;
    top: -10rem;
  }
}
.flow__card .step {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #FF9D3D;
}
.flow__card .step span {
  display: block;
  font-size: 7rem;
  margin-top: -1rem;
}
@media screen and (max-width: 1600px) {
  .flow__card .step span {
    font-size: 5rem;
    margin-top: -0.5rem;
  }
}
.flow__card-text {
  max-width: 60%;
}
@media screen and (max-width: 1600px) {
  .flow__card-text {
    max-width: 70%;
  }
}
@media screen and (max-width: 574px) {
  .flow__card-text {
    max-width: 75%;
  }
}
.flow__card-text.wide {
  max-width: 61%;
}
@media screen and (max-width: 1600px) {
  .flow__card-text.wide {
    max-width: 70%;
  }
}
@media screen and (max-width: 574px) {
  .flow__card-text.wide {
    max-width: 100%;
  }
}
.flow__card-text img {
  width: auto;
  height: 8.2rem;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .flow__card-text img {
    height: 5rem;
  }
}
@media screen and (max-width: 574px) {
  .flow__card-text img {
    height: 5.5rem;
  }
}
.flow__card-text h4 {
  font-weight: bold;
  font-size: 2.8rem;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .flow__card-text h4 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .flow__card-text h4 {
    margin-top: 2rem;
  }
}
.flow__card-text .c-button {
  max-width: 100%;
  font-size: 1.8rem;
  height: 5.8rem;
  margin-top: 5rem;
  border: 0;
}
@media screen and (max-width: 1600px) {
  .flow__card-text .c-button {
    font-size: 1.6rem;
    gap: 1rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .flow__card-text .c-button {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 574px) {
  .flow__card-text .c-button {
    max-width: 30.5rem;
    width: 30.5rem;
    height: 7.2rem;
    font-size: 1.8rem;
    margin-top: 3rem;
  }
}
.flow__card-text .c-button span {
  width: 3.5rem;
}
@media screen and (max-width: 1600px) {
  .flow__card-text .c-button span {
    width: 3rem;
  }
}
@media screen and (max-width: 574px) {
  .flow__card-text .c-button span {
    width: 3.9rem;
  }
}
.flow__card-lead {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 1600px) {
  .flow__card-lead {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .flow__card-lead {
    line-height: 1.6;
  }
}
@media screen and (max-width: 574px) {
  .flow__card-lead {
    font-size: 1.5rem;
  }
}

.strength {
  padding: 10rem 0 13rem;
  background: #F6F6F6;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (max-width: 574px) {
  .strength {
    padding: 5rem 0 4.5rem;
  }
}
.strength__item {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  max-width: 116.2rem;
  margin-left: auto;
  margin-right: auto;
  gap: 6rem;
}
.strength__item:first-of-type {
  margin-top: 8.5rem;
}
@media screen and (max-width: 574px) {
  .strength__item:first-of-type {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 991px) {
  .strength__item.rev {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 991px) {
  .strength__item {
    flex-direction: column;
    max-width: 575px;
    gap: 4rem;
  }
}
@media screen and (max-width: 574px) {
  .strength__item {
    margin-top: 5rem;
    gap: 2rem;
  }
}
.strength__image {
  width: 34.4%;
}
@media screen and (max-width: 991px) {
  .strength__image {
    width: 100%;
  }
}
.strength__image img {
  border-radius: 1rem;
}
.strength__content {
  width: calc(65.6% - 6rem);
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 991px) {
  .strength__content {
    width: 100%;
  }
}
@media screen and (max-width: 574px) {
  .strength__content {
    position: relative;
    gap: 2rem;
  }
}
@media screen and (max-width: 574px) {
  .strength__content > .strength__content-num {
    display: none;
  }
}
.strength__content-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.5rem;
  height: 15.5rem;
  background: #fff;
  border-radius: 50%;
  position: relative;
  color: #FF9D3D;
  font-weight: bold;
  font-size: 5.4rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .strength__content-num {
    width: 10rem;
    height: 10rem;
    font-size: 4rem;
  }
}
@media screen and (max-width: 574px) {
  .strength__content-num {
    width: 7.7rem;
    height: 7.7rem;
    font-size: 3rem;
  }
}
.strength__content-num::after {
  content: "";
  border: 2px dashed #FF9D3D;
  width: calc(100% - 1.1rem);
  height: calc(100% - 1.1rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}
@media screen and (max-width: 574px) {
  .strength__content-num::after {
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    border-width: 1px;
  }
}
.strength__content-text {
  width: calc(100% - 18.5rem);
}
@media screen and (max-width: 1200px) {
  .strength__content-text {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 574px) {
  .strength__content-text {
    width: 100%;
  }
}
.strength__content-text h4 {
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.5;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1600px) {
  .strength__content-text h4 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .strength__content-text h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 574px) {
  .strength__content-text h4 {
    font-size: 2rem;
    letter-spacing: 0.07rem;
    padding-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.strength__content-text h4 .strength__content-num {
  display: none;
}
@media screen and (max-width: 574px) {
  .strength__content-text h4 .strength__content-num {
    display: flex;
  }
}
@media screen and (max-width: 574px) {
  .strength__content-text h4 .txt {
    width: calc(100% - 9.2rem);
    display: block;
  }
}
.strength__content-text p {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .strength__content-text p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 574px) {
  .strength__content-text p {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

.conversion__bottom {
  padding: 10.5rem 0;
  background: transparent linear-gradient(243deg, #FF9D3D 0%, #FF6600 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(258deg, #FF9D3D 0%, #FF6600 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
@media screen and (max-width: 574px) {
  .conversion__bottom {
    padding: 4rem 2rem;
  }
}
.conversion__bottom-inner {
  display: flex;
  align-items: center;
  gap: 7.6rem;
}
@media screen and (max-width: 1200px) {
  .conversion__bottom-inner {
    gap: 4rem;
  }
}
@media screen and (max-width: 991px) {
  .conversion__bottom-inner {
    flex-wrap: wrap;
    gap: 3rem;
  }
}
@media screen and (max-width: 574px) {
  .conversion__bottom-inner {
    gap: 4rem;
  }
}
.conversion__bottom-text {
  width: calc(56% - 7.6rem);
}
@media screen and (max-width: 1200px) {
  .conversion__bottom-text {
    width: calc(56% - 4rem);
  }
}
@media screen and (max-width: 991px) {
  .conversion__bottom-text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 574px) {
  .conversion__bottom-text {
    text-align: left;
  }
}
.conversion__bottom-text h3 {
  font-weight: bold;
  font-size: 4.9rem;
  line-height: 1.5;
  text-shadow: 0px 0px 6px rgba(101, 3, 3, 0.0784313725);
}
@media screen and (max-width: 1600px) {
  .conversion__bottom-text h3 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1200px) {
  .conversion__bottom-text h3 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 574px) {
  .conversion__bottom-text h3 {
    font-size: 3rem;
  }
}
.conversion__bottom-text p {
  text-shadow: 0px 0px 6px rgba(101, 3, 3, 0.0784313725);
  font-size: 2.2rem;
  line-height: 2;
  margin-top: 2rem;
}
@media screen and (max-width: 574px) {
  .conversion__bottom-text p {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 574px) {
  .conversion__bottom-text p .sp_none {
    display: none;
  }
}
.conversion__bottom-button {
  width: 44%;
}
@media screen and (max-width: 991px) {
  .conversion__bottom-button {
    width: 100%;
  }
}
.conversion__bottom-button .c-button {
  width: 100%;
  height: 20rem;
  font-size: 2.9rem;
  gap: 3.5rem;
}
@media screen and (max-width: 1200px) {
  .conversion__bottom-button .c-button {
    font-size: 2.5rem;
    gap: 2rem;
    height: 15rem;
  }
}
@media screen and (max-width: 574px) {
  .conversion__bottom-button .c-button {
    height: 7.8rem;
    font-size: 1.8rem;
    gap: 1.5rem;
  }
}
.conversion__bottom-button .c-button span {
  width: 8.5rem;
}
@media screen and (max-width: 1200px) {
  .conversion__bottom-button .c-button span {
    width: 6rem;
  }
}
@media screen and (max-width: 574px) {
  .conversion__bottom-button .c-button span {
    width: 3.9rem;
  }
}

.footer {
  background-color: #fff;
  padding: 4.5rem 0;
}
@media screen and (max-width: 574px) {
  .footer {
    padding: 3rem 0;
  }
}

.footer__logo {
  margin: 0 auto;
  max-width: 15.5rem;
  width: 100%;
}
@media screen and (max-width: 574px) {
  .footer__logo {
    width: 12rem;
  }
}

.footer__btn {
  margin: 2.5rem auto 0;
  max-width: 21.2rem;
}
@media screen and (max-width: 574px) {
  .footer__btn {
    max-width: 16.2rem;
  }
}
.footer__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.2rem;
  max-width: 100%;
  height: 5.8rem;
  color: #fff;
  border-radius: 0.6rem;
  font-size: 1.8rem;
  font-weight: bold;
  transition: 0.3s;
  background: #202020;
}
@media screen and (max-width: 574px) {
  .footer__btn a {
    width: 16.2rem;
    height: 4.4rem;
    font-size: 1.5rem;
  }
}
.footer__btn a:hover {
  transform: scale(1.05);
}