@keyframes loaded-bar {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@keyframes loaded-logo {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  50% {
    width: 360px;
    opacity: 1;
    visibility: visible;
    top: 50%;
    left: 50%;
  }

  100% {
    width: 255px;
    opacity: 1;
    visibility: visible;
    top: 344px;
    left: 218px;
  }
}

@media screen and (min-width: 1680px) {
  @keyframes loaded-logo {
    0% {
      opacity: 0;
      visibility: hidden;
    }

    50% {
      width: 360px;
      opacity: 1;
      visibility: visible;
      top: 50%;
      left: 50%;
    }

    100% {
      width: 255px;
      opacity: 1;
      visibility: visible;
      top: 344px;
      left: calc(50vw - 750px + 127px);
    }
  }
}

@media screen and (max-width: 767px) {
  @keyframes loaded-logo {
    0% {
      opacity: 0;
      visibility: hidden;
    }

    50% {
      opacity: 1;
      visibility: visible;
      top: 50%;
      left: 50%;
      width: 193px;
    }

    100% {
      opacity: 1;
      visibility: visible;
      top: 210px;
      left: 98.5px;
      width: 157px;
    }
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes zoom-fv {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade-in-from-bottom {
  from {
    height: 0;
  }

  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes trapezoid-move {
  60% {
    clip-path: polygon(110% 20%, 34.8% 100%, 72.9% 100%);
  }

  80% {
    clip-path: polygon(95% 0%, 44.8% 100%, 82.9% 100%);
  }

  100% {
    clip-path: polygon(100% 0%, 14.8% 100%, 52.9% 100%);
  }
}

@keyframes reflection {
  92% {
    opacity: 0;
  }

  94% {
    opacity: 0.8;
  }

  96% {
    opacity: 1;
  }

  98% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
  }
}

@keyframes heading-gray {
  0% {
    height: 0;
    opacity: 0;
    visibility: hidden;
  }

  100% {
    height: 810px;
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 767px) {
  @keyframes heading-gray {
    0% {
      height: 0;
      opacity: 0;
      visibility: hidden;
    }

    100% {
      height: 326px;
      opacity: 1;
      visibility: visible;
    }
  }
}

@keyframes heading-black {
  0% {
    height: 0;
    opacity: 0;
    visibility: hidden;
  }

  100% {
    height: 899px;
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 767px) {
  @keyframes heading-black {
    0% {
      height: 0;
      opacity: 0;
      visibility: hidden;
    }

    100% {
      height: 416px;
      opacity: 1;
      visibility: visible;
    }
  }
}

@keyframes heading-purple {
  0% {
    height: 0;
    opacity: 0;
    visibility: hidden;
  }

  100% {
    height: 638px;
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 767px) {
  @keyframes heading-purple {
    0% {
      height: 0;
      opacity: 0;
      visibility: hidden;
    }

    100% {
      height: 311px;
      opacity: 1;
      visibility: visible;
    }
  }
}

@keyframes heading-fade {
  0% {
    color: transparent;
  }

  50% {
    color: transparent;
  }

  100% {
    color: #171717;
  }
}

@keyframes heading-violet-fade {
  0% {
    color: transparent;
  }

  50% {
    color: transparent;
  }

  100% {
    color: #843184;
  }
}

@keyframes heading-green-fade {
  0% {
    color: transparent;
  }

  50% {
    color: transparent;
  }

  100% {
    color: #00adb0;
  }
}

@keyframes heading-blue-fade {
  0% {
    color: transparent;
  }

  50% {
    color: transparent;
  }

  100% {
    color: #3267a7;
  }
}

@keyframes heading-bar {
  0% {
    width: 0;
    left: 0;
  }

  49% {
    left: 0;
  }

  50% {
    width: 100%;
    left: auto;
    right: 0;
  }

  100% {
    width: 0;
    left: auto;
    right: 0;
  }
}

@keyframes click-here-repeat {
  0% {
    width: 0;
  }

  10% {
    width: 100%;
  }

  20% {
    width: 0;
  }
}

@keyframes click-here-text-repeat {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  20% {
    opacity: 0;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #000000;
  min-width: 1300px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

img {
  vertical-align: top;
}

a {
  color: #000000;
  text-decoration: none;
}

p,
ul,
dl,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul,
ol {
  list-style: none;
}

.l-main {
  margin-top: -50px;
}

@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 0;
  }
}

.l-nav,
.l-nav--top-scroll,
.l-nav--top,
.l-nav--top-white {
  position: fixed;
  width: 100%;
  top: 66px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 34px 0;
  font-weight: 500;
  z-index: 2;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: background-color 0.2s;
}

@media screen and (max-width: 767px) {
  .l-nav--top {
    padding: 76px 0;
  }
}

.l-nav::-webkit-scrollbar,
.l-nav--top-scroll::-webkit-scrollbar,
.l-nav--top::-webkit-scrollbar,
.l-nav--top-white::-webkit-scrollbar {
  display: none;
}

.l-nav--top,
.l-nav--top-white {
  width: 100%;
  position: absolute;
  top: 0;
  right: 79px;
  z-index: 1;
}

.l-nav--top-white {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.l-nav--top,
.l-nav--top-white {
  visibility: hidden;
  opacity: 0;
}

.l-nav h1,
.l-nav--top h1,
.l-nav--top-scroll h1 {
  position: absolute;
  top: 30px;
  left: 60px;
  width: 100px;
  height: 34px;
}

@media screen and (max-width: 767px) {

  .l-nav h1,
  .l-nav--top h1 {
    display: none;
  }
}

.l-nav h1 img,
.l-nav--top h1 img,
.l-nav--top-scroll h1 img {
  max-width: 100%;
  height: auto;
}

.l-nav--top-white {
  top: 66px;
}

.l-nav--top-white a {
  color: #ffffff;
}

.l-nav--top-white .l-nav__menu-item::before,
.l-nav--top-white .l-nav__menu-item--active::before {
  background-color: #ffffff;
}

.l-nav--top-scroll {
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  transition: all 0.6s;
}

@media screen and (max-width: 767px) {

  .l-nav,
  .l-nav--top-scroll,
  .l-nav--top,
  .l-nav--top-white {
    min-width: 0;
    width: 100%;
    height: calc(100vh - 34px);
    background: linear-gradient(to bottom, #000000, #6f6f6f);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    overflow-y: auto;
    align-items: flex-start;
    padding: 76px 0;
  }
}

.l-nav__inner,
.l-nav__inner--top {
  padding: 0 42px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 945px) {

  .l-nav__inner,
  .l-nav__inner--top {
    min-width: 835px;
  }
}

@media screen and (min-width: 1240px) {

  .l-nav__inner,
  .l-nav__inner--top {
    padding: 0 97px;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {

  .l-nav__inner,
  .l-nav__inner--top {
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    min-width: 100%;
  }
}

.l-nav__inner--top {
  justify-content: flex-end;
  width: auto;
  margin: 0 0 0 auto;
  padding: 0;
}

/* @media screen and (max-width: 1200px) {
  .l-nav__inner--top {
    padding: 0 97px;
  }
} */
@media screen and (max-width: 945px) {
  .l-nav__inner--top {
    padding: 0;
    min-width: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-nav__inner--top {
    width: 100%;
    margin: 0 0 140px;
  }
}

@media screen and (max-width: 767px) {

  .l-nav__button,
  .l-nav__button--top,
  .l-nav__button--white {
    width: 50px;
    height: 50px;
    border: 1px solid #000000;
    border-radius: 50%;
    background-color: transparent;
    font-size: 1.4rem;
    color: #000000;
    position: sticky;
    top: 28px;
    margin: 20px 20px 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.2s;
  }
}

@media screen and (max-width: 767px) {

  .l-nav__button--top,
  .l-nav__button--white {
    opacity: 0;
    visibility: hidden;
  }
}

.l-nav__button--white {
  margin-top: 86px;
  color: #ffffff;
  border-color: #ffffff;
}

.l-nav__menu {
  display: flex;
  gap: 42px;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .l-nav__menu {
    flex-direction: column;
    gap: 0;
    width: 89.3333333333%;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 1240px) {
  .l-nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-578px);
  }
}

.l-nav__menu-item,
.l-nav__menu-item--active {
  font-weight: 500;
  list-style-type: none;
  position: relative;
}

.l-nav__menu-item::before,
.l-nav__menu-item--active::before {
  content: "";
  width: 9px;
  height: 21px;
  transform: skewX(-33deg);
  background: linear-gradient(to bottom, #3267a7, #843184);
  position: absolute;
  top: 0;
  left: -22px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.l-nav__menu-item:hover::before,
.l-nav__menu-item--active:hover::before {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {

  .l-nav__menu-item,
  .l-nav__menu-item--active {}

  .l-nav__menu-item a,
  .l-nav__menu-item--active a {
    padding: 1.22em 0;
    font-size: 1.6rem;
    color: #ffffff;
    display: block;
  }

  .l-nav__menu-item+.l-nav__menu-item,
  .l-nav__menu-item--active+.l-nav__menu-item,
  .l-nav__menu-item+.l-nav__menu-item--active,
  .l-nav__menu-item--active+.l-nav__menu-item--active {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  .l-nav__menu-item::before,
  .l-nav__menu-item--active::before {
    display: none;
  }
}

.l-nav__menu-item--active::before {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .l-nav__menu-item--active::before {
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (max-width: 767px) {
  .l-nav__menu-logo {
    width: 89.3333333333%;
    margin: 0 auto;
  }

  .l-nav__menu-logo img {
    width: 134px;
  }
}

.l-nav__menu-block {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0 0 0 32px;
}

.l-nav__menu-block .l-nav__menu-block-item {
  position: relative;
  margin: -34px 0;
}

.l-nav__menu-block .l-nav__menu-block-item a {
  position: relative;
  padding: 22px 34px 22px 67px;
  display: flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  color: #fff;
  transition: 0.5s;
}

.l-nav__menu-block .l-nav__menu-block-item a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .l-nav__menu-block {
    flex-direction: column;
    width: 89.3333333333%;
    height: auto;
    margin: 0 auto;
  }

  .l-nav__menu-block .l-nav__menu-block-item {
    margin: 0 0 12px;
  }

  .l-nav__menu-block .l-nav__menu-block-item a {
    padding: 20px 0;
    justify-content: center;
    font-size: 1.6rem;
  }

  .l-nav__menu-block .l-nav__menu-block-item a:hover {
    opacity: 1;
  }
}

.l-nav__menu-block .l-nav__menu-block-item.link_download a {
  background: linear-gradient(225deg, #3267A7 0%, #554893 100%);
}

.l-nav__menu-block .l-nav__menu-block-item.link_file a {
  background: linear-gradient(225deg, #843184 0%, #9C3267 100%);
}

.l-nav__menu-block .l-nav__menu-block-item a::before {
  position: absolute;
  top: 50%;
  left: 34px;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 30px;
  background: center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .l-nav__menu-block .l-nav__menu-block-item.link_download a::before {
    top: 46%;
    left: 30px;
    width: 20px;
    height: 17px;
  }

  .l-nav__menu-block .l-nav__menu-block-item.link_file a::before {
    left: 27px;
  }
}

.l-heading {
  height: 496px;
  position: relative;
  overflow: hidden;
}

.l-nav__menu-block .l-nav__menu-block-item.link_download a::before {
  background-image: url("../img/icon_download.svg");
}

.l-nav__menu-block .l-nav__menu-block-item.link_file a::before {
  background-image: url("../img/icon_file.svg");
}

@media screen and (max-width: 767px) {
  #header {
    position: relative;
    z-index: 4;
  }
}

.l-heading {
  height: 496px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .l-heading {
    margin-top: -72px;
    height: 308px;
  }
}

.l-heading__title {
  padding: 222px 0 80px;
  color: #171717;
}

.l-heading__title--violet {
  animation: heading-violet-fade 1s ease forwards;
  color: #492475;
}

.l-heading__title--green {
  animation: heading-green-fade 1s ease forwards;
  color: #00adb0;
}

.l-heading__title--blue {
  animation: heading-blue-fade 1s ease forwards;
  color: #3267a7;
}

@media screen and (max-width: 767px) {
  .l-heading__title {
    padding: 80px 0;
  }
}

.l-heading__title-en,
.l-heading__title-en--big {
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 2px;
  border-bottom: 1px solid #000;
  font-size: 6rem;
  font-weight: 500;
  color: transparent;
  letter-spacing: 6px;
  position: relative;
  animation: heading-fade 1s ease forwards;
}

@media screen and (max-width: 767px) {

  .l-heading__title-en,
  .l-heading__title-en--big {
    font-size: 3.6rem;
    letter-spacing: normal;
  }
}

.l-heading__title-en::after,
.l-heading__title-en--big::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 101px;
  background-color: #000000;
  top: 0;
  left: 0;
  animation: heading-bar 1s ease forwards;
}

.l-heading__title-en--big {
  font-size: 7rem;
}

@media screen and (max-width: 767px) {

  .l-heading__title-en::after,
  .l-heading__title-en--big::after {
    height: 52px;
  }

  .l-heading__title-en--big {
    font-size: 3.6rem;
  }
}

.l-heading__title-jp {
  display: block;
  font-size: 2.6rem;
  font-weight: 300;
  color: transparent;
  position: relative;
  width: fit-content;
  animation: heading-fade 1s ease 0.2s forwards;
}

@media screen and (max-width: 767px) {
  .l-heading__title-jp {
    font-size: 1.6rem;
  }
}

.l-heading__title-jp::after {
  content: "";
  position: absolute;
  width: 0;
  height: 37px;
  background-color: #000000;
  top: 0;
  left: 0;
  animation: heading-bar 1s ease 0.2s forwards;
}

@media screen and (max-width: 767px) {
  .l-heading__title-jp {
    font-size: 1.6rem;
  }

  .l-heading__title-jp::after {
    height: 22px;
  }
}

.l-heading__bg,
.l-heading__bg--purple,
.l-heading__bg--black,
.l-heading__bg--gray2,
.l-heading__bg--gray1 {
  position: absolute;
  z-index: -1;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  visibility: hidden;
}

.l-heading__bg--gray1 {
  width: 635px;
  height: 810px;
  top: -350px;
  right: -90px;
  animation: heading-gray 0.8s ease forwards;
}

@media screen and (max-width: 767px) {
  .l-heading__bg--gray1 {
    width: 256px;
    height: 326px;
    top: 0;
    right: 42px;
  }
}

.l-heading__bg--gray2 {
  width: 635px;
  height: 810px;
  top: -351px;
  right: -390px;
  animation: heading-gray 1s ease 0.1s forwards;
}

@media screen and (max-width: 767px) {
  .l-heading__bg--gray2 {
    width: 256px;
    height: 326px;
    top: 0;
    right: -108px;
  }
}

.l-heading__bg--black {
  width: 516px;
  height: 899px;
  top: -484px;
  right: 91px;
  animation: heading-black 0.8s ease 0.6s forwards;
}

@media screen and (max-width: 767px) {
  .l-heading__bg--black {
    top: 0;
    right: 10px;
    width: 262px;
    height: 416px;
  }
}

.l-heading__bg--purple {
  width: 398px;
  height: 638px;
  top: -109px;
  right: -140px;
  animation: heading-purple 1s ease 0.7s forwards;
}

@media screen and (max-width: 767px) {
  .l-heading__bg--purple {
    width: 214px;
    height: 311px;
    top: 30px;
    right: -75px;
  }
}

@media screen and (max-width: 767px) {
  .l-heading__sp-logo {
    display: block;
    width: 80px;
    position: absolute;
    top: 29px;
  }
}

.c-inner {
  margin: 0 auto;
  width: 78.75%;
  max-width: 1008px;
}

@media screen and (max-width: 767px) {
  .c-inner {
    width: 89.3333333333%;
  }
}

.c-foot-button,
.c-foot-button--purple,
.c-foot-button--blue {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 27px;
  width: 100%;
  height: 248px;
  background-position: 30%;
  background-size: 150% auto;
  transition: 0.4s;
}

.c-foot-button:hover,
.c-foot-button--purple:hover,
.c-foot-button--blue:hover {
  transition: 0.4s;
  background-position: 0;
}

.c-foot-button:hover .c-foot-button__box,
.c-foot-button--purple:hover .c-foot-button__box,
.c-foot-button--blue:hover .c-foot-button__box {
  background-color: #ffffff;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {

  .c-foot-button,
  .c-foot-button--purple,
  .c-foot-button--blue {
    height: 140px;
    gap: 12px;
  }
}

.c-foot-button--blue {
  background-image: linear-gradient(to right, #3267a7 0%, #00adb0 19.7%, #3267a7 100%);
}

.c-foot-button--blue:hover .c-foot-button__box {
  color: #00adb0;
}

.c-foot-button--purple {
  background-image: linear-gradient(to right, #492475 0%, #843184 19.7%, #492475 100%);
}

.c-foot-button--purple:hover .c-foot-button__box {
  color: #843184;
}

@media screen and (max-width: 767px) {

  .c-foot-button,
  .c-foot-button--purple,
  .c-foot-button--blue {
    height: 140px;
    gap: 11px;
  }
}

.c-foot-button__title {
  line-height: 1;
  color: #ffffff;
  font-weight: 500;
  font-size: 5rem;
}

@media screen and (max-width: 767px) {
  .c-foot-button__title {
    font-size: 2.2rem;
  }
}

.c-foot-button__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 60px;
  margin: 0 auto;
  font-weight: 500;
  color: #ffffff;
  font-size: 2.4rem;
  border: 1px solid #ffffff;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .c-foot-button__box {
    width: 100%;
    font-size: 1.4rem;
  }
}

.c-heading-title {
  font-size: 3.6rem;
  color: #00adb0;
}

@media screen and (max-width: 767px) {
  .c-heading-title {
    font-size: 2rem;
  }
}

.c-movie {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  border: 2px solid #00adb0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .c-movie {
    flex-direction: row;
  }
}

.c-movie:hover .c-movie__img-wrap {
  position: relative;
}

.c-movie:hover .c-movie__img-wrap::after {
  opacity: 1;
}

.c-movie:hover .c-movie__img {
  transform: scale(1.2);
}

@media screen and (max-width: 767px) {
  .c-movie {
    min-height: initial;
  }
}

.c-movie__img-wrap {
  position: relative;
  overflow: hidden;
  height: 203px;
}

.c-movie__img-wrap::after {
  transition: 0.2s;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: url(../img/movie/icon_play.svg);
}

@media screen and (max-width: 767px) {
  .c-movie__img-wrap {
    width: 168px;
    height: 100%;
  }

  .c-movie__img-wrap::after {
    opacity: 1;
    content: url(../img/movie/icon_play-dark.svg);
  }
}

.c-movie__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.c-movie__bottom {
  flex: 1;
  position: relative;
  height: 100%;
  padding: 9px 14px;
}

@media screen and (max-width: 767px) {
  .c-movie__bottom {
    padding: 6px 8px;
    height: initial;
  }
}

.c-movie__time {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 9px;
  right: 10px;
  width: 50px;
  height: 19px;
  font-size: 1.2rem;
  background-color: #dbdbdb;
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .c-movie__time {
    top: initial;
    bottom: 20px;
    left: -160px;
  }
}

.c-movie__title {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-movie__title {
    font-size: 1.4rem;
  }
}

.c-movie__detail {
  font-size: 1.4rem;
  margin-top: 8px;
}

.p-load {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.p-load__wrapper {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background: linear-gradient(to right, #843184, #3267a7);
  position: relative;
}

.p-load__logo,
.p-load__logo--loaded {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-load__logo--loaded {
  width: 360px;
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 767px) {

  .p-load__logo,
  .p-load__logo--loaded {
    width: 104px;
  }

  .p-load__logo--loaded {
    width: 192px;
  }
}

.p-load__bar {
  background: #ffffff;
  width: 25%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 25%;
}

.p-first-view {
  position: relative;


}

@media screen and (max-width: 767px) {
  .p-first-view {
    margin-top: -72px;
  }
}

.p-first-view__logo--sub-title {
  position: absolute;
  top: 178px;
  left: 90px;
  font-size: 1.5rem;
  line-height: 1.5;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-first-view__logo--sub-title {
    font-size: 1.3rem;
    top: 70px;
    left: 20px;
  }
}

.p-first-view__logo,
.p-first-view__logo--reflection {
  margin: 0;
  width: 255px;
  position: absolute;
  top: 234px;
  left: 91px;
  z-index: 1;
}

.p-first-view__logo--reflection {
  top: 204px;
  left: 61px;
  opacity: 0;
  animation: reflection 8s linear 5s infinite;
}

@media screen and (max-width: 767px) {

  .p-first-view__logo,
  .p-first-view__logo--reflection {
    width: 157px;
    top: 132px;
    left: 20px;
  }

  .p-first-view__logo--reflection {
    width: 193.941px;
    top: 113px;
    left: 1.5px;
  }
}

.p-first-view__img-slider {
  width: 100%;
  height: 734px;
  overflow: hidden;
  position: relative;
}

.p-first-view__img {
  width: 100%;
}

.p-first-view__img+.p-first-view__img {
  position: absolute;
  top: 0;
  left: 0;
}

.p-first-view__text-slider,
.p-first-view__text-slider--trapezoid {
  max-width: 1000px;
  width: fit-content;
  position: absolute;
  top: 384px;
  left: 91px;
  z-index: 1;
}

.p-first-view__text-slider--trapezoid {
  width: 100%;
  top: 450px;
  left: 91px;
}

@media screen and (max-width: 767px) {

  .p-first-view__text-slider,
  .p-first-view__text-slider--trapezoid {
    max-width: 355px;
    top: 230px;
    left: 20px;
  }

  .p-first-view__text-slider--trapezoid {
    top: 296px;
  }
}

.p-first-view__text-container+.p-first-view__text-container {
  opacity: 0;
}

.p-first-view__text,
.p-first-view__text--trapezoid {
  width: 100%;
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: linear-gradient(to right, #843184, #3686e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.p-first-view__text--trapezoid {
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 767px) {

  .p-first-view__text,
  .p-first-view__text--trapezoid {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}

.p-first-view__trapezoid {
  width: 100%;
  height: calc(100% + 66px);
  background: linear-gradient(to bottom, rgba(0, 173, 176, 0.7), rgba(50, 103, 167, 0.7));
  clip-path: polygon(100% 0%, 14.8% 100%, 52.9% 100%);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.p-first-view__scroll,
.p-first-view__scroll--white {
  font-weight: 500;
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%) rotate(90deg);
  z-index: 0;
  opacity: 0;
  visibility: visible;
}

.p-first-view__scroll::after,
.p-first-view__scroll--white::after {
  content: "";
  width: 76px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 131px;
  transform: translateY(-50%);
}

.p-first-view__scroll--white {
  top: calc(50% + 33px);
  color: #ffffff;
}

.p-first-view__scroll--white::after {
  left: 164px;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {

  .p-first-view__scroll,
  .p-first-view__scroll--white {
    right: -10px;
  }

  .p-first-view__scroll::after,
  .p-first-view__scroll--white::after {
    left: 80px;
  }
}

.p-first-view__download {
  position: absolute;
  top: 576px;
  left: 91px;
  z-index: 2;
}

.p-first-view__download a {
  position: relative;
  padding: 22px 34px 22px 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 440px;
  height: 74px;
  box-sizing: border-box;
  color: #fff;
  transition: 0.5s;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  border: 2px solid;
  border-image: linear-gradient(225deg, #3267A7 0%, #554893 100%) 1;
}

@media screen and (max-width: 767px) {
  .p-first-view__download {
    top: auto;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(350 / 390 * 100vw);
  }

  .p-first-view__download a {
    padding: 20px 0;
    justify-content: center;
    font-size: 1.6rem;
    width: 100%;
    height: 60px;
  }
}

.p-first-view__download a {
  background: linear-gradient(225deg, #3267A7 0%, #554893 100%);
}

.p-first-view__download a::after {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  content: "";
  width: 28px;
  height: 22px;
  background: center/contain no-repeat;
}

.p-first-view__download a::after {
  background-image: url("../img/icon_download.svg");
}

.p-first-view__download a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
}

.p-first-view__download a:hover::before {
  width: 100%;
}

.p-first-view__download a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.p-first-view__download a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 2rem;
  font-weight: bold;
  content: "無料体験版ダウンロード";
  color: #000;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  background: -webkit-linear-gradient(225deg, #3267A7 0%, #554893 100%);
  color: #554893;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
  .p-first-view__download a span::before {
    font-size: 1.6rem;
  }
}

.p-first-view__download a:hover span::before {
  opacity: 1;
}

.p-first-view__download a span::after {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  content: "";
  width: 28px;
  height: 22px;
  background: center/contain no-repeat;
  background-image: url("../img/icon_download_on.svg");
  transition: 0.6s;
  opacity: 0;
  z-index: 1;
}

.p-first-view__download a:hover span::after {
  opacity: 1;
}

.p-first-view__button {
  display: flex;
  align-items: center;
  width: 644px;
  height: 60px;
  font-size: 1.9rem;
  background: #ffffff;
  transform: skewX(-30deg);
  border: 1px solid #000000;
  box-shadow: rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 42px;
  right: 90px;
  z-index: 1;
  transition: all 0.5s;
}

.p-first-view__button::after {
  content: "";
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #843184, #3267a7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s;
}

.p-first-view__button:hover {
  color: #ffffff;
}

.p-first-view__button:hover::after {
  width: 100%;
}

.p-first-view__button:hover .p-first-view__button-span::after {
  background-image: url("../img/top/ico_fv-button-arrow-hovered_pc.svg");
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .p-first-view__button {
    width: 318px;
    height: 80px;
    transform: skewX(-14deg);
    right: 30px;
    font-size: 1.8rem;
  }

  .p-first-view__button:hover .p-first-view__button-span::after {
    background-image: url("../img/top/ico_fv-button-arrow-hovered_sp.svg");
  }
}

.p-first-view__button-span {
  text-align: left;
  display: block;
  padding-left: 60px;
  transform: skewX(30deg);
  position: relative;
  z-index: 2;
}

.p-first-view__button-span::after {
  content: "";
  width: 72px;
  height: 18px;
  background-image: url("../img/top/ico_fv-button-arrow_pc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-first-view__button-span {
    transform: skewX(14deg);
    padding-left: 22px;
  }

  .p-first-view__button-span::after {
    width: 153px;
    height: 12px;
    background-image: url("../img/top/ico_fv-button-arrow_sp.svg");
    top: 14.5px;
    right: 0px;
  }
}

@media screen and (min-width: 1680px) {

  .p-first-view__logo--sub-title,
  .p-first-view__text-slider,
  .p-first-view__text-slider--trapezoid,
  .p-first-view__logo,
  .p-first-view__download {
    left: calc(50vw - 750px);
  }

  .p-first-view__logo--reflection {
    left: calc(50vw - 750px + -30px);
  }
}

.p-top__heading {
  width: fit-content;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.6;
  background: linear-gradient(to right, #843184, #3267a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 26px;
}

@media screen and (max-width: 767px) {
  .p-top__heading {
    width: auto;
    font-size: 2.6rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
  }
}

.p-top__text,
.p-top__text--span {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}

.p-top__text--span {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {

  .p-top__text,
  .p-top__text--span {
    font-size: 1.6rem;
    line-height: 2;
  }

  .p-top__text--span {
    font-size: 1.2rem;
  }
}

/* .p-top__button {
  background: linear-gradient(to right, #843184 30%, #492475 60%, #3267a7 90%);
  background-size: 200% 100%;
  background-position: 90% 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 174px;
  position: relative;
  transition: all 0.3s;
}
.p-top__button::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/top/bg_feature-button_pc.svg");
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top__button:hover {
  background-position: 70% 0%;
}
.p-top__button:hover .p-top__button-text {
  background-color: #ffffff;
  color: #843184;
}
@media screen and (max-width: 767px) {
  .p-top__button {
    height: 112px;
    background-size: 100%;
    background: linear-gradient(to right, #843184, #492475 30%, #3267a7);
  }
  .p-top__button::after {
    background-image: url("../img/top/bg_feature-button_sp.svg");
    background-size: cover;
  }
}
.p-top__button-text {
  width: 460px;
  height: 72px;
  border: 1px solid #ffffff;
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__button-text {
    width: 335px;
    height: 60px;
    font-size: 1.6rem;
    font-weight: 700;
  }
} */

/* ダウンロード・資料請求リンク */
.support_link {
  width: 100%;
}

.support_link ul {
  width: 100%;
  display: flex;
}

.support_link ul li {
  width: 50%;
  min-height: 274px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  position: relative;
  padding-top: 3px;
}

.support_link ul li.link_download {
  background: linear-gradient(225deg, #3267A7 0%, #554893 100%);
}

.support_link ul li.link_file {
  background: linear-gradient(225deg, #843184 0%, #9C3267 100%);
}

.support_link ul li .support_title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  padding-left: 2em;
}

.support_link ul li .support_text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.support_link ul li .support_title::before {
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  content: "";
  background: center/contain no-repeat;
}

.support_link ul li.link_download .support_title::before {
  top: 48%;
  left: 6px;
  width: 40px;
  height: 36px;
  background-image: url("../img/icon_download.svg");
}

.support_link ul li.link_file .support_title::before {
  top: 50%;
  width: 50px;
  height: 46px;
  background-image: url("../img/icon_file.svg");
}

@media screen and (max-width: 767px) {
  .support_link ul li .support_title {
    padding-left: 2.5em;
    text-align: center;
  }

  .support_link ul li .support_title::before {
    left: 0;
  }

  .support_link ul li.link_download .support_title::before {
    top: 46%;
    left: 0;
    width: 25px;
    height: 36px;
  }

  .support_link ul li.link_file .support_title::before {
    top: 46%;
    width: 25px;
    height: 36px;
  }
}

.support_link ul li a {
  width: 300px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
}

.support_link ul li a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background-color: #000;
  transition: 0.5s;
}

.support_link ul li a:hover::before {
  width: 100%;
}

.support_link ul li a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  margin: auto;
  border: 2px solid #000;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.support_link ul li.link_download a::after {
  border-color: #3267A7;
}

.support_link ul li.link_file a::after {
  border-color: #843184;
}

@media screen and (max-width: 767px) {
  .support_link ul li {
    min-height: calc(90 / 390 * 100vw);
  }

  .support_link ul li.link_download {
    padding-left: 0;
  }

  .support_link ul li.link_file {
    padding-left: 0;
  }

  .support_link ul li .support_title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .support_link ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    font-size: 1.6rem;
  }

  .support_link ul li .support_text,
  .support_link ul li a::before,
  .support_link ul li a::after {
    display: none;
  }
}

.support_link ul li a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support_link ul li.link_download a span {
  color: #3267A7;
}

.support_link ul li.link_file a span {
  color: #843184;
}

.support_link ul li a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
}

.support_link ul li.link_download a span::before {
  content: "ダウンロードはこちら";
}

.support_link ul li.link_file a span::before {
  content: "資料請求はこちら";
}

.support_link ul li a:hover span::before {
  opacity: 1;
}

.support_link ul li a span::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  margin: auto;
  border: 2px solid #fff;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.8s;
  opacity: 0;
  z-index: 1;
}

.support_link ul li a:hover span::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .support_link ul li a span {
    display: none;
  }
}


.p-top-soft {
  padding-top: 114px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-top-soft {
    padding-top: 60px;
    padding-bottom: 350px;
  }
}

.p-top-soft__bg,
.p-top-soft__bg--green,
.p-top-soft__bg--purple,
.p-top-soft__bg--gray,
.p-top-soft__bg--picture {
  position: absolute;
  z-index: -1;
}

.p-top-soft__bg--picture {
  width: 734px;
  left: calc(50% + 94px);
  bottom: -25.4px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .p-top-soft__bg--picture {
    left: auto;
    right: -84px;
    bottom: 17px;
    width: calc(460 / 390 * 100vw);
  }
}

.p-top-soft__bg--gray {
  width: 381px;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-top-soft__bg--gray {
    right: -40px;
    bottom: 150px;
    width: 211px;
  }
}

.p-top-soft__bg--purple {
  width: 191px;
  height: 352px;
  top: 54px;
  right: 287.5px;
  object-fit: cover;
  object-position: top right;
}

@media screen and (max-width: 767px) {
  .p-top-soft__bg--purple {
    top: 340px;
    right: -8px;
    width: 99px;
    height: 183px;
  }
}

.p-top-soft__bg--green {
  width: 433px;
  height: 745px;
  right: -144px;
  top: -193px;
  object-fit: cover;
  object-position: top right;
}

@media screen and (max-width: 767px) {
  .p-top-soft__bg--green {
    width: 315px;
    height: 510px;
    top: 235px;
    right: -206px;
  }
}

.p-top-feature {
  padding: 155px 0 124px;
  text-align: right;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-top-feature {
    padding: 66px 0 190px;
  }
}

.p-top-feature__bg,
.p-top-feature__bg--green,
.p-top-feature__bg--purple,
.p-top-feature__bg--black,
.p-top-feature__bg--gray2,
.p-top-feature__bg--gray1 {
  position: absolute;
  z-index: -1;
}

.p-top-feature__bg--gray1 {
  width: 916px;
  top: 50px;
  left: -18px;
}

@media screen and (max-width: 767px) {
  .p-top-feature__bg--gray1 {
    width: 408px;
    left: -200px;
    top: 16px;
  }
}

.p-top-feature__bg--gray2 {
  width: 448px;
  top: 244.9px;
  right: -67px;
}

@media screen and (max-width: 767px) {
  .p-top-feature__bg--gray2 {
    width: 207px;
    top: 1034px;
    right: -10px;
  }
}

.p-top-feature__bg--black {
  width: 426px;
  height: 810px;
  left: -236px;
  bottom: -95px;
  object-fit: cover;
  object-position: bottom left;
}

@media screen and (max-width: 767px) {
  .p-top-feature__bg--black {
    left: -314px;
    bottom: 449px;
  }
}

.p-top-feature__bg--purple {
  width: 189px;
  height: 350px;
  left: -79px;
  bottom: 28px;
  object-fit: cover;
  object-position: bottom left;
}

@media screen and (max-width: 767px) {
  .p-top-feature__bg--purple {
    width: 99px;
    height: 183px;
    left: -38px;
    bottom: 590px;
  }
}

.p-top-feature__bg--green {
  width: 433px;
  height: 810px;
  top: 141px;
  right: -301px;
  object-fit: cover;
  object-position: top right;
}

@media screen and (max-width: 767px) {
  .p-top-feature__bg--green {
    width: 315px;
    height: 510px;
    top: 1002px;
    right: -226px;
  }
}

.p-top-feature__heading,
.p-top-example__heading {
  margin: 0 auto 24px;
}

.p-top-feature__container {
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {

  .p-top-feature__heading,
  .p-top-example__heading {
    margin: 0 auto 40px;
  }

  .p-top-feature__container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 20px;
  }
}

.p-top-feature__item {
  margin: 60px 0 0 27px;
  padding: 13px 10px 13px 10px;
  display: flex;
  align-items: center;
  text-align: left;
  width: 834px;
  height: 96px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3rem;
  transform: skewX(-33deg);
  background: linear-gradient(to right bottom, #ffffff, #c0e6e6);
  box-sizing: border-box;
  position: relative;
}

.p-top-feature__item:nth-child(even) {
  margin-left: 156px;
}

.p-top-feature__item sup {
  font-size: 60%;
}

@media screen and (max-width: 767px) {
  .p-top-feature__item {
    padding-left: 16.5px;
    font-size: 1.8rem;
    line-height: 1.8;
    width: 310px;
    height: auto;
    transform: skewX(-16deg);
    min-height: calc(140 / 390 * 100vw);
    margin: 0 auto;
  }

  .p-top-feature__item:nth-child(even) {
    margin-left: auto;
  }
}

.p-top-feature__item-title {
  position: absolute;
  top: -0.5em;
  left: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  color: #843184;
  transform: skewX(33deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-feature__item-title small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.0rem;
  font-weight: bold;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-title {
    position: absolute;
    left: calc((50vw - 135px) * -1);
    transform: translateX(0) skewX(16deg);
    font-size: 2.4rem;
    width: 100vw;
  }
  .p-top-feature__item-title small {
    font-size: 1.6rem;
  }
}
.p-top-feature__item-span {
  display: block;
  transform: skewX(33deg);
  width: fit-content;
  margin: 0 auto;
}

.p-top-feature__item-green {
  color: #00adb0;
}

.p-top-feature__item-note {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .p-top-feature__item-span {
    margin: 0 auto;
    transform: skewX(16deg);
    text-align: center;
  }

  .p-top-feature__item-note {
    margin-bottom: 40px;
  }
}

.p-top-example {
  margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .p-top-example {
    padding: 0 20px;
    margin-top: -110px;
    margin-bottom: 120px;
  }
}

.p-top-example .p-top__text {
  text-align: center;
}

.p-top-example .p-top-example__sample ul {
  border: #D9D9D9 solid;
  border-width: 1px 0;
  margin: 60px auto 0;
  padding: 60px 100px 86px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 14px;
  width: 1260px;
  box-sizing: border-box;
}

.p-top-example .p-top-example__sample ul li {
  width: 198px;
}

.p-top-example .p-top-example__sample ul li a {
  transition: all 0.3s;
}

.p-top-example .p-top-example__sample ul li a:hover {
  opacity: 0.7;
}

.p-top-example .p-top-example__sample ul li img {
  width: 100%;
  height: auto;
}
.p-top-example .p-top-example__sample ul .mt15,
.p-example ul.p-example__sample .mt15{
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .p-top-example .p-top__text {
    text-align: left;
  }

  .p-top-example .p-top-example__sample ul {
    padding: 40px 30px 62px;
    justify-content: space-between;
    margin: 40px auto 0;
    gap: 34px 38px;
    width: 100%;
  }

  .p-top-example .p-top-example__sample ul li {
    width: calc(122 / 390 * 100vw);
  }
}

.p-top-example .btn_black {
  margin-top: -32px;
}

@media screen and (max-width: 767px) {
  .p-top-example .btn_black {
    margin-top: -24px;
  }
}

.p-example {
  width: 900px;
  margin: 0 auto 10px;
}

@media screen and (max-width: 767px) {
  .p-example {
    width: 100%;
  }
}

.p-example img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__group {
    margin-bottom: 78px;
  }
}

.p-example .p-example__client-name {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  color: #757575;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__client-name {
    font-size: 1.8rem;
  }
}

.p-example .p-example__category {
  font-size: 3.2rem;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__category {
    font-size: 2.6rem;
  }
}

.p-example .p-example__category-article {
  font-size: 4rem;
  line-height: 1.6;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__category-article {
    font-size: 2.6rem;
    padding-bottom: 32px;
    margin-bottom: 30px;
  }
}

.p-example .p-example__category-article::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 100px;
  height: 1px;
  background-color: #00ADB0;
}

.p-example .p-example__article .p-example__block {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__block {
    margin-bottom: 76px;
  }
}

.p-example .p-example__article .p-example__case-tag {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__case-tag {
    gap: 10px 16px;
  }
}

.p-example .p-example__article .p-example__case-tag li {
  background-color: #D9D9D9;
  padding: 4px 8px;
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__case-tag li {
    padding: 3px 8px;
  }
}

.p-example .p-example__article .p-example__client-photo {
  width: 100%;
  margin-bottom: 40px;
}

.p-example .p-example__article .p-example__client-info {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 26px 40px;
  border: #d9d9d9 solid 1px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__client-info {
    flex-direction: column;
    gap: 20px;
    padding: 30px 30px 16px;
  }
}

.p-example .p-example__article .p-example__client-info .p-example__client-logo {
  width: 200px;
}

.p-example .p-example__article .p-example__client-info .p-example__client-profile {
  width: 630px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__client-info .p-example__client-logo {
    width: calc(170 / 390 * 100vw);
  }

  .p-example .p-example__article .p-example__client-info .p-example__client-profile {
    width: 100%;
  }
}

.p-example .p-example__article .p-example__client-info .p-example__client-profile .p-example__client-profile-name {
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__client-info .p-example__client-profile .p-example__client-profile-name {
    font-size: 1.8rem;
  }
}

.p-example .p-example__article .p-example__client-info .p-example__client-profile .p-example__client-profile-positin {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__client-info .p-example__client-profile .p-example__client-profile-positin {
    line-height: 1.7;
  }
}

.p-example .p-example__article .p-example__article-box {
  margin-bottom: 64px;
}

.p-example .p-example__article .p-example__article-box h3 {
  font-size: 3.4rem;
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: #d9d9d9 solid 1px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__article-box h3 {
    font-size: 2.4rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}

.p-example .p-example__article .p-example__article-box h3::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 80px;
  height: 1px;
  background-color: #843184;
}

.p-example .p-example__article .p-example__article-box h4 {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  color: #3267A7;
  padding-left: 15px;
}

.p-example .p-example__article .p-example__article-box h4::after {
  position: absolute;
  top: 0;
  bottom: 3px;
  left: 0;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #3267A7;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__article-box h4::after {
    top: 5px;
    bottom: 3px;
    height: auto;
  }
}

.p-example .p-example__article .p-example__article-box p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__article-box p {
    line-height: 1.82;
  }
}

.p-example .p-example__article .p-example__article-box p.note {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #757575;
}

.p-example .p-example__article .p-example__article-box .img_container {
  margin-bottom: 40px;
}

.p-example .p-example__article .p-example__article-box .img_container .img_column2 {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.p-example .p-example__article .p-example__article-box .img_container .img_column2 img {
  width: 446px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__article-box .img_container .img_column2 {
    flex-direction: column;
  }

  .p-example .p-example__article .p-example__article-box .img_container .img_column2 img {
    width: 100%;
  }
}

.p-example .p-example__article .p-example__article-box .img_container .caption {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 10px;
  margin-bottom: 60px;
  text-align: left;
}

.p-example .p-example__article .p-example__client-information {
  margin-bottom: 100px;
  width: 100%;
  background-color: #f7f7f7;
  padding: 40px 50px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__client-information {
    padding: 40px 15px;
    margin-bottom: 0;
  }
}

.p-example .p-example__article .p-example__client-information dl {
  font-size: 1.6rem;
  line-height: 2;
}

.p-example .p-example__article .p-example__client-information dl dt {
  width: 4em;
  padding: 1em;
  float: left;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__client-information dl dt {
    float: none;
    padding: 0;
  }
}

.p-example .p-example__article .p-example__client-information dl dd {
  padding: 1em;
  padding-left: 10em;
  width: 100%;
  border-bottom: #d9d9d9 solid 2px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .p-example__client-information dl dd {
    padding: 0.2em 0 1em;
    margin-bottom: 1em;
  }

  .p-example .p-example__article .p-example__client-information dl dd:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.p-example .p-example__article .p-example__client-information dl dd:last-of-type {
  border: none;
}

.p-example .p-example__article .p-example__client-information dl dd a {
  color: #00ADB0;
  text-decoration: underline;
}

.p-example .p-example__article .p-example__client-information dl dd a:hover {
  text-decoration: none;
}

.p-example .p-example__article iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article iframe {
    margin-top: 0;
  }
}

.p-example .p-example__article .btn_back_container {
  margin: 120px 0;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__article .btn_back_container {
    margin: 94px 0 120px;
  }
}

@media screen and (max-width: 767px) {
  .p-example__block .btn_gray.btn_back a {
    height: 60px;
  }
}

.p-example__block .btn_gray.btn_back a span::before {
  content: "導入事例一覧に戻る";
}

.p-example ul.p-example__sample {
  border: #D9D9D9 solid;
  border-width: 1px 0;
  margin: 40px -180px 0;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 14px;
  width: 1260px;
  box-sizing: border-box;
}
.p-example ul.p-example__sample li {
  width: 172px;
}

.p-example ul.p-example__sample li a {
  transition: all 0.3s;
}

.p-example ul.p-example__sample li a:hover {
  opacity: 0.7;
}

.p-example ul.p-example__sample li img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-example ul.p-example__sample {
    padding: 40px 30px 38px;
    justify-content: space-between;
    margin: 40px auto 0;
    gap: 34px 38px;
    width: 100%;
  }

  .p-example ul.p-example__sample li {
    width: calc(122 / 390 * 100vw);
  }
}

.p-example .p-example__case {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 80px;
  width: 900px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__case {
    width: 100%;
    flex-direction: column;
    margin-bottom: 56px;
  }
}

.p-example .p-example__case .p-example__img-area {
  width: 320px;
}

.p-example .p-example__case .p-example__img-area img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__case .p-example__img-area {
    width: 100%;
    height: calc(210 / 390 * 100vw);
    margin-bottom: 20px;
  }

  .p-example .p-example__case .p-example__img-area img {
    height: 100%;
    object-fit: cover;
  }
}

.p-example .p-example__case .p-example__text-area {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__case .p-example__text-area {
    width: 100%;
    padding-bottom: 70px;
  }
}

.p-example .p-example__case .p-example__text-area .p-example__case-client {
  color: #843184;
  font-size: 1.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-top: 15px;
}

.p-example .p-example__case .p-example__text-area .p-example__case-title {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__case .p-example__text-area .p-example__case-title {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
}

.p-example .p-example__case .p-example__text-area .p-example__case-tag {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .p-example .p-example__case .p-example__text-area .p-example__case-tag {
    gap: 10px 16px;
  }
}

.p-example .p-example__case .p-example__text-area .p-example__case-tag li {
  background-color: #D9D9D9;
  padding: 4px 8px;
  font-size: 1.4rem;
  font-weight: 500;
}

.p-example .p-example__case .p-example__text-area .btn_black {
  position: absolute;
  right: 0;
  bottom: 0;
}

.p-example .p-example__case .p-example__text-area .btn_black a {
  width: 245px;
  height: 60px;
}

.p-example .p-example__case .p-example__text-area .btn_black a span::before {
  content: "続きを読む";
}

.c-page-sub__pagination {
  margin-top: 120px;
}

@media(max-width: 576px) {
  .c-page-sub__pagination {
    margin-top: 100px;
  }
}

.c-pagination {
  clear: both;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  align-items: center;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  margin-bottom: 120px;
}

@media(max-width: 576px) {
  .c-pagination {
    justify-content: space-between;
    width: calc(290 / 390 * 100vw);
    margin: 0 auto 120px;
  }
}

.c-pagination a {
  background: none;
  color: currentcolor;
  font-size: 2rem;
  text-decoration: none;
}

.c-pagination__next a,
.c-pagination__prev a {
  display: flex;
  overflow: hidden;
  padding: 0 10px;
  position: relative;
  vertical-align: middle;
  transform: scale(1, 2);
  font-size: 1.2rem;
}

.c-pagination__next a[data-disabled=true],
.c-pagination__prev a[data-disabled=true] {
  opacity: .3;
  pointer-events: none;
}

.c-pagination__prev {
  order: 1;
}

.c-pagination__next {
  order: 3;
}

.c-pagination__numbers {
  display: flex;
  font-weight: 700;
  list-style: none;
  margin: 0 14px;
  order: 2;
  padding: 0;
}

.c-pagination__number {
  display: block;
  list-style: none;
  margin: 0 3px;
}

.c-pagination__number--current,
.c-pagination__number:hover {
  background-color: #00ADB0;
  color: #fff;
}

.c-pagination__number--current:hover {
  padding-bottom: 0;
}

.c-pagination__number a {
  display: block;
  padding: 4px 7px;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
}

.c-pagination__number a:after {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-faq {
    margin-bottom: 120px;
  }
}

.p-faq__group {
  padding-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .p-faq__group {
    padding-bottom: 40px;
  }
}

.p-faq__category {
  margin-top: -180px;
  margin-bottom: 32px;
  padding: 180px 54px 10px;
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .p-faq__category {
    padding: 40px 0 12px;
    margin-top: -40px;
    margin-bottom: 18px;
  }
}

.p-faq__item {
  margin: 0 54px;
}

.p-faq__item+.p-faq__item {
  margin-top: 20px;
}

.p-faq__item--open .p-faq__title::after {
  transform: translateY(-50%) rotate(0deg);
}

@media screen and (max-width: 767px) {
  .p-faq__item {
    margin: 0;
  }
}

.p-faq__title {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
  color: #171717;
  font-weight: 700;
  transition: 0.2s;
  cursor: pointer;
}

.p-faq__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 17.3px;
  height: 4.4px;
  background-color: #843184;
}

.p-faq__title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 17.3px;
  height: 4.4px;
  background-color: #843184;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.4rem;
    padding-left: 30px;
  }
}

.p-faq__detail {
  display: none;
  margin: 21px 0 0 8.25px;
  padding-left: 28px;
  border-left: 1px solid #707070;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-faq__detail {
    font-size: 1.4rem;
  }
}

.p-faq__text--link {
  color: #00adb0;
  font-weight: 500;
  text-decoration: underline;
}

.p-faq_link {
  position: relative;
  z-index: 1;
}

.p-faq__menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 0px;
  width: 100%;
  margin-bottom: 60px;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-faq__menu {
    justify-content: space-between;
  }
}

.p-faq__menu::before {
  content: "";
  display: block;
  width: 240px;
  order: 1;
}

.p-faq__menu::after {
  content: "";
  display: block;
  width: 240px;
}

.p-faq__menu li {
  width: 240px;
  /* 4カラム以上になったとき */
  /* width: 320px; */
  /* 3カラム以下になったとき */
  height: 48px;
}

@media screen and (max-width: 767px) {
  .p-faq__menu li {
    width: 42vw;
  }
}

.p-faq__menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* color: #fff; */
  font-size: 1.6rem;
  /* background-color: #843184; */
  position: relative;
  transition: all 0.5s;
}

@media screen and (max-width: 767px) {
  .p-faq__menu li a {
    font-size: 1.4rem;
    width: auto;
    padding: 0 30px;
    line-height: 1.2;
    text-align: center;
  }
}

.p-faq__menu li.nav01 a span::before {
  content: "契約・導入";
}

.p-faq__menu li.nav02 a span::before {
  content: "ライセンス";
}

.p-faq__menu li.nav03 a span::before {
  content: "価格・費用・補助金";
}

.p-faq__menu li.nav04 a span::before {
  content: "製品仕様";
}

.p-faq__menu li.nav05 a span::before {
  content: "サポート";
}

.p-faq__menu li.nav06 a span::before {
  content: "その他";
}

.p-faq__menu li a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 20px;
  margin: auto;
  border: 2px solid #000;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(135deg);
}

.p-faq__menu li a span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 20px;
  margin: auto;
  border: 2px solid #fff;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.8s;
  opacity: 0;
  z-index: 1;
}

.p-faq__menu li a:hover span::after {
  opacity: 1;
}

.p-download {
  padding-bottom: 136px;
}

@media screen and (max-width: 767px) {
  .p-download {
    padding-bottom: 50px;
  }
}

.p-download__inner {
  width: 900px;
}

@media screen and (max-width: 767px) {
  .p-download__inner {
    width: 89.3333333333%;
  }
}

.p-download__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 21px;
}

.p-download__row:not(:first-child) {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .p-download__row:not(:first-child) {
    margin-top: 90px;
  }
}

@media screen and (max-width: 767px) {
  .p-download__row {
    display: block;
  }
}

.p-download__line {
  flex: 1;
  height: 1px;
  background-color: #707070;
}

@media screen and (max-width: 767px) {
  .p-download__line {
    display: inline-block;
    width: 100%;
  }
}

.p-download__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 40px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #171717;
  border: 1px solid #171717;
  box-sizing: border-box;
  transition: 0.5s;
  background: linear-gradient(to right, #843184, #3267a7) no-repeat;
  background-size: 0;
}

.p-download__button:hover {
  transition: 0.5s;
  color: #ffffff;
  background-size: 100%;
}

.p-download__button::before {
  content: "Click Here";
  position: absolute;
  color: #fff;
  opacity: 0;
  animation: click-here-text-repeat 7s ease backwards infinite;
}

.p-download__button::after {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  animation: click-here-repeat 7s ease forwards infinite;
  z-index: -1;
  background: linear-gradient(to right, #843184, #3267a7) no-repeat;
}

@media screen and (max-width: 767px) {
  .p-download__button {
    margin: 20px auto 0;
  }
}

.p-download__button-text {
  position: absolute;
  z-index: 2;
  transition: all 0.5s;
}

.p-download__text {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 15px 0;
}

@media screen and (max-width: 767px) {
  .p-download__text {
    font-size: 1.4rem;
  }
}

.p-download__link {
  color: #00adb0;
  font-weight: 700;
  font-size: 1.6rem;
  text-decoration: underline;
}

.p-download__license {
  margin: 20px 30px 0 0;
}

@media screen and (max-width: 767px) {
  .p-download__license {
    display: block;
    margin: 40px auto 0;
    width: 280px;
  }
}

.p-download .btn_white a,
.p-download .btn_black a {
  width: 175px;
  height: 40px;
}

@media screen and (max-width: 767px) {

  .p-download .btn_white a,
  .p-download .btn_black a {
    width: 175px;
    height: 40px;
  }
}

.p-download .btn_white a span::before {
  content: "Click Here";
}

.p-release {
  position: relative;
  padding: 8px 0 0 54px;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .p-release {
    padding: 8px 0 0 30px;
    margin-top: 77px;
  }
}

.p-release::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(#843184 0%, #492475 34.48%, #3267a7 100%);
}

@media screen and (max-width: 767px) {
  .p-release::before {
    width: 10px;
  }
}

.p-release__title {
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .p-release__title {
    font-size: 2rem;
  }
}

.p-release__list {
  line-height: 2;
  font-size: 1.6rem;
}

.p-release__detail {
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .p-release__detail {
    padding-left: 10px;
  }
}

.p-features {
  margin-top: 14px;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.p-features__container {
  margin: 0 auto;
  justify-content: space-between;
  width: 1080px;
  display: grid;
  grid-template-columns: 504px 504px;
}

@media screen and (max-width: 767px) {
  .p-features__container {
    width: 89.3333333333%;
    display: block;
  }
}

.p-features__item {
  position: relative;
}

.p-features__item:nth-of-type(2) {
  margin-top: 203px;
}

@media screen and (max-width: 767px) {
  .p-features__item:nth-of-type(2) {
    margin-top: 0;
  }
}

.p-features__item:nth-of-type(3) {
  margin-top: -180px;
}

@media screen and (max-width: 767px) {
  .p-features__item:nth-of-type(3) {
    margin-top: 0;
  }
}

.p-features__item:nth-of-type(4) {
  margin-top: 200px;
}

@media screen and (max-width: 767px) {
  .p-features__item:nth-of-type(4) {
    margin-top: 0;
  }
}

.p-features__item:nth-of-type(5) {
  margin-top: -192px;
}

@media screen and (max-width: 767px) {
  .p-features__item:nth-of-type(5) {
    margin-top: 0;
  }
}

.p-features__item:nth-of-type(6) {
  margin-top: 206px;
}

@media screen and (max-width: 767px) {
  .p-features__item:nth-of-type(6) {
    margin-top: 0;
  }
}

.p-features__item:nth-of-type(7) {
  margin-top: -300px;
}

@media screen and (max-width: 767px) {
  .p-features__item:nth-of-type(7) {
    margin-top: 0;
  }
}

.p-features__num,
.p-features__num--wide,
.p-features__num--right {
  width: fit-content;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 7.2rem;
  background: linear-gradient(to right, #843184, #3267a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-features__num--right {
  position: absolute;
  top: 153px;
  right: 0;
}

.p-features__num--wide {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {

  .p-features__num,
  .p-features__num--wide,
  .p-features__num--right {
    font-size: 5.4rem;
  }

  .p-features__num--right,
  .p-features__num--wide {
    position: static;
    top: 0;
    left: 0;
    right: auto;
  }
}

.p-features__line,
.p-features__line--right {
  position: absolute;
  top: 15px;
  left: 0;
  width: 127px;
  height: 221px;
  object-fit: cover;
  object-position: top left;
}

.p-features__line--right {
  top: 0;
  right: 0;
  left: auto;
}

@media screen and (max-width: 767px) {

  .p-features__line,
  .p-features__line--right {
    width: 108px;
    height: 187px;
  }

  .p-features__line--right {
    top: 15px;
    right: auto;
    left: 0;
  }
}

.p-features__heading {
  font-size: 3rem;
  font-weight: 400;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-features__heading {
    font-size: 2.4rem;
  }
}

.p-features__text-container,
.p-features__text-container--wide,
.p-features__text-container--right {
  margin-left: 127px;
  width: 358px;
}

.p-features__text-container--right {
  margin: 0 127px 0 0;
  width: 370px;
}

.p-features__text-container--wide {
  margin-left: 147px;
  width: 370px;
}

@media screen and (max-width: 767px) {

  .p-features__text-container,
  .p-features__text-container--wide,
  .p-features__text-container--right {
    margin: 0 0 0 105px;
    width: 68.0597014925%;
  }
}

.p-features__text {
  margin-top: 14px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 3.2rem;
}

@media screen and (max-width: 767px) {
  .p-features__text {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 2em;
  }
}

.p-features__btn {
  width: 260px;
  margin-top: 20px;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .p-features__btn {
    width: 100%;
  }
}

.p-features__btn a {
  width: 100%;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: #000 solid 1px;
  position: relative;
  transition: all 0.5s;
  font-size: 1.6rem;
}

.p-features__btn a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .p-features__btn a:hover {
    opacity: 1;
  }
}

.p-features__btn a::before {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  content: "";
  background: url("../img/icon_youtube.png") center/contain no-repeat;
  width: 26px;
  height: 18px;
}

.p-features__text-container .btn_white,
.p-features__text-container--wide .btn_white {
  margin-top: 20px;
  margin-bottom: 6px;
}

.p-features__text-container .btn_white a,
.p-features__text-container--wide .btn_white a {
  width: 260px;
  height: 42px;
  margin: 0 auto 0 0;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .p-features__text-container .btn_white a,
  .p-features__text-container--wide .btn_white a {
    width: 100%;
  }
}

.p-features__text-container .btn_white a::after,
.p-features__text-container--wide .btn_white a::after {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  content: "";
  background: url("../img/icon_youtube.png") center/contain no-repeat;
  width: 26px;
  height: 18px;
}

.p-features__text-container .btn_white a span::before,
.p-features__text-container--wide .btn_white a span::before {
  content: "動画で見る";
}

.p-features__img {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s;
  width: fit-content;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .p-features__img {
    flex-direction: row;
  }
}

.p-features__img .p-features__img-wrap {
  transition: 0.3s;
}

.p-features__img:hover .p-features__img-wrap {
  position: relative;
  transform: scale(1.3);
}

/* .p-features__img:hover .p-features__img-wrap::after {
  opacity: 1;
} */

@media screen and (max-width: 767px) {
  .p-features__img {
    min-height: initial;
  }
}

.p-features__img-wrap {
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.p-features__img-wrap .p-features__img-item {
  position: relative;
  width: fit-content;
}

.p-features__img-wrap .p-features__img-item::after {
  transition: 0.2s;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: url(../img/movie/icon_play.svg);
  z-index: 1;
}
.p-features__img-wrap .p-features__img-item.play-white::after {
  content: url(../img/movie/icon_play-white.svg);
}

@media screen and (max-width: 767px) {
  .p-features__img-wrap {
    width: 100%;
    height: 100%;
  }

  /* .p-features__img-wrap::after {
    opacity: 1;
    content: url(../img/movie/icon_play-dark.svg);
  } */
}

.p-features__img--07,
.p-features__img--06,
.p-features__img--05,
.p-features__img--04,
.p-features__img--03,
.p-features__img--02,
.p-features__img--01 {
  display: block;
  width: 470px;
}

.p-features__img--01 {
  margin-top: 20px;
}

.p-features__img--02 {
  margin: 20px 0 0 auto;
  width: 300px;
}

.p-features__img--03 {
  margin-top: 15px;
  width: 100%;
}

.p-features__img--04 {
  margin: 15px 0 0 auto;
  width: 300px;
}

.p-features__img--05 {
  margin-top: 20px;
  width: 480px;
}

.p-features__img--06 {
  margin: 20px 0 0 auto;
  width: 100%;
}

.p-features__img--07 {
  margin: 20px auto 0;
  width: 340px;
}
.p-features__img--07_parent {
  margin-left: 82px;
}
@media screen and (max-width: 767px) {
  .p-features__img--07_parent {
    margin-left: 0;
  }
}


@media screen and (max-width: 767px) {

  .p-features__img--07,
  .p-features__img--06,
  .p-features__img--05,
  .p-features__img--04,
  .p-features__img--03,
  .p-features__img--02,
  .p-features__img--01 {
    margin-top: 20px;
    width: 100%;
  }
}

.p-features__bg,
.p-features__bg--black3,
.p-features__bg--black2,
.p-features__bg--black1,
.p-features__bg--gray3,
.p-features__bg--gray2,
.p-features__bg--gray1 {
  position: absolute;
  z-index: -1;
}

.p-features__bg--gray1 {
  width: 1300px;
  top: 275px;
  right: 632px;
}

@media screen and (max-width: 767px) {
  .p-features__bg--gray1 {
    width: 1349px;
    top: 655px;
    right: auto;
    left: -898px;
  }
}

.p-features__bg--gray2 {
  width: 1300px;
  top: 1275px;
  right: 400px;
}

@media screen and (max-width: 767px) {
  .p-features__bg--gray2 {
    width: 1349px;
    top: 2261px;
    right: -900px;
  }
}

.p-features__bg--gray3 {
  width: 1503px;
  bottom: 0;
  left: 70px;
}

@media screen and (max-width: 767px) {
  .p-features__bg--gray3 {
    width: 1349px;
    left: -900px;
    bottom: 1460px;
  }
}

.p-features__bg--black1 {
  width: 337px;
  top: 80px;
  left: 466px;
}

.p-features__bg--black2 {
  width: 337px;
  top: 1180px;
  right: -60px;
}

.p-features__bg--black3 {
  width: 337px;
  bottom: 150px;
  right: 6px;
}

/* #coming-soon {
  margin-top: -280px;
  padding-top: 280px;
} */

#movie{
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  /* #coming-soon {
    margin-top: -120px;
    padding-top: 120px;
  } */
  #movie{
  padding-top: 0;
}
}

.p-features-coming-soon {
  margin: 215px 0 100px;
}

.p-features-coming-soon__inner {
  margin: 0 auto;
  width: 1140px;
}

@media screen and (max-width: 767px) {
  .p-features-coming-soon__inner {
    width: 89.3333333333%;
  }
}

.p-features-coming-soon__heading-container {
  position: relative;
}

.p-features-coming-soon__line {
  width: 61px;
  height: 96px;
  object-fit: cover;
  object-position: top left;
  position: absolute;
  top: -24px;
  left: 0;
  object-fit: cover;
  object-position: top left;
}

.p-features-coming-soon__heading {
  padding-left: 60px;
  background: linear-gradient(to right, #843184, #3267a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.6rem;
  font-weight: 700;
}

.p-features-coming-soon__container {
  margin-top: 43px;
  display: grid;
  grid-template-columns: 450px 450px;
  justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .p-features-coming-soon__container {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 50px;
  }
}

.p-features-coming-soon__item {
  padding: 30px 47px;
  width: 450px;
  min-height: 450px;
  border: 2px solid #00adb0;
  background-color: #ffffff;
  box-sizing: border-box;
  position: relative;
}

.p-features-coming-soon__item p {
  font-size: 1.6rem;
  font-weight: 700;
}

.p-features-coming-soon__item img {
  display: block;
  margin: 20px auto 0;
  width: auto;
}

@media screen and (max-width: 767px) {
  .p-features-coming-soon__item {
    padding: 28px;
    width: 100%;
    height: auto;
  }

  .p-features-coming-soon__item img {
    margin-top: 20px;
    width: 100%;
    position: static;
    transform: translate(0, 0);
  }
}

.p-features-movie {
  width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .p-features-movie {
    width: 100%;
    padding: 0 30px;
  }
}

.p-features-movie .p-features-movie__heading {
  font-size: 3.4rem;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: #d9d9d9 solid 1px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-features-movie .p-features-movie__heading {
    font-size: 2.8rem;
  }
}

.p-features-movie .p-features-movie__heading::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  background-color: #843184;
  width: 40px;
  height: 1px;
}

.p-features-movie__container {
  width: 900px;
  margin: 0 auto 160px;
}

@media screen and (max-width: 767px) {
  .p-features-movie__container {
    width: 100%;
  }
}

.p-features-movie__container h4 {
  font-size: 2.8rem;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: #757575 solid 1px;
}

@media screen and (max-width: 767px) {
  .p-features-movie__container h4 {
    margin-bottom: 20px;
  }
}

.p-features-movie__container p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.p-features-movie__container .btn_movie {
  width: 240px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .p-features-movie__container .btn_movie {
    width: 100%;
    margin: 0 auto;
  }
}

.p-features-movie__container .btn_movie a {
  width: 100%;
  height: 100%;
  min-height: 60px;
  background-color: #843184;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  transition: all 0.5s;
}

.p-features-movie__container .btn_movie a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .p-features-movie__container .btn_movie a:hover {
    opacity: 1;
  }
}

.p-features-movie__container .btn_movie a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 20px;
  margin: auto;
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}

.p-features-movie__container .btn_black a {
  margin: 0 0 0 auto;
  width: 240px;
}

@media screen and (max-width: 767px) {
  .p-features-movie__container .btn_black a {
    width: 100%;
    margin: 0 auto;
  }
}

.p-features-movie__container .btn_black a span::before {
  content: "動画一覧はこちら";
}

.p-features-movie__box {
  margin: 65px auto 74px;
}

.p-features-movie__box iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  border: #ccc solid 1px;
  transition: all 0.5s;
}

.p-features-movie__box iframe:hover {
  opacity: 0.8;
}

.p-movies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 80px;
  column-gap: 54px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p-movies {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.p-modal {
  display: none;
}

.p-modal--open {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(23, 23, 23, 0.5);
  z-index: 999;
}

.p-modal__content {
  position: relative;
  width: 917px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .p-modal__content {
    width: 90%;
  }
}

.p-modal__close {
  cursor: pointer;
  position: absolute;
  top: -34px;
  right: 0;
}

.p-modal__movie {
  height: 480px;
}

@media screen and (max-width: 767px) {
  .p-modal__movie {
    height: 240px;
  }
}

.p-features-scroll {
  width: fit-content;
  height: 130px;
  position: sticky;
  top: 104px;
  right: 9px;
  padding-top: 34px;
  margin: 0 0 0 auto;
  transition: opacity 0.2s;
}

.p-features-scroll__item {
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border: 1px solid #000000;
  border-radius: 50%;
  list-style-type: none;
}

.p-features-scroll__item+.p-features-scroll__item {
  margin-top: 10px;
}


/* ----------------------
NEWS
---------------------- */
.p-news__menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 0px;
  width: 900px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 767px) {
  .p-news__menu {
    width: 100%;
    margin-bottom: 24px;
  }
}

.p-news__menu::before {
  content: "";
  display: block;
  width: 240px;
  order: 1;
}

.p-news__menu::after {
  content: "";
  display: block;
  width: 240px;
}

.p-news__menu li {
  width: 200px;
  height: 48px;
}

@media screen and (max-width: 767px) {
  .p-news__menu li {
    width: 42vw;
  }
}

.p-news__menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  transition: all 0.5s;
}

