@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP";
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body {
  background: #0f0e16;
}

main {
  overflow: hidden;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed", sans-serif;
  src: url("../../fonts/Roboto_Condensed-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed", sans-serif;
  src: url("../../fonts/Roboto_Condensed-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-answer {
    padding-bottom: 10.625rem;
    max-width: 58.75rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-answer__row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-answer__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.p-answer__title-wrapper {
  background: rgba(255, 255, 255, .1);
  text-align: center;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-answer__title-wrapper {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }
}

.p-answer__title {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-answer__title {
    font-size: 1.125rem;
  }
}

.p-answer__grid {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-answer__grid {
    margin-top: 1.875rem;
  }
}

.p-answer__grid-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 1px;
     -moz-column-gap: 1px;
          column-gap: 1px;
  row-gap: 10px;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-answer__grid-block {
    row-gap: 1.25rem;
  }
}

.p-answer__grid-block + .p-answer__grid-block {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-answer__grid-block + .p-answer__grid-block {
    margin-top: 1.25rem;
  }
}

.p-answer__grid-box {
  border-right: 1px solid rgba(255, 255, 255, .2);
  padding-left: 8px;
  padding-left: 0.5rem;
  padding-right: 8px;
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-answer__grid-box {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.p-answer__grid-box:last-child {
  border-right: none;
  padding-right: 0;
  padding-right: initial;
}

.p-answer__grid-box:first-child {
  padding-left: 0;
  padding-left: initial;
}

.p-answer__gridTitle {
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding-top: 6px;
  padding-top: 0.375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
}

.p-answer__gridText {
  color: #fff;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-answer__gridText {
    font-size: 1.5rem;
  }
}

.p-answer__gridText span {
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-answer__gridText span {
    font-size: 0.8125rem;
  }
}

.p-answer__gridText-small {
  font-size: 10px !important;
  font-size: 0.625rem !important;
}

.p-answer__graph {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-answer__graph img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-answer__size {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-answer__size-img {
  width: 550px;
  width: 34.375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-answer__size-img {
    width: auto;
    width: initial;
  }
}

.p-answer__size-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-answer__example-wrapper {
  margin-top: 72px;
  margin-top: 4.5rem;
}

.p-answer__example {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-answer__data {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-answer__download {
  margin-top: 60px;
  margin-top: 3.75rem;
}

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

.p-answer__cool {
  margin-top: 32px;
  margin-top: 2rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-answer__cool {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-answer__coolDetail {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-answer__coolDetail {
    max-width: 32.25rem;
  }
}

.p-answer__coolTitle {
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}

.p-answer__coolText {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #fff;
  font-weight: 500;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-answer__coolImg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .p-answer__coolImg {
    max-width: 26.3125rem;
  }
}

.p-answer__coolImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-answer__gridText--bottom {
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
  text-align: left;
}
.p-answer__gridText--bottom.bt-none {
  border-top: none;
}

.p-bracket-spec {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-bracket-spec__table {
  width: 100%;
  border-collapse: collapse;
  max-width: 860px;
  max-width: 53.75rem;
  min-width: 860px;
  min-width: 53.75rem;
  margin-left: auto;
  margin-right: auto;
}

.p-bracket-spec__th,
.p-bracket-spec__td {
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  vertical-align: middle;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6;
  background-color: transparent;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-bracket-spec__th,
  .p-bracket-spec__td {
    font-size: 0.8125rem;
  }
}

.p-bracket-spec__th {
  font-weight: 400;
  background: #27262d;
  text-align: center;
}

.p-bracket-spec__note {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
  margin-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-bracket-spec__th,
  .p-bracket-spec__td {
    font-size: 0.75rem;
    padding: 0.625rem 0.75rem;
  }
  .p-bracket-spec__note {
    font-size: 0.6875rem;
  }
}
.p-bracket-spec__td-left {
  text-align: left;
}

.p-cable-spec {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-cable-spec__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  min-width: 53.75rem;
  max-width: 860px;
  max-width: 53.75rem;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.p-cable-spec__th,
.p-cable-spec__td {
  padding: 16px 8px;
  padding: 1rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, .2);
  vertical-align: middle;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-cable-spec__th {
  background-color: #1f1f24;
  font-weight: 400;
  text-align: center;
}

.p-cable-spec__th img {
  max-width: 143px;
  max-width: 8.9375rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-cable-spec__thead .p-cable-spec__th:not(:first-child) {
  font-weight: 400;
}

.p-cable-spec__td-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-cable-spec__th,
  .p-cable-spec__td {
    font-size: 0.75rem;
    padding: 0.625rem 0.5rem;
  }
}
.p-cable-spec__text {
  font-size: 12px;
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: left;
}

.p-chuck-nut {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-chuck-nut__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  min-width: 53.75rem;
  max-width: 860px;
  max-width: 53.75rem;
  text-align: left;
}

.p-chuck-nut__th,
.p-chuck-nut__td {
  padding: 16px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  vertical-align: middle;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.6;
  background-color: transparent;
  white-space: nowrap;
}

.p-chuck-nut__th {
  text-align: center;
  background: #27262d;
}

.p-chuck-nut__td img {
  max-width: 88px;
  max-width: 5.5rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  margin: 0 auto;
}

.w-56 {
  max-width: 56px !important;
  max-width: 3.5rem !important;
}

.p-chuck-nut__center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .p-chuck-nut__th,
  .p-chuck-nut__td {
    font-size: 0.8125rem;
    padding: 0.625rem 0.75rem;
  }
}
.p-collet-spec {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-collet-spec__table {
  min-width: 800px;
  min-width: 50rem;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.p-collet-spec__th,
.p-collet-spec__td {
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  vertical-align: middle;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6;
  background-color: transparent;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-collet-spec__th,
  .p-collet-spec__td {
    font-size: 0.8125rem;
  }
}

.p-collet-spec__th {
  text-align: center;
  background: #27262d;
}

.p-collet-spec__th-img {
  max-width: 200px;
  max-width: 12.5rem;
  min-width: 200px;
  min-width: 12.5rem;
}

.p-collet-spec__th img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-collet-spec__note {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #c0823a;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .p-collet-spec__th,
  .p-collet-spec__td {
    font-size: 0.75rem;
    padding: 0.625rem 0.75rem;
  }
  .p-collet-spec__th.ju-center,
  .p-collet-spec__td.ju-center {
    text-align: center;
  }
  .p-collet-spec__note {
    font-size: 0.6875rem;
  }
}
.p-collet-spec__note span {
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-collet-spec__center {
  text-align: center;
}

.w90 {
  width: 90px;
  width: 5.625rem;
}

.w100 {
  width: 100px;
  width: 6.25rem;
}

.w120 {
  width: 120px;
  width: 7.5rem;
}

.w150 {
  width: 150px;
  width: 9.375rem;
}

.w160 {
  width: 160px;
  width: 10rem;
}

.w240 {
  width: 240px;
  width: 15rem;
}

.w225 {
  width: 225px;
  width: 14.0625rem;
}

.w250 {
  width: 250px;
  width: 15.625rem;
}

.w310 {
  width: 310px;
  width: 19.375rem;
}

.w345 {
  width: 345px;
  width: 21.5625rem;
}

.w450 {
  width: 450px;
  width: 28.125rem;
}

.w200 {
  width: 200px;
  width: 12.5rem;
}

.w225 {
  width: 225px;
  width: 14.0625rem;
}

.p-collet-spec__red {
  color: #c0823a;
}

.p-download {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-download {
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-download__list {
  border: 1px solid #fff;
}

.p-download__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-download__link {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
    padding-right: 1.3125rem;
  }
}

.p-download__link-text {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-download__link-text {
    font-size: 1rem;
  }
}

.p-download__svg {
  width: 14px;
  width: 0.875rem;
  margin-left: auto;
}

.p-download__svg svg {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-drawer-icon {
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.p-drawer-icon.is-active {
  position: relative;
  z-index: 10001;
  background: #222;
}
.p-drawer-icon.is-active .p-drawer-icon__bars {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}
.p-drawer-icon.is-active .p-drawer-icon__bar1 {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.p-drawer-icon.is-active .p-drawer-icon__bar2 {
  display: none;
}
.p-drawer-icon.is-active .p-drawer-icon__bar3 {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-drawer-icon__bars {
  position: relative;
  width: 24px;
  width: 1.5rem;
  height: 12px;
  height: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bars {
    width: 1.5rem;
    height: 0.75rem;
  }
}

.p-drawer-icon__bar1 {
  height: 1px;
  background: #1a2e56;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 20px;
  width: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bar1 {
    width: 1.5rem;
  }
}

.p-drawer-icon__bar2 {
  height: 1px;
  background: #1a2e56;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 20px;
  width: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bar2 {
    width: 1.5rem;
  }
}

.p-drawer-icon__bar3 {
  height: 1px;
  background: #1a2e56;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bar3 {
    width: 1.5rem;
  }
}

.p-drawer-content {
  width: 100%;
  height: 100dvh;
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, .7);
  z-index: 9998;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 125px;
  padding-top: 7.8125rem;
  padding-left: 32px;
  padding-left: 2rem;
  padding-right: 32px;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content {
    padding-top: 0.5rem;
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-drawer-content.is-active {
  visibility: visible;
  opacity: 1;
}

.p-drawer-content__items {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__items {
    max-width: 62rem;
    width: 100%;
    padding-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-drawer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 16px;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-nav {
    row-gap: 2rem;
  }
}
.p-drawer-nav > li a {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
}
.p-drawer-nav > li .ttl {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #606060;
}
.p-drawer-nav > li > ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 8px;
  margin-top: 0.5rem;
}
.p-drawer-nav > li > ul > li {
  position: relative;
  padding-left: 10px;
  padding-left: 0.625rem;
}
.p-drawer-nav > li > ul > li::before {
  content: "";
  position: absolute;
  width: 5px;
  width: 0.3125rem;
  height: 1.5px;
  background: #000;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-drawer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}

.p-drawer-content__list {
  text-align: center;
}

.p-drawer-content__list + .p-drawer-content__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-drawer-content__link {
  font-size: 17px;
  font-size: 1.0625rem;
  display: block;
  font-weight: 500;
}

.p-drawer-content__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  margin-top: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}

.p-drawer-content__sns-text {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.p-drawer-content__sns-link {
  width: 30px;
  width: 1.875rem;
}

.p-drawer-content__sns-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-drawer-content__contact-wrapper {
  margin-top: 80px;
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-drawer-content__contact {
  width: 240px;
  width: 15rem;
  height: 60px;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#f56112), to(#f5ab03));
  background: linear-gradient(to right, #f56112, #f5ab03);
  border-radius: 0.3125rem;
  position: relative;
}

.p-drawer-content__contact-text {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.p-drawer-content__contact svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 11px;
  right: 0.6875rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-drawer-content__contact:hover.p-drawer-content__contact svg {
  right: 5px;
  right: 0.3125rem;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .p-example {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-example + .p-example {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-example__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-example__img {
    max-width: 26.875rem;
  }
}

.p-example__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-example__detail {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-example__detail {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    margin-top: initial;
  }
}

.p-example__case {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-example__detail-title {
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-example__detail-title {
    font-size: 1.5rem;
  }
}

.p-example__more {
  margin-top: 20px;
  margin-top: 1.25rem;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-example__more:hover {
  opacity: 0.7;
}

.p-example__more-text {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
}

.p-example__more-cross {
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
  display: inline-block;
  position: relative;
}

.p-example__more-cross-line1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 9px;
  width: 0.5625rem;
  height: 1px;
  background-color: #fff;
}

.p-example__more-cross-line2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  display: inline-block;
  width: 9px;
  width: 0.5625rem;
  height: 1px;
  background-color: #fff;
}

.p-feature {
  overflow: hidden;
  padding-top: 150px;
  padding-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-feature {
    margin-top: -7.5rem;
    padding-top: 0;
    padding-top: initial;
  }
}

.p-feature__block {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-feature__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-feature__block:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-feature__block:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-feature__block + .p-feature__block {
  margin-top: 84px;
  margin-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .p-feature__block + .p-feature__block {
    margin-top: 5rem;
  }
}

.p-feature__img {
  max-width: 894px;
  max-width: 55.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: -80px;
  margin-right: -5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-feature__img {
    margin-left: 0;
    margin-left: initial;
    margin-top: -10rem;
    margin-right: -20rem;
  }
}

.p-feature__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-feature__img2 {
  max-width: 577px;
  max-width: 36.0625rem;
  width: 100%;
}

.p-feature__img2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-feature__detail {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-feature__detail {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 6.875rem;
  }
}

.p-feature__block:first-child .p-feature__detail::before {
  position: absolute;
  content: "";
  background: url(../images/common/number_01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 153/126;
  -o-object-fit: cover;
     object-fit: cover;
  right: 0;
  width: 95px;
  width: 5.9375rem;
  top: -2px;
  top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-feature__block:first-child .p-feature__detail::before {
    top: -2.5rem;
    width: 9.5625rem;
    right: 3.75rem;
  }
}

.p-feature__detail2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.p-feature__detail2::before {
  position: absolute;
  content: "";
  background: url(../images/common/number_02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 153/110;
  -o-object-fit: cover;
     object-fit: cover;
  right: 0;
  width: 95px;
  width: 5.9375rem;
  top: -2px;
  top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-feature__detail2::before {
    top: -2.5rem;
    width: 9.5625rem;
    right: 3.75rem;
  }
}

.p-feature__row .p-feature__block::before {
  position: absolute;
  content: "";
  background: url(../images/common/number_03.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 153/110;
  -o-object-fit: cover;
     object-fit: cover;
  right: 0;
  width: 95px;
  width: 5.9375rem;
  top: -2px;
  top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-feature__row .p-feature__block::before {
    width: 9.5625rem;
    top: -2.5rem;
    right: 0rem;
  }
}

.p-feature__row .p-feature__block:nth-child(2)::before {
  position: absolute;
  content: "";
  background: url(../images/common/number_04.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 153/110;
  -o-object-fit: cover;
     object-fit: cover;
  right: 0;
  width: 95px;
  width: 5.9375rem;
  top: -2px;
  top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-feature__row .p-feature__block:nth-child(2)::before {
    right: 0rem;
    top: -2.5rem;
    width: 9.5625rem;
  }
}

.p-feature__row .p-feature__detail2::before {
  display: none;
}

.p-feature__row {
  margin-top: 84px;
  margin-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .p-feature__row {
    margin-top: 7.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-feature__row .p-feature__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-feature__row .p-feature__block {
    gap: 2rem;
  }
}

.p-feature__img3 {
  max-width: 81px;
  max-width: 5.0625rem;
  min-width: 81px;
  min-width: 5.0625rem;
  width: 100%;
  margin-top: 48px;
  margin-top: 3rem;
  padding-right: 8px;
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-feature__img3 {
    margin-top: 0;
    margin-top: initial;
    max-width: 8.3125rem;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-feature__img3 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-feature__img4 {
  max-width: 56px;
  max-width: 3.5rem;
  width: 100%;
  margin-top: 48px;
  margin-top: 3rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-feature__img4 {
    max-width: 5rem;
    margin-top: 5rem;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-feature__img4 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-feature__block--last {
  margin-top: 84px;
  margin-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .p-feature__block--last {
    margin-top: 0 !important;
    margin-top: initial !important;
  }
}

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

.p-feed-comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  min-width: 50rem;
  text-align: left;
}

.p-feed-comparison__th,
.p-feed-comparison__td {
  padding: 14px 12px;
  padding: 0.875rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, .2);
  vertical-align: middle;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.6;
  width: 260px;
  width: 16.25rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-feed-comparison__th,
  .p-feed-comparison__td {
    font-size: 0.875rem;
  }
}

.p-feed-comparison__header {
  background-color: #27262d !important;
  text-align: center !important;
}

.p-feed-comparison__thead .p-feed-comparison__th {
  text-align: left;
}

.p-feed-comparison__arrow {
  font-size: 12px;
  font-size: 0.75rem;
  color: #ccc;
}

.p-feed-comparison__highlight {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-feed-comparison__badge {
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  border-radius: 50%;
  background-color: #1c3faa;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-feed-comparison__th,
  .p-feed-comparison__td {
    font-size: 0.875rem;
    padding: 0.875rem 0.5rem;
  }
  .p-feed-comparison__badge {
    font-size: 0.625rem;
    padding: 0.1875rem 0.625rem;
  }
}
.p-feed-comparison__td-center {
  text-align: center;
}

.p-feed-comparison__persent,
.p-feed-comparison__3,
.p-feed-comparison__276,
.p-feed-comparison__10 {
  position: relative;
}

.p-feed-comparison__persent::before {
  position: absolute;
  content: "";
  background: url(../images/common/96.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 108/64;
  -o-object-fit: cover;
     object-fit: cover;
  width: 108px;
  width: 6.75rem;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -54px;
  right: -3.375rem;
}

.p-feed-comparison__3::before {
  position: absolute;
  content: "";
  background: url(../images/common/triple.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 108/64;
  -o-object-fit: cover;
     object-fit: cover;
  width: 108px;
  width: 6.75rem;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -54px;
  right: -3.375rem;
}

.p-feed-comparison__276::before {
  position: absolute;
  content: "";
  background: url(../images/common/276.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 108/64;
  -o-object-fit: cover;
     object-fit: cover;
  width: 108px;
  width: 6.75rem;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -54px;
  right: -3.375rem;
}

.p-feed-comparison__10::before {
  position: absolute;
  content: "";
  background: url(../images/common/10.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 108/64;
  -o-object-fit: cover;
     object-fit: cover;
  width: 108px;
  width: 6.75rem;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -54px;
  right: -3.375rem;
}

.p-feed-comparison__1200,
.p-feed-comparison__315 {
  position: relative;
}

.p-feed-comparison__1200::before {
  position: absolute;
  content: "";
  background: url(../images/common/2to2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 108/64;
  -o-object-fit: cover;
     object-fit: cover;
  width: 108px;
  width: 6.75rem;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -54px;
  right: -3.375rem;
}

.p-feed-comparison__315::before {
  position: absolute;
  content: "";
  background: url(../images/common/50percent.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 108/64;
  -o-object-fit: cover;
     object-fit: cover;
  width: 108px;
  width: 6.75rem;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -54px;
  right: -3.375rem;
}

.fs-sp {
  font-size: 11.2px;
  font-size: 0.7rem;
}
.fs-sp.t-left {
  padding-left: 6.4px;
  padding-left: 0.4rem;
  padding-right: 49.6px;
  padding-right: 3.1rem;
}
.fs-sp.t-right {
  padding-left: 49.6px;
  padding-left: 3.1rem;
  padding-right: 6.4px;
  padding-right: 0.4rem;
}

.p-filter-spec {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-filter-spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-filter-spec__inner {
    overflow: visible !important;
    overflow: initial !important;
  }
}

.p-filter-spec__table {
  width: 100%;
  border-collapse: collapse;
}

.p-filter-spec__th,
.p-filter-spec__td {
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  vertical-align: middle;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6;
  background-color: transparent;
  white-space: nowrap;
}

.p-filter-spec__th {
  text-align: center;
  background: #27262d;
}

.p-filter-spec__note {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-filter-spec__th,
  .p-filter-spec__td {
    font-size: 0.75rem;
    padding: 0.625rem 0.75rem;
  }
  .p-filter-spec__note {
    font-size: 0.75rem;
  }
}
.p-filter-spec__img {
  width: 100%;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-filter-spec__img {
    width: 18.125rem;
    margin-bottom: 0;
    margin-bottom: initial;
  }
}

.p-filter-spec__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-footer {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-footer {
    margin-top: -10rem;
    padding-top: 6.25rem;
  }
}

.p-footer__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 50rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-footer__content::before {
  position: absolute;
  content: "";
  background: url(../images/common/bg_footer.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1160px;
  width: 72.5rem;
  height: auto;
  aspect-ratio: 1160/794;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  top: 56px;
  top: 3.5rem;
  left: 0px;
  left: 0rem;
  right: -80px;
  right: -5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__content::before {
    top: -4rem;
    left: -18.75rem;
  }
}

.p-footer__btn-wrapper + .p-footer__btn-wrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-footer__btn-topText {
  color: #6e86ff;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__btn-topText {
    font-size: 0.8125rem;
  }
}

.p-footer__btn {
  margin-top: 12px;
  margin-top: 0.75rem;
  background: -webkit-gradient(linear, left top, right top, from(#091735), to(#0f0e16));
  background: linear-gradient(to right, #091735, #0f0e16);
  padding-left: 60px;
  padding-left: 3.75rem;
  padding-right: 32px;
  padding-right: 2rem;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  width: 310px;
  width: 19.375rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__btn {
    padding-top: 1.9375rem;
    padding-bottom: 1.9375rem;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    width: 28.75rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-footer__btn-iconWrapper {
  max-width: 22px;
  max-width: 1.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__btn-iconWrapper {
    max-width: 2rem;
  }
}

.p-footer__btn-iconWrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-footer__btn-text {
  color: #fff;
  font-weight: 400;
  margin-left: 18px;
  margin-left: 1.125rem;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__btn-text {
    font-size: 1.125rem;
  }
}

.p-footer__btn-arrow {
  max-width: 11px;
  max-width: 0.6875rem;
  margin-left: auto;
  position: relative;
}

.p-footer__btn-arrow::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -17px;
  left: -1.0625rem;
  height: 24px;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__btn-arrow::before {
    height: 1.875rem;
  }
}

.p-footer__btn-arrow path {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-footer__img {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__img {
    display: block;
    margin-left: auto;
    margin-right: -18.75rem;
    max-width: 35.9375rem;
    width: 100%;
  }
}

.p-footer__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

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

.p-footer__link {
  display: block;
  width: 181px;
  width: 11.3125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 63px;
  margin-top: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    margin-top: 0;
    margin-top: initial;
  }
}

.p-footer__link img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-footer__copy {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  height: 80px;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 9.75rem;
  }
}

.p-header__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-right: 2.375rem;
  }
}

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

.p-header__home {
  display: inline-block;
  width: 86px;
  width: 5.375rem;
}
@media screen and (min-width: 768px) {
  .p-header__home {
    width: 11.3125rem;
  }
}

.p-header__home img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-header__menu {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-header__menu {
    gap: 0.875rem;
  }
}

.p-header__contact {
  border: 1px solid #fff;
  background: -webkit-gradient(linear, left top, right top, from(#0f0e16), to(#091735));
  background: linear-gradient(to right, #0f0e16, #091735);
  width: 40px;
  width: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__contact {
    gap: 1.25rem;
    height: 3.75rem;
    width: 13rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.p-header__svg {
  width: 20px;
  width: 1.25rem;
  display: inline-block;
}

.p-header__svg path {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-header__svg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-header__contact-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__contact-text {
    display: block;
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
  }
}

.p-hole-drill__inner {
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

.p-hole-drill__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.p-hole-drill__th,
.p-hole-drill__td {
  padding: 16px;
  padding: 1rem;
  border: 1px solid #969faf;
  vertical-align: middle;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.6;
  white-space: nowrap;
}

.p-hole-drill__th {
  font-weight: 400;
}

.p-hole-drill__thead .p-hole-drill__th {
  background-color: #27262d;
  font-weight: 400;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-hole-drill__th,
  .p-hole-drill__td {
    font-size: 0.75rem;
    padding: 1rem;
  }
}
.p-hole-drill__td-icon {
  position: relative;
}

.p-hole-drill__td-icon::before {
  position: absolute;
  content: "";
  background: url(../images/common/92.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 108px;
  width: 6.75rem;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -54px;
  right: -3.375rem;
  aspect-ratio: 108/64;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-machine-info {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-machine-info {
    margin-top: 2.5rem;
  }
}

.p-machine-info__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  min-width: 50rem;
}

.p-machine-info__th,
.p-machine-info__td {
  padding: 15px;
  padding: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, .2);
  vertical-align: top;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: left;
}
.p-machine-info__th.item-cen,
.p-machine-info__td.item-cen {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-machine-info__th {
  font-weight: 400;
  width: 260px;
  width: 16.25rem;
}

.p-machine-info__td {
  width: 540px;
  width: 33.75rem;
}

@media screen and (min-width: 768px) {
  .p-machine-info__th,
  .p-machine-info__td {
    font-size: 0.875rem;
    padding: 0.875rem 0.75rem;
  }
}
.p-modal {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #0f0e16;
  overflow-y: scroll;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.p-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.p-modal__content {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-modal__content {
    max-width: 50rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5.6875rem;
    padding-bottom: 7.5rem;
  }
}

.p-modal__cross {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-modal__cross {
    width: 3.875rem;
    height: 3.875rem;
    right: -2rem;
    top: -2rem;
  }
}

.p-modal__cross img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-modal__cross:hover {
  opacity: 0.7;
}

.p-modal__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
}

.p-modal__category {
  border: 1px solid #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  padding-top: 6px;
  padding-top: 0.375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
}

.p-modal__name {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 500;
}

.p-modal__title-wrapper {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-modal__title {
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-modal__title {
    font-size: 1.875rem;
  }
}

.p-modal__text-wrapper {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-modal__text-wrapper {
    margin-top: 2.5rem;
  }
}

.p-modal__text {
  color: #fff;
  line-height: 1.7;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-modal__text {
    font-size: 1rem;
  }
}

.p-modal__movie {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-modal__movie {
    margin-top: 2.5rem;
  }
}

.p-modal__movie iframe {
  aspect-ratio: 800/450;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-modal__movie img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-modal__row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-modal__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 2.5rem;
  }
}

.p-modal__img img {
  aspect-ratio: 395/209;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-modal__detail {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-modal__detail {
    margin-top: 2.5rem;
  }
}

.p-modal__detailTitle-wrapper {
  text-align: center;
  background: rgba(255, 255, 255, .1);
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-modal__detailTitle-wrapper {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }
}

.p-modal__detailTitle {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-modal__detailTitle {
    font-size: 1.125rem;
  }
}

.p-modal__dataRow {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-modal__dataRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-modal__dt {
    width: 15.3125rem;
  }
}

.p-modal__dd {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-modal__dd {
    margin-top: 0;
    margin-top: initial;
    width: calc(100% - 15.3125rem);
  }
}

.p-modal__dataText {
  color: #edeef4;
  font-weight: 500;
  line-height: 1.7;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-modal__dataText {
    font-size: 1rem;
  }
}

.p-motor {
  padding-top: 63px;
  padding-top: 3.9375rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-motor {
    padding-bottom: 6.75rem;
  }
}

.p-motor__top {
  max-width: 903px;
  max-width: 56.4375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-motor__title-en {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: block;
  font-size: 55px;
  font-size: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-motor__title-en {
    font-size: 5.375rem;
  }
}

.p-motor__title-ja {
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-motor__title-ja {
    font-size: 1.4375rem;
  }
}

.p-motor__target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
}

.p-motor__target-text {
  background: #969faf;
  color: #1a2e56;
  font-weight: 700;
  font-size: 10px;
  font-size: 0.625rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  min-width: 84px;
  min-width: 5.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-motor__target-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.8125rem;
    padding-left: 0.6875rem;
    padding-right: 0.6875rem;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.p-motor__text {
  font-weight: 500;
  color: #969faf;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-motor__text {
    font-size: 0.875rem;
  }
}

.p-motor__top-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-motor__top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 5rem;
  }
}

.p-motor__mil {
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-motor__mil {
    margin-top: 0;
    margin-top: initial;
    max-width: 24.125rem;
  }
}

.p-motor__mil--02 {
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 290px;
  max-width: 18.125rem;
}
@media screen and (min-width: 768px) {
  .p-motor__mil--02 {
    margin-top: 0;
    margin-top: initial;
    max-width: 21.875rem;
  }
}

.p-motor__mil img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-motor__row-wrapper {
  margin-top: 87px;
  margin-top: 5.4375rem;
}

.p-motor__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-motor__row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-motor__row-toggle:nth-of-type(even) .p-motor__row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.p-motor__row-toggle + .p-motor__row-toggle {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-motor__row-toggle + .p-motor__row-toggle {
    margin-top: 0;
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-motor__row-04 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-motor__detail {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-motor__detail {
    padding-left: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-motor__row-toggle:nth-child(even) .p-motor__detail {
    padding-left: 0;
    padding-left: initial;
  }
}

.p-motor__row-04 .p-motor__detail {
  padding-left: 0;
  padding-left: initial;
}
@media screen and (min-width: 768px) {
  .p-motor__row-04 .p-motor__detail {
    margin-left: 4rem;
  }
}

.p-motor__detail1::before {
  position: absolute;
  content: "";
  background: url(../images/common/motor_text.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 1080/408;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  width: 335px;
  width: 20.9375rem;
  top: -28px;
  top: -1.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-motor__detail1::before {
    top: -3.5rem;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    left: -1rem;
    width: 60.5625rem;
  }
}

.p-motor__detail2::before {
  position: absolute;
  content: "";
  background: url(../images/common/motor_text2_sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 1064/408;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  width: 340px;
  width: 21.25rem;
  top: -28px;
  top: -1.75rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-motor__detail2::before {
    width: 59.875rem;
    top: -3.5rem;
    right: -0.625rem;
    left: auto;
    left: initial;
    background: url(../images/common/motor_text2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.p-motor__detail3::before {
  position: absolute;
  content: "";
  background: url(../images/common/motor_text3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 826/408;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  width: 260px;
  width: 16.25rem;
  top: -28px;
  top: -1.75rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-motor__detail3::before {
    width: 48.3125rem;
    top: -3.5rem;
    left: 0rem;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

.p-motor__detail4::before {
  position: absolute;
  content: "";
  background: url(../images/common/motor_text4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 703/408;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  width: 250px;
  width: 15.625rem;
  top: -28px;
  top: -1.75rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-motor__detail4::before {
    width: 40.3125rem;
    top: -3.5rem;
    left: auto;
    left: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    right: 0;
  }
}

.p-motor__detail::after {
  position: absolute;
  content: "";
  background: url(../images/common/bg_motor.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 998px;
  width: 62.375rem;
  height: auto;
  aspect-ratio: 998/600;
  -o-object-fit: cover;
     object-fit: cover;
  top: -240px;
  top: -15rem;
  left: -320px;
  left: -20rem;
  z-index: -2;
}

.p-motor__row-toggle:nth-child(even) .p-motor__detail::after {
  position: absolute;
  content: "";
  background: url(../images/common/bg_motor2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 998px;
  width: 62.375rem;
  height: auto;
  aspect-ratio: 998/600;
  -o-object-fit: cover;
     object-fit: cover;
  top: -160px;
  top: -10rem;
  left: -240px;
  left: -15rem;
  z-index: -1;
}

.p-motor__num {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  display: block;
  font-style: italic;
  font-size: 21px;
  font-size: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-motor__num {
    font-size: 1.5625rem;
  }
}

.p-motor__kind {
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-motor__kind {
    font-size: min(1.125rem, 1.5vw);
    margin-top: 1.25rem;
  }
}

.p-motor__name {
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 35px;
  font-size: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-motor__name {
    font-size: min(3rem, 3.6923076923vw);
  }
}

.p-motor__kind-text {
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-motor__kind-text {
    margin-top: 1.3125rem;
    font-size: min(1.125rem, 1.5vw);
  }
}

.p-motor__type {
  margin-top: 8px;
  margin-top: 0.5rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 9999px;
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-motor__type {
    font-size: 0.75rem;
  }
}

.p-motor__toggle-btn {
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#091735), to(#0f0e16));
  background: linear-gradient(to right, #091735, #0f0e16);
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-top: 17px;
  margin-top: 1.0625rem;
  height: 46px;
  height: 2.875rem;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-motor__toggle-btn {
    height: 3.375rem;
    width: 18.75rem;
    margin-top: 2.25rem;
  }
}

.p-motor__toggle-btn:hover {
  opacity: 0.7;
}

.p-motor__toggle-text {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-motor__toggle-text {
    font-size: 0.8125rem;
  }
}

.p-motor__cross {
  position: absolute;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-motor__cross-line1 {
  position: absolute;
  width: 1px;
  height: 15px;
  height: 0.9375rem;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-motor__cross-line2 {
  position: absolute;
  width: 1px;
  height: 15px;
  height: 0.9375rem;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  right: 20px;
  right: 1.25rem;
}

.p-motor__cross-line1.is-open {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.p-motor__img {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-motor__img {
    max-width: 47.5rem;
    margin-left: auto;
    margin-right: -8.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-motor__row-toggle:nth-child(even) .p-motor__img {
    margin-left: -8.75rem;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-motor__row-04 .p-motor__img {
  margin-right: 0;
  margin-right: initial;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .p-motor__row-04 .p-motor__img {
    max-width: 37.625rem;
    margin-left: -12rem;
  }
}

.p-motor__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-motor__system-border {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-motor__system-border {
    margin-top: 0;
    margin-top: initial;
    padding-top: 5rem;
  }
}

.p-motor__system-border::before {
  position: absolute;
  content: "";
  background: #fff;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 1px;
  top: 0;
  left: 0;
  right: 0;
}

.p-motor__systemImg {
  width: 800px;
  width: 50rem;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-motor__systemImg {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.p-motor__systemImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.mr-02 {
  margin-right: 3.2px;
  margin-right: 0.2rem;
}

.p-motor__row.is-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}
.p-motor__row.is-reverse .p-motor__detail {
  padding-left: 0;
}
.p-motor__row.is-reverse .p-motor__detail .p-motor__name {
  white-space: nowrap;
}
.p-motor__row.is-reverse .p-motor__img {
  margin-right: 32px;
  margin-right: 2rem;
}

@media screen and (min-width: 768px) {
  .p-mv {
    overflow: hidden;
  }
}

.p-mv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-mv__detail {
  position: relative;
  margin-top: -100px;
  margin-top: -6.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__detail {
    margin-top: -10.875rem;
    margin-right: -5.5rem;
    margin-top: 16.1875rem;
  }
}

.p-mv__detail::before {
  position: absolute;
  content: "";
  background: url(../images/common/mv_pattern.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 878/854;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 400px;
  width: 25rem;
  top: -700px;
  top: -43.75rem;
  left: -180px;
  left: -11.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__detail::before {
    width: 54.875rem;
    top: -47.5rem;
    left: -31.25rem;
  }
}

.p-mv__detail::after {
  position: absolute;
  content: "";
  background: url(../images/common/mv_text.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1240/200;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 330px;
  width: 20.625rem;
  left: 20px;
  left: 1.25rem;
  bottom: -100px;
  bottom: -6.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__detail::after {
    width: 63.25rem;
    top: 13.75rem;
    bottom: auto;
    bottom: initial;
    left: -9.0625rem;
  }
}

.p-mv__small {
  color: #edeff4;
  font-weight: 500;
  font-family: "Noto Sans JP";
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__small {
    font-size: 1rem;
  }
}

.p-mv__title {
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: "Noto Sans JP";
  color: #edeff4;
  font-size: 35px;
  font-size: 2.1875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    margin-top: 1.6875rem;
    font-size: 2.1875rem;
  }
}

.p-mv__text {
  color: #969faf;
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 1.5;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    margin-top: 1.25rem;
    font-size: min(1.75rem, 2.4615384615vw);
  }
}

.p-mv__img {
  margin-right: -82px;
  margin-right: -5.125rem;
  margin-left: auto;
  margin-top: 0px;
  margin-top: 0rem;
  position: relative;
  z-index: 1;
  width: 500px;
  width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    max-width: 53.125rem;
    width: 100%;
    margin-left: 0;
    margin-left: initial;
    margin-right: -10rem;
  }
}

.p-mv__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-new {
  padding-top: 72px;
  padding-top: 4.5rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-new {
    padding-top: 6.6875rem;
    padding-bottom: 6.6875rem;
  }
}

.p-new__content {
  position: relative;
}

.p-new__content::before {
  position: absolute;
  content: "";
  background: url(../images/common/bg_motor.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1491/1021;
  -o-object-fit: cover;
     object-fit: cover;
  width: 1490px;
  width: 93.125rem;
  height: auto;
  top: -160px;
  top: -10rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

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

.p-new__title-small {
  color: #edeff4;
  font-weight: 500;
  display: block;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-new__title-small {
    font-size: 1.125rem;
  }
}

.p-new__title-middle {
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-new__title-middle {
    font-size: 2.25rem;
    margin-top: 0.75rem;
  }
}

.p-new__title-large {
  font-weight: 500;
  color: #fff;
  display: block;
  font-size: 35px;
  font-size: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-new__title-large {
    font-size: 2.625rem;
  }
}

.p-new__img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-new__img {
    margin-top: 0;
    margin-top: initial;
    max-width: 46.1875rem;
  }
}

.p-new__img::before {
  position: absolute;
  content: "";
  background: url(../images/common/new_text.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 300px;
  width: 18.75rem;
  height: auto;
  aspect-ratio: 842/530;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-new__img::before {
    width: 50rem;
    top: -2.25rem;
    left: -4.625rem;
  }
}

.p-new__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-new__row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__row {
    max-width: 50rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.5rem;
  }
}

.p-new__rowImg {
  max-width: 160px;
  max-width: 10rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-new__rowImg {
    max-width: 16.375rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-new__rowImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-new__detail {
  margin-top: 146px;
  margin-top: 9.125rem;
}
@media screen and (min-width: 768px) {
  .p-new__detail {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-new__block {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #fff;
}
.p-new__block.non-b {
  border-bottom: none;
}

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

.p-new__block-title {
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-new__block-title {
    font-size: 1.25rem;
  }
}

.p-new__block-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #edeff4;
  margin-top: 16px;
  margin-top: 1rem;
}
.p-new__block-text sup {
  font-size: 10px;
  font-size: 0.625rem;
}

.p-new__block__picture {
  display: block;
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-new__block-smallText {
  margin-top: 16px;
  margin-top: 1rem;
  color: #edeff4;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.7;
}

.p-new__introduce {
  margin-top: 60px;
  margin-top: 3.75rem;
  max-width: 800px;
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-new__introduce-title {
  color: #fff;
  font-weight: 500;
  background: rgba(255, 255, 255, .1);
  padding-top: 11px;
  padding-top: 0.6875rem;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-new__introduce-title {
    font-size: 1.125rem;
  }
}

.p-new__introduce-textBlock {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__introduce-textBlock {
    max-width: 37rem;
    margin-top: 2.5rem;
  }
}

.p-new__introduce-text {
  line-height: 1.7;
  color: #edeff4;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-new__introduce-text {
    font-size: 0.9375rem;
  }
}

.p-new__introduce-text a {
  color: #969faf;
  text-decoration: underline;
}

.p-new__introduce-img {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__introduce-img {
    max-width: 34.0625rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
  }
}

.p-new__introduce-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-new__introduce-row {
  display: grid;
  margin-top: 36px;
  margin-top: 2.25rem;
  grid-template-columns: 1fr;
  gap: 36px;
  gap: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-new__introduce-row {
    margin-top: 5.625rem;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

.p-new__left-img1 {
  max-width: 180px;
  max-width: 11.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-new__left-img1 {
    max-width: 15.0625rem;
  }
}

.p-new__left-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-new__btn-wrapper {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-new__btn-wrapper {
    margin-top: 5.75rem;
  }
}

.p-new__btn {
  display: inline-block;
  width: 100%;
  border: 1px solid #fff;
  text-align: center;
  position: relative;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-new__btn {
    max-width: 53.75rem;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}

.p-new__btn:hover {
  opacity: 0.8;
}

.p-new__btn-text {
  color: #fff;
  font-weight: 400;
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-new__btn-text {
    font-size: 1.125rem;
  }
}

.p-new__svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-new__svg {
    right: 2.75rem;
  }
}

.p-new__cross {
  position: relative;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  display: block;
}

.p-new__cross-line {
  position: absolute;
  content: "";
  background: #fff;
  width: 1px;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-new__cross-line2 {
  position: absolute;
  content: "";
  background: #fff;
  width: 1px;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-new__btn.is-active .p-new__cross-line {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

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

.p-new__double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-new__double-block {
  width: 100%;
}

.p-new__double-block-01 {
  width: 123px;
  width: 7.6875rem;
}

.p-new__double-block-02 {
  width: calc(100% - 7.6875rem);
}

.p-new__double-block:first-child {
  border-right: 1px solid rgba(255, 255, 255, .2);
  padding-right: 8px;
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__double-block:first-child {
    padding-right: 0.8125rem;
  }
}

.p-new__double-block:nth-child(2) {
  padding-left: 8px;
  padding-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__double-block:nth-child(2) {
    padding-left: 0.8125rem;
  }
}

.p-new__double-block:nth-child(3) {
  border-left: 1px solid rgba(255, 255, 255, .2);
  padding-left: 8px;
  padding-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__double-block:nth-child(3) {
    padding-left: 0.8125rem;
  }
}

.p-new__triple .p-new__double-block:nth-child(2) {
  padding-right: 8px;
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__triple .p-new__double-block:nth-child(2) {
    padding-right: 0.8125rem;
  }
}

.p-new__double + .p-new__double {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-new__double-block-single {
  padding-right: 0 !important;
  padding-right: initial !important;
  border-right: 0 !important;
  border-right: initial !important;
}

.p-new__double-title {
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding-top: 6px;
  padding-top: 0.375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
}

.p-new__double-text {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
}

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

.p-new__doubleRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  gap: 0.5625rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.p-new__doubleRow-block {
  text-align: center;
}

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

.p-new__plug {
  max-width: 126px;
  max-width: 7.875rem;
  width: 100%;
  margin-left: auto;
}

.p-new__plug img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-new__triple {
  margin-top: 16px;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-new__double-bottom {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-new__bottom-textWrapper {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-new__bottomRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.last-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 68.8px;
  margin-left: 4.3rem;
}
@media screen and (max-width: 767px) {
  .last-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 12.1rem;
  }
}

.p-new__bottom-text {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-new__bottom-text {
    font-size: 0.8125rem;
  }
}

.p-new__double-bottom .p-new__double-block {
  padding-right: 0;
  padding-right: initial;
  border-right: 0;
  border-right: initial;
}

.p-new__graph {
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-new__graph {
    max-width: 27.75rem;
  }
}

.p-new__graph img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-new__panel {
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-new__panel img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-new__block-text a {
  text-decoration: underline;
}

.p-new__accordion {
  display: none;
  margin-top: 44px;
  margin-top: 2.75rem;
  max-width: 860px;
  max-width: 53.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-new__accordion-block + .p-new__accordion-block {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__accordion-block + .p-new__accordion-block {
    margin-top: 2.5rem;
  }
}

.p-new__accordion-blockWrapper + .p-new__accordion-blockWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-new__accordion-blockWrapper + .p-new__accordion-blockWrapper {
    margin-top: 2.5rem;
  }
}

.p-new__accordion-title {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
}

.p-possible {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
}

.p-possible__content {
  position: relative;
  z-index: 2;
}

.p-possible__content::before {
  position: absolute;
  content: "";
  background: url(../images/common/bg_possible.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1490px;
  width: 93.125rem;
  height: auto;
  aspect-ratio: 1490/1020;
  -o-object-fit: cover;
     object-fit: cover;
  top: -240px;
  top: -15rem;
  left: -100px;
  left: -6.25rem;
  z-index: -1;
}

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

.p-possible__row {
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-possible__row {
    margin-top: 3.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.75rem;
    max-width: 58.9375rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-possible__left-text {
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-possible__left-text {
    text-align: left;
    text-align: initial;
    font-size: 2rem;
  }
}

.p-possible__left-img {
  max-width: 429px;
  max-width: 26.8125rem;
  width: 100%;
}

.p-possible__left-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-possible__right-img {
  width: 100%;
  max-width: 274px;
  max-width: 17.125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-possible__right-img {
    max-width: 27.1875rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-possible__right-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-possible__btn-wrapper {
  max-width: 940px;
  max-width: 58.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 62px;
  margin-top: 3.875rem;
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-possible__btn-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-possible__btn-small {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #6e86ff;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.p-possible__btn {
  margin-top: 12px;
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #fff;
  padding-left: 60px;
  padding-left: 3.75rem;
  width: 310px;
  width: 19.375rem;
  background: -webkit-gradient(linear, left top, right top, from(#091735), to(#0f0e16));
  background: linear-gradient(to right, #091735, #0f0e16);
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-right: 18px;
  padding-right: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-possible__btn {
    width: 28.625rem;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding-right: 2rem;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-possible__btn-iconWrapper {
  max-width: 22px;
  max-width: 1.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-possible__btn-iconWrapper {
    max-width: 2rem;
  }
}

.p-possible__btn-iconWrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-possible__btn-text {
  color: #fff;
  font-weight: 400;
  margin-left: 20px;
  margin-left: 1.25rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-possible__btn-text {
    font-size: 1.125rem;
  }
}

.p-possible__btn-arrow {
  margin-left: auto;
  position: relative;
}

.p-possible__btn-arrow::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 1px;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -17px;
  left: -1.0625rem;
}

.p-possible__btn-arrow svg {
  max-width: 11px;
  max-width: 0.6875rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-series {
  text-align: center;
  padding-top: 180px;
  padding-top: 11.25rem;
  position: relative;
}

.p-series::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 1px;
  height: 107px;
  height: 6.6875rem;
  top: 40px;
  top: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scrollIndicator 2s ease-in-out infinite;
          animation: scrollIndicator 2s ease-in-out infinite;
}

@-webkit-keyframes scrollIndicator {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  50% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
}

@keyframes scrollIndicator {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  50% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
}
.p-series__num {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "Roboto Condensed", sans-serif;
}

.p-series__en {
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-table__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-table__scroll {
  overflow-x: auto;
}

.p-table__title-wrapper {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-table__title {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-table__title span {
  font-size: 12px;
  font-size: 0.75rem;
}

.p-table__title-text {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  height: 52px;
  height: 3.25rem;
  vertical-align: middle;
  border-top: 1px solid #969faf;
  border-collapse: collapse;
  white-space: nowrap;
}

.p-table__title-text04 {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  height: 68px;
  height: 4.25rem;
  vertical-align: middle;
  border-top: 1px solid #969faf;
  border-top: 2px solid #fff;
  border-collapse: collapse;
  white-space: nowrap;
}

.w110 {
  width: 110px;
  width: 6.875rem;
}

.w107 {
  width: 107px;
  width: 6.6875rem;
}

.w100 {
  width: 100px;
  width: 6.25rem;
}

.w80 {
  width: 80px;
  width: 5rem;
}

.w70 {
  width: 70px;
  width: 4.375rem;
}

.p-table__text {
  width: 113px;
  width: 7.0625rem;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  background: #191724;
  height: 52px;
  height: 3.25rem;
  vertical-align: middle;
  border-top: 1px solid #969faf;
  white-space: nowrap;
}

.p-table__text04 {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  background: #191724;
  height: 78px;
  height: 4.875rem;
  vertical-align: middle;
  border-top: 1px solid #969faf;
  white-space: nowrap;
}

.p-table__text04 span {
  font-size: 10px;
  font-size: 0.625rem;
}

.p-table__text--last {
  border-bottom: 1px solid #969faf;
}

.p-table__text:nth-child(odd),
.p-table__text04:nth-child(odd) {
  background: #212029;
}

.h65 {
  height: 65px;
  height: 4.0625rem;
}

.h52 {
  height: 52px;
  height: 3.25rem;
}

.p-table__spanText {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  height: 34px;
  height: 2.125rem;
}

.p-table__spanTitle {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  height: 104px;
  height: 6.5rem;
  white-space: nowrap;
  background: #212029;
}

.black {
  background: #212029;
}

.border-white {
  border-bottom: 1px solid #969faf;
}
.border-white.b-bold {
  border-bottom: 2px solid #fff;
}
.border-white.b-bold-top {
  border-top: 2px solid #fff;
}

.c-detail__en {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-detail__en {
    font-size: 0.875rem;
  }
}

.c-detail__title {
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-detail__title {
    margin-top: 1.5rem;
    font-size: 2.25rem;
  }
}
.c-detail__title.f-2rem {
  font-size: 30px;
  font-size: 1.875rem;
}

.c-detail__text {
  color: #fff;
  line-height: 1.7;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-detail__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.c-detail__text-small {
  font-size: 7px;
  font-size: 0.4375rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-detail__text-small {
    font-size: 0.75rem;
  }
}

.c-section-title__en {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Roboto Condensed", sans-serif;
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 6rem;
  }
}

.c-section-title__ja {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP";
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    margin-top: 1.25rem;
    font-size: 1.875rem;
  }
}
/*# sourceMappingURL=styles.css.map */

@media screen and (max-width: 767px) {
  #c-anchor2 {
    flex-direction: column-reverse !important;
  }
}