@charset "UTF-8";

@keyframes loopWave {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes revealWave {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.is-red {
  color: #e9352e;
}

.c-flex {
  display: flex;
}

.c-justify--center {
  justify-content: center;
}

.c-justify--end {
  justify-content: flex-end;
}

.c-justify--start {
  justify-content: flex-start;
}

.c-justify--between {
  justify-content: space-between;
}

.c-align--center {
  align-items: center;
}

.c-align--start {
  align-items: flex-start;
}

.c-align--end {
  align-items: flex-end;
}

.c-direction--column {
  flex-direction: column;
}

.c-flex--wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-flex--grow1 {
  flex-grow: 1;
}

.c-flex--shrink0 {
  flex-shrink: 0;
}


/*button*/
.c-button {
  position: relative;
  display: table;
  padding: 15px 30px;
  background: #e9352e;
  border: 2px solid #e9352e;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: .5s ease-out;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .c-button {
    font-size: 20px;
  }
}

.c-button:hover {
  background: #fff;
  color: #e9352e;
  text-decoration: none;
}

/*heading*/

.c-heading--main {
  display: table;
  margin: 0 auto;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-heading--main {
    font-size: 32px;
  }
}

@media screen and (max-width: 320px) {
  .c-heading--main {
    font-size: 28px;
  }
}

.c-heading--main svg {
  display: block;
  margin: 0 auto 3px;
}

.c-heading--main.is-reveal .c-heading__wave__top, .c-heading--main.is-reveal .c-heading__wave__middle, .c-heading--main.is-reveal .c-heading__wave__bottom {
  animation: revealWave 2s forwards;
}

.c-heading--main.is-reveal .c-heading__wave__top {
  animation-delay: .3s;
}

.c-heading--main.is-reveal .c-heading__wave__middle {
  animation-delay: .15s;
}

.c-heading--main.is-reveal .c-heading__wave__bottom {
  animation-delay: 0s;
}

.c-heading--sub {
  position: relative;
  display: table;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-heading--sub {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .c-heading--sub {
    padding: 0 24px;
    font-size: 20px;
  }
}

.c-heading--sub::before, .c-heading--sub::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) skew(-30deg);
  width: 1px;
  height: 40px;
  background: #000;
}

.c-heading--sub::before {
  left: 0;
}

.c-heading--sub::after {
  right: 0;
}

.c-heading__text {
  display: block;
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.c-heading__wave__top, .c-heading__wave__middle, .c-heading__wave__bottom {
  opacity: 0;
}

/*innder*/

.c-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1060px) {
  .c-inner {
    max-width: 90%;
  }
}

@media screen and (max-width: 835px) {
  .c-inner {
    max-width: 87.2%;
  }
}

/*home*/
.p-home__section {
  padding: 67px 0 ;
}

.p-home__section:last-child {
  padding-bottom: 91px;
}

@media screen and (max-width: 835px) {
  .p-home__section {
    padding: 50px 0;
  }
}

.p-home__section.is-gray {
  background: #e0dee0;
}

.p-home__section.is-beige {
  background: #f7f4e9;
}


