@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;
  background: #FFF;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #2E3133;
  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;
  -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;
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

u a {
  text-decoration: underline;
}

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: #F2F2F2;
  padding: .25em .5em;
}

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

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

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

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

var {
  background-color: #F2F2F2;
  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: .25s;
  animation-duration: .25s;
  -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: 16px;
}

/************************************************************************
* 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;
  overflow-x: clip;
}

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_outer-link_01.svg');
  mask-image: url('../img/common/icon_outer-link_01.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

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 #FFF;
}

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: #007F24;
  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
************************************************************************/
.js-tabItem {
  visibility: hidden;
  opacity: .9;
  -webkit-transition: opacity 1s ease, visibility 1s ease;
  transition: opacity 1s ease, visibility 1s ease;
  height: 0;
  overflow: hidden;
}

.js-tabItem.is-active {
  visibility: visible;
  opacity: 1;
  height: auto;
}

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

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  padding: 0;
  width: 100vw;
  max-width: none;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
}

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

.c-sectionTitle {
  position: relative;
  text-align: center;
}

.c-sectionTitle--achievements::before {
  aspect-ratio: 237/91;
  position: absolute;
  top: 10px;
  top: .625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img/achievements/deco_achievements_title_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 237px;
  width: 14.8125rem;
  content: '';
}

.c-sectionTitle__en {
  position: absolute;
  bottom: 10px;
  bottom: .625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: rgba(0, 127, 36, .1);
  font-family: 'Oswald', sans-serif;
  font-size: 100px;
  font-size: 6.25rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.c-sectionTitle--achievements .c-sectionTitle__en {
  bottom: 0;
}

.c-sectionTitle--details .c-sectionTitle__en {
  top: -50px;
  top: -3.125rem;
  bottom: initial;
}

.c-sectionTitle__ja {
  color: #005D4C;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
}

.c-sectionTitle--details .c-sectionTitle__ja {
  gap: 4px;
  gap: .25rem;
  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;
}

.c-sectionTitle--details .c-sectionTitle__ja-small {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.40625;
}

.p-achievements {
  background-image: url(../img/achievements/bgi_achievements_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 75px;
  padding-top: 4.6875rem;
  padding-bottom: 79px;
  padding-bottom: 4.9375rem;
}

.p-achievements__wrap {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, .2)), color-stop(3.18%, rgba(255, 255, 255, .5)), color-stop(8.79%, #FFF), color-stop(92%, #FFF), color-stop(97.61%, rgba(255, 255, 255, .5)), to(rgba(255, 255, 255, .2)));
  background: linear-gradient(90deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .5) 3.18%, #FFF 8.79%, #FFF 92%, rgba(255, 255, 255, .5) 97.61%, rgba(255, 255, 255, .2) 100%);
  padding: 97px 20px 73px;
  padding: 6.0625rem 1.25rem 4.5625rem;
  text-align: center;
}

.p-achievements__text {
  margin-top: 69px;
  margin-top: 4.3125rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.5625;
}

.p-achievements__text-large {
  color: #FF383C;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1.12;
}

.p-contact {
  padding-top: 230px;
  padding-top: 14.375rem;
}

.p-contact__telBlock {
  margin-inline: auto;
  margin-top: 53px;
  margin-top: 3.3125rem;
  border: 2px solid #868780;
  border: .125rem solid #868780;
  padding: 10px;
  padding: .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-contact__telBlock-inner {
  border: 2px solid #868780;
  border: .125rem solid #868780;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#F1FEED));
  background: linear-gradient(180deg, #FFF 0%, #F1FEED 100%);
  padding: 20px 38px 22px;
  padding: 1.25rem 2.375rem 1.375rem;
  text-align: center;
}

.p-contact__telBlock-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4090909091;
}

.p-contact__telBlock-info {
  gap: 8px;
  gap: .5rem;
  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;
  margin-top: 2px;
  margin-top: .125rem;
}

.p-contact__telBlock-info-tel {
  position: relative;
  padding-left: 46px;
  padding-left: 2.875rem;
  color: #FF9318;
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1;
}

.p-contact__telBlock-info-tel::before {
  aspect-ratio: 40/37;
  position: absolute;
  top: 60%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_tel_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  width: 2.5rem;
  content: '';
}

.p-contact__telBlock-info-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.p-contact__form {
  margin-top: 31px;
  margin-top: 1.9375rem;
  text-align: center;
}

.p-countries {
  padding-top: 182px;
  padding-top: 11.375rem;
}

.p-countries__table {
  margin-top: 57px;
  margin-top: 3.5625rem;
}

.p-countries__table-main {
  border-collapse: collapse;
  width: 100%;
}

.p-countries__table-head {
  background-color: #565b54;
}

.p-countries__table-th {
  vertical-align: middle;
  border-right: 2px solid #FFF;
  border-right: .125rem solid #FFF;
  border-left: 2px solid #FFF;
  border-left: .125rem solid #FFF;
  padding: 44.5px 4px;
  padding: 2.78125rem .25rem;
  color: #FFF;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4090909091;
  text-align: center;
}

.p-countries__table-th:nth-child(1) {
  width: 16.29%;
}

.p-countries__table-th:nth-child(2) {
  width: 14.29%;
}

.p-countries__table-th:nth-child(3) {
  width: 14.29%;
}

.p-countries__table-th:nth-child(4) {
  width: 12.36%;
}

.p-countries__table-th:nth-child(5) {
  width: 14.04%;
}

.p-countries__table-th:nth-child(6) {
  width: 28.73%;
}

.p-countries__table-th:first-child {
  border-left: 2px solid #FFF;
  border-left: .125rem solid #FFF;
}

.p-countries__table-th:last-child {
  border-right: 2px solid #FFF;
  border-right: .125rem solid #FFF;
}

.p-countries__table-th-sub {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7777777778;
}

.p-countries__table-row {
  border-left: 1px solid #FFF;
}

.p-countries__table-row--white {
  background-color: #FFF;
}

.p-countries__table-row--gray {
  background-color: #f2f8f4;
}

.p-countries__table-td {
  vertical-align: middle;
  border-right: 2px solid #FFF;
  border-right: .125rem solid #FFF;
  border-left: 1px solid #FFF;
  padding: 18px 10px;
  padding: 1.125rem .625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  text-align: center;
}

.p-countries__table-td:nth-child(1) {
  width: 16.29%;
}

.p-countries__table-td:nth-child(2) {
  width: 14.29%;
}

.p-countries__table-td:nth-child(3) {
  width: 14.29%;
}

.p-countries__table-td:nth-child(4) {
  width: 12.36%;
}

.p-countries__table-td:nth-child(5) {
  width: 14.04%;
}

.p-countries__table-td:nth-child(6) {
  width: 28.73%;
}

.p-countries__table-country {
  gap: 14px;
  gap: .875rem;
  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;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-countries__table-country-name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2777777778;
  text-align: center;
}

.p-countries__table-country-flag {
  width: 100%;
  max-width: 141px;
  max-width: 8.8125rem;
}

.p-countries__table-country-flag img {
  width: 141px;
  width: 8.8125rem;
  height: 84px;
  height: 5.25rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-details {
  position: relative;
  background-color: #F2F2F2;
  padding-top: 147px;
  padding-top: 9.1875rem;
  padding-bottom: 146px;
  padding-bottom: 9.125rem;
  width: 100%;
  overflow-x: clip;
}

.p-details::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: var(--clip-triangle-bottom);
  clip-path: var(--clip-triangle-bottom);
  background-color: #FFF;
  width: 100%;
  height: 269px;
  height: 16.8125rem;
  content: '';
}

.l-container.p-details__inner {
  position: relative;
  z-index: 1;
  max-width: 1170px;
  max-width: 73.125rem;
}

.p-details__stepContentsWrap {
  --details-step-number-width: 70px;
  --details-step-number-width: 4.375rem;
  --details-step-line-width: 9px;
  --details-step-line-width: .5625rem;
  position: relative;
  margin-top: 64px;
  margin-top: 4rem;
  padding-bottom: 57px;
  padding-bottom: 3.5625rem;
  overflow: visible;
}

.p-details__stepContentsWrap-line {
  position: absolute;
  top: 0;
  left: calc(var(--details-step-number-width) / 2);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: var(--details-step-line-width);
  height: 98.5%;
  overflow: visible;
}

.p-details__stepContentsWrap-line::before {
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 93, 76, .66)), to(rgba(114, 156, 162, .66)));
  background: linear-gradient(0deg, rgba(0, 93, 76, .66) 0%, rgba(114, 156, 162, .66) 100%);
  width: 100%;
  height: calc(100% - 2.8125rem);
  content: '';
}

