@charset "UTF-8";
html {
  scroll-behavior: smooth;
  color: #1F1D1D;
  font-weight: 500;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  scroll-padding-top: -80px;
}

html body.hidden {
  overflow: hidden;
}

#wpadminbar {
  display: none;
}

.sec-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03em;
}

#header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

#header .inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .inner .logo {
  width: 249px;
  height: 51px;
}

#header .inner .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#header .inner nav {
  width: 100%;
  max-width: 764px;
}

#header .inner nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

#header .inner nav ul li .cta {
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  color: rgb(9, 10, 10);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

#header .inner nav ul li .cta span {
  margin: 0;
  color: inherit;
  letter-spacing: 0;
}

#header .inner nav ul li .cta:before {
  content: "›";
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgb(9, 10, 10);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  #header .inner nav ul li .cta:before {
    padding-bottom: 3px;
    padding-left: 2px;
  }
}

#header .inner nav ul li .cta-contact {
  background-color: rgb(9, 10, 10);
  border: solid 1px rgb(9, 10, 10);
  color: rgb(255, 215, 0);
}

#header .inner nav ul li .cta-contact:before {
  background: rgb(255, 215, 0);
  color: rgb(9, 10, 10);
}

#header .inner nav ul li .cta-contact:hover {
  opacity: 0.6;
}

#header .inner nav ul li .cta-trial {
  background: rgb(255, 215, 0);
}

#header .inner nav ul li .cta-trial:hover {
  opacity: 0.6;
}

body.is-main-trial-hidden #header .cta-trial,
body.is-main-trial-hidden .footer-cta-area .footer-cta .cta-trial {
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.45), 0 10px 22px rgba(255, 215, 0, 0.28);
  animation: trialButtonGlow 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  body.is-main-trial-hidden #header .cta-trial,
  body.is-main-trial-hidden .footer-cta-area .footer-cta .cta-trial {
    animation: none;
  }
}
#header .inner .header_hamburger {
  display: none;
}

#header .filter {
  display: none;
}

@media screen and (max-width: 1023px) {
  #header {
    height: 60px;
  }
  #header .inner {
    width: 100%;
  }
  #header .inner .logo {
    width: 200px;
    height: 40px;
    margin-left: 20px;
  }
  #header .inner nav {
    display: none;
  }
  #header .inner .header_hamburger {
    display: flex;
    z-index: 200;
    width: 60px;
    height: 60px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e63838;
  }
  #header .inner .header_hamburger .hamburger .hamburger-line {
    display: block;
    width: 23px;
    height: 1.5px;
    border-radius: 100px;
    background-color: #fff;
    margin: 2.5px 0;
    transition: all 0.3s ease;
  }
  #header .inner .header_hamburger .hamburger.is-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(1px, 1px);
  }
  #header .inner .header_hamburger .hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  #header .inner .header_hamburger .hamburger.is-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  #header .filter {
    opacity: 1;
    display: none;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 0;
    overflow: scroll;
  }
  #header .filter nav {
    padding-top: 60px;
    color: #4b4b4b;
    position: relative;
  }
  #header .filter nav .nav li {
    display: block;
  }
  #header .filter nav .nav li a {
    display: block;
    border-bottom: solid 1px #F0F3F5;
    padding: 10px 0 10px 40px;
  }
  #header .filter nav .nav li a.cta {
    width: fit-content;
    min-width: 261px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 100px;
    margin: 5px auto 0;
    padding: 14px 32px;
  }
  #header .filter nav .nav li a.cta span {
    color: inherit;
    letter-spacing: 0;
    margin: 0;
  }
  #header .filter nav .nav li a.cta-contact {
    background-color: rgb(9, 10, 10);
    border: solid 1px rgb(9, 10, 10);
    color: rgb(255, 215, 0);
  }
  #header .filter nav .nav li a.cta-trial {
    background-color: rgb(255, 215, 0);
  }
  #header .filter nav .nav li .microcopy {
    display: block;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
  }
  #header .filter.is-open {
    display: block;
    opacity: 1;
  }
}
#lp_ver2 {
  padding-top: 50px;
}

#lp_ver2 .password-protected {
  min-height: calc(100vh - 50px);
  padding: 120px 4%;
  background: var(--key-light, #fdf0f2);
}

#lp_ver2 .password-protected__wrapper {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 36px 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(31, 29, 29, 0.08);
}

#lp_ver2 .password-protected__wrapper p {
  font-size: 16px;
  line-height: 1.7;
}

#lp_ver2 .password-protected__wrapper label {
  display: block;
  margin-top: 18px;
  font-weight: 700;
}

#lp_ver2 .password-protected__wrapper input[type=password] {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: solid 1px #d7dde2;
  border-radius: 6px;
}

#lp_ver2 .password-protected__wrapper input[type=submit] {
  display: block;
  width: 220px;
  margin: 22px auto 0;
  padding: 12px 24px;
  border: solid 1px rgb(9, 10, 10);
  border-radius: 100px;
  background: rgb(9, 10, 10);
  color: rgb(255, 215, 0);
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  #lp_ver2 {
    padding-top: 60px;
  }
}
#lp_ver2 .mainvisual {
  position: relative;
  height: 100vh;
  max-height: 780px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  #lp_ver2 .mainvisual {
    overflow: hidden;
  }
}
#lp_ver2 .mainvisual .img {
  width: 59%;
  position: absolute;
  top: 180px;
  right: -25px;
}

#lp_ver2 .mainvisual .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#lp_ver2 .mainvisual__copy {
  margin-left: 30px;
  padding-top: 140px;
}

#lp_ver2 .mainvisual__copy .for {
  font-size: 28px;
}

#lp_ver2 .mainvisual__copy h2 span {
  font-size: 3.5rem;
  letter-spacing: 0.03em;
  line-height: 1.34;
  font-weight: bold;
}

#lp_ver2 .mainvisual__copy h2 span:first-child {
  margin-left: -10px;
}

#lp_ver2 .mainvisual__cta {
  margin: 60px 0 0 30px;
}

#lp_ver2 .mainvisual__cta .sub {
  font-size: 1.5rem;
  line-height: 1.4;
}

#lp_ver2 .mainvisual__cta .sub .accent {
  font-weight: bold;
  color: #e63838;
}

#lp_ver2 .mainvisual__cta .cta-btn {
  width: 312px;
  height: 48px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: #fff;
  background-color: #e63838;
  transition: all 0.4s ease;
}

#lp_ver2 .mainvisual__cta .cta-btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1200px) {
  #lp_ver2 .mainvisual {
    max-height: 600px;
  }
  #lp_ver2 .mainvisual__copy .for {
    font-size: 20px;
  }
  #lp_ver2 .mainvisual__copy h2 span {
    font-size: 36px;
  }
  #lp_ver2 .mainvisual__cta {
    margin: 60px 0 0 30px;
  }
  #lp_ver2 .mainvisual__cta .sub {
    font-size: 1rem;
  }
}
#lp_ver2 .problem {
  padding: 90px 0;
  width: 100%;
  box-shadow: 3px 3px 10px rgba(0, 56, 72, 0.16);
  background-color: #fff;
  background-image: linear-gradient(#F2F2F2 1px, transparent 1px), linear-gradient(90deg, #F2F2F2 1px, transparent 1px);
  background-size: 20px 20px;
  background-repeat: repeat;
  position: relative;
  z-index: 1;
}

#lp_ver2 .problem__wrapper {
  width: 100%;
  max-width: 732px;
  margin: 0 auto;
  background-color: transparent;
}