.p-home__section.is-cover {
    background: repeating-linear-gradient(-45deg, #c8161e, #c8161e 8px, #d24248 8px, #d24248 10px);
}

.p-home__lead {
  margin: 30px 0 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-home__lead {
    width: 100%;
    max-width: 590px;
    margin: 60px auto 0;
    text-align: left;
  }
}

.p-home__lead span {
  font-weight: 900;
}

/*particular*/
.p-particular {
	padding-bottom: 0;
}
.p-particular .c-inner {
  position: relative;
}

.p-particular .c-inner::before, .p-particular .c-inner::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-particular .c-inner::before {
  top: 110px;
  left: -3px;
  width: 100%;
  max-width: 101px;
  height: 185px;
  background-image: url("../../live/images/img_microphone.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .p-particular .c-inner::before {
    background-image: url("../../live/images/img_microphone@2x.png");
  }
}

@media screen and (max-width: 965px) {
  .p-particular .c-inner::before {
    top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-particular .c-inner::before {
    top: -30px;
    max-width: 51px;
    height: 93px;
  }
}

@media screen and (max-width: 320px) {
  .p-particular .c-inner::before {
    max-width: 41px;
    height: 83px;
  }
}

.p-particular .c-inner::after {
  top: 143px;
  right: -64px;
  width: 100%;
  max-width: 175px;
  height: 180px;
  background-image: url("../../live/images/img_mixer.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .p-particular .c-inner::after {
    background-image: url("../../live/images/img_mixer@2x.png");
  }
}

@media screen and (max-width: 1210px) {
  .p-particular .c-inner::after {
    right: -14px;
  }
}

@media screen and (max-width: 965px) {
  .p-particular .c-inner::after {
    top: 43px;
  }
}

@media screen and (max-width: 768px) {
  .p-particular .c-inner::after {
    top: -30px;
    right: -4px;
    max-width: 95px;
    height: 98px;
  }
}

@media screen and (max-width: 320px) {
  .p-particular .c-inner::after {
    max-width: 75px;
    height: 78px;
  }
}

.p-particular__img {
  position: relative;
  width: 100vw;
  height: 524px;
  margin: 84px calc(50% - 50vw) 0;
}

@media screen and (max-width: 768px) {
  .p-particular__img {
    height: 364px;
  }
}

.p-particular__img span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../../live/images/img_particular.jpg") no-repeat center center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .p-particular__img span {
    background: url("../../live/images/img_particular@2x.jpg") no-repeat center center;
    background-size: cover;
  }
}

/*results*/

.p-results {
  margin: 45px 0 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .p-results {
    margin: -57px 0 0;
  }
}

@media screen and (max-width: 1220px) {
  .p-results {
    margin: -55px 0 0;
  }
}

.p-results__item {
  width: 100%;
  padding: 55px 53px 32px;
  background: #fff;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-results__item {
    padding: 55px 25px 2px;
  }
}

.p-results__title {
  display: table;
  margin: 0 auto;
  color: #e9352e;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-results__title {
    font-size: 20px;
  }
}

.p-results__client {
  display: table;
  margin: 18px auto 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-results__client {
    font-size: 18px;
  }
}

.p-results__border_box {
  position: relative;
  padding: 19px 12px;
  border: 2px solid #808080;
}

.p-results__list + .p-results__border_box {
  margin-top: 31px;
}

.p-results__border_box dt {
  position: absolute;
  top: -12px;
  left: 12px;
  padding: 0 8px;
  background: #fff;
  color: #808080;
  font-weight: 700;
}

.p-results__border_box dd span {
  font-size: 17px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-results__border_box dd span {
    font-size: 15px;
  }
}

.p-results__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0 0;
}

.p-results__contents2 {
  margin: 40px 0 0;
}

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

.p-results__contents__item {
    width: 48%;
    flex-basis: 48%;
    margin-bottom:  15px;
}
.p-results__contents__item:last-child {
    width: 100%;
    flex-basis: 100%;
}

@media screen and (max-width: 768px) {
  .p-results__contents__item {
    width: 100%;
    flex-basis: 100%;
  }
}

.p-results__heading {
  display: block;
  padding: 0 0 7px;
  border-bottom: 1px solid #808080;
  color: #808080;
  font-weight: 700;
  line-height: 1.1;
}

* + .p-results__heading {
  margin-top: 32px;
}

.p-results__list + .p-results__heading {
  margin-top: 32px;
}

.p-results__list {
  list-style: none;
  padding-left: 0 !important;
}

.p-results__list__item {
  position: relative;
  padding: 0 0 0 1em;
}

.p-results__list__item::before {
  content: "";
  position: absolute;
/*  top: 11px;*/
  /* top: 9px; */
  top: 8px;
  left: 0;
  /* width: 8px;
  height: 8px; */
  width: 6px;
  height: 6px;
  background: #808080;
  border-radius: 50px;
}

.p-results__img {
}
.p-results__img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.p-results__img figcaption {
    text-align: center;
}