@media screen and (max-width: 767px) {
  .p-news__menu li a {
    width: auto;
    padding: 0 30px;
    line-height: 1.2;
    font-size: 1.4rem;
  }
}

.p-news__menu li.current a {
  pointer-events: none;
}

.p-news__menu li.current a::before {
  width: 100%;
}

.p-news__menu li.current a span::before {
  color: #fff;
  opacity: 1;
}

.p-news__menu li.nav01 a span::before {
  content: "すべて";
}

.p-news__menu li.nav02 a span::before {
  content: "お知らせ";
}

.p-news__menu li.nav03 a span::before {
  content: "バージョンアップ";
}

.p-news__menu li.nav04 a span::before {
  content: "イベント / 展示会";
}

.p-news {
  width: 900px;
  margin: 0 auto 100px;
}

@media screen and (max-width: 767px) {
  .p-news {
    width: 100%;
  }
}

.p-news .p-news__list {
  width: 100%;
  border-top: #d9d9d9 solid 1px;
}

.p-news .p-news__list .p-news__list-item {
  border-bottom: #d9d9d9 solid 1px;
}

.p-news .p-news__list .p-news__list-item a {
  padding: 20px 40px 20px 0;
  display: block;
  transition: all 0.6s;
  position: relative;
}

.p-news .p-news__list .p-news__list-item a::after {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  content: url(../img/common/ico_arrow.svg);
}

