@charset "UTF-8";
/* CSS Document */

/*--  common  --*/

body {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.UD {
  font-family: "fot-udkakugo-large-pr6n", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.Futura {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.Futura-demi {
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.cont-inner {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .cont-inner {
    width: 100%;
    padding: 80px 40px;
  }
}
@media screen and (max-width: 480px) {
  .cont-inner {
    padding: 64px 16px;
  }
}
h2 {
  font-size: 32px;
  margin-bottom: 80px;
  letter-spacing: normal;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.GR {
  color: rgba(23, 173, 173, 1);
}
@media screen and (max-width: 960px) {
  .pc-only-min960 {
    display: none;
  }
}
.sp-only-max960 {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp-only-max960 {
    display: initial;
  }
}
@media screen and (max-width: 480px) {
  .pc-only-min480 {
    display: none;
  }
}
.sp-only-max480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp-only-max480 {
    display: initial;
  }
}
/*--  header  --*/

#header-content {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}
@media screen and (max-width: 480px) {
  #header-content .header-content--inner {
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  #header-content .header-content--inner .h-logo-box-2.btn-only {
    display: none;
  }
}
#header-content .header-content--inner .h-logo-box-2 div {
  width: 212px;
}
#header-content .header-content--inner .h-logo-box-2 div a {
  background: linear-gradient(90deg, #17ADAD 0%, #0C7B7B 100%);
  font-size: 16px;
}
#header-content .header-content--inner .h-logo-box-2 div a:before {
  width: 18px;
  height: 20px;
  margin: 0 16px 0 0;
}
/*--  mv  --*/
  #mv-content {
    overflow: clip;
    position: relative;
    display: flex;
    justify-content: center;
  }
  #mv-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    background: url(/wp-content/themes/loov-video2025/img/for-sales/mv-bg.png);
    background-repeat: no-repeat;
    background-size: 115%;
    background-position: center center;
    mask-image: linear-gradient(to right, #000 40%, transparent 60%);
    mask-size: 280% 100%;
    mask-position: 100% 0;
    animation: reveal-left-to-right 2s forwards;
  }
  @media screen and (max-width: 960px) {
    #mv-content::before {
      background-size: cover;
    }
  }
  @keyframes reveal-left-to-right {
    0% {
      mask-position: 100% 0;
    }
    100% {
      mask-position: 0% 0;
    }
  }
  #mv-content::-webkit-scrollbar {
    display: none;
  }
  #mv-content .mv-content--inner {
    display: flex;
    max-width: 1280px;
    gap: 56px;
    margin: 206px 0 120px 120px;
    opacity: 0;
    transform: translateY(30px);
    transition: none;
    animation: content-slide-up 1.5s cubic-bezier(0.25, 1, 0.5, 1) 2s forwards;
  }
  @keyframes content-slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
  @media screen and (max-width: 960px) {
    #mv-content .mv-content--inner {
      display: block;
      text-align: center;
      margin: 160px 40px 40px;
    }
  }
  @media screen and (max-width: 480px) {
    #mv-content .mv-content--inner {
      margin: 80px 16px 16px;
    }
  }
  @media screen and (min-width: 440px) {
    #mv-content .text {
      min-width: 400px;
    }
  }
  #mv-content .award {
    display: flex;
    height: 58px;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
  }
  @media screen and (max-width: 960px) {
    #mv-content .award {
      justify-content: center;
    }
  }
  #mv-content .award img {
    height: 100%;
  }
  @media screen and (max-width: 480px) {
    #mv-content .award img {
      flex-basis: 30%;
      width: 30%;
      height: auto;
    }
  }
  #mv-content h2 {
    text-align: left;
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: 0;
  }
  @media screen and (max-width: 960px) {
    #mv-content h2 {
      text-align: center;
    }
  }
  @media screen and (max-width: 450px) {
    #mv-content h2 {
      font-size: min(7.6vw, 56px);
    }
  }
  #mv-content h2 span {
    background: linear-gradient(90deg, #17ADAD 0%, #0C7B7B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 56px;
  }
  @media screen and (max-width: 450px) {
    #mv-content h2 span {
      font-size: min(11.5vw, 56px);
    }
  }
  @media screen and (max-width: 740px) {
    #mv-content h2 .pc-only-min960 {
      display: initial;
    }
  }
  #mv-content a {
    margin-top: 40px;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
    display: flex;
    align-items: center;
    height: 86px;
  }
  @media screen and (max-width: 960px) {
    #mv-content a {
      display: block;
      margin: 40px auto;
    }
  }  
  #mv-content a .default {
    width: 336px;
  }
  #mv-content a:hover .default {
    display: none;
  }
  #mv-content a .hover {
    display: none;
  }
  #mv-content a:hover .hover {
    display: initial;
    width: 344px;
  }
  
  #mv-content .kv {
    max-height: 500px;
    height: auto;
    width: 100vw;
  }