#lp_ver2 .problem__wrapper .sub-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 38px;
  line-height: 24px;
}

#lp_ver2 .problem__wrapper .problem__list {
  display: flex;
  flex-direction: column;
  height: 132px;
  justify-content: space-between;
}

#lp_ver2 .problem__wrapper .problem__list .list-item p {
  font-size: 1.125rem;
  padding-left: 31px;
  position: relative;
}

#lp_ver2 .problem__wrapper .problem__list .list-item p::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 23px;
  background: url(../images/lp/icon_check.png) no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
}

#lp_ver2 .problem:before {
  content: "";
  display: block;
  position: absolute;
  width: 230px;
  height: 75px;
  background: url(../images/lp/arrow.png) no-repeat;
  background-size: contain;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}

#lp_ver2 .solution {
  padding: 100px 0 90px;
  background-color: #F0F3F5;
}

#lp_ver2 .solution__wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

#lp_ver2 .solution__wrapper .sec-title {
  width: 680px;
  margin: 0 auto 23px;
}

#lp_ver2 .solution__wrapper .sec-title .accent {
  color: #e63838;
}

#lp_ver2 .solution__wrapper .sec-title .small {
  font-size: 18px;
  text-align: left;
  display: block;
}

#lp_ver2 .solution__wrapper .title-exp {
  margin-bottom: 40px;
}

#lp_ver2 .solution__wrapper .title-exp p {
  text-align: center;
}

#lp_ver2 .solution__wrapper .solution-item__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
  width: 510px;
  margin: 0 auto;
}

#lp_ver2 .solution__wrapper .solution-item__list .solution-item__item {
  width: 110px;
}

#lp_ver2 .solution__wrapper .solution-item__list .solution-item__item .img {
  width: 110px;
  height: 110px;
  margin-bottom: 3px;
}

#lp_ver2 .solution__wrapper .solution-item__list .solution-item__item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#lp_ver2 .solution__wrapper .solution-item__list .solution-item__item .text p {
  font-size: 12px;
  text-align: center;
}

#lp_ver2 .solution__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 100px;
  background: url(../images/lp/bubble_text.png) no-repeat;
  background-size: contain;
  top: 155px;
  right: -35px;
}

@media screen and (max-width: 1023px) {
  #lp_ver2 .solution__wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
  }
  #lp_ver2 .solution__wrapper:before {
    content: "";
    display: block;
    position: absolute;
    width: 120px;
    height: 80px;
    background: url(../images/lp/bubble_text.png) no-repeat;
    background-size: contain;
    top: 155px;
    right: 0;
  }
}
#lp_ver2 .function {
  padding: 100px 0 90px;
  overflow: hidden;
}

#lp_ver2 .function__wrapper .sec-title {
  width: 680px;
  margin: 0 auto 50px;
}

#lp_ver2 .function__wrapper .sec-title .accent {
  color: #e63838;
}