@media screen and (max-width: 767px) {
  .p-news .p-news__list .p-news__list-item a::after {
    right: 9px;
  }
}

.p-news .p-news__list .p-news__list-item a[target="_blank"]::after {
  right: 0;
  content: url(../img/common/ico_blank.svg);
}

@media screen and (max-width: 767px) {
  .p-news .p-news__list .p-news__list-item a[target="_blank"]::after {
    right: 6px;
  }
}

.p-news .p-news__list .p-news__list-item a:hover {
  opacity: 0.7;
}

.p-news .p-news__list .p-news__list-item a dl {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .p-news .p-news__list .p-news__list-item a dl {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.p-news .p-news__list .p-news__list-item a dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.p-news .p-news__list .p-news__list-item a dl dt span {
  display: block;
}

.p-news .p-news__list .p-news__list-item a dl dt .date {
  font-size: 1.6rem;
  width: 7.5em;
}

.p-news .p-news__list .p-news__list-item a dl dt .tag {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  width: 140px;
  padding: 8px 0;
  background-color: #d9d9d9;
  text-align: center;
}

.p-news .p-news__list .p-news__list-item a dl dd {
  font-size: 1.6rem;
  line-height: 1.8;
}

/* ----------------------
NEWS-article
---------------------- */
.p-news__content-main {
  margin-bottom: 80px;
}

.p-news__content-main .p-news__title-container {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .p-news__content-main .p-news__title-container {
    margin-bottom: 80px;
  }
}

.p-news__content-main .p-news__title-container .c-title-page__main {
  font-size: 4.0rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 30px;
  color: #00ADB0;
}

@media screen and (max-width: 767px) {
  .p-news__content-main .p-news__title-container .c-title-page__main {
    font-size: 2.6rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}

.p-news__content-main .p-news__title-container .p-news__date-category {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.p-news__content-main .p-news__title-container .p-news__date-category .p-news__date {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.p-news__content-main .p-news__title-container .p-news__date-category .p-news__category {
  width: 150px;
  height: 30px;
  font-size: 1.4rem;
  line-height: 1;
  border: #000 solid 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

/* h2 */
.p-news__content-main h2 {
  font-size: 3.4rem;
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: #d9d9d9 solid 2px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-news__content-main h2 {
    font-size: 2.4rem;
    padding-bottom: 16px;
  }
}

.p-news__content-main h2::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  width: 80px;
  height: 2px;
  background-color: #843184;
}

/* h3 */
.p-news__content-main h3 {
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 36px;
  border-bottom: #757575 solid 1px;
}

@media screen and (max-width: 767px) {
  .p-news__content-main h3 {
    font-size: 2.2rem;
    padding-bottom: 13px;
    margin-bottom: 32px;
  }
}

/* h4 */
.p-news__content-main h4 {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 32px;
  position: relative;
  padding-left: 35px;
}

@media screen and (max-width: 767px) {
  .p-news__content-main h4 {
    font-size: 2.0rem;
    margin-bottom: 24px;
  }
}

.p-news__content-main h4::before {
  content: "";
  width: 8px;
  height: 24px;
  transform: skewX(-33deg);
  background: linear-gradient(to bottom, #3267a7, #843184);
  position: absolute;
  top: 9px;
  left: 9px;
}

@media screen and (max-width: 767px) {
  .p-news__content-main h4::before {
    width: 6px;
    top: 4px;
  }
}

/* h5 */
.p-news__content-main h5 {
  font-size: 2.0rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
}

@media screen and (max-width: 767px) {
  .p-news__content-main h5 {
    font-size: 1.8rem;
    padding-left: 35px;
  }
}

.p-news__content-main h5::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #843184;
  position: absolute;
  top: 0.5em;
  left: 8px;
}

/* h6 */
.p-news__content-main h6 {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
  color: #843184;
}

.p-news__content-main h6::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #843184;
  position: absolute;
  top: 0.7em;
  left: 8px;
}

@media screen and (max-width: 767px) {
  .p-news__content-main h6::before {
    top: 0.9em;
    left: 9px;
  }
}

/* p */
.p-news__content-main p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p-news__content-main p {
    line-height: 1.82;
    margin-bottom: 20px;
  }
}

.p-news__content-main p.note {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #757575;
}

/* ul */
.p-news__content-main ul {
  padding-left: 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p-news__content-main ul {
    padding-left: 26px;
  }
}

.p-news__content-main ul li {
  list-style: none;
  margin-bottom: 11px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.p-news__content-main ul li:before {
  background: #3267A7;
  border: 1px solid #3267A7;
  content: "";
  display: inline-block;
  margin: -5px 15px 0 -24px;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.p-news__content-main ul ul {
  margin-left: 1em;
  margin-top: 8px;
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .p-news__content-main ul ul {
    margin-left: 1.5em;
  }
}

.p-news__content-main ul>li>ul li:before {
  background: none;
}

/* ol */
.p-news__content-main ol {
  counter-reset: content-main-ol-default;
  padding-left: 0;
  margin-bottom: 40px;
}

.p-news__content-main ol>li {
  list-style-position: inside;
  list-style-type: decimal-leading-zero;
  margin-bottom: 8px;
  padding-left: 2.0em;
  text-indent: -1.7em;
  font-size: 1.6rem;
  line-height: 1.8;
}

.p-news__content-main ol>li::marker {
  color: #3267A7;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.p-news__content-main ol ol {
  margin-left: 0;
  margin-top: 14px;
}

.p-news__content-main ol ol li::marker {
  color: #757575;
}

/* table */
.p-news__content-main table {
  border-collapse: collapse;
  margin-bottom: 50px;
  width: 100%;
  box-sizing: border-box;
}

.p-news__content-main table * {
  box-sizing: border-box;
}

.p-news__content-main table caption {
  font-weight: 700;
  text-align: left
}

.p-news__content-main table tr {
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.p-news__content-main table th {
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.9;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 0.7em 1.3em;
}

.p-news__content-main table tr:not(:first-of-type) th {
  background: #e5e5e5;
  font-weight: 500;
  color: #333;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-news__content-main table th {
    padding: 0.5em;
  }
}

.p-news__content-main table td {
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.9;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  color: #000;
  padding: 1.3em 1.7em;
}

@media screen and (max-width: 767px) {
  .p-news__content-main table td {
    padding: 0.5em;
  }
}

/* 横スクロール */
.p-news__content-main .sp-scroll .scroll-inner {
  width: 100%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .p-news__content-main .sp-scroll {
    padding-bottom: 3em;
    position: relative;
  }

  .p-news__content-main .sp-scroll::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "※この表は横にスクロールできます";
    font-size: 1.4rem;
    width: 100%;
    display: inline-block;
    border-radius: 100vh;
    box-sizing: border-box;
  }

  .p-news__content-main .sp-scroll table {
    display: table;
    width: 900px;
    margin-bottom: 0;
  }

  .p-news__content-main .sp-scroll table th {
    padding: 10px 4%;
  }

  .p-news__content-main .sp-scroll table td {
    padding: 10px 4%;
  }
}

/* ボタン文言 */
.p-news__content-main .btn_gray.btn_back.news_back a span::before {
  content: "お知らせ一覧に戻る";
}

/* 画像コンテナ */
.img_container {
  width: 840px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .img_container {
    width: 100%;
  }
}
.img_container img {
  max-width: 100%;
}

/* テキストリンク */
.p-news__content-main p a {
  color: #00ADB0;
  text-decoration: underline;
  position: relative;
}
.p-news__content-main p a:hover {
  text-decoration: none;
}

/* 別窓リンク */
.p-news__content-main p a[target="_blank"] {
  padding-right: 1.8em;
}
.p-news__content-main p a[target="_blank"]::after {
  background: url(../img/common/ico_blank_green.svg) no-repeat 50%/contain;
  content: "";
  display: inline-block;
  height: 24px;
  width: 24px;
  position: absolute;
  bottom: 0;
}

/* ----------------------
登録商標
---------------------- */
.registered_note {
  width: 1260px;
  margin: 0 auto 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .registered_note {
    width: 100%;
    padding: 0 20px;
  }
}
.registered_note p {
  font-size: 1.4rem;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;;
  color: #757575;
}

/* ----------------------
ボタン
---------------------- */

/* パーツ一覧用ボタンコンテナ */
.btn_container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

/* ページ内リンク カラム対応 */
.p-news__content-main .page_link {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.p-news__content-main .page_link li {
  width: 164px;
  margin-bottom: 0;
}
.p-news__content-main .page_link li::before {
  display: none;
}
.p-news__content-main .page_link li a {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-news__content-main .page_link {
    justify-content: space-between;
  }
  .p-news__content-main .page_link li {
    width: calc(314 / 750 * 100vw);
  }
}

/* 矢印 */
.btn_arrow a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 16px;
  margin: auto;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.btn_arrow a span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 16px;
  margin: auto;
  border: solid #000;
  border-width: 1px 1px 0 0;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.8s;
  opacity: 0;
  z-index: 1;
}

.btn_arrow a:hover span::after {
  opacity: 1;
}

/* arrow_bold */
.btn_arrow.arrow_bold a::after,
.btn_arrow.arrow_bold a span::after {
  border-width: 2px 2px 0 0;
}

/* arrow_bottom */
.btn_arrow.arrow_bottom a::after,
.btn_arrow.arrow_bottom a span::after {
  transform: translateY(-50%) rotate(135deg);
}

/* arrow_back */
.btn_arrow.arrow_back a::after,
.btn_arrow.arrow_back a span::after {
  transform: translateY(-50%) rotate(225deg);
  right: auto;
  left: 16px;
}

/* 黒ボタン */
.btn_black a {
  width: 280px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
  margin: 0 auto;
  border: #000 solid 1px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .btn_black a {
    height: 46px;
  }
}

.btn_black a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
}

.btn_black a:hover::before {
  width: 100%;
}

.btn_black.btn_arrow a::after {
  border-color: #fff;
}

.btn_black a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.btn_black a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  content: "Click Here";
}