* + .p-results__img {
  margin-top: 26px;
}

.p-results__img2 {
	border: 1px solid #000;
	width: 80%;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-results__img {
    margin-right: auto;
    margin-left: auto;
  }
}

.p-results__note {
  margin: 32px 0 0;
}

@media screen and (max-width: 1220px) {
  .p-results.with-arrow .slick-list {
    margin-bottom: 100px;
  }
}

.p-results .slick-prev, .p-results .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 49px;
  height: 49px;
  border: 2px solid #808080;
  background: #fff;
  border-radius: 50px;
  z-index: 2;
}

@media screen and (max-width: 1220px) {
  .p-results .slick-prev, .p-results .slick-next {
    top: auto;
    bottom: -70px;
    transform: none;
  }
}

.p-results .slick-prev::after, .p-results .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-results .slick-prev {
  left: -97px;
}

@media screen and (max-width: 1220px) {
  .p-results .slick-prev {
    left: calc(120 / 768 * 100vw);
  }
}

.p-results .slick-prev::after {
  left: 46%;
  background-image: url("../../live/images/ico_arrow_left.svg");
}

.p-results .slick-next {
  right: -97px;
}

@media screen and (max-width: 1220px) {
  .p-results .slick-next {
    right: calc(120 / 768 * 100vw);
  }
}

.p-results .slick-next::after {
  left: 56%;
  background-image: url("../../live/images/ico_arrow_right.svg");
}


/*example*/

.p-example {
  padding-bottom: 67px;
}

.p-example .c-inner {
  position: relative;
}

.p-example .c-inner::before, .p-example .c-inner::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .p-example .c-inner::before {
    top: -40px;
    left: 0;
    max-width: 95px;
    height: 101px;
  }
}

@media screen and (max-width: 1275px) {
  .p-example .c-inner::after {
    right: 0;
    bottom: -140px;
  }
}

#contents .c-inner .slash {
    font-family:'Noto Sans Japanese' ;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 32px;
}
#contents .c-inner .slash span {
    position: relative;
    display: inline-block;
    padding: 0 56px;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1.4;
}
#contents .c-inner .slash span::before, #contents .c-inner .slash span::after{
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 32px;
    height: 1px;
    background-color: #c8161e;
}
#contents .c-inner .slash span::after {
    right: 0;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}
#contents .c-inner .slash span::before {
    left: 0;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}
@media screen and (max-width: 768px) {
    #contents .c-inner .slash span {
        font-size: 22px;
    }
}
@media screen and (max-width: 460px) {
    #contents .c-inner .slash span {
        font-size: 20px;
    }
}
@media screen and (max-width: 320px) {
    #contents .c-inner .slash span {
        font-size: 18px;
    }
}

/* Cover */
#contents .p-cover{
    width: 100vw;
    margin: 0 calc(50% - 50vw) 0;
    clear: both;
    color: #fff;
}
#contents .p-cover .c-inner h2 {
    font-size: 40px;
    font-family:'Noto Sans Japanese' ;
    font-weight: 700;
    display: table;
    margin: 0 auto;
}
#contents .p-cover .c-inner h2 span {
    display: table-cell;
}
#contents .p-cover .c-inner h2 span::after {
    width: 29px;
    height: 24px;
    background-image: url("../../live/images/ico_waves.svg");
    display: inline-block;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 10px;
}
#contents .p-cover .c-inner h2 span::before {
    width: 29px;
    height: 24px;
    background-image: url("../../live/images/ico_waves.svg");
    display: inline-block;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
    transform: rotate(180deg); 
}

#contents .p-cover .c-inner p {
    text-align: center;
    position: relative;
    font-size: 1.2em;
}
#contents .p-cover .c-inner p::after {
    position: absolute;
    top: -100%;
    right: 0;
    width: 200px;
    height: 132px;
    background-image: url("../../live/images/img_camera.png");
    display: block;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
}
#contents .p-cover .c-inner p::before {
    position: absolute;
    top: -200%;
    left: 0;
    width: 102px;
    height: 187px;
    background-image: url("../../live/images/img_microphone.png");
    display: block;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    #contents .p-cover .c-inner p::after {
        background-image: url("../../live/images/img_camera@2x.png");
    }
    #contents .p-cover .c-inner p::before {
        background-image: url("../../live/images/img_microphone@2x.png");
    }
}

