@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #333;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='#'] {
  cursor: pointer;
}

a[href='#']:hover, a[href='#']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #333;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #333;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

.l-achievement {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-fv {
  margin-top: 93px;
  margin-top: 5.8125rem;
}

.l-worry {
  margin-top: 85px;
  margin-top: 5.3125rem;
}

.c-button {
  gap: 16px;
  gap: 1rem;
  padding-block: 30px;
  padding-block: 1.875rem;
  padding-inline: 26px;
  padding-inline: 1.625rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transition: background-color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: transform .3s, box-shadow .3s, background-color .3s;
  transition: transform .3s, box-shadow .3s, background-color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  border: 2px solid transparent;
  border-radius: 999px;
  background-color: #EC7E00;
  width: 100%;
  max-width: 680px;
  max-width: 42.5rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: auto-phrase;
}

.c-button:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.c-button__badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 100px;
  margin-left: 6.25rem;
  border-radius: .125rem;
  background-color: #fff;
  padding: 4px 10px;
  padding: .25rem .625rem;
  color: #E7711B;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.c-button__text {
  text-align: center;
  white-space: nowrap;
}

.c-button__text span {
  display: inline-block;
}

.c-button__icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 50%;
  background-color: #fff;
  background-image: url('../img/button-arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.c-button.c-button--fv {
  padding-block: 16px;
  padding-block: 1rem;
  padding-inline: clamp(20px, 2.2222222222vw, 32px);
  padding-inline: clamp(1.25rem, 2.2222222222vw, 2rem);
  gap: clamp(12px, 1.1111111111vw, 16px);
  gap: clamp(.75rem, 1.1111111111vw, 1rem);
  max-width: clamp(400px, 38.8888888889vw, 560px);
  max-width: clamp(25rem, 38.8888888889vw, 35rem);
  font-size: clamp(14px, 1.3888888889vw, 20px);
  font-size: clamp(.875rem, 1.3888888889vw, 1.25rem);
}

.c-button--fv .c-button__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.c-button--fv .c-button__badge {
  padding-inline: clamp(6px, .6944444444vw, 10px);
  padding-inline: clamp(.375rem, .6944444444vw, .625rem);
  margin-left: auto;
  font-size: clamp(12px, 1.25vw, 18px);
  font-size: clamp(.75rem, 1.25vw, 1.125rem);
}

.c-button--fv .c-button__icon {
  margin-left: clamp(8px, .8333333333vw, 12px);
  margin-left: clamp(.5rem, .8333333333vw, .75rem);
  width: clamp(28px, 2.7777777778vw, 40px);
  width: clamp(1.75rem, 2.7777777778vw, 2.5rem);
  height: clamp(28px, 2.7777777778vw, 40px);
  height: clamp(1.75rem, 2.7777777778vw, 2.5rem);
}

.c-button.c-button--cta {
  padding-block: 24px;
  padding-block: 1.5rem;
  padding-inline: clamp(20px, 2.7777777778vw, 40px);
  padding-inline: clamp(1.25rem, 2.7777777778vw, 2.5rem);
  gap: clamp(10px, 1.1111111111vw, 16px);
  gap: clamp(.625rem, 1.1111111111vw, 1rem);
  max-width: clamp(460px, 41.6666666667vw, 600px);
  max-width: clamp(28.75rem, 41.6666666667vw, 37.5rem);
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-size: clamp(1.125rem, 1.6666666667vw, 1.5rem);
}

.c-button--cta .c-button__icon {
  margin-right: 0;
  width: clamp(28px, 2.6388888889vw, 38px);
  width: clamp(1.75rem, 2.6388888889vw, 2.375rem);
  height: clamp(28px, 2.6388888889vw, 38px);
  height: clamp(1.75rem, 2.6388888889vw, 2.375rem);
}

.c-button--cta .c-button__badge {
  padding-inline: clamp(7px, .6944444444vw, 10px);
  padding-inline: clamp(.4375rem, .6944444444vw, .625rem);
  margin-left: clamp(12px, 1.9444444444vw, 28px);
  margin-left: clamp(.75rem, 1.9444444444vw, 1.75rem);
  font-size: clamp(14px, 1.3888888889vw, 20px);
  font-size: clamp(.875rem, 1.3888888889vw, 1.25rem);
}

.c-button--example {
  padding-block: 26px;
  padding-block: 1.625rem;
  padding-inline: 30px;
  padding-inline: 1.875rem;
  gap: 8px;
  gap: .5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  font-size: 15px;
  font-size: .9375rem;
}

.c-button--example .c-button__icon {
  margin-left: 0;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
}

.c-example-card {
  padding-inline: 24px;
  padding-inline: 1.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  width: 100%;
  max-width: 375px;
  max-width: 23.4375rem;
  height: 100%;
}

.c-example-card::before {
  position: absolute;
  right: -1px;
  right: -.0625rem;
  bottom: -1px;
  bottom: -.0625rem;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #d9d9d9;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  content: '';
}

.c-example-card::after {
  position: absolute;
  right: -1px;
  right: -.0625rem;
  bottom: -1px;
  bottom: -.0625rem;
  z-index: 2;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #00A85A;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  content: '';
}

.c-example-card__balloon {
  display: inline-block;
  position: relative;
  border-radius: .5rem;
  background-color: #f7f091;
  padding: 8px 20px;
  padding: .5rem 1.25rem;
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
}

.c-example-card__balloon::before {
  position: absolute;
  top: -37px;
  top: -2.3125rem;
  left: -14px;
  left: -.875rem;
  z-index: 1;
  background: url('../img/example-dots.svg') no-repeat center/contain;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  pointer-events: none;
  content: '';
}