.btn_black a:hover span::before {
  opacity: 1;
}

.btn_black.btn_arrow a span::after {
  border-color: #000;
}

.p-top-feature .btn_black a span::before {
  content: "機能紹介を見る";
}

.p-top-example .btn_black a span::before {
  content: "導入事例を見る";
}

/* 白ボタン */
.btn_white a {
  width: 280px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
  margin: 0 auto;
  border: #000 solid 1px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .btn_white a {
    height: 46px;
  }
}

.btn_white a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background-color: #000;
  transition: 0.5s;
}

.btn_white a:hover::before {
  width: 100%;
}

.btn_white.btn_arrow a::after {
  border-color: #000;
}

.btn_white a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.btn_white a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  content: "Click Here";
}

.btn_white a:hover span::before {
  opacity: 1;
}

.btn_white.btn_arrow a span::after {
  border-color: #fff;
}

/* 灰色ボタン */
.btn_gray a {
  width: 280px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #757575;
  font-size: 1.6rem;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
  margin: 0 auto;
  border: #757575 solid 1px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .btn_gray a {
    height: 46px;
  }
}

.btn_gray a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
}

.btn_gray a:hover::before {
  width: 100%;
}

.btn_gray.btn_back a span::before {
  content: "戻る";
}

.btn_gray.btn_back a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: auto;
  left: 16px;
  margin: auto;
  border: 2px solid #fff;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(225deg);
}

