html {
  font-feature-settings: 'palt';
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (max-width:1200px) {
  html {
    font-size: calc(100vw / 1200 * 10);
  }
}

@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}

body {
  background: #fff;
  color: #212121;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.body_container {
  opacity: 0;
  overflow: hidden;
  transition: .6s ease;
  position: relative;
  z-index: 2;
  padding-top: 6.8rem;
}

@media screen and (max-width: 768px) {
  .body_container {
    padding-top: 9rem;
  }
}

.lazy .body_container {
  opacity: 1;
}

img:not(.cover) {
  height: auto;
  max-width: 100%;
  width: 100%;
}

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

a {
  transition: .3s;
}

.anchor {
  display: flex;
  margin-top: -6.8rem;
  padding-top: 6.8rem;
}

@media screen and (max-width: 768px) {
  .anchor {
    margin-top: -9rem;
    padding-top: 9rem;
  }
}

strong {
  font-weight: inherit;
}

em {
  font-style: normal;
}

.max1000 {
  max-width: 100rem;
  margin: 0 auto;
}

.max1142 {
  max-width: 114.2rem;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------------
//  f_animation
--------------------------------------------------------------------------- */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(2rem);
  transition: all .4s ease;
}

.char.is_visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------------
//  f_animation01
--------------------------------------------------------------------------- */
.f_animation01 {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: clip-path 1.5s cubic-bezier(.25, 1, .5, 1),
    -webkit-clip-path 1.5s cubic-bezier(.25, 1, .5, 1),
    opacity .8s ease;
  transition-delay: .4s;
}

.f_animation01.is_animated {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* ---------------------------------------------------------------------------
//  btnA
--------------------------------------------------------------------------- */
.btnA {
  border-radius: 100vh;
  border: .15rem solid rgba(255, 255, 255, 0.70);
  background: linear-gradient(90deg, rgba(123, 114, 172, .7), rgba(123, 114, 172, 1));
  display: flex;
  height: 6.6rem;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 0 9.4rem 0 8.1rem;
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 .8rem #FFF;
  transition: .3s ease;
}

.btnA::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100vh;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4));
  transform: translateX(-100%);
  transition: .3s ease;
  pointer-events: none;
}

.btnA:hover::before {
  transform: translateX(0);
}

.btnA::after {
  content: '';
  position: absolute;
  inset: -.8rem;
  border-radius: 100vh;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(1rem);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
  pointer-events: none;
}

.btnA:hover::after {
  opacity: 1;
}

.btnA:hover {
  border-color: rgba(255, 255, 255, 1);
  color: #7B72AC;
  box-shadow: 0 0 2rem #FFF;
}

.btnA em {
  position: relative;
}

.btnA span {
  position: absolute;
  width: 3.8rem;
  height: 3.8rem;
  background: #fff;
  border-radius: 100%;
  right: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: .2rem;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), background .3s;
}

.btnA:hover span {
  background: #7B72AC;
}

.btnA span svg path {
  stroke: #7B72AC;
  stroke-width: 1.43087;
  transition: stroke .3s;
}

.btnA:hover span svg path {
  stroke: #fff;
}

@media screen and (max-width: 768px) {
  .btnA {
    height: 5rem;
    padding: 0 5rem 0 2rem;
    font-size: 1.6rem;
  }

  .btnA span,
  .submit_btn span {
    width: 2.4rem;
    height: 2.4rem;
    right: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------
//  submit_btn（btnA同様のデザイン・挙動）
--------------------------------------------------------------------------- */
.submit_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 32.2rem;
  margin: 0 auto;
  border: solid 1px #fff;
  box-shadow: 0 0 1.1rem #7B72AC;
}

.submit_btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4));
  transform: translateX(-100%);
  transition: .3s ease;
  pointer-events: none;
  width: 100%;
}

.submit_btn:hover::before {
  transform: translateX(0);
}

.submit_btn::after {
  content: '';
  position: absolute;
  inset: -.8rem;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(1rem);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
  pointer-events: none;
}

.submit_btn:hover::after {
  opacity: 1;
}

.submit_btn input {
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, rgba(123, 114, 172, .7), rgba(123, 114, 172, 1));
  font-size: 0;
  font-weight: 600;
  height: 6.6rem;
  cursor: pointer;
  transition: border-color .3s, color .3s, box-shadow .3s;
  width: 100%;
}

.submit_btn label {
  font-size: 2.3rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  pointer-events: none;
}

.submit_btn:hover label {
  color: #7B72AC;
}

.submit_btn span {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  background: #fff;
  border-radius: 100%;
  right: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: .2rem;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), background .3s;
}

.submit_btn:hover span {
  background: #7B72AC;
}

.submit_btn span svg {
  width: .5rem;
  height: 1rem;
}

.submit_btn span svg path {
  stroke: #7B72AC;
  stroke-width: 1.43087;
  transition: stroke .3s;
}

.submit_btn:hover span svg path {
  stroke: #fff;
}

@media screen and (max-width: 768px) {
  .submit_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    border: solid 1px #fff;
    box-shadow: 0 0 1.1rem #7B72AC;
  }

  .submit_btn input {
    height: 5rem;
  }

  .submit_btn label {
    font-size: 2rem;
  }
}