.p-details__stepContentsWrap-line::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: rgba(0, 93, 76, .66);
  width: 52px;
  width: 3.25rem;
  height: 45px;
  height: 2.8125rem;
  content: '';
}

.p-details__stepList {
  gap: 19px;
  gap: 1.1875rem;
  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;
}

.p-details__stepList:not(:first-child) {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-details__stepList[data-number='01'] .p-details__stepList-number,
.p-details__stepList[data-number='01'] .p-details__stepList-content-title {
  background-color: #729CA2;
}

.p-details__stepList[data-number='02'] .p-details__stepList-number,
.p-details__stepList[data-number='02'] .p-details__stepList-content-title {
  background-color: #88B48F;
}

.p-details__stepList[data-number='03'] .p-details__stepList-number,
.p-details__stepList[data-number='03'] .p-details__stepList-content-title {
  background-color: #68C983;
}

.p-details__stepList[data-number='04'] .p-details__stepList-number,
.p-details__stepList[data-number='04'] .p-details__stepList-content-title {
  background-color: #139F3A;
}

.p-details__stepList-number {
  aspect-ratio: 1/1;
  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-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;
  border-radius: 50%;
  width: var(--details-step-number-width);
  color: #FFF;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1;
}

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

.p-details__stepList-content {
  margin-top: 11px;
  margin-top: .6875rem;
  padding-right: 18px;
  padding-right: 1.125rem;
}

.p-details__stepList-content-title {
  padding: 3px 38px 10px;
  padding: .1875rem 2.375rem .625rem;
  color: #FFF;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
}

.p-details__stepList-items {
  gap: 15px;
  gap: .9375rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-details__stepList-item {
  width: 100%;
}

.p-details__stepList-item-icon {
  aspect-ratio: 1/1;
  border: 1px solid #70C889;
  padding: 6px 5px 8px 7px;
  padding: .375rem .3125rem .5rem .4375rem;
  width: 100%;
}

.p-details__stepList-item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-details__stepList-item-text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6111111111;
}

.p-details__app {
  padding-right: 17px;
  padding-right: 1.0625rem;
}

.p-details__app-head {
  position: relative;
  margin-left: 1.3888888889vw;
  background-color: #005D4C;
  padding: 7px 40px 13px 21px;
  padding: .4375rem 2.5rem .8125rem 1.3125rem;
  color: #FFF;
  text-align: center;
}

.p-details__app-icon {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: -4.5138888889vw;
  -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: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #005D4C;
  width: 154px;
  width: 9.625rem;
}

.p-details__app-icon img {
  aspect-ratio: 1/1;
  width: 85px;
  width: 5.3125rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-details__app-head-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.40625;
}

.p-details__app-text {
  margin-top: 22px;
  margin-top: 1.375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7777777778;
  text-align: center;
}

.p-details__cards {
  gap: 15px;
  gap: .9375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 33px;
  margin-top: 2.0625rem;
  width: 100%;
  max-width: 1071px;
  max-width: 66.9375rem;
}

.p-details__card {
  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;
  width: 100%;
}

.p-details__card-image {
  aspect-ratio: 347/241;
  width: 100%;
  overflow: hidden;
}

.p-details__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-details__card-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #FFF;
  padding: 22px 15.5px 34px;
  padding: 1.375rem .96875rem 2.125rem;
}

