@charset "UTF-8";
/*
Theme Name: test-site
Author: ryo saya
*/
body {
  position: relative;
  width: 100%;
  background: #fff;
  color: #0B2937;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #111;
  text-decoration: none;
  letter-spacing: 2px;
}

main {
  width: 100%;
  position: relative;
}

ul {
  padding: 0;
  margin: 0;
}

table {
  border-spacing: 0;
}

em {
  font-style: normal;
}

h1 {
  font-weight: 700;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style: none;
}

.l-header {
  width: 326px;
  height: 98px;
  padding: 20px 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-header_inner img {
  width: 230px;
}

@media (max-width: 750px) {
  .l-header {
    width: 326px;
    height: 90px;
    padding: 10px 20px 0px;
  }
  .l-header_inner {
    display: block;
  }
  .l-header_inner img {
    width: 120px;
  }
}
footer {
  width: 100%;
  background-color: #F0F0F0;
  padding: 10px 20px;
}
footer .l-footer {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .l-footer img {
  width: 170px;
}
footer .l-footer p {
  font-size: 14px;
}

@media (max-width: 750px) {
  footer {
    padding: 10px 20px;
  }
  footer .l-footer p {
    font-size: 13px;
  }
}
.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.scroll-hint-shadow-wrap::after {
  background: none;
}

.scroll-hint-icon {
  top: calc(30% - 25px) !important;
  left: calc(30% - 60px) !important;
}

.c-faq__item__q {
  font-weight: 600;
  font-size: 27px;
  line-height: 1.7;
  position: relative;
  display: block;
  padding: 30px 50px 35px 80px;
  transition: all 0.3s;
  color: #0091A7;
}
.c-faq__item__q::before, .c-faq__item__q::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0091A7;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.c-faq__item__q::before {
  transform: translate(0, -50%) rotate(-180deg);
}
.c-faq__item__q::after {
  transform: translate(0, -50%) rotate(-90deg);
}
.c-faq__item__q span::before {
  content: "Q";
  font-size: 56px;
  text-align: center;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #0091A7;
  font-weight: bold;
}

.c-faq__item__a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  background-image: linear-gradient(to right, #0091A7 4px, transparent 4px);
  background-size: 11px 3px;
  background-repeat: repeat-x;
  background-position: left top;
}
.c-faq__item__a .c-faq__item__a_container {
  font-size: 20px;
  line-height: 1.8;
  position: relative;
  padding: 30px 50px 35px 80px;
}
.c-faq__item__a .c-faq__item__a_container p {
  line-height: 1.7;
}
.c-faq__item__a .c-faq__item__a_container::before {
  content: "A";
  font-size: 56px;
  text-align: center;
  position: absolute;
  left: 20px;
  top: 25px;
  color: #333;
  font-weight: bold;
}

@media (max-width: 750px) {
  .c-faq__item__q {
    font-size: 20px;
    padding: 30px 60px 35px 80px;
  }
  .c-faq__item__q span::before {
    font-size: 40px;
    top: 45%;
  }
  .c-faq__item__a {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background-image: linear-gradient(to right, #0091A7 4px, transparent 4px);
    background-size: 11px 3px;
    background-repeat: repeat-x;
    background-position: left top;
  }
  .c-faq__item__a .c-faq__item__a_container {
    font-size: 16px;
    padding: 30px 60px 35px 80px;
  }
  .c-faq__item__a .c-faq__item__a_container::before {
    font-size: 40px;
  }
}
/*アカウント作成のロードマップの表 */
.u-top__table {
  width: 100%;
  border-collapse: separate;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.u-top__table .u-top__thead {
  width: 100%;
  margin-bottom: 30px;
}
.u-top__table .u-top__thead .u-top__tr {
  width: 100%;
  display: flex;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th {
  width: 261px;
  height: 92px;
  text-align: center;
  position: relative;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) skew(15deg);
  width: 97.6%;
  height: 50%;
  background-color: #0091A7;
  z-index: -1;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) skew(-15deg);
  width: 97.6%;
  height: 50%;
  background-color: #0091A7;
  opacity: 0.6;
  z-index: -1;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.first-mark {
  width: 23%;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.first-mark::before {
  background: transparent;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.first-mark::after {
  background: transparent;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.second-mark::before {
  opacity: 0.6;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.second-mark::after {
  opacity: 0.6;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.third-mark::before {
  opacity: 0.8;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.third-mark::after {
  opacity: 0.8;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.fourth-mark {
  width: 241px;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.fourth-mark::before {
  opacity: 1;
}
.u-top__table .u-top__thead .u-top__tr .u-top__th.fourth-mark::after {
  opacity: 1;
}
.u-top__table .u-top__body {
  width: 100%;
  border-radius: 30px;
  background-color: #F0F0F0;
  display: block;
  position: relative;
  overflow: hidden;
}
.u-top__table .u-top__body .u-top__body_tr {
  display: flex;
}
.u-top__table .u-top__body .u-top__body_tr .u-top__body_th {
  background-color: #0B2937;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 230px;
  padding: 0px 20px;
}
.u-top__table .u-top__body .u-top__body_tr .u-top__body_th p {
  padding: 30px 0;
  width: 94%;
  height: 100%;
  border-bottom: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.u-top__table .u-top__body .u-top__body_tr .u-top__body_td {
  width: 25.6%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #0091A7;
}
.u-top__table .u-top__body .u-top__body_tr .u-top__body_td p {
  padding: 45px 0;
  width: 94%;
  height: 100%;
  border-bottom: 2px solid #0091A7;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.u-top__table .u-top__body .u-top__body_tr .u-top__body_td:nth-of-type(3) {
  border-right: none;
}
.u-top__table .u-top__body .u-top__body_tr.first-mark .u-top__body_td {
  position: relative;
}
.u-top__table .u-top__body .u-top__body_tr.first-mark .u-top__body_td p {
  font-size: 20px;
  font-weight: 600;
  padding: 40px 0 30px;
  justify-content: center;
}
.u-top__table .u-top__body .u-top__body_tr.first-mark .u-top__body_td::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 2px;
  height: 25px;
  background-color: #F0F0F0;
  z-index: 1;
}
.u-top__table .u-top__body .u-top__body_tr.fourth-mark .u-top__body_th p {
  border-bottom: none;
}
.u-top__table .u-top__body .u-top__body_tr.fourth-mark .u-top__body_td {
  position: relative;
}
.u-top__table .u-top__body .u-top__body_tr.fourth-mark .u-top__body_td p {
  border-bottom: none;
}
.u-top__table .u-top__body .u-top__body_tr.fourth-mark .u-top__body_td::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 2px;
  height: 25px;
  background-color: #F0F0F0;
  z-index: 1;
}

@media (max-width: 750px) {
  .u-top__table {
    margin: 0 30px 20px;
    width: 724px;
  }
  .u-top__table .u-top__thead {
    width: 100%;
    margin-bottom: 20px;
  }
  .u-top__table .u-top__thead .u-top__tr {
    width: 100%;
    display: flex;
  }
  .u-top__table .u-top__thead .u-top__tr .u-top__th {
    width: 215px;
    height: 76px;
    font-size: 20px;
    margin-bottom: 15px;
    margin-right: 3px;
  }
  .u-top__table .u-top__thead .u-top__tr .u-top__th.first-mark {
    width: 16%;
  }
  .u-top__table .u-top__body .u-top__body_tr {
    display: flex;
  }
  .u-top__table .u-top__body .u-top__body_tr .u-top__body_th {
    width: 16%;
    padding: 0px 10px;
  }
  .u-top__table .u-top__body .u-top__body_tr .u-top__body_th p {
    padding: 20px 0;
    width: 100%;
    font-size: 16px;
  }
  .u-top__table .u-top__body .u-top__body_tr .u-top__body_td {
    width: 27.9%;
    padding: 0 10px;
  }
  .u-top__table .u-top__body .u-top__body_tr .u-top__body_td p {
    padding: 10px;
    font-size: 16px;
  }
  .u-top__table .u-top__body .u-top__body_tr.first-mark .u-top__body_td {
    position: relative;
  }
  .u-top__table .u-top__body .u-top__body_tr.first-mark .u-top__body_td p {
    font-size: 18px;
    padding: 30px 0 20px;
  }
  .u-top__table .u-top__body .u-top__body_tr.first-mark .u-top__body_td::after {
    height: 20px;
  }
  .u-top__table .u-top__body .u-top__body_tr.fourth-mark .u-top__body_th p {
    border-bottom: none;
    padding: 60px 0;
  }
  .u-top__table .u-top__body .u-top__body_tr.fourth-mark .u-top__body_td::after {
    height: 20px;
  }
}
/*他社比較の表 */
.u-bottom__table {
  width: 100%;
  border-collapse: separate;
  border-radius: 30px;
  background-color: #F0F0F0;
  position: relative;
  overflow: hidden;
}
.u-bottom__table .u-bottom__thead {
  background-color: #0B2937;
  color: #fff;
  height: 125px;
  display: flex;
  border-radius: 30px 30px 0 0;
  justify-content: center;
  align-items: center;
}
.u-bottom__table .u-bottom__thead .u-bottom__tr {
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-bottom__table .u-bottom__thead .u-bottom__tr .u-bottom__th {
  width: 166px;
  position: relative;
  font-size: 1.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.u-bottom__table .u-bottom__thead .u-bottom__tr .u-bottom__th::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background-color: #fff;
  z-index: 1;
}
.u-bottom__table .u-bottom__thead .u-bottom__tr .u-bottom__th:nth-of-type(1)::after {
  content: "";
  width: 0;
  height: 0;
}
.u-bottom__table .u-bottom__body {
  height: 125px;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr {
  display: flex;
  width: 100%;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_th {
  width: 170px;
  background-color: #0B2937;
  padding: 0 20px;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_th p {
  padding: 45px 0;
  height: 100%;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15em;
  color: #fff;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_th.first-th p {
  border-top: 1px solid #fff;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td {
  width: 166px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #0091A7;
  color: #0091A7;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td p {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #0091A7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4em;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td:nth-of-type(5) {
  border-right: none;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td:nth-of-type(5) p {
  font-size: 1.2em;
  font-weight: 600;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td:nth-of-type(5) p span {
  font-size: 1.6em;
  margin-top: -8px;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(1) .u-bottom__body_td {
  background-color: #CCE9ED;
  position: relative;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(1) .u-bottom__body_td::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 2px;
  height: 18px;
  background-color: #CCE9ED;
  z-index: 1;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(1) .u-bottom__body_td:nth-of-type(5)::after {
  content: "";
  width: 0;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(1) .u-bottom__body_td:nth-of-type(5) p {
  font-size: 1.4em;
  font-weight: 800;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(1) .u-bottom__body_td:nth-of-type(5) p span {
  font-size: 2em;
  margin-top: -12px;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_th {
  border-radius: 0 0 0 30px;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_th p {
  border-bottom: none;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_td {
  position: relative;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_td p {
  border-bottom: none;
}
.u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_td::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 2px;
  height: 18px;
  background-color: #F0F0F0;
  z-index: 1;
}

@media (max-width: 750px) {
  .u-bottom__table {
    margin: 0 30px 20px;
  }
  .u-bottom__table .u-bottom__thead {
    height: 97px;
  }
  .u-bottom__table .u-bottom__thead .u-bottom__tr .u-bottom__th {
    width: 120px;
    font-size: 15px;
  }
  .u-bottom__table .u-bottom__thead .u-bottom__tr .u-bottom__th::after {
    width: 1px;
    height: 70px;
  }
  .u-bottom__table .u-bottom__body {
    height: 125px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr {
    display: flex;
    width: 100%;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_th {
    width: 120px;
    padding: 0 10px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_th p {
    padding: 45px 0;
    font-size: 15px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td {
    width: 120px;
    padding: 0 3px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td p {
    font-size: 25px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td:nth-of-type(5) {
    border-right: none;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td:nth-of-type(5) p {
    font-size: 18px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr .u-bottom__body_td:nth-of-type(5) p span {
    font-size: 24px;
    margin-top: -8px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(1) .u-bottom__body_td::after {
    right: -1px;
    width: 1px;
    height: 18px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(1) .u-bottom__body_td:nth-of-type(5) p {
    font-size: 20px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(1) .u-bottom__body_td:nth-of-type(5) p span {
    font-size: 38px;
    margin-top: -10px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_th {
    border-radius: 0 0 0 30px;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_th p {
    border-bottom: none;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_td {
    position: relative;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_td p {
    border-bottom: none;
  }
  .u-bottom__table .u-bottom__body .u-bottom__body_tr:nth-of-type(5) .u-bottom__body_td::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 2px;
    height: 18px;
    background-color: #F0F0F0;
    z-index: 1;
  }
}
/*改行位置変更*/
.br-sp {
  display: none;
}

@media (max-width: 750px) {
  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
}
/*黄色下線*/
.yellow-line {
  display: inline;
  background: linear-gradient(transparent 65%, #FFDE59 65%);
}

/*カクカクアニメーション*/
.swing {
  animation-name: decoSwing;
  animation-duration: 2400ms;
  animation-timing-function: steps(2, end);
  animation-iteration-count: infinite;
}

@keyframes decoSwing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
/*タイトル 装飾*/
.p-heading {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 auto;
}

.p-leading {
  text-align: center;
  margin: 0 auto 10px;
  width: 90%;
}
.p-leading p {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 1.6;
}

@media (max-width: 750px) {
  .p-heading {
    font-size: 40px;
  }
  .p-leading p {
    font-size: 24px;
  }
}
/*FV セクション*/
.p-fv-section {
  position: relative;
  width: 100%;
}
.p-fv-section .fv-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 37%;
  z-index: -2;
}
.p-fv-section .fv-image {
  position: absolute;
  width: 52%;
  top: 120px;
  right: 110px;
  z-index: -1;
}
.p-fv-section .fv-heart {
  position: absolute;
  top: 22%;
  left: 63%;
  z-index: 1;
  width: 90px;
}
.p-fv-section .fv-good {
  position: absolute;
  top: 34%;
  right: 9%;
  z-index: 1;
  width: 115px;
}
.p-fv-section .fv-search {
  position: absolute;
  top: 25.5%;
  left: 59.5%;
  z-index: 1;
  width: 87px;
}
.p-fv-section .fv-share {
  position: absolute;
  top: 42%;
  left: 75%;
  z-index: 1;
  width: 140px;
}
.p-fv-section .fv-inner {
  margin-left: 15%;
  padding-top: 110px;
  margin-bottom: 140px;
}
.p-fv-section .fv-inner-leading {
  margin-bottom: 30px;
  font-size: 25px;
}
.p-fv-section .fv-inner-leading span {
  letter-spacing: 2px;
}
.p-fv-section .fv-inner-heading {
  margin-bottom: 40px;
  font-size: 43px;
  line-height: 1.7;
  padding-bottom: 10px;
}
.p-fv-section .fv-inner-heading span {
  letter-spacing: 4px;
}
.p-fv-section .fv-inner-button {
  width: 35%;
  border-radius: 30px;
  background-color: #FF470A;
  padding: 30px 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px 2px #fac1bd;
}
.p-fv-section .fv-inner-button p {
  font-size: 16px;
  padding-bottom: 15px;
  font-weight: 600;
}
.p-fv-section .fv-inner-button .ctr-button {
  display: inline-block;
  width: 62%;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 15px 20px 15px 15px;
  position: relative;
  text-align: center;
  color: #fff;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 20px;
  transition: all ease 0.3s;
}
.p-fv-section .fv-inner-button .ctr-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: transparent;
  z-index: 1;
  transition: all ease 0.3s;
}
.p-fv-section .fv-inner-button .ctr-button:hover {
  background-color: #fff;
  color: #FF470A;
}
.p-fv-section .fv-inner-button .ctr-button:hover::after {
  border-right: 1px solid #FF470A;
  border-bottom: 1px solid #FF470A;
  right: 15px;
}
.p-fv-section .fv-bottom-pr {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
}
.p-fv-section .fv-bottom-pr .fv-bottom-pr_image_01 {
  width: 303px;
  margin: 0 15px;
}
.p-fv-section .fv-bottom-pr .fv-bottom-pr_image_02 {
  width: 390px;
  margin: 0 25px;
}
.p-fv-section .fv-company-box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p-fv-section .fv-company-box_inner {
  margin: 0 10px;
}

@media (max-width: 1170px) {
  .p-fv-section .fv-decoration {
    width: 60%;
  }
  .p-fv-section .fv-image {
    position: absolute;
    width: 95%;
    max-width: 470px;
    top: 100px;
    left: 20%;
    z-index: -1;
  }
  .p-fv-section .fv-heart {
    position: absolute;
    top: 25%;
    left: 42%;
    z-index: 1;
    width: 40px;
  }
  .p-fv-section .fv-good {
    position: absolute;
    top: 33%;
    left: 61%;
    z-index: 1;
    width: 45px;
  }
  .p-fv-section .fv-inner {
    margin: 0 auto 40px;
    padding-top: 65px;
    width: 90%;
  }
  .p-fv-section .fv-inner-leading {
    margin-bottom: 20px;
    font-size: 1em;
  }
  .p-fv-section .fv-inner-leading span {
    letter-spacing: 2px;
  }
  .p-fv-section .fv-inner-heading {
    margin-bottom: 20px;
    font-size: 1.6em;
    line-height: 1.7;
  }
  .p-fv-section .fv-inner-heading span {
    letter-spacing: 4px;
  }
  .p-fv-section .fv-inner-button {
    width: 100%;
    padding: 30px 20px;
    margin-top: 280px;
  }
  .p-fv-section .fv-inner-button p {
    font-size: 0.9em;
    padding-bottom: 15px;
  }
  .p-fv-section .fv-inner-button .ctr-button {
    width: 82%;
    border-radius: 30px;
    padding: 15px 0 15px 0;
    text-align: center;
    font-size: 1.1em;
  }
}
@media (max-width: 750px) {
  .p-fv-section {
    position: relative;
    width: 100%;
  }
  .p-fv-section .fv-decoration {
    width: 60%;
  }
  .p-fv-section .fv-image {
    position: absolute;
    width: 95%;
    max-width: 370px;
    top: 240px;
    left: -25px;
    z-index: -1;
  }
  .p-fv-section .fv-heart {
    position: absolute;
    top: 34%;
    left: 163px;
    z-index: 1;
    width: 40px;
  }
  .p-fv-section .fv-good {
    position: absolute;
    top: 40%;
    left: 310px;
    z-index: 1;
    width: 45px;
  }
  .p-fv-section .fv-search {
    position: absolute;
    top: 34.5%;
    left: 28%;
    z-index: 1;
    width: 47px;
  }
  .p-fv-section .fv-share {
    position: absolute;
    top: 44%;
    left: 55%;
    z-index: 1;
    width: 70px;
  }
  .p-fv-section .fv-inner {
    margin: 0 auto 40px;
    padding-top: 65px;
    width: 90%;
  }
  .p-fv-section .fv-inner-leading {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .p-fv-section .fv-inner-leading span {
    letter-spacing: 2px;
  }
  .p-fv-section .fv-inner-heading {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.7;
  }
  .p-fv-section .fv-inner-heading span {
    letter-spacing: 4px;
  }
  .p-fv-section .fv-inner-button {
    width: 100%;
    padding: 30px 20px;
    margin-top: 280px;
  }
  .p-fv-section .fv-inner-button p {
    font-size: 14px;
    padding-bottom: 15px;
  }
  .p-fv-section .fv-inner-button .ctr-button {
    width: 82%;
    border-radius: 30px;
    padding: 15px 0 15px 0;
    text-align: center;
    font-size: 16px;
  }
}
/*WORRIES セクション*/
.p-worries-section {
  width: 100%;
  position: relative;
  padding: 0 0 80px;
  background-color: #F0F0F0;
  margin-top: 240px;
}
.p-worries-section-top {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.p-worries-section-top img {
  width: 100%;
}
.p-worries-section-bottom {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.p-worries-section-bottom img {
  width: 100%;
}
.p-worries-section .p-worries-head {
  font-size: 40px;
  color: #0091A7;
  max-width: 1000px;
  width: 85%;
  margin: -40px auto 0;
}
.p-worries-section .p-worries-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px auto 0;
  max-width: 826px;
  width: 90%;
}
.p-worries-section .p-worries-box-item {
  width: 249px;
  margin-bottom: 20px;
}
.p-worries-section .p-worries-box-item img {
  width: 100%;
}

@media (max-width: 750px) {
  .p-worries-section {
    padding: 0 0 40px;
    margin-top: 140px;
  }
  .p-worries-section .p-worries-head {
    margin: -40px auto 0;
  }
  .p-worries-section .p-worries-box {
    width: 90%;
    justify-content: center;
  }
  .p-worries-section .p-worries-box-item {
    width: 45%;
    margin: 0 0 20px;
  }
  .p-worries-section .p-worries-box-item:nth-of-type(2) {
    margin: 0 0 20px 20px;
  }
  .p-worries-section .p-worries-box-item:nth-of-type(4) {
    order: 3;
  }
  .p-worries-section .p-worries-box-item:nth-of-type(3) {
    order: 4;
    margin: 0 0 20px 20px;
  }
  .p-worries-section .p-worries-box-item:nth-of-type(5) {
    order: 5;
  }
  .p-worries-section .p-worries-box-item:nth-of-type(6) {
    order: 6;
    margin: 0 0 20px 20px;
  }
}
/*SUCCESS セクション*/
.p-success-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 180px 0 180px;
  background-color: #0091A7;
}
.p-success-section .p-success-lead {
  text-align: center;
  color: #fff;
}
.p-success-section .p-success-lead-point {
  margin: 0 auto 30px;
  width: 112px;
}
.p-success-section .p-success-lead .p-heading {
  opacity: 0.9;
}
.p-success-section .p-success-lead .p-leading {
  opacity: 0.9;
}
.p-success-section .p-success-box {
  margin: 60px auto 60px;
  max-width: 826px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-success-section .p-success-box-item {
  width: 210px;
  height: 210px;
  margin: 0 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #ededed;
  box-shadow: 3px 3px 8px #222222;
}
.p-success-section .p-success-box-item p {
  font-size: 27px;
}
.p-success-section .p-success-box-item p span {
  display: inline;
  background: linear-gradient(transparent 60%, #FFDE59 60%);
  font-weight: 600;
  padding-bottom: 10px;
}
.p-success-section .p-success-message {
  max-width: 826px;
  width: 90%;
  margin: 0 auto 40px;
}
.p-success-section .p-success-message p {
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1.6;
}
.p-success-section .p-success-tips {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.p-success-section .p-success-tips-head {
  width: 100%;
  text-align: center;
  background-color: #FFDE59;
  color: #0091A7;
  font-size: 24px;
  padding: 10px 0;
  border-radius: 50px;
  margin-bottom: 20px;
}
.p-success-section .p-success-tips-box {
  width: 100%;
  background-color: #fff;
  padding: 50px 0;
  border-radius: 50px;
  height: 100%;
}
.p-success-section .p-success-tips-box-items {
  display: flex;
  justify-content: center;
}
.p-success-section .p-success-tips-box-items .p-success-tips-item {
  width: 33%;
  padding: 0 40px;
}
.p-success-section .p-success-tips-box-items .p-success-tips-item-head {
  font-size: 27px;
  color: #0091A7;
  text-align: center;
  margin: 0 auto 30px;
}
.p-success-section .p-success-tips-box-items .p-success-tips-item p {
  font-size: 20px;
  line-height: 1.4;
}
.p-success-section .p-success-tips-box-items .p-success-tips-item:nth-of-type(1) {
  background-image: linear-gradient(to bottom, #0091A7 3px, transparent 3px);
  background-size: 2px 15px;
  background-repeat: repeat-y;
  background-position: right top;
}
.p-success-section .p-success-tips-box-items .p-success-tips-item:nth-of-type(2) {
  background-image: linear-gradient(to bottom, #0091A7 3px, transparent 3px);
  background-size: 2px 15px;
  background-repeat: repeat-y;
  background-position: right top;
}
.p-success-section .p-success-hand {
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 25%;
  z-index: 10;
}
.p-success-section .p-success-hand img {
  width: 100%;
}

@media (max-width: 1300px) {
  .p-success-section {
    padding: 100px 0;
  }
  .p-success-section .p-success-hand {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 14.5%;
    z-index: 10;
  }
  .p-success-section .p-success-hand img {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .p-success-section {
    padding: 100px 0;
  }
  .p-success-section .p-success-lead-point {
    margin: 0 auto 20px;
    width: 80px;
  }
  .p-success-section .p-success-box {
    margin: 20px auto 20px;
    width: 90%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .p-success-section .p-success-box-item {
    width: 140px;
    height: 140px;
    margin: 0 10px 20px;
  }
  .p-success-section .p-success-box-item p {
    font-size: 16px;
  }
  .p-success-section .p-success-box-item p span {
    padding-bottom: 5px;
  }
  .p-success-section .p-success-message {
    width: 90%;
    margin: 0 auto 30px;
  }
  .p-success-section .p-success-message p {
    font-size: 16px;
  }
  .p-success-section .p-success-tips {
    width: 90%;
  }
  .p-success-section .p-success-tips-head {
    font-size: 24px;
    padding: 20px 0;
  }
  .p-success-section .p-success-tips-box {
    padding: 0 0;
    height: 100%;
  }
  .p-success-section .p-success-tips-box-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 30px;
  }
  .p-success-section .p-success-tips-box-items .p-success-tips-item {
    width: 100%;
    padding: 10px 0 30px;
    margin-bottom: 20px;
  }
  .p-success-section .p-success-tips-box-items .p-success-tips-item-head {
    font-size: 20px;
    margin: 0 auto 10px;
  }
  .p-success-section .p-success-tips-box-items .p-success-tips-item p {
    font-size: 16px;
    line-height: 1.4;
  }
  .p-success-section .p-success-tips-box-items .p-success-tips-item:nth-of-type(1) {
    background-image: linear-gradient(to right, #0091A7 3px, transparent 3px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .p-success-section .p-success-tips-box-items .p-success-tips-item:nth-of-type(2) {
    background-image: linear-gradient(to right, #0091A7 3px, transparent 3px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .p-success-section .p-success-hand {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 27%;
    z-index: 10;
  }
  .p-success-section .p-success-hand img {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-success-section {
    padding: 100px 0;
  }
  .p-success-section .p-success-hand {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 33%;
    z-index: 10;
  }
  .p-success-section .p-success-hand img {
    width: 100%;
  }
}
/*MIDDLE CTA セクション*/
.p-cta-middle {
  width: 100%;
  position: relative;
  padding: 200px 0 160px;
  background-image: url(./image/cta-middle-back.png);
  background-size: 100% 100%;
  background-position: left;
  margin-top: -11px;
}
.p-cta-middle .p-cta-button-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.p-cta-middle .p-cta-button-container .button-cta {
  display: block;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 50px;
  border: 5px solid #ff470a;
  background-color: #fff;
  color: #ff470a;
  padding: 20px 60px 20px 60px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  transition: all ease 0.3s;
}
.p-cta-middle .p-cta-button-container .button-cta::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  right: 25px;
  border-right: 3px solid #ff470a;
  border-bottom: 3px solid #ff470a;
  transform: translateY(-50%) rotate(-45deg);
  background-color: transparent;
  z-index: 1;
}
.p-cta-middle .p-cta-button-container .button-cta:hover {
  border: 5px solid #fff;
  background-color: #ff470a;
  color: #fff;
}
.p-cta-middle .p-cta-button-container .button-cta:hover::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.p-cta-middle .p-cta-button-container-stamp {
  position: absolute;
  top: -38px;
  left: -106px;
  z-index: 0;
  width: 130px;
}
.p-cta-middle .p-cta-button-container-stamp img {
  width: 100%;
}
.p-cta-middle .p-cta-middle-image {
  margin: 40px auto 0;
  width: 452px;
  position: relative;
  overflow: visible;
}
.p-cta-middle .p-cta-middle-image img {
  width: 100%;
}
.p-cta-middle .p-cta-middle-image .p-cta-middle-point {
  position: absolute;
  width: 270px;
  z-index: 1;
  right: -200px;
  top: -10px;
}

@media (max-width: 750px) {
  .p-cta-middle {
    padding: 120px 0 80px;
    background-image: url(./image/cta-back-sp.png);
    margin-top: -11px;
  }
  .p-cta-middle .p-cta-button-container {
    margin: 60px auto 0;
  }
  .p-cta-middle .p-cta-button-container .button-cta {
    max-width: 95%;
    padding: 20px 20px 20px 10px;
    font-size: 20px;
  }
  .p-cta-middle .p-cta-button-container .button-cta::after {
    width: 11px;
    height: 11px;
    top: 50%;
    right: 15px;
    border-right: 3px solid #ff470a;
    border-bottom: 3px solid #ff470a;
  }
  .p-cta-middle .p-cta-button-container-stamp {
    top: -108px;
    left: 50%;
    transform: translateX(-50%);
    width: 143px;
  }
  .p-cta-middle .p-cta-middle-image {
    margin: 160px auto 0;
    width: 85%;
  }
  .p-cta-middle .p-cta-middle-image .p-cta-middle-point {
    left: 36%;
    top: -120px;
    max-width: 242px;
    width: 70%;
  }
}
/*SERVICE セクション*/
.p-service-section {
  width: 100%;
  position: relative;
  padding: 80px 0;
  background-color: #FFDE59;
}
.p-service-section .p-heading {
  text-align: center;
  margin: 0 auto 60px;
}
.p-service-section .p-service-content {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.p-service-section .p-service-content-prus01 {
  width: 176px;
  margin: 0 auto 10px;
}
.p-service-section .p-service-content-prus02 {
  width: 368px;
  margin: 0 auto 10px;
}
.p-service-section .p-service-content-prus02 .sp-img {
  display: none;
}
.p-service-section .p-service-content-head {
  color: #0091A7;
  text-align: center;
  font-size: 40px;
  margin: 0 auto 25px;
}
.p-service-section .p-service-content p {
  text-align: center;
  font-size: 24px;
}
.p-service-section .p-service-content-item {
  padding: 64px;
  background-color: #F0F0F0;
  border-radius: 50px;
  position: relative;
  overflow: visible;
  width: 100%;
  margin: 60px auto 0;
}
.p-service-section .p-service-content-item-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
}
.p-service-section .p-service-content-item-top-icon {
  width: 360px;
}
.p-service-section .p-service-content-item-top-icon img {
  width: 100%;
}
.p-service-section .p-service-content-item-top-icon.second-icon {
  width: 140px;
}
.p-service-section .p-service-content-item-top-icon.second-icon img {
  width: 100%;
}
.p-service-section .p-service-content-item-top-text {
  padding-left: 15px;
}
.p-service-section .p-service-content-item-top-text p {
  text-align: left;
  font-size: 20px;
}
.p-service-section .p-service-content-item-message {
  margin: 0 auto;
}
.p-service-section .p-service-content-item-message img {
  width: 100%;
}
.p-service-section .p-service-content-item-message .sp-img {
  display: none;
}
.p-service-section .p-service-content-item-clip {
  position: absolute;
  top: -20px;
  left: 40px;
  z-index: 1;
  width: 58px;
}
.p-service-section .p-service-content:nth-of-type(2) {
  margin: 80px auto 0;
}

@media (max-width: 750px) {
  .p-service-section {
    padding: 60px 0 45px;
  }
  .p-service-section .p-heading {
    margin: 0 auto 40px;
  }
  .p-service-section .p-service-content {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .p-service-section .p-service-content-prus01 {
    width: 176px;
    margin: 0 auto 10px;
  }
  .p-service-section .p-service-content-prus02 {
    width: 256px;
  }
  .p-service-section .p-service-content-prus02 .pc-img {
    display: none;
  }
  .p-service-section .p-service-content-prus02 .sp-img {
    display: block;
  }
  .p-service-section .p-service-content-head {
    color: #0091A7;
    text-align: center;
    font-size: 27px;
    margin: 0 auto 25px;
  }
  .p-service-section .p-service-content p {
    text-align: left;
    font-size: 16px;
  }
  .p-service-section .p-service-content-item {
    padding: 45px 0;
    background-color: #F0F0F0;
    border-radius: 50px;
    position: relative;
    overflow: visible;
    width: 100%;
    margin: 60px auto 0;
  }
  .p-service-section .p-service-content-item-top {
    flex-wrap: wrap;
    margin: 0 auto 30px;
  }
  .p-service-section .p-service-content-item-top-icon {
    width: 66px;
  }
  .p-service-section .p-service-content-item-top-icon.second-icon {
    width: 89px;
  }
  .p-service-section .p-service-content-item-top-text {
    padding: 30px 20px 0;
  }
  .p-service-section .p-service-content-item-top-text p {
    text-align: left;
    font-size: 16px;
  }
  .p-service-section .p-service-content-item-message {
    margin: 0 auto;
    width: 90%;
  }
  .p-service-section .p-service-content-item-message img {
    width: 100%;
  }
  .p-service-section .p-service-content-item-message .pc-img {
    display: none;
  }
  .p-service-section .p-service-content-item-message .sp-img {
    display: block;
  }
  .p-service-section .p-service-content-item-clip {
    position: absolute;
    top: -20px;
    left: 40px;
    z-index: 1;
    width: 58px;
  }
  .p-service-section .p-service-content:nth-of-type(2) {
    margin: 80px auto 0;
  }
}
/*WORK セクション*/
.p-work-section {
  width: 100%;
  position: relative;
  padding: 60px 0 45px;
  background-color: #CCE9ED;
}
.p-work-section .p-heading {
  padding-bottom: 40px;
  text-align: center;
  color: #0B2937;
}
.p-work-section .p-work-box {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.p-work-section .p-work-box .p-work-item {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 0 60px;
  margin-bottom: 40px;
}
.p-work-section .p-work-box .p-work-item .p-work-item-logo {
  width: 78px;
  margin: 20px auto 0;
}
.p-work-section .p-work-box .p-work-item-customer {
  width: 90%;
  max-width: 340px;
  margin: 20px auto 20px;
}
.p-work-section .p-work-box .p-work-item-customer img {
  width: 100%;
}
.p-work-section .p-work-box .p-work-item-customer:nth-last-of-type(2) {
  max-width: 168px;
}
.p-work-section .p-work-box .p-work-item-customer.company-name {
  max-width: 168px;
}
.p-work-section .p-work-box .p-work-item-head {
  font-size: 40px;
  color: #0091A7;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
.p-work-section .p-work-box .p-work-item-text {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}
.p-work-section .p-work-box .p-work-item-image {
  width: 100%;
  padding: 0 60px;
  margin-bottom: 40px;
}
.p-work-section .p-work-box .p-work-item-image img {
  width: 100%;
}
.p-work-section .p-work-box .p-work-item-image .sp-img {
  display: none;
}
.p-work-section .p-work-box .p-work-item-message {
  width: 100%;
  padding: 0 60px;
}
.p-work-section .p-work-box .p-work-item-message h4 {
  color: #0091A7;
  font-size: 24px;
  padding-bottom: 10px;
}
.p-work-section .p-work-box .p-work-item-message p {
  font-size: 20px;
  padding-bottom: 10px;
}
.p-work-section .p-work-box .p-work-item-message p span {
  color: #0091A7;
}
.p-work-section .p-work-decoration-d-3 {
  position: absolute;
  top: 94.8%;
  left: 73.8%;
  width: 163px;
  height: 173px;
  z-index: 1;
}

@media (max-width: 750px) {
  .p-work-section {
    padding: 60px 0 30px;
  }
  .p-work-section .p-heading {
    padding-bottom: 30px;
  }
  .p-work-section .p-work-box {
    width: 90%;
  }
  .p-work-section .p-work-box .p-work-item {
    padding: 30px 0 60px;
    margin-bottom: 40px;
  }
  .p-work-section .p-work-box .p-work-item .p-work-item-logo {
    width: 160px;
    margin: 10px auto 20px;
  }
  .p-work-section .p-work-box .p-work-item-customer {
    max-width: 249px;
    margin: 0 auto 20px;
  }
  .p-work-section .p-work-box .p-work-item-head {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .p-work-section .p-work-box .p-work-item-text {
    font-size: 16px;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .p-work-section .p-work-box .p-work-item-image {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .p-work-section .p-work-box .p-work-item-image img {
    width: 100%;
  }
  .p-work-section .p-work-box .p-work-item-image .sp-img {
    display: block;
  }
  .p-work-section .p-work-box .p-work-item-image .sp-img.sp-d {
    margin-top: 30px;
  }
  .p-work-section .p-work-box .p-work-item-image .pc-img {
    display: none;
  }
  .p-work-section .p-work-box .p-work-item-message {
    width: 100%;
    padding: 0 20px;
  }
  .p-work-section .p-work-box .p-work-item-message h4 {
    color: #0091A7;
    font-size: 20px;
    padding-bottom: 10px;
  }
  .p-work-section .p-work-box .p-work-item-message p {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .p-work-section .p-work-decoration-d-3 {
    top: 98%;
    left: 60%;
    width: 115px;
    height: 123px;
  }
}
/*VOICE セクション*/
.p-voice-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #F0F0F0;
}
.p-voice-section .p-heading {
  padding-bottom: 40px;
  text-align: center;
}
.p-voice-section .p-voice-box {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}
.p-voice-section .p-voice-box-item {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 40px;
  position: relative;
}
.p-voice-section .p-voice-box-item-text {
  width: 62%;
  max-width: 620px;
  padding-right: 20px;
}
.p-voice-section .p-voice-box-item-text-head {
  font-size: 27px;
  color: #0091A7;
  font-weight: 600;
  line-height: 1.6;
  padding-bottom: 30px;
}
.p-voice-section .p-voice-box-item-text p {
  font-size: 20px;
}
.p-voice-section .p-voice-box-item-text.second-text {
  order: 2;
}
.p-voice-section .p-voice-box-item-image {
  width: 27.8%;
  max-width: 278px;
  padding-bottom: 5px;
}
.p-voice-section .p-voice-box-item-image_inner {
  width: 212px;
  margin: 0 auto 20px;
}
.p-voice-section .p-voice-box-item-image_inner.third-img {
  width: 96px;
  margin: 0 auto 5px;
}
.p-voice-section .p-voice-box-item-image p {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
}
.p-voice-section .p-voice-box-item-image .company-cate {
  background-color: #CCE9ED;
  color: #0091A7;
  border-radius: 50px;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 15px;
  font-size: 16px;
}
.p-voice-section .p-voice-box-item-image.second-image {
  order: 1;
  padding-left: 0;
}
.p-voice-section .p-voice-box-item .p-map-decoration-d-1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -130px;
  width: 157px;
  height: 166px;
  z-index: 1;
}
.p-voice-section .p-voice-box-item .p-map-decoration-b {
  position: absolute;
  top: 30px;
  right: -110px;
  width: 144px;
  height: 112px;
  z-index: 1;
}
.p-voice-section .p-voice-box-item .p-map-decoration-c {
  position: absolute;
  top: -85px;
  left: -80px;
  width: 162px;
  height: 126px;
  z-index: 1;
}
.p-voice-section .p-voice-box-item:nth-of-type(2) {
  justify-content: flex-start;
}
.p-voice-section .p-map-decoration-d-2 {
  position: absolute;
  top: 42%;
  left: -10px;
  width: 169px;
  height: 180px;
  z-index: 1;
}
.p-voice-section .p-map-decoration-d-3 {
  position: absolute;
  top: -110px;
  right: 8%;
  width: 163px;
  height: 173px;
  z-index: 1;
}

@media (max-width: 1170px) {
  .p-voice-section {
    padding: 80px 0;
  }
  .p-voice-section .p-voice-box {
    margin: 0 auto;
    max-width: 1000px;
    width: 90%;
  }
  .p-voice-section .p-voice-box-item {
    background-color: #fff;
    border-radius: 30px;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
  }
  .p-voice-section .p-voice-box-item-text {
    width: 75%;
    max-width: 640px;
  }
  .p-voice-section .p-voice-box-item-text-head {
    font-size: 27px;
    color: #0091A7;
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 30px;
    letter-spacing: 0.05em;
  }
  .p-voice-section .p-voice-box-item-text p {
    font-size: 18px;
  }
  .p-voice-section .p-voice-box-item-text.second-text {
    order: 2;
    padding-left: 0;
  }
  .p-voice-section .p-voice-box-item-image {
    width: 24.8%;
    padding-left: 0;
  }
  .p-voice-section .p-voice-box-item-image_inner {
    width: 96px;
    margin: 0 auto 20px;
  }
  .p-voice-section .p-voice-box-item-image_inner.third-img {
    width: 108px;
    margin: 0 auto 5px;
  }
  .p-voice-section .p-voice-box-item-image p {
    font-size: 20px;
    text-align: center;
  }
  .p-voice-section .p-voice-box-item-image.second-image {
    padding-left: 20px;
    padding-right: 30px;
  }
  .p-voice-section .p-voice-box-item .p-map-decoration-d-1 {
    display: none;
  }
  .p-voice-section .p-voice-box-item .p-map-decoration-b {
    display: none;
  }
  .p-voice-section .p-voice-box-item .p-map-decoration-c {
    display: none;
  }
  .p-voice-section .p-map-decoration-d-2 {
    display: none;
  }
}
@media (max-width: 750px) {
  .p-voice-section {
    padding: 60px 0;
  }
  .p-voice-section .p-heading {
    padding-bottom: 30px;
  }
  .p-voice-section .p-voice-box-item {
    padding: 40px 0;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
  }
  .p-voice-section .p-voice-box-item-text {
    width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .p-voice-section .p-voice-box-item-text-head {
    font-size: 24px;
    padding-bottom: 20px;
    letter-spacing: 0.05em;
  }
  .p-voice-section .p-voice-box-item-text p {
    font-size: 16px;
    line-height: 1.7;
  }
  .p-voice-section .p-voice-box-item-text.second-text {
    order: 1;
    padding-left: 0;
  }
  .p-voice-section .p-voice-box-item-image {
    width: 90%;
    padding-left: 0;
    margin: 20px auto 0;
  }
  .p-voice-section .p-voice-box-item-image_inner {
    width: 212px;
    margin: 10px auto 20px;
  }
  .p-voice-section .p-voice-box-item-image_inner.third-img {
    width: 96px;
    margin: 0 auto 5px;
  }
  .p-voice-section .p-voice-box-item-image p {
    font-size: 16px;
    text-align: center;
  }
  .p-voice-section .p-voice-box-item-image.second-image {
    padding: 0;
  }
  .p-voice-section .p-voice-box-item:nth-of-type(3) {
    margin-bottom: 0;
  }
}
/*LOAD MAP セクション*/
.p-map-section {
  width: 100%;
  position: relative;
  padding: 80px 0;
}
.p-map-section .p-heading {
  padding-bottom: 80px;
  text-align: center;
}
.p-map-section .p-map-box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 40px;
}
.p-map-section .p-map-box.load-kpi {
  margin: 0 auto 110px;
}
.p-map-section .p-map-decoration-a {
  position: absolute;
  z-index: 10;
  top: -2%;
  left: 17%;
  width: 131px;
  height: 102px;
}
.p-map-section .p-map-decoration-a .sp-img {
  display: none;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0;
}

@media (max-width: 1000px) {
  .scroll-hint-icon-wrap.is-active .scroll-hint-icon {
    opacity: 0.8;
  }
}
@media (max-width: 750px) {
  .p-map-section {
    padding: 60px 0;
  }
  .p-map-section .p-heading {
    padding-bottom: 40px;
  }
  .p-map-section .p-map-box {
    width: 100%;
    margin: 0 auto 30px;
  }
  .p-map-section .p-map-box .p-map-box-inner {
    width: 100%;
  }
  .p-map-section .p-map-box.load-kpi {
    margin: 0 auto 110px;
  }
  .p-map-section .p-map-decoration-a {
    top: -35px;
    left: 10%;
    width: 119px;
    height: 92px;
  }
  .p-map-section .p-map-decoration-a .sp-img {
    display: block;
  }
  .p-map-section .p-map-decoration-a .pc-img {
    display: none;
  }
}
/*FLOW セクション*/
.p-flow-section {
  width: 100%;
  position: relative;
  background-color: #0091A7;
  padding: 80px 0;
  text-align: center;
}
.p-flow-section .p-leading {
  color: #fff;
  padding-bottom: 20px;
}
.p-flow-section .p-heading {
  color: #fff;
  padding-bottom: 40px;
}
.p-flow-section .p-flow-box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  width: 95%;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 60px;
}
.p-flow-section .p-flow-box-item {
  width: 20%;
  max-width: 160px;
  position: relative;
}
.p-flow-section .p-flow-box-item_step {
  color: #0091A7;
  text-align: center;
  font-size: 27px;
  padding-bottom: 10px;
  font-weight: 600;
}
.p-flow-section .p-flow-box-item_image {
  width: 127px;
  margin: 0 auto;
}
.p-flow-section .p-flow-box-item_image img {
  width: 100%;
}
.p-flow-section .p-flow-box-item_head {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
.p-flow-section .p-flow-box-item_text {
  font-size: 20px;
  text-align: left;
}
.p-flow-section .p-flow-box-item_next {
  position: absolute;
  top: 80px;
  transform: translateY(-50%);
  right: -50px;
  width: 22px;
}

@media (max-width: 750px) {
  .p-flow-section {
    padding: 60px 0;
  }
  .p-flow-section .p-leading {
    padding-bottom: 0;
  }
  .p-flow-section .p-heading {
    padding-bottom: 20px;
  }
  .p-flow-section .p-flow-box {
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    padding: 0;
  }
  .p-flow-section .p-flow-box-item {
    width: 85%;
    max-width: none;
    position: relative;
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .p-flow-section .p-flow-box-item_step {
    font-size: 20px;
    padding-bottom: 0;
  }
  .p-flow-section .p-flow-box-item_image {
    width: 110px;
  }
  .p-flow-section .p-flow-box-item_head {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .p-flow-section .p-flow-box-item_text {
    font-size: 20px;
  }
  .p-flow-section .p-flow-box-item_next {
    position: absolute;
    top: auto;
    bottom: -30px;
    transform: translate(-50%, 0) rotate(90deg);
    right: auto;
    left: 50%;
  }
}
/*FAQ セクション*/
.p-faq-section {
  width: 100%;
  background-color: #F0F0F0;
  padding: 80px 0;
}
.p-faq-section .p-heading {
  text-align: center;
  color: #0091A7;
  padding-bottom: 40px;
}
.p-faq-section .p-faq__container {
  position: relative;
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
.p-faq-section .p-faq__container .p-faq__item {
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.p-faq-section .p-faq__container:nth-of-type(1) {
  border-top: 1px solid #000;
}

@media (max-width: 750px) {
  .p-faq-section {
    padding: 60px 0;
  }
}
/*アコーディオン部分*/
.p-faq__item .c-faq__item__q.j_accordion::before {
  transform: translate(0, -50%) rotate(-45deg);
  transition: all 0.3s;
}
.p-faq__item .c-faq__item__q.j_accordion::after {
  transform: translate(0, -50%) rotate(45deg);
  transition: all 0.3s;
}
.p-faq__item .c-faq__item__a.j_accordion {
  transition: all 0.3s;
}

/*CTA セクション*/
.p-cta-section {
  width: 100%;
  background-image: url(./image/cta-bg.png);
  background-size: 100% 100%;
  background-position: left;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 280px;
  padding-bottom: 120px;
  color: #fff;
}
.p-cta-section .p-heading {
  padding-bottom: 30px;
}
.p-cta-section p {
  font-size: 24px;
  font-weight: 300;
}
.p-cta-section .p-cta-image {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  width: 90%;
}
.p-cta-section .p-cta-image img {
  width: 100%;
}
.p-cta-section .p-cta-image-deco {
  position: absolute;
  z-index: 1;
  width: 230px;
  top: 60px;
  left: 0;
}
.p-cta-section .p-cta-image-deco img {
  width: 100%;
}
.p-cta-section .p-cta-button {
  width: 100%;
  position: relative;
}
.p-cta-section .p-cta-button-container {
  margin: 0 auto;
}
.p-cta-section .p-cta-button-container-inner {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.p-cta-section .p-cta-button-container-inner .button-cta {
  display: block;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 50px;
  border: 5px solid #ff470a;
  background-color: #fff;
  color: #ff470a;
  padding: 20px 60px 20px 60px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  transition: all ease 0.3s;
}
.p-cta-section .p-cta-button-container-inner .button-cta::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  right: 25px;
  border-right: 3px solid #ff470a;
  border-bottom: 3px solid #ff470a;
  transform: translateY(-50%) rotate(-45deg);
  background-color: transparent;
  z-index: 1;
}
.p-cta-section .p-cta-button-container-inner .button-cta:hover {
  border: 5px solid #fff;
  background-color: #ff470a;
  color: #fff;
}
.p-cta-section .p-cta-button-container-inner .button-cta:hover::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.p-cta-section .p-cta-button-container-inner-stamp {
  position: absolute;
  top: -38px;
  left: -106px;
  z-index: 0;
  width: 130px;
}
.p-cta-section .p-cta-button-container-inner-stamp img {
  width: 100%;
}
.p-cta-section .p-cta-button-container-message {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  width: 100%;
  margin: 5px auto 0;
}
.p-cta-section .p-cta-button-container-message p {
  font-size: 20px;
  font-weight: 600;
}
.p-cta-section .p-cta-button-container-message p span {
  display: inline;
  background: linear-gradient(transparent 60%, #fa1705 0%);
}
.p-cta-section .p-cta-button-container-message img {
  width: 60px;
}

@media (max-width: 1400px) {
  .p-cta-section .p-cta-image {
    max-width: 700px;
  }
  .p-cta-section .p-cta-image-deco {
    width: 210px;
    top: 60px;
    left: 0;
  }
}
@media (max-width: 1120px) {
  .p-cta-section {
    padding-top: 200px;
  }
  .p-cta-section .p-heading {
    font-size: 40px;
  }
  .p-cta-section p {
    font-size: 1.4em;
  }
  .p-cta-section .p-cta-image-deco {
    width: 30%;
    top: 30px;
    right: 80px;
    left: auto;
  }
  .p-cta-section .p-cta-button {
    width: 100%;
    position: relative;
  }
  .p-cta-section .p-cta-button-container {
    margin: 0 auto;
  }
  .p-cta-section .p-cta-button-container-message p {
    font-size: 1.2em;
  }
  .p-cta-section .p-cta-button-container-message img {
    width: 40px;
  }
}
@media (max-width: 840px) {
  .p-cta-section {
    background-image: url(./image/cta-bg-sp.png);
    padding-top: 110px;
    margin-top: -3px;
  }
  .p-cta-section p {
    font-size: 16px;
  }
  .p-cta-section .p-cta-image {
    width: 90%;
  }
  .p-cta-section .p-cta-button {
    margin-top: 80px;
  }
  .p-cta-section .p-cta-button-container-inner {
    width: 80%;
  }
  .p-cta-section .p-cta-button-container-inner .button-cta {
    border-radius: 50px;
    border: 5px solid #ff470a;
    font-size: 1.4em;
    letter-spacing: -0.03em;
    text-align: center;
  }
  .p-cta-section .p-cta-button-container-inner .button-cta::after {
    width: 8px;
    height: 8px;
    right: 25px;
    border-right: 1.5px solid #ff470a;
    border-bottom: 1.5px solid #ff470a;
  }
  .p-cta-section .p-cta-button-container-inner-stamp {
    top: -98px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
  }
  .p-cta-section .p-cta-button-container-message p {
    font-size: 20px;
  }
  .p-cta-section .p-cta-button-container-message img {
    width: 40px;
  }
}
@media (max-width: 750px) {
  .p-cta-section {
    overflow: hidden;
    padding-bottom: 80px;
  }
  .p-cta-section .p-heading {
    padding-bottom: 20px;
  }
  .p-cta-section p {
    font-size: 16px;
  }
  .p-cta-section .p-cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  .p-cta-section .p-cta-image img {
    width: 450px;
    max-width: 450px;
  }
  .p-cta-section .p-cta-image-deco {
    width: 110px;
    top: 30px;
    right: 25px;
  }
  .p-cta-section .p-cta-image-deco img {
    width: 100%;
  }
  .p-cta-section .p-cta-button {
    margin-top: 120px;
  }
  .p-cta-section .p-cta-button-container-inner {
    width: 90%;
  }
  .p-cta-section .p-cta-button-container-inner .button-cta {
    padding: 20px 30px 20px 30px;
    font-size: 20px;
  }
  .p-cta-section .p-cta-button-container-inner-stamp {
    top: -93px;
    width: 130px;
  }
  .p-cta-section .p-cta-button-container-message p {
    font-size: 20px;
    text-align: left;
    padding: 20px 20px 0 0;
  }
  .p-cta-section .p-cta-button-container-message img {
    width: 40px;
  }
}/*# sourceMappingURL=style.css.map */