#lp_ver2 .function__wrapper .sec-title .small {
  font-size: 18px;
  text-align: left;
  display: block;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item {
  display: flex;
  margin-bottom: 60px;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area {
  width: 50%;
  padding: 0 0 20px 30px;
  position: relative;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area .img {
  width: 518px;
  height: 388px;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area::before {
  content: "";
  display: block;
  position: absolute;
  width: 1000px;
  height: 240px;
  background-image: radial-gradient(at 71% 17%, hsl(0, 49%, 88%) 0%, hsla(0, 49%, 88%, 0) 100%), radial-gradient(at 35% 63%, hsl(41, 71%, 69%) 0%, hsla(41, 71%, 69%, 0) 100%), radial-gradient(at 59% 52%, hsl(0, 70%, 78%) 0%, hsla(0, 70%, 78%, 0) 100%), radial-gradient(at 83% 82%, hsl(0, 49%, 88%) 0%, hsla(0, 49%, 88%, 0) 100%), radial-gradient(at 98% 50%, hsl(41, 71%, 69%) 0%, hsla(41, 71%, 69%, 0) 100%), radial-gradient(at 88% 40%, hsl(0, 70%, 78%) 0%, hsla(0, 70%, 78%, 0) 100%);
  bottom: 0;
  left: 0;
  z-index: -1;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area {
  width: 50%;
  padding: 0 2.5% 0 5%;
  margin-top: 50px;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 17px;
  position: relative;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area h3::before {
  content: "";
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  content: "01";
  font-size: 211px;
  color: #F0D3D3;
  z-index: -1;
  top: -110px;
  left: 0;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .text {
  margin-bottom: 50px;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .point {
  background-color: #F0F3F5;
  padding: 43px 10px 28px 30px;
  position: relative;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .point ul li {
  padding-left: 30px;
  position: relative;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .point ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../images/lp/icon_check-gray.png) no-repeat;
  background-size: contain;
  top: 2px;
  left: 0;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .point ul li:first-child {
  margin-bottom: 15px;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .point::before {
  content: "";
  display: block;
  position: absolute;
  width: 148px;
  height: 52px;
  background: url(../images/lp/point.png) no-repeat;
  background-size: contain;
  top: -24px;
  left: 0;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) {
  flex-direction: row-reverse;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .text-area {
  padding: 0 5% 0 2.5%;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .img-area {
  display: flex;
  justify-content: end;
  padding: 0 30px 20px 0;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .img-area::before {
  left: inherit;
  right: 0;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:last-child {
  margin-bottom: 0;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(2) .text-area h3::before {
  content: "02";
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(3) .text-area h3::before {
  content: "03";
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(4) .img-area .img {
  width: 521px;
  height: 345px;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(4) .text-area h3::before {
  content: "04";
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(5) .img-area .img {
  width: 503px;
  height: 360px;
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(5) .text-area h3::before {
  content: "05";
}

#lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  #lp_ver2 .function__wrapper .sec-title {
    margin: 0 auto;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item {
    flex-direction: column;
    margin-bottom: 60px;
    position: relative;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area {
    width: 100%;
    padding: 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area .img {
    margin: 0 auto;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area::before {
    width: 80%;
    height: 240px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area {
    width: 100%;
    padding: 0 10%;
    margin-top: 50px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area h3 {
    font-size: 2.5rem;
    margin-bottom: 17px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area h3::before {
    font-size: 130px;
    top: -60px;
    left: 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .text {
    margin-bottom: 20px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .point.pc {
    display: none;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) {
    flex-direction: column;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .text-area {
    padding: 0 10%;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .img-area {
    padding: 0;
    display: block;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .img-area::before {
    right: inherit;
    left: 50%;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:last-child {
    margin-bottom: 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(4) .img-area .img {
    width: 521px;
    height: 345px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(5) .img-area .img {
    width: 503px;
    height: 360px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp {
    display: block;
    background-color: #F0F3F5;
    padding: 43px 10px 28px 30px;
    position: relative;
    width: 80%;
    margin: 60px auto 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp ul li {
    padding-left: 30px;
    position: relative;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp ul li::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/lp/icon_check-gray.png) no-repeat;
    background-size: contain;
    top: 2px;
    left: 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp ul li:first-child {
    margin-bottom: 15px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp::before {
    content: "";
    display: block;
    position: absolute;
    width: 148px;
    height: 52px;
    background: url(../images/lp/point.png) no-repeat;
    background-size: contain;
    top: -24px;
    left: 0;
  }
}
#lp_ver2 .cta-area {
  background-color: rgba(31, 29, 29, 0.9);
  width: 100%;
  padding: 45px 0 60px;
  position: relative;
}

#lp_ver2 .cta-area .sec-title {
  color: #fff;
  margin-bottom: 45px;
}

#lp_ver2 .cta-area__wrapper {
  width: 725px;
  margin: 0 auto;
  background-color: #fff;
}

#lp_ver2 .cta-area__wrapper ul {
  display: flex;
  align-items: center;
  justify-self: center;
}

#lp_ver2 .cta-area__wrapper ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 47px 0 55px;
}

#lp_ver2 .cta-area__wrapper ul li .cta {
  width: fit-content;
  min-width: 261px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  margin: 5px 20px 0;
  color: rgb(9, 10, 10);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

#lp_ver2 .cta-area__wrapper ul li .cta span {
  margin: 0;
  color: inherit;
  letter-spacing: 0;
}

#lp_ver2 .cta-area__wrapper ul li .cta:before {
  content: "›";
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgb(9, 10, 10);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  #lp_ver2 .cta-area__wrapper ul li .cta:before {
    padding-bottom: 3px;
    padding-left: 2px;
  }
}

#lp_ver2 .cta-area__wrapper ul li .cta-contact {
  background-color: rgb(9, 10, 10);
  border: solid 1px rgb(9, 10, 10);
  color: rgb(255, 215, 0);
}

#lp_ver2 .cta-area__wrapper ul li .cta-contact:before {
  background: rgb(255, 215, 0);
  color: rgb(9, 10, 10);
}

#lp_ver2 .cta-area__wrapper ul li .cta-contact:hover {
  opacity: 0.6;
}

#lp_ver2 .cta-area__wrapper ul li .cta-trial {
  background-color: rgb(255, 215, 0);
}

#lp_ver2 .cta-area__wrapper ul li .cta-trial:hover {
  opacity: 0.6;
}

#lp_ver2 .cta-area__wrapper ul li .microcopy {
  font-size: 14px;
}

#lp_ver2 .cta-area:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/lp/bg.jpeg) no-repeat;
  background-size: cover;
  z-index: -1;
  top: 0;
  left: 0;
}

#lp_ver2 .app {
  padding: 90px 0;
  background-image: radial-gradient(at 71% 17%, hsl(0, 49%, 88%) 0%, hsla(0, 49%, 88%, 0) 100%), radial-gradient(at 35% 63%, hsl(41, 71%, 69%) 0%, hsla(41, 71%, 69%, 0) 100%), radial-gradient(at 59% 52%, hsl(0, 70%, 78%) 0%, hsla(0, 70%, 78%, 0) 100%), radial-gradient(at 83% 82%, hsl(0, 49%, 88%) 0%, hsla(0, 49%, 88%, 0) 100%), radial-gradient(at 98% 50%, hsl(41, 71%, 69%) 0%, hsla(41, 71%, 69%, 0) 100%), radial-gradient(at 88% 40%, hsl(0, 70%, 78%) 0%, hsla(0, 70%, 78%, 0) 100%);
}

#lp_ver2 .app__wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

#lp_ver2 .app__wrapper .img {
  width: 450px;
  height: 450px;
}

#lp_ver2 .app__wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#lp_ver2 .app__wrapper .text {
  width: 540px;
}

#lp_ver2 .app__wrapper .text .app-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

#lp_ver2 .app__wrapper .text .about-app p {
  font-weight: normal;
  margin-bottom: 45px;
}

#lp_ver2 .app__wrapper .text .about-app .dlbtn {
  display: flex;
}

#lp_ver2 .app__wrapper .text .about-app .dlbtn img {
  width: 180px;
  margin-right: 40px;
}

@media screen and (max-width: 1023px) {
  #lp_ver2 .app {
    padding: 90px 2%;
  }
  #lp_ver2 .app__wrapper .img img {
    width: 80%;
    height: 80%;
    overflow: visible;
  }
}
#lp_ver2 .media {
  background-color: #F0F3F5;
  padding: 90px 0;
}

#lp_ver2 .media__wrapper {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}

#lp_ver2 .media__wrapper .sec-title {
  margin-bottom: 30px;
}

#lp_ver2 .media__wrapper .title-exp {
  text-align: center;
  margin-bottom: 45px;
}

#lp_ver2 .media__wrapper .img {
  width: 400px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 945/445;
  box-shadow: 6px 6px 10px #ccc;
}

#lp_ver2 .media__wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#lp_ver2 .case {
  padding: 90px 0;
  overflow: hidden;
}

#lp_ver2 .case .sec-title {
  margin-bottom: 60px;
}

#lp_ver2 .case .swiper-container {
  width: 95%;
  max-width: 1160px;
  margin: 0 auto;
}

#lp_ver2 .case .swiper-container .case__list {
  display: flex;
  justify-content: space-between;
}

#lp_ver2 .case .swiper-container .case__list .case-item .inner {
  display: block;
  width: 360px;
}

#lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__img {
  width: 100%;
  height: 240px;
  margin-bottom: 12px;
}

#lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__content {
  padding: 0 10px;
}

#lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__content h3 {
  color: #e63838;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 6px;
}

#lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__content .name {
  font-size: 0.875rem;
  margin-bottom: 6px;
}

#lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__content .description {
  padding-top: 8px;
  border-top: solid 1px #CDD6DD;
}

#lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__content .description span {
  display: inline-block;
  color: #e63838;
  margin-top: 5px;
}

#lp_ver2 .case .swiper-container .swiper-scrollbar {
  width: 580px;
  height: 5px;
  margin: 40px auto 0;
  background-color: #E6E6E6;
  border-radius: 100px;
}

#lp_ver2 .case .swiper-container .swiper-scrollbar .swiper-scrollbar-drag {
  height: 5px;
  background-color: #333;
  border-radius: 100px;
}

#lp_ver2 .price {
  background-color: #F0F3F5;
  padding: 90px 0;
}

#lp_ver2 .price__wrapper {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}

#lp_ver2 .price__wrapper .sec-title {
  margin-bottom: 30px;
}

#lp_ver2 .price__wrapper .title-exp {
  text-align: center;
  margin-bottom: 45px;
}

#lp_ver2 .price__wrapper .price-area {
  display: flex;
  text-align: center;
  justify-content: space-between;
  margin-bottom: 100px;
  position: relative;
}

#lp_ver2 .price__wrapper .price-area .price-card {
  background-color: #F0D3D3;
  padding: 20px;
  width: 46%;
}

#lp_ver2 .price__wrapper .price-area .price-card h3 {
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

#lp_ver2 .price__wrapper .price-area .price-card .price-text {
  margin-bottom: 20px;
  font-size: 1.375rem;
  height: 49px;
  position: relative;
}

#lp_ver2 .price__wrapper .price-area .price-card .price-text .num {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-right: 5px;
  line-height: 49px;
}

#lp_ver2 .price__wrapper .price-area .price-card .price-text.torikeshi:before {
  content: "";
  display: block;
  position: absolute;
  width: 200px;
  height: 2px;
  background-color: #1F1D1D;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
}

#lp_ver2 .price__wrapper .price-area .price-card .note {
  background-color: #fff;
  padding: 10px 0;
  height: 44px;
}

#lp_ver2 .price__wrapper .price-area .price-card .note p {
  position: relative;
  font-size: 1.25rem;
  line-height: 24px;
}

#lp_ver2 .price__wrapper .price-area .price-card .note p .accent {
  color: #e63838;
  font-weight: bold;
}

#lp_ver2 .price__wrapper .price-area .price-card .note p.zero:before {
  content: "0";
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-shadow: 2px 0 #98A6B5;
  color: #e63838;
  font-size: 75px;
  display: inline-block;
  position: absolute;
  bottom: 15px;
  left: calc(50% + 18px);
  transform: translateX(-50%);
}

