/****************************
foundation
*****************************/
:root {
  /* color */
  --white: #fff;
  --black: #2A2B2C;
  --green: #1EA4A2;
  --blue: #425CEF;
  --blue-bg: #ECF3FD;
  --blue-bg02: #EAECFB;
  --green-bg: #EEFFFF;
  --navy: #2D3770;
  --gray-border: #CACACA;
  --gray-text: #979494;
  --gray-bg: #EBEBEB;
  --gray-placeholder: #D9D9D9;
  --red-attention: #D42926;
  --gra-skew: linear-gradient(78deg, #22BEBB -8.83%, #1779CD 78.35%);
  --gra-horizon: linear-gradient(90deg, #22BEBB 0%, #1779CD 100%);
  --gra-cta: linear-gradient(90deg, #E82C03 0%, #ED9F09 100%);
  --gra-hover: linear-gradient(90deg, #ED9F09 0%, #E82C03 100%);
  --gra-hover-blue: linear-gradient(90deg, #1779CD 0%, #22BEBB 100%);

  /* font-family */
  --sans: 'Noto Sans JP', sans-serif;
  --en: 'Caveat', cursive;
  --graph: 'Oswald', sans-serif;
}

body {
  color: var(--black);
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body a {
  text-decoration: none;
}

body a,
body button,
body label {
  -webkit-tap-highlight-color: transparent;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 1024px) {
  [data-pc-only] {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  [data-sp-only] {
    display: none !important;
  }
}

a[href^="tel:"] {
  color: inherit;
}

@media only screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

figure {
  margin-bottom: 0;
  margin-top: 0;
}

[data-color="blue"] {
  color: var(--blue);
}

[data-color="green"] {
  color: var(--green);
}


/****************************
layout
*****************************/

.l-pc {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/mv_bg_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .l-pc {
    display: none;
  }
}


.l-main {
  overflow-x: hidden;
}

.l-main-inner {
  position: relative;
  left: calc(50% + 187px);
  transform: translateX(-50%);
  width: 100%;
  max-width: 450px;
  z-index: 100;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.45);
}

@media screen and (max-width: 1024px) {
  .l-main-inner {
    position: static;
    transform: none;
    margin: auto;
  }
}



/****************************
component
*****************************/

.c-button-wrapper {
  text-align: center;
  margin-top: 10px;
}

.c-button {
  width: 100%;
  max-width: 294px;
  line-height: 1;
  font-size: clamp(14px, calc((18/375)*100vw), 18px);
  font-weight: 700;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 20px 44px 22px 43px;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
}

.c-button:focus {
  outline: 2px solid #5b9dd9;
  /* フォーカスの際に目立つアウトラインを設定 */
  outline-offset: 2px;
  /* アウトラインがボタンの枠から少し離れるように設定 */
}

.c-button[data-bg="cta"] {
  background: var(--gra-hover);
  overflow: hidden;
  z-index: 1;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 800ms;
  /* ホバーから離れたときのアニメーション時間 */
}

@keyframes scale-easeOutBounceIn {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(0.97);
  }

  30% {
    transform: scale(1.01);
  }

  50% {
    transform: scale(0.96);
  }

  70% {
    /* 3回目のバウンドを滑らかに */
    transform: scale(0.98);
  }

  90% {
    /* 3回目のバウンドを滑らかに */
    transform: scale(0.96);
  }

  100% {
    transform: scale(0.95);
  }
}

@keyframes scale-easeOutBounceOut {
  0% {
    transform: scale(0.95);
  }

  10% {
    transform: scale(0.96);
  }

  30% {
    transform: scale(0.94);
  }

  50% {
    transform: scale(0.99);
  }

  70% {
    /* 3回目のバウンドを滑らかに */
    transform: scale(0.97);
  }

  90% {
    /* 3回目のバウンドを滑らかに */
    transform: scale(0.99);
  }

  100% {
    transform: scale(1);
  }
}



.c-button[data-bg="cta"]:before,
.c-button[data-bg="contact"]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gra-cta);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.c-button[data-bg="contact"]:before {
  background: var(--gra-horizon);
}

.c-button[data-bg="cta"]:hover:before,
.c-button[data-bg="contact"]:hover:before {
  opacity: 0;
}

.c-button[data-bg="cta"] span,
.c-button[data-bg="contact"] span {
  position: relative;
  z-index: 1;
}

.c-button[data-bg="contact"] {
  background: var(--gra-hover-blue);
  overflow: hidden;
  z-index: 1;
}

.c-button[data-bg="contact"]:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #FFf;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-50%, -25%) rotate(45deg);
  position: absolute;
  top: calc(50% - 2px);
  right: 24px;
  z-index: 2;
}

.c-button[data-bg="floating"] {
  width: 110px;
  padding: 10px 0 11px;
  font-size: 14px;
  background: var(--gra-cta);
  box-shadow: 0px 4px 15px 0px rgba(233, 58, 4, 0.30);
}

.c-button[data-bg="back"] {
  background: #fff;
  color: var(--black);
}

.c-button[data-bg="back"]:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid var(--black);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-50%, -25%) rotate(-135deg);
  position: absolute;
  top: calc(50% - 2px);
  left: 24px;
}

.c-heading {
  width: calc(100% - 60px);
  margin-inline: auto;
  transform: rotate(0deg);
  color: var(--black, #2A2B2C);
  font-family: Noto Sans JP;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
}

.c-heading[data-title="Flow"],
.c-heading[data-title="Q&A"] {
  width: 100%;
}

.c-heading--works {
  background: var(--grd-cta, linear-gradient(90deg, #E82C03 0%, #ED9F09 100%));
  color: #fff;
  font-size: 16px;
  padding-block: 3px;
  width: 100%;
}

.c-heading:before {
  content: attr(data-title);
  display: inline-block;
  transform: rotate(-10deg);
  /* background: var(--gra-horizon);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--en);
  margin-left: -4px;
}

.c-heading[data-title="Q&A"]:before {
  content: none;
}

.c-heading span.c-heading__subText--green {
  color: #1EA4A2;
  font-size: 22px;
  line-height: 1.2;
  margin-top: 4px;
  margin-left: 0;
}

.c-heading--blue:before {
  color: #425CEF;
  background: none;
}

.c-heading--green[data-title=Support]>span {
  margin-top: 12px;
}

.c-heading--green:before {
  color: #1EA4A2;
  background: none;
}

.c-heading span {
  display: block;
  line-height: 1.5;
  margin-top: 12px;
}

.c-heading span span {
  display: block;
  line-height: 1.5;
  margin-top: 2px;
}

.c-heading span[data-color="grad"] {
  display: inline-block;
  background: var(--gra-horizon, linear-gradient(90deg, #22BEBB 0%, #425CEF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 0;
  margin-top: 0;
}

.c-heading[data-title=Problem] {
  width: 100%;
  letter-spacing: 0;
}

.c-heading[data-title=Problem] span {
  margin-top: 12px;
}


.c-heading[data-center] {
  text-align: center;
  font-size: 20px;
}

.c-heading[data-center] span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
}

.c-heading-sub .fz-sm {
  font-weight: 400;
  font-size: 40px;
}


.c-heading .c-heading-sub {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(-10deg);
  background: var(--green);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--en);
  position: relative;
  margin: 0;
}

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

.c-section {
  max-width: 1024px;
  width: calc(100% - 40px);
  margin: auto;
}

.c-floating-button {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-floating-button {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
  }
}

.c-section[data-bg="white"] {
  background: #fff;
}

[data-vertical="30"] {
  padding: 30px 0;
}

[data-vertical="40"] {
  padding: 40px 0;
}

[data-bg="white"] {
  background: #fff;
}

[data-bg="blue"] {
  background: var(--blue-bg);
}

[data-bg="blue-bg"] {
  background: var(--blue);
}

[data-bg="green"] {
  background: var(--green-bg);
}

[data-bg="grad"] {
  background: var(--gra-skew);
}

[data-border-none] {
  border: none !important;
}

@media screen and (min-width: 768px) {
  .c-flex {
    gap: 20px;
  }
  
  .c-section {
    width: calc(100% - 74px);
  }

  .c-section--problem {
    width: calc(100% - 40px);
  }

  .c-heading {
    padding-left: 0;
  }

  .c-heading[data-title="Voice"] {
    padding-left: 37px;
  }
}


/****************************
project
*****************************/

.p-fv__header {
  display: block;
}

@media screen and (min-width: 1025px) {

  .p-fv__header {
    display: none;
  }

}

.p-fv {
  position: relative;
  overflow: hidden;
  /* z-index: 0; */
}

.p-fv:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .p-fv:before {
    background: url(../images/mv_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}


.p-fv__tagline {
  margin-top: 11px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}



.p-fv__tag {
  position: relative;
  top: -2px;
  font-size: 14px;
  background: var(--black);
  color: #fff;
  border-radius: 100px;
  padding-inline: 12px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}

.p-fv__tag:first-child {
  margin-left: 3px;
}

.p-fv__tagBottomText {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-fv__tagBottomText:after {
  content: '';
  background: #fff;
  height: 1px;
  width: 84px;
}

.p-fv__copy {
  position: relative;
  padding-bottom: 14px;
  overflow-x: clip;
}

.p-fv__copy-circle {
  position: absolute;
  top: -50px;
  right: 30px;
  z-index: 1;
}

.p-fv__copy-circle img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

@media screen and (max-width: 360px) {
  .p-fv__copy-circle {
    right: calc(20/320*100vw);
  }
}


.p-fv__copy-image02 {
  margin-top: 7px;
}


.p-fv__heading {
  font-size: 32px;
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  position: relative;
  z-index: 0;
  padding: 15px 20px;
  margin-top: 8px;
  width: fit-content;
}

.p-fv__heading:before,
.p-fv__heading:after {
  content: '';
  background: var(--gra-cta);
  position: absolute;
  top: 0;
  left: 0;
  width: 481px;
  height: 100%;
  z-index: -1;
}

.p-fv__heading:before {
  transform: rotate(177deg);
  top: -7px;
  height: 121px;
  left: -10px;
}

.p-fv__heading span {
  font-size: clamp(24px, calc((24/320) *100vw), 32px);
  letter-spacing: 0.05em;
  line-height: 1.21;
}

.p-fv__heading span span {
  font-size: clamp(20px, calc((20/320) *100vw), 28px);
}

.p-fv__heading .exclamation {
  font-size: 32px;
  margin-left: -8px;
}

.p-fv__bg {
  position: absolute;
  background: var(--gra-cta);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(177deg);
}

.p-fv__subCopy {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 183px 149px;
  height: 159px;
  margin-inline: auto;
  width: fit-content;
}

.p-fv__subCopy img {
  object-fit: contain;
  height: auto;
  position: relative;
}

.p-fv__subCopyLeft-image {
  top: -10px;
  left: 0;
}

.p-fv__subCopyRight-image {
  top: -20px;
  right: 0;
}

.p-fv__subCopyTag[data-tag="black"] {
  background: var(--black);
  display: inline-block;
  border-radius: 2px 2px 0 0;
  padding-inline: 4px;
  position: relative;
  top: 4px;
}

.p-fv__subCopyTag[data-tag="black"] span {
  position: relative;
  top: -1px;
}

.p-fv__subCopyTag[data-tag="grad"] {
  background: var(--gra-cta);
  border-radius: 0 2px 2px 2px;
  font-size: 30px;
  padding-inline: 2px;
  margin-right: 4px;
}

.p-fv__subCopyTag span[data-fz] {
  font-size: 36px;
}

.p-fv__people {
  position: absolute;
  bottom: 0;
  right: -100px;
  z-index: -1;
}

.p-fv__people img {
  width: 100%;
  height: auto;
  max-width: 283px;
}


@media screen and (min-width: 768px) {

  .p-fv__copy-circle {
    right: 16px;
  }
  
  .p-fv__copy-circle img {
    width: 80px;
    height: 80px;
  }

  .p-fv__tagline {
    font-size: 22px;
    margin-top: 48px;
  }

  .p-fv__tag {
    font-size: 16px;
  }

  .p-fv__tagBottomText {
    font-size: 18px;
  }

  .p-fv__heading {
    font-size: 36px;
    padding-left: 37px;
  }

  .p-fv__heading span {
    font-size: 40px;
  }

  .p-fv__heading span span {
    font-size: 36px;
  }

  .p-fv__heading:before {
    height: 138px;
  }

  .p-fv__copy {
    padding-bottom: 21px;
  }

  .p-fv__subCopy {
    top: -20px;
    grid-template-columns: 223px 189px;
    height: 200px;
  }

  .p-fv__subCopyLeft-image {
    top: 0;
  }

  .p-fv__subCopyRight-image{
    top: -30px;
  }

  .p-fv__subCopyTag span[data-fz] {
    font-size: 40px;
  }

  .p-fv__subCopyTag[data-tag="grad"] {
    font-size: 34px;
  }

  .p-fv__people {
    right: -110px;
  }

  .p-fv__people img {
    max-width: 320px;
  }

}

.p-about {
  padding-top: 51px;
}

.p-about__image {
  margin-top: 26px;
}

.p-about__image figcaption {
  background: #425CEF;
  color: #fff;
  text-align: center;
  padding: 6px;
  font-weight: bold;
}

.p-about__image img {
  height: auto;
}

.p-about__text {
  padding-top: 11px;
  padding-inline: 16px;
  font-size: 14px;
  color: #333;
}

.p-support {
  padding-top: 25px;
}

.p-support__image {
  margin-top: 25px;
}

.p-support__message {
  color: #1EA4A2;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding-inline: 16px;
  margin-top: 46px;
}

.p-support__message:before {
  content: '';
  position: absolute;
  top: -27px;
  left: 50%;
  translate: -50% 0;
  width: 2px;
  height: 20px;
  background: #1EA4A2;
}

.p-support__bottomText {
  font-size: 12px;
  padding-inline: 16px;
  margin-top: 7px;
}



.p-voice__card {
  display: flex;
  line-height: 1.5;
}

.p-voice__cardFigure {
  width: 102px;
  height: 134px;
  margin-right: 20px;
  background: var(--gra-horizon);
  border-left: none;
  border-radius: 0px 20px 20px 0px;
  padding: 2.5px 2.5px 133px 0px;
  position: relative;
  z-index: -1;
}

.p-voice__cardFigure:before {
  content: '';
  position: absolute;
  width: calc(100% - 1px);
  height: calc(100% - 5px);
  top: 2px;
  left: -1px;
  background: #fff;
  border-radius: 0px 18px 18px 0px;
}

.p-voice__cardFigure img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 1px;
  border-radius: 0 18px 18px 0;
  object-fit: cover;
  z-index: 1;
}

.p-voice__cardInfoName {
  font-size: 18px;
  font-weight: 700;
}

.p-voice__cardInfo {
  font-size: 14px;
}

.p-voice__cardTagWrap {
  margin-top: 10px;
  margin-left: 20px;
  position: relative;
  font-size: clamp(11px, calc((14/375)*100vw), 14px);
}

.p-voice__cardTag {
  background: #1EA4A2;
  color: #fff;
  text-align: center;
  border-radius: calc(infinity*1px);
  font-weight: 500;
  padding-block: 3px;
  margin-top: 10px;
}

.p-voice__cardTagInfo {
  text-align: center;
  margin-top: 7px;
}

.p-voice__cardHeading {
  color: #1EA4A2;
  font-weight: bold;
}

.p-voice__cardComment {
  font-size: 14px;
  margin-top: 10px;
}

.p-voice__cardComment .fw-bold {
  font-weight: 700;
}

.p-voice__cardText {
  padding: 20px;
  padding-bottom: 16px;
}

@media screen and (min-width: 768px) {

  .p-voice__cardText {
    padding-left: 37px;
    padding-right: 38px;
  }

  .p-voice__cardFigure {
    width: 140px;
    height: 184px;
  }
  
}


.p-cta {
  background-image: url(../images/cta_bg01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  border-top: 10px solid;
  border-image: var(--gra-cta);
  border-image-slice: 1;
  overflow: hidden;
}

.p-cta[data-bg="02"] {
  background-image: url(../images/cta_bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.p-cta[data-bg="03"] {
  background-image: url(../images/cta_bg03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.p-cta[data-bg-none] {
  background: none;
}

.p-cta:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  mix-blend-mode: hard-light;
  z-index: 1;
}

.p-cta__heading {
  font-size: 20px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.p-cta__heading span {
  font-size: 30px;
}

.p-cta__text {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.p-problem {
  position: relative;
}

.p-problem__lists {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  position: relative;
  z-index: 1;
  margin-top: 13px;
}

.p-problem__list {
  flex-basis: 100%;
  background-color: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
}

.p-problem__list span {
  font-size: 14px;
  font-weight: 700;
}

.p-problem__illust {
  position: absolute;
  bottom: 5px;
  right: 24px;
  z-index: 0;
}

.p-problem__illust img {
  width: 100%;
  max-width: 68px;
}

@media screen and (min-width: 768px) {
  .p-problem__illust {
    right: 37px;
  }
}


.p-solution {
  padding-top: 16px;
  padding-bottom: 40px;
  position: relative;
}

.p-solution:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.p-solution .c-heading span[data-color="grad"] {
  font-size: 22px;
}

.p-solution__sliders {
  margin-top: 24px;
}

.p-solution__text {
  background: var(--blue);
  color: #fff;
  padding: 16px 0;
}

.p-solution__text p {
  position: relative;
  padding-left: 112px;
}

.p-solution__text p>span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .p-solution__text p {
    padding-left: 150px;
  }
}


.p-solution__text p>span:before {
  content: '';
  background: url(../images/medal.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: -32px;
  left: -88px;
  display: inline-block;
  width: 80px;
  height: 90px;
}

.p-solution__text p>span {
  font-size: clamp(11px, calc((14/375)*100vw), 14px);
}

.p-solution__text span {
  font-weight: 700;
  font-size: clamp(14px, calc((18/375)*100vw), 18px);
}

.p-solution__text .u-fz-lg {
  font-size: 22px;
}

.p-solution__bottomText {
  margin-top: 42px;
  font-size: 14px;
}


.p-reason__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.p-reason__heading span {
  font-size: 30px;
  color: #1EA4A2;
}

.p-reason__lists {
  margin-top: 24px;
}

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

.p-reason__listIllust {
  border-radius: 10px;
  background: var(--green);
  padding: 2px;
}

.p-reason__listIllustInner {
  background: #fff;
  border-radius: 8px;
  position: relative;
}

.p-reason__listNumber {
  background: var(--green);
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 4px 16px;
  border-radius: 10px 0 10px 0;
  text-transform: uppercase;
  position: relative;
  top: -2px;
}

.p-reason__listNumber span {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-left: 4px;
}

.p-reason__listIllustInner {
  height: 140px;
}

.p-reason__listIllustInner img {
  position: absolute;
  width: 100%;
}

.p-reason__listIllustInner .illust01 {
  width: 80px;
  left: 25px;
  bottom: 27px;
}

.p-reason__listIllustInner .illust02 {
  width: 179px;
  right: 20px;
  bottom: 0;
}

.p-reason__listIllustInner .illust03 {
  width: 80px;
  left: 28px;
  bottom: 21px;
}

.p-reason__listIllustInner .illust04 {
  width: 182px;
  right: 20px;
  bottom: 0;
}

.p-reason__listIllustInner .illust05 {
  width: 80px;
  left: 32px;
  bottom: 17px;
}

.p-reason__listIllustInner .illust06 {
  width: 146px;
  right: 20px;
  bottom: 0;
}

.p-reason__listHeading {
  margin-top: 16px;
  color: var(--green);
  font-weight: 700;
}

.p-reason__listText {
  margin-top: 8px;
  font-size: 14px;
}

.p-advisor {
  padding-bottom: 68px;
}

.p-advisor__cards {
  margin-top: 24px;
}

.p-advisor__card {
  padding: 0 20px;
}

@media screen and (min-width: 769px) {
  .p-advisor__card {
    padding: 0 37px;
  }
}


.p-advisor__cardFigure {
  background: var(--gra-skew);
  padding: 2px;
  border-radius: 12px;
}

.p-advisor__cardFigure img {
  width: 100%;
  border-radius: 10px;
}

.p-advisor__cardName {
  margin-top: 10px;
  font-weight: 700;
}

.p-advisor__cardText {
  margin-top: 10px;
  font-size: 14px;
}

.p-works {
  padding: 20px 0 0;
  padding-top: 0;
  overflow: hidden;
}

.p-works__sliders {
  margin-top: 20px;
  width: 200%;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

.p-works__slider {
  display: flex;
  overflow: hidden;
}

.p-works__slides {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}

.p-works__slides--left {
  animation: infinity-scroll-left 15s infinite linear 0.5s both;
}

.p-works__slides--right {
  animation: infinity-scroll-right 15s infinite linear 0.5s both;
}

.p-works__slide img {
  width: 100px;
}

.p-flow {
  position: relative;
}

.p-flow__illust {
  position: absolute;
  top: 35px;
  right: 20px;
  width: 123px;
  z-index: 0;
}

.p-flow__lists {
  text-align: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.p-flow__list {
  color: #fff;
  padding: 17px 12px;
  font-size: 25px;
  border-radius: 20px;
  font-weight: 700;
  position: relative;
}

.p-flow__list .u-fz-15 {
  font-size: 15px;
}

.p-flow__list--other {
  font-size: 20px;
  color: var(--blue);
  background: var(--blue-bg02);
}

.p-flow__list--other p {
  color: #333;
  letter-spacing: 0;
}

.p-flow__list p {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  margin-top: 4px;
}

.p-flow__list:before {
  content: '';
  width: 3px;
  height: 30px;
  background: var(--blue);
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
}

.p-flow__list:last-child:before {
  bottom: -38px;
  height: 40px;
  z-index: -1;
}

.p-flow__list:nth-child(4):after {
  position: absolute;
  content: '';
  border-style: solid;
  border-width: 15px 9px 0 9px;
  border-color: #1778cd transparent transparent transparent;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.p-flow__list+* {
  margin-top: 27px;
}

.p-flow__listIllust {
  position: absolute;
  top: -24px;
  right: 0;
  width: 63px;
}

.p-flow__list:last-child:before {
  content: none;
}

.p-flow__list .strong {
  font-size: 30px;
}

.p-flow__list .small {
  font-size: 14px;
  font-weight: normal;
  margin-top: 20px;
}

.p-flow__list[data-bg="grad"] {
  color: #fff;
}

.p-faq__inner {
  margin-top: 24px;
}

.faq-item {
  margin-top: 16px;
  margin-bottom: 16px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  border-top: 2px solid;
  border-image: var(--green);
  border-image-slice: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 16px 10px 0 10px;
  font-weight: bold;
}

.faq-question p {
  padding-right: 10px;
}

.question-icon,
.toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #FFFFFF;
}

.question-icon {
  background-color: #1F5379;
  flex-shrink: 0;
  margin-right: 20px;
}

.toggle-icon {
  margin-left: auto;
}

.faq-answer {
  display: none;
  padding: 10px 10px 0 10px;
  overflow: hidden;
}

.answer-icon {
  display: inline-block;
  background-image: linear-gradient(80.3deg, #E88228 -1.83%, #F4C45E 81.27%);
  width: 40px;
  height: 40px;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.faq-answer p {
  font-size: 14px;
  display: inline;
  padding-right: 10px;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 100px;
  margin-left: auto;
  position: relative;
}

.plus-minus {
  width: 100%;
  height: 100%;
  position: relative;
}

.bar {
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out;
  /* opacity の transition を追加 */
}

.bar:first-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.bar:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.active .bar:first-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.active .bar:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-newFooter-lp13 {
  background: #1779CD;
}

.p-newFooter-lp13 .p-newFooter__logo img {
  width: 100%;
  max-width: 243px;
}

.p-newFooter-lp13 .p-newFooter__logo {
  margin-top: 0;
  height: 40px;
}

.p-newFooter-lp13 .p-newFooter__navList a {
  font-size: 14px;
  text-decoration: underline;
  white-space: nowrap;
}

.p-newFooter-lp13 .p-newFooter__navList ul {
  margin-top: 20px;
}

.p-newFooter-lp13 .p-newFooter__inner {
  padding-top: 30px;
  padding-bottom: 20px;
}

.p-newFooter-lp13 .p-newFooter__copyright {
  margin-top: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
}

.p-newFooter-lp13 .p-newFooter__navList>ul>li+li {
  margin-left: 10px;
}

.p-newFooter-lp13 .l-container {
  width: 100%;
}

/****************************
utility
*****************************/
