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

SCREEN SIZE

--------------------------------------------------------------------*/
/*------------------------------------------------------------------

FONT

--------------------------------------------------------------------*/
.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}

.robot {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Arial, sans-serif;
  --serif: serif;
}

/*------------------------------------------------------------------

WIDTH

--------------------------------------------------------------------*/
:root {
  --width-1200: min(100%, 1200px);
  --width-1100: min(100%, 1100px);
  --width-900: min(100%, 900px);
}

/*------------------------------------------------------------------

COLOR

--------------------------------------------------------------------*/
:root {
  /* colors */
  --color-black: #4A5051;
  --color-white: #ffffff;
  --color-blue: #0097F9;
  --color-dark_blue: #3A34FF;
  --color-light_blue: #EBF5FA;
  --color-purple: #D4D4FF;
  --color-light_purple: #C3C1FF;
  --color-bright_purple: #F5F5FF;
  --color-yellow: #FFFF00;
}

/*------------------------------------------------------------------

SIZE

--------------------------------------------------------------------*/
:root {
  /*フォントサイズ*/
  --fontsize: 1rem; /*16*/
  --fontsize-headline-1: 2.0625rem; /*33*/
  --fontsize-headline-2: 2rem; /*32*/
  --fontsize-headline-3: 1.75rem; /*28*/
  --fontsize-headline-4: 1.625rem; /*26*/
  --fontsize-headline-5: 1.5rem; /*24*/
  --fontsize-ll: 1.375rem; /*22*/
  --fontsize-l: 1.25rem; /*20*/
  --fontsize-m: 1.125rem; /*18*/
  --fontsize-s: 0.75rem; /*12*/
  --line-height: 2;
  --line-height-l: 2.3;
  --line-height-m: 1.88;
  --line-height-s: 1.83;
  --line-height-ss: 1.8;
  --letter-spacing-l: 0.08em;
  --letter-spacing-m: 0.07em;
  --letter-spacing-s: 0.05em;
  /*角丸*/
  --radius: 8px;
  --radius-s: 5px;
}

/*------------------------------------------------------------------

ANIMATION

--------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------------------------------------------------

BASE

--------------------------------------------------------------------*/
h1, h2, h3, h4, h5 {
  font-weight: 700;
}

p {
  color: var(--color-black);
}

.c {
  text-align: center;
  margin-inline: auto;
}

.hidden {
  visibility: hidden;
}

.only-pc {
  display: inherit;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
    visibility: hidden;
  }
}

.only-sp {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: inherit;
    visibility: visible;
  }
}

.only-ssp {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 500px) {
  .only-ssp {
    display: inherit;
    visibility: visible;
  }
}

.nopc {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .nopc {
    display: inherit;
    visibility: visible;
  }
}

@media screen and (max-width: 767px) {
  .nosp {
    display: none;
    visibility: hidden;
  }
}
@media screen and (max-width: 500px) {
  .nossp {
    display: none;
    visibility: hidden;
  }
}
section {
  padding: 80px 0 100px;
}

/*------------------------------------------------------------------

COMMON

--------------------------------------------------------------------*/
.section {
  padding-block: 100px;
}

.contents_wrap {
  margin: auto;
  padding: 0;
  position: relative;
}

.contents_wrap--large {
  width: var(--width-1200);
}

.contents_wrap--middle {
  width: var(--width-1100);
}

.contents_wrap--small {
  width: var(--width-900);
}

@media screen and (max-width: 767px) {
  .contents_wrap {
    padding-inline: 4%;
  }
}
.pb_60 {
  padding-bottom: 60px;
}

.pb_100 {
  padding-bottom: 100px;
}

.bg_bp {
  background: var(--color-bright_purple);
}

.bg_w {
  background-color: var(--color-white);
}

.btn_large {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 440px;
  max-height: 80px;
  padding: 1.65rem 1rem;
}
.btn_large span {
  font-size: 18px;
  line-height: var(--line-height-s);
}

.section__title_wrap {
  padding-bottom: 28px;
  margin-top: 0;
  position: relative;
}