#lp_ver2 .price__wrapper .price-area::before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 40px;
  background: url(../images/lp/tasu.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#lp_ver2 .price__wrapper .tokuten ul {
  position: relative;
  width: 420px;
  margin: 0 auto;
}

#lp_ver2 .price__wrapper .tokuten ul li {
  position: relative;
  padding-left: 30px;
  font-size: 1.5rem;
  line-height: 1.8;
}

#lp_ver2 .price__wrapper .tokuten ul li .accent {
  color: #e63838;
}

#lp_ver2 .price__wrapper .tokuten ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  background: url(../images/lp/icon_check-gray.png) no-repeat;
  background-size: contain;
  top: 10px;
  left: 0;
}

#lp_ver2 .price__wrapper .tokuten ul::before {
  content: "";
  display: block;
  position: absolute;
  width: 277px;
  height: 52px;
  background: url(../images/lp/tokuten.png) no-repeat;
  background-size: contain;
  top: -55px;
  left: 140px;
  transform: translateX(-50%);
}

#lp_ver2 .flow {
  padding: 90px 0;
}

#lp_ver2 .flow__wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

#lp_ver2 .flow__wrapper .sec-title {
  margin-bottom: 40px;
}

#lp_ver2 .flow__wrapper .flow__tabs {
  display: none;
}

#lp_ver2 .flow__wrapper .flow__patterns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

#lp_ver2 .flow__wrapper .flow-pattern {
  padding: 28px;
  border: solid 1px #f2f4f5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(31, 29, 29, 0.06);
}

#lp_ver2 .flow__wrapper .flow-pattern__title {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: solid 2px #e63838;
  color: rgb(9, 10, 10);
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

#lp_ver2 .flow__wrapper .flow__list .flow-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #f8fafb;
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon {
  position: relative;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: solid 2px #e63838;
  border-radius: 50%;
  background: #fff;
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon--register:before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='5' width='18' height='26' rx='2' stroke='%23090A0A' stroke-width='2.4'/%3E%3Cpath d='M13 13h8M13 18h8M13 23h5' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M23 4v6h6' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon--payment:before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='9' width='26' height='18' rx='3' stroke='%23090A0A' stroke-width='2.4'/%3E%3Cpath d='M5 15h25M10 22h6' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M24 21l2.2 2.2L31 18.5' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon--start:before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='5' width='22' height='28' rx='3' stroke='%23090A0A' stroke-width='2.4'/%3E%3Cpath d='M14 28h6' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M12 23v-5M17 23v-9M22 23V11' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M11 12l4-3 4 2 4-5' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon--contact:before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='9' width='24' height='18' rx='3' stroke='%23090A0A' stroke-width='2.4'/%3E%3Cpath d='M7 12l10 8 10-8' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon--consult:before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10.5C7 7.5 9.5 5 12.5 5h9C24.5 5 27 7.5 27 10.5v6C27 19.5 24.5 22 21.5 22H16l-6 5v-5h-2.5C4.5 22 2 19.5 2 16.5v-2' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 12h10M12 17h6' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon--support:before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='5' width='22' height='28' rx='3' stroke='%23090A0A' stroke-width='2.4'/%3E%3Cpath d='M14 28h6' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M12 23v-5M17 23v-9M22 23V11' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M11 12l4-3 4 2 4-5' stroke='%23090A0A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .text {
  width: 100%;
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .text h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 5px;
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .text p .accent {
  color: #e63838;
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-trial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  background: rgb(255, 215, 0);
  color: rgb(9, 10, 10);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

#lp_ver2 .flow__wrapper .flow__list .flow-item .flow-trial-button:before {
  content: "›";
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgb(9, 10, 10);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  #lp_ver2 .flow__wrapper .flow__list .flow-item .flow-trial-button:before {
    padding-bottom: 3px;
    padding-left: 2px;
  }
}

#lp_ver2 .flow__wrapper .flow__list .flow-item:last-child {
  margin-bottom: 0;
}

#lp_ver2 .faq {
  padding: 90px 0;
  background-color: #F0F3F5;
}

#lp_ver2 .faq__wrapper .sec-title {
  margin-bottom: 30px;
}

#lp_ver2 .faq__wrapper .slide-nav {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

#lp_ver2 .faq__wrapper .slide-nav .answer {
  border-bottom: solid 0.5px #CDD6DD;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .menu-title {
  position: relative;
  padding: 15px 0 15px 20px;
  background-color: #fff;
  transition: all 0.4s ease;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .menu-title.hasChild {
  position: relative;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .menu-title.hasChild span {
  display: inline-block;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .menu-title.hasChild:before, #lp_ver2 .faq__wrapper .slide-nav .answer .menu-title.hasChild:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 1.5px;
  background-color: #98A6B5;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .menu-title.hasChild:before {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

#lp_ver2 .faq__wrapper .slide-nav .answer .menu-title.hasChild:after {
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.3s ease;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .menu-title.hasChild.open:after {
  transform: rotate(0deg);
}

#lp_ver2 .faq__wrapper .slide-nav .answer .menu-title:hover {
  cursor: pointer;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .slide-child-nav {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .slide-child-nav .menu-title {
  display: block;
  padding-left: 20px;
  margin: 15px 0;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .slide-child-nav .menu-detail {
  font-weight: 500;
  margin: 20px 0;
  padding-left: 20px;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .slide-child-nav .menu-detail a {
  color: #e63838;
  font-weight: 500;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .slide-child-nav .nav-menu {
  position: relative;
}

#lp_ver2 .faq__wrapper .slide-nav .answer .slide-child-nav.open {
  height: auto;
}

#lp_ver2 .form {
  width: 95%;
  max-width: 830px;
  margin: 0 auto;
  padding: 90px 0;
}

#lp_ver2 .form .sec-title {
  margin-bottom: 30px;
}

#lp_ver2 .form .campaign {
  font-weight: bold;
  margin-bottom: 20px;
  background: #e63838;
  padding: 5px;
  color: #fff;
}

#lp_ver2 .form .caution {
  line-height: 1.3;
  font-size: 12px;
  margin: 10px 0 20px;
  font-weight: 400;
}

#lp_ver2 .form__wrapper {
  margin-top: 30px;
  width: 100%;
  margin: 0 auto;
}

#lp_ver2 .form__wrapper .form-row {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0 auto 10px;
  padding-left: 5px;
}

#lp_ver2 .form__wrapper .form-row label {
  width: 100%;
}

#lp_ver2 .form__wrapper .form-row label .required {
  color: #e63838;
  font-size: 0.75rem;
  padding-left: 10px;
}

#lp_ver2 .form__wrapper .form-row span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

#lp_ver2 .form__wrapper .form-row span.wpcf7-form-control-wrap textarea {
  height: 90px !important;
}

#lp_ver2 .form__wrapper .form-row .form-label {
  display: flex;
  align-items: center;
}

#lp_ver2 .form__wrapper .form-row .form-label span {
  margin-left: 10px;
  font-size: 12px;
  color: #e63838;
}

#lp_ver2 .form__wrapper .form-row input,
#lp_ver2 .form__wrapper .form-row textarea,
#lp_ver2 .form__wrapper .form-row select {
  background-color: #f2f4f5;
  border-radius: 10px;
  padding: 15px 20px;
  width: 100%;
}

#lp_ver2 .form__wrapper .form-row textarea {
  height: 90px !important;
}