/* ---------------------------------------------------------------------------
//  fv
--------------------------------------------------------------------------- */
.fv .head {
  padding: 2rem 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.fv .head h1 {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
}

.fv .head h1 strong {
  color: #7B72AC;
}

/* ===================================
       🎛️ スライダー設定（ここだけ調整すればOK）
    =================================== */
:root {
  --slide-width: 100rem;
  /* スライドの幅（これ以下にはならない） */
  --slide-gap: 1rem;
  /* スライド間の余白 */
  --slide-aspect: 1000 / 455;
  /* アスペクト比 */
  --slide-radius: 0.6rem;
  /* 角丸 */
  --slide-speed: 0.6s;
  /* アニメーション速度 */
}

/* ===== スライダーコンテナ ===== */
.slider-container {
  position: relative;
  width: 100%;
  margin: 1rem 0 5rem;
}

.slider-wrapper {
  overflow: hidden;
}

.slider {
  display: flex;
  gap: var(--slide-gap);
  transition: transform var(--slide-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ===== スライドアイテム ===== */
.slider .item {
  flex: 0 0 auto;
  min-width: var(--slide-width);
  width: var(--slide-width);
  aspect-ratio: var(--slide-aspect);
  background: #f7f7f7;
  border-radius: var(--slide-radius);
  overflow: hidden;
  display: block;
  overflow: hidden;
}

.slider .item img {
  transition: .3s;
}

.slider .item:hover img {
  transform: scale(1.05);
}

/* ===== ナビゲーションボタン ===== */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.7rem;
  height: 2.7rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-nav svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: #212121;
  stroke-width: .4rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
}

.slider-prev {
  left: calc(((100vw - 100rem) / 2) / 2 - 1.35rem - 1rem);
}

.slider-prev svg {
  right: .1rem;
}

.slider-next {
  right: calc(((100vw - 100rem) / 2) / 2 - 1.35rem - 1rem);
}

.slider-next svg {
  left: .1rem;
}

/* ===== インジケーター ===== */
.slider-indicators {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  bottom: -2.5rem;
}

.indicator {
  width: 1rem;
  height: 1rem;
  background: #D9D9D9;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #212121;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.indicator:hover {
  opacity: .7;
}

.indicator.active {
  background: transparent;
}

.indicator.active::after {
  width: 100%;
  height: 100%;
}

.indicator.active::before {
  content: '';
  position: absolute;
  top: -.4rem;
  left: -.4rem;
  right: -.4rem;
  bottom: -.4rem;
  border: .2rem solid transparent;
  border-top-color: #212121;
  border-radius: 50%;
  animation: indicatorProgress 4s linear infinite;
}

@keyframes indicatorProgress {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .fv .head {
    padding: 2rem;
  }

  .fv .head h1 {
    font-size: 2rem;
  }

  :root {
    --slide-width: calc(100% - 4rem);
  }

  .slider-nav {
    width: 2rem;
    height: 2rem;
  }

  .slider-nav svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: .3rem;
  }

  .slider-prev {
    left: 1rem;
  }

  .slider-next {
    right: 1rem;
  }

  .slider-indicators {
    gap: 1.2rem;
    bottom: -2rem;
  }

  .indicator {
    width: .8rem;
    height: .8rem;
  }
}

.fv .cta {
  background: #7B72AC;
  border-radius: .6rem;
  padding: 3rem 4.5rem;
  display: flex;
  align-items: center;
  color: #fff;
}

.fv .cta .logo {
  width: 10rem;
  margin-right: 4.5rem;
}

.fv .cta p {
  font-size: 2.26rem;
  font-weight: 700;
  line-height: 1.75;
  margin-right: auto;
}

.fv .cta .btnA {
  padding: 0 7rem 0 3.6rem;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .fv .cta {
    border-radius: 0;
    padding: 4rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .fv .cta .logo {
    width: 10rem;
    margin-right: 0;
  }

  .fv .cta p {
    font-size: 1.8rem;
    text-align: center;
    white-space: nowrap;
  }

  .fv .cta .btnA {
    font-size: 1.6rem;
    padding: 0 5rem 0 2rem;
  }
}

/* ---------------------------------------------------------------------------
//  dji01
--------------------------------------------------------------------------- */
.dji01 .wrap {
  padding: 6rem 0 12rem;
  color: #4B4B4B;
}

.dji01 .wrap h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
}

.dji01 .wrap .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.8rem 0;
}