.section__title_wrap::before,
.section__title_wrap::after {
  content: "";
  width: 50px;
  height: 5px;
  display: block;
  background: linear-gradient(90deg, #5800FF 0%, #4D14FF 18.23%, #0096FF 100%);
  border-radius: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
}

.section__title_wrap::before {
  width: 42px;
  left: -8px;
}

.section__title_wrap::after {
  width: 5px;
  right: -46px;
}

.section__title {
  font-size: var(--fontsize-ll);
  text-align: center;
  position: relative;
}
.section__title span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--fontsize-headline-2);
  font-style: italic;
  color: var(--color-light_purple);
  display: block;
  padding-bottom: 12px;
}

.section__lead {
  font-size: var(--fontsize-m);
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-m);
  text-align: center;
  margin-top: 24px;
}

.section__title_wrap--01 {
  width: fit-content;
  padding-inline: 2.5em;
  position: relative;
  margin-inline: auto;
}

.section__title_wrap--01::before,
.section__title_wrap--01::after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 3px;
  background: var(--color-dark_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
}

.section__title_wrap--01::before {
  left: 0;
  transform: rotate(-128deg);
}

.section__title_wrap--01::after {
  right: 0;
  transform: rotate(-56deg);
}

.section__title--01 {
  color: var(--color-dark_blue);
  font-size: var(--fontsize-headline-2);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section__lead {
    text-align: left;
    font-size: var(--fontsize);
    line-height: var(--line-height-m);
    letter-spacing: var(--letter-spacing-s);
    padding-inline: 4%;
  }
}
@media screen and (max-width: 500px) {
  .section__title--01 {
    font-size: var(--fontsize-ll);
  }
}
.blue {
  color: var(--color-blue);
}

.dot {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1.07em 0.3em;
  background-image: radial-gradient(0.13em 0.13em at center center, var(--color-blue), var(--color-blue) 100%, transparent, transparent);
  padding-top: 0.2em;
}

/* KV */
/* -------------------------------------------------- */
.kv {
  background: linear-gradient(115.24deg, #F2F2FF 0%, #EDECFF 57.25%, #ECECFF 68.56%);
  padding-top: 84px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.kv__inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding-top: 84px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}

.kv__inner--left {
  width: 56%;
  max-width: 672px;
  padding-bottom: 88px;
  position: relative;
  z-index: 1;
}

.kv__heading {
  color: var(--color-black);
}

.kv__heading span {
  font-size: var(--fontsize-headline-1);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
  white-space: nowrap;
}

.kv__heading img {
  margin-top: 28px;
}

.kv__lead {
  text-align: left;
  margin-top: 30px;
}

.kv__catch {
  margin-top: 22px;
}

.kv__catch ul {
  display: flex;
  gap: 28px;
}

.kv__catch li {
  width: 172px;
  aspect-ratio: 1/1;
  background: var(--color-blue);
  border-radius: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}

.kv__catch li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://digirise.ai/wp-content/themes/digirise/asset/image/rakujobai/bg-catch.svg);
  background-repeat: no-repeat;
  background-size: 147px;
  background-position: left 5px center;
  position: absolute;
  opacity: 0.9;
}

.kv__catch li span {
  color: var(--color-yellow);
  font-size: var(--fontsize-headline-1);
  font-weight: 700;
  line-height: 1.26;
}

.kv__inner--right {
  width: 44%;
  max-width: calc(100% - 672px);
  position: relative;
  z-index: 0;
}

.kv__img img.img-chaensan {
  max-width: 596px;
  position: absolute;
  right: 0;
  bottom: 0;
  height: auto;
}

.kv__img img.img-chaensan-text {
  position: absolute;
  top: 120px;
  right: -100px;
}