#lp_ver2 .form__wrapper .form-row input.wpcf7-submit {
  background-color: #e63838 !important;
  color: #fff !important;
}

#lp_ver2 .form__wrapper .form-row input::placeholder,
#lp_ver2 .form__wrapper .form-row textarea::placeholder {
  color: #999;
  font-size: 14px;
}

#lp_ver2 .form__wrapper .form-row.hidden {
  display: none;
}

#lp_ver2 .form__wrapper .form-row .notion {
  margin-top: 10px !important;
}

#lp_ver2 .form__wrapper .form-row .notion a {
  color: #e63838;
}

#lp_ver2 .form__wrapper .form-row:last-child {
  border-bottom: none;
}

#lp_ver2 .form__wrapper .form-row:last-child p {
  margin: 30px auto;
}

#lp_ver2 .form__wrapper .sep {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 45px;
  background-color: #e7e7e7;
  margin-bottom: 10px;
  padding: 0 10px;
}

#lp_ver2 .form__wrapper .sep p {
  display: inline-block;
}

#lp_ver2 .form__wrapper .sep span {
  display: inline-block;
  padding: 2px 5px;
  background: #e63838;
  font-size: 0.625rem;
  color: #fff;
}

#lp_ver2 .form__wrapper button {
  display: block;
  width: 200px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#lp_ver2 .form__wrapper button.submit {
  color: #fff;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 45px;
  margin: 10px 0 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #lp_ver2 .form__wrapper button.submit {
    width: 100%;
    margin: 10px auto 0;
  }
}

#lp_ver2 .form__wrapper button.submit:hover {
  scale: 1.05;
}

#lp_ver2 .form__wrapper button.add-button {
  margin-left: 5px;
  padding-left: 20px;
  text-align: left;
  position: relative;
}

#lp_ver2 .form__wrapper button.add-button:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 2px;
  left: 0;
  background: url(../images/regi/add.png) no-repeat;
  background-size: contain;
}

.footer__wrapper {
  background-color: #CDD6DD;
  padding: 45px 0;
}