/*--  add-company  --*/

  .add-company {
    padding: 24px 0;

  }

/*--  cont1  --*/
  .cont1 .cont-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .cont1 dl {
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
    padding: 0 2%;
    flex-basis: calc(100% / 3);
    position: relative;
  }
  .cont1 dl:nth-child(1) {
    padding-left: 0;
  }
  .cont1 dl:nth-child(3) {
    padding-right: 0;
  }
  .cont1 dl + dl {
    border-left: 2px solid rgba(12, 123, 123, 1);
  }
  .cont1 dt {
    font-size: 20px;
    color: rgba(12, 123, 123, 1);
  }
  @media screen and (max-width: 960px) {
    .cont1 dt {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 480px) {
    .cont1 dt {
      font-size:14px;
    }
  }
  .cont1 dt br {
    display: none;
  }
  @media screen and (max-width: 550px) {
    .cont1 dt br {
      display: initial;
    }
  }
  .cont1 dd .line1 .number {
    background: linear-gradient(90deg, #17ADAD 0%, #0C7B7B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 72px;
  }
  @media screen and (max-width: 960px) {
    .cont1 dd .line1 .number {
      font-size: min(8.5vw, 56px);
    }
  }
  .cont1 dd .line1 .percent {
    background: linear-gradient(90deg, #17ADAD 0%, #0C7B7B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    margin-left: 8px;
  }
  @media screen and (max-width: 960px) {
    .cont1 dd .line1 .percent {
      font-size: min(5vw, 32px);
      margin-left: 4px;
    }
  }
  .cont1 dd small {
    font-size: 14px;
    color: rgba(12, 123, 123, 1);
    line-height: 1.4;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  @media screen and (max-width: 960px) {
    .cont1 dd small {
      font-weight: normal;
      font-size: 10px;
      display: inline-block;
      line-height: 1.2;
    }
  }
  

/*--  cont2  --*/

  .cont2 dl {
    gap: 40px;
    align-items: flex-end;
    display: flex;
    margin-bottom: 60px;
  }
  @media screen and (max-width: 960px) {
    .cont2 dl {
      text-align: center;
      display: block;
      margin-bottom: 24px;
    }
  }
  .cont2 dt {
    flex-basis: 325px;
  }
  .cont2 dt .line1 {
    display: flex;
    font-size: 24px;
    align-items: center;
  }
  @media screen and (max-width: 960px) {
    .cont2 dt .line1 {
      justify-content: center;
      margin-bottom: 8px;
    }
  }
  .cont2 dt .line1 span {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
  }
  .cont2 dt .line2 {
    font-size: 56px;
    line-height: 1.4;
  }
  @media screen and (max-width: 960px) {
    .cont2 dt .line2 {
      font-size: 6vw;
    }
  }
  @media screen and (max-width: 480px) {
    .cont2 dt .line2 {
      font-size: 10vw;
      padding-bottom: 8px;
      display: inline-block;
    }
  }
  .cont2 dt img {
    margin-top: 16px;
  }
  @media screen and (max-width: 960px) {
    .cont2 dt img {
      width: 35vw;
      margin-bottom: 40px;
    }
  }
  @media screen and (max-width: 480px) {
    .cont2 dt img {
      width: 60vw;
    }
  }
  .cont2 dd {
    font-size: 20px;
  }
  @media screen and (max-width: 480px) {
    .cont2 dd {
      font-size: 16px;
    }
  }
  .cont2 .movie {
    box-shadow: -4px 4px 64px -8px rgba(0, 0, 0, 0.15);
  }

/*--  cont3  --*/
  .cont3 {
    background-image: url(/wp-content/themes/loov-video2025/img/for-sales/cont3-bg.png);
    background-repeat: no-repeat;
    background-size: auto 70%;
    background-position: center bottom 30%;
  }
  .cont3 .cont-inner {
    padding-bottom: 0;
  }
  .cont3 .list {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    font-size: 16px;
  }
  @media screen and (max-width: 480px) {
    .cont3 .list {
      flex-direction: column;
    }
  }
  .cont3 .list p {
    border-radius: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 12px 12px 48px -24px rgba(0, 0, 0, 0.6);
    text-align: center;
    font-weight: 600;
  }
  @media screen and (max-width: 480px) {
    .cont3 .list p {
      border-radius: 8px;
    }
  }
  .cont3 .list p img {
    margin-bottom: 20px;
  }
  @media screen and (max-width: 960px) {
    .cont3 .list p img {
      width: 50%;
    }
  }
  .cont3 h2.solution {
    margin-top: 40px;
    color: #fff;
  }
  .cont3 h2.solution span {
    font-size: 56px;
  }
  @media screen and (max-width: 480px) {
    .cont3 h2.solution span {
      font-size: 40px;
    }
  }
  .cont3 .img {
    box-shadow: -4px 4px 64px -8px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
  }
  @media screen and (max-width: 480px) {
    .cont3 .img {
      padding: 20px;
      border-radius: 8px;
    }
  }

/*--  cont4  --*/
  .cont4 {
    background-image: url(/wp-content/themes/loov-video2025/img/for-sales/cont4-bg.png);
    background-repeat: no-repeat;
    background-size: auto 80%;
    background-position: right top 80%; 
  }
  @media screen and (max-width: 480px) {
    .cont4 {
      background-size: 230%;
      background-position: center center;
    }
  }
  .cont4 h2 small {
    font-size: 24px;
  }
  @media screen and (max-width: 480px) {
    .cont4 h2 small {
      font-size: 16px;
    }
  }
  .cont4 .item {
    margin-top: 100px;
    width: 852px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media screen and (max-width: 960px) {
    .cont4 .item {
      width: 100%;
    }
  }
  @media screen and (max-width: 480px) {
    .cont4 .item {
      flex-direction: column;
      margin-top: 40px;
    }
  }
  .cont4 dl {
    flex-basis: 382px;
  }
  @media screen and (max-width: 960px) {
    .cont4 dl {
      flex-basis: 45%;
    }
  }
  .cont4 dt {
    font-size: 24px;
    background: linear-gradient(90deg, #17ADAD 0%, #0C7B7B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
  }
  @media screen and (max-width: 960px) {
    .cont4 dt {
      text-align: center;
      font-size: 20px;
    }
  }
  .cont4 img {
    flex-basis: 430px;
    width: 430px;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  }
  @media screen and (max-width: 960px) {
    .cont4 img {
      flex-basis: 45%;
      width: 45%;
    }
  }
  @media screen and (max-width: 480px) {
    .cont4 img {
      width: 100%;
      margin: 24px 0 0;
    }
  }

/*--  bg (cont5&6) --*/

  .bg {
    background-image: url(/wp-content/themes/loov-video2025/img/for-sales/cont-bg.png);
    background-size: cover;
  }

/*--  cont5  --*/
  .cont5 .bg-WT {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: -4px 4px 64px -8px rgba(0, 0, 0, 0.15);
  }
  @media screen and (max-width: 480px) {
    .cont5 .bg-WT {
      border-radius: 8px;
    }
  }

  .cont5 .bg-WT .UD {
    color: rgba(23, 173, 173, 1);
    font-size: 24px;
    margin-bottom: 16px;
  }
  @media screen and (max-width: 480px) {
    .cont5 .bg-WT .UD {
      font-size: 20px;
    }
  }
  .cont5 .attribute dl {
    display: flex;
    margin-top: 8px;
  }
  .cont5 .attribute dt {
    font-weight: 600;
    flex-basis: 80px;
  }
  .cont5 .attribute dd {
    flex-basis: calc(100% - 80px);
  }
  .cont5 .sora {
    padding: 40px;
    margin-bottom:40px;
  }
  @media screen and (max-width: 480px) {
    .cont5 .sora {
      padding: 16px;
      margin-bottom: 24px;
    }
  }
  .cont5 .sora div {
    gap: 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 960px) {
    .cont5 .sora div {
      display: block;
    }
  }
  .cont5 .sora div img {
    width: 374px;
    border-radius: 16px;
  }
  @media screen and (max-width: 960px) {
    .cont5 .sora div img {
      width: 100%;
      margin-bottom: 40px;
    }
  }
  @media screen and (max-width: 480px) {
    .cont5 .sora div img {
      border-radius: 8px;
    }
  }
  .cont5 .sub {
    display: flex;
    gap: 40px;
    align-items: stretch;
  }
  @media screen and (max-width: 480px) {
    .cont5 .sub {
      flex-direction: column;
      gap: 24px;
    }
  }
  .cont5 .sub .bg-WT {
    padding: 24px;
    flex-basis: calc(50% - 12px);
  }
  @media screen and (max-width: 480px) {
    .cont5 .sub .bg-WT {
      padding: 16px;
    }
  }
  .cont5 .sub .bg-WT img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  @media screen and (max-width: 480px) {
    .cont5 .sub .bg-WT img {
      border-radius: 8px;
    }
  }
  .cont5 a {
    width: 336px;
    display: block;
    margin: 80px auto 0;
  }
  @media screen and (max-width: 480px) {
    .cont5 a {
      width: 100%;
    }
  }

/*--  cont6  --*/
  .cont6 .scene {
    margin-top: 40px;
    padding: 40px;
    text-align: center;
    box-shadow: 16px 16px 64px -32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(23, 173, 173, 1);
    border-radius: 20px;
    background-color: #fff;
  }
  @media screen and (max-width: 480px) {
    .cont6 .scene {
      padding: 20px;
      margin-top: 24px;
      border-radius: 8px;
    }
  }
  .cont6 img {
    height: 150px;
  }
  .cont6 dt {
    font-size: 24px;
    background: linear-gradient(90deg, #17ADAD 0%, #0C7B7B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 16px auto;
  }
  @media screen and (max-width: 480px) {
    .cont6 dt {
      font-size: 20px;
    }
  }
  .cont6 dd {
    text-align: left;
  }

/*--  cont7  --*/
  .cont7 {
    background-image: url(/wp-content/themes/loov-video2025/img/for-sales/cont7-bg.png);
    background-repeat: no-repeat;
    background-size: auto 65%;
    background-position: left top;
  }
  @media screen and (max-width: 960px) {
    .cont7 {
      background-image: url(/wp-content/themes/loov-video2025/img/for-sales/cont7-bg-sp.png);
      background-size: 100%;
      background-position: center top;
    }
  }
  .cont7 .lists {
    display: flex;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  @media screen and (max-width: 480px) {
    .cont7 .lists {
      gap: 16px;
    }
  }
  .cont7 dl {
    backdrop-filter: blur(20px);
    box-shadow: 12px 12px 48px 0px rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 20px;
    text-align: center;
    flex-basis: calc((100% - 72px) / 4);
  }
  @media screen and (max-width: 745px) {
    .cont7 dl {
      flex: calc((100% - 24px) / 2);
    }
  }
  @media screen and (max-width: 480px) {
    .cont7 dl {
      border-radius: 8px;
    }
  }
  .cont7 dt {
    color: rgba(23, 173, 173, 1);
    font-weight: 600;
  }
  @media screen and (max-width: 960px) {
    .cont7 dt {
      height: 44.8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  .cont7 img {
    width: 75%;
    margin: 16px 0;
  }
  .cont7 dd {
    font-size: 13px;
  }

/*--  cont8  --*/
  .cont8 p {
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
  }
  @media screen and (max-width: 480px) {
    .cont8 p {
      margin-bottom: 40px;
    }
  }
  .cont8 .flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
  }
  @media screen and (max-width: 480px) {
    .cont8 .flow {
      gap: 24px;
      align-items: flex-start;
    }
  }
  .cont8 dl {
    flex-basis: 374px;
  }
  @media screen and (max-width: 960px) {
    .cont8 dl {
      flex-basis: 40%;
    }
  }
  .cont8 dt {
    font-size: 20px;
    margin-bottom: 8px;
  }
  @media screen and (max-width: 480px) {
    .cont8 dt {
      font-size: 16px;
      margin-top: 8px;
    }
  }
  .cont8 span {
    font-size: 32px;
    background: rgba(23, 173, 173, 1);
    padding: 10px 18px;
    border-radius: 100px;
    color: #fff;
    position: relative;
  }
  .cont8 span:after {
    content: "";
    position: absolute;
    display: block;
    height: 280px;
    width: 2px;
    background: rgba(23, 173, 173, 1);
    top: 70px;
    right: 0;
    left: 0;
    z-index: 1;
    margin: auto;
  }
  @media screen and (max-width: 960px) {
    .cont8 span:after {
      height: 230px;
    }
  }
  @media screen and (max-width: 760px) {
    .cont8 span:after {
      height: 164px;
    }
  }
  @media screen and (max-width: 480px) {
    .cont8 span:after {
      height: 400px;
    }
  }
  @media screen and (max-width: 400px) {
    .cont8 span:after {
      height: 360px;
    }
  }
  .cont8 .flow5 span:after {
    content: none;
  }
  .cont8 img {
    flex-basis: 374px;
    width: 374px;
    border: 4px solid rgba(39, 39, 39, 0.1);
    box-shadow: 16px 16px 64px -32px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
  }
  @media screen and (max-width: 960px) {
    .cont8 img {
      flex-basis: 40%;
      width: 40%;
    }
  }
  @media screen and (max-width: 480px) {
    .cont8 img {
      width: 100%;
    }
  }

/*--  cont9  --*/
  .cont9 .cont-inner {
    padding-bottom: 0;
  }
  .cont9 input[type="checkbox"] {
    display: none;
  }
  .cont9 label {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    position: relative;
  }
  @media screen and (max-width: 480px) {
    .cont9 label {
      font-size: 16px;
      padding-right: 30px;
    }
  }
  .cont9 label:before {
    content: "Q";
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
    background: rgba(23, 173, 173, 1);
    padding: 4px 12px;
    border-radius: 100px;
    color: #fff;
  }
  @media screen and (max-width: 480px) {
    .cont9 label:before {
      padding: 5.5px 12px;
    }
  }
  .cont9 label:after {
    content: '';
    display: block;
    background-image: url(/wp-content/themes/loov-video2025/img/for-sales/cont9-down.png);
    height: 100%;
    width: 24px;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 0;
  }
  .cont9 .anser {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0 40px;
    transition: .5s;
    visibility: hidden;
    height: 0px;
    opacity: 0;
  }
  .cont9 .anser:before {
    content: "A";
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 3px 12px;
    border-radius: 100px;
    border: solid 1px;
    color: rgba(23, 173, 173, 1);
    font-size: 20px;
  }
  @media screen and (max-width: 480px) {
    .cont9 .anser:before {
      padding: 5px 12.5px;
      font-size: 16px;
    }
  }
  .cont9 input[type="checkbox"]:checked + label + .anser {
    visibility: visible;
    height: 52px;
    opacity: 1;
  }
  @media screen and (max-width: 480px) {
    .cont9 input[type="checkbox"]:checked + label + .anser {
      height: 80px;
    }
  }










/*--  cta-content  --*/
  
  .cta-content {
    background: linear-gradient(90deg, #17ADAD 0%, #0C7B7B 100%);
    color: #fff;
    font-size: 20px;
  }
  @media screen and (max-width: 960px) {
    .cta-content {
      font-size: 2.7vw;
    }
  }
  @media screen and (max-width: 480px) {
    .cta-content {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 480px) {
    .cta-content .cont-inner {
      padding: 48px 16px;
    }
  }
  .cta-content .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cta-content .document {
    flex-basis: 500px;
    width: 500px;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  }
  @media screen and (max-width: 960px) {
    .cta-content .document {
      flex-basis: 42vw;
      width: 42vw;
    }
  }
  @media screen and (max-width: 480px) {
    .cta-content .document {
      flex-basis: 46vw;
      width: 46vw;
    }
  }
  .cta-content p {
    margin-bottom: 30px;
  }
  @media screen and (max-width: 480px) {
    .cta-content p {
      margin-bottom: 0;
    }
  }
  .cta-content p img {
    flex-basis: 500px;
    width: 500px;
    margin-top: 16px;
  }
  @media screen and (max-width: 960px) {
    .cta-content p img {
      flex-basis: 44vw;
      width: 44vw;
    }
  }
  .cta-content a {
    height: 86px;
    align-items: center;
    justify-content: center;
  }
  @media screen and (min-width: 481px) {
    .cta-content a.pc-only-min480 {
      display: flex;
    }
  }
  @media screen and (max-width: 480px) {
    .cta-content a.sp-only-max480 {
      display: flex;
    }
  }
  .cta-content a img {
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  }
  .cta-content a .default {
    width: 336px;
  }
  @media screen and (max-width: 480px) {
    .cta-content a .default {
      max-width: 100%;
    }
  }
  .cta-content a:hover .default {
    display: none;
  }
  .cta-content a .hover {
    display: none;
  }
  .cta-content a:hover .hover {
    display: initial;
    width: 344px;
  }
  @media screen and (max-width: 960px) {
    .cta-content a img {
      flex-basis: 44vw;
      width: 44vw;
    }    
  }
  @media screen and (max-width: 480px) {
    .cta-content a img {
      margin-top: 32px;
      width: 100%;
    }    
  }


/*--  form  --*/
  #form {
    background-image: url(/wp-content/themes/loov-video2025/img/for-sales/cont-bg.png);
    background-size: cover;
  }
  #form .flex {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }
  @media screen and (max-width: 960px) {
    #form .flex {
      display: block;
    }
  }
  #form .left {
    flex-basis: 280px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 480px) {
    #form .left {
      gap: 8px;
      margin-bottom: 48px;
    }
  }
  #form .left h3 {
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
  }
  #form .left h3 span {
    font-size: 32px;
  }
  @media screen and (max-width: 960px) {
    #form .left .document {
      width: 70%;
    }
  }
  #form form {
    flex-basis: 580px;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: -4px 4px 64px -8px rgba(0, 0, 0, 0.15);
    background-color: #fff;
  }
  @media screen and (max-width: 480px) {
    #form form {
      padding: 24px 16px;
      border-radius: 8px;
    }
  }
  #form .form_box {
    margin-bottom: 16px;
  }
  #form .form_box.name {
    display: flex;
    gap: 16px;
    justify-content: space-between;
  }
  #form .form_box.name div {
    flex-basis: calc(50% - 8px);
  }
  #form label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
  }
  #form label span {
    padding: 2px 8px;
    background: rgba(230, 78, 74, 1);
    color: #fff;
    border-radius: 2px;
  }
  #form input {
    background: #FFF;
    border: 1px solid rgba(39, 39, 39, 0.3);
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 8px;
    border-radius: 4px;
  }
  #form .consent {
    font-size: 14px;
  }
  #form .consent a {
    color: #17ADAD;
    display: inline;
  }
  #form button {
    background: none;
    border: none;
    transition: .4s;
    opacity: 0.2;
    margin: 10px auto 0;
    display: block;
  }