@media screen and (max-width: 1412px) {
  .kv__img img.img-chaensan-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 3px;
    max-width: none;
    top: unset;
    bottom: 4%;
    right: 4%;
  }
}
@media screen and (max-width: 1100px) {
  .kv__inner {
    padding-top: 40px;
    padding-inline: 4%;
    justify-content: space-between;
  }
  .kv__inner--left {
    width: 55%;
  }
  .kv__heading img {
    min-width: 600px;
    margin-top: 20px;
  }
  .kv__inner--right {
    width: 45%;
    max-width: none;
  }
  .kv__img img.img-chaensan {
    width: 100%;
  }
  .kv__catch li span {
    font-size: var(--fontsize-headline-3);
  }
}
@media screen and (max-width: 767px) {
  .kv__inner {
    padding-top: 8px;
    flex-direction: column;
    justify-content: center;
  }
  .kv__inner--left {
    width: 100%;
    padding-bottom: 8px;
  }
  .kv__heading {
    text-align: center;
  }
  .kv__heading span {
    font-size: var(--fontsize-headline-3);
    line-height: var(--line-height-m);
  }
  .kv__heading img {
    height: auto;
    padding: 0 2%;
    min-width: 0;
    margin-top: 20px;
  }
  .kv__inner--right {
    width: 100%;
    position: relative;
  }
  .kv__img {
    display: flex;
    justify-content: flex-end;
  }
  .kv__img img.img-chaensan {
    position: relative;
    vertical-align: bottom;
    right: 0;
    width: 60vw;
  }
  .kv__img img.img-chaensan-text {
    top: 50px;
    left: 6vw;
    bottom: unset;
    background: none;
  }
  .kv__lead {
    font-size: var(--fontsize);
    line-height: var(--line-height-m);
    letter-spacing: var(--letter-spacing-s);
  }
  .kv__catch ul {
    justify-content: center;
    gap: 12px;
  }
  .kv__catch li span {
    font-size: var(--fontsize-headline-5);
  }
}
@media screen and (max-width: 500px) {
  .kv__img img.img-chaensan {
    right: -50px;
    width: 280px;
  }
  .kv__img img.img-chaensan-text {
    top: 38px;
    left: -10px;
  }
}
.shape {
  background-color: #FFF;
  border-radius: 50%;
  transition: all 2s ease;
  transform: rotate(45deg);
  position: absolute;
  transform-origin: left bottom;
}

#shape-1 {
  width: 115px;
  height: 115px;
  bottom: 50px;
  right: 20%;
  opacity: 0.4;
}
#shape-1.scrolled {
  height: 338px;
}

#shape-2 {
  width: 85px;
  height: 85px;
  bottom: 55%;
  right: 43%;
  opacity: 0.35;
}
#shape-2.scrolled {
  height: 251px;
}

#shape-3 {
  width: 76px;
  height: 176px;
  bottom: 73%;
  right: 10%;
  opacity: 0.5;
}
#shape-3.scrolled {
  height: 309px;
}

#shape-4 {
  width: 115px;
  height: 115px;
  bottom: 68%;
  left: 6%;
  opacity: 0.3;
}
#shape-4.scrolled {
  height: 458px;
}

#shape-5 {
  width: 115px;
  height: 115px;
  bottom: 5%;
  left: -50px;
  opacity: 0.3;
}
#shape-5.scrolled {
  height: 458px;
}