@media screen and (max-width: 1024px) {
    #contents .p-cover .c-inner p::after {
        top: -50%;
    }
    #contents .p-cover .c-inner p::before {
        top: -100%;
    }
}
@media screen and (max-width: 768px) {
    #contents .p-cover .c-inner h2 {
        font-size: 24px;
    }
    #contents .p-cover .c-inner p::after {
        width: 160px;
        height: 106px;
    }
    #contents .p-cover .c-inner p::before {
        width: 82px;
        height: 150px;
    }
}
@media screen and (max-width: 460px) {
    #contents .p-cover .c-inner h2 {
        font-size: 24px;
    }
    #contents .p-cover .c-inner h2 span {
        position: relative;
    }
    #contents .p-cover .c-inner h2 span::after {
        position: absolute;
        right: 0;
        top: 10%;
    }
    #contents .p-cover .c-inner h2 span::before {
        position: absolute;
        left: 0;
        top: 10%;
    }
    #contents .p-cover .c-inner p::after {
        width: 120px;
        height: 80px;
        top: 100%;
    }
    #contents .p-cover .c-inner p::before {
        width: 62px;
        height: 113px;
        top: -200%;
    }
}
@media screen and (max-width: 320px) {
    #contents .p-cover .c-inner p::after {
        width: 80px;
        height: 53px;
        top: 100%;
    }
    #contents .p-cover .c-inner p::before {
        width: 41px;
        height: 75px;
        top: -200%;
    }
}
@media screen and (max-width: 667px) and (orientation: landscape) {
    #contents .p-cover .c-inner h2 {
        font-size: 24px;
    }
    #contents .p-cover .c-inner h2 span {
        position: relative;
    }
    #contents .p-cover .c-inner h2 span::after {
        position: absolute;
        right: 0;
        top: 10%;
    }
    #contents .p-cover .c-inner h2 span::before {
        position: absolute;
        left: 0;
        top: 10%;
    }
    #contents .p-cover .c-inner p::after {
        width: 120px;
        height: 80px;
    }
    #contents .p-cover .c-inner p::before {
        width: 62px;
        height: 113px;
    }
}