.p-details__card-title {
  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-details__card-title-number {
  color: #FFDE21;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}

.p-details__card-title-text {
  color: #005D4C;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4090909091;
}

.p-details__card-text {
  margin-inline: auto;
  margin-top: 11px;
  margin-top: .6875rem;
  width: 100%;
  max-width: 295px;
  max-width: 18.4375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7777777778;
}

.p-details__card-text-under {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#FFDE21));
  background-image: linear-gradient(transparent calc(100% - .125rem), #FFDE21 calc(100% - .125rem));
  background-size: 100% 100%;
  font-weight: 700;
}

.p-footer {
  margin-top: 79px;
  margin-top: 4.9375rem;
  background-color: #005D4C;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
  text-align: center;
}

.p-footer__copyright {
  color: #FFF;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Meiryo', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: normal;
}

.p-header {
  background-color: #FFF;
  width: 100%;
  height: 80px;
  height: 5rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 1.8055555556vw;
  height: inherit;
}

.p-header__logo {
  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;
  min-width: 0;
}

.p-header__logo-link {
  padding-block: 10px;
  padding-block: .625rem;
  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;
  width: 100%;
  max-width: 33.75vw;
  height: 95%;
}

.p-header__logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__right {
  gap: 3.75vw;
  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: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: auto;
}

.p-header__tel {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #005D4C;
  white-space: nowrap;
}

.p-header__tel-link {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6388888889vw;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.p-header__tel-link-text {
  font-size: 2.3534722222vw;
}

.p-header__tel-time {
  margin-top: 4px;
  margin-top: .25rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
}

.p-header__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  max-width: 382px;
  max-width: 23.875rem;
}

.p-header__button-link {
  gap: 16px;
  gap: 1rem;
  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;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFAB00), to(#FF9400));
  background: linear-gradient(180deg, #FFAB00 0%, #FF9400 100%);
  padding: 24px 2.8472222222vw;
  padding: 1.5rem 2.8472222222vw;
  width: 100%;
  text-decoration: none;
}

.p-header__button-link::before {
  inset: 0;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFAB00), to(#FF9400));
  background: linear-gradient(0deg, #FFAB00 0%, #FF9400 100%);
  content: '';
}

.p-header__button-link > * {
  position: relative;
  z-index: 1;
}

.p-header__button-link-icon {
  aspect-ratio: 39.89/32.04;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url(../img/common/icon_mail_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.7701388889vw;
}

.p-header__button-link-text {
  color: #FFF;
  font-size: 1.5277777778vw;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.p-mv {
  position: relative;
  background-image: url(../img/mv/bgi_mv_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5.4166666667vw;
  padding-bottom: 65.459px;
  padding-bottom: 4.09125rem;
  padding-left: 21.1111111111vw;
  width: 100%;
  overflow: hidden;
}

.p-mv::before {
  aspect-ratio: 926.05/648.92;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/mv/bgi_mv_left_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: auto;
  height: 100%;
  content: '';
}

.p-mv::after {
  aspect-ratio: 638/582;
  position: absolute;
  bottom: 0;
  left: 55.6944444444vw;
  background-image: url(../img/mv/image_mv_right_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 44.3055555556vw;
  content: '';
}

.p-mv__content {
  position: relative;
  z-index: 1;
}

.p-mv__title {
  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;
}

.p-mv__title-lead {
  color: #FFF;
  font-size: 3.125vw;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2444444444;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, .5);
}

.p-mv__title-main {
  margin-top: 14px;
  margin-top: .875rem;
}

.p-mv__title-main-label {
  display: inline-block;
  background-color: #00621C;
  padding-top: 5px;
  padding-top: .3125rem;
  padding-bottom: 13px;
  padding-bottom: .8125rem;
  color: #FFF;
  color: #FFF;
  font-size: 4.1666666667vw;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  text-shadow: 0 4px 3.6px rgba(0, 0, 0, .35);
}

.p-mv__title-main-label-small {
  font-size: 3.4722222222vw;
}

.p-mv__title-main-label--driver {
  padding-inline: 25px;
  padding-inline: 1.5625rem;
}

.p-mv__title-main-label--adoption {
  padding-left: 25px;
  padding-left: 1.5625rem;
}

.p-mv__title-main-label--consulting {
  padding-right: 25px;
  padding-right: 1.5625rem;
}

.p-mv__title-main-label--adoption,
.p-mv__title-main-label--consulting {
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-mv__subTitle {
  margin-top: 2.2222222222vw;
}

.p-mv__subTitle-label {
  padding-block: 4px;
  padding-block: .25rem;
  background-color: #FFF;
  color: #005D4C;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
}

.p-mv__subTitle-label:first-child {
  padding-left: 25px;
  padding-left: 1.5625rem;
}

.p-mv__subTitle-label:last-child {
  padding-right: 25px;
  padding-right: 1.5625rem;
}

.p-mv__subTitle-label-under {
  position: relative;
}

.p-mv__subTitle-label-under::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFDE21;
  width: 100%;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-mv__circleItems {
  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: 2.5694444444vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-mv__circleItem {
  aspect-ratio: 1/1;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url(../img/mv/deco_mv_circle-item_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 177px;
  width: 11.0625rem;
  height: auto;
}

.p-mv__circleItem-text {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14.53px;
  font-size: .908125rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-mv__circleItem:nth-child(1) .p-mv__circleItem-text {
  margin-bottom: 8px;
  margin-bottom: .5rem;
}

.p-mv__circleItem:nth-child(2) .p-mv__circleItem-text {
  margin-bottom: 2px;
  margin-bottom: .125rem;
}

.p-mv__circleItem:nth-child(3) .p-mv__circleItem-text {
  margin-top: 2px;
  margin-top: .125rem;
}

.p-mv__circleItem-text-red {
  color: #FF383C;
  font-size: 24.94px;
  font-size: 1.55875rem;
}

.p-mv__circleItem-text-mtLarge {
  margin-top: 2px;
  margin-top: .125rem;
}

.p-mv__circleItem-text-mtSub {
  margin-top: 3px;
  margin-top: .1875rem;
}

.p-problem {
  padding-top: 138px;
  padding-top: 8.625rem;
  padding-bottom: 112px;
  padding-bottom: 7rem;
  overflow: hidden;
}

.p-problem__title {
  position: relative;
  z-index: 1;
}

.p-problem__block {
  position: relative;
  -webkit-filter: drop-shadow(0 4px 20px rgba(73, 78, 84, .3));
  filter: drop-shadow(0 4px 20px rgba(73, 78, 84, .3));
  margin-top: -16px;
  margin-top: -1rem;
  padding: 61px 200px 53px 70px;
  padding: 3.8125rem 12.5rem 3.3125rem 4.375rem;
}

.p-problem__block::after {
  inset: 0;
  position: absolute;
  z-index: -1;
  -webkit-clip-path: polygon(0 4.25rem, 4.25rem 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 4.25rem, 4.25rem 0, 100% 0, 100% 100%, 0 100%);
  background-color: #FFF;
  content: '';
}

.p-problem__block::before {
  aspect-ratio: 462/487;
  position: absolute;
  top: 17px;
  top: 1.0625rem;
  right: -5.5555555556vw;
  z-index: 1;
  background-image: url(../img/problem/deco_problem_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 462px;
  width: 28.875rem;
  content: '';
}

.p-problem__lists {
  gap: 13px;
  gap: .8125rem;
  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: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 1;
}

.p-problem__list {
  position: relative;
  padding-left: 46px;
  padding-left: 2.875rem;
  font-size: 1.875vw;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-problem__list::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: .55lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_link_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  width: 2.25rem;
  content: '';
}

.p-strength {
  padding-top: 175px;
  padding-top: 10.9375rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  overflow-x: clip;
}

.p-strength__listItems {
  margin-top: 68px;
  margin-top: 4.25rem;
}

.p-strength__listItem {
  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;
  width: 100%;
}

.p-strength__listItem:nth-child(odd) {
  padding-left: 39px;
  padding-left: 2.4375rem;
}

.p-strength__listItem:nth-child(even) {
  padding-right: 39px;
  padding-right: 2.4375rem;
}

.p-strength__listItem:not(:first-child) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-strength__listItem:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-strength__listItem-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 3.1944444444vw;
  padding-bottom: 3.125vw;
}

.p-strength__listItem-number {
  position: absolute;
  top: -36px;
  top: -2.25rem;
  color: #FFDE21;
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
}

.p-strength__listItem:nth-child(odd) .p-strength__listItem-number {
  left: -50px;
  left: -3.125rem;
}

.p-strength__listItem:nth-child(even) .p-strength__listItem-number {
  right: -43px;
  right: -2.6875rem;
}

.p-strength__listItem-labels {
  gap: 2px;
  gap: .125rem;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: 2.2222222222vw;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.40625;
}

.p-strength__listItem-labels.p-strength__listItem-labels--pc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-strength__listItem-labels.p-strength__listItem-labels--sp {
  display: none;
}

.p-strength__listItem:nth-child(odd) .p-strength__listItem-labels {
  margin-left: -8px;
  margin-left: -.5rem;
}

.p-strength__listItem:nth-child(even) .p-strength__listItem-labels {
  margin-right: -8px;
  margin-right: -.5rem;
  margin-left: auto;
  width: 100%;
}

.p-strength__listItem-label {
  display: inline-block;
  background-color: #005D4C;
  padding-right: 3.1944444444vw;
  padding-bottom: 4px;
  padding-bottom: .25rem;
  padding-left: 3.75vw;
  white-space: nowrap;
}

.p-strength__listItem-text {
  margin-top: 14px;
  margin-top: .875rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-left: 3.6805555556vw;
  width: 100%;
  max-width: 656px;
  max-width: 41rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7777777778;
}

.p-strength__listItem-text-red {
  color: #FF383C;
  font-weight: 700;
}

.p-strength__listItem-image {
  aspect-ratio: 431.12/296;
  width: 431px;
  width: 26.9375rem;
  height: auto;
  overflow: hidden;
}

.p-strength__listItem-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-support {
  position: relative;
  padding-top: 101px;
  padding-top: 6.3125rem;
  padding-bottom: 73px;
  padding-bottom: 4.5625rem;
  overflow: hidden;
}

.p-support::before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/support/bgi_support_01.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 394px;
  height: 24.625rem;
  content: '';
}

.p-support__inner {
  position: relative;
  z-index: 1;
}

.p-support__textBlock {
  text-align: center;
}

.p-support__title {
  display: inline-block;
  position: relative;
  border-top: 2px solid #007F24;
  border-top: .125rem solid #007F24;
  border-bottom: 2px solid #007F24;
  border-bottom: .125rem solid #007F24;
  padding-top: 2px;
  padding-top: .125rem;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
}

.p-support__title::before {
  position: absolute;
  bottom: -12px;
  bottom: -.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 12px solid #007F24;
  border-top: .75rem solid #007F24;
  border-right: 8px solid transparent;
  border-right: .5rem solid transparent;
  border-left: 8px solid transparent;
  border-left: .5rem solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-support__title-text {
  color: #007F24;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.40625;
}

.p-support__message {
  gap: 5px;
  gap: .3125rem;
  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;
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.40625;
}

.p-support__message-under {
  position: relative;
  font-size: 45px;
  font-size: 2.8125rem;
  line-height: 1.2444444444;
}

.p-support__message-under::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(255, 222, 33, .45);
  width: 100%;
  height: 21px;
  height: 1.3125rem;
  content: '';
}

.p-support__flow {
  margin-top: 51px;
  margin-top: 3.1875rem;
}

.p-support__flow img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.u-bg-white {
  background-color: #FFF;
}

.u-color-white-FFFFFF {
  color: #FFF;
}

.u-color-black-2E3133 {
  color: #2E3133;
}

.u-color-mainGreen-007F24 {
  color: #007F24;
}

.u-color-green-005D4C {
  color: #005D4C;
}

.u-color-yellow-FFDE21 {
  color: #FFDE21;
}

.u-color-red-FF383C {
  color: #FF383C;
}

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

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

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

.u-fw-medium {
  font-weight: 500;
}

.u-fw-bold {
  font-weight: 700;
}

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

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

.u-onlyPc {
  display: block;
}

.u-onlySp {
  display: none;
}

.u-onlySm {
  display: none;
}

.u-tel {
  pointer-events: none;
}

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

  html {
    font-size: 1.3333333333vw;
  }

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

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1260px;
  }

  .l-container.l-container--narrow {
    max-width: 1020px;
  }

  .l-container.l-container--wide {
    max-width: 1500px;
  }

  .p-strength__listItem-content {
    position: relative;
  }

  .p-strength__listItem-content::before, .p-strength__listItem-content::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 8px;
    height: .5rem;
    content: '';
  }

  .p-strength__listItem-content::before {
    top: 0;
  }

  .p-strength__listItem-content::after {
    bottom: 0;
  }

  .p-strength__listItem:nth-child(odd) .p-strength__listItem-content {
    border-left: 8px solid #30A150;
    border-left: .5rem solid #30A150;
    border-top-left-radius: 8px;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: 8px;
    border-bottom-left-radius: .5rem;
    padding-right: 2.8472222222vw;
  }

  .p-strength__listItem:nth-child(odd) .p-strength__listItem-content::before, .p-strength__listItem:nth-child(odd) .p-strength__listItem-content::after {
    background: -webkit-gradient(linear, left top, right top, from(#30A150), to(#E9F2F4));
    background: linear-gradient(to right, #30A150 0%, #E9F2F4 100%);
  }

  .p-strength__listItem:nth-child(even) .p-strength__listItem-content {
    border-right: 8px solid #30A150;
    border-right: .5rem solid #30A150;
    border-top-right-radius: 8px;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: 8px;
    border-bottom-right-radius: .5rem;
    padding-left: 3.9583333333vw;
  }

  .p-strength__listItem:nth-child(even) .p-strength__listItem-content::before, .p-strength__listItem:nth-child(even) .p-strength__listItem-content::after {
    background: -webkit-gradient(linear, left top, right top, from(#E9F2F4), to(#30A150));
    background: linear-gradient(to right, #E9F2F4 0%, #30A150 100%);
  }
}

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

  .p-header__button-link:hover::before {
    opacity: 1;
  }
}

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

  .p-strength__listItem:nth-child(odd) .p-strength__listItem-content {
    padding-right: 41px;
    padding-right: 2.5625rem;
  }

  .p-strength__listItem:nth-child(even) .p-strength__listItem-content {
    padding-left: 57px;
    padding-left: 3.5625rem;
  }
}

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

  .p-header__logo {
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
}

@media (min-width: 1200px) {

  html {
    font-size: 16px;
  }
}

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

  .p-details__app-head {
    margin-left: 20px;
    margin-left: 1.25rem;
  }

  .p-details__app-icon {
    left: -65px;
    left: -4.0625rem;
  }

  .p-header__inner {
    padding-left: 26px;
    padding-left: 1.625rem;
  }

  .p-header__logo-link {
    max-width: 486px;
    max-width: 30.375rem;
  }

  .p-header__right {
    gap: 54px;
    gap: 3.375rem;
  }

  .p-header__tel-link {
    font-size: 38px;
    font-size: 2.375rem;
  }

  .p-header__tel-link-text {
    font-size: 33.89px;
    font-size: 2.118125rem;
  }

  .p-header__button-link {
    padding: 24px 41px;
    padding: 1.5rem 2.5625rem;
  }

  .p-header__button-link-icon {
    width: 39.89px;
    width: 2.493125rem;
  }

  .p-header__button-link-text {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-mv {
    padding-top: 78px;
    padding-top: 4.875rem;
    padding-left: 304px;
    padding-left: 19rem;
  }

  .p-mv::after {
    width: 638px;
    width: 39.875rem;
  }

  .p-mv__title-lead {
    font-size: 45px;
    font-size: 2.8125rem;
  }

  .p-mv__title-main-label {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .p-mv__title-main-label-small {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .p-mv__subTitle {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-mv__circleItems {
    margin-top: 37px;
    margin-top: 2.3125rem;
  }

  .p-problem__block::before {
    right: -122px;
    right: -7.625rem;
  }

  .p-problem__list {
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .p-strength__listItem-content {
    padding-top: 46px;
    padding-top: 2.875rem;
    padding-bottom: 45px;
    padding-bottom: 2.8125rem;
  }

  .p-strength__listItem-labels {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-strength__listItem-label {
    padding-right: 46px;
    padding-right: 2.875rem;
    padding-left: 54px;
    padding-left: 3.375rem;
  }

  .p-strength__listItem-text {
    padding-left: 53px;
    padding-left: 3.3125rem;
  }
}

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

  .l-container {
    max-width: 580px;
    max-width: 36.25rem;
  }

  .c-sectionTitle--achievements::before {
    width: 133px;
    width: 8.3125rem;
  }

  .c-sectionTitle__en {
    top: -34px;
    top: -2.125rem;
    bottom: initial;
    font-size: 54px;
    font-size: 3.375rem;
  }

  .c-sectionTitle__ja {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .c-sectionTitle--details .c-sectionTitle__ja-small {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5454545455;
  }

  .p-achievements {
    padding-top: 63px;
    padding-top: 3.9375rem;
    padding-bottom: 63px;
    padding-bottom: 3.9375rem;
  }

  .l-container.p-achievements__inner {
    max-width: initial;
  }

  .p-achievements__wrap {
    padding: 84px 10px 58px;
    padding: 5.25rem .625rem 3.625rem;
  }

  .p-achievements__text {
    margin-top: 41.73px;
    margin-top: 2.608125rem;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0;
    line-height: 1.6;
  }

  .p-achievements__text-large {
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: .03em;
    line-height: 1.3928571429;
  }

  .p-contact {
    padding-top: 167px;
    padding-top: 10.4375rem;
  }

  .l-container.p-contact__inner {
    max-width: initial;
  }

  .p-contact__telBlock {
    margin-top: 35px;
    margin-top: 2.1875rem;
    border: 1.36px solid #868780;
    padding: 7px;
    padding: .4375rem;
    width: 100%;
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-contact__telBlock-inner {
    border: 1.36px solid #868780;
    padding: 3px 10px 15px;
    padding: .1875rem .625rem .9375rem;
  }

  .p-contact__telBlock-title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-contact__telBlock-info {
    gap: 5.42px;
    gap: .33875rem;
    margin-top: 0;
  }

  .p-contact__telBlock-info-tel {
    padding-left: 31px;
    padding-left: 1.9375rem;
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-contact__telBlock-info-tel::before {
    width: 27px;
    width: 1.6875rem;
  }

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

  .p-contact__form {
    margin-inline: auto;
    width: 100%;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-countries {
    padding-top: 119px;
    padding-top: 7.4375rem;
  }

  .l-container.p-countries__inner {
    max-width: initial;
  }

  .p-countries__table {
    -webkit-overflow-scrolling: touch;
    margin-top: 33px;
    margin-top: 2.0625rem;
    overflow-x: auto;
  }

  .p-countries__table-main {
    width: 972px;
    width: 60.75rem;
  }

  .p-countries__table-th {
    padding: 33.5px 4px;
    padding: 2.09375rem .25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }

  .p-countries__table-th-sub {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-countries__table-td {
    padding: 16px 4px;
    padding: 1rem .25rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-countries__table-country {
    gap: 11px;
    gap: .6875rem;
  }

  .p-countries__table-country-name {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }

  .p-countries__table-country-flag {
    max-width: 101px;
    max-width: 6.3125rem;
  }

  .p-countries__table-country-flag img {
    width: 101px;
    width: 6.3125rem;
    height: 68px;
    height: 4.25rem;
  }

  .p-details {
    padding-top: 0;
    padding-bottom: 98px;
    padding-bottom: 6.125rem;
  }

  .p-details::before {
    height: 100px;
    height: 6.25rem;
  }

  .l-container.p-details__inner {
    max-width: 580px;
    max-width: 36.25rem;
  }

  .p-details__stepContentsWrap {
    --details-step-number-width: 43.38px;
    --details-step-number-width: 2.71125rem;
    --details-step-line-width: 5.58px;
    --details-step-line-width: .34875rem;
    margin-top: 36px;
    margin-top: 2.25rem;
    padding-bottom: 139px;
    padding-bottom: 8.6875rem;
  }

  .p-details__stepContentsWrap-line {
    height: 100%;
  }

  .p-details__stepContentsWrap-line::before {
    height: calc(100% - 1.75rem);
  }

  .p-details__stepContentsWrap-line::after {
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 32px;
    width: 2rem;
    height: 28px;
    height: 1.75rem;
  }

  .p-details__stepList {
    gap: 7.6px;
    gap: .475rem;
  }

  .p-details__stepList:not(:first-child) {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-details__stepList-number {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-details__stepList-number-text {
    font-size: 10px;
    font-size: .625rem;
  }

  .p-details__stepList-content {
    margin-top: 4px;
    margin-top: .25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
  }

  .p-details__stepList-content-title {
    padding: 0 17px;
    padding: 0 1.0625rem;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5454545455;
    white-space: nowrap;
  }

  .p-details__stepList-items {
    gap: 10px 15px;
    gap: .625rem .9375rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 17px;
    margin-top: 1.0625rem;
  }

  .p-details__stepList-item-icon {
    padding: 3.95px 3.3px 5.27px 4.61px;
    padding: .246875rem .20625rem .329375rem .288125rem;
  }

  .p-details__stepList-item-text {
    margin-top: 5px;
    margin-top: .3125rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.5714285714;
  }

  .p-details__app {
    padding-right: 0;
  }

  .p-details__app-head {
    margin-left: 0;
    padding: 12.19px;
    padding: .761875rem;
  }

  .p-details__app-icon {
    top: -84px;
    top: -5.25rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 96px;
    width: 6rem;
  }

  .p-details__app-icon img {
    width: 49px;
    width: 3.0625rem;
  }

  .p-details__app-head-title {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5454545455;
  }

  .p-details__app-text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-details__cards {
    -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;
    margin-top: 43px;
    margin-top: 2.6875rem;
  }

  .p-details__card {
    margin-inline: auto;
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-details__card-image {
    aspect-ratio: 335/232;
  }

  .p-details__card-content {
    padding: 14px 22px 31px;
    padding: .875rem 1.375rem 1.9375rem;
  }

  .p-details__card-title-number {
    font-size: 55px;
    font-size: 3.4375rem;
  }

  .p-details__card-title-text {
    margin-top: 4px;
    margin-top: .25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }

  .p-details__card-text {
    margin-top: 18px;
    margin-top: 1.125rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-footer {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-top: 10px;
    padding-top: .625rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
  }

  .p-header {
    height: 63px;
    height: 3.9375rem;
  }

  .p-header__inner {
    gap: 12px;
    gap: .75rem;
    padding-left: 8px;
    padding-left: .5rem;
  }

  .p-header__logo-link {
    padding-block: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 95%;
  }

  .p-header__right {
    gap: 15px;
    gap: .9375rem;
  }

  .p-header__tel-link {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-header__tel-link-text {
    font-size: 15px;
    font-size: .9375rem;
    letter-spacing: -.02em;
  }

  .p-header__tel-time {
    font-size: 10px;
    font-size: .625rem;
  }

  .p-header__button {
    max-width: 121px;
    max-width: 7.5625rem;
  }

  .p-header__button-link {
    gap: 5px;
    gap: .3125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8.5px 5.5px 11.5px;
    padding: .53125rem .34375rem .71875rem;
  }

  .p-header__button-link-icon {
    width: 39px;
    width: 2.4375rem;
  }

  .p-header__button-link-text {
    font-size: 10px;
    font-size: .625rem;
  }

  .p-mv {
    padding-top: 45px;
    padding-top: 2.8125rem;
    padding-bottom: 29px;
    padding-bottom: 1.8125rem;
  }

  .p-mv::after {
    right: -10px;
    right: -.625rem;
    left: initial;
    width: 237px;
    width: 14.8125rem;
  }

  .p-mv__title-lead {
    font-size: 23.71px;
    font-size: 1.481875rem;
  }

  .p-mv__title-main {
    margin-top: 8px;
    margin-top: .5rem;
  }

  .p-mv__title-main-label {
    padding-top: 3px;
    padding-top: .1875rem;
    padding-bottom: 6.5px;
    padding-bottom: .40625rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-mv__title-main-label-small {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-mv__title-main-label--driver {
    padding-inline: 13px;
    padding-inline: .8125rem;
  }

  .p-mv__title-main-label--adoption {
    padding-inline: 13px;
    padding-inline: .8125rem;
  }

  .p-mv__title-main-label--consulting {
    padding-inline: 13px;
    padding-inline: .8125rem;
  }

  .p-mv__title-main-label--adoption,
  .p-mv__title-main-label--consulting {
    margin-top: 2.7px;
    margin-top: .16875rem;
  }

  .p-mv__subTitle {
    margin-top: 18.9px;
    margin-top: 1.18125rem;
  }

  .p-mv__subTitle-label {
    display: inline-block;
  }

  .p-mv__subTitle-label:first-child {
    padding-inline: 12px;
    padding-inline: .75rem;
  }

  .p-mv__subTitle-label:last-child {
    padding-inline: 12px;
    padding-inline: .75rem;
    margin-top: 4.82px;
    margin-top: .30125rem;
  }

  .p-mv__circleItems {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-mv__circleItem {
    width: 112px;
    width: 7rem;
  }

  .p-mv__circleItem-text {
    font-size: 10px;
    font-size: .625rem;
  }

  .p-mv__circleItem:nth-child(1) .p-mv__circleItem-text {
    margin-bottom: 2px;
    margin-bottom: .125rem;
  }

  .p-mv__circleItem-text-red {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-mv__circleItem-text-mtLarge {
    margin-top: 0;
  }

  .p-mv__circleItem-text-mtSub {
    margin-top: 2px;
    margin-top: .125rem;
  }

  .p-problem {
    padding-top: 99px;
    padding-top: 6.1875rem;
    padding-bottom: 112px;
    padding-bottom: 7rem;
  }

  .l-container.p-problem__inner {
    max-width: initial;
  }

  .p-problem__block {
    margin-top: 38px;
    margin-top: 2.375rem;
    padding: 38px 25px 59px 24px;
    padding: 2.375rem 1.5625rem 3.6875rem 1.5rem;
  }

  .p-problem__block::after {
    z-index: -1;
    -webkit-clip-path: polygon(0 1.25rem, 1.25rem 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 1.25rem, 1.25rem 0, 100% 0, 100% 100%, 0 100%);
  }

  .p-problem__block::before {
    top: initial;
    right: -20px;
    right: -1.25rem;
    bottom: -112px;
    bottom: -7rem;
    width: 173px;
    width: 10.8125rem;
  }

  .p-problem__lists {
    gap: 19px;
    gap: 1.1875rem;
    margin-inline: auto;
    width: 100%;
    max-width: 540px;
    max-width: 33.75rem;
  }

  .p-problem__list {
    padding-left: 29px;
    padding-left: 1.8125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }

  .p-problem__list::before {
    top: .5lh;
    width: 24px;
    width: 1.5rem;
  }

  .p-strength {
    padding-top: 108px;
    padding-top: 6.75rem;
    padding-bottom: 145px;
    padding-bottom: 9.0625rem;
  }

  .p-strength__listItems {
    margin-top: 56px;
    margin-top: 3.5rem;
    overflow: visible;
  }

  .p-strength__listItem {
    position: relative;
    -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;
    padding-top: 44px;
    padding-top: 2.75rem;
    padding-bottom: 45px;
    padding-bottom: 2.8125rem;
  }

  .p-strength__listItem::before, .p-strength__listItem::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 8px;
    height: .5rem;
    content: '';
  }

  .p-strength__listItem::before {
    top: 0;
  }

  .p-strength__listItem::after {
    bottom: 0;
  }

  .p-strength__listItem:nth-child(odd) {
    margin-right: calc(50% - 50vw);
    border-left: 8px solid #30A150;
    border-left: .5rem solid #30A150;
    border-top-left-radius: 8px;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: 8px;
    border-bottom-left-radius: .5rem;
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-left: 0;
    width: calc(100% + 50vw - 50%);
  }

  .p-strength__listItem:nth-child(odd)::before, .p-strength__listItem:nth-child(odd)::after {
    background: -webkit-gradient(linear, left top, right top, from(#30A150), to(#E9F2F4));
    background: linear-gradient(to right, #30A150 0%, #E9F2F4 100%);
  }

  .p-strength__listItem:nth-child(even) {
    margin-left: calc(50% - 50vw);
    border-right: 8px solid #30A150;
    border-right: .5rem solid #30A150;
    border-top-right-radius: 8px;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: 8px;
    border-bottom-right-radius: .5rem;
    padding-right: 0;
    padding-left: 40px;
    padding-left: 2.5rem;
    width: calc(100% + 50vw - 50%);
  }

  .p-strength__listItem:nth-child(even)::before, .p-strength__listItem:nth-child(even)::after {
    background: -webkit-gradient(linear, left top, right top, from(#E9F2F4), to(#30A150));
    background: linear-gradient(to right, #E9F2F4 0%, #30A150 100%);
  }

  .p-strength__listItem:not(:first-child) {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-strength__listItem:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-strength__listItem-content {
    display: contents;
    padding: 0;
    width: 100%;
  }

  .p-strength__listItem-number {
    top: -32px;
    top: -2rem;
    font-size: 58px;
    font-size: 3.625rem;
  }

  .p-strength__listItem:nth-child(odd) .p-strength__listItem-number {
    left: -22px;
    left: -1.375rem;
  }

  .p-strength__listItem:nth-child(even) .p-strength__listItem-number {
    right: -18px;
    right: -1.125rem;
  }

  .p-strength__listItem-labels {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0;
    line-height: 1.5454545455;
  }

  .p-strength__listItem-labels.p-strength__listItem-labels--pc {
    display: none;
  }

  .p-strength__listItem-labels.p-strength__listItem-labels--sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-strength__listItem:nth-child(odd) .p-strength__listItem-labels.p-strength__listItem-labels--sp {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-strength__listItem:nth-child(even) .p-strength__listItem-labels {
    width: 100%;
  }

  .p-strength__listItem-label {
    padding-right: 17px;
    padding-right: 1.0625rem;
    padding-bottom: 3px;
    padding-bottom: .1875rem;
    padding-left: 23px;
    padding-left: 1.4375rem;
  }

  .p-strength__listItem-text {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 19px;
    margin-top: 1.1875rem;
    max-width: initial;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-strength__listItem:nth-child(odd) .p-strength__listItem-text {
    padding-right: 0;
    padding-left: 18px;
    padding-left: 1.125rem;
  }

  .p-strength__listItem:nth-child(even) .p-strength__listItem-text {
    padding-right: 14px;
    padding-right: .875rem;
    padding-left: 0;
  }

  .p-strength__listItem-image {
    aspect-ratio: 308/200;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 19px;
    margin-top: 1.1875rem;
    width: 100%;
  }

  .p-strength__listItem:nth-child(odd) .p-strength__listItem-image {
    padding-left: 14px;
    padding-left: .875rem;
  }

  .p-strength__listItem:nth-child(even) .p-strength__listItem-image {
    padding-right: 14px;
    padding-right: .875rem;
  }

  .p-support {
    padding-top: 80px;
    padding-top: 5rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-support::before {
    aspect-ratio: 189.21/150;
    background-image: url(../img/support/bgi_support_sp-left_01.png);
    background-position: center;
    width: 50%;
    height: auto;
  }

  .p-support::after {
    aspect-ratio: 144.44/114.51;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(../img/support/bgi_support_sp-right_01.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 39%;
    height: auto;
    max-height: 116px;
    max-height: 7.25rem;
    content: '';
  }

  .p-support__title {
    padding-top: 6px;
    padding-top: .375rem;
    padding-bottom: 9px;
    padding-bottom: .5625rem;
  }

  .p-support__title-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }

  .p-support__message {
    gap: 14px;
    gap: .875rem;
    margin-top: 34px;
    margin-top: 2.125rem;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5454545455;
  }

  .p-support__message-under {
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: .03em;
    line-height: 1.3928571429;
  }

  .p-support__message-under::before {
    height: 10px;
    height: .625rem;
  }

  .p-support__flow {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

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

  .u-onlySp {
    display: block;
  }

  .u-tel {
    pointer-events: auto;
  }
}

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

  .p-mv__subTitle-label {
    padding-block: 3px;
    padding-block: .1875rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: normal;
  }
}

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

  .p-mv {
    background-image: url(../img/mv/bgi_mv_sp_01.png);
    background-position: top;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

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

  .u-onlySm {
    display: block;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}