/*--  footer  --*/
  footer {
    background-color: #000;
  } 
  footer .cont-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  @media screen and (max-width: 960px) {
    footer .cont-inner {
      display: block;
    }
  }
  footer .logo-block img {
    width: 155px;
  }
  footer .navi {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .navi .left ,
  footer .navi .right {
    width: 210px;
  }
  @media screen and (max-width: 960px) {
    footer .navi .left ,
    footer .navi .right {
      flex-basis: 45%;
      width: 100%;
    }
  }
  footer .navi dt {
    border-bottom: solid 1px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  footer .navi dd ul {
    line-height: 2.4;
  }
  footer .about {
    color: #fff;
    border-top: solid 1px;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    font-size: 14px;
  }
  @media screen and (max-width: 480px) {
    footer .about {
      flex-direction: column;
      padding: 16px;
      gap: 16px;
      text-align: center;
    }
  }
  footer .about a {
    color: #fff;
  }
  footer .copy {
      margin-top: 40px;
  }

/*--  forTOP  --*/

  #toTOP {
    position: fixed;
    left: 8px;
    bottom: 8px;
    padding: 4px 6px 0;
    width: 55px;
    border-radius: 4px;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  @media screen and (max-width: 480px) {
    #toTOP {
      width: 40px;
    }
  }
  #toTOP.show {
    opacity: .7;
    visibility: visible;
  }
  #toTOP.show:hover {
    opacity: 1;
  }