.btn_gray a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.btn_gray a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.6rem;
  font-weight: bold;
  color: #757575;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  content: "Click Here";
}

.btn_gray a:hover span::before {
  opacity: 1;
}

.btn_gray.btn_back a span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: auto;
  left: 16px;
  margin: auto;
  border: 2px solid #757575;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(225deg);
  transition: 0.8s;
  opacity: 0;
  z-index: 1;
}

.btn_gray.btn_back a:hover span::after {
  opacity: 1;
}

/* ホバー色変更 */
.hover_green a:hover {
  border-color: #00ADB0;
  transition: 0s;
}

.hover_green a::before {
  background-color: #00ADB0;
}

.hover_green a span:hover {
  color: #fff;
  transition: 0.8s;
}

.hover_green a span::before {
  color: #fff;
}

.hover_green.btn_arrow:hover a::after {
  border-color: #fff;
  transition: 0.9s;
}

.hover_green.btn_arrow a span::after {
  border-color: #fff;
}

.hover_dark a:hover {
  border-color: #424242;
  transition: 0s;
}

.hover_dark a::before {
  background-color: #424242;
}

.hover_dark a span:hover {
  color: #fff;
  transition: 0.8s;
}

.hover_dark a span::before {
  color: #fff;
}

.hover_dark.btn_arrow:hover a::after {
  border-color: #fff;
  transition: 0.9s;
}