/* Plan */
#contents .p-plan{
    width: 100vw;
    margin: 0 calc(50% - 50vw) 0;
    clear: both;
}
#contents .p-plan p.desc{
    text-align: center;
}
#contents .p-plan .p-plan__wrap{
    margin-top: 24px;
}
#contents .p-plan .p-plan__wrap__item{
    padding: 20px;
    background-color: #fff;
    width: 30%;
    flex-basis: 30%;
}
#contents .p-plan .p-plan__wrap__item:last-child{
    margin-bottom: 0;
}
#contents .p-plan .p-plan__wrap__item h3{
    border-top: 1px #c8161e solid;
    border-bottom: 1px #c8161e solid;
    font-size: 1.2em;
    font-family:'Noto Sans Japanese' ;
    font-weight: 700;
    text-align: center;
    padding: 5px 8px;
}
#contents .p-plan .p-plan__wrap__item figure{
    margin: 20px auto 0;
    display: block;
    text-align: center;
}
@media screen and (max-width: 460px) {
    #contents .p-plan p.desc{
        text-align: left;
    }
    #contents .p-plan p.desc br{
        display: none;
    }
    #contents .p-plan .p-plan__wrap__item{
        width: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 667px) and (orientation: landscape) {
    #contents .p-plan .p-plan__wrap__item{
        width: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

/*flow*/

.p-flow {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 0;
    clear: both;
}

.p-flow__contents {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1227px) {
  .p-flow__contents {
    flex-direction: column;
    max-width: 90%;
  }
}

@media screen and (max-width: 1227px) {
  .p-flow__contents::before {
    order: 2;
    max-width: 165px;
    height: 408px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__contents::before {
    max-width: 95px;
    height: 238px;
  }
}

.p-flow__annotation {
  text-align: center;
  margin: 10px auto;
  font-size: 0.9em;
}

@media screen and (max-width: 414px) {
  .p-flow__annotation {
    margin-top: 24px;
  }
}

.p-flow__list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding-right: 59px;
}

@media screen and (max-width: 1227px) {
  .p-flow__list {
    order: 1;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__list {
    display: block;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.p-flow__list__item {
  position: relative;
  width: 100%;
  max-width: calc((100% - 144px) / 3);
  margin: 0 0 24px;
  padding: 37px 0 37px 15px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .p-flow__list__item {
    max-width: 552px;
    margin: 0 auto 56px;
  }
}

@media screen and (max-width: 414px) {
  .p-flow__list__item {
    margin: 0 auto 48px;
  }
}

.p-flow__list__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -59px;
  width: 59px;
  height: 100%;
  background: linear-gradient(to bottom left, transparent 50%, #fff 50%) no-repeat top left/100% 50%, linear-gradient(to top left, transparent 50%, #fff 50%) no-repeat bottom left/100% 50%;
}

@media screen and (max-width: 768px) {
  .p-flow__list__item::after {
    top: auto;
    right: auto;
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    border-top: 59px solid #fff;
    border-right: 276px solid transparent;
    border-left: 276px  solid transparent;
  }
}

@media screen and (max-width: 610px) {
  .p-flow__list__item::after {
    border-right-width: calc(276 / 610 * 100vw);
    border-left-width: calc(276 / 610 * 100vw);
  }
}

@media screen and (max-width: 414px) {
  .p-flow__list__item::after {
    bottom: -24px;
    border-top-width: 24px;
  }
}
@media screen and (max-width: 667px) and (orientation: landscape) {
  .p-flow__list__item::after {
    bottom: -24px;
    border-top-width: 24px;
  }
}

.p-flow__list__item__text {
  position: relative;
  display: block;
  padding: 0 0 0 65px;
}

@media screen and (max-width: 768px) {
  .p-flow__list__item__text {
    width: 100%;
    max-width: 255px;
    margin: 0 auto;
  }
}

.p-flow__list__item__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 58px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-flow__list__item__step {
  display: block;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
}

.p-flow__list__item__head {
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.421;
}

@media screen and (max-width: 414px) {
  .p-flow__list__item__head {
    font-size: 15px;
  }
}

@media screen and (max-width: 667px) and (orientation: landscape) {
     p-flow__list__item__head br {
        display:  none;
    }
}

.p-flow__list__item:nth-child(1) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_contact.svg");
}

.p-flow__list__item:nth-child(2) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_hearing.svg");
}

.p-flow__list__item:nth-child(3) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_estimate.svg");
}

.p-flow__list__item:nth-child(4) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_research.svg");
}

.p-flow__list__item:nth-child(5) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_plan.svg");
}

.p-flow__list__item:nth-child(6) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_test.svg");
}

.p-flow__list__item:nth-child(7) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_setting.svg");
}

.p-flow__list__item:nth-child(8) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_stream.svg");
}

.p-flow__list__item:nth-child(9) .p-flow__list__item__text::before {
  background-image: url("/live/images/ico_delivery.svg");
}

.p-flow__list__item__desc {
  opacity: 0;
  position: absolute;
  padding: 8px;
  font-size: 12px;
  line-height: 1.5em;
  color: #fff;
  border-radius: 5px;
  background-color: #e9352e;
  width: calc( 100% + 59px);
  z-index: 1;
  transition: all 0.5s 0s ease;
  top: 80%;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p-flow__list__item__desc {
    width: 80%;
    padding: 10px;
    line-height: 1.7;
    left: 10%;
  }
}

.p-flow__list__item__desc::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  border: 10px solid transparent;
  border-bottom: 10px solid #e9352e;
  margin-left: -10px;
}

