/****************************
foundation
*****************************/
:root {
  /* color */
  --white: #fff;
  --black: #2a2b2c;
  --green: #22bebb;
  --blue: #1779cd;
  --blue-bg: #ecf3fd;
  --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;
}

@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;
}

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

.l-pc {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/mv_bg_pc.webp) 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:disabled {
  cursor: not-allowed;
  opacity: 0.8;
  filter: grayscale(80%);
}

.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.3);
}

.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[data-title='Voice'] {
  padding-left: 10px;
}

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

.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);
  padding-right: 5px;
}

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

.c-heading span {
  display: block;
  margin-left: 0.2em;
  line-height: 1.5;
  margin-top: 8px;
}

.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-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(--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);
  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='grad'] {
  background: var(--gra-skew);
}

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

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

  .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;
}

.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.webp) no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.p-fv__tagline {
  margin-top: 32px;
  color: #fff;
  font-size: 30px;
  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: hidden;
  z-index: -1;
}

.p-fv__heading {
  font-size: 28px;
  color: #fff;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
  z-index: 0;
  padding: 15px 20px;
  margin-top: 37px;
}

.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: 28px;
}

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

.p-fv__heading .exclamation {
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .p-fv__heading {
    font-size: 28px;
  }
  .p-fv__heading span {
    font-size: 28px;
  }
  .p-fv__heading span span {
    font-size: 24px;
  }
  .p-fv__heading .exclamation {
    font-size: 28px;
  }
}

.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;
  padding: 44px 20px 47px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.p-fv__subCopyText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 25px;
  line-height: 1.2;
  gap: 8px;
}

.p-fv__subCopyLine {
  display: inline-block;
  line-height: 1.25;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--gra-cta);
}

.p-fv__subCopyLine[data-tone='dark'] {
  background: var(--black);
}

.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__tagline {
    font-size: 30px;
    margin-top: 48px;
  }
  .p-fv__tag {
    font-size: 16px;
  }
  .p-fv__tagBottomText {
    font-size: 18px;
  }

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

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

  .p-fv__heading .exclamation {
    font-size: 28px;
  }

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

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

  .p-fv__subCopy {
    font-size: 28px;
    padding-top: 50px;
    padding-bottom: 75px;
    padding-left: 40px;
  }
  .p-fv__subCopyText {
    font-size: 25px;
    gap: 10px;
  }
  .p-fv__subCopyLine {
    padding: 4px 12px;
  }
  .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-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;
}

.p-voice__cardFigure img {
  width: 100%;
  height: 131px;
  border-radius: 0 18px 18px 0;
  object-fit: cover;
}

.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__cardTagWrap:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 15px;
  left: -20px;
  background: url(../images/grad_arrow.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 43px;
}

.p-voice__cardTag {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.p-voice__cardTag + * {
  margin-top: 5px;
}

.p-voice__cardTag span {
  background: var(--black);
  color: #fff;
  border-radius: 100px;
  width: 60px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.p-voice__cardTag[data-bg='gra'] span {
  background: var(--gra-horizon);
}

.p-voice__cardHeading {
  color: var(--blue);
  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: 37px;
}

@media screen and (min-width: 768px) {
  .p-voice__cardText {
    padding-left: 37px;
    padding-right: 38px;
  }
}

.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: 5px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.p-problem__lists::before {
  content: '';
  flex-basis: calc(50% - 5px);
}

.p-problem__list {
  flex-basis: calc(50% - 5px);
  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-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(--gra-horizon);
  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: var(--blue);
}

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

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

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

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

.p-reason__listNumber {
  background: var(--gra-skew);
  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: 32px;
  bottom: 10px;
}

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

.p-reason__listIllustInner .illust03 {
  width: 80px;
  left: 32px;
  bottom: 27px;
}

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

.p-reason__listIllustInner .illust05 {
  width: 110px;
  left: 32px;
  bottom: 0;
}

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

.p-reason__listHeading {
  margin-top: 16px;
  color: var(--blue);
  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;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.p-advisor__cardFigure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

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

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

.p-works {
  border-top: 2px solid;
  border-image: var(--gra-horizon);
  border-image-slice: 1;
  padding: 20px 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 {
  padding: 20px;
  font-size: 20px;
  border-radius: 20px;
  color: var(--blue);
  font-weight: 700;
  position: relative;
}

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

.p-flow__list:nth-child(2n):before {
  bottom: -40px;
  height: 40px;
}

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

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

.p-flow__list:last-child {
  margin-top: 40px;
  padding-bottom: 30px;
  position: relative;
}

.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(--gra-horizon);
  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(--gra-horizon);
  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: var(--blue);
}

.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
*****************************/