@media screen and (max-width: 500px) {
  #shape-3 {
    display: none;
  }
}
/* problem, about */
/* -------------------------------------------------- */
.bg_wrap {
  background: url(https://digirise.ai/wp-content/themes/digirise/asset/image/rakujobai/bg_abst.svg) center top/cover no-repeat #FFF;
  position: relative;
  z-index: 0;
}

.bg_wrap::before {
  content: "";
  background: linear-gradient(149.62deg, #D2D1FF 50%, #FFFFFF 130%);
  background-blend-mode: hard-light;
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg_wrap::after {
  content: "";
  background: linear-gradient(103.79deg, #e3e2ff 5%, #F3F2FF 99%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 610px;
  z-index: -1;
}

/* problem */
/* -------------------------------------------------- */
.problem__illust {
  margin: 31px auto -33px;
  text-align: center;
}

.problem__inner {
  background: var(--color-purple);
  padding: 50px;
  position: relative;
}

.problem__inner::before {
  content: "";
  background: var(--color-purple);
  height: 69px;
  width: 108px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: calc(100% - 20px);
  left: calc(50% - 54px);
}

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

.problem__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}

.problem__lead {
  background: var(--color-white);
  border-radius: var(--radius-s);
  padding: 20px;
  font-size: var(--fontsize-l);
  font-weight: 700;
  line-height: var(--line-height-ss);
}

.problem__img {
  text-align: center;
}

.fukidashi {
  position: relative;
}

.fukidashi::before {
  content: "";
  background: var(--color-white);
  height: 21px;
  width: 33px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: calc(100% - 5px);
  left: calc(50% - 16.5px);
}

@media screen and (max-width: 767px) {
  .problem__illust {
    margin: 24px auto -20px;
  }
  .problem__illust img {
    height: 170px;
  }
  .problem__inner {
    padding: 8%;
  }
  .problem__item_list {
    grid-template-columns: 1fr;
  }
}
/* about */
/* -------------------------------------------------- */
.about {
  padding-top: 0;
}

.about__title {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  width: fit-content;
  margin: auto;
}

.about__title--top,
.about__title--bottom {
  color: var(--color-blue);
  font-size: var(--fontsize-headline-2);
}

.about__title--bottom {
  text-align: right;
}

.about__lead {
  margin-top: 34px;
}

@media screen and (max-width: 767px) {
  .about__title_wrap {
    padding-inline: 8%;
  }
  .about__title {
    gap: 8px 0;
  }
  .about__title--middle img {
    height: auto;
  }
}
.tab__wrap {
  display: flex;
  flex-direction: column;
  gap: 46px;
  margin-top: 56px;
}

.tab_menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.tab_menu li {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  padding: 6px 10px 12px;
  gap: 0;
  border-radius: var(--radius-s);
  position: relative;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.tab_menu li:hover {
  background: rgba(255, 255, 255, 0.7);
}
.tab_menu li.selected {
  background: var(--color-white);
}
.tab_menu li.selected::before {
  background: var(--color-white);
}
.tab_menu li span {
  color: #707070;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
}
.tab_menu li h3 {
  color: var(--color-blue);
  opacity: 0.7;
  font-size: var(--fontsize-m);
  line-height: 1.55;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.tab_menu li:hover h3,
.tab_menu li.selected h3 {
  color: var(--color-blue);
  opacity: 1;
}
.tab_menu .tab_menu li img {
  width: 60px;
}
.tab_menu li::before {
  content: "";
  background: transparent;
  height: 31px;
  width: 46px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: calc(100% - 10px);
  left: calc(50% - 23px);
  transition: 0.3s ease-in-out;
}

.tab_panel_container {
  background: var(--color-white);
  border-radius: var(--radius-s);
  padding: 45px 50px;
}

.tab_panel {
  display: flex;
  align-items: center;
  gap: 49px;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.tab_panel.is-show {
  overflow: visible;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.tab_panel img {
  width: 40%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: auto;
}

.tabs_texts {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tabs_texts h4 {
  color: var(--color-blue);
  font-size: var(--fontsize-headline-5);
  line-height: 1;
  font-weight: 700;
}

.tabs_texts p {
  color: var(--color-black);
  font-size: var(--fontsize);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing-m);
  margin-top: 8px;
}

@media screen and (max-width: 1250px) {
  .tab__wrap {
    padding-inline: 4%;
  }
  .tab_menu li {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .tab_menu {
    gap: 34px 14px;
  }
  .tab_menu li {
    width: calc(50% - 7px);
    transition: none;
  }
  .tab_menu li::before {
		transition: none;
	}
  .tab_menu li h3 {
    font-size: var(--fontsize);
    transition: none;
  }
  .tab_panel_container {
    padding: 8%;
  }
  .tab_panel {
    display: block;
  }
  .tab_panel img {
    width: 100%;
  }
  .tabs_texts {
    width: 100%;
    margin-top: 8%;
  }
  .tabs_texts h4 {
    line-height: var(--line-height-ss);
  }
  .tabs_texts p {
    margin-top: 14px;
  }
}
/* use case */
/* -------------------------------------------------- */
.usecase {
  padding-bottom: 80px;
}

[class*=swiper]:focus {
  outline: none;
}

:root {
  --swiper-margin-img: -43px;
  --swiper-margin-top: 43px;
}

.slide_wrap {
  padding-bottom: 61px;
  overflow: hidden;
  position: relative;
}

.slide_inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 980px;
  margin: 78px auto 0;
}

.swiper {
  overflow: visible;
}

.swiper-slide {
  padding: 0 25px 30px;
  border: 1px solid #DDD;
  border-radius: var(--radius-s);
  overflow: visible;
  margin: 0;
}

[data-swiper-slide-index]:nth-child(odd) {
  background: var(--color-light_blue);
}

.swiper_img {
  position: relative;
  margin-top: -39px;
}

.swiper_img img {
  width: 100%;
  height: auto;
  max-height: 240px;
}

.swiper_content_title {
  color: var(--color-black);
  font-size: var(--fontsize-m);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  margin-top: 10px;
}

.swiper-button-prev, .swiper-button-next {
  content: "";
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0) 100%);
  width: 10vw;
  height: calc(100% + 80px);
  position: absolute;
  top: -40px;
  margin: 0;
  z-index: 1;
}

.swiper-button-prev {
  left: calc(50% - 50vw);
  transform: scale(-1, 1);
}

.swiper-button-next {
  right: calc(50% - 50vw);
}

.swiper-button-prev::before, .swiper-button-next::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-blue);
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
}

.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
  border-color: var(--color-white);
  border: solid var(--color-white);
  width: 14px;
  height: 14px;
  border-width: 3.5px 3.5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 53px;
  z-index: 1;
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.swiper-pagination {
  bottom: -60px !important;
}

.swiper-pagination-bullet {
  width: 21px;
  height: 21px;
}

@media screen and (max-width: 767px) {
  .swiper-slide {
    padding: 0 4% 6%;
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    width: 40px;
    height: 40px;
    right: 12px;
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    width: 12px;
    height: 12px;
    border-width: 3px 3px 0 0;
    right: 28px;
  }
}
/* flow */
/* -------------------------------------------------- */
.flow__wrap {
  background: linear-gradient(151.54deg, var(--color-blue) 0.8%, #0976B2 100%);
  border-radius: var(--radius);
  padding: 40px 40px 19px;
  position: relative;
}

.flow__inner {
  border-radius: var(--radius);
  padding: 138px 135px 65px;
}

.flow__illust {
  position: absolute;
  left: 0;
  right: 0;
  top: -37px;
  margin: auto;
  text-align: center;
}

.flow__list {
  margin-top: 52px;
}

.flow__item {
  padding-left: 37px;
  position: relative;
}

.flow__item:not(:last-child)::before {
  content: "";
  width: 4px;
  height: calc(100% - 41px);
  background: #AAA;
  position: absolute;
  left: 9px;
  top: 35px;
}

.flow__title {
  font-size: var(--fontsize-headline-4);
  letter-spacing: 0.02em;
  padding-bottom: 0.7rem;
  position: relative;
}

.flow__title span {
  color: var(--color-blue);
  font-size: var(--fontsize-l);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: block;
  padding-bottom: 0.2rem;
}

.flow__title::before {
  content: "";
  width: 23px;
  height: 23px;
  border: 3px solid var(--color-blue);
  background: var(--color-white);
  border-radius: 100vh;
  position: absolute;
  left: -37px;
  top: 4px;
}

.flow__item:first-child .flow__title::before {
  content: "";
  background: var(--color-blue);
}

.flow__txt {
  color: var(--color-black);
  font-size: var(--fontsize-s);
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-s);
  padding-bottom: 1.4em;
}

.flow__attention {
  color: var(--color-white);
  font-size: var(--fontsize);
  font-weight: 700;
  line-height: var(--line-height-ss);
  letter-spacing: var(--letter-spacing-s);
  text-align: center;
  margin-top: 22px;
}

@media screen and (max-width: 1250px) {
  .flow {
    padding-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  .flow__inner {
    padding: 138px 8% 8%;
  }
}
@media screen and (max-width: 500px) {
  .flow {
    padding: 0;
  }
  .flow__wrap {
    border-radius: 0;
    padding: 40px 4% 30px;
  }
  .flow__illust {
    top: 8px;
  }
  .flow__inner {
    padding: 138px 6% 8% 4%;
  }
  .flow__item:not(:last-child)::before {
    width: 2px;
    left: 10px;
  }
  .flow__title {
    font-size: var(--fontsize-headline-5);
  }
  .flow__txt {
    font-size: 0.875rem;
  }
  .flow__attention {
    margin-top: 28px;
  }
}
/* faq */
/* -------------------------------------------------- */
.faq__inner--list dl {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq__inner--acc {
  background: var(--color-white);
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.faq__inner--acc {
  margin-top: 37px;
}

.faq__inner--acc:first-child {
  margin-top: 39px;
}

.accordion,
.panel p {
  color: #000;
  font-size: var(--fontsize-m);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-s);
  line-height: var(--line-height-m);
  position: relative;
}

.accordion {
  display: block;
  border: none;
  cursor: pointer;
  transition: 0.5s ease-in;
  padding: 20px 0 20px 76px;
  margin: 0;
}

.accordion::before,
.panel p:before {
  display: inline-block;
  position: absolute;
  left: 25px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  vertical-align: middle;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  border-radius: 50%;
}

.accordion::before {
  content: "Q";
  top: 50%;
  background: #222;
  color: var(--color-white);
  transform: translateY(-50%);
}

.accordion::after {
  content: "\f055";
  font-family: "Font Awesome 5 Free";
  font-size: 23px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #ddd;
}

.accordion.active:after {
  content: "\f056";
  color: var(--color-blue);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}

.panel p {
  padding: 8px 25px 25px 76px;
  margin: 0;
}

.panel p:before {
  content: "A";
  background: var(--color-blue);
  color: var(--color-white);
}

@media screen and (max-width: 767px) {
  .faq__inner--acc {
    margin-top: 25px;
  }
  .accordion {
    padding-inline: 64px 54px;
  }
  .panel p {
    padding-inline: 64px 20px;
  }
  .accordion,
  .panel p {
    font-size: var(--fontsize);
    line-height: var(--line-height-s);
  }
  .accordion::before,
  .panel p:before {
    left: 15px;
  }
}
/* cta */
/* -------------------------------------------------- */
.cta {
  background: linear-gradient(90deg, #5800FF 0%, #5CE1E6 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://digirise.ai/wp-content/themes/digirise/asset/image/rakujobai/bg-cta.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  opacity: 0.4;
  mix-blend-mode: plus-lighter;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 0px 50px;
  gap: 25px;
}

.cta__title {
  color: var(--color-yellow);
  font-size: var(--fontsize-headline-3);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-s);
}

.cta__lead {
  color: var(--color-white);
  font-size: var(--fontsize-m);
  letter-spacing: var(--letter-spacing-l);
  margin-top: 0;
}

.cta__btn_wrap {
  display: flex;
  justify-content: center;
  gap: 28px;
}

@media screen and (max-width: 767px) {
  .cta__inner {
    padding: 45px 4% 50px;
  }
  .cta__title {
    text-align: center;
    word-break: keep-all;
  }
  .cta__lead {
    padding: 0;
  }
  .cta__btn_wrap {
    flex-direction: column;
  }
  .primaryBtn {
    border: 1px solid #FFF;
  }
}
/* cta fixed bottom*/
.cta_bottom {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.cta_bottom::before {
  display: none;
}

.cta_bottom .cta__inner {
  padding: 8px 0;
}

.cta_hidden {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .cta_bottom .cta__inner {
    padding: 2% 4%;
  }
  .cta_bottom .cta__btn_wrap {
    width: 100%;
    flex-direction: row;
    gap: 2%;
  }
  .cta_bottom .cta__btn_wrap li {
    width: 50%;
  }
  .cta_bottom a.primaryBtn, .cta_bottom a.secondaryBtn {
    width: 100%;
    font-size: var(--fontsize-s);
    padding: 11px 0 14px;
  }
  .cta_bottom a.primaryBtn {
    border: none;
  }
}/*# sourceMappingURL=common.css.map */

/* header */
body.page-id-225 header#header {
    position: absolute;
}
@media screen and (max-width: 767px) {
	body.page-id-225 header#header {
    position: fixed;
	}
}