@charset "UTF-8";@import "kiso.css";
/* リキッドレイアウト対応 */

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inline-block {
  display: inline-block;
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* inner */
  --inner: 1080px;
  --padding-pc: 25px;
  --padding-sp: 15px;
  /* color */
  --color-white: #fff;
  --color-text: #0D2936;
  --color-black: #000;
  --color-gray: #F0F0F0;
  --color-accent: #408F95;
  --color-primary: #234F5E;
  --color-secondary: #0000ff;
  --color-orange: #DE8430;
  /* font-weight */
  --regular: 300;
  --normal: 400;
  --medium: 500;
  --bold: 700;
  /* font-family */
  --base-font-family: "Inter", sans-serif;
  --second-font-family: "Karantina", system-ui;
  --title-font-family: "Lato", sans-serif;
  /* 8pxを余白の基準とした余白ルール */
  /* 参考：https://www.tak-dcxi.com/article/use-line-height-trim-as-css-variable/ */
  --leading-trim: calc((1em - 1lh) / 2);
  --spacing-unit: 0.5rem;
  --spacing-xs: calc(var(--spacing-unit) / 2);
  --spacing-sm: var(--spacing-unit);
  --spacing-md: calc(var(--spacing-unit) * 2);
  --spacing-lg: calc(var(--spacing-unit) * 3);
  --spacing-lg-2: calc(var(--spacing-unit) * 4);
  --spacing-xl: calc(var(--spacing-unit) * 5);
  --spacing-xl-2: calc(var(--spacing-unit) * 6);
  --spacing-2xl: calc(var(--spacing-unit) * 8);
  --spacing-3xl: calc(var(--spacing-unit) * 13);
  /* line-height分の余白を打ち消す */
  --spacing-xs-trim: calc(var(--spacing-xs) + var(--leading-trim));
  --spacing-sm-trim: calc(var(--spacing-sm) + var(--leading-trim));
  --spacing-md-trim: calc(var(--spacing-md) + var(--leading-trim));
  --spacing-lg-trim: calc(var(--spacing-lg) + var(--leading-trim));
  --spacing-xl-trim: calc(var(--spacing-xl) + var(--leading-trim));
  --spacing-2xl-trim: calc(var(--spacing-2xl) + var(--leading-trim));
  --spacing-3xl-trim: calc(var(--spacing-3xl) + var(--leading-trim));
  /* --leading-trimの使い方 */
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
    /* `px`などの単位が必要 */
  }
}
html {
  font-size: 2.1333333333vw;
}
@media (min-width: 750px) {
  html {
    font-size: 16px;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent; /* 強調をなくす */
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

/* bodyにデフォルト値を設定する */
body {
  font-family: var(--base-font-family);
}

/* 👍使い方 */
@media (max-width: 767px) {
  [data-device=pc] {
    display: none;
  }
}

@media (min-width: 768px) {
  [data-device=sp] {
    display: none;
  }
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem; /* = 16px */
}

textarea {
  field-sizing: content;
}

html {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  appearance: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.l-header {
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  max-width: calc(560 * var(--to-rem));
  width: 100%;
  padding-right: var(--padding-sp);
  padding-left: var(--padding-sp);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(var(--inner) + var(--padding-pc) * 2);
    padding-right: var(--padding-pc);
    padding-left: var(--padding-pc);
  }
}

.l-page {
  padding-block-start: calc(64 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .l-page {
    padding-block-start: calc(80 * var(--to-rem));
  }
}

.l-top__about {
  margin-block-start: var(--spacing-xl);
}
@media screen and (min-width: 768px) {
  .l-top__about {
    margin-block-start: var(--spacing-3xl);
  }
}

.c-button {
  padding: calc(14 * var(--to-rem)) calc(60 * var(--to-rem));
  position: relative;
  display: inline-block;
  font-size: calc(15 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  border: 1px solid currentColor;
  background-color: var(--color-white);
}

.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(20 * var(--to-rem));
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border-block-start: calc(2 * var(--to-rem)) solid var(--color-black);
  border-inline-end: calc(2 * var(--to-rem)) solid var(--color-black);
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .c-button:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .c-button:hover::before {
    right: calc(15 * var(--to-rem));
  }
}

.c-button.c-button--black {
  color: var(--color-white);
  background-color: var(--color-black);
}

.c-button.c-button--black::before {
  border-block-start: calc(2 * var(--to-rem)) solid currentColor;
  border-inline-end: calc(2 * var(--to-rem)) solid currentColor;
}

.c-cta {
  padding: calc(35.5 * var(--to-rem));
  display: inline-block;
  width: calc(592 * var(--to-rem));
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.2222222222;
  color: var(--color-white);
  background: linear-gradient(180deg, #FF9900 0%, #E94403 100%);
  border: calc(2 * var(--to-rem)) solid var(--color-white);
  border-radius: 100vmax;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.c-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.5);
}

.c-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateY(-50%);
  transition: left 0.6s ease;
}

.c-cta:hover::before {
  left: 100%;
}

.c-cta--floating {
  position: fixed;
  bottom: calc(20 * var(--to-rem));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(592 * var(--to-rem));
  padding: calc(35.5 * var(--to-rem));
  font-size: calc(36 * var(--to-rem));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.c-cta--floating.is-visible {
  opacity: 1;
  visibility: visible;
}

.c-cta--floating:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.5);
}

.c-image-text {
  display: grid;
  align-items: center;
  grid-template: "image gutter text margin" auto/41.6666666667% 16px 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text--reverse {
  grid-template: "margin text gutter image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 16px 41.6666666667%;
}

.c-image-text__image {
  grid-area: image;
}

.c-image-text__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text__text {
  grid-area: text;
}

.c-image-text02 {
  display: grid;
  align-items: center;
  grid-template: "image text margin" auto/41.6666666667% 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text02--reverse {
  grid-template: "margin text image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 41.6666666667%;
}

.c-image-text02__image {
  grid-area: image;
}

.c-image-text02__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text02__text {
  grid-area: text;
  padding: 20px 0 20px 20px;
  margin-left: -100px;
  background: #fff;
}

.c-image-text02--reverse .c-image-text02__text {
  padding: 20px 20px 20px 0;
  margin-left: auto;
  margin-right: -100px;
}

.c-section-title {
  position: relative;
  font-size: calc(40 * var(--to-rem));
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: calc(60 * var(--to-rem));
  }
}

.c-section-title.c-section-title--left {
  text-align: left;
}

.c-section-title.c-section-title--right {
  text-align: right;
}

.c-section-title.c-section-title--left::before {
  left: 0;
  transform: translate(0, -50%);
}

.c-section-title.c-section-title--right::before {
  right: 0;
  left: initial;
  transform: translate(0, -50%);
}

.c-triangle {
  aspect-ratio: 1/1;
  width: calc(64 * var(--to-rem));
  background-color: var(--color-black);
  display: inline-block;
}

.c-triangle--top {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.c-triangle--bottom {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.c-triangle--left {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.c-triangle--right {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-triangle--lower-left {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.c-triangle--upper-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.c-triangle--lower-right {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.c-triangle--upper-right {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.p-case-studies {
  padding-top: calc(74 * var(--to-rem));
  padding-bottom: calc(134 * var(--to-rem));
  background-color: #e6f2df;
}

.p-case-studies__head {
  text-align: center;
  margin-bottom: calc(60 * var(--to-rem));
}

.p-case-studies__subtitle {
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.1388888889;
  color: var(--color-black);
  position: relative;
  display: inline-block;
}

.p-case-studies__subtitle::before,
.p-case-studies__subtitle::after {
  content: "";
  position: absolute;
  top: 14%;
  width: calc(60 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  background-color: #333;
  transform: translateY(-50%);
}

.p-case-studies__subtitle::before {
  left: calc(-38 * var(--to-rem));
  transform: translateY(-50%) rotate(60deg);
}

.p-case-studies__subtitle::after {
  right: calc(-38 * var(--to-rem));
  transform: translateY(-50%) rotate(-60deg);
}

.p-case-studies__subtitle-large {
  margin-top: calc(36 * var(--to-rem));
  display: block;
  font-size: calc(40 * var(--to-rem));
  font-weight: 700;
  line-height: 1.09375;
}

.p-case-studies__title-wrap {
  margin-top: calc(17 * var(--to-rem));
  background: linear-gradient(180deg, #666, #000);
}

.p-case-studies__title {
  display: inline-block;
  background-color: #333;
  font-size: calc(64 * var(--to-rem));
  font-weight: 700;
  line-height: 1.1875;
  padding: calc(16.5 * var(--to-rem)) calc(30 * var(--to-rem));
  background: linear-gradient(180deg, #fcdb00, #968200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case-studies__list {
  margin-inline: auto;
  max-width: calc(648 * var(--to-rem));
}

.p-case-studies__item {
  padding-top: calc(55 * var(--to-rem));
  background-color: #222328;
  border-radius: calc(44 * var(--to-rem));
  color: var(--color-white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.p-case-studies__item + .p-case-studies__item {
  margin-top: calc(87 * var(--to-rem));
}

.p-case-studies__item-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-case-studies__item-en {
  display: inline-block;
  font-size: calc(64 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(90deg, #f9e900, #b07b09);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case-studies__item:nth-child(2) .p-case-studies__item-en {
  background: linear-gradient(90deg, #d9d9d9, #858585);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case-studies__item:nth-child(3) .p-case-studies__item-en {
  background: linear-gradient(90deg, #8d6440, #e59920);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case-studies__item-number {
  margin-top: calc(-75 * var(--to-rem));
  display: inline-block;
  font-size: calc(300 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(90deg, #f9e900, #b07b09);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case-studies__item:nth-child(2) .p-case-studies__item-number {
  background: linear-gradient(90deg, #d9d9d9, #858585);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case-studies__item:nth-child(3) .p-case-studies__item-number {
  background: linear-gradient(90deg, #8d6440, #e59920);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case-studies__item-brand-wrap {
  padding-block: calc(64 * var(--to-rem));
  background: url("../../images/case_studies-text01.webp") no-repeat center/cover;
  text-align: center;
}

.p-case-studies__item:nth-child(2) .p-case-studies__item-brand-wrap {
  background-image: url("../../images/case_studies-text02.webp");
}

.p-case-studies__item:nth-child(3) .p-case-studies__item-brand-wrap {
  background-image: url("../../images/case_studies-text03.webp");
}

.p-case-studies__item-brand {
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.2222222222;
  color: var(--color-white);
}

.p-case-studies__item-img {
  margin-top: calc(-35 * var(--to-rem));
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: calc(569 * var(--to-rem));
}
.p-case-studies__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.p-case-studies__item:nth-child(2) .p-case-studies__item-img {
  max-width: calc(569 * var(--to-rem));
}
.p-case-studies__item:nth-child(2) .p-case-studies__item-img img {
  aspect-ratio: 569/397;
}

.p-case-studies__item:nth-child(3) .p-case-studies__item-img {
  max-width: calc(571 * var(--to-rem));
}
.p-case-studies__item:nth-child(3) .p-case-studies__item-img img {
  aspect-ratio: 571/568;
}

.p-case-studies__item-content {
  padding: calc(40 * var(--to-rem));
}

.p-case-studies__item-text {
  font-size: calc(30 * var(--to-rem));
  font-weight: 400;
  line-height: 1.2;
}
.p-case-studies__item-text + .p-case-studies__item-text {
  margin-top: calc(30 * var(--to-rem));
}

.p-contact {
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-block: calc(80 * var(--to-rem));
  }
}

.p-contact__contents {
  display: grid;
  margin-block-start: calc(40 * var(--to-rem));
  gap: calc(40 * var(--to-rem));
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact__contents {
    gap: calc(80 * var(--to-rem));
  }
}

.p-cta {
  padding-top: calc(39 * var(--to-rem));
  padding-bottom: calc(92 * var(--to-rem));
  background: url("../../images/cta-bg.webp") no-repeat center/cover;
  color: var(--color-white);
}

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

.p-cta__logo {
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: calc(81 * var(--to-rem));
}
.p-cta__logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 81/59;
}

.p-cta__title {
  margin-top: calc(27 * var(--to-rem));
  font-size: calc(64 * var(--to-rem));
  font-weight: 700;
  line-height: 1.3125;
}

.p-cta__content {
  margin-top: calc(73 * var(--to-rem));
  text-align: center;
}

.p-cta__main-text {
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.4444444444;
}

.p-cta__sub-text {
  margin-top: calc(178 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: 400;
  line-height: 1.3333333333;
}

.p-cta__services {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  margin: 0;
}

.p-cta__button {
  margin-top: calc(100 * var(--to-rem));
  text-align: center;
}

.p-faq {
  padding-top: calc(64 * var(--to-rem));
  padding-bottom: calc(58 * var(--to-rem));
}

.p-faq__inner {
  margin-inline: auto;
  padding-inline: calc(20 * var(--to-rem));
}

.p-faq__title {
  font-size: calc(96 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 700;
  background: linear-gradient(180deg, #64b530, #2c4f15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-align: center;
}

.p-faq__list {
  margin-top: calc(51 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(676 * var(--to-rem));
}

.p-faq__item {
  border: calc(4 * var(--to-rem)) solid #e0f0d6;
  border-radius: calc(16 * var(--to-rem));
  overflow: hidden;
}
.p-faq__item + .p-faq__item {
  margin-top: calc(20 * var(--to-rem));
}

.p-faq__question {
  background-color: #e0f0d6;
  padding: calc(20 * var(--to-rem));
  display: flex;
  align-items: center;
  gap: calc(15 * var(--to-rem));
}

.p-faq__question-number {
  margin-top: calc(-26 * var(--to-rem));
  flex-shrink: 0;
  font-size: calc(96 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, #64b530, #2c4f15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-align: center;
}

.p-faq__question-number-heading {
  display: inline-block;
  font-size: calc(64 * var(--to-rem));
  font-weight: 700;
}

.p-faq__question-text {
  font-size: calc(30 * var(--to-rem));
  font-weight: 500;
  line-height: 1.2;
}

.p-faq__answer {
  padding: calc(30 * var(--to-rem));
}

.p-faq__answer-text {
  margin-left: calc(55 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: 500;
  line-height: 1.2;
}

.p-footer {
  background-color: #244211;
  padding: calc(17 * var(--to-rem)) 0;
}
.p-footer__copyright {
  font-size: calc(14 * var(--to-rem));
  color: var(--color-white);
  line-height: 1;
  text-align: center;
}

.p-footer__copyright small {
  display: inline-block;
  font-size: calc(24 * var(--to-rem));
  font-weight: 500;
  line-height: 1.2083333333;
}

.p-header__inner {
  padding-left: calc(40 * var(--to-rem));
}
.p-header__logo {
  padding-top: calc(34 * var(--to-rem));
  max-width: calc(80 * var(--to-rem));
  width: 100%;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-issue {
  padding-top: calc(122 * var(--to-rem));
  padding-bottom: calc(54 * var(--to-rem));
  color: var(--color-black);
  background-color: #e0f0d6;
  position: relative;
}

.p-issue::after {
  content: "";
  position: absolute;
  bottom: calc(-159 * var(--to-rem));
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: calc(160 * var(--to-rem)) solid #e0f0d6;
  border-bottom: 0;
}

.p-issue__inner {
  margin-inline: auto;
  padding-inline: calc(34 * var(--to-rem));
  max-width: calc(750 * var(--to-rem));
}

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

.p-issue__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * var(--to-rem));
}

.p-issue__text {
  margin-top: calc(20 * var(--to-rem));
  display: inline-block;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.0694444444;
}

.p-issue__number {
  display: inline-block;
  font-size: calc(250 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, #64b530, #2c4f15); /* 背景色にグラデーションを指定 */
  -webkit-background-clip: text; /* テキストで切り抜く */
  -webkit-text-fill-color: transparent; /* 切り抜いた部分は背景を表示 */
}

.p-issue__cards {
  margin-top: calc(-5 * var(--to-rem));
}

.p-issue__card {
  padding-left: calc(15 * var(--to-rem));
  min-height: calc(315 * var(--to-rem));
  border: calc(5 * var(--to-rem)) solid #488521;
  border-radius: calc(34 * var(--to-rem));
  position: relative;
}
.p-issue__card + .p-issue__card {
  margin-top: calc(20 * var(--to-rem));
}

.p-issue__card-head {
  display: flex;
  gap: calc(30 * var(--to-rem));
}

.p-issue__card-number {
  margin-top: calc(-40 * var(--to-rem));
  font-size: calc(250 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, #64b530, #2c4f15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-issue__card-title {
  margin-top: calc(25 * var(--to-rem));
  font-size: calc(40 * var(--to-rem));
  font-weight: 700;
  line-height: 1.125;
  color: #488521;
}

.p-issue__card-text {
  margin-top: calc(-5 * var(--to-rem));
  padding-left: calc(40 * var(--to-rem));
  display: flex;
  gap: calc(18 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1.2;
}

.p-issue__card-text::before {
  margin-top: calc(7 * var(--to-rem));
  display: inline-block;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: calc(11 * var(--to-rem)) solid transparent;
  border-bottom: calc(11 * var(--to-rem)) solid transparent;
  border-left: calc(28 * var(--to-rem)) solid #488521;
  border-right: 0;
}

.p-issue__card-img {
  display: block;
  width: 100%;
  max-width: calc(267 * var(--to-rem));
  position: absolute;
  bottom: calc(10 * var(--to-rem));
  right: calc(-39 * var(--to-rem));
}
.p-issue__card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 267/178;
}

.p-issue__card:nth-child(1) .p-issue__card-img img {
  aspect-ratio: 267/208;
}

.p-issue__card:nth-child(4) .p-issue__card-img img {
  aspect-ratio: 267/180;
}

.p-issue__triangle {
  margin-top: calc(11 * var(--to-rem));
  margin-inline: auto;
  width: 0;
  height: 0;
  border-left: calc(83 * var(--to-rem)) solid transparent;
  border-right: calc(83 * var(--to-rem)) solid transparent;
  border-top: calc(144 * var(--to-rem)) solid #488521;
}

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

.p-issue__conclusion-text {
  margin-top: calc(10 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1.7333333333;
}

.p-issue__conclusion-highlight {
  display: inline-block;
  font-size: calc(40 * var(--to-rem));
  color: #E94403;
}

.p-issue__conclusion-text-large {
  display: inline-block;
  font-size: calc(40 * var(--to-rem));
}

.p-meaning {
  padding-bottom: calc(60 * var(--to-rem));
  background-color: #222328;
  color: var(--color-white);
  position: relative;
}

.p-meaning::after {
  content: "";
  position: absolute;
  bottom: calc(-89 * var(--to-rem));
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: calc(90 * var(--to-rem)) solid #222328;
  border-bottom: 0;
}

.p-meaning__head {
  padding-top: calc(20 * var(--to-rem));
  padding-left: calc(20 * var(--to-rem));
  background: url("../../images/meaning-top.webp") no-repeat center/cover;
  position: relative;
}

.p-meaning__head-read {
  margin-inline: auto;
  max-width: calc(750 * var(--to-rem));
  font-size: calc(32 * var(--to-rem));
  font-weight: 700;
  line-height: 1.2;
}

.p-meaning__title {
  margin-top: calc(50 * var(--to-rem));
  margin-inline: auto;
  max-width: calc(750 * var(--to-rem));
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.2;
}

.p-meaning__number {
  margin-top: calc(-70 * var(--to-rem));
  display: inline-block;
  font-size: calc(300 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, #f9e900, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-meaning__list {
  margin-top: calc(41 * var(--to-rem));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
  max-width: calc(750 * var(--to-rem));
}

.p-meaning__item-head {
  padding-left: calc(20 * var(--to-rem));
  display: flex;
  gap: calc(10 * var(--to-rem));
  position: relative;
  z-index: 1;
}

.p-meaning__item-number {
  display: inline-block;
  font-size: calc(300 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, #f9e900, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-meaning__item-label {
  padding-block: calc(9 * var(--to-rem));
  display: inline-block;
  width: calc(178 * var(--to-rem));
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  background-color: #64b530;
  text-align: center;
}

.p-meaning__item-title {
  margin-top: calc(19 * var(--to-rem));
  font-size: calc(40 * var(--to-rem));
  font-weight: 700;
  line-height: 1.2;
  color: #ff9900;
}

.p-meaning__item-content {
  margin-left: auto;
  padding-bottom: calc(30 * var(--to-rem));
  max-width: calc(685 * var(--to-rem));
  background: linear-gradient(180deg, #3d3d3d, #6d6d6d);
  border-radius: calc(16 * var(--to-rem)) 0 0 calc(16 * var(--to-rem));
}

.p-meaning__item:nth-child(even) .p-meaning__item-content {
  margin-left: initial;
  border-radius: 0 calc(16 * var(--to-rem)) calc(16 * var(--to-rem)) 0;
}

.p-meaning__item-img {
  display: block;
  width: 100%;
  max-width: calc(661 * var(--to-rem));
  translate: 0 calc(-80 * var(--to-rem));
}
.p-meaning__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 661/369;
}

.p-meaning__item:nth-child(odd) .p-meaning__item-img {
  margin-left: auto;
}

.p-meaning__item-text {
  margin-top: calc(-50 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: 400;
  line-height: 1.2;
}

.p-meaning__item-text-bold {
  font-weight: 700;
}

.p-meaning__item-text-small {
  margin-top: calc(15 * var(--to-rem));
  display: block;
  font-size: calc(20 * var(--to-rem));
  font-weight: 300;
  line-height: 1.45;
}

.p-meaning__bottom {
  margin-top: calc(77 * var(--to-rem));
  text-align: center;
}

.p-meaning__bottom-text {
  font-size: calc(30 * var(--to-rem));
  font-weight: 400;
  line-height: 1.2;
}
.p-meaning__bottom-text + .p-meaning__bottom-text {
  margin-top: calc(27 * var(--to-rem));
}

.p-meaning__bottom-text--highlight {
  font-weight: 700;
  color: #64B530;
}

.p-mv {
  padding-bottom: calc(55 * var(--to-rem));
  width: 100%;
  background: url("../../images/mv-bg.webp") no-repeat center/cover;
  background-color: #222328;
}

.p-mv__title {
  margin-left: calc(23 * var(--to-rem));
  padding-top: calc(27 * var(--to-rem));
  font-size: calc(128 * var(--to-rem));
  font-family: var(--second-font-family);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.p-mv__subtitle {
  margin-top: calc(30 * var(--to-rem));
  font-size: calc(75 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, #c6fba3, #95D96A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
}

.p-mv__text {
  margin-top: calc(11 * var(--to-rem));
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: calc(595 * var(--to-rem));
  position: relative;
  z-index: 1;
}
.p-mv__text img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 595/116;
}

.p-mv__machine {
  margin-inline: auto;
  max-width: calc(750 * var(--to-rem));
  position: relative;
}

.p-mv__machine-img {
  margin-top: calc(-150 * var(--to-rem));
  display: block;
  width: 100%;
}
.p-mv__machine-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 712/656;
}

.p-mv__dealer {
  margin-top: calc(-307 * var(--to-rem));
  margin-left: calc(50 * var(--to-rem));
}

.p-mv__dealer-logo {
  display: block;
  width: 100%;
  max-width: calc(67 * var(--to-rem));
}
.p-mv__dealer-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 67/66;
}

.p-mv__dealer-text {
  margin-top: calc(12 * var(--to-rem));
  display: inline-block;
  font-size: calc(24 * var(--to-rem));
  font-weight: 700;
  line-height: 1.2083333333;
  color: var(--color-white);
}

.p-mv__features {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(21 * var(--to-rem)) calc(55 * var(--to-rem));
  width: fit-content;
}

.p-mv__feature {
  margin-top: calc(50 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(289 * var(--to-rem));
  height: calc(289 * var(--to-rem));
  background: linear-gradient(180deg, #64b530 0%, #2c4f15 100%);
  border-radius: 50%;
  text-align: center;
  position: relative;
}

.p-mv__feature-text {
  display: inline-block;
  color: var(--color-white);
  font-size: calc(32 * var(--to-rem));
  font-weight: 700;
  line-height: 1.21875;
}

.p-mv__feature-text--highlight {
  display: inline-block;
  color: #ff9900;
  white-space: nowrap;
}

.p-mv__cta {
  margin-top: calc(42 * var(--to-rem));
  margin-inline: auto;
  width: fit-content;
}

.p-recommend {
  padding-top: calc(175 * var(--to-rem));
  padding-bottom: calc(115 * var(--to-rem));
  background: url("../../images/recommend.webp") no-repeat center/cover;
  color: var(--color-white);
}

.p-recommend__content {
  margin-inline: auto;
  padding: calc(50 * var(--to-rem)) calc(25 * var(--to-rem));
  background-color: rgba(0, 0, 0, 0.62);
  border: calc(14 * var(--to-rem)) solid var(--color-black);
  border-radius: calc(12 * var(--to-rem));
  max-width: calc(668 * var(--to-rem));
}

.p-recommend__title {
  font-size: calc(48 * var(--to-rem));
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.p-recommend__list {
  margin-top: calc(73 * var(--to-rem));
}

.p-recommend__item {
  padding-left: calc(45 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 2.4;
  position: relative;
}

.p-recommend__item--highlight {
  color: #ff9900;
}

.p-recommend__item::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 1em;
  height: 0.5em;
  border-left: calc(4 * var(--to-rem)) solid var(--color-white);
  border-bottom: calc(4 * var(--to-rem)) solid var(--color-white);
  transform: rotate(-45deg);
}

.p-rental {
  padding-bottom: calc(20 * var(--to-rem));
  position: relative;
}

.p-rental__inner {
  margin-inline: auto;
  max-width: calc(750 * var(--to-rem));
}

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

.p-rental__logo {
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: calc(480 * var(--to-rem));
}
.p-rental__logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.p-rental__title {
  margin-top: calc(-98 * var(--to-rem));
  font-size: calc(64 * var(--to-rem));
  font-weight: 700;
  line-height: 1.203125;
  color: #ff9900;
}

.p-rental__subtitle {
  margin-top: calc(21 * var(--to-rem));
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.1111111111;
  color: var(--color-black);
}

.p-rental__mountain {
  margin-top: calc(29 * var(--to-rem));
  display: block;
  width: 100%;
  max-width: calc(345 * var(--to-rem));
}
.p-rental__mountain img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 345/214;
}

.p-rental__benefit {
  padding-top: calc(20 * var(--to-rem));
  padding-bottom: calc(20 * var(--to-rem));
  background: url("../../images/rental-bg.webp") no-repeat center/cover;
}

.p-rental__benefit-list {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16 * var(--to-rem)) calc(18 * var(--to-rem));
  max-width: calc(686 * var(--to-rem));
}

.p-rental__benefit-item {
  min-height: calc(334 * var(--to-rem));
  background-color: #fcdb00;
  border: calc(11 * var(--to-rem)) solid var(--color-black);
  text-align: center;
}

.p-rental__benefit-title {
  margin-top: calc(45 * var(--to-rem));
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #d67703;
}

.p-rental__benefit-text {
  margin-top: calc(54 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-black);
}

/* 下記サンプル 構築時は削除してください */
.p-sample {
  padding-block: var(--spacing-xl);
}

.p-sample__link-wrap {
  display: grid;
  gap: var(--spacing-sm);
  margin-block-start: var(--spacing-xl);
}

.p-sample__link {
  display: inline-block;
  font-size: calc(24 * var(--to-rem));
  margin-block-start: var(--spacing-xl);
  text-decoration: underline;
}

@media (any-hover: hover) {
  .p-sample__link:hover {
    text-decoration: none;
  }
}
.p-sample__bg {
  aspect-ratio: 1/1;
  width: 300px;
  background-image: image-set(url("/images/bg_sample.webp") type("image/webp"), url("/images/bg_sample.png") type("image/png"));
  background-size: contain;
}

.p-sample__image {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 1/1;
}

.p-sample__image img {
  object-fit: cover;
}

.p-sample__text-block {
  margin-block: var(--spacing-xl);
}

.p-sample__head {
  font-size: calc(24 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-sample__head {
    font-size: calc(32 * var(--to-rem));
  }
}

.p-sample__text {
  letter-spacing: 0.05em;
  height: 1.5em;
}

.p-sample__title2 {
  font-size: calc(18 * var(--to-rem));
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: inline-block;
  margin-block-end: var(--spacing-md);
}
@media screen and (min-width: 768px) {
  .p-sample__title2 {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-sample__divider {
  margin-block: var(--spacing-lg-2);
}

.p-sample__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(64px, 100%), 1fr));
  gap: var(--spacing-md);
}

.p-step {
  padding-block: calc(80 * var(--to-rem));
  padding-top: calc(90 * var(--to-rem));
}

.p-step__inner {
  margin-inline: auto;
  max-width: calc(750 * var(--to-rem));
}

.p-step__head {
  position: relative;
}
.p-step__head::before {
  content: "";
  width: calc(346 * var(--to-rem));
  height: calc(207 * var(--to-rem));
  background: url("../../images/balloon.svg") no-repeat center/cover;
  position: absolute;
  top: calc(-92 * var(--to-rem));
  left: 0;
}

.p-step__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(10 * var(--to-rem));
  text-align: center;
}

.p-step__title-read {
  display: inline-block;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.1388888889;
  color: #64b530;
}

.p-step__title-highlight {
  display: inline-block;
  width: calc(269 * var(--to-rem));
  font-size: calc(48 * var(--to-rem));
  font-weight: 700;
  background-color: #64b530;
  color: var(--color-white);
}

.p-step__list {
  margin-top: calc(78 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(20 * var(--to-rem));
}

.p-step__item {
  display: flex;
  gap: calc(20 * var(--to-rem));
  align-items: center;
  position: relative;
}
.p-step__item + .p-step__item {
  margin-top: calc(70 * var(--to-rem));
}

.p-step__item-img {
  display: block;
  width: 100%;
  max-width: calc(283 * var(--to-rem));
}
.p-step__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 283/234;
}

.p-step__item:nth-child(2) .p-step__item-img {
  max-width: calc(265 * var(--to-rem));
}
.p-step__item:nth-child(2) .p-step__item-img img {
  aspect-ratio: 265/193;
}

.p-step__item:nth-child(3) .p-step__item-img {
  max-width: calc(273 * var(--to-rem));
}
.p-step__item:nth-child(3) .p-step__item-img img {
  aspect-ratio: 273/221;
}

.p-step__item-content {
  max-width: calc(330 * var(--to-rem));
}

.p-step__item-title {
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  color: #64b530;
}

.p-step__item-text {
  margin-top: calc(29 * var(--to-rem));
  font-size: calc(24 * var(--to-rem));
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

.p-step__item-arrow {
  position: absolute;
  bottom: calc(-30 * var(--to-rem));
  left: 10%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: calc(15 * var(--to-rem)) solid transparent;
  border-right: calc(15 * var(--to-rem)) solid transparent;
  border-top: calc(33 * var(--to-rem)) solid #64b530;
}

.p-trouble {
  padding-top: calc(60 * var(--to-rem));
  background-color: #1d204b;
  color: var(--color-white);
  position: relative;
}

.p-trouble::after {
  content: "";
  position: absolute;
  bottom: calc(-159 * var(--to-rem));
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: calc(160 * var(--to-rem)) solid #1d204b;
  border-bottom: 0;
  z-index: 1;
}

.p-trouble__inner {
  margin-inline: auto;
  padding-inline: calc(20 * var(--to-rem));
  max-width: calc(750 * var(--to-rem));
}

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

.p-trouble__title-read {
  display: inline-block;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
}

.p-trouble__title-continuation {
  margin-top: calc(20 * var(--to-rem));
  display: inline-block;
  font-size: calc(40 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
}

.p-trouble__highlight {
  display: inline-block;
  color: #64b530;
}

.p-trouble__person {
  margin-top: calc(-7 * var(--to-rem));
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: calc(455 * var(--to-rem));
}
.p-trouble__person img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.p-trouble__problem-list {
  margin-top: calc(28 * var(--to-rem));
  margin-left: calc(108 * var(--to-rem));
}

.p-trouble__problem-item {
  padding-left: calc(40 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1.7333333333;
  position: relative;
}

.p-trouble__problem-item::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: -0.5em;
  width: 1em;
  height: 0.5em;
  border-left: calc(4 * var(--to-rem)) solid var(--color-white);
  border-bottom: calc(4 * var(--to-rem)) solid var(--color-white);
  transform: rotate(-45deg);
}

.p-trouble__problem-item--highlight {
  display: inline-block;
  color: #ff9900;
}

.p-trouble__fact-button {
  margin-top: calc(45 * var(--to-rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(169 * var(--to-rem));
  height: calc(169 * var(--to-rem));
  background: linear-gradient(180deg, #b2d9ff 0%, #5492d0 100%);
  border-radius: 50%;
  border: calc(10 * var(--to-rem)) solid var(--color-white);
}

.p-trouble__fact-text {
  display: inline-block;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.1388888889;
  color: #ffee00;
}

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

.p-trouble__statement-text {
  margin-top: calc(43 * var(--to-rem));
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
}

.p-trouble__icons {
  margin-top: calc(17 * var(--to-rem));
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: calc(648 * var(--to-rem));
  translate: calc(14 * var(--to-rem)) 0;
}
.p-trouble__icons img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 648/219;
}

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

.p-trouble__cause-text {
  margin-top: calc(38 * var(--to-rem));
  font-size: calc(32 * var(--to-rem));
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-trouble__machine-img {
  margin-top: calc(23 * var(--to-rem));
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: calc(293 * var(--to-rem));
}
.p-trouble__machine-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.p-trouble__conclusion-text {
  margin-top: calc(-47 * var(--to-rem));
  font-size: calc(40 * var(--to-rem));
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
}

.p-trouble__conclusion-highlight {
  display: inline-block;
  font-size: calc(64 * var(--to-rem));
  color: #FF9900;
}