/*--  thanks  --*/
  @media screen and (max-width: 980px) {
    #wrap.thanks #mv-content {
      margin-top: 45px;
    }
  }
  #wrap.thanks .cont-inner {
    padding: 30px 0;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks .cont-inner {
      padding: 20px;
    }
  }
  #wrap.thanks h2 {
    text-align: left;
    margin-bottom: 0;
  }
  #wrap.thanks h3 {
    border-left: solid 8px #00B29E;
    padding: 0 0 0 28px;
    margin: 30px 0;
    font-size: 22px;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks h3 {
      font-size: calc(30 *(100vw/750));
      padding: 0 0 0 15px;
      margin: 15px 0;
    }
  }
  #wrap.thanks .DL-content .flex-box {
    justify-content: space-between;
    gap: 15%;
    padding: 0 0 30px;
  }
  #wrap.thanks .DL-content .flex-box > img {
    width: 400px;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks .DL-content .flex-box > img {
      width: 75%;
      margin: 0 auto;
      display: block;
    }
  }
  #wrap.thanks .DL-content .btn-area {
    background: #F7F7F7;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks .DL-content .btn-area {
      padding: 20px;
    }
  }
  #wrap.thanks .DL-content .btn-area .dltext {
    padding-bottom: 10px;
  }