.c-example-card__balloon::after {
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
  left: 16px;
  left: 1rem;
  -webkit-clip-path: polygon(18% 0, 60% 0, 50% 67%);
  clip-path: polygon(18% 0, 60% 0, 50% 67%);
  background-color: #f7f091;
  width: 44px;
  width: 2.75rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-example-card__balloon-text {
  width: 100%;
  color: #00A85A;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.c-example-card__balloon-cross {
  margin-inline: 10px;
  margin-inline: .625rem;
  color: #666;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.c-example-card__body {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 43px;
  margin-top: 2.6875rem;
  width: 100%;
}

.c-example-card__body::before {
  position: absolute;
  top: -35px;
  top: -2.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url('../img/example-arrow.svg') no-repeat center/contain;
  width: 20px;
  width: 1.25rem;
  height: 26px;
  height: 1.625rem;
  pointer-events: none;
  content: '';
}

.c-example-card__img-wrap {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: .25rem;
  width: 132px;
  width: 8.25rem;
  height: 180px;
  height: 11.25rem;
  overflow: hidden;
}

.c-example-card__img {
  aspect-ratio: 132/180;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* SP時：カード別の画像位置・スケール（img-wrap に --pos-1 〜 --pos-6 を付与） */
.c-example-card__info {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 41.6%;
}

.c-example-card__tags {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-example-card__tag {
  padding-block: 8px;
  padding-block: .5rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  display: inline-block;
  border-radius: 62.4375rem;
  background-color: #F5F2EA;
  color: #333;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1;
  white-space: nowrap;
}

.c-example-card__tag-link {
  display: block;
  color: inherit;
}

.c-example-card__hash {
  color: #EC7E00;
}

.c-example-card__employments {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-example-card__employment {
  padding-inline: 8px;
  padding-inline: .5rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #666;
  border-radius: .125rem;
  background-color: transparent;
  min-width: 58px;
  min-width: 3.625rem;
  height: 22px;
  height: 1.375rem;
  color: #666;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 400;
  white-space: nowrap;
}

.c-example-card__button-wrap {
  margin-top: auto;
  padding-top: 16px;
  padding-top: 1rem;
  width: 100%;
  text-align: center;
}

.c-example-card__button {
  gap: 8px;
  gap: .5rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  height: 52px;
  height: 3.25rem;
  font-size: 15px;
  font-size: .9375rem;
}

.c-example-card__button-text {
  padding-left: 15px;
  padding-left: .9375rem;
  color: #fff;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
}

.c-footer-button {
  padding-block: clamp(12px, 1.25vw, 18px);
  padding-block: clamp(.75rem, 1.25vw, 1.125rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: transform .3s, box-shadow .3s, background-color .3s;
  transition: transform .3s, box-shadow .3s, background-color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  border: 2px solid transparent;
  border-radius: 999px;
  background-color: #00A85A;
  padding-right: clamp(12px, 1.3888888889vw, 20px);
  padding-right: clamp(.75rem, 1.3888888889vw, 1.25rem);
  padding-left: clamp(14px, 1.5277777778vw, 22px);
  padding-left: clamp(.875rem, 1.5277777778vw, 1.375rem);
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: 72px;
  min-height: 4.5rem;
  color: #fff;
  font-size: clamp(17px, 1.6666666667vw, 20px);
  font-size: clamp(1.0625rem, 1.6666666667vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.c-footer-button:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.c-footer-button--orange {
  background-color: #EC7E00;
}

.c-footer-button__text {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 32px;
  padding-right: 2rem;
  min-width: 0;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.c-footer-button__text > span {
  display: inline;
}

.c-footer-button__icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: clamp(10px, 1.25vw, 18px);
  right: clamp(.625rem, 1.25vw, 1.125rem);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
  background-image: url('../img/button-arrow-green.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(24px, 2.5vw, 30px);
  width: clamp(1.5rem, 2.5vw, 1.875rem);
  height: clamp(24px, 2.5vw, 30px);
  height: clamp(1.5rem, 2.5vw, 1.875rem);
}

.c-footer-button--orange .c-footer-button__icon {
  background-image: url('../img/button-arrow.svg');
}

/* =========================================================
  SP微調整
========================================================= */
.p-achievement {
  position: relative;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  overflow: hidden;
}

.p-achievement::before {
  position: absolute;
  top: 43%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  background: url('../img/achievement-deco-right.svg') no-repeat right center/contain;
  width: 556px;
  width: 34.75rem;
  height: 791px;
  height: 49.4375rem;
  pointer-events: none;
  content: '';
}

.p-achievement::after {
  position: absolute;
  bottom: -26%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  background: url('../img/achievement-deco-left.svg') no-repeat left center/contain;
  width: 320px;
  width: 20rem;
  height: 553px;
  height: 34.5625rem;
  pointer-events: none;
  content: '';
}

.p-achievement__inner {
  margin-inline: auto;
  padding-inline: 30px;
  position: relative;
  z-index: 1;
  max-width: calc(50rem + 30px * 2);
}

.p-achievement__head {
  gap: 64px;
  gap: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-achievement__head-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 314px;
  width: 19.625rem;
  max-width: 100%;
}

.p-achievement__head-icon img {
  aspect-ratio: 314/257;
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-achievement__title {
  color: #333;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-achievement__title-em {
  color: #00A85A;
}

.p-achievement__points {
  gap: 16px;
  gap: 1rem;
  display: grid;
  margin-top: 56px;
  margin-top: 3.5rem;
  padding-left: 0;
  list-style: none;
}

.p-achievement__point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-achievement__point-icon {
  display: grid;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  place-items: center;
  z-index: 1;
  border: 8px solid #00A85A;
  border: .5rem solid #00A85A;
  border-radius: 50%;
  background-color: #fff;
  width: clamp(120px, 11.1111111111vw, 160px);
  width: clamp(7.5rem, 11.1111111111vw, 10rem);
  height: clamp(120px, 11.1111111111vw, 160px);
  height: clamp(7.5rem, 11.1111111111vw, 10rem);
}

.p-achievement__point-icon__img {
  width: 90%;
}

.p-achievement__point-icon__img img {
  aspect-ratio: 135/92;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-achievement__point-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: clamp(-80px, -5.5555555556vw, -50px);
  margin-left: clamp(-5rem, -5.5555555556vw, -3.125rem);
  border-radius: .5rem;
  background-color: #00A85A;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-right: clamp(16px, 2.7777777778vw, 40px);
  padding-right: clamp(1rem, 2.7777777778vw, 2.5rem);
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-left: clamp(70px, 6.9444444444vw, 100px);
  padding-left: clamp(4.375rem, 6.9444444444vw, 6.25rem);
}

.p-achievement__point-text {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.8;
}

.p-achievement__point-line {
  display: block;
  position: relative;
  padding-left: 28px;
  padding-left: 1.75rem;
}

.p-achievement__point-line::before {
  position: absolute;
  top: 46%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url('../img/achievement-arrow.svg') no-repeat center/contain;
  width: 14px;
  width: .875rem;
  height: 12px;
  height: .75rem;
  content: '';
}

.p-achievement__point-em {
  color: #F7F091;
  font-weight: 500;
}

.p-achievement__note span {
  display: inline-block;
}

.p-achievement__note {
  position: relative;
  margin-top: 68px;
  margin-top: 4.25rem;
  color: #00A85A;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
  text-align: center;
  word-break: auto-phrase;
}

.p-achievement__note::before {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: rotate(70deg);
  transform: rotate(70deg);
  background-color: #00A85A;
  width: 36px;
  width: 2.25rem;
  height: 3px;
  height: .1875rem;
  content: '';
}

.p-achievement__note::after {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: rotate(-70deg);
  transform: rotate(-70deg);
  background-color: #00A85A;
  width: 36px;
  width: 2.25rem;
  height: 3px;
  height: .1875rem;
  content: '';
}

.p-achievement__stats {
  margin-inline: auto;
  padding-block: 40px;
  padding-block: 2.5rem;
  padding-inline: 40px;
  padding-inline: 2.5rem;
  gap: 64px;
  gap: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 24px;
  margin-top: 1.5rem;
  background-color: #F0FADB;
  width: 100%;
  max-width: 762px;
  max-width: 47.625rem;
}

.p-achievement__stats-media {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 259px;
  width: 16.1875rem;
}

.p-achievement__stats-media img {
  aspect-ratio: 259/184;
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-achievement__stats-body {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: left;
}

.p-achievement__stats-label {
  margin: 0;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
}

.p-achievement__stats-value {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin: 6px 0 0;
  margin: .375rem 0 0;
  line-height: 1.1;
}

.p-achievement__stats-number {
  color: #00A85A;
  font-family: 'Jost', sans-serif;
  font-size: clamp(64px, 5.5555vw, 80px);
  font-size: clamp(4rem, 5.5555vw, 5rem);
  font-weight: 700;
}

.p-achievement__stats-unit {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .03wm;
}

.p-achievement__stats-unit-em {
  color: #00A85A;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
}

.p-achievement__stats-caption {
  margin-top: 8px;
  margin-top: .5rem;
  color: #666;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1;
}

.p-achievement__desc {
  margin-top: 37px;
  margin-top: 2.3125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
  text-align: center;
}

.p-achievement__desc-em {
  display: inline-block;
  position: relative;
  z-index: 0;
}

.p-achievement__desc-em::after {
  position: absolute;
  bottom: 6px;
  bottom: .375rem;
  left: 0;
  z-index: -1;
  background-color: #F7F091;
  width: 100%;
  height: 4px;
  height: .25rem;
  content: '';
}

.p-achievement__cta {
  display: grid;
  place-items: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-cta {
  padding-block: 103px;
  padding-block: 6.4375rem;

  /* 固定CTAバー分の高さだけ余白を確保（JSで --cta-bar-height を設定し全画面幅で一致） */
  margin-bottom: var(--cta-bar-height, 120px);
  margin-bottom: var(--cta-bar-height, 7.5rem);
  background-color: #43D490;
}

.p-cta__inner {
  margin-inline: auto;
  padding-inline: 30px;
  max-width: calc(1200px + 30px * 2);
}

.p-cta__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2.5rem;
  background-color: #fff;
  padding-top: 145px;
  padding-top: 9.0625rem;
  padding-right: 70px;
  padding-right: 4.375rem;
  padding-bottom: 51px;
  padding-bottom: 3.1875rem;
  padding-left: 107px;
  padding-left: 6.6875rem;
}

.p-cta__card::before {
  position: absolute;
  top: -98px;
  top: -6.125rem;
  left: 40px;
  left: 2.5rem;
  background: url('../img/cta-plane.svg') no-repeat center/contain;
  width: 260px;
  width: 16.25rem;
  height: 230px;
  height: 14.375rem;
  content: '';
}

.p-cta__card-main {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.p-cta__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 55.91%;
}

.p-cta__title {
  color: #00A85A;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.4;
  white-space: nowrap;
  word-break: normal;
}

.p-cta__title-nowrap {
  white-space: nowrap;
}

.p-cta__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-cta__text {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
}

.p-cta__quote {
  margin-block: 16px;
  margin-block: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
}

.p-cta__img {
  margin-top: 115px;
  margin-top: 7.1875rem;
  margin-left: -4%;
  width: 100%;
  max-width: 47.02%;
}

.p-cta__img img {
  aspect-ratio: 481/297;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-cta__button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
}

.p-cta__bar {
  padding-block: 24px;
  padding-block: 1.5rem;
  -webkit-backdrop-filter: blur(8px);

  /* 固定表示時: 画面最下部に固定し、.is-visible で表示制御 */
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
  margin-top: 103px;
  margin-top: 6.4375rem;
  margin-top: 0;
  background-color: rgba(255, 255, 255, .7);

  /* iPhoneのホームバー対策 */
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  pointer-events: none;
}

.p-cta__bar.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-cta__bar-inner {
  margin-inline: auto;
  padding-inline: 30px;
  max-width: calc(1200px + 30px * 2);
}

.p-cta__bar-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1020px;
  max-width: 63.75rem;
}

.p-cta__bar-list {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.p-cta__bar-item {
  min-width: 0;
}

.p-example {
  padding-block: 120px;
  padding-block: 7.5rem;
  background-color: #00A85A;
}

.p-example__inner {
  margin-inline: auto;
  padding-inline: 30px;
  position: relative;
  max-width: calc(1200px + 30px * 2);
}

.p-example__inner::before {
  position: absolute;
  top: 2%;
  left: 19%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  background: url('../img/example-plane.svg') no-repeat center/contain;
  width: clamp(60px, 11.1111111111vw, 160px);
  width: clamp(3.75rem, 11.1111111111vw, 10rem);
  height: clamp(40px, 9.0277777778vw, 130px);
  height: clamp(2.5rem, 9.0277777778vw, 8.125rem);
  pointer-events: none;
  content: '';
}

.p-example__heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-example__heading-sub {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-example__heading-title {
  line-height: 1.4;
}

.p-example__heading-title-inner {
  padding-inline: 8px;
  padding-inline: .5rem;
  display: inline-block;
  margin-top: 16px;
  margin-top: 1rem;
  border-radius: .25rem;
  background-color: #fff;
  color: #00A85A;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-example__list {
  gap: 32px;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  margin-top: 3.25rem;
  padding: 0;
  list-style: none;
}

.p-example__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  height: 100%;
}

/* 動画UIオーバーレイ（標準UI挙動: ホバー/タップで表示、数秒で非表示） */
.p-fv__ui {
  inset: 0;
  -webkit-transform: translateZ(0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transform: translateZ(0);
  opacity: 0;
  z-index: 10;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
  pointer-events: none;
}

.p-fv__ui.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* 右上: 全画面ボタン */
.p-fv__control-top {
  position: absolute;
  top: 12px;
  top: .75rem;
  right: 12px;
  right: .75rem;
  pointer-events: auto;
}

.p-fv__control--fullscreen {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-fv__control--fullscreen .p-fv__control-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

/* 右下: 音量（進行バーの少し上） */
.p-fv__control-bottom {
  position: absolute;
  right: 12px;
  right: .75rem;
  bottom: 44px;
  bottom: 2.75rem; /* 進行バーより少し下側に表示 */
  pointer-events: auto;
}

/* 黒半透明の1ブロック内に音量バーとミュートボタンを横並び */
.p-fv__volume-wrap {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
  border-radius: .25rem;
  background-color: rgba(0, 0, 0, .5);
  padding: 0 5px 0 8px;
  padding: 0 .3125rem 0 .5rem;
  height: 36px;
  height: 2.25rem;
}

.p-fv__volume-wrap:hover, .p-fv__volume-wrap:focus-within {
  background-color: rgba(0, 0, 0, .7);
}

.p-fv__volume-track {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: .1875rem;
  background-color: rgba(255, 255, 255, .3);
  width: 56px;
  width: 3.5rem;
  height: 6px;
  height: .375rem;
}

.p-fv__volume-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: width .1s ease;
  transition: width .1s ease;
  border-radius: .1875rem;
  background-color: #fff;
  width: 0%;
  pointer-events: none;
}

.p-fv__volume-wrap.is-muted .p-fv__volume-fill {
  opacity: .6;
}

/* ラップ内のミュートボタンは背景なしでアイコンのみ */
.p-fv__volume-wrap .p-fv__control--mute {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 -5px 0 0;
  margin: 0 -.3125rem 0 0;
  background: transparent;
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
}

.p-fv__volume-wrap .p-fv__control--mute:hover, .p-fv__volume-wrap .p-fv__control--mute:focus-visible {
  background: transparent;
}

.p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

/* 中央: 再生・一時停止（やや大きめ） */
.p-fv__control--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .5);
  padding: 0;
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  pointer-events: auto;
  color: #fff;
}

.p-fv__control--center:hover, .p-fv__control--center:focus-visible {
  background-color: rgba(0, 0, 0, .7);
}

.p-fv__control--center:focus {
  outline: none;
}

.p-fv__control--center .p-fv__control-icon {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
}

/* 下部: 経過時間 + 進行バー + 総時間 */
.p-fv__progress-wrap {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0 0 .5rem .5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .5)));
  background: linear-gradient(transparent, rgba(0, 0, 0, .5));
  padding: 6px 8px 8px;
  padding: .375rem .5rem .5rem;
  pointer-events: auto;
}

.p-fv__time {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 32px;
  min-width: 2rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  text-align: center;
}

.p-fv__time.js-time-total {
  text-align: right;
}

.p-fv__time.js-time-current {
  text-align: left;
}

.p-fv__progress {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
  min-width: 0;
  height: 6px;
  height: .375rem;
}

.p-fv__progress-track {
  position: relative;
  border-radius: .1875rem;
  background-color: rgba(255, 255, 255, .3);
  width: 100%;
  height: 100%;
}

.p-fv__progress-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: width .1s linear;
  transition: width .1s linear;
  border-radius: .1875rem;
  background-color: #fff;
  width: 0%;
}

/* 共通: ボタン（ミュートなど。中央の再生ボタンは .p-fv__control--center でサイズ指定） */
.p-fv__control:not(.p-fv__control--center) {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
}

.p-fv__control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
  cursor: pointer;
  border: none;
  border-radius: .375rem;
  background-color: rgba(0, 0, 0, .5);
  padding: 0;
  color: #fff;
}

.p-fv__control:hover, .p-fv__control:focus-visible {
  background-color: rgba(0, 0, 0, .7);
}

.p-fv__control:focus {
  outline: none;
}

.p-fv__control-icon {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-fv__control-icon--play {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}

.p-fv__control-icon--pause {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 19h4V5H6v14zm8-14v14h4V5h-4z'/%3E%3C/svg%3E");
}

.p-fv__control-icon--mute {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z'/%3E%3C/svg%3E");
}

.p-fv__control-icon--unmute {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E");
}

/* 全画面: 非全画面時は拡大アイコン、全画面時は縮小アイコン */
.p-fv__control-icon--fullscreen {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z'/%3E%3C/svg%3E");
}

.p-fv__control-icon--exit-fullscreen {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z'/%3E%3C/svg%3E");
}

.p-fv__control-icon--exit-fullscreen {
  opacity: 0;
}

.js-video-fullscreen[aria-pressed=true] .p-fv__control-icon--fullscreen {
  opacity: 0;
}

.js-video-fullscreen[aria-pressed=true] .p-fv__control-icon--exit-fullscreen {
  opacity: 1;
}

/* 再生ボタン: 一時停止時は再生アイコン、再生中は一時停止アイコン */
.p-fv__control-icon--pause {
  opacity: 0;
}

.js-video-play[aria-pressed=true] .p-fv__control-icon--play {
  opacity: 0;
}

.js-video-play[aria-pressed=true] .p-fv__control-icon--pause {
  opacity: 1;
}

/* ミュートボタン: ミュート時はミュートアイコン、解除時はスピーカーアイコン */
.p-fv__control-icon--unmute {
  opacity: 0;
}

.js-video-mute[aria-pressed=false] .p-fv__control-icon--mute {
  opacity: 0;
}

.js-video-mute[aria-pressed=false] .p-fv__control-icon--unmute {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   768px未満（スマホ・タブレット縦）
   -------------------------------------------------------------------------- */

/* 600px未満: 全画面ボタンは非表示（API が効かないため） */

/* --------------------------------------------------------------------------
   全画面時: UIを大きく
   -------------------------------------------------------------------------- */
.p-fv__media:-webkit-full-screen,
.p-fv__media:-webkit-full-screen {

  /* スマホ幅で全画面時も、全画面前と同じコンパクトなボタンサイズにする */
}

.p-fv__media:fullscreen,
.p-fv__media:-webkit-full-screen {

  /* スマホ幅で全画面時も、全画面前と同じコンパクトなボタンサイズにする */
}

.p-fv__media:-webkit-full-screen .p-fv__control-top,
.p-fv__media:-webkit-full-screen .p-fv__control-top {
  top: 24px;
  top: 1.5rem;
  right: 24px;
  right: 1.5rem;
}

.p-fv__media:fullscreen .p-fv__control-top,
.p-fv__media:-webkit-full-screen .p-fv__control-top {
  top: 24px;
  top: 1.5rem;
  right: 24px;
  right: 1.5rem;
}

.p-fv__media:-webkit-full-screen .p-fv__control-bottom,
.p-fv__media:-webkit-full-screen .p-fv__control-bottom {
  right: 24px;
  right: 1.5rem;
  bottom: 66px;
  bottom: 4.125rem; /* 進行バーより少し下側に表示（全画面） */
}

.p-fv__media:fullscreen .p-fv__control-bottom,
.p-fv__media:-webkit-full-screen .p-fv__control-bottom {
  right: 24px;
  right: 1.5rem;
  bottom: 66px;
  bottom: 4.125rem; /* 進行バーより少し下側に表示（全画面） */
}

.p-fv__media:-webkit-full-screen .p-fv__control:not(.p-fv__control--center),
.p-fv__media:-webkit-full-screen .p-fv__control:not(.p-fv__control--center) {
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
}

.p-fv__media:fullscreen .p-fv__control:not(.p-fv__control--center),
.p-fv__media:-webkit-full-screen .p-fv__control:not(.p-fv__control--center) {
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
}

.p-fv__media:-webkit-full-screen .p-fv__control--fullscreen .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__control--mute .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__control--fullscreen .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__control--mute .p-fv__control-icon {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.p-fv__media:fullscreen .p-fv__control--fullscreen .p-fv__control-icon,
.p-fv__media:fullscreen .p-fv__control--mute .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__control--fullscreen .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__control--mute .p-fv__control-icon {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.p-fv__media:-webkit-full-screen .p-fv__volume-wrap,
.p-fv__media:-webkit-full-screen .p-fv__volume-wrap {
  gap: 6px;
  gap: .375rem;
  padding: 0 6px 0 12px;
  padding: 0 .375rem 0 .75rem;
  height: 64px;
  height: 4rem;
}

.p-fv__media:fullscreen .p-fv__volume-wrap,
.p-fv__media:-webkit-full-screen .p-fv__volume-wrap {
  gap: 6px;
  gap: .375rem;
  padding: 0 6px 0 12px;
  padding: 0 .375rem 0 .75rem;
  height: 64px;
  height: 4rem;
}

.p-fv__media:-webkit-full-screen .p-fv__volume-track,
.p-fv__media:-webkit-full-screen .p-fv__volume-track {
  border-radius: .3125rem;
  width: 96px;
  width: 6rem;
  height: 10px;
  height: .625rem;
}

.p-fv__media:fullscreen .p-fv__volume-track,
.p-fv__media:-webkit-full-screen .p-fv__volume-track {
  border-radius: .3125rem;
  width: 96px;
  width: 6rem;
  height: 10px;
  height: .625rem;
}

.p-fv__media:-webkit-full-screen .p-fv__volume-fill,
.p-fv__media:-webkit-full-screen .p-fv__volume-fill {
  border-radius: .3125rem;
}

.p-fv__media:fullscreen .p-fv__volume-fill,
.p-fv__media:-webkit-full-screen .p-fv__volume-fill {
  border-radius: .3125rem;
}

.p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute,
.p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute {
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
}

.p-fv__media:fullscreen .p-fv__volume-wrap .p-fv__control--mute,
.p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute {
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
}

.p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}

.p-fv__media:fullscreen .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}

.p-fv__media:-webkit-full-screen .p-fv__control--center,
.p-fv__media:-webkit-full-screen .p-fv__control--center {
  width: 112px;
  width: 7rem;
  height: 112px;
  height: 7rem;
}

.p-fv__media:fullscreen .p-fv__control--center,
.p-fv__media:-webkit-full-screen .p-fv__control--center {
  width: 112px;
  width: 7rem;
  height: 112px;
  height: 7rem;
}

.p-fv__media:-webkit-full-screen .p-fv__control--center .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__control--center .p-fv__control-icon {
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
}

.p-fv__media:fullscreen .p-fv__control--center .p-fv__control-icon,
.p-fv__media:-webkit-full-screen .p-fv__control--center .p-fv__control-icon {
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
}

.p-fv__media:-webkit-full-screen .p-fv__progress-wrap,
.p-fv__media:-webkit-full-screen .p-fv__progress-wrap {
  gap: 12px;
  gap: .75rem;
  padding: 12px 16px 16px;
  padding: .75rem 1rem 1rem;
}

.p-fv__media:fullscreen .p-fv__progress-wrap,
.p-fv__media:-webkit-full-screen .p-fv__progress-wrap {
  gap: 12px;
  gap: .75rem;
  padding: 12px 16px 16px;
  padding: .75rem 1rem 1rem;
}

.p-fv__media:-webkit-full-screen .p-fv__time,
.p-fv__media:-webkit-full-screen .p-fv__time {
  min-width: 40px;
  min-width: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-fv__media:fullscreen .p-fv__time,
.p-fv__media:-webkit-full-screen .p-fv__time {
  min-width: 40px;
  min-width: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-fv__media:-webkit-full-screen .p-fv__progress,
.p-fv__media:-webkit-full-screen .p-fv__progress {
  height: 10px;
  height: .625rem;
}

.p-fv__media:fullscreen .p-fv__progress,
.p-fv__media:-webkit-full-screen .p-fv__progress {
  height: 10px;
  height: .625rem;
}

.p-fv__media:-webkit-full-screen .p-fv__progress-track,
.p-fv__media:-webkit-full-screen .p-fv__progress-track {
  border-radius: .3125rem;
}

.p-fv__media:fullscreen .p-fv__progress-track,
.p-fv__media:-webkit-full-screen .p-fv__progress-track {
  border-radius: .3125rem;
}

.p-fv__media:-webkit-full-screen .p-fv__progress-fill,
.p-fv__media:-webkit-full-screen .p-fv__progress-fill {
  border-radius: .3125rem;
}

.p-fv__media:fullscreen .p-fv__progress-fill,
.p-fv__media:-webkit-full-screen .p-fv__progress-fill {
  border-radius: .3125rem;
}

.p-fv {
  position: relative;
}

.p-fv::before {
  position: absolute;
  top: -93px;
  top: -5.8125rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
  background: url('../img/fv-bg.svg') no-repeat center top/100% auto;
  width: 100%;
  pointer-events: none;
  content: '';
}

.p-fv::after {
  position: absolute;
  bottom: -50%;
  left: 62%;
  z-index: 1;
  background: url('../img/plane-large.svg') no-repeat center/contain;
  width: clamp(160px, 34.5833333333vw, 498px);
  width: clamp(10rem, 34.5833333333vw, 31.125rem);
  height: clamp(165px, 35.625vw, 513px);
  height: clamp(10.3125rem, 35.625vw, 32.0625rem);
  pointer-events: none;
  content: '';
}

.p-fv__inner {
  margin-inline: auto;
  padding-inline: 30px;
  max-width: calc(1200px + 30px * 2);
}

.p-fv__body {
  gap: 34px;
  gap: 2.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 3;
}

.p-fv__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 48.666666%;
}

.p-fv__catch {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-fv__catch-icon {
  position: relative;
  top: 0;
  left: -8px;
  left: -.5rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: clamp(36px, 7.0833333333vw, 102px);
  width: clamp(2.25rem, 7.0833333333vw, 6.375rem);
  height: auto;
}

.p-fv__catch-text {
  font-size: clamp(14px, 1.6666666667vw, 24px);
  font-size: clamp(.875rem, 1.6666666667vw, 1.5rem);
  font-weight: 500;
  letter-spacing: .07em;
  line-height: 1.6;
  white-space: nowrap;
}

.p-fv__catch-em {
  position: relative;
  padding-top: .4em;
  color: #00A85A;
  font-weight: 700;
}

.p-fv__catch-em::before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(circle, #00A85A 2px, transparent 2px);
  background-position: left center;
  background-repeat: repeat-x;
  background-size: 1em 4px;
  width: 100%;
  height: 4px;
  content: '';
}

.p-fv__title-wrap {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-fv__badge {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: clamp(42px, 6.6666666667vw, 96px);
  width: clamp(2.625rem, 6.6666666667vw, 6rem);
  height: auto;
}

.p-fv__title {
  display: inline-block;
  color: #00A85A;
  font-size: clamp(32px, 4.4444444444vw, 64px);
  font-size: clamp(2rem, 4.4444444444vw, 4rem);
  font-weight: 500;
  letter-spacing: -.1em;
  line-height: 1.2;
  white-space: nowrap;
}

.p-fv__sub {
  margin-inline: auto;
  padding-block: 8px;
  padding-block: .5rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  position: relative;
  margin-top: 13px;
  margin-top: .8125rem;
  border-radius: .25rem;
  background-color: #FBFAF7;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 420px;
  max-width: 26.25rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .05em;
  text-align: center;
  word-break: auto-phrase;
}

.p-fv__sub::after {
  position: absolute;
  bottom: -6px;
  bottom: -.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 10px solid #FBFAF7;
  border-top: .625rem solid #FBFAF7;
  border-right: 6px solid transparent;
  border-right: .375rem solid transparent;
  border-left: 6px solid transparent;
  border-left: .375rem solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-fv__sub-text {
  display: inline;
  vertical-align: middle;
  white-space: nowrap;
}

.p-fv__sub-text::before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-right: .5rem;
  background: url('../img/fv-hand-finger.svg') no-repeat center/contain;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  content: '';
}

.p-fv__sub-text span {
  display: inline-block;
}

.p-fv__button-wrapper {
  margin-top: 10px;
  margin-top: .625rem;
  text-align: center;
}

.p-fv__media {
  aspect-ratio: 584/330;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 0; /* スタッキングコンテキストを生成し、タブレットで動画が黄色背景の背後に回るのを防ぐ */
  margin-top: 16px;
  margin-top: 1rem;

  /* 黄色の影（video から右下にずれたイメージ・値はこれまで通り） */
  -webkit-box-shadow: .75rem .75rem 0 0 #F7F091;
  box-shadow: .75rem .75rem 0 0 #F7F091;
  border-radius: .5rem;
  width: 100%;
  max-width: 48.333333%;
  overflow: hidden;
}

.p-fv__media img {
  aspect-ratio: 584/330;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* [削除済み・復元用メモ] p-fv__poster-img: 動画再生前のポスター画像。.p-fv__poster-img のスタイル、.p-fv__media.is-playing .p-fv__poster-img、fullscreen 時の .p-fv__poster-img を復元する。HTML の img と fv-video.js の updatePosterVisibility / play・pause での is-playing 付与も要復元 */

/* 全画面時: コンテナを画面いっぱいに、動画も全面表示、装飾は非表示 */
.p-fv__media:-webkit-full-screen,
.p-fv__media:-webkit-full-screen {
  aspect-ratio: auto;
  -webkit-box-shadow: none;
  box-shadow: none; /* 全画面時は黄色の影を消す */
  background-color: #000;
  width: 100%;
  max-width: none;
  height: 100%;
}

.p-fv__media:fullscreen,
.p-fv__media:-webkit-full-screen {
  aspect-ratio: auto;
  -webkit-box-shadow: none;
  box-shadow: none; /* 全画面時は黄色の影を消す */
  background-color: #000;
  width: 100%;
  max-width: none;
  height: 100%;
}

.p-fv__media:-webkit-full-screen .p-fv__video,
.p-fv__media:-webkit-full-screen .p-fv__video {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain; /* 動画の縦横比を保って画面いっぱいに表示 */
}

.p-fv__media:fullscreen .p-fv__video,
.p-fv__media:-webkit-full-screen .p-fv__video {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain; /* 動画の縦横比を保って画面いっぱいに表示 */
}

/* 動画はメディアエリアいっぱいに表示 */
.p-fv__media .p-fv__video {
  inset: 0;
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); /* Safari/タブレットで描画レイヤーを前面に */
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-fv__video {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: .5rem;
}

.p-fv__marquee {
  padding-block: 16px;
  padding-block: 1rem;
  position: relative;
  z-index: 2;
  margin-top: 104px;
  margin-top: 6.5rem;
  background-color: #43D490;
  overflow: hidden;
}

.p-fv__marquee-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
  will-change: transform;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-fv__marquee-list {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 16px;
  padding-left: 1rem;
  list-style: none;
}

.p-fv__marquee-item {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-fv__marquee-link {
  display: block;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  border-radius: 999px;
  background-color: #fff;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  color: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  /* ホバーはポインターがある環境（PC等）のみ */
}

.p-fv__marquee-hash {
  color: #EC7E00;
}

@-webkit-keyframes marquee {

  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-33.3333333333%);
    transform: translateX(-33.3333333333%);
  }
}

@keyframes marquee {

  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-33.3333333333%);
    transform: translateX(-33.3333333333%);
  }
}

.p-header {
  z-index: 999;
  border-bottom: 3px solid #2DBD4A;
  background-color: #fff;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  height: 80px;
  height: 5rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 105px;
  padding-left: 6.5625rem;
}

.p-header__catch {
  margin-top: 8px;
  margin-top: .5rem;
  color: #707070;
  font-size: 11px;
  font-size: .6875rem;
  line-height: 1;
}

.p-header__logo {
  display: inline-block;
  margin-top: 8px;
  margin-top: .5rem;
  padding-right: 8px;
  padding-right: .5rem;
  padding-bottom: 4px;
  padding-bottom: .25rem;
}

.p-header__logo img {
  aspect-ratio: 280/36;
  width: 100%;
  max-width: 280px;
  max-width: 17.5rem;
  height: auto;
}

.p-request {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, .9);
  padding-top: 72px;
  padding-top: 4.5rem;
}

.p-request::before {
  position: absolute;
  top: 690px;
  top: 43.125rem;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .7;
  z-index: 0;
  background: url('../img/request-bg.svg') no-repeat center/100% 100%;
  pointer-events: none;
  content: '';
}

.p-request__inner {
  margin-inline: auto;
  padding-inline: 30px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(75rem + 30px * 2);
}

.p-request__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}

.p-request__title-highlight {
  display: inline-block;
  position: relative;
}

.p-request__title-highlight::after {
  position: absolute;
  bottom: 10px;
  bottom: .625rem;
  left: 0;
  z-index: -1;
  background-color: #F7F091;
  width: 100%;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-request__steps {
  gap: 28px;
  gap: 1.75rem;
  margin-inline: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 0;
  width: 100%;
  list-style: none;
}

.p-request__step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 36px;
  padding-top: 2.25rem;
  width: 100%;
  max-width: 257px;
  max-width: 16.0625rem;
}

.p-request__step.p-request__step--active {
  padding-top: 40px;
  padding-top: 2.5rem;
  width: 100%;
  max-width: 346px;
  max-width: 21.625rem;
}

.p-request__step:not(:last-child)::after {
  position: absolute;
  top: 54%;
  right: -20px;
  right: -1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  border-top: 7px solid transparent;
  border-top: .4375rem solid transparent;
  border-bottom: 8px solid transparent;
  border-bottom: .5rem solid transparent;
  border-left: 10px solid #00A85A;
  border-left: .625rem solid #00A85A;
  content: '';
}

.p-request__step-badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: #00A85A;
  width: 72px;
  width: 4.5rem;
  height: 72px;
  height: 4.5rem;
  color: #fff;
}

.p-request__step-badge::after {
  position: absolute;
  bottom: -8px;
  bottom: -.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 12px solid #00A85A;
  border-top: .75rem solid #00A85A;
  border-right: 8px solid transparent;
  border-right: .5rem solid transparent;
  border-left: 8px solid transparent;
  border-left: .5rem solid transparent;
  content: '';
}

.p-request__step--active .p-request__step-badge {
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
}

.p-request__step-label,
.p-request__step-num {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  line-height: 1;
}

.p-request__step-label {
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: .05em;
}

.p-request__step-num {
  font-size: 24px;
  font-size: 1.5rem;
}

.p-request__step--active .p-request__step-label,
.p-request__step--active .p-request__step-num {
  color: #F7F091;
  font-weight: 700;
}

.p-request__step--active .p-request__step-label {
  font-size: 14px;
  font-size: .875rem;
}

.p-request__step--active .p-request__step-num {
  font-size: 26px;
  font-size: 1.625rem;
}

.p-request__step-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: .5rem;
  background-color: #FBFAF7;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
  width: 100%;
  height: auto;
}

.p-request__step--active .p-request__step-card {
  border: 4px solid #00A85A;
}

.p-request__step-img {
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 180px;
  width: 11.25rem;
  height: 180px;
  height: 11.25rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-request__step--active .p-request__step-img {
  width: 239px;
  width: 14.9375rem;
  height: 210px;
  height: 13.125rem;
}

.p-request__step-text {
  margin-top: 64px;
  margin-top: 4rem;
  text-align: center;
  word-break: auto-phrase;
}

.p-request__step--active .p-request__step-text {
  margin-top: 82px;
  margin-top: 5.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  word-break: auto-phrase;
}

.p-request__step-text-accent {
  color: #00A85A;
  font-weight: 700;
}

.p-request__points {
  padding-inline: clamp(24px, 6.9444444444vw, 100px);
  padding-inline: clamp(1.5rem, 6.9444444444vw, 6.25rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 114px auto 0;
  margin: 7.125rem auto 0;
  border-radius: 5rem;
  background-color: #F9FAFB;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  width: 100%;
  max-width: 990px;
  max-width: 61.875rem;
}

.p-request__points-checklist {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 108px;
  width: 6.75rem;
  height: auto;
}

.p-request__points-title {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  margin-top: 4.625rem;
  color: #00A85A;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
}

.p-request__points-list-wrap {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  margin-top: 2rem;
  border-radius: .75rem;
  background-color: #fff;
  padding: 48px 64px;
  padding: 3rem 4rem;
}

.p-request__points-list {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-request__points-item {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-request__points-icon {
  aspect-ratio: 1/1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  width: 2.25rem;
}

.p-request__points-text {
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-request__points-accent {
  color: #00A85A;
}

.p-request__comment {
  margin-inline: auto;
  gap: clamp(24px, 5.5555555556vw, 80px);
  gap: clamp(1.5rem, 5.5555555556vw, 5rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  z-index: 1;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 789px;
  max-width: 49.3125rem;
}

.p-request__comment-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-request__comment-text {
  margin-left: clamp(0px, 2.7777777778vw, 40px);
  margin-left: clamp(0rem, 2.7777777778vw, 2.5rem);
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .03em;
}

.p-request__comment-line {
  display: block;
  line-height: 2.2;
}

.p-request__comment-highlight {
  position: relative;
  isolation: isolate;
}

.p-request__comment-highlight::after {
  position: absolute;
  bottom: 2px;
  bottom: .125rem;
  left: 0;
  z-index: -1;
  background-color: #F7F091;
  width: 100%;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-request__comment-author {
  display: block;
  margin-top: 4px;
  margin-top: .25rem;
  color: #00A85A;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
}

.p-request__comment-img {
  aspect-ratio: 1/1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  width: clamp(140px, 11.4583333333vw, 165px);
  width: clamp(8.75rem, 11.4583333333vw, 10.3125rem);
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-request__button {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-voice {
  border-radius: 6.25rem 6.25rem 0 0;
  background-color: #F5F2EA;
  padding-top: 90px;
  padding-top: 5.625rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-voice__inner {
  margin-inline: auto;
  padding-inline: 30px;
  max-width: calc(1200px + 30px * 2);
}

.p-voice__title {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
  margin-top: .625rem;
  letter-spacing: .03em;
  line-height: 1.4;
}

.p-voice__title-sub {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-voice__title-main {
  position: relative;
  color: #00A85A;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-voice__title-main::after {
  position: absolute;
  top: -25px;
  top: -1.5625rem;
  right: -45px;
  right: -2.8125rem;
  background: url('../img/voice-deco.svg') no-repeat center/contain;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  pointer-events: none;
  content: '';
}

.p-voice__list {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-voice__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-voice__case {
  margin-bottom: 48px;
  margin-bottom: 3rem;
  color: #00A85A;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.p-voice__card {
  padding-inline: 24px;
  padding-inline: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1.25rem;
  background-color: #fff;
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
  width: 100%;
}

.p-voice__badge {
  padding-block: 20px;
  padding-block: 1.25rem;
  padding-inline: clamp(12px, 1.5vw, 20px);
  padding-inline: clamp(.75rem, 1.5vw, 1.25rem);
  position: absolute;
  top: -37px;
  top: -2.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 1rem;
  background-color: #00A85A;
  width: calc(100% - 3.75rem);
}

.p-voice__badge::after {
  position: absolute;
  bottom: -9px;
  bottom: -.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-width: 10px 8px 0 8px;
  border-width: .625rem .5rem 0 .5rem;
  border-style: solid;
  border-color: #00A85A transparent transparent transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-voice__badge-text {
  color: #fff;
  font-size: clamp(13px, 1.1111111111vw, 16px);
  font-size: clamp(.8125rem, 1.1111111111vw, 1rem);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: center;
}

.p-voice__result {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-voice__result-em {
  color: #00A85A;
}

.p-voice__img {
  margin-top: 16px;
  margin-top: 1rem;
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
}

.p-voice__img img {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-worry {
  background-color: #F6F0DA;
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-worry__inner {
  margin-inline: auto;
  padding-inline: 30px;
  position: relative;
  max-width: calc(1200px + 30px * 2);
}

.p-worry__heading {
  position: relative;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  text-align: center;
}

.p-worry__heading::before {
  aspect-ratio: 146/276;
  position: absolute;
  top: -84%;
  left: 13%;
  z-index: 0;
  background: url('../img/worry-visual-01.svg') no-repeat bottom/contain;
  width: clamp(80px, 10.4166666667vw, 150px);
  width: clamp(5rem, 10.4166666667vw, 9.375rem);
  pointer-events: none;
  content: '';
}

.p-worry__heading::after {
  aspect-ratio: 144/281;
  position: absolute;
  top: -84%;
  right: 13%;
  z-index: 0;
  background: url('../img/worry-visual-02.svg') no-repeat bottom/contain;
  width: clamp(80px, 10.4166666667vw, 150px);
  width: clamp(5rem, 10.4166666667vw, 9.375rem);
  pointer-events: none;
  content: '';
}

.p-worry__heading-sub {
  color: #7D7A6E;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-worry__heading-title {
  color: #00A85A;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-worry__list {
  gap: 8px;
  gap: .5rem;
  display: grid;
  position: relative;
  grid-template-columns: repeat(6, 1fr);
  z-index: 1;
  margin-top: 50px;
  margin-top: 3.125rem;
  list-style: none;
}

.p-worry__item {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: span 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: .5rem;
  background-color: #FFFEF9;
  padding: 32px 24px;
  padding: 2rem 1.5rem;
}

.p-worry__item:nth-child(4),
.p-worry__item:nth-child(5) {
  grid-column: span 3;
}

.p-worry__item-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 93px;
  width: 5.8125rem;
  height: 93px;
  height: 5.8125rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-worry__item-body {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-worry__item-title {
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}

.p-worry__item:nth-child(1) .p-worry__item-title,
.p-worry__item:nth-child(2) .p-worry__item-title {
  font-size: 24px;
  font-size: 1.5rem;
}

.p-worry__item:nth-child(3) .p-worry__item-title {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-worry__item:nth-child(4) .p-worry__item-title,
.p-worry__item:nth-child(5) .p-worry__item-title {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-worry__item-text {
  color: #7D7A6E;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-worry__cta {
  margin-inline: auto;
  position: relative;
  margin-top: 90px;
  margin-top: 5.625rem;
  padding-left: calc(clamp(11.25rem, 20vw, 18.3125rem) * .5);
  width: 100%;
  max-width: clamp(600px, 80vw, 1000px);
  max-width: clamp(37.5rem, 80vw, 62.5rem);
}

.p-worry__cta-media {
  aspect-ratio: 293/350;
  position: absolute;
  bottom: -36px;
  bottom: -2.25rem;
  left: 0;
  z-index: 1;
  background: url('../img/worry-phone.svg') no-repeat center/contain;
  width: clamp(180px, 20vw, 293px);
  width: clamp(11.25rem, 20vw, 18.3125rem);
}

.p-worry__cta-media--sp {
  display: none;
}

.p-worry__cta-box {
  padding-inline: 56px;
  padding-inline: 3.5rem;
  padding-block: clamp(30px, 4.17vw, 56px);
  padding-block: clamp(1.875rem, 4.17vw, 3.5rem);
  display: grid;
  position: relative;
  place-items: center;
  border: 4px solid #43D490;
  border: .25rem solid #43D490;
  border-radius: 1.5rem;
  background-color: #fff;
  width: 100%;
}

.p-worry__cta-box::before {
  position: absolute;
  top: 15%;
  left: 40%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  background: url('../img/arrow-down.svg') no-repeat center/contain;
  width: clamp(30px, 4.17vw, 60px);
  width: clamp(1.875rem, 4.17vw, 3.75rem);
  height: clamp(40px, 5.56vw, 80px);
  height: clamp(2.5rem, 5.56vw, 5rem);
  content: '';
}

.p-worry__cta-box::after {
  position: absolute;
  top: clamp(-44px, -3.06vw, -22px);
  top: clamp(-2.75rem, -3.06vw, -1.375rem);
  right: clamp(-44px, -3.06vw, -22px);
  right: clamp(-2.75rem, -3.06vw, -1.375rem);
  background: url('../img/worry-dots.svg') no-repeat center/contain;
  width: clamp(44px, 6.11vw, 88px);
  width: clamp(2.75rem, 6.11vw, 5.5rem);
  height: clamp(44px, 6.11vw, 88px);
  height: clamp(2.75rem, 6.11vw, 5.5rem);
  pointer-events: none;
  content: '';
}

.p-worry__cta-text {
  isolation: isolate;
  color: #333;
  font-size: clamp(18px, 2vw, 28px);
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.8;
}

.p-worry__cta-highlight {
  color: #00A85A;
}

.p-worry__cta-underline {
  display: inline;
  position: relative;
}

.p-worry__cta-underline::after {
  position: absolute;
  bottom: 2px;
  bottom: .125rem;
  left: 0;
  z-index: -1;
  background-color: #F7F091;
  width: 100%;
  height: 8px;
  height: .5rem;
  content: '';
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-mobile {
  display: none !important;
}

.u-br-sp {
  display: none;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

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

  .c-button.c-button--fv {
    font-size: clamp(18px, 1.3888888889vw, 20px);
    font-size: clamp(1.125rem, 1.3888888889vw, 1.25rem);
  }

  .c-button--fv .c-button__badge {
    font-size: clamp(14px, 1.25vw, 18px);
    font-size: clamp(.875rem, 1.25vw, 1.125rem);
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .c-example-card__tag {
    padding-inline: 8px;
    padding-inline: .5rem;
    padding-block: 8px;
    padding-block: .5rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-achievement__head {
    gap: 40px;
    gap: 2.5rem;
  }

  .p-achievement__head-icon {
    width: 180px;
    width: 11.25rem;
    max-width: 28vw;
  }

  .p-achievement__title {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-achievement__point-text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-achievement__note {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-voice {
    border-radius: 3.75rem 3.75rem 0 0;
  }

  .p-voice__title {
    gap: 8px;
    gap: .5rem;
  }

  .p-voice__title-sub {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-voice__title-main {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-voice__title-main::after {
    top: -18px;
    top: -1.125rem;
    right: -34px;
    right: -2.125rem;
    width: 34px;
    width: 2.125rem;
    height: 34px;
    height: 2.125rem;
  }

  .p-voice__card {
    padding-inline: 14px;
    padding-inline: .875rem;
    padding-top: 48px;
    padding-top: 3rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }

  .p-voice__badge {
    padding: 14px 12px;
    padding: .875rem .75rem;
    width: calc(100% - 1.75rem);
  }

  .p-voice__badge-text {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-voice__result {
    margin-top: 16px;
    margin-top: 1rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-voice__img {
    margin-top: 12px;
    margin-top: .75rem;
    width: 150px;
    width: 9.375rem;
  }

  .u-hidden--tab {
    display: none !important;
  }
}

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

  .c-button.c-button--fv {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: min(640px, 92vw);
    max-width: min(40rem, 92vw);
  }
}

@media (min-width: 1200px) {

  html {
    font-size: 100%;
  }
}

@media (max-width: 1439px) {

  .p-cta__bar-list {
    gap: 12px;
    gap: .75rem;
  }
}

@media only screen and (max-width: 1220px) {

  .c-button--cta .c-button__icon {
    width: 38px;
    width: 2.375rem;
    height: 38px;
    height: 2.375rem;
  }

  .p-cta__card-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-cta__content {
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-cta__img {
    margin-top: 0;
    margin-left: 0;
    max-width: 400px;
    max-width: 25rem;
  }

  .p-request__steps {
    gap: 16px;
    gap: 1rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-request__step {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    max-width: none;
  }

  .p-request__step.p-request__step--active {
    -webkit-box-flex: 1.35;
    -webkit-flex: 1.35;
    -ms-flex: 1.35;
    flex: 1.35;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    max-width: none;
  }

  .p-request__step:not(:last-child)::after {
    right: clamp(-14px, -1.6393442623vw, -20px);
    right: clamp(-.875rem, -1.6393442623vw, -1.25rem);
    border-top-width: clamp(5px, .6557377049vw, 8px);
    border-top-width: clamp(.3125rem, .6557377049vw, .5rem);
    border-bottom-width: clamp(5px, .6557377049vw, 8px);
    border-bottom-width: clamp(.3125rem, .6557377049vw, .5rem);
    border-left-width: clamp(8px, .9836065574vw, 12px);
    border-left-width: clamp(.5rem, .9836065574vw, .75rem);
  }

  .p-request__step-badge {
    width: clamp(65px, 5.9016393443vw, 72px);
    width: clamp(4.0625rem, 5.9016393443vw, 4.5rem);
    height: clamp(65px, 5.9016393443vw, 72px);
    height: clamp(4.0625rem, 5.9016393443vw, 4.5rem);
  }

  .p-request__step-img {
    width: clamp(100px, 14.7540983607vw, 180px);
    width: clamp(6.25rem, 14.7540983607vw, 11.25rem);
    height: clamp(100px, 14.7540983607vw, 180px);
    height: clamp(6.25rem, 14.7540983607vw, 11.25rem);
  }

  .p-request__step--active .p-request__step-img {
    width: clamp(130px, 19.5901639344vw, 239px);
    width: clamp(8.125rem, 19.5901639344vw, 14.9375rem);
    height: clamp(114px, 17.2131147541vw, 210px);
    height: clamp(7.125rem, 17.2131147541vw, 13.125rem);
  }

  .p-request__step-text {
    font-size: clamp(13px, 1.3114754098vw, 16px);
    font-size: clamp(.8125rem, 1.3114754098vw, 1rem);
  }

  .p-request__step--active .p-request__step-text {
    font-size: clamp(14px, 1.4754098361vw, 18px);
    font-size: clamp(.875rem, 1.4754098361vw, 1.125rem);
  }
}

@media only screen and (max-width: 1200px) {

  .p-example__list {
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 800px;
    max-width: 50rem;
  }

  .p-example__item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {

  .c-button--fv .c-button__text {
    white-space: nowrap;
  }

  .c-button--fv .c-button__badge {
    padding-inline: clamp(6px, .9765625vw, 10px);
    padding-inline: clamp(.375rem, .9765625vw, .625rem);
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
    margin-left: auto;
    font-size: clamp(13px, 1.7578125vw, 18px);
    font-size: clamp(.8125rem, 1.7578125vw, 1.125rem);
  }

  .c-button--fv .c-button__icon {
    margin-left: clamp(6px, 1.171875vw, 12px);
    margin-left: clamp(.375rem, 1.171875vw, .75rem);
    width: clamp(23px, 3.90625vw, 40px);
    width: clamp(1.4375rem, 3.90625vw, 2.5rem);
    height: clamp(23px, 3.90625vw, 40px);
    height: clamp(1.4375rem, 3.90625vw, 2.5rem);
  }
}

@media screen and (max-width: 1024px) {

  .l-fv {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .c-button.c-button--fv {
    padding-block: clamp(21px, 2.34375vw, 24px);
    padding-block: clamp(1.3125rem, 2.34375vw, 1.5rem);
    padding-inline: clamp(8px, 2.34375vw, 24px);
    padding-inline: clamp(.5rem, 2.34375vw, 1.5rem);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    font-size: clamp(13px, 1.953125vw, 20px);
    font-size: clamp(.8125rem, 1.953125vw, 1.25rem);
  }

  .c-example-card__balloon-text {
    font-size: 18px;
    font-size: 1.125rem;
    white-space: nowrap;
  }

  .c-example-card__tag {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-achievement::before {
    display: none;
  }

  .p-achievement::after {
    display: none;
  }

  .p-example__inner::before {
    top: 0;
    left: 15%;
  }

  .p-fv::after {
    bottom: -20%;
  }

  .p-fv__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-fv__content {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-fv__catch {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-fv__catch-text {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-fv__title-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-fv__title {
    font-size: 52px;
    font-size: 3.25rem;
  }

  .p-fv__sub {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-fv__media {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    margin-top: 0;
    max-width: min(480px, 85%);
    max-width: min(30rem, 85%);
  }

  .p-fv__marquee {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-worry__list {
    grid-template-columns: 1fr;
    margin: 24px auto 0;
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 800px;
    max-width: 50rem;
  }

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (max-width: 920px) {

  .c-footer-button__text {
    padding-right: 26px;
    padding-right: 1.625rem;
    font-size: clamp(13px, 2.8vw, 15px);
    font-size: clamp(.8125rem, 2.8vw, .9375rem);
  }

  .c-footer-button {
    padding-right: 12px;
    padding-right: .75rem;
    padding-left: 12px;
    padding-left: .75rem;
    min-height: 64px;
    min-height: 4rem;
  }
}

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

  :root {
    --header-height: 80px;
  }

  .l-achievement {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .l-fv {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .l-worry {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .c-button {
    padding-block: 21px;
    padding-block: 1.3125rem;
    padding-inline: clamp(8px, 3vw, 24px);
    padding-inline: clamp(.5rem, 3vw, 1.5rem);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 400px;
    max-width: 25rem;
    font-size: clamp(13px, 4vw, 16px);
    font-size: clamp(.8125rem, 4vw, 1rem);
  }

  .c-button__badge {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    margin-left: 0;
    border: 2px solid #E7711B;
    border: .125rem solid #E7711B;
    padding: 4px clamp(6px, 2.5vw, 10px);
    padding: .25rem clamp(.375rem, 2.5vw, .625rem);
    font-size: clamp(13px, 4vw, 16px);
    font-size: clamp(.8125rem, 4vw, 1rem);
  }

  .c-button__text {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    white-space: normal;
  }

  .c-button__icon {
    margin-left: 0;
    width: 23px;
    width: 1.4375rem;
    height: 23px;
    height: 1.4375rem;
  }

  .c-button.c-button--fv {
    padding-block: 21px;
    padding-block: 1.3125rem;
    padding-inline: clamp(8px, 3vw, 24px);
    padding-inline: clamp(.5rem, 3vw, 1.5rem);
    gap: 10px;
    gap: .625rem;
    max-width: 400px;
    max-width: 25rem;
    font-size: clamp(13px, 4vw, 16px);
    font-size: clamp(.8125rem, 4vw, 1rem);
  }

  .c-button--fv .c-button__text {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }

  .c-button--fv .c-button__icon {
    margin-left: 0;
  }

  .c-button.c-button--cta {
    padding-block: 21px;
    padding-block: 1.3125rem;
    padding-inline: clamp(8px, 3vw, 24px);
    padding-inline: clamp(.5rem, 3vw, 1.5rem);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 400px;
    max-width: 25rem;
    font-size: clamp(13px, 4vw, 16px);
    font-size: clamp(.8125rem, 4vw, 1rem);
  }

  .c-button--cta .c-button__icon {
    width: 23px;
    width: 1.4375rem;
    height: 23px;
    height: 1.4375rem;
  }

  .c-button--cta .c-button__badge {
    margin-left: 0;
  }

  .c-button--example {
    padding-inline: 20px;
    padding-inline: 1.25rem;
    gap: 6px;
    gap: .375rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .c-example-card {
    padding-inline: max(24px, (100% - 400px) / 2);
    padding-inline: max(1.5rem, (100% - 25rem) / 2);
  }

  .c-example-card__balloon-cross {
    margin-inline: 6px;
    margin-inline: .375rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-example-card__body {
    gap: 18px;
    gap: 1.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .c-example-card__img-wrap {
    margin-inline: auto;
    width: 100%;
    max-width: 250px;
    max-width: 15.625rem;
    height: auto;
  }

  .c-example-card__img {
    aspect-ratio: 120/80;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transform-origin: 50% 40%;
    transform-origin: 50% 40%;
    -o-object-position: 50% 40%;
    object-position: 50% 40%;
  }

  .c-example-card__img-wrap--pos-1 .c-example-card__img {
    -webkit-transform-origin: 10% 60%;
    transform-origin: 10% 60%;
    -o-object-position: 10% 60%;
    object-position: 10% 60%;
  }

  .c-example-card__img-wrap--pos-2 .c-example-card__img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transform-origin: 90% 70%;
    transform-origin: 90% 70%;
    -o-object-position: 90% 70%;
    object-position: 90% 70%;
  }

  .c-example-card__img-wrap--pos-3 .c-example-card__img {
    -webkit-transform-origin: 100% 10%;
    transform-origin: 100% 10%;
    -o-object-position: 100% 10%;
    object-position: 100% 10%;
  }

  .c-example-card__img-wrap--pos-4 .c-example-card__img {
    -webkit-transform-origin: 100% 10%;
    transform-origin: 100% 10%;
    -o-object-position: 100% 10%;
    object-position: 100% 10%;
  }

  .c-example-card__img-wrap--pos-5 .c-example-card__img {
    -webkit-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
    -o-object-position: 10% 10%;
    object-position: 10% 10%;
  }

  .c-example-card__img-wrap--pos-6 .c-example-card__img {
    -webkit-transform-origin: 60% 30%;
    transform-origin: 60% 30%;
    -o-object-position: 60% 30%;
    object-position: 60% 30%;
  }

  .c-example-card__info {
    gap: 16px;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
    width: 100%;
    max-width: none;
  }

  .c-example-card__tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .c-example-card__employment {
    font-size: 14px;
    font-size: .875rem;
  }

  .c-example-card__button {
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-achievement {
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }

  .p-achievement__inner {
    padding-inline: 20px;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-achievement__head {
    gap: 16px;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .p-achievement__head-icon {
    width: 100px;
    width: 6.25rem;
    max-width: 40vw;
  }

  .p-achievement__title {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-achievement__points {
    gap: 10px;
    gap: .625rem;
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .p-achievement__point {
    gap: 12px;
    gap: .75rem;
    border-radius: .5rem;
    background-color: #00A85A;
    padding: 12px 16px;
    padding: .75rem 1rem;
  }

  .p-achievement__point-icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-color: #fff;
    width: 64px;
    width: 4rem;
    height: 64px;
    height: 4rem;
  }

  .p-achievement__point-icon__img {
    width: 100%;
  }

  .p-achievement__point-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 0;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
  }

  .p-achievement__point-text {
    font-size: 13px;
    font-size: .8125rem;
    line-height: 1.6;
  }

  .p-achievement__note {
    padding-inline: 30px;
    padding-inline: 1.875rem;
    margin-top: 36px;
    margin-top: 2.25rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-achievement__note::before {
    position: absolute;
    bottom: 10px;
    bottom: .625rem;
    left: 0;
  }

  .p-achievement__note::after {
    position: absolute;
    right: 0;
    bottom: 10px;
    bottom: .625rem;
  }

  .p-achievement__stats {
    padding-block: 24px;
    padding-block: 1.5rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
    gap: 16px;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .p-achievement__stats-media {
    width: 140px;
    width: 8.75rem;
  }

  .p-achievement__stats-body {
    text-align: center;
  }

  .p-achievement__stats-label {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-achievement__stats-value {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-achievement__stats-number {
    font-size: 56px;
    font-size: 3.5rem;
  }

  .p-achievement__stats-unit {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-achievement__stats-unit-em {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-achievement__desc {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-achievement__cta {
    padding-inline: 24px;
    padding-inline: 1.5rem;
    margin-top: 20px;
    margin-top: 1.25rem;
    padding-top: 14px;
    padding-top: .875rem;
  }

  .p-cta {
    padding-block: 60px;
    padding-block: 3.75rem;
  }

  .p-cta__inner {
    padding-inline: 20px;
  }

  .p-cta__card {
    padding-inline: 24px;
    padding-inline: 1.5rem;
    border-radius: 1.5rem;
    padding-top: 80px;
    padding-top: 5rem;
    padding-bottom: 36px;
    padding-bottom: 2.25rem;
  }

  .p-cta__card::before {
    top: -52px;
    top: -3.25rem;
    left: 16px;
    left: 1rem;
    width: 140px;
    width: 8.75rem;
    height: 124px;
    height: 7.75rem;
  }

  .p-cta__card-main {
    gap: 16px;
    gap: 1rem;
  }

  .p-cta__content {
    max-width: 100%;
  }

  .p-cta__title {
    font-size: clamp(20px, 10vw - 12px, 28px);
    font-size: clamp(1.25rem, 10vw - .75rem, 1.75rem);
    white-space: nowrap;
  }

  .p-cta__body {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-cta__text {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.8;
  }

  .p-cta__quote {
    margin-block: 12px;
    margin-block: .75rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.8;
  }

  .p-cta__img {
    max-width: 240px;
    max-width: 15rem;
  }

  .p-cta__button-wrapper {
    margin-top: 24px;
    margin-top: 1.5rem;
    padding-top: 14px;
    padding-top: .875rem;
  }

  .p-cta__bar {
    padding-block: 20px;
    padding-block: 1.25rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-cta__bar {
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }

  .p-cta__bar-inner {
    padding-inline: 20px;
  }

  .p-example {
    padding-block: 60px;
    padding-block: 3.75rem;
  }

  .p-example__inner {
    padding-inline: 20px;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-example__inner::before {
    top: 0;
    left: 10%;
  }

  .p-example__heading-sub {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-example__heading-title-inner {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 26px;
    font-size: 1.625rem;
  }

  .p-example__list {
    margin-inline: auto;
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 32px;
    margin-top: 2rem;
    max-width: 480px;
    max-width: 30rem;
  }

  .p-example__item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-fv__control-top {
    top: 8px;
    top: .5rem;
    right: 8px;
    right: .5rem;
  }

  .p-fv__control-bottom {
    right: 8px;
    right: .5rem;
    bottom: 20px;
    bottom: 1.25rem;
  }

  .p-fv__control:not(.p-fv__control--center) {
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-fv__control--fullscreen .p-fv__control-icon {
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }

  .p-fv__volume-wrap {
    gap: 4px;
    gap: .25rem;
    padding: 0 4px 0 6px;
    padding: 0 .25rem 0 .375rem;
    height: 32px;
    height: 2rem;
  }

  .p-fv__volume-track {
    border-radius: .15625rem;
    width: 44px;
    width: 2.75rem;
    height: 5px;
    height: .3125rem;
  }

  .p-fv__volume-fill {
    border-radius: .15625rem;
  }

  .p-fv__volume-wrap .p-fv__control--mute {
    margin: 0 -4px 0 0;
    margin: 0 -.25rem 0 0;
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
  }

  .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon {
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem;
  }

  .p-fv__control--center {
    width: 56px;
    width: 3.5rem;
    height: 56px;
    height: 3.5rem;
  }

  .p-fv__control--center .p-fv__control-icon {
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-fv__progress-wrap {
    gap: 6px;
    gap: .375rem;
    padding: 4px 6px 6px;
    padding: .25rem .375rem .375rem;
  }

  .p-fv__time {
    min-width: 28px;
    min-width: 1.75rem;
    font-size: 11px;
    font-size: .6875rem;
  }

  .p-fv__progress {
    height: 5px;
    height: .3125rem;
  }

  .p-fv__progress-track {
    border-radius: .15625rem;
  }

  .p-fv__progress-fill {
    border-radius: .15625rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__control-top,
  .p-fv__media:-webkit-full-screen .p-fv__control-top {
    top: 8px;
    top: .5rem;
    right: 8px;
    right: .5rem;
  }

  .p-fv__media:fullscreen .p-fv__control-top,
  .p-fv__media:-webkit-full-screen .p-fv__control-top {
    top: 8px;
    top: .5rem;
    right: 8px;
    right: .5rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__control-bottom,
  .p-fv__media:-webkit-full-screen .p-fv__control-bottom {
    right: 8px;
    right: .5rem;
    bottom: 38px;
    bottom: 2.375rem;
  }

  .p-fv__media:fullscreen .p-fv__control-bottom,
  .p-fv__media:-webkit-full-screen .p-fv__control-bottom {
    right: 8px;
    right: .5rem;
    bottom: 38px;
    bottom: 2.375rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__control:not(.p-fv__control--center),
  .p-fv__media:-webkit-full-screen .p-fv__control:not(.p-fv__control--center) {
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-fv__media:fullscreen .p-fv__control:not(.p-fv__control--center),
  .p-fv__media:-webkit-full-screen .p-fv__control:not(.p-fv__control--center) {
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__control--fullscreen .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__control--mute .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__control--fullscreen .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__control--mute .p-fv__control-icon {
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }

  .p-fv__media:fullscreen .p-fv__control--fullscreen .p-fv__control-icon,
  .p-fv__media:fullscreen .p-fv__control--mute .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__control--fullscreen .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__control--mute .p-fv__control-icon {
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap,
  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap {
    gap: 4px;
    gap: .25rem;
    padding: 0 4px 0 6px;
    padding: 0 .25rem 0 .375rem;
    height: 32px;
    height: 2rem;
  }

  .p-fv__media:fullscreen .p-fv__volume-wrap,
  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap {
    gap: 4px;
    gap: .25rem;
    padding: 0 4px 0 6px;
    padding: 0 .25rem 0 .375rem;
    height: 32px;
    height: 2rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__volume-track,
  .p-fv__media:-webkit-full-screen .p-fv__volume-track {
    border-radius: .15625rem;
    width: 44px;
    width: 2.75rem;
    height: 5px;
    height: .3125rem;
  }

  .p-fv__media:fullscreen .p-fv__volume-track,
  .p-fv__media:-webkit-full-screen .p-fv__volume-track {
    border-radius: .15625rem;
    width: 44px;
    width: 2.75rem;
    height: 5px;
    height: .3125rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__volume-fill,
  .p-fv__media:-webkit-full-screen .p-fv__volume-fill {
    border-radius: .15625rem;
  }

  .p-fv__media:fullscreen .p-fv__volume-fill,
  .p-fv__media:-webkit-full-screen .p-fv__volume-fill {
    border-radius: .15625rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute,
  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute {
    margin: 0 -4px 0 0;
    margin: 0 -.25rem 0 0;
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
  }

  .p-fv__media:fullscreen .p-fv__volume-wrap .p-fv__control--mute,
  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute {
    margin: 0 -4px 0 0;
    margin: 0 -.25rem 0 0;
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon {
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem;
  }

  .p-fv__media:fullscreen .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__volume-wrap .p-fv__control--mute .p-fv__control-icon {
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__control--center,
  .p-fv__media:-webkit-full-screen .p-fv__control--center {
    width: 56px;
    width: 3.5rem;
    height: 56px;
    height: 3.5rem;
  }

  .p-fv__media:fullscreen .p-fv__control--center,
  .p-fv__media:-webkit-full-screen .p-fv__control--center {
    width: 56px;
    width: 3.5rem;
    height: 56px;
    height: 3.5rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__control--center .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__control--center .p-fv__control-icon {
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-fv__media:fullscreen .p-fv__control--center .p-fv__control-icon,
  .p-fv__media:-webkit-full-screen .p-fv__control--center .p-fv__control-icon {
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__progress-wrap,
  .p-fv__media:-webkit-full-screen .p-fv__progress-wrap {
    gap: 6px;
    gap: .375rem;
    padding: 4px 6px 6px;
    padding: .25rem .375rem .375rem;
  }

  .p-fv__media:fullscreen .p-fv__progress-wrap,
  .p-fv__media:-webkit-full-screen .p-fv__progress-wrap {
    gap: 6px;
    gap: .375rem;
    padding: 4px 6px 6px;
    padding: .25rem .375rem .375rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__time,
  .p-fv__media:-webkit-full-screen .p-fv__time {
    min-width: 28px;
    min-width: 1.75rem;
    font-size: 11px;
    font-size: .6875rem;
  }

  .p-fv__media:fullscreen .p-fv__time,
  .p-fv__media:-webkit-full-screen .p-fv__time {
    min-width: 28px;
    min-width: 1.75rem;
    font-size: 11px;
    font-size: .6875rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__progress,
  .p-fv__media:-webkit-full-screen .p-fv__progress {
    height: 5px;
    height: .3125rem;
  }

  .p-fv__media:fullscreen .p-fv__progress,
  .p-fv__media:-webkit-full-screen .p-fv__progress {
    height: 5px;
    height: .3125rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__progress-track,
  .p-fv__media:-webkit-full-screen .p-fv__progress-track {
    border-radius: .15625rem;
  }

  .p-fv__media:fullscreen .p-fv__progress-track,
  .p-fv__media:-webkit-full-screen .p-fv__progress-track {
    border-radius: .15625rem;
  }

  .p-fv__media:-webkit-full-screen .p-fv__progress-fill,
  .p-fv__media:-webkit-full-screen .p-fv__progress-fill {
    border-radius: .15625rem;
  }

  .p-fv__media:fullscreen .p-fv__progress-fill,
  .p-fv__media:-webkit-full-screen .p-fv__progress-fill {
    border-radius: .15625rem;
  }

  .p-fv::before {
    top: -32px;
    top: -2rem;
    background-image: url('../img/fv-bg-sp.svg');
  }

  .p-fv::after {
    bottom: -16%;
    left: 52%;
    width: clamp(80px, 45vw, 180px);
    width: clamp(5rem, 45vw, 11.25rem);
    height: clamp(82px, 46.25vw, 185px);
    height: clamp(5.125rem, 46.25vw, 11.5625rem);
  }

  .p-fv__inner {
    padding-inline: 20px;
    padding-bottom: 16px;
    padding-bottom: 1rem;
  }

  .p-fv__body {
    gap: 40px;
    gap: 2.5rem;
  }

  .p-fv__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 520px;
    max-width: 32.5rem;
  }

  .p-fv__catch {
    gap: 8px;
    gap: .5rem;
  }

  .p-fv__catch-icon {
    left: 0;
    width: clamp(20px, 11.75vw, 47px);
    width: clamp(1.25rem, 11.75vw, 2.9375rem);
    height: clamp(20px, 11.75vw, 47px);
    height: clamp(1.25rem, 11.75vw, 2.9375rem);
  }

  .p-fv__catch-text {
    font-size: clamp(13px, 4vw, 16px);
    font-size: clamp(.8125rem, 4vw, 1rem);
    letter-spacing: .03em;
  }

  .p-fv__title-wrap {
    gap: 10px;
    gap: .625rem;
    margin-top: 8px;
    margin-top: .5rem;
  }

  .p-fv__badge {
    width: clamp(20px, 15.25vw, 60px);
    width: clamp(1.25rem, 15.25vw, 3.75rem);
    height: clamp(20px, 15.25vw, 60px);
    height: clamp(1.25rem, 15.25vw, 3.75rem);
  }

  .p-fv__title {
    font-size: clamp(24px, 9.5vw, 38px);
    font-size: clamp(1.5rem, 9.5vw, 2.375rem);
  }

  .p-fv__sub {
    padding-block: 6px;
    padding-block: .375rem;
    padding-inline: 10px;
    padding-inline: .625rem;
    margin-top: 5px;
    margin-top: .3125rem;
    width: auto;
    max-width: 320px;
    max-width: 20rem;
    font-size: 12px;
    font-size: .75rem;
    letter-spacing: 0;
  }

  .p-fv__sub::after {
    bottom: -5px;
    bottom: -.3125rem;
    border-top-width: 8px;
    border-top-width: .5rem;
    border-right-width: 5px;
    border-right-width: .3125rem;
    border-left-width: 5px;
    border-left-width: .3125rem;
  }

  .p-fv__sub-text {
    line-break: normal;
    white-space: normal;
    word-break: keep-all;
  }

  .p-fv__sub-text::before {
    margin-right: 6px;
    margin-right: .375rem;
    width: 15px;
    width: .9375rem;
    height: 15px;
    height: .9375rem;
  }

  .p-fv__button-wrapper {
    padding-inline: 24px;
    padding-inline: 1.5rem;
    margin-top: 8px;
    margin-top: .5rem;
    padding-top: 14px;
    padding-top: .875rem;
    width: 100%;
  }

  .p-fv__media {
    aspect-ratio: 354/198;
    -webkit-box-shadow: .375rem .375rem 0 0 #F7F091;
    box-shadow: .375rem .375rem 0 0 #F7F091;
    max-width: min(480px, 100%);
    max-width: min(30rem, 100%);
  }

  .p-fv__media img {
    aspect-ratio: 354/198;
  }

  .p-fv__marquee {
    padding-block: 12px;
    padding-block: .75rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-fv__marquee-track {
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
  }

  .p-fv__marquee-list {
    gap: 8px;
    gap: .5rem;
    padding-left: 8px;
    padding-left: .5rem;
  }

  .p-fv__marquee-link {
    padding: 8px 16px;
    padding: .5rem 1rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-header {
    height: 45px;
    height: 2.8125rem;
  }

  .p-header__inner {
    padding-left: 24px;
    padding-left: 1.5rem;
  }

  .p-header__logo img {
    width: 100%;
    max-width: 163px;
    max-width: 10.1875rem;
  }

  .p-request {
    padding-top: 42px;
    padding-top: 2.625rem;
  }

  .p-request::before {
    background-image: url('../img/fv-bg-sp.svg');
  }

  .p-request__inner {
    padding-inline: 20px;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-request__title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-request__title-highlight::after {
    height: 4px;
    height: .25rem;
  }

  .p-request__steps {
    gap: 10px;
    gap: .625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-top: 26px;
    margin-top: 1.625rem;
  }

  .p-request__step {
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-top: 18px;
    padding-top: 1.125rem;
    width: 100%;
    max-width: 100%;
  }

  .p-request__step.p-request__step--active {
    padding-top: 24px;
    padding-top: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .p-request__step:not(:last-child)::after {
    display: none;
  }

  .p-request__step-badge {
    width: 43px;
    width: 2.6875rem;
    height: 43px;
    height: 2.6875rem;
  }

  .p-request__step--active .p-request__step-badge {
    width: 50px;
    width: 3.125rem;
    height: 50px;
    height: 3.125rem;
  }

  .p-request__step-label {
    font-size: 7px;
    font-size: .4375rem;
  }

  .p-request__step-num {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-request__step--active .p-request__step-label {
    font-size: 9px;
    font-size: .5625rem;
  }

  .p-request__step--active .p-request__step-num {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-request__step-card {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 20px;
    padding: 1rem 1.25rem;
  }

  .p-request__step--active .p-request__step-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-request__step-img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    width: 90px;
    width: 5.625rem;
    height: 105px;
    height: 6.5625rem;
  }

  .p-request__step--active .p-request__step-img {
    width: 114px;
    width: 7.125rem;
    height: 100px;
    height: 6.25rem;
  }

  .p-request__step-text {
    margin-top: 0;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.6;
  }

  .p-request__step--active .p-request__step-text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-request__points {
    padding-inline: 24px;
    padding-inline: 1.5rem;
    margin: 80px auto 0;
    margin: 5rem auto 0;
    border-radius: 2.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-request__points-checklist {
    width: 72px;
    width: 4.5rem;
  }

  .p-request__points-title {
    margin-top: 56px;
    margin-top: 3.5rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-request__points-list-wrap {
    margin-top: 24px;
    margin-top: 1.5rem;
    padding: 24px 20px;
    padding: 1.5rem 1.25rem;
  }

  .p-request__points-list {
    gap: 16px;
    gap: 1rem;
  }

  .p-request__points-item {
    gap: 12px;
    gap: .75rem;
  }

  .p-request__points-icon {
    width: 24px;
    width: 1.5rem;
  }

  .p-request__points-text {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-request__comment {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-request__comment-text {
    margin-left: 0;
    font-size: 14px;
    font-size: .875rem;
    text-align: center;
  }

  .p-request__comment-line {
    line-height: 1.8;
  }

  .p-request__comment-highlight::after {
    height: 4px;
    height: .25rem;
  }

  .p-request__comment-author {
    font-size: 12px;
    font-size: .75rem;
    text-align: center;
  }

  .p-request__comment-img {
    width: 100px;
    width: 6.25rem;
  }

  .p-request__button {
    padding-inline: 24px;
    padding-inline: 1.5rem;
    margin-top: 32px;
    margin-top: 2rem;
    padding-top: 14px;
    padding-top: .875rem;
  }

  .p-voice {
    border-radius: 0;
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 36px;
    padding-bottom: 2.25rem;
  }

  .p-voice__inner {
    padding-inline: 20px;
  }

  .p-voice__title {
    gap: 4px;
    gap: .25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-voice__title-sub {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-voice__title-main {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .p-voice__title-main::after {
    top: -14px;
    top: -.875rem;
    right: -28px;
    right: -1.75rem;
    width: 28px;
    width: 1.75rem;
    height: 28px;
    height: 1.75rem;
  }

  .p-voice__list {
    gap: 20px;
    gap: 1.25rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
    margin-top: 24px;
    margin-top: 1.5rem;
    max-width: 480px;
    max-width: 30rem;
  }

  .p-voice__case {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-voice__card {
    padding-inline: 16px;
    padding-inline: 1rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }

  .p-voice__badge {
    padding: 16px 20px;
    padding: 1rem 1.25rem;
  }

  .p-voice__badge-text {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-voice__result {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-voice__img {
    margin-top: 10px;
    margin-top: .625rem;
    width: 160px;
    width: 10rem;
  }

  .p-worry {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }

  .p-worry__inner {
    padding-inline: 20px;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-worry__heading {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
  }

  .p-worry__heading::before {
    display: none;
  }

  .p-worry__heading::after {
    display: none;
  }

  .p-worry__heading-sub {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-worry__heading-title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-worry__list {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-worry__item {
    gap: 12px;
    gap: .75rem;
    grid-column: span 1;
    padding: 20px 16px;
    padding: 1.25rem 1rem;
  }

  .p-worry__item:nth-child(4),
  .p-worry__item:nth-child(5) {
    grid-column: span 1;
  }

  .p-worry__item-icon {
    width: 56px;
    width: 3.5rem;
    height: 56px;
    height: 3.5rem;
  }

  .p-worry__item:nth-child(1) .p-worry__item-title,
  .p-worry__item:nth-child(2) .p-worry__item-title {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-worry__item:nth-child(3) .p-worry__item-title {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-worry__item:nth-child(4) .p-worry__item-title,
  .p-worry__item:nth-child(5) .p-worry__item-title {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-worry__item-text {
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-worry__cta {
    margin: 40px auto 0;
    margin: 2.5rem auto 0;
    padding-bottom: 48px;
    padding-bottom: 3rem;
    padding-left: 0;
    max-width: 480px;
    max-width: 30rem;
  }

  .p-worry__cta-media {
    display: none;
  }

  .p-worry__cta-media--sp {
    aspect-ratio: 293/350;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 58%);
    transform: translate(-50%, 58%);
    z-index: 2;
    background: url('../img/worry-phone.svg') no-repeat center/contain;
    width: clamp(60px, 20vw, 120px);
    width: clamp(3.75rem, 20vw, 7.5rem);
  }

  .p-worry__cta-box {
    padding-inline: 14px;
    padding-inline: .875rem;
    padding-top: 48px;
    padding-top: 3rem;
    padding-bottom: 72px;
    padding-bottom: 4.5rem;
  }

  .p-worry__cta-box::before {
    top: 8%;
    left: 50%;
    width: 30px;
    width: 1.875rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-worry__cta-box::after {
    top: -16px;
    top: -1rem;
    right: -16px;
    right: -1rem;
    width: 36px;
    width: 2.25rem;
    height: 36px;
    height: 2.25rem;
  }

  .p-worry__cta-text {
    font-size: clamp(16px, 4.2vw, 20px);
    font-size: clamp(1rem, 4.2vw, 1.25rem);
  }

  .p-worry__cta-underline::after {
    height: 4px;
    height: .25rem;
  }

  .u-desktop {
    display: none !important;
  }

  .u-mobile {
    display: block !important;
  }

  .u-br-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 690px) {

  .c-footer-button__text > span {
    display: block;
    white-space: nowrap;
  }
}

@media screen and (max-width: 600px) {

  .p-fv__control-top {
    display: none;
  }
}

@media (max-width: 560px) {

  .c-footer-button__text {
    padding-right: 20px;
    padding-right: 1.25rem;
    font-size: clamp(12px, 3.2vw, 14px);
    font-size: clamp(.75rem, 3.2vw, .875rem);
    letter-spacing: .01em;
  }

  .c-footer-button__icon {
    right: 6px;
    right: .375rem;
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem;
  }

  .c-footer-button {
    padding-block: 10px;
    padding-block: .625rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    min-height: 56px;
    min-height: 3.5rem;
  }

  .p-cta__bar-list {
    gap: 8px;
    gap: .5rem;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}

@media (hover: hover) {

  .p-fv__marquee-link:hover {
    opacity: .85;
  }
}
/*# sourceMappingURL=map/style.css.map */