.footer__wrapper .flex {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer__wrapper .flex .logo {
  width: 249px;
  height: 51px;
}

.footer__wrapper .flex .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer__wrapper .flex .info p a {
  font-weight: normal;
}

.footer__wrapper .copyright {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 45px;
}

.footer-cta-area {
  display: none;
}

@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 24px;
  }
  #header {
    height: 60px;
  }
  #header .inner .logo {
    width: 200px;
    height: 40px;
    margin-left: 20px;
  }
  #lp_ver2 .mainvisual {
    height: auto;
    padding-bottom: 45px;
  }
  #lp_ver2 .mainvisual .img {
    width: 90%;
    top: 190px;
    right: -40%;
    transform: translateX(-50%);
  }
  #lp_ver2 .mainvisual__copy {
    width: 310px;
    margin: 0 auto;
    padding-top: 45px;
  }
  #lp_ver2 .mainvisual__copy .for {
    font-size: 1.125rem;
  }
  #lp_ver2 .mainvisual__copy h2 span {
    font-size: 1.875rem;
  }
  #lp_ver2 .mainvisual__copy h2 span:first-child {
    margin-left: -10px;
  }
  #lp_ver2 .mainvisual__cta {
    margin: 290px auto 0;
  }
  #lp_ver2 .mainvisual__cta .sub {
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
  }
  #lp_ver2 .mainvisual__cta .cta-btn {
    width: 312px;
    height: 48px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: #fff;
    background-color: #e63838;
  }
  #lp_ver2 .problem {
    padding: 45px 3%;
    background-size: 15px 15px;
  }
  #lp_ver2 .problem__wrapper .sub-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #lp_ver2 .problem__wrapper .problem__list {
    height: auto;
    justify-content: space-between;
  }
  #lp_ver2 .problem__wrapper .problem__list .list-item p {
    font-size: 1rem;
    padding-left: 25px;
  }
  #lp_ver2 .problem__wrapper .problem__list .list-item p::before {
    width: 20px;
    height: 18px;
    top: 4px;
  }
  #lp_ver2 .problem:before {
    width: 120px;
    bottom: -57px;
  }
  #lp_ver2 .solution {
    padding: 50px 4% 45px;
  }
  #lp_ver2 .solution__wrapper .sec-title {
    width: 100%;
    margin: 0 auto 23px;
    text-align: left;
  }
  #lp_ver2 .solution__wrapper .sec-title .small {
    font-size: 16px;
  }
  #lp_ver2 .solution__wrapper .title-exp {
    margin-bottom: 73px;
  }
  #lp_ver2 .solution__wrapper .title-exp p {
    text-align: left;
    font-size: 0.875rem;
  }
  #lp_ver2 .solution__wrapper .solution-item__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
    width: 320px;
  }
  #lp_ver2 .solution__wrapper .solution-item__list .solution-item__item {
    width: 100%;
  }
  #lp_ver2 .solution__wrapper .solution-item__list .solution-item__item .img {
    width: 100%;
    height: auto;
    margin-bottom: 2px;
  }
  #lp_ver2 .solution__wrapper:before {
    width: 120px;
    height: 80px;
    top: 207px;
    right: -10px;
  }
  #lp_ver2 .function {
    padding: 45px 4%;
  }
  #lp_ver2 .function__wrapper .sec-title {
    width: 100%;
    margin: 0 auto;
  }
  #lp_ver2 .function__wrapper .sec-title .small {
    font-size: 18px;
    text-align: left;
    display: block;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item {
    margin-bottom: 30px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area {
    width: 100%;
    padding: 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area .img {
    width: 320px;
    height: auto;
    margin: 0 auto;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .img-area::before {
    width: 100%;
    height: 150px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area h3::before {
    font-size: 80px;
    top: -60px;
    left: 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .text {
    margin-bottom: 20px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .text p {
    font-size: 0.875rem;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .text-area .point.pc {
    display: none;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) {
    flex-direction: column;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .text-area {
    padding: 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .img-area {
    padding: 0;
    display: block;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(even) .img-area::before {
    right: inherit;
    left: 50%;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:last-child {
    margin-bottom: 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(4) .img-area .img {
    width: 320px;
    height: auto;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item:nth-child(5) .img-area .img {
    width: 320px;
    height: auto;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp {
    padding: 32px 10px 20px 20px;
    width: 100%;
    margin: 50px auto 0;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp ul li {
    padding-left: 20px;
    font-size: 0.875rem;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp ul li::before {
    width: 15px;
    height: 15px;
    top: 2px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp ul li:first-child {
    margin-bottom: 5px;
  }
  #lp_ver2 .function__wrapper .function-item__list .function-item__item .point.sp::before {
    width: 110px;
    top: -14px;
  }
  #lp_ver2 .cta-area__wrapper {
    width: 340px;
    padding-top: 20px;
  }
  #lp_ver2 .cta-area__wrapper ul {
    flex-direction: column;
  }
  #lp_ver2 .cta-area__wrapper ul li {
    padding: 0;
    margin-bottom: 20px;
  }
  #lp_ver2 .cta-area__wrapper ul li .cta {
    min-width: 261px;
  }
  #lp_ver2 .cta-area__wrapper ul li .microcopy {
    font-size: 14px;
  }
  #lp_ver2 .app {
    height: 560px;
    overflow: hidden;
    padding: 45px 4%;
  }
  #lp_ver2 .app__wrapper {
    flex-direction: column-reverse;
    width: 100%;
    margin: 0 auto;
  }
  #lp_ver2 .app__wrapper .img {
    width: 300px;
    height: auto;
    margin: 20px 30px 0 0;
  }
  #lp_ver2 .app__wrapper .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #lp_ver2 .app__wrapper .text {
    width: 100%;
  }
  #lp_ver2 .app__wrapper .text .app-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  #lp_ver2 .app__wrapper .text .about-app p {
    font-size: 0.75rem;
    margin-bottom: 20px;
  }
  #lp_ver2 .app__wrapper .text .about-app .dlbtn {
    justify-content: center;
  }
  #lp_ver2 .app__wrapper .text .about-app .dlbtn img {
    width: 100px;
    margin-right: 20px;
  }
  #lp_ver2 .media {
    padding: 45px 0;
  }
  #lp_ver2 .media__wrapper .sec-title {
    margin-bottom: 30px;
  }
  #lp_ver2 .media__wrapper .title-exp {
    text-align: center;
    margin-bottom: 20px;
  }
  #lp_ver2 .media__wrapper .img {
    width: 90%;
    max-width: 400px;
    box-shadow: 3px 3px 10px #ccc;
  }
  #lp_ver2 .case {
    padding: 45px 0;
  }
  #lp_ver2 .case .sec-title {
    margin-bottom: 30px;
  }
  #lp_ver2 .case .swiper-container .case__list .case-item .inner {
    width: 280px;
  }
  #lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__img {
    height: 160px;
  }
  #lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__content h3 {
    font-size: 1rem;
  }
  #lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__content .name {
    font-size: 0.75rem;
  }
  #lp_ver2 .case .swiper-container .case__list .case-item .inner .case-item__content .description {
    font-size: 0.875rem;
  }
  #lp_ver2 .price {
    padding: 45px 4%;
  }
  #lp_ver2 .price__wrapper .sec-title {
    margin-bottom: 20px;
  }
  #lp_ver2 .price__wrapper .title-exp {
    text-align: left;
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
  #lp_ver2 .price__wrapper .price-area {
    flex-direction: column;
    margin-bottom: 30px;
  }
  #lp_ver2 .price__wrapper .price-area .price-card {
    padding: 20px;
    width: 300px;
    margin: 0 auto 30px;
  }
  #lp_ver2 .price__wrapper .price-area .price-card h3 {
    margin-bottom: 5px;
    font-size: 1.125rem;
  }
  #lp_ver2 .price__wrapper .price-area .price-card .price-text {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  #lp_ver2 .price__wrapper .price-area .price-card .price-text .num {
    font-size: 1.875rem;
  }
  #lp_ver2 .price__wrapper .price-area .price-card .price-text.torikeshi:before {
    left: 25px;
  }
  #lp_ver2 .price__wrapper .price-area .price-card .note {
    padding: 5px 0;
    height: 30px;
  }
  #lp_ver2 .price__wrapper .price-area .price-card .note p {
    font-size: 1rem;
    line-height: 18px;
  }
  #lp_ver2 .price__wrapper .price-area .price-card .note p.zero:before {
    text-shadow: 1px 0 #98A6B5;
    font-size: 3rem;
    bottom: 8px;
    left: calc(50% + 15px);
  }
  #lp_ver2 .price__wrapper .price-area::before {
    top: 46%;
  }
  #lp_ver2 .price__wrapper .tokuten ul {
    width: 100%;
  }
  #lp_ver2 .price__wrapper .tokuten ul li {
    padding-left: 23px;
    margin-left: 25px;
    font-size: 1.0625rem;
  }
  #lp_ver2 .price__wrapper .tokuten ul li::before {
    width: 18px;
    height: 18px;
    top: 8px;
  }
  #lp_ver2 .price__wrapper .tokuten ul::before {
    width: 200px;
    top: -37px;
    left: 120px;
  }
  #lp_ver2 .flow {
    padding: 45px 4%;
  }
  #lp_ver2 .flow__wrapper .sec-title {
    margin-bottom: 20px;
  }
  #lp_ver2 .flow__wrapper .flow__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
    padding: 4px;
    border: solid 1px #e63838;
    border-radius: 100px;
    background: #fff;
  }
  #lp_ver2 .flow__wrapper .flow__tab {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 100px;
    color: rgb(9, 10, 10);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
  }
  #lp_ver2 .flow__wrapper .flow__tab.is-active {
    background: #e63838;
    color: #fff;
  }
  #lp_ver2 .flow__wrapper .flow__patterns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #lp_ver2 .flow__wrapper .flow-pattern {
    display: none;
  }
  #lp_ver2 .flow__wrapper .flow-pattern.is-active {
    display: block;
  }
  #lp_ver2 .flow__wrapper .flow-pattern {
    padding: 22px 18px;
  }
  #lp_ver2 .flow__wrapper .flow-pattern__title {
    margin-bottom: 20px;
    font-size: 1.125rem;
  }
  #lp_ver2 .flow__wrapper .flow__list .flow-item {
    gap: 14px;
    margin-bottom: 16px;
    padding: 16px;
  }
  #lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }
  #lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon:before {
    width: 28px;
    height: 28px;
  }
  #lp_ver2 .flow__wrapper .flow__list .flow-item .flow-icon:after {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  #lp_ver2 .flow__wrapper .flow__list .flow-item .text h3 {
    font-size: 1.125rem;
  }
  #lp_ver2 .flow__wrapper .flow__list .flow-item .text p {
    font-size: 0.875rem;
  }
  #lp_ver2 .faq {
    padding: 45px 4%;
  }
  #lp_ver2 .faq__wrapper .sec-title {
    margin-bottom: 30px;
  }
  #lp_ver2 .faq__wrapper .slide-nav .answer .menu-title {
    padding: 10px 45px 10px 20px;
  }
  #lp_ver2 .form {
    width: 340px;
    margin: 0 auto;
    padding: 45px 0;
  }
  #lp_ver2 .form .sec-title {
    margin-bottom: 20px;
  }
  .footer {
    margin-bottom: 60px;
  }
  .footer__wrapper {
    padding: 45px;
  }
  .footer__wrapper .flex {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    flex-direction: column;
  }
  .footer__wrapper .flex .logo {
    width: 100px;
    height: 25px;
    margin-bottom: 20px;
  }
  .footer__wrapper .flex .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .footer__wrapper .flex .info p a {
    font-size: 0.875rem;
  }
  .footer__wrapper .copyright {
    font-size: 10px;
    text-align: center;
    margin-top: 45px;
    color: #F0F3F5;
  }
  .footer-cta-area {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 55px;
    background-color: #fff;
    z-index: 20;
    position: fixed;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(90px);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .footer-cta-area .footer-cta {
    width: 96%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 40px;
    column-gap: 5px;
    padding: 8px 0 0;
    transition: all 0.3s ease;
  }
  .footer-cta-area .footer-cta .cta-trial,
  .footer-cta-area .footer-cta .cta-contact {
    border-radius: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-cta-area .footer-cta .cta-trial {
    background-color: rgb(255, 215, 0);
  }
  .footer-cta-area .footer-cta .cta-contact {
    border: solid 1px rgb(9, 10, 10);
    background-color: rgb(9, 10, 10);
  }
  .footer-cta-area .footer-cta .cta-trial a,
  .footer-cta-area .footer-cta .cta-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 25px;
  }
  .footer-cta-area .footer-cta .cta-trial a:before,
  .footer-cta-area .footer-cta .cta-contact a:before {
    content: "›";
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1024px) {
  .footer-cta-area .footer-cta .cta-trial a:before,
  .footer-cta-area .footer-cta .cta-contact a:before {
    padding-bottom: 3px;
    padding-left: 1px;
  }
}
@media screen and (max-width: 767px) {
  .footer-cta-area .footer-cta .cta-trial a:before {
    background: rgb(9, 10, 10);
    color: #fff;
  }
  .footer-cta-area .footer-cta .cta-contact a:before {
    background: rgb(255, 215, 0);
    color: rgb(9, 10, 10);
  }
  .footer-cta-area .footer-cta .cta-trial a p,
  .footer-cta-area .footer-cta .cta-contact a p {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .footer-cta-area .footer-cta .cta-trial a p {
    color: rgb(9, 10, 10);
  }
  .footer-cta-area .footer-cta .cta-contact a p {
    color: rgb(255, 215, 0);
  }
  .footer-cta-area .footer-cta .go-top {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .footer-cta-area .footer-cta .go-top img {
    width: 100%;
  }
  .footer-cta-area.footer-cta-scrolled {
    opacity: 1;
    transform: translateY(0);
  }
}
.breadcrumb {
  background-color: #f8f9fa;
  padding: 15px 0;
  margin-top: 80px;
}

.breadcrumb .inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.breadcrumb ul li:not(:last-child):after {
  content: ">";
  margin: 0 10px;
  color: #999;
}

.breadcrumb ul li a {
  color: #e63838;
  text-decoration: none;
}

.breadcrumb ul li a:hover {
  text-decoration: underline;
}

.breadcrumb ul li:last-child {
  color: #666;
}

@media screen and (max-width: 1023px) {
  .breadcrumb {
    margin-top: 60px;
    padding: 10px 0;
  }
  .breadcrumb ul {
    font-size: 12px;
  }
  .breadcrumb ul li:not(:last-child):after {
    margin: 0 5px;
  }
}
.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__text {
  flex: 1;
}

.hero__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #333;
}

.hero__subtitle {
  font-size: 14px;
  color: #8b0000;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero__tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero__tags .tag {
  background-color: #e63838;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.hero__image {
  flex: 0 0 400px;
}

.hero__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1023px) {
  .hero {
    padding: 40px 0;
  }
  .hero__content {
    flex-direction: column;
    gap: 30px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__image {
    flex: none;
    width: 100%;
  }
  .hero__image img {
    height: 250px;
  }
  .hero__tags {
    gap: 5px;
  }
  .hero__tags .tag {
    font-size: 10px;
    padding: 6px 12px;
  }
}
.challenge {
  padding: 80px 0;
}

.challenge .inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.challenge__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.challenge__item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: transform 0.3s ease;
}

.challenge__item:hover {
  transform: translateY(-5px);
}

.challenge__item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 15px;
  color: #8b0000;
}

