@charset "UTF-8";
/* CSS Document */
/* CSS Document */
/*text-color*/
/*text-shadow*/
body {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #374258;
}

.zen-kaku-gothic-antique-regular {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-antique-medium {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-antique-bold {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-antique-black {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* -------------------- */
/* layout
/* -------------------- */
.l-lp-layout {
  width: 100%;
  color: #20252E;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
}
.l-lp-layout__wrapper {
  width: 100%;
  margin-inline: auto;
  max-width: 1200px;
}
.l-lp-layout .font-regular {
  font-weight: 400;
}
.l-lp-layout .font-medium {
  font-weight: 500;
}
.l-lp-layout .font-bold {
  font-weight: 700;
}
.l-lp-layout .font-black {
  font-weight: 900;
}
.l-lp-layout__section-wrapper {
  width: 100%;
  padding-inline: 3%;
  position: relative;
}
.l-lp-layout__section-wrapper--bt-large {
  padding-top: 130px;
}
.l-lp-layout__section-wrapper--btm-m {
  padding-top: 60px;
  padding-bottom: 60px;
}
.l-lp-layout__section-wrapper--btm-xl {
  padding-top: 120px;
  padding-bottom: 120px;
}
.l-lp-layout__section-wrapper--bm-small {
  padding-bottom: 55px;
}
.l-lp-layout__section-wrapper--btm-medium {
  padding-top: 80px;
  padding-bottom: 100px;
}
.l-lp-layout__section-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}
.l-lp-layout__section-inner-mini {
  width: 100%;
  max-width: 1030px;
  margin-inline: auto;
}

/* -------------------- */
/* component
/* -------------------- */
.c-display-block {
  display: block;
}

.c-display-inline-block {
  display: inline-block;
}

.c-lp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffffff;
  border-radius: 50px;
  height: 80px;
  padding: 10px 5px;
  width: 100%;
  max-width: 360px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.c-lp-btn--blue-gradation {
  background: linear-gradient(90deg, #65DAE0 0%, #3C95E8 100%);
}
.c-lp-btn::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -320px;
  width: 320px;
  height: 160px;
  background: rgb(255, 255, 255);
  transform: rotate(-45deg);
  opacity: 0.5;
  z-index: 0;
  transition: all 0.3s ease-out;
}
.c-lp-btn > span {
  display: inline-block;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}
.c-lp-btn:hover::before {
  top: 100%;
  left: 100%;
}

.c-bg-blue-gradation {
  position: relative;
}
.c-bg-blue-gradation::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
  background: linear-gradient(to right, rgb(101, 218, 224) 0%, rgb(60, 149, 232) 100%);
}

.c-bg-pale-blue {
  position: relative;
}
.c-bg-pale-blue::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
  background: #F0F9FC;
}

.c-text-white {
  color: #ffffff;
}

/* -------------------- */
/* p-lp-avd
/* -------------------- */
.p-lp-avd {
  width: 100%;
  overflow-x: hidden;
}
.p-lp-avd__mv {
  position: relative;
  height: 750px;
  overflow-y: hidden;
  width: 100%;
}
.p-lp-avd__mv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.p-lp-avd__mv-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.p-lp-avd__mv-img {
  width: 100%;
  object-fit: cover;
  height: 750px;
}
.p-lp-avd__mv-text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 65%;
  color: #ffffff;
  line-height: 1.3;
}
.p-lp-avd__mv-text--dot {
  position: relative;
  display: inline-block;
}
.p-lp-avd__mv-text--dot::before {
  content: "・";
  position: absolute;
  top: -0.8em;
  left: 0;
}
.p-lp-avd__mv-text--main {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
.p-lp-avd__mv-text--mini {
  font-size: 1.4rem;
}
.p-lp-avd__mv-text--regular {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.6;
}
.p-lp-avd__mv-text--medium {
  font-size: 3rem;
  padding-bottom: 8px;
  text-align: center;
}
.p-lp-avd__mv-text--big {
  position: relative;
  font-size: 6.5rem;
  line-height: 1.1;
  display: inline;
}
.p-lp-avd__mv-text--big ruby {
  ruby-position: under;
  -webkit-ruby-position: after;
}
.p-lp-avd__mv-btn {
  width: 100%;
  max-width: 680px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 5%;
  padding-right: 30px;
}
.p-lp-avd__point-btn {
  width: 100%;
  max-width: 700px;
  margin-top: 60px;
  margin-inline: auto;
  display: flex;
  gap: 8%;
}
.p-lp-avd__main-title {
  font-size: 3.8rem;
  line-height: 1.4;
}
.p-lp-avd__main-title--left-blue::before, .p-lp-avd__main-title--left-blue::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.p-lp-avd__main-title--left-blue::before {
  width: 400px;
  height: 400px;
  top: -60px;
  left: -50px;
  border-radius: 400px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(193, 233, 241, 0.6) 0%, rgba(193, 233, 241, 0.3) 50%, rgba(193, 233, 241, 0) 100%);
  animation: extreme-large 20s ease-in-out infinite;
}
.p-lp-avd__main-title--left-blue::after {
  width: 151px;
  height: 151px;
  top: 0;
  left: 250px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(195, 236, 249, 0.8) 0%, rgba(195, 236, 249, 0.3) 50%, rgba(195, 236, 249, 0) 100%);
  animation: extreme-small 14s ease-in-out infinite reverse;
}
.p-lp-avd__main-title--right-blue::before, .p-lp-avd__main-title--right-blue::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.p-lp-avd__main-title--right-blue::before {
  width: 400px;
  height: 400px;
  top: -60px;
  right: -50px;
  border-radius: 400px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(193, 233, 241, 0.6) 0%, rgba(193, 233, 241, 0.3) 50%, rgba(193, 233, 241, 0) 100%);
  animation: extreme-large 20s ease-in-out infinite;
}
.p-lp-avd__main-title--right-blue::after {
  width: 151px;
  height: 151px;
  top: 0;
  right: 250px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(195, 236, 249, 0.8) 0%, rgba(195, 236, 249, 0.3) 50%, rgba(195, 236, 249, 0) 100%);
  animation: extreme-small 14s ease-in-out infinite reverse;
}
.p-lp-avd__main-title--left-white::before, .p-lp-avd__main-title--left-white::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.p-lp-avd__main-title--left-white::before {
  width: 400px;
  height: 400px;
  top: -60px;
  left: -50px;
  border-radius: 400px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  animation: extreme-large 20s ease-in-out infinite;
}
.p-lp-avd__main-title--left-white::after {
  width: 151px;
  height: 151px;
  top: 0;
  left: 250px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  animation: extreme-small 14s ease-in-out infinite reverse;
}
.p-lp-avd__main-title--right-white::before, .p-lp-avd__main-title--right-white::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.p-lp-avd__main-title--right-white::before {
  width: 400px;
  height: 400px;
  top: -10px;
  right: -50px;
  border-radius: 400px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  animation: extreme-large 20s ease-in-out infinite;
}
.p-lp-avd__main-title--right-white::after {
  width: 151px;
  height: 151px;
  top: 0;
  right: 250px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  animation: extreme-small 14s ease-in-out infinite reverse;
}
.p-lp-avd__main-text {
  font-size: 2rem;
  line-height: 2;
}
.p-lp-avd__second-title {
  font-size: 3rem;
  line-height: 1.4;
}
.p-lp-avd__second-title--ptb {
  padding-top: 20px;
  padding-bottom: 40px;
}
.p-lp-avd__section-text {
  font-size: 2rem;
  line-height: 2.2;
}
.p-lp-avd__pt-s {
  padding-top: 20px;
}
.p-lp-avd__pt-ms {
  padding-top: 40px;
}
.p-lp-avd__pt-m {
  padding-top: 50px;
}
.p-lp-avd__pt-ml {
  padding-top: 60px;
}
.p-lp-avd__pt-xl {
  padding-top: 120px;
}
.p-lp-avd__pb-ms {
  padding-bottom: 40px;
}
.p-lp-avd__pb-m {
  padding-bottom: 50px;
}
.p-lp-avd__pb-l {
  padding-bottom: 100px;
}
.p-lp-avd__pb-xl {
  padding-bottom: 120px;
}
.p-lp-avd__flex-2column {
  display: flex;
  gap: 3%;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-lp-avd__flex-2column--half-box {
  gap: 30px 3%;
}
.p-lp-avd__flex-2column--text {
  width: calc(97% - 500px);
}
.p-lp-avd__flex-2column--img {
  width: 100%;
  max-width: 500px;
}
.p-lp-avd__flex-2column--half {
  width: 48.5%;
}
.p-lp-avd__flex-2column--one-third {
  width: 30%;
}
.p-lp-avd__flex-2column--two-thirds {
  width: 67%;
}
.p-lp-avd__flex-2column--one-third-img {
  width: 280px;
}
.p-lp-avd__flex-2column--two-thirds-img {
  width: calc(97% - 280px);
}
.p-lp-avd__flex-3column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-lp-avd__flex-3column-contents {
  width: calc((100% - 40px) / 3);
  background: #F0F9FC;
  border-radius: 10px;
}
.p-lp-avd__flex-4column {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.p-lp-avd__flex-4column-contents {
  width: calc((100% - 39px) / 4);
  align-items: stretch;
  display: flex;
}
.p-lp-avd__flex-4column--bg-white {
  background: #ffffff;
}
.p-lp-avd__flex-4column--bg-white:first-child {
  border-top-left-radius: 10px;
}
.p-lp-avd__flex-4column--bg-white:nth-child(4) {
  border-top-right-radius: 10px;
}
.p-lp-avd__flex-4column--bg-white:nth-child(5) {
  border-bottom-left-radius: 10px;
}
.p-lp-avd__flex-4column--bg-white:last-child {
  border-bottom-right-radius: 10px;
}
.p-lp-avd__flex-4column-min {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 35px;
  width: 100%;
  margin: 0 auto;
}
.p-lp-avd__flex-4column-min-contents {
  width: calc((100% - 105px) / 4);
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
}
.p-lp-avd__img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-lp-avd__img--medium {
  max-width: 500px;
}
.p-lp-avd__merit-contents {
  width: 100%;
  max-width: 450px;
  padding: 50px 25px;
}
.p-lp-avd__merit-contents-img {
  width: 100%;
  height: auto;
  max-width: 66px;
  margin-inline: auto;
}
.p-lp-avd__merit-contents-title {
  font-size: 2.3rem;
  line-height: 1.2;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 25px;
}
.p-lp-avd__merit-contents-text {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-lp-avd__security-contents {
  padding: 25px 15px;
  color: #1C69BE;
}
.p-lp-avd__security-title {
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 17px;
}
.p-lp-avd__security-text {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-lp-avd__link-btn {
  width: 100%;
  padding-inline: 3%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.p-lp-avd__example-contents {
  font-size: 1.6rem;
  line-height: 1.7;
}
.p-lp-avd__example-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.p-lp-avd__example-inner-img {
  width: 100%;
  max-width: 116px;
  height: auto;
}
.p-lp-avd__example-inner-title {
  font-size: 2rem;
  line-height: 1.8;
  padding-bottom: 10px;
}
.p-lp-avd__example-inner-title .small {
  font-size: 1.4rem;
}
.p-lp-avd__example-inner-text {
  width: calc(100% - 20px - 116px);
  padding-bottom: 20px;
}
.p-lp-avd__interview-main-title {
  font-size: 3.5rem;
  line-height: 1.5;
  padding-top: 40px;
}
.p-lp-avd__interview-sub-title {
  font-size: 2.7rem;
  line-height: 1.5;
  padding-top: 10px;
  padding-bottom: 20px;
}
.p-lp-avd__interview-text {
  font-size: 1.8rem;
  line-height: 1.6;
}
.p-lp-avd__step {
  position: relative;
  display: flex;
  background: #65DAE0;
  padding: 25px 1px 25px 90px;
  margin-bottom: 25px;
  color: #ffffff;
}
.p-lp-avd__step::after {
  content: "";
  position: absolute;
  top: 0;
  right: -34px;
  width: 35px;
  height: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #65DAE0;
  z-index: 1;
}
.p-lp-avd__step.two {
  background: #72C9E9;
}
.p-lp-avd__step.two::after {
  background: #72C9E9;
}
.p-lp-avd__step.three {
  background: #3CB4E8;
}
.p-lp-avd__step.three::after {
  background: #3CB4E8;
}
.p-lp-avd__step.for {
  background: #3C95E8;
}
.p-lp-avd__step.for::after {
  background: #3C95E8;
}
.p-lp-avd__step-number {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #65DAE0;
  font-size: 1.2rem;
}
.p-lp-avd__step-number.two {
  color: #72C9E9;
}
.p-lp-avd__step-number.three {
  color: #3CB4E8;
}
.p-lp-avd__step-number.for {
  color: #3C95E8;
}
.p-lp-avd__step-number .big {
  padding-left: 3px;
  font-size: 2.4rem;
  padding-bottom: 7px;
}
.p-lp-avd__step-content {
  flex: 1;
}
.p-lp-avd__step-title {
  font-size: 2rem;
  margin-bottom: 6px;
}
.p-lp-avd__step-title .small {
  font-size: 1.4rem;
}
.p-lp-avd__step-description {
  font-size: 1.4rem;
  line-height: 1.4;
}
.p-lp-avd__step-list {
  padding-left: 0;
  list-style: none;
}
.p-lp-avd__step-list > li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-lp-avd__step-list > li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #20252E;
  font-weight: bold;
}
.p-lp-avd__qanda-item:not(:last-child) {
  margin-bottom: 30px;
}
.p-lp-avd__qanda-item:last-child {
  border-bottom: none;
}
.p-lp-avd__qanda-question {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px 70px 20px 29px;
  background-color: #F0F9FC;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
  box-shadow: 0 0 1px rgba(3, 42, 75, 0.1);
  color: #20252E;
}
.p-lp-avd__qanda-question:hover {
  background-color: #daf0f7;
}
.p-lp-avd__qanda-q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1C69BE;
  font-weight: bold;
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
  width: 40px;
}
.p-lp-avd__qanda-q-text {
  width: calc(100% - 40px);
  flex: 1;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.p-lp-avd__qanda-q-sub-text {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 6px;
}
.p-lp-avd__qanda-toggle-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}
.p-lp-avd__qanda-toggle-icon::before {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}
.p-lp-avd__qanda-toggle-icon::before {
  left: 3px;
  width: 13px;
  height: 13px;
  border-top: 3px solid #1C69BE;
  border-right: 3px solid #1C69BE;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.is-active .p-lp-avd__qanda-toggle-icon::before {
  transform: rotate(-45deg);
}
.p-lp-avd__qanda-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #FFF7F7;
}
.p-lp-avd__qanda-answer.is-active {
  max-height: 500px;
  padding: 20px 30px;
}
.p-lp-avd__qanda-a-content {
  display: flex;
  align-items: flex-start;
}
.p-lp-avd__qanda-a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FF5151;
  font-weight: bold;
  font-size: 3rem;
  flex-shrink: 0;
  width: 40px;
}
.p-lp-avd__qanda-a-text {
  flex: 1;
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

@keyframes extreme-large {
  0% {
    transform: rotate(0deg) scale(1) translateY(0px) translateX(0px) skewX(0deg);
    opacity: 0.6;
  }
  12.5% {
    transform: rotate(45deg) scale(1.3) translateY(-25px) translateX(20px) skewX(5deg);
    opacity: 0.9;
  }
  25% {
    transform: rotate(90deg) scale(0.8) translateY(-40px) translateX(-15px) skewX(-3deg);
    opacity: 0.4;
  }
  37.5% {
    transform: rotate(135deg) scale(1.4) translateY(-20px) translateX(25px) skewX(8deg);
    opacity: 0.8;
  }
  50% {
    transform: rotate(180deg) scale(0.7) translateY(-45px) translateX(-20px) skewX(-5deg);
    opacity: 0.5;
  }
  62.5% {
    transform: rotate(225deg) scale(1.2) translateY(-30px) translateX(18px) skewX(6deg);
    opacity: 0.7;
  }
  75% {
    transform: rotate(270deg) scale(0.9) translateY(-35px) translateX(-25px) skewX(-4deg);
    opacity: 0.6;
  }
  87.5% {
    transform: rotate(315deg) scale(1.35) translateY(-15px) translateX(22px) skewX(7deg);
    opacity: 0.85;
  }
  100% {
    transform: rotate(360deg) scale(1) translateY(0px) translateX(0px) skewX(0deg);
    opacity: 0.6;
  }
}
@keyframes extreme-small {
  0% {
    transform: rotate(0deg) scale(1) translateY(0px) translateX(0px);
    opacity: 0.8;
  }
  10% {
    transform: rotate(60deg) scale(1.5) translateY(-30px) translateX(-20px);
    opacity: 1;
  }
  20% {
    transform: rotate(180deg) scale(0.6) translateY(-50px) translateX(30px);
    opacity: 0.5;
  }
  30% {
    transform: rotate(270deg) scale(1.6) translateY(-15px) translateX(-25px);
    opacity: 0.9;
  }
  40% {
    transform: rotate(450deg) scale(0.5) translateY(-40px) translateX(20px);
    opacity: 0.6;
  }
  50% {
    transform: rotate(540deg) scale(1.7) translateY(-25px) translateX(-30px);
    opacity: 1;
  }
  60% {
    transform: rotate(630deg) scale(0.7) translateY(-45px) translateX(25px);
    opacity: 0.4;
  }
  70% {
    transform: rotate(720deg) scale(1.4) translateY(-20px) translateX(-15px);
    opacity: 0.8;
  }
  80% {
    transform: rotate(810deg) scale(0.8) translateY(-35px) translateX(35px);
    opacity: 0.7;
  }
  90% {
    transform: rotate(900deg) scale(1.3) translateY(-10px) translateX(-20px);
    opacity: 0.9;
  }
  100% {
    transform: rotate(1080deg) scale(1) translateY(0px) translateX(0px);
    opacity: 0.8;
  }
}
@media (max-width: 1280px) {
  .c-lp-btn {
    font-size: 2rem;
    height: 70px;
  }
  .p-lp-avd__mv-text {
    max-width: 68%;
  }
  .p-lp-avd__mv-text--big {
    font-size: 5.5rem;
  }
  .p-lp-avd__mv-text--medium {
    font-size: 2.5rem;
    padding-left: 1.2em;
    padding-bottom: 5px;
  }
  .p-lp-avd__mv-text--regular {
    font-size: 2rem;
  }
  .p-lp-avd__mv-text--mini {
    left: 43px;
    font-size: 1.2rem;
  }
  .p-lp-avd__mv-btn {
    padding-right: 0;
    max-width: 600px;
  }
  .p-lp-avd__main-title {
    font-size: 3.5rem;
  }
  .p-lp-avd__second-title {
    font-size: 2.8rem;
  }
  .p-lp-avd__section-text {
    font-size: 2rem;
    line-height: 2;
  }
  .p-lp-avd__merit-contents-title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (max-width: 1100px) {
  .p-lp-avd__step {
    width: 100%;
    padding: 15px 0 20px 10px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .p-lp-avd__step-number {
    width: 100%;
    max-width: 65px;
    position: static;
    transform: none;
  }
  .p-lp-avd__step-content {
    width: 100%;
    flex: auto;
  }
  .p-lp-avd__flex-4column-min {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .c-lp-btn {
    font-size: 1.8rem;
  }
  .p-lp-avd__mv {
    height: 600px;
  }
  .p-lp-avd__mv-img {
    height: 600px;
  }
  .p-lp-avd__mv-text {
    max-width: 77%;
  }
  .p-lp-avd__mv-text--medium {
    font-size: 2.3rem;
  }
  .p-lp-avd__mv-text--big {
    font-size: 4.8rem;
  }
  .p-lp-avd__mv-btn {
    max-width: 550px;
    padding-inline: 20px;
  }
  .p-lp-avd__interview-main-title {
    font-size: 3rem;
    padding-top: 0;
  }
  .p-lp-avd__interview-sub-title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .p-lp-avd__interview-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 850px) {
  .p-lp-avd__main-title {
    font-size: 3rem;
  }
  .p-lp-avd__main-text, .p-lp-avd__section-text {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .p-lp-avd__flex-2column {
    gap: 2%;
  }
  .p-lp-avd__flex-2column--half-box {
    gap: 20px 2%;
  }
  .p-lp-avd__flex-2column--text {
    width: calc(98% - 300px);
  }
  .p-lp-avd__flex-2column--img {
    max-width: 300px;
  }
  .p-lp-avd__flex-2column--one-third-img {
    width: 200px;
  }
  .p-lp-avd__flex-2column--two-thirds-img {
    width: calc(98% - 200px);
  }
  .p-lp-avd__flex-3column {
    gap: 15px;
  }
  .p-lp-avd__flex-3column-contents {
    width: calc((100% - 15px) / 2);
  }
  .p-lp-avd__flex-4column {
    gap: 8px;
  }
  .p-lp-avd__flex-4column-contents {
    width: calc((100% - 16px) / 3);
  }
  .p-lp-avd__flex-4column--bg-white:nth-child(3) {
    border-top-right-radius: 10px;
  }
  .p-lp-avd__flex-4column--bg-white:nth-child(4) {
    border-top-right-radius: 0;
  }
  .p-lp-avd__flex-4column--bg-white:nth-child(5) {
    border-bottom-left-radius: 0;
  }
  .p-lp-avd__flex-4column--bg-white:nth-child(6) {
    border-bottom-right-radius: 10px;
  }
  .p-lp-avd__flex-4column--bg-white:nth-child(7) {
    border-bottom-left-radius: 10px;
  }
  .p-lp-avd__flex-4column--bg-white:last-child {
    border-bottom-right-radius: 10px;
  }
  .p-lp-avd__second-title {
    font-size: 2.2rem;
  }
  .p-lp-avd__second-title--ptb {
    padding-top: 0;
    padding-bottom: 20px;
  }
  .p-lp-avd__security-title {
    font-size: 1.8rem;
  }
  .p-lp-avd__security-contents {
    padding: 25px 10px;
  }
  .p-lp-avd__pb-l {
    padding-bottom: 70px;
  }
  .p-lp-avd__example-inner {
    gap: 15px;
  }
  .p-lp-avd__example-inner-img {
    max-width: 86px;
  }
  .p-lp-avd__example-inner-text {
    width: calc(100% - 15px - 86px);
  }
  .p-lp-avd__example-inner-title {
    font-size: 1.8rem;
  }
  .p-lp-avd__example-contents {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .p-lp-avd__qanda-q-icon, .p-lp-avd__qanda-a-icon {
    width: 30px;
    font-size: 2.8rem;
  }
  .p-lp-avd__qanda-q-text, .p-lp-avd__qanda-a-text {
    font-size: 1.8rem;
    padding-top: 5px;
  }
  .p-lp-avd__qanda-toggle-icon {
    width: 23px;
    height: 23px;
  }
  .p-lp-avd__qanda-question {
    padding: 20px 43px 20px 23px;
  }
  .p-lp-avd__qanda-answer.is-active {
    padding: 20px;
  }
  .p-lp-avd__qanda-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .p-lp-avd__point-btn {
    max-width: 580px;
    gap: 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-lp-layout-section-wrapper--bt-large {
    padding-top: 100px;
  }
  .p-lp-avd__mv {
    height: calc(100vh - 70px);
  }
  .p-lp-avd__mv-img {
    height: 100%;
  }
  .p-lp-avd__mv-inner {
    bottom: 0;
    top: auto;
    transform: translate(-50%, 0);
  }
  .p-lp-avd__mv-text {
    max-width: 100%;
    top: inherit;
    bottom: 0;
  }
  .p-lp-avd__mv-btn {
    flex-wrap: wrap;
    gap: 30px;
    max-width: 380px;
    margin-left: auto;
    margin-right: inherit;
    padding-right: 50px;
    padding-inline: inherit;
  }
  .p-lp-avd__flex-4column-min {
    padding-right: 0;
  }
  .p-lp-avd__flex-4column-min-contents {
    width: calc((100% - 70px) / 2);
  }
  .p-lp-avd__step-content {
    width: calc(100% - 10px - 65px);
  }
}
@media screen and (max-width: 640px) {
  .c-lp-btn {
    height: 60px;
  }
  .l-lp-layout__section-wrapper--btm-xl {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-lp-layout__section-wrapper--btm-medium {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l-lp-layout__section-wrapper--bt-large {
    padding-top: 60px;
  }
  .l-lp-layout__section-wrapper--btm-xl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-lp-avd__mv {
    height: calc(90vh - 70px);
  }
  .p-lp-avd__mv-text--medium {
    font-size: 2rem;
  }
  .p-lp-avd__mv-text--big {
    font-size: 3.9rem;
  }
  .p-lp-avd__mv-text--mini {
    left: 28px;
    font-size: 1rem;
  }
  .p-lp-avd__mv-text--regular {
    font-size: 1.8rem;
  }
  .p-lp-avd__mv-btn {
    max-width: 280px;
    padding-right: 30px;
    margin-top: 50px;
  }
  .p-lp-avd__point-btn {
    gap: 3%;
  }
  .p-lp-avd__main-title {
    font-size: 2.8rem;
  }
  .p-lp-avd__main-text, .p-lp-avd__section-text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-lp-avd__merit-contents-title {
    font-size: 1.8rem;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .p-lp-avd__flex-2column {
    padding-bottom: 0;
    gap: 40px 2%;
  }
  .p-lp-avd__flex-2column--half-box {
    gap: 40px 0;
  }
  .p-lp-avd__flex-2column--half {
    width: 100%;
  }
  .p-lp-avd__flex-2column--text {
    width: 100%;
  }
  .p-lp-avd__flex-2column--text--sp-reverse {
    order: 1;
  }
  .p-lp-avd__flex-2column--img {
    margin: 0 auto;
  }
  .p-lp-avd__flex-2column--img--sp-reverse {
    order: 2;
  }
  .p-lp-avd__flex-2column--one-third-img {
    width: 150px;
  }
  .p-lp-avd__flex-2column--two-thirds-img {
    width: calc(98% - 150px);
  }
  .p-lp-avd__flex-4column-contents {
    width: calc((100% - 8px) / 2);
  }
  .p-lp-avd__flex-4column-contents:nth-child(2) {
    border-top-right-radius: 10px;
  }
  .p-lp-avd__flex-4column-contents:nth-child(3) {
    border-top-right-radius: 0;
  }
  .p-lp-avd__flex-4column-contents:nth-child(6) {
    border-bottom-right-radius: 0;
  }
  .p-lp-avd__flex-4column-contents:nth-child(7) {
    border-bottom-left-radius: 10px;
  }
  .p-lp-avd__flex-4column-contents:last-child {
    border-bottom-right-radius: 10px;
  }
  .p-lp-avd__security-title {
    font-size: 1.6rem;
    padding-bottom: 15px;
  }
  .p-lp-avd__second-title {
    font-size: 2rem;
  }
  .p-lp-avd__merit-contents {
    padding: 35px 15px;
  }
  .p-lp-avd__merit-contents-img {
    max-width: 55px;
  }
  .p-lp-avd__merit-contents-text, .p-lp-avd__security-text {
    font-size: 1.4rem;
  }
  .p-lp-avd__interview-main-title {
    font-size: 2.5rem;
  }
  .p-lp-avd__interview-sub-title {
    font-size: 2rem;
  }
  .p-lp-avd__step-list > li {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
  .p-lp-avd__example-contents {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .p-lp-avd__interview-text {
    font-size: 1.4rem;
  }
  .p-lp-avd__link-btn {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-lp-avd__qanda-question {
    padding: 20px 35px 20px 4%;
  }
  .p-lp-avd__qanda-toggle-icon {
    width: 18px;
    height: 14px;
    right: 3%;
  }
  .p-lp-avd__qanda-toggle-icon::before {
    width: 10px;
    height: 10px;
  }
  .p-lp-avd__qanda-q-icon, .p-lp-avd__qanda-a-icon {
    width: 23px;
    font-size: 2.5rem;
  }
  .p-lp-avd__qanda-q-text, .p-lp-avd__qanda-a-text {
    font-size: 1.6rem;
  }
  .p-lp-avd__qanda-q-sub-text {
    font-size: 1.4rem;
  }
  .p-lp-avd__qanda-answer.is-active {
    padding: 20px 4%;
  }
  .p-lp-avd__pb-l {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .c-sp-inline {
    display: inline-block;
  }
  .c-lp-btn {
    font-size: 1.6rem;
    height: 65px;
  }
  .c-lp-btn--main {
    height: 55px;
  }
  .p-lp-avd__mv {
    height: calc(80vh - 70px);
  }
  .p-lp-avd__mv-text {
    bottom: -13%;
  }
  .p-lp-avd__mv-text--medium {
    font-size: 1.5rem;
  }
  .p-lp-avd__mv-text--big {
    font-size: 2.8rem;
  }
  .p-lp-avd__mv-text--mini {
    left: 28px;
    font-size: 0.8rem;
  }
  .p-lp-avd__mv-text--regular {
    font-size: 1.5rem;
  }
  .p-lp-avd__mv-btn {
    max-width: 210px;
    padding-right: 10px;
    gap: 20px;
  }
  .p-lp-avd__main-title {
    font-size: 2.5rem;
  }
  .p-lp-avd__point-btn {
    flex-wrap: wrap;
    gap: 20px;
  }
  .p-lp-avd__flex-4column-min-contents {
    width: 100%;
  }
  .p-lp-avd__step {
    padding: 15px 10px 5px 10px;
    margin-bottom: 45px;
  }
  .p-lp-avd__step::after {
    top: 99%;
    right: 0;
    width: 100%;
    height: 35px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .p-lp-avd__flex-2column--one-third-img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .p-lp-avd__flex-2column--two-thirds-img {
    width: 100%;
  }
  .p-lp-avd__flex-3column {
    gap: 20px;
  }
  .p-lp-avd__flex-3column-contents {
    width: 100%;
  }
  .p-lp-avd__interview-main-title {
    font-size: 2.2rem;
  }
  .p-lp-avd__interview-sub-title {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=avd-lp-style.css.map */