@charset "utf-8";

/*///// SVGアニメーション /////*/

/* .flow_description_title svg {
  background-color: #fff;
  padding: 10px;
  border: 3px solid #ddd;
  border-radius: 10px;
} */

/* is-show付いたときにアニメーション */
/* mail_icon */
/* .flow_description_title.is-show svg#mail_icon path {
  opacity: 1;
  stroke-dasharray: 750;
  animation: strokeX 3s ease-in-out;
}
.flow_description_title.is-show svg#mail_icon line.mail_line1 {
  opacity: 0;
  animation: fadeInOut 0.3s ease-in-out 2.7s;
}
.flow_description_title.is-show svg#mail_icon line.mail_line2 {
  opacity: 0;
  animation: fadeInOut 0.4s ease-in-out 2.5s;
}
.flow_description_title.is-show svg#mail_icon line.mail_line3 {
  opacity: 0;
  animation: fadeInOut 0.5s ease-in-out 2.3s;
}

.flow_description_title.is-show svg#mail_return_icon path {
  opacity: 1;
  stroke-dasharray: 750;
  animation: strokeXR 3s ease-in-out;
}
.flow_description_title.is-show svg#mail_return_icon line.mail_line1 {
  opacity: 0;
  animation: fadeInOut 0.3s ease-in-out 2.7s;
}
.flow_description_title.is-show svg#mail_return_icon line.mail_line2 {
  opacity: 0;
  animation: fadeInOut 0.4s ease-in-out 2.5s;
}
.flow_description_title.is-show svg#mail_return_icon line.mail_line3 {
  opacity: 0;
  animation: fadeInOut 0.5s ease-in-out 2.3s;
}

.flow_description_title.is-show svg#negotiation_icon path,
.flow_description_title.is-show svg#negotiation_icon polygon,
.flow_description_title.is-show svg#established_icon path,
.flow_description_title.is-show svg#established_icon polygon,
.flow_description_title.is-show svg#payment_icon path,
.flow_description_title.is-show svg#payment_icon rect,
.flow_description_title.is-show svg#payment_icon line,
.flow_description_title.is-show svg#pentab_pc_icon path,
.flow_description_title.is-show svg#pentab_pc_icon rect,
.flow_description_title.is-show svg#pentab_pc_icon line,
.flow_description_title.is-show svg#pentab_pc_icon polyline,
.flow_description_title.is-show svg#pentab_pc_icon polygon,
.flow_description_title.is-show svg#adjustment_icon path {
  opacity: 1;
  stroke-dasharray: 750;
  animation: stroke 3s ease-in-out ;
}
.flow_description_title.is-show svg#established_icon polygon,
.flow_description_title.is-show svg#presen_icon path,
.flow_description_title.is-show svg#presen_icon rect {
  opacity: 1;
  stroke-dasharray: 750;
  animation: strokeFill 2.5s ease-in-out ;
} */