.challenge__item p {
  color: #666;
  line-height: 1.6;
}

.challenge__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.challenge__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1023px) {
  .challenge {
    padding: 60px 0;
  }
  .challenge__content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .challenge__item {
    padding: 30px 20px;
  }
  .challenge__item h3 {
    font-size: 18px;
  }
}
#case-interview .interview {
  padding: 15px 0;
  background-color: #f8f9fa;
}

#case-interview .interview .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

#case-interview .interview__item {
  margin: 40px 0;
}

#case-interview .interview__item:first-of-type {
  margin-top: 60px;
}

#case-interview .interview__q, #case-interview .interview__a {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

#case-interview .interview__q p, #case-interview .interview__a p {
  flex: 1;
  line-height: 1.8;
  font-size: 16px;
}

#case-interview .interview__q {
  align-items: center;
}

#case-interview .interview__q p {
  font-size: 14px;
  color: #333;
}

#case-interview .interview__a {
  align-items: flex-start;
}

#case-interview .interview__a h3 {
  margin: 7px 0;
  font-size: 24px;
  font-weight: bold;
  color: #8b0000;
}

#case-interview .interview__label {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

#case-interview .interview .interview__q .interview__label {
  background-color: #e63838;
}

#case-interview .interview .interview__a .interview__label {
  background-color: #259020;
}

@media screen and (max-width: 1023px) {
  #case-interview .interview {
    padding: 1px;
  }
  #case-interview .interview__item {
    margin: 30px 0;
  }
  #case-interview .interview__item:first-of-type {
    margin-top: 40px;
  }
  #case-interview .interview__q, #case-interview .interview__a {
    gap: 15px;
  }
  #case-interview .interview__q p, #case-interview .interview__a p {
    font-size: 14px;
    line-height: 1.7;
  }
  #case-interview .interview__a h3 {
    font-size: 20px;
  }
  #case-interview .interview__label {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
#case-interview .effect {
  padding: 80px 0;
}

#case-interview .effect .inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

#case-interview .effect__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}

#case-interview .effect__item {
  text-align: center;
}

#case-interview .effect__number {
  font-size: 60px;
  font-weight: bold;
  color: #e63838;
  margin-bottom: 20px;
  position: relative;
}

#case-interview .effect__text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

#case-interview .effect__text p {
  color: #666;
  line-height: 1.6;
}

@media screen and (max-width: 1023px) {
  #case-interview .effect {
    padding: 60px 0;
  }
  #case-interview .effect__content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  #case-interview .effect__number {
    font-size: 48px;
  }
  #case-interview .effect__text h3 {
    font-size: 18px;
  }
}
#case-interview .other-cases {
  padding: 80px 0;
  background-color: #f8f9fa;
}

#case-interview .other-cases .inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

#case-interview .other-cases__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

@media screen and (max-width: 1023px) {
  #case-interview .other-cases {
    padding: 60px 0;
  }
  #case-interview .other-cases__list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
}
#case-interview .case-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

#case-interview .case-card:hover {
  transform: translateY(-5px);
}

#case-interview .case-card__img {
  width: 100%;
  height: 200px;
}

#case-interview .case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#case-interview .case-card__content {
  padding: 30px;
}

#case-interview .case-card__content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

#case-interview .case-card__name {
  color: #e63838;
  font-weight: 600;
  margin-bottom: 20px;
}

#case-interview .case-card__link {
  display: inline-flex;
  align-items: center;
  color: #e63838;
  text-decoration: none;
  font-weight: 600;
}

#case-interview .case-card__link:after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

#case-interview .case-card__link:hover:after {
  transform: translateX(5px);
}

@media screen and (max-width: 1023px) {
  #case-interview .case-card__img {
    height: 180px;
  }
  #case-interview .case-card__content {
    padding: 20px;
  }
  #case-interview .case-card__content h3 {
    font-size: 16px;
  }
}
#case-interview .sec-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #333;
  position: relative;
}

#case-interview .sec-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #e63838;
  margin: 20px auto 0;
}

@media screen and (max-width: 1023px) {
  #case-interview .sec-title {
    font-size: 28px;
  }
  #case-interview .sec-title:after {
    width: 50px;
    height: 2px;
    margin: 15px auto 0;
  }
}
#case-interview .cta-area {
  padding: 80px 0;
  text-align: center;
}

#case-interview .cta-area .sec-title {
  margin-bottom: 40px;
}

#case-interview .cta-area__wrapper ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}

#case-interview .cta-area__wrapper ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#case-interview .cta-area__wrapper ul li .microcopy {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

#case-interview .cta-area__wrapper ul li .cta {
  width: 280px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s ease;
}

#case-interview .cta-area__wrapper ul li .cta span {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin: 0 0 2px 20px;
  position: relative;
}

#case-interview .cta-area__wrapper ul li .cta span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background: url(../images/lp/icon_mail.png) no-repeat;
  background-size: contain;
}

#case-interview .cta-area__wrapper ul li .cta.red {
  background-color: #e63838;
}