.p-flow__list__item:hover .p-flow__list__item__desc {
  opacity: 1;
}

/*faq*/

.p-faq {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-bottom: 84px;
}

.p-faq__contents {
  margin: 50px 0 0;
}

.p-faq__contents__item + .p-faq__contents__item {
  margin-top: 21px;
}

.p-faq__contents__item__title {
  position: relative;
  background: repeating-linear-gradient(-55deg, #E9E8E8, #E9E8E8 1px, #fff 0, #fff 8px);
  cursor: pointer;
}

.p-faq__contents__item__title::before, .p-faq__contents__item__title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  transition: .2s ease-out;
}

.p-faq__contents__item__title::before {
  right: 45.5px;
  width: 1px;
  height: 21px;
}

@media screen and (max-width: 414px) {
  .p-faq__contents__item__title::before {
    right: 25.5px;
  }
}

.p-faq__contents__item__title::after {
  right: 35px;
  width: 21px;
  height: 1px;
}

@media screen and (max-width: 414px) {
  .p-faq__contents__item__title::after {
    right: 15.5px;
  }
}

.p-faq__contents__item__title.is-active::before {
  transform: translateY(-50%) rotate(-90deg);
}

.p-faq__contents__item__title span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 73px;
  height: 100%;
  background: #d1d1d1;
}

@media screen and (max-width: 414px) {
  .p-faq__contents__item__title span {
    max-width: 53px;
  }
}

.p-faq__contents__item__title span::before, .p-faq__contents__item__title span::after {
  content: "";
  position: absolute;
}

.p-faq__contents__item__title span::before {
  top: 50%;
  left: 33px;
  transform: translateY(-50%);
  width: 27px;
  height: 38px;
  background: url("../../live/images/img_faq_question.svg") no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 414px) {
  .p-faq__contents__item__title span::before {
    left: 23px;
    width: 22px;
    height: 33px;
  }
}

.p-faq__contents__item__title span::after {
  top: 0;
  right: -71px;
  width: 71px;
  height: 100%;
  background: linear-gradient(to top left, transparent 50%, #d1d1d1 50%) no-repeat top left/100% 100%;
}

@media screen and (max-width: 414px) {
  .p-faq__contents__item__title span::after {
    right: -31px;
    width: 31px;
  }
}

.p-faq__contents__item__answer {
  position: relative;
  display: none;
  background: #fff;
}

.p-faq__contents__item__answer.is-open {
  display: block;
}

.p-faq__contents__item__answer span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 73px;
  height: 100%;
}

.p-faq__contents__item__answer span::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 33px;
  width: 32px;
  height: 36px;
  background: url("../../live/images/img_faq_answer.svg") no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 414px) {
  .p-faq__contents__item__answer span::before {
    left: 23px;
    width: 27px;
  }
}

.p-faq__contents__item__text {
  padding: 34px 56px 34px 147px;
}

@media screen and (max-width: 414px) {
  .p-faq__contents__item__text {
    padding: 34px 46px 34px 87px;
  }
}

.p-contact .c-button {
	margin: 40px auto 0;
}
.p-contact__text {
	margin: 26px 0 0;
	text-align: center;
}


.u-text--center {
  text-align: center;
}

.u-text--left {
  text-align: left;
}

.u-text--right {
  text-align: right;
}

.u-text--justify {
  text-align: justify;
}

.u-text--nowrap {
  white-space: nowrap;
}

.u-text--lowercase {
  text-transform: lowercase;
}

.u-text--uppercase {
  text-transform: uppercase;
}

.u-text--capitalize {
  text-transform: capitalize;
}

.u-sup_text {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.u-sup_text.is-red {
  color: #e9352e;
}

@media screen and (max-width: 835px) {
  .u-pc_only {
    display: none;
  }
}

.u-sp_only {
  display: none;
}

@media screen and (max-width: 835px) {
  .u-sp_only {
    display: block;
  }
}

@media screen and (max-width: 320px) {
  .u-sp_only.is-sps {
    display: none;
  }
}