/* is-showなければ透明 */
/* .flow_description_title svg#mail_icon path,
.flow_description_title svg#mail_icon line.mail_line1,
.flow_description_title svg#mail_icon line.mail_line2,
.flow_description_title svg#mail_icon line.mail_line3,
.flow_description_title svg#mail_return_icon path,
.flow_description_title svg#mail_return_icon line.mail_line1,
.flow_description_title svg#mail_return_icon line.mail_line2,
.flow_description_title svg#mail_return_icon line.mail_line3,
.flow_description_title svg#negotiation_icon path,
.flow_description_title svg#negotiation_icon polygon,
.flow_description_title svg#established_icon path,
.flow_description_title svg#established_icon polygon,
.flow_description_title svg#payment_icon path,
.flow_description_title svg#payment_icon rect,
.flow_description_title svg#payment_icon line,
.flow_description_title svg#pentab_pc_icon path,
.flow_description_title svg#pentab_pc_icon rect,
.flow_description_title svg#pentab_pc_icon line,
.flow_description_title svg#pentab_pc_icon polyline,
.flow_description_title svg#pentab_pc_icon polygon,
.flow_description_title svg#adjustment_icon path,
.flow_description_title svg#presen_icon path,
.flow_description_title svg#presen_icon rect {
  opacity: 0;
} */
/* tab area */
.tab_text {
  font-size: 16px;
  padding-bottom: 30px;
}
.tab_area {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
}
.tab {
  width: 50%;
  padding: 20px 5%;
  text-align: center;
  box-sizing: border-box;
}
.tab.creator {
  position: relative;
  background-color: #777;
  opacity: 1;
  transition: .3s;
}
.tab.creator.tabActive {
  opacity: 1;
  background-color: #41B883;
  transition: .3s;
  cursor: default;
}
.tab.creator:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: calc(100% - 58%);
  bottom: -30px;
  border-style: solid;
  border-width: 0 45px 0 45px;
  border-color: #777 transparent transparent transparent;
  z-index: 100;
  transform: translateY(-30px);
  transition: .2s;
}
.tab.creator.tabActive:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: calc(100% - 58%);
  bottom: -17px;
  border-style: solid;
  border-width: 20px 45px 0 45px;
  border-color: #41B883 transparent transparent transparent;
  z-index: 100;
  transform: translateY(0px);
  transition: .2s;
}
.tab.client {
  position: relative;
  background-color: #777;
  opacity: 1;
  transition: .3s;
}
.tab.client.tabActive {
  opacity: 1;
  background-color: #6992ED;
  transition: .3s;
  cursor: default;
}
.tab.client:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: calc(100% - 58%);
  bottom: -30px;
  border-style: solid;
  border-width: 0 45px 0 45px;
  border-color: #777 transparent transparent transparent;
  z-index: 100;
  transform: translateY(-30px);
  transition: .2s;
}
.tab.client.tabActive:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: calc(100% - 58%);
  bottom: -17px;
  border-style: solid;
  border-width: 20px 45px 0 45px;
  border-color: #6992ED transparent transparent transparent;
  z-index: 100;
  transform: translateY(0px);
  transition: .2s;
}
.flow_description_title {
  font-size: 28px;
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  box-sizing: border-box;
}
.flow_description_title img {
  position: absolute;
  width: 44px;
  display: block;
  left: 3px;
  z-index: 100;
}
.flow_description_title .title_text {
  position: relative;
  color: #fff;
  padding: 4px 20px 4px 67px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.flow_description_gray .flow_description_title .title_text {
  background-color: #b71313;
}
.flow_description_white .flow_description_title .title_text {
  background-color: #222;
}
.tab.creator p,
.tab.client p {
  margin: 0 auto;
  color: #fff;
}

.tabContent {
  position: absolute;
  display: none;
}
.tabContent.tabShow {
  position: relative;
  display: block;
}
.tabContent.tabShow section:last-child {
  border-bottom: none;
}
/*  PC  */
@media screen and (min-width: 960px) {

  .page_title.child {
    font-size: 30px;
    margin-top: 54px;
  }
  .flow_description_gray {
    width: 100%;
    background-color: #fbfbfb;
    border-bottom: 1px solid #ccc;
  }
  .flow_description_white {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .flow_description_title svg {
    width: 130px;
    margin-left: 170px;
  }

  .flex {
    display: flex;
    align-items: center;
  }
}
/*  tab  */
@media screen and (max-width: 959px) and (min-width: 751px) {
  .page_title.child {
    font-size: 24px;
    margin-top: 54px;
  }
  .flow_description_gray {
    width: 100%;
    background-color: #fbfbfb;
    border-bottom: 1px solid #ccc;
  }
  .flow_description_white {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .flow_description_title {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .flow_description_title img {
    width: 36px;
  }
  .flow_description_title {
    font-size: 22px;
  }
  .flow_description_title .title_text {
    padding: 4px 20px 4px 55px;
  }
  .flow_description_title svg {
    width: 150px;
  }

  .flex {
    display: flex;
    align-items: center;
  }

  /* tab area */
  .tab_area {
    font-size: 16px;
  }
}
/*  SP  */
@media screen and (max-width: 750px) {
  .contents_inner {
    padding: 30px 0;
  }
  .page_title.child {
    font-size: 4vw;
  }
  .flow_description_gray {
    width: 100%;
    background-color: #fbfbfb;
    border-bottom: 1px solid #ccc;
  }
  .flow_description_white {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .flow_description_title {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .flow_description_title img {
    width: 6.5vw;
  }
  .flow_description_title {
    font-size: 4vw;
  }
  .flow_description_title .title_text {
    padding: 4px 5% 4px 11%;
  }
  .flow_description_title svg {
    width: 40%;
  }

  .flex {
    display: flex;
    align-items: center;
  }

  /* tab area */
  .tabContent.tabShow {
    margin-bottom: 68px;
  }
  .tab_area {
    font-size: 14px;
  }
  .tab {
    padding: 10px 5%;
  }
  .tab.creator:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: calc(100% - 65%);
    bottom: -30px;
    border-style: solid;
    border-width: 0 30px 0 30px;
    border-color: #777 transparent transparent transparent;
    z-index: 100;
    transform: translateY(-30px);
    transition: .2s;
  }
  .tab.creator.tabActive:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: calc(100% - 65%);
    bottom: -17px;
    border-style: solid;
    border-width: 20px 30px 0 30px;
    border-color: #41B883 transparent transparent transparent;
    z-index: 100;
    transform: translateY(0px);
    transition: .2s;
  }
  .tab.client:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: calc(100% - 65%);
    bottom: -30px;
    border-style: solid;
    border-width: 0 30px 0 30px;
    border-color: #777 transparent transparent transparent;
    z-index: 100;
    transform: translateY(-30px);
    transition: .2s;
  }
  .tab.client.tabActive:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: calc(100% - 65%);
    bottom: -17px;
    border-style: solid;
    border-width: 20px 30px 0 30px;
    border-color: #6992ED transparent transparent transparent;
    z-index: 100;
    transform: translateY(0px);
    transition: .2s;
  }
}


/* animation */
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes strokeX {
  0% {
    opacity: 0;
    stroke-dashoffset: 750;
    transform: translateX(-108px);
  }
  5% {
    opacity: 1;
    stroke-dashoffset: 750;
  }
  70% {
    stroke-dashoffset: 0;
    transform: translateX(-108px);
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }
}
@-webkit-keyframes strokeX {
  0% {
    opacity: 0;
    stroke-dashoffset: 750;
    transform: translateX(-108px);
  }
  5% {
    opacity: 1;
    stroke-dashoffset: 750;
  }
  70% {
    stroke-dashoffset: 0;
    transform: translateX(-108px);
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }
}
@-o-keyframes strokeX {
  0% {
    opacity: 0;
    stroke-dashoffset: 750;
    transform: translateX(-108px);
  }
  5% {
    opacity: 1;
    stroke-dashoffset: 750;
  }
  70% {
    stroke-dashoffset: 0;
    transform: translateX(-108px);
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }
}
@keyframes strokeX {
  0% {
    opacity: 0;
    stroke-dashoffset: 750;
    transform: translateX(-108px);
  }
  5% {
    opacity: 1;
    stroke-dashoffset: 750;
  }
  70% {
    stroke-dashoffset: 0;
    transform: translateX(-108px);
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }
}

@-moz-keyframes strokeXR {
  0% {
    opacity: 0;
    stroke-dashoffset: 750;
    transform: translateX(108px);
  }
  5% {
    opacity: 1;
    stroke-dashoffset: 750;
  }
  70% {
    stroke-dashoffset: 0;
    transform: translateX(108px);
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }
}
@-webkit-keyframes strokeXR {
  0% {
    opacity: 0;
    stroke-dashoffset: 750;
    transform: translateX(108px);
  }
  5% {
    opacity: 1;
    stroke-dashoffset: 750;
  }
  70% {
    stroke-dashoffset: 0;
    transform: translateX(108px);
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }
}
@-o-keyframes strokeXR {
  0% {
    opacity: 0;
    stroke-dashoffset: 750;
    transform: translateX(108px);
  }
  5% {
    opacity: 1;
    stroke-dashoffset: 750;
  }
  70% {
    stroke-dashoffset: 0;
    transform: translateX(108px);
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }
}
@keyframes strokeXR {
  0% {
    opacity: 0;
    stroke-dashoffset: 750;
    transform: translateX(108px);
  }
  5% {
    opacity: 1;
    stroke-dashoffset: 750;
  }
  70% {
    stroke-dashoffset: 0;
    transform: translateX(108px);
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }
}

@-moz-keyframes stroke {
  0% {
    stroke-dashoffset: 750;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 750;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes stroke {
  0% {
    stroke-dashoffset: 750;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke {
  0% {
    stroke-dashoffset: 750;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-moz-keyframes strokeFill {
  0% {
    stroke-dashoffset: 750;
    fill-opacity: 0;
  }
  70% {
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}
@-webkit-keyframes strokeFill {
  0% {
    stroke-dashoffset: 750;
    fill-opacity: 0;
  }
  70% {
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}
@-o-keyframes strokeFill {
  0% {
    stroke-dashoffset: 750;
    fill-opacity: 0;
  }
  70% {
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}
@keyframes strokeFill {
  0% {
    stroke-dashoffset: 750;
    fill-opacity: 0;
  }
  70% {
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

@-moz-keyframes rotateY_on {
  0% {
    transform: rotateY(90deg);
    visibility: visible;
  }
  50% {
    transform: rotateY(0deg);
    visibility: hidden;
  }
  100% {
    transform: rotateY(0deg);
    visibility: hidden;
  }
}
@-webkit-keyframes rotateY_on {
  0% {
    transform: rotateY(90deg);
    visibility: visible;
  }
  50% {
    transform: rotateY(0deg);
    visibility: hidden;
  }
  100% {
    transform: rotateY(0deg);
    visibility: hidden;
  }
}
@-o-keyframes rotateY_on {
  0% {
    transform: rotateY(90deg);
    visibility: visible;
  }
  50% {
    transform: rotateY(0deg);
    visibility: hidden;
  }
  100% {
    transform: rotateY(0deg);
    visibility: hidden;
  }
}
@keyframes rotateY_on {
  0% {
    transform: rotateY(90deg);
    visibility: visible;
  }
  50% {
    transform: rotateY(0deg);
    visibility: hidden;
  }
  100% {
    transform: rotateY(0deg);
    visibility: hidden;
  }
}

@-moz-keyframes rotateY_off {
  0% {
    transform: rotateY(0deg);
    visibility: visible;
  }
  50% {
    transform: rotateY(90deg);
    visibility: hidden;
  }
  100% {
    transform: rotateY(90deg);
    visibility: hidden;
  }
}
@-webkit-keyframes rotateY_off {
  0% {
    transform: rotateY(0deg);
    visibility: visible;
  }
  50% {
    transform: rotateY(90deg);
    visibility: hidden;
  }
  100% {
    transform: rotateY(90deg);
    visibility: hidden;
  }
}
@-o-keyframes rotateY_off {
  0% {
    transform: rotateY(0deg);
    visibility: visible;
  }
  50% {
    transform: rotateY(90deg);
    visibility: hidden;
  }
  100% {
    transform: rotateY(90deg);
    visibility: hidden;
  }
}
@keyframes rotateY_off {
  0% {
    transform: rotateY(0deg);
    visibility: visible;
  }
  50% {
    transform: rotateY(90deg);
    visibility: hidden;
  }
  100% {
    transform: rotateY(90deg);
    visibility: hidden;
  }
}