#case-interview .cta-area__wrapper ul li .cta.red:hover {
  opacity: 0.6;
}

#case-interview .cta-area__wrapper ul li .cta.green {
  background-color: rgb(255, 215, 0);
}

#case-interview .cta-area__wrapper ul li .cta.green:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1023px) {
  #case-interview .cta-area {
    padding: 60px 0;
  }
  #case-interview .cta-area__wrapper ul {
    flex-direction: column;
    gap: 30px;
  }
  #case-interview .cta-area__wrapper ul li .cta {
    width: 260px;
    height: 50px;
  }
  #case-interview .cta-area__wrapper ul li .cta span {
    font-size: 14px;
    margin: 0 0 2px 18px;
  }
  #case-interview .cta-area__wrapper ul li .cta span:before {
    left: -20px;
    width: 14px;
    height: 10px;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

/* contact-renewal main visual */
#lp_ver2 {
  --key-light: #fdf0f2;
}

#lp_ver2 .mainvisual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: calc(100vh - 80px);
  max-height: none;
  padding: 60px;
  background: #f7f7f7;
}

#lp_ver2 .mainvisual__visual {
  min-width: 0;
}

#lp_ver2 .mainvisual .img {
  position: static;
  width: min(76%, 720px);
  margin: 36px auto 0;
}

#lp_ver2 .mainvisual .img img {
  object-fit: contain;
}

#lp_ver2 .mainvisual__copy {
  margin-left: 0;
  padding-top: 0;
  text-align: center;
}

#lp_ver2 .mainvisual__copy .for {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #e63838;
}

#lp_ver2 .mainvisual__copy h2 {
  margin-top: 5px;
}

#lp_ver2 .mainvisual__copy h2 span {
  font-size: 3rem;
}

#lp_ver2 .mainvisual__copy h2 span:first-child {
  margin-left: 0;
}

#lp_ver2 .mainvisual__cta {
  margin: 22px 0 0;
  text-align: center;
}

#lp_ver2 .mainvisual__cta .sub {
  font-size: 1.25rem;
}

#lp_ver2 .mainvisual__form.form {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

#lp_ver2 .mainvisual__trial-panel,
#lp_ver2 .mainvisual__contact-panel {
  width: 100%;
  padding: 28px 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(31, 29, 29, 0.08);
}

#lp_ver2 .mainvisual__trial-panel {
  margin-bottom: 18px;
  text-align: center;
}

#lp_ver2 .mainvisual__panel-label {
  margin-bottom: 12px;
  color: rgb(9, 10, 10);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

#lp_ver2 .mainvisual__form .mainvisual__trial-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 14px 32px;
  border-radius: 30px;
  background: rgb(255, 215, 0);
  color: rgb(9, 10, 10);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.45), 0 10px 22px rgba(255, 215, 0, 0.28);
  animation: trialButtonGlow 2.2s ease-in-out infinite;
}

#lp_ver2 .mainvisual__form .mainvisual__trial-button:before {
  content: "›";
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgb(9, 10, 10);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  #lp_ver2 .mainvisual__form .mainvisual__trial-button:before {
    padding-bottom: 3px;
    padding-left: 2px;
  }
}

@keyframes trialButtonGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.45), 0 10px 22px rgba(255, 215, 0, 0.28);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0), 0 14px 28px rgba(255, 215, 0, 0.42);
  }
}
@media (prefers-reduced-motion: reduce) {
  #lp_ver2 .mainvisual__form .mainvisual__trial-button {
    animation: none;
  }
}
#lp_ver2 .mainvisual__form .sec-title {
  margin-bottom: 16px;
  color: #e63838;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 0;
}

#lp_ver2 .mainvisual__form .campaign {
  margin-bottom: 14px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.45;
}

#lp_ver2 .mainvisual__form p {
  font-size: 14px;
  line-height: 1.6;
}

#lp_ver2 .mainvisual__form .caution {
  margin: 8px 0 16px;
}

#lp_ver2 .mainvisual__form .form__wrapper {
  margin-top: 16px;
}

#lp_ver2 .mainvisual__form .form__wrapper .form-row {
  margin-bottom: 12px;
  padding-left: 0;
}

#lp_ver2 .mainvisual__form .form__wrapper .form-row label {
  display: grid;
  grid-template-columns: 71px 36px minmax(0, 1fr);
  column-gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
}

#lp_ver2 .mainvisual__form .form__wrapper .form-row label .required {
  margin-left: 0;
  padding-left: 0;
}

#lp_ver2 .mainvisual__form .form__wrapper .form-row span.wpcf7-form-control-wrap {
  grid-column: 3;
}

#lp_ver2 .mainvisual__form .form__wrapper .form-row input,
#lp_ver2 .mainvisual__form .form__wrapper .form-row textarea,
#lp_ver2 .mainvisual__form .form__wrapper .form-row select {
  padding: 12px 14px;
}

#lp_ver2 .mainvisual__form .form__wrapper .form-row span.wpcf7-form-control-wrap textarea,
#lp_ver2 .mainvisual__form .form__wrapper .form-row textarea {
  height: 78px !important;
}

#lp_ver2 .mainvisual__form .form__wrapper .form-row:last-child p {
  margin: 18px auto 0;
}

#lp_ver2 .mainvisual__form .form__wrapper button.submit,
#lp_ver2 .mainvisual__form .form__wrapper .form-row input.wpcf7-submit {
  width: 55%;
  margin: 10px auto 0 124px;
  border-radius: 100px;
  background: #e63838;
}
@media screen and (max-width: 767px) {
  #lp_ver2 .mainvisual__form .form__wrapper button.submit,
  #lp_ver2 .mainvisual__form .form__wrapper .form-row input.wpcf7-submit {
    width: 80%;
    margin: 10px auto 0;
  }
}

@media screen and (max-width: 1023px) {
  #lp_ver2 .mainvisual {
    min-height: calc(100vh - 60px);
    padding: 36px 24px 48px;
  }
  #lp_ver2 .mainvisual__copy h2 span {
    font-size: 2.35rem;
  }
}
@media screen and (max-width: 820px) {
  #lp_ver2 .mainvisual {
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: visible;
    padding: 32px 4% 44px;
  }
  #lp_ver2 .mainvisual__visual,
  #lp_ver2 .mainvisual__form.form {
    width: 100%;
  }
  #lp_ver2 .mainvisual .img {
    width: min(92%, 480px);
    margin-top: 24px;
    transform: none;
  }
  #lp_ver2 .mainvisual__copy {
    width: 100%;
    margin: 0;
  }
  #lp_ver2 .mainvisual__copy .for {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 1rem;
  }
  #lp_ver2 .mainvisual__copy h2 span {
    font-size: 1.875rem;
  }
  #lp_ver2 .mainvisual__cta {
    margin: 18px 0 0;
  }
  #lp_ver2 .mainvisual__cta .sub {
    font-size: 0.875rem;
  }
  #lp_ver2 .mainvisual__form.form {
    max-width: 560px;
    margin: 0 auto;
  }
  #lp_ver2 .mainvisual__trial-panel,
  #lp_ver2 .mainvisual__contact-panel {
    padding: 26px 18px;
  }
  #lp_ver2 .mainvisual__form .sec-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  #lp_ver2 .mainvisual__form .form__wrapper .form-row label {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
  }
  #lp_ver2 .mainvisual__form .form__wrapper .form-row span.wpcf7-form-control-wrap {
    flex: 0 0 100%;
  }
}

/*# sourceMappingURL=contact-renewal.css.map */