.dji01 .wrap .links .link {
  height: 27rem;
  width: calc((100% / 3));
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.dji01 .wrap .links .link:hover {
  background: #F0F0F3;
}

.dji01 .wrap .links .link:nth-of-type(2) {
  border-left: none;
  border-right: none;
}

.dji01 .wrap .links .link:nth-of-type(4) {
  border-right: none;
}

.dji01 .wrap .links .link .img {
  height: 23rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.dji01 .wrap .links .link:hover .img {
  transform: scale(1.07);
}

.dji01 .wrap .links .link .img img {
  position: relative;
}

.dji01 .wrap .links .link01 .img img {
  width: 20.5rem;
}

.dji01 .wrap .links .link02 .img img {
  width: 20rem;
}

.dji01 .wrap .links .link03 .img img {
  width: 20rem;
}

.dji01 .wrap .links .link04 .img img {
  width: 29.9rem;
  left: -1rem;
}

.dji01 .wrap .links .link05 .img img {
  width: 17.2rem;
}

.dji01 .wrap .sup {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 4rem;
}

@media screen and (max-width:768px) {
  .dji01 .wrap {
    padding: 6rem 2rem 12rem;
  }

  .dji01 .wrap h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .dji01 .wrap .links {
    gap: 0;
  }

  .dji01 .wrap .links .link {
    height: auto;
    width: calc((100% / 2));
    width: 100%;
    border-left: none !important;
    border-right: none !important;
    padding: 0 0 2rem 0;
  }

  .dji01 .wrap .links .link+.link {
    border-top: 1px solid rgba(0, 0, 0, 0.2) !important;
  }

  .dji01 .wrap .sup {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  secA
--------------------------------------------------------------------------- */
.secA {
  position: relative;
}

.secA .bg {
  position: relative;
  aspect-ratio: 1280 / 282;
}

.secA .bg::before {
  content: "";
  position: absolute;
  aspect-ratio: 1280 / 564;
  background-size: 128rem;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(var(--secA-parallax-scale, 1));
  transform-origin: center top;
  will-change: transform;
}

@media screen and (min-width:1280.1px) {
  .secA .bg::before {
    background-size: cover;
  }
}

.secA .inner {
  position: relative;
  padding: 10rem 0 15rem;
}

.secA .head {
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
}

.secA .head>span {
  color: #ADA5CC;
  font-size: 2.5rem;
  margin-bottom: 5.5rem;
}

.secA .head h2 {
  display: flex;
  flex-direction: column;
}

.secA .head h2 em {
  margin-bottom: 2rem;
}

.secA .head h2 span {
  font-size: 3rem;
}

.secA .content01 {
  display: flex;
  gap: 3.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.secA .content01 .txts {
  width: calc((100% - 3.4rem) / 2);
}

.secA .content01 .txts p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.5;
}

.secA .content01 .movie {
  width: calc((100% - 3.4rem) / 2);
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.secA .content01 .cards {
  width: 100%;
  display: flex;
  gap: 1.7rem;
  margin-top: 9rem;
  flex-wrap: wrap;
}

.secA .content01 .cards .card {
  width: calc((100% - 3.4rem) / 3);
  position: relative;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: solid 1px rgba(255, 255, 255, 0.4);
  border-radius: 1.6rem;
}

.secA .content01 .cards .card dt {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.secA .content01 .cards .card dt span {
  position: absolute;
  padding: 0 1rem;
  background: #212121;
  font-family: "League Spartan";
  font-size: 2rem;
  font-weight: 800;
  left: 0;
  right: 0;
  margin: auto;
  top: -1rem;
  width: 9rem;
}

.secA .content01 .cards .card dd {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
}

.secA .content02 {
  display: flex;
  justify-content: center;
  margin-top: 13rem;
  flex-wrap: wrap;
}

.secA .content02 .img {
  margin-right: auto;
  position: relative;
  pointer-events: none;
}

.secA .content02 .dls {
  width: 65.3rem;
}

.secA .content02 .dls dl {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 2rem 0 5rem;
}

.secA .content02 .dls dl dt {
  width: 17rem;
  padding: 0 2rem;
  font-size: 2rem;
}

.secA .content02 .dls dl dd {
  width: calc(100% - 17rem);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
}

.secA .content02 .dls dl dd ul li {
  display: flex;
}

.secA .content02 .dls dl dd ul li span {
  flex-shrink: 0;
}

.secA .content02 .cards {
  width: 100%;
  display: flex;
  gap: 3.4rem;
  margin-bottom: 5rem;
}

.secA .content02 .cards .card {
  border-radius: 1.6rem;
  background: #f0f0f3;
  padding: 1.5rem;
  width: calc((100% - 3.4rem) / 2);
}

.secA .content02 .cards .card dt {
  border-radius: 1.2rem;
  background: #fff;
  height: 7.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.secA .content02 .cards .card01 dt img {
  width: 21.367rem
}

.secA .content02 .cards .card02 dt img {
  width: 22.856rem
}

.secA .content02 .cards .card dd {
  padding: 2rem 3rem 3rem;
}

.secA .content02 .cards .card dd ul li {
  display: flex;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  gap: .5rem;
}

.secA .content02 .cards .card dd ul li+li {
  margin-top: 1rem;
}

.secA .content02 .cards .card dd ul li span {
  color: #D5D5D5;
  flex-shrink: 0;
}

.secA .content02 .btnA {
  margin-top: 4rem;
}

@media screen and (max-width:768px) {
  .secA {
    position: relative;
  }

  .secA .bg {
    position: relative;
    aspect-ratio: 8 / 3;
  }

  .secA .bg::before {
    content: "";
    position: absolute;
    aspect-ratio: 8 / 6;
    background-size: cover;
  }

  .secA .inner {
    padding: 4rem 2rem 12rem;
  }

  .secA .head {
    margin-bottom: 5rem;
  }

  .secA .head>span {
    color: #ADA5CC;
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  .secA .head h2 em {
    margin-bottom: 1rem;
  }

  .secA .head h2 span {
    font-size: 2rem;
  }

  .secA .content01 {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }

  .secA .content01 .txts {
    width: 100%;
  }

  .secA .content01 .txts p {
    font-size: 1.6rem;
    line-height: 2;
  }

  .secA .content01 .movie {
    width: 100%;
  }

  .secA .content01 .cards {
    gap: 4rem;
    margin-top: 5rem;
  }

  .secA .content01 .cards .card {
    width: 100%;
  }

  .secA .content02 {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .secA .content02 .img {
    margin: auto;
  }

  .secA .content02 .dls {
    width: 100%;
  }

  .secA .content02 .dls dl {
    display: block;
    padding: 2rem 0 4rem;
  }

  .secA .content02 .dls dl dt {
    width: 100%;
    padding: 0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .secA .content02 .dls dl dd {
    width: 100%;
    font-size: 1.6rem;
  }

  .secA .content02 .cards {
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
  }

  .secA .content02 .cards .card {
    padding: 1rem;
    width: 100%;
  }

  .secA .content02 .cards .card dt {
    height: 5rem;
  }

  .secA .content02 .cards .card01 dt img {
    width: calc(21.367rem * .7);
  }

  .secA .content02 .cards .card02 dt img {
    width: calc(22.856rem * .7);
  }

  .secA .content02 .cards .card dd {
    padding: 1rem 2rem 2rem;
  }

  .secA .content02 .cards .card dd ul li {
    font-size: 1.6rem;
  }

  .secA .content02 .btnA {
    margin-top: 2rem;
  }
}

/* dji02 見出しロゴ出現アニメーション */
.logo-em-clip {
  display: inline-block;
  overflow: hidden;
}

.logo-em-clip img {
  transform: translateX(-20%);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: transform .8s cubic-bezier(.25, 1, .5, 1),
    opacity .6s ease,
    clip-path .8s cubic-bezier(.25, 1, .5, 1);
}

.logo-em-clip.is-visible img {
  transform: translateX(0);
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/* ---------------------------------------------------------------------------
//  dji02
--------------------------------------------------------------------------- */
.dji02 {
  color: #fff;
}

.dji02 .inner {
  background: linear-gradient(180deg, rgba(33, 33, 33, 0.00) 0%, #212121 13.5%);
}

.dji02 .bg::before {
  background-image: url(../img/02_bg.jpg);
}

.dji02 .head h2 em {
  width: 44.9rem;
}

.dji02 .content02 .img {
  width: 31.1rem;
  top: -8.8rem;
}

@media screen and (max-width:768px) {
  .dji02 .inner {
    background: linear-gradient(180deg, rgba(33, 33, 33, 0.00) 0%, #212121 28vw);
  }

  .dji02 .bg::before {
    background-position: right 12% top;
  }

  .dji02 .head h2 em {
    width: calc(44.9rem * .6);
  }

  .dji02 .content02 .img {
    top: 0;
    height: 16rem;
    margin: 6rem 0 2rem;
  }

  .dji02 .content02 .img img {
    position: absolute;
    top: -8rem;
  }
}

/* ---------------------------------------------------------------------------
//  dji03
--------------------------------------------------------------------------- */
.dji03 .inner {
  background: linear-gradient(180deg, rgba(246, 248, 249, 0.00) 3.03%, #F6F8F9 16%);
}

.dji03 .bg::before {
  background-image: url(../img/03_bg.jpg);
}

.dji03 .head h2 em {
  width: 44.9rem;
}

.dji03 .content02 .img {
  width: 29.3rem;
  top: -2.7rem;
}

.dji03 .content02 .dls dl {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}

@media screen and (max-width:768px) {
  .dji03 .inner {
    background: linear-gradient(180deg, rgba(246, 248, 249, 0.00) 3.03%, #F6F8F9 28vw);
  }

  .dji03 .bg::before {
    background-position: right 30% top;
  }

  .dji03 .head h2 em {
    width: calc(44.9rem * .6);
  }

  .dji03 .content02 .img {
    top: 0;
    /* border: solid; */
    height: 12rem;
    margin: 6rem 0 2rem;
  }

  .dji03 .content02 .img img {
    position: absolute;
    top: -2rem;
  }
}

/* ---------------------------------------------------------------------------
//  dji04
--------------------------------------------------------------------------- */
.dji04 {
  color: #fff;
}

.dji04 .inner {
  background: linear-gradient(180deg, rgba(33, 33, 33, 0.00) 0%, #212121 13.5%);
}

.dji04 .bg::before {
  background-image: url(../img/04_bg.jpg);
}

.dji04 .head h2 em {
  width: 44.9rem;
}

.dji04 .content02 .img {
  width: 29.3rem;
  top: -2.7rem;
}

@media screen and (max-width:768px) {
  .dji04 .inner {
    background: linear-gradient(180deg, rgba(33, 33, 33, 0.00) 0%, #212121 28vw);
  }

  .dji04 .bg::before {
    background-position: right 30% top;
  }

  .dji04 .head h2 em {
    width: calc(44.9rem * .6);
  }

  .dji04 .content02 .img {
    top: 0;
    height: 12rem;
    margin: 6rem 0 2rem;
  }

  .dji04 .content02 .img img {
    position: absolute;
    top: -2rem;
  }
}

/* ---------------------------------------------------------------------------
//  dji05
--------------------------------------------------------------------------- */
.dji05 .inner {
  background: linear-gradient(180deg, rgba(246, 248, 249, 0.00) 3.03%, #F6F8F9 11%);
}

.dji05 .bg::before {
  background-image: url(../img/05_bg.jpg);
}

.dji05 .head h2 em {
  width: 28.05rem;
}

.dji05 .content02 .img {
  width: 29.7rem;
  top: -2.7rem;
}

.dji05 .content02 .dls dl {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}

@media screen and (max-width:768px) {
  .dji05 .inner {
    background: linear-gradient(180deg, rgba(246, 248, 249, 0.00) 2.5%, #F6F8F9 28vw);
  }

  .dji05 .bg::before {
    background-position: right 30% top;
  }

  .dji05 .head h2 em {
    width: calc(28.05rem * .6);
  }

  .dji05 .content02 .img {
    top: 0;
    height: 34rem;
    margin: 6rem 0 2rem;
  }

  .dji05 .content02 .img img {
    position: absolute;
    top: 0;
  }
}

/* ---------------------------------------------------------------------------
//  dji06
--------------------------------------------------------------------------- */
.dji06 .inner {
  padding: 12rem 0
}

.dji06 .wrap {
  padding: 3rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 1.6rem;
  border: 1px solid #C9C9C9;
}

.dji06 .wrap h3 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 2;
}

.dji06 .wrap p.sup {
  font-size: 1.8rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.dji06 .wrap p.sup span {
  flex-shrink: 0;
}

@media screen and (max-width:768px) {
  .dji06 .inner {
    padding: 6rem 2rem;
  }

  .dji06 .wrap {
    padding: 3rem 2rem 4rem;
    text-align: left;
    align-items: flex-start;
  }

  .dji06 .wrap h3 {
    font-size: 1.5rem;
  }

  .dji06 .wrap p.sup {
    font-size: 1.4rem;
    justify-content: flex-start;
  }
}

/* ---------------------------------------------------------------------------
//  dji07
--------------------------------------------------------------------------- */
.dji07 {
  color: #fff;
}

.dji07 .inner {
  background: linear-gradient(180deg, rgba(33, 33, 33, 0.00) 0%, #212121 13.5%);
}

.dji07 .bg::before {
  background-image: url(../img/07_bg.jpg);
}

.dji07 .head h2 em {
  width: 56.995rem;
}

.dji07 .content02 .img {
  width: 24.2rem;
  top: -3rem;
}

@media screen and (max-width:768px) {
  .dji07 .inner {
    background: linear-gradient(180deg, rgba(33, 33, 33, 0.00) 0%, #212121 28vw);
  }

  .dji07 .bg::before {
    background-position: right 30% top;
  }

  .dji07 .head h2 em {
    width: calc(56.995rem * .58);
  }

  .dji07 .head h2 span {
    font-size: 1.95rem;
    white-space: nowrap;
  }

  .dji07 .content02 .img {
    top: 0;
    height: 27rem;
    margin: 6rem 0 2rem;
  }

  .dji07 .content02 .img img {
    position: absolute;
    top: -2.5rem;
  }
}

/* ---------------------------------------------------------------------------
//  dji08
--------------------------------------------------------------------------- */
.dji08 {
  position: relative;
  overflow: hidden;
}

.dji08-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dji08-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 248, 249, 0.85) 0%, rgba(246, 248, 249, 0.35) 40%, rgba(246, 248, 249, 0.85) 100%);
}

.dji08-bg__video {
  position: absolute;
  inset: 0;
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.9) contrast(1.05);
  transform: translate3d(-4%, 0, 0);
  animation: dji08BgPan 26s linear infinite alternate;
}

@keyframes dji08BgPan {
  0% {
    transform: translate3d(-4%, -1%, 0) scale(1.02);
  }

  100% {
    transform: translate3d(4%, 1%, 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dji08-bg__video {
    animation: none;
  }
}

.dji08 .inner {
  position: relative;
  z-index: 1;
}

.dji08 .inner {
  padding: 12rem 0;
}

.dji08_01 {
  position: relative;
}

.dji08-01 .wrap {
  position: relative;
  overflow: hidden;
  height: 46rem;
}

.dji08-01 .wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../img/08_img01.jpg);
  background-size: 60.3rem;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(var(--dji08-01-bg-scale, 1));
  transform-origin: center right;
  will-change: transform;
}

.dji08-01 .txts {
  background: linear-gradient(270deg, rgba(33, 33, 33, 0.00) 0%, #212121 45%);
  height: 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 0 10rem;
  position: relative;
  z-index: 1;
}

.dji08-01 .txts h2 {
  font-size: 3.3rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.dji08-01 .txts h2 em {
  color: #ADA5CC;
}

.dji08-01 .txts .p01 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 1rem;
}

.dji08-01 .txts ul {
  display: flex;
  gap: 1rem 5rem;
  width: 50%;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.dji08-01 .txts ul li {
  display: flex;
  border-bottom: solid 1px;
  font-size: 2.6rem;
  line-height: 1.75;
}

.dji08-01 .txts ul li span {
  flex-shrink: 0;
}

.dji08-01 .txts .sup {
  font-weight: 400;
}

.secB {
  margin-top: 4.7rem;
}

.secB .wrap {
  background: #F0F0F3;
  padding: 4rem 9rem 6rem;
  min-height: 40rem;
}

.secB .wrap h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3.3rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.secB .wrap h2 em {
  position: relative;
  padding: 0 1rem;
}

.secB .wrap h2 em span {
  position: relative;
  z-index: 2;
}

.secB .wrap h2 em::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background: #ADA5CC;
  transform-origin: left center;
}

/* ペンで引いたようなライン出現（.js-penline に is-visible が付いたら発火） */
.js-penline em::before {
  transform: scaleX(0);
}

.js-penline.is-visible em::before {
  animation: penLineDraw 2s cubic-bezier(.25, 1, .5, 1) forwards;
}

@keyframes penLineDraw {
  0% {
    transform: scaleX(0) skewX(-12deg);
    opacity: .9;
  }

  /* 70% {
    transform: scaleX(1.04) skewX(0deg);
    opacity: 1;
  } */
  100% {
    transform: scaleX(1) skewX(0deg);
    opacity: 1;
  }
}

.secB .box {
  background: #fff;
  height: 23.8rem;
  position: relative;
}

.secB .box .raw {
  display: flex;
  min-height: 23.8rem;
}

.secB .box .raw .left {
  width: 34.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.secB .box .raw .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.secB .box .raw .right h3 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.secB .box .raw .right .p01 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5rem;
}

.secB .box .raw .right .p01 li {
  display: flex;
}

.secB .box .raw .right .p01 li:nth-of-type(1),
.secB .box .raw .right .p01 li:nth-of-type(4) {
  min-width: 19.6rem;
}

.secB .box .raw .right .p01 li span {
  flex-shrink: 0;
}

.secB .box .raw .right .p02 {
  font-weight: 600;
  font-size: 1.8rem;
}

.secB .box .uls {
  min-height: 23.8rem;
  display: flex;
  flex-wrap: wrap;
  padding: 0 8.6rem;
  align-items: center;
  justify-content: space-between;
}

.secB .box .uls ul li {
  display: flex;
  font-size: 2.45rem;
  gap: .5rem;
  font-weight: 700;
}

.secB .box .uls ul li span {
  color: #ADA5CC;
  position: relative;
}

.secB .box .uls ul li span::before {
  content: '';
  background-image: url(../img/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 2.1rem;
  height: 1.6rem;
  position: absolute;
  left: .7rem;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.secB .box .uls ul li+li {
  margin-top: 2.4rem;
}

.dji08-02 .box .btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -3.3rem;
}

.dji08-02 .box .raw .left img {
  width: 15.5rem;
}

.dji08-02 .box .raw .right {
  flex: 1;
  padding-bottom: 2.5rem;
}

.dji08-03 .box .raw .left img {
  width: 14.8rem;
}

.dji08-04 .cards {
  display: flex;
  gap: 1.2rem;
  margin-top: 8rem;
  position: relative;
}

.dji08-04 .cards::before {
  background-image: url(../img/08_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 7.5rem;
  height: 2rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -5.5rem;
}

.dji08-04 .cards .card {
  width: calc((100% - 1.2rem * 5) / 6);
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: .8rem;
  border: solid 1px #ADA5CC;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dji08-04 .cards .card span {
  color: #ADA5CC;
  font-family: "League Spartan";
  font-size: 2rem;
  font-weight: 400;
}

.dji08-04 .cards .card .em {
  font-size: 1.8rem;
  font-weight: 600;
}

.dji08-04 .cards .card01 {
  background-image: url(../img/08_pict01.svg);
}

.dji08-04 .cards .card02 {
  background-image: url(../img/08_pict02.svg);
}

.dji08-04 .cards .card03 {
  background-image: url(../img/08_pict03.svg);
}

.dji08-04 .cards .card04 {
  background-image: url(../img/08_pict04.svg);
}

.dji08-04 .cards .card05 {
  background-image: url(../img/08_pict05.svg);
}

.dji08-04 .cards .card06 {
  background-image: url(../img/08_pict06.svg);
}

@media screen and (max-width:768px) {
  .dji08 .inner {
    padding: 12rem 2rem;
  }

  .dji08-01 .wrap {
    height: auto;
  }

  .dji08-01 .wrap::before {
    background-size: 40rem;
    background-position: right top;
  }

  .dji08-01 .txts {
    background: linear-gradient(to bottom, rgba(33, 33, 33, 0.00) 0%, #212121 30rem);
    height: 100%;
    padding: 18rem 2rem 4rem;
  }

  .dji08-01 .txts h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .dji08-01 .txts .p01 {
    font-size: 1.8rem;
  }

  .dji08-01 .txts ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
    align-items: flex-start;
  }

  .dji08-01 .txts ul li {
    font-size: 1.6rem;
  }

  .dji08-01 .txts .sup {
    font-size: 1.4rem;
  }

  .secB {
    margin-top: 4rem;
  }

  .secB .wrap {
    padding: 3rem 1rem 2rem;
    min-height: auto;
  }

  .secB .wrap h2 {
    font-size: 2rem;
  }

  .secB .wrap h2 em::before {
    height: 1rem;
  }

  .secB .box {
    height: auto;
    padding: 2rem;
  }

  .secB .box .raw {
    flex-direction: column;
    min-height: auto;
    align-items: center;
  }

  .secB .box .raw .left {
    width: 100%;
  }

  .secB .box .raw .right {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .secB .box .raw .right h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  .secB .box .raw .right .p01 {
    font-size: 1.6rem;
    flex-direction: column;
    text-align: center;
  }

  .secB .box .raw .right .p01 li:nth-of-type(1),
  .secB .box .raw .right .p01 li:nth-of-type(4) {
    min-width: auto;
  }

  .secB .box .raw .right .p02 {
    font-size: 1.4rem;
    text-align: center;
  }

  .secB .box .uls {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    gap: 2rem;
  }

  .secB .box .uls ul li {
    width: 100%;
    font-size: 1.6rem;
  }

  .secB .box .uls ul li span::before {
    width: 1.6rem;
    left: .3rem;
  }

  .secB .box .uls ul li+li {
    margin-top: 2rem;
  }

  .dji08-02 .wrap {
    padding-bottom: 4.5rem;
  }

  .dji08-02 .box .btn-wrap {
    bottom: -2.5rem;
  }

  .dji08-02 .box .raw .left img {
    width: calc(15.5rem * .7);
  }

  .dji08-03 .box .raw .left img {
    width: calc(14.8rem * .7);
  }

  .dji08-04 .cards {
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
  }

  .dji08-04 .cards::before {
    width: 5rem;
    top: -3rem;
  }

  .dji08-04 .cards .card {
    width: calc((100% - 1rem) / 2);
  }
}

/* ---------------------------------------------------------------------------
//  dji09
--------------------------------------------------------------------------- */
.dji09 {
  background: #7B72AC;
}

.dji09 .wrap {
  padding: 12rem 0;
  position: relative;
}

.dji09 .bg {
  background-image: url(../img/09_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 102.6rem;
  height: 45.6rem;
  position: absolute;
  top: 0;
  right: -51.3rem;
}

.dji09 .wrap>.head {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 9rem;
  position: relative;
}

.dji09 .wrap>.head h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.dji09 .wrap>.head h2::after {
  background-image: url(../img/dji_w.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 6.5rem;
  height: 4.2rem;
  display: block;
  margin: 1rem auto 0;
}

.dji09 .wrap>.head p {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
}

.dji09 .wrap>.head .btnA {
  margin-top: 4rem;
}

.dji09 .content {
  background: #fff;
  border-radius: 1.6rem;
  padding: 4rem 4rem 6rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
}

.dji09.thanks .content {
  padding: 4rem;
}

.dji09 .content .head {
  text-align: center;
  background: rgba(173, 165, 204, 0.25);
  padding: 4.5rem;
  border-radius: 1.3rem;
  border: solid 1px #ADA5CC;
  margin-bottom: 4rem;
}

.dji09.thanks .content .head {
  margin-bottom: 0;
}

.dji09 .content .head h3 {
  font-size: 2.3rem;
  font-weight: 700;
  padding-bottom: 2rem;
  border-bottom: solid 1px #ADA5CC;
  font-weight: 700;
}

.dji09 .content .head h3 em {
  color: #4F4B98;
}

.dji09 .content .head dl {
  text-align: center;
  padding-top: 2rem;
}

.dji09 .content .head dl dt {
  font-size: 2.3rem;
  font-weight: 400;
  color: #4F4B98;
  margin-bottom: 1.5rem;
}

.dji09 .content .head dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.4rem;
  line-height: 1;
  font-weight: 400;
}

.dji09 .content .head dl dd a em {
  color: #4F4B98;
  letter-spacing: calc(1em * (6.4 / 64));
  font-family: "League Spartan";
}

.dji09 .content .head dl dd a em span {
  position: relative;
  top: -.7rem;
}

.dji09 .content .head dl dd a>span {
  width: 4rem;
  position: relative;
  top: -1.7rem;
  margin-right: 1.5rem;
}

.dji09 .content .head dl dd a small {
  color: #212121;
  font-size: 3rem;
  position: relative;
  top: -.7rem;
}

.dji09 .content .head dl dd p {
  font-size: 1.8rem;
  font-weight: 400;
}

.dji09 .content>h3 {
  background: linear-gradient(90deg, #ADA5CC 0%, #7C73A2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  display: block;
  width: 44rem;
  margin: 0 auto;
  font-size: 4.3rem;
  font-weight: 700;
}

.form_area {
  width: 100%;
  padding: 4rem 6rem 0;
  color: #6B6B6B;
  font-weight: 400;
}

.form_area .req {
  color: #D10606;
  font-size: 1.2rem;
}

::placeholder {
  color: #9B9B9B;
}

.inputs {
  margin-bottom: 4rem;
}

.inputs dl {
  display: flex;
  border-top: 1px solid #F0F0F3;
  border-bottom: 1px solid #F0F0F3;
  align-items: flex-start;
}

.inputs dl+dl {
  border-top: none;
}

.inputs dl dt {
  display: flex;
  padding: 3rem 0;
  width: 36.7rem;
  gap: 1rem;
  align-items: center;
}

.inputs dl dd {
  width: calc(100% - 36.7rem);
  padding: 1.5rem 0;
}

.inputs dl dd input[type='text'],
.inputs dl dd input[type='email'] {
  background: #F0F0F3;
  padding: 1.5rem;
  width: 100%;
}

.inputs dl dd select {
  width: 50%;
  background: #F0F0F3;
  padding: 1.5rem;
}

.inputs dl dd textarea {
  background: #F0F0F3;
  height: 25rem;
  padding: 1.5rem;
  resize: none;
  width: 100%;
}

.form_area .p01 {
  text-align: center;
  margin-bottom: 4rem;
}

.form_area .p01 a {
  color: #007AFF;
  text-decoration: underline;
}

.form_area .p01 a:hover {
  opacity: .7;
}

.form_area .p02 {
  margin: 3rem 0 0;
  text-align: center;
  font-size: 1.4rem;
}

/* 1. デフォルトのラジオボタンを隠す */
.wpcf7-radio input[type='radio'] {
  display: none;
}

/* 2. ラベル全体のレイアウト調整 */
.wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin-right: 4.5rem;
  margin-top: 2rem;
}

.wpcf7-radio .wpcf7-list-item label {
  cursor: pointer;
  display: inline-block;
  padding-left: 3.5rem;
  /* カスタムボタン用の余白 */
  position: relative;
}

/* 3. 外枠（カスタムラジオボタンの土台） */
.wpcf7-radio .wpcf7-list-item-label::before {
  border: 1px solid #A7A7A7;
  border-radius: 50%;
  bottom: 0;
  content: '';
  height: 2.6rem;
  left: 0;
  margin: auto;
  position: absolute;
  top: .2rem;
  transition: .3s;
  width: 2.6rem;
  background: #fff;
}

/* 4. 選択時の「中の丸」 */
.wpcf7-radio .wpcf7-list-item-label::after {
  background: #A4A4A4;
  border-radius: 50%;
  bottom: 0;
  content: '';
  height: 1rem;
  left: calc(1px + .65rem);
  margin: auto;
  opacity: 0;
  position: absolute;
  top: .2rem;
  transition: .3s;
  width: 1rem;
}

.wpcf7-radio input[type='radio']:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.form_area .agree {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  font-weight: 500;
}

/* 1. デフォルトのチェックボックスを隠す */
.wpcf7-acceptance input[type='checkbox'] {
  display: none;
}

/* 2. ラベル全体のレイアウト調整 */
.wpcf7-acceptance .wpcf7-list-item {
  display: inline-block;
  margin: 0;
  /* 同意チェックは1つだけなので右マージンをリセット */
}

.wpcf7-acceptance .wpcf7-list-item label {
  cursor: pointer;
  display: inline-flex;
  /* テキストが複数行になっても枠がズレないようにflex推奨 */
  align-items: center;
  position: relative;
  padding-left: 4rem;
  /* チェックボックス用の余白 */
  line-height: 1;
}

/* 3. 外枠（四角い土台） */
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid #8D8D8D;
  transition: .3s;
  background: #fff;
}

/* 4. 選択時の「チェックマーク（✓）」 */
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  left: 1rem;
  /* ✓の横位置 */
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  /* 中央から少し上にずらして45度傾ける */
  width: 1rem;
  /* ✓の横幅 */
  height: 2rem;
  /* ✓の縦幅 */
  border-right: .3rem solid #4F4B98;
  /* 右の線 */
  border-bottom: .3rem solid #4F4B98;
  /* 下の線 */
  opacity: 0;
  /* 初期状態は透明 */
  transition: .3s;
}

/* 5. チェックが入った時に✓を表示する */
.wpcf7-acceptance input[type='checkbox']:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

/* （おまけ）チェックが入った時に外枠の色も変えたい場合 */
.wpcf7-acceptance input[type='checkbox']:checked+.wpcf7-list-item-label::before {
  border-color: #4F4B98;
}

.grecaptcha-badge {
  z-index: 1000;
}

@media screen and (max-width:768px) {
  .dji09 .wrap {
    padding: 12rem 1rem;
  }

  .dji09 .wrap>.head {
    margin-bottom: 6rem;
  }

  .dji09 .wrap>.head h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }

  .dji09 .wrap>.head p {
    font-size: 1.6rem;
  }

  .dji09 .wrap>.head .btnA {
    margin-top: 2rem;
  }

  .dji09 .content {
    padding: 2rem 2rem 4rem;
  }

  .dji09.thanks .content {
    padding: 2rem;
  }

  .dji09 .content .head {
    padding: 3rem 1rem;
  }

  .dji09 .content .head h3 {
    font-size: 1.6rem;
  }

  .dji09 .content .head dl dt {
    font-size: 1.4rem;
  }

  .dji09 .content .head dl dd a {
    font-size: 3rem;
  }

  .dji09 .content .head dl dd a em span {
    top: -.3rem;
  }

  .dji09 .content .head dl dd a>span {
    width: 2rem;
    top: -.7rem;
    margin-right: .5rem;
  }

  .dji09 .content .head dl dd a small {
    font-size: 1.2rem;
    top: -.2rem;
  }

  .dji09 .content .head dl dd p {
    font-size: 1.2rem;
  }

  .dji09 .content>h3 {
    width: 100%;
    font-size: 3rem;
  }

  .form_area {
    width: 100%;
    padding: 4rem 0;
  }

  .form_area .desc01 {
    margin-bottom: 3rem;
  }

  .inputs {
    padding-bottom: 3rem;
    margin-bottom: 0;
  }

  .inputs dl {
    display: block;
    padding: 2rem 0;
  }

  .inputs dl dt {
    font-weight: 600;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0;
  }

  .inputs dl.radio dt {
    margin-top: 0;
    margin-bottom: 0;
  }

  .inputs dl dd {
    width: 100%;
  }

  .inputs dl dd input[type='text'],
  .inputs dl dd input[type='email'] {
    padding: 1rem;
  }

  .inputs dl dd select {
    width: 100%;
  }

  .inputs dl dd textarea {
    height: 20rem;
    padding: 1rem;
  }

  .form_area .p01 {
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.75;
    font-size: 1.4rem;
  }

  .form_area .p02 {
    margin: 3rem 0 0;
    font-size: 1rem;
  }

  .form_area .agree {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    font-weight: 500;
  }

  /* 2. ラベル全体のレイアウト調整 */
  .wpcf7-radio .wpcf7-list-item {
    margin-right: 2rem;
    margin-top: 1rem;
    /* width: 100%; */
  }

  .grecaptcha-badge {
    bottom: 6rem !important;
    opacity: .7 !important;
  }
}

/* ---------------------------------------------------------------------------
//  PC/SP
--------------------------------------------------------------------------- */
.forSP {
  display: none;
}

@media screen and (max-width:768px) {
  .forSP {
    display: block;
  }

  .forPC {
    display: none;
  }
}