.hover_dark.btn_arrow a span::after {
  border-color: #fff;
}

.hover_none a::before,
.hover_none a::after,
.hover_none a span::before,
.hover_none a span::after {
  display: none;
}

/* 太い枠線 */
.border-bold a {
  border-width: 2px;
}

/* サイズ */
.btn_l a {
  width: 280px;
  height: 60px;
}

.btn_m a {
  width: 240px;
  height: 48px;
}

.btn_s a {
  width: 174px;
  height: 40px;
}

/* ----------------------
other
---------------------- */
#FixMenu {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-features-overflow {
    overflow-x: hidden;
    position: relative;
    margin-top: -71px;
    padding-top: 100px;
    padding-top: 72px;
  }
}

.js-loaded-bar {
  animation: loaded-bar 0.8s ease-in forwards;
}

.js-loaded-logo {
  animation: loaded-logo 2s ease-in 1.5s forwards;
}

.js-loaded {
  animation: fade-out 1s ease-in 3.5s forwards;
}

.js-zoom-fv {
  animation: zoom-fv 6s linear forwards;
}

.js-trapezoid {
  animation: fade-in-from-bottom 1s ease forwards, trapezoid-move 8s ease infinite 1s;
}

.js-fv-fade-in {
  animation: fade-in 1s ease forwards;
}

@media screen and (max-width: 767px) {
  .js-menu-button-open {
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    z-index: 11;
  }

  .js-menu-button-open::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("../img/common/ico_menu-close_sp.svg");
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 767px) {
  .js-menu-open {
    opacity: 1;
    visibility: visible;
  }
}

.js-menu-hidden {
  opacity: 0;
  visibility: hidden;
}

.js-menu-visible {
  opacity: 1;
  visibility: visible;
}

.js-menu-bg {
  background-color: rgba(255, 255, 255, 0.8);
}

.js-features-scroll {
  background-color: #000000;
}

.js-features-scroll-hidden {
  opacity: 0;
}

/* 追加アニメーション（タイムラグなし） */
.fadeInUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */
.wh500{
  width: 500px;
}
.case07 .p-example .p-example__article .p-example__article-box .img_container .img_column2 {
  align-items: baseline;
}
.case07 .p-example .p-example__article .p-example__article-box .img_container .img_column2 img{
  width: auto;
  height: 100%;
}
.case07 .p-example .p-example__article .p-example__article-box .img_container .img_column2 img:first-of-type{
  width: 430px;
}
.case07 .p-example .p-example__article .p-example__article-box .img_column_flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.case07 .p-example .p-example__article .p-example__article-box .img_column_flex .img_container .caption{
  margin-bottom: 15px;
  margin-top: 0;
  font-weight: 700;
  font-size: 1.5rem;
}
.case07 .p-example .p-example__article .mb0{
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .wh500{
  width: 100%;
}
  .case07 .p-example .p-example__article .p-example__article-box .img_container .img_column2 img:first-of-type{
    width: 100%;
  }
  .case07 .p-example .p-example__article .p-example__article-box .img_column_flex {
  display: block;
  }
  .case07 .p-example .p-example__article .p-example__article-box .img_column_flex .img_container .caption{
    margin-top: 40px;
  }
}

/* -----------------
　　26/01追加分
----------------- */
/* 導入事例ページ */
.p-example .p-example__flex .p-example__case .p-example__img-area {
  width: 100%;
}
.p-example .p-example__group {
  margin-bottom: 120px;
}
.p-example .p-example__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.p-example .p-example__flex .p-example__case{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 47%;
  position: relative;
  margin: 0 0 60px;
}

.p-example .p-example__text-area {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-example .p-example__case-title {
  flex-grow: 1;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start; 
}
.p-example .p-example__case-client {
  min-height: 1.5em;
  margin-bottom: 10px;
}
.p-example .p-example__case-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 12px !important;
  align-content: flex-start;
}
.p-example .p-example__case .p-example__text-area .btn_black {
  bottom: -20px;
  transform: translate(-50%, -50%); 
  position: relative;
  transform: none;
  left: 0;
  margin-top: auto;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}
.badge-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b5a84 10%, #9f368f 90%);
  color: white;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: -35px;
  }
.p-example .p-example__flex .banner_area{
  margin-bottom: 90px;
}
.p-example .mb75 {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
.p-example .p-example__flex {
  display: block;
}
.p-example .p-example__flex .p-example__case {
    width: 100%;
}
.badge-new {
    width: 60px;
    height: 60px;
    font-size: 15px;
    top: -30px;
    left: -15px;
}
}

/* 導入事例詳細ページ */
.leaflet_form__button {
  top: 576px;
  left: 91px;
  z-index: 2;
  margin: 35px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leaflet_form__button a {
  position: relative;
  padding: 22px 34px 22px 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 74px;
  box-sizing: border-box;
  color: #fff;
  transition: 0.5s;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  border: 2px solid;
  border-image: linear-gradient(225deg, #843184 0%, #9C3267 100%) 1;
  background: linear-gradient(225deg, #843184 0%, #9C3267 100%);
}
.leaflet_form__button a::after {
  position: absolute;
  top: 50%;
  left: 55px;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 30px;
  background: center/contain no-repeat;
  background-image: url("../img/icon_file.svg");
}
.leaflet_form__button a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
}
.leaflet_form__button a:hover::before {
  width: 100%;
}
.leaflet_form__button a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-left: 18px;
}
.leaflet_form__button a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 2rem;
  font-weight: bold;
  content: "この事例資料を請求する";
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  background: -webkit-linear-gradient(225deg, #843184 0%, #9C3267 100%);
  color: #554893;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 18px;
  
}
.leaflet_form__button a:hover span::before {
  opacity: 1;
}
.leaflet_form__button a span::after {
  position: absolute;
  top: 50%;
  left: 55px;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 30px;
  background: center/contain no-repeat;
  background-image: url("../img/icon_file_on.svg");
  transition: 0.6s;
  opacity: 0;
  z-index: 1;
}
.leaflet_form__button a:hover span::after {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .leaflet_form__button {
    top: auto;
    bottom: 40px;
    left: 50%;
  }
  .leaflet_form__button a {
    padding: 20px 0;
    justify-content: center;
    font-size: 1.6rem;
    width: 100%;
    height: 60px;
  }
  .leaflet_form__button a span::before {
    font-size: 1.6rem;
  }
  .p-example__block .banner_area{
    margin-top: 35px;
  }
}

/* 資料ダウンロードページ */
.p-leaflet .flex_box{
  display: flex;
  gap: 85px 30px;
  flex-wrap: wrap;
  align-items: stretch;
  /* width: 100%;
  margin-top: 50px; */

}
.p-leaflet .mb110{
  margin-bottom: 110px;
}
.p-leaflet .c-heading-title{
  margin-bottom: 32px;
  border-bottom: 1px solid #707070;
  padding-left: 54px;
  padding-bottom: 10px;
}
.p-leaflet .flex_box .p-leaflet__box{
  display: flex;
  flex-direction: column;
  width: 30%;
  text-align: center;
}
.p-leaflet .flex_box .p-leaflet__box img{
  max-width: 210px;
  height: auto;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.25);
}
.p-leaflet .flex_box .p-leaflet__box .p-leaflet__text-area{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-leaflet .flex_box .p-leaflet__box .p-leaflet__text-area .btn_black{
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.p-leaflet .flex_box .p-leaflet__box .p-leaflet__text-area .p-leaflet__title{
  font-size: 1.2em;
  margin: 15px 0;
  font-weight: 500;
}
.p-leaflet .btn_black a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 245px;
  height: 60px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
  line-height: 1.3;
  font-weight: bold;
  border: 2px solid #000;
}
.p-leaflet .btn_black a::after {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  background: center/contain no-repeat;
  background-image: url("../img/icon_download.svg");
}
.p-leaflet .btn_black a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
}
.p-leaflet .btn_black a:hover::before {
  width: 100%;
}
.p-leaflet .btn_black a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-left: 10px;
}
.p-leaflet .btn_black a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-weight: bold;
  content: "Download";
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  background-color: #000;
  color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 10px;
}
.p-leaflet .btn_black a:hover span::before {
  opacity: 1;
}
.p-leaflet .btn_black a span::after {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  background: center/contain no-repeat;
  background-image: url("../img/icon_download_on_black.svg");
  transition: 0.6s;
  opacity: 0;
  z-index: 1;
}
.p-leaflet .btn_black a:hover span::after {
  opacity: 1;
}
.p-leaflet .p-leaflet__case-tag {
  display: flex;
  margin: 0 auto 15px;
  flex-wrap: wrap;
  max-width: 250px;
}
.p-leaflet .p-leaflet__case-tag li{
  padding: 4px;
  font-size: 0.85em;
  text-align: left;
}
.p-leaflet .badge-new{
  width: 60px;
  height: 60px;
  font-size: 15px;
  top: 75px;
  left: 25px;
}
.p-leaflet .banner_area{
  margin: 100px auto 150px auto;
  max-width: 1008px;
}
.p-leaflet .banner_area img{
  width: 100%;
}


.button_area{
  display: flex;
}
.button_area .leaflet_form__button a::after,
.button_area .leaflet_form__button span::after {
  content: none;
  background: none !important;
}

.button_area .youtube_button a span::before {
  content: "K-D2 PLANNER®を動画で見る";
  padding-left: 0;
}
.button_area .support_button a span::before {
  content: "サポートについてみる";
  padding-left: 0;
}
.button_area .youtube_button span::after,
.button_area .support_button span::after {
  background-image: none;
}

.youtube_button a span::before,
.support_button a span::before{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-weight: bold;
  color: #fff;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  border-color: #fff;
}

.youtube_button a::after,
.support_button a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: -265px;
  margin: auto;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
}
.youtube_button a span::after,
.support_button a span::after{
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: -265px;
  margin: auto;
  border: solid #843184;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.8s;
  opacity: 0;
  z-index: 1;
}
.button_area .youtube_button a span,
.button_area .support_button a span{
  padding-left: 0;
}

.button_area .youtube_button a,
.button_area .support_button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  text-decoration: none;
}

.button_area .youtube_button > a::after,
.button_area .support_button > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -260px;
  width: 10px;
  height: 10px;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
  background: none;
  pointer-events: none;
  z-index: 1;
  opacity: 1; 
  transition: opacity .2s ease, border-color .2s ease;
}

.button_area .youtube_button > a:hover::after,
.button_area .support_button > a:hover::after {
  border-color: #843184;
}

@media screen and (max-width: 767px) {
  .p-leaflet .btn_black {
    top: auto;
    bottom: 40px;
    left: 50%;
  }
  .p-leaflet .btn_black a {
    padding: 20px 0;
    justify-content: center;
    font-size: 1.6rem;
    width: 100%;
    height: 45px;
  }
  .p-leaflet .btn_black a span::before {
    font-size: 1.6rem;
  }
  .p-leaflet .flex_box .p-leaflet__box {
    width: 45%;
  }
  .p-leaflet .flex_box {
    margin-top: 30px;
    gap: 50px 30px;
  }
  .p-leaflet .btn_black a::after {
    left: 20px;
    width: 15px;
    height: 15px;
  }
  .p-leaflet .btn_black a span::after {
    left: 20px;
    width: 15px;
    height: 15px;
  }
  .p-leaflet .p-leaflet__case-tag {
  gap: 2px;
  }
  .p-leaflet .badge-new {
    width: 45px;
    height: 45px;
    font-size: 13px;
    top: 55px;
    left: -10px;
  }
  .p-leaflet .c-heading-title {
    padding-left: 0;
  }
  .p-leaflet .mb110 {
    margin-bottom: 60px;
  }
  .p-leaflet .btn_black a::after {
    left: 20px;
  }
  .p-leaflet .flex_box .p-leaflet__box .p-leaflet__text-area .p-leaflet__title{
    font-size: 1.3em;
  }
  .p-leaflet .p-leaflet__case-tag li{
  font-size: 1.25em;
}
.p-leaflet .banner_area{
  margin-top: 0;
  margin-bottom: 120px;
}
.button_area{
  display: block;
  margin: 35px auto 75px;;
}
.button_area .support_button{
  margin-top: 20px;
}
.button_area .youtube_button > a::after,
.button_area .support_button > a::after {
  right: -245px;
}
}
@media screen and (max-width: 405px) {
    .p-leaflet .p-leaflet__case-tag li {
        font-size: 1.1em;
    }
}