@charset "UTF-8";
.cBreadcrumbs {
  position: absolute;
  bottom: 20rem;
  left: 30rem;
}
.cBreadcrumbs__list {
  display: flex;
  gap: 0 16rem;
  align-items: center;
}
.cBreadcrumbs__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 12rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.cBreadcrumbs__item_arrow {
  flex-shrink: 0;
}
.cBreadcrumbs__item_link {
  position: relative;
  line-height: 1.8;
  color: #b6dae4;
  text-transform: uppercase;
}
.cBreadcrumbs__item_link::after {
  position: absolute;
  top: 11rem;
  right: -11rem;
  width: 6rem;
  height: 1px;
  content: "";
  background-color: currentcolor;
}

@media screen and (min-width: 768px) {
  .cBreadcrumbs {
    bottom: 32rem;
    left: 80rem;
  }
}
.pHowToUse__easily_item_wrapper {
  opacity: 0;
  transition: opacity 0.8s var(--e-out-cubic) 0.4s;
}

.pHowToUse__easily_headline_en,
.pHowToUse__easily_headline_ja {
  opacity: 0;
  transition: opacity 0.8s var(--e-out-cubic) 0.4s;
}

.pHowToUse__easily_item_item {
  opacity: 0;
  transition: opacity 1.2s var(--e-out-cubic) 0.4s;
}
.pHowToUse__easily_item_item:nth-of-type(2) {
  transition-delay: 0.8s;
}
.pHowToUse__easily_item_item:nth-of-type(3) {
  transition-delay: 1.2s;
}

.pHowToUse .is-show.pHowToUse__easily_item_wrapper {
  opacity: 1;
}
.pHowToUse .is-show .pHowToUse__easily_headline_en,
.pHowToUse .is-show .pHowToUse__easily_headline_ja {
  opacity: 1;
}
.pHowToUse .is-show .pHowToUse__easily_item_item {
  opacity: 1;
}

.pNavigation {
  opacity: 0;
  transition: opacity 0.8s var(--e-out-cubic);
}
.pNavigation.is-show {
  opacity: 1;
}

.pFV__headline_en .char {
  opacity: 0;
  transition: opacity 0.8s var(--e-out-cubic);
  transition-delay: calc(0.4s + 0.05s * var(--i));
}
.pFV__headline_ja .char {
  opacity: 0;
  transition: opacity 0.8s var(--e-out-cubic);
  transition-delay: calc(0.4s + 0.05s * var(--i));
}

.is-show .pFV__headline_en .char {
  opacity: 1;
}
.is-show .pFV__headline_ja .char {
  opacity: 1;
}

.cMouseStalker {
  display: none;
}

@media screen and (min-width: 768px) {
  .cMouseStalker {
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-stalker);
    display: block;
    width: 40rem;
    height: 40rem;
    pointer-events: none;
  }
  .cMouseStalker__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .cMouseStalker__background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: radial-gradient(138.84% 83.13% at 49.83% 50.12%, rgba(153, 219, 241, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    border-radius: 50%;
    opacity: 0;
    transition: background-color 0.6s var(--e-out-expo), opacity 0.6s var(--e-out-expo);
  }
  .cMouseStalker__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--c-white);
    opacity: 0;
    transition: opacity 0.6s var(--e-out-expo);
  }
  .cMouseStalker__main_text {
    font-family: var(--f-en);
    font-size: 18rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .cMouseStalker__main_line {
    width: 100%;
    height: 1px;
    margin-top: 8rem;
    background-color: var(--c-white);
  }
  .cMouseStalker.is-hover .cMouseStalker__background {
    opacity: 1;
  }
  .cMouseStalker.is-hover .cMouseStalker__main {
    opacity: 1;
  }
  .cMouseStalker.is-ather-hover .cMouseStalker__background {
    opacity: 0;
  }
  .cMouseStalker.is-ather-hover .cMouseStalker__main {
    opacity: 0;
  }
  .is-stalker-hover {
    cursor: none;
  }
}
.cTextLink {
  position: relative;
  overflow: hidden;
}
.cTextLink__block {
  position: relative;
  display: block;
  overflow: hidden;
}
.cTextLink__item {
  display: block;
}
.cTextLink__item:last-child {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
}
.cTextLink__item .char {
  display: inline-block;
}

@media screen and (min-width: 768px) and (any-hover: hover) {
  .cTextLink {
    --_init-arrow-x-1: -340%;
  }
  .cTextLink__item .char {
    transition: opacity 0.6s var(--e-out-expo), 0.6s var(--gleasing);
    transform: translateY(var(--_y));
  }
  .cTextLink__item:last-child {
    top: 0;
  }
  .cTextLink__item:last-child .char {
    --_y: 75%;
    opacity: 0;
  }
  .cTextLink__item:last-child .char:nth-child(even) {
    --_y: 150%;
  }
  .cTextLink:hover {
    --_init-arrow-x-1: -340%;
    --_arrow-x-1: 0%;
    --_arrow-x-2: calc(var(--_init-arrow-x-1) * -1);
  }
  .cTextLink:hover .cTextLink__item:last-child .char {
    --_y: 0%;
    opacity: 1;
  }
  .cTextLink:hover .cTextLink__item:first-child .char {
    --_y: -75%;
    opacity: 0;
  }
  .cTextLink:hover .cTextLink__item:first-child .char:nth-child(even) {
    --_y: -150%;
  }
}
.pFV {
  overflow: hidden;
}
.pFV .pFV__inner {
  position: relative;
  padding: 140rem 32rem 64rem;
}
.pFV__headline_en {
  margin-bottom: 14rem;
  font-family: var(--f-en);
  font-size: 14rem;
  line-height: 1.8;
  color: var(--c-white);
  letter-spacing: 0.06em;
}
.pFV__headline_ja {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.pFV__headline_ja .char[data-id="1"] {
  width: 11rem;
  height: 21rem;
  margin-bottom: 1rem;
  margin-left: 4rem;
}
.pFV__headline_ja .char[data-id="2"] {
  width: 21rem;
  height: 17rem;
  margin-left: 4rem;
}
.pFV__headline_ja .char[data-id="3"] {
  width: 20rem;
  height: 21rem;
  margin-bottom: 2rem;
  margin-left: 4rem;
}
.pFV__headline_ja .char[data-id="4"] {
  width: 19rem;
  height: 4rem;
  margin-bottom: 10rem;
  margin-left: 4rem;
}
.pFV__headline_ja .char[data-id="5"] {
  width: 32rem;
  height: 24rem;
  margin-bottom: 3rem;
  margin-left: 3rem;
}
.pFV__headline_ja .char[data-id="6"] {
  width: 19rem;
  height: 16rem;
  margin-bottom: 2rem;
  margin-left: -6rem;
}
.pFV__headline_ja .char[data-id="7"] {
  width: 23rem;
  height: 24rem;
  margin-bottom: 1rem;
}
.pFV__headline_ja .char[data-id="8"] {
  width: 23rem;
  height: 21rem;
  margin-left: 2rem;
}
.pFV__headline_ja .char[data-id="9"] {
  width: 22rem;
  height: 25rem;
  margin-left: 3rem;
}
.pFV__headline_ja .char[data-id="10"] {
  width: 22rem;
  height: 21rem;
  margin-bottom: 3rem;
  margin-left: 3rem;
}
.pFV__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
.pFV .char {
  display: inline-block;
}

.pHowToUse__inner {
  position: relative;
}
.pHowToUse__body {
  padding-bottom: 148rem;
}
.pHowToUse__headline {
  display: flex;
  flex-direction: column;
  gap: 24rem 0;
}
.pHowToUse__headline_en {
  font-family: var(--f-en);
  font-size: 14rem;
  font-weight: 600;
  line-height: 1.8;
  color: #b6dae4;
  letter-spacing: 0.06em;
}
.pHowToUse__headline_ja {
  font-size: 22rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--c-blue);
  letter-spacing: 0.04em;
}
.pHowToUse__container_inner {
  padding: 0 32rem;
}
.pHowToUse__usecase {
  margin-top: 60rem;
}
.pHowToUse__usecase_textarea {
  margin-top: 16rem;
}
.pHowToUse__usecase_textarea_text {
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.pHowToUse__usecase_list {
  margin-top: 70rem;
}
.pHowToUse__usecase_item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36rem;
  padding: 12rem 0 40rem;
}
.pHowToUse__usecase_item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #dde8ed;
}
.pHowToUse__usecase_item:first-child::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #dde8ed;
}
.pHowToUse__usecase_item_title {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
.pHowToUse__usecase_item_title_num {
  font-family: var(--f-en);
  font-size: 12rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.pHowToUse__usecase_item_title_text {
  font-size: 22rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.pHowToUse__usecase_item_text {
  margin-top: 12rem;
  font-size: 15rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.pHowToUse__usecase_item_categoly {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 20rem;
}
.pHowToUse__usecase_item_categoly_item {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 8rem;
  font-size: 14rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  background-color: #d4eaf5;
}
.pHowToUse__oem {
  position: relative;
  padding: 88rem 0;
  margin-top: 104rem;
}
.pHowToUse__oem .pHowToUse__headline_ja {
  color: currentcolor;
}
.pHowToUse__oem_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-color: #ecfafe;
}
.pHowToUse__oem_bg::before, .pHowToUse__oem_bg::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #dde8ed;
}
.pHowToUse__oem_bg::before {
  top: 0;
}
.pHowToUse__oem_bg::after {
  bottom: 0;
}
.pHowToUse__oem_textarea {
  margin-top: 16rem;
}
.pHowToUse__oem_textarea_text {
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.pHowToUse__oem_list {
  margin-top: 50rem;
}
.pHowToUse__oem_item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding: 24rem 24rem 52rem;
  background: var(--c-white);
  border-bottom: 1px solid #dde8ed;
}
.pHowToUse__oem_item:first-child {
  border-top: 1px solid #dde8ed;
}
.pHowToUse__oem_item_data {
  font-family: var(--f-en);
  font-size: 14rem;
  font-weight: 600;
  line-height: 1.4;
  color: #8fb9c9;
  letter-spacing: 0.06em;
}
.pHowToUse__oem_item_title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.pHowToUse__oem_item_title_main {
  font-size: 18rem;
  line-height: 1.5;
}
.pHowToUse__oem_item_title_sub {
  font-size: 14rem;
  line-height: 1.8;
  color: #8fb9c9;
}
.pHowToUse__oem_item_text {
  margin-top: 8rem;
  font-size: 15rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.pHowToUse__easily {
  margin-top: 88rem;
}
.pHowToUse__easily_headline_en {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.pHowToUse__easily_headline_en_blick {
  width: 131rem;
  padding: 2rem;
  font-family: var(--f-en);
  font-size: 12rem;
  font-weight: 600;
  line-height: 1;
  color: var(--c-white);
  text-align: center;
  letter-spacing: 0.06em;
  background-color: #00c0dd;
}
.pHowToUse__easily_headline_ja {
  display: block;
  margin-top: 12rem;
  font-size: 24rem;
  font-weight: 600;
  line-height: 1.6;
  color: #00c0dd;
}
.pHowToUse__easily_list {
  margin-top: 56rem;
}
.pHowToUse__easily_item {
  padding: 40rem 0 56rem;
  border-bottom: 2px solid #00c0dd;
}
.pHowToUse__easily_item_wrapper {
  display: flex;
  flex-direction: column;
  gap: 30rem;
}
.pHowToUse__easily_item_title {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  color: #00c0dd;
}
.pHowToUse__easily_item_title_en {
  font-size: 11rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
}
.pHowToUse__easily_item_title_ja {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.pHowToUse__easily_item_title_ja_sub {
  font-size: 14rem;
  font-weight: 600;
  line-height: 1.5;
}
.pHowToUse__easily_item_title_ja_main {
  font-size: 20rem;
  font-weight: 600;
  line-height: 1.5;
}
.pHowToUse__easily_item_text {
  margin-top: 16rem;
  font-size: 16rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.pHowToUse__easily_item_text_note {
  display: flex;
}
.pHowToUse__easily_item_text_note::before {
  content: "※ ";
}
.pHowToUse__easily_item_list {
  display: flex;
  flex-direction: column;
  gap: 28rem;
  margin-top: 40rem;
}
.pHowToUse__easily_item_item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32rem;
  align-items: center;
  padding: 64rem 40rem 40rem;
  background-color: #e3f9fb;
}
.pHowToUse__easily_item_item_title {
  font-size: 20rem;
  font-weight: 600;
  line-height: 1.25;
}
.pHowToUse__easily_item_item_text {
  margin-top: 15rem;
  font-size: 15rem;
  font-weight: 400;
  line-height: 1.75;
}
.pHowToUse__easily_item_item_num {
  position: absolute;
  top: -24rem;
  left: 36rem;
  font-size: 34rem;
  font-weight: 500;
  line-height: 1.25;
  color: #00c0dd;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 2px #00c0dd;
}
.pHowToUse__easily_item_item--one .pHowToUse__easily_item_item_image {
  width: 119rem;
  height: 80rem;
}
.pHowToUse__easily_item_item--two .pHowToUse__easily_item_item_image {
  width: 175rem;
  height: 106rem;
}
.pHowToUse__easily_item_item--three .pHowToUse__easily_item_item_image {
  width: 132rem;
  height: 88rem;
}
.pHowToUse__easily_item:first-of-type {
  border-top: 2px solid #00c0dd;
}
.pHowToUse__easily_item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.pBuy {
  padding: 0 40rem;
  margin-top: 56rem;
}

.pBuyLink {
  position: relative;
  width: 100%;
  height: 267rem;
}
.pBuyLink__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pBuyLink__tag {
  position: relative;
  z-index: 10;
  padding: 16rem 0 0 28rem;
  font-family: var(--f-en);
  font-size: 14rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--c-white);
  letter-spacing: 0.06em;
}
.pBuyLink__textarea {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12rem;
  padding: 58rem 0 0 24rem;
}
.pBuyLink__title {
  font-size: 20rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-white);
}
.pBuyLink__text {
  display: flex;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--c-white);
}
.pBuyLink__text::before {
  content: "※";
}
.pBuyLink__icon {
  position: absolute;
  right: 24rem;
  bottom: 24rem;
  z-index: 10;
  width: 68rem;
  height: 52rem;
  color: #09bbf2;
  background-color: var(--c-white);
  border: 1px solid var(--c-white);
  border-radius: 50%;
}
.pBuyLink__icon_innr {
  width: 32rem;
  height: 28rem;
  margin: 13rem 21rem 11rem 15rem;
}
.pBuyLink_soon {
  position: absolute;
  right: 24rem;
  bottom: 24rem;
  z-index: 10;
  width: 76rem;
  height: 52rem;
}

@media screen and (min-width: 768px) {
  .pFV {
    padding: 0 343rem;
  }
  .pFV .pFV__inner {
    position: unset;
    padding: 259rem 0 108rem;
  }
  .pFV__headline_en {
    margin-bottom: 3rem;
    font-size: 14rem;
  }
  .pFV__headline_ja .char[data-id="1"] {
    width: 16rem;
    height: 28rem;
    margin-bottom: 2rem;
    margin-left: 7rem;
  }
  .pFV__headline_ja .char[data-id="2"] {
    width: 29rem;
    height: 22rem;
    margin-left: 4rem;
  }
  .pFV__headline_ja .char[data-id="3"] {
    width: 28rem;
    height: 29rem;
    margin-bottom: 2rem;
    margin-left: 4rem;
  }
  .pFV__headline_ja .char[data-id="4"] {
    width: 26rem;
    height: 5rem;
    margin-bottom: 14rem;
    margin-left: 4rem;
  }
  .pFV__headline_ja .char[data-id="5"] {
    width: 39rem;
    height: 30rem;
    margin-bottom: 4rem;
    margin-left: 4rem;
  }
  .pFV__headline_ja .char[data-id="6"] {
    width: 25rem;
    height: 21rem;
    margin-bottom: 3rem;
    margin-left: -6rem;
  }
  .pFV__headline_ja .char[data-id="7"] {
    width: 30rem;
    height: 30rem;
    margin-bottom: 1rem;
  }
  .pFV__headline_ja .char[data-id="8"] {
    width: 28rem;
    height: 26rem;
    margin-bottom: 3rem;
  }
  .pFV__headline_ja .char[data-id="9"] {
    width: 27rem;
    height: 31rem;
    margin-bottom: 1rem;
    margin-left: 7rem;
  }
  .pFV__headline_ja .char[data-id="10"] {
    width: 27rem;
    height: 26rem;
    margin-bottom: 3rem;
    margin-left: 5rem;
  }
  .pNavigation {
    position: sticky;
    top: calc(50% - 42rem);
    z-index: var(--z-subnav);
    width: 122rem;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 179rem;
    margin-bottom: 450rem;
    margin-left: 56rem;
  }
  .pNavigation__list {
    display: flex;
    flex-direction: column;
    gap: 8rem 0;
  }
  .pNavigation__item {
    opacity: 0.4;
    transition: opacity 0.4s var(--e-out-expo);
  }
  .pNavigation__item_link {
    font-size: 13rem;
    line-height: 1.75;
    color: #206a6a;
  }
  .pNavigation__item.is-current {
    pointer-events: none;
    opacity: 1;
  }
  .pHowToUse__body {
    display: flex;
    gap: 162rem;
    padding-bottom: 240rem;
  }
  .pHowToUse__body_container {
    width: 1116rem;
  }
  .pHowToUse__headline {
    gap: 32rem;
  }
  .pHowToUse__headline_en {
    font-size: 12rem;
    line-height: 1.7;
  }
  .pHowToUse__headline_ja {
    font: 24rem;
  }
  .pHowToUse__container {
    width: 100%;
  }
  .pHowToUse__container_inner {
    padding: 0;
  }
  .pHowToUse__usecase {
    margin-top: 179rem;
  }
  .pHowToUse__usecase_textarea_text {
    font-size: 17rem;
  }
  .pHowToUse__usecase_container {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 96rem;
  }
  .pHowToUse__usecase_imgae {
    position: relative;
    height: 1616rem;
  }
  .pHowToUse__usecase_imgae::after {
    position: absolute;
    top: 0;
    left: 271rem;
    z-index: 6;
    width: 10rem;
    height: 100%;
    content: "";
    background: #fff;
  }
  .pHowToUse__usecase_imgae::before {
    position: absolute;
    top: 0;
    left: -8rem;
    z-index: 7;
    width: 10rem;
    height: 100%;
    content: "";
    background: #fff;
  }
  .pHowToUse__usecase_imgae_item {
    position: sticky;
    top: calc(50% - 140rem);
    left: 0;
    width: 272rem;
    height: 280rem;
  }
  .pHowToUse__usecase_imgae_item::before {
    position: absolute;
    bottom: -8rem;
    left: 0;
    width: 100%;
    height: 10rem;
    content: "";
    background: #fff;
  }
  .pHowToUse__usecase_imgae_item:nth-of-type(1) {
    z-index: 1;
    margin-top: 24rem;
  }
  .pHowToUse__usecase_imgae_item:nth-of-type(1)::after {
    position: absolute;
    top: -9rem;
    left: 0;
    width: 100%;
    height: 10rem;
    content: "";
    background: #fff;
  }
  .pHowToUse__usecase_imgae_item:nth-of-type(2) {
    z-index: 2;
    height: 279rem;
    margin-top: 25rem;
  }
  .pHowToUse__usecase_imgae_item:nth-of-type(3) {
    z-index: 3;
    margin-top: 49rem;
  }
  .pHowToUse__usecase_imgae_item:nth-of-type(4) {
    z-index: 4;
    margin-top: 47rem;
  }
  .pHowToUse__usecase_imgae_item:nth-of-type(5) {
    z-index: 5;
    margin-top: 48rem;
  }
  .pHowToUse__usecase_imgae_item:nth-of-type(5)::after {
    position: absolute;
    bottom: -9rem;
    width: 100%;
    height: 10rem;
    content: "";
    background: var(--c-white);
  }
  .pHowToUse__usecase_path {
    position: absolute;
    left: -5rem;
    z-index: 5;
    height: calc(100% + 260rem);
  }
  .pHowToUse__usecase_path_item {
    position: sticky;
    top: calc(50% - 140rem + 280rem);
    left: 0;
    width: 282rem;
    height: 280rem;
    background: var(--c-white);
  }
  .pHowToUse__usecase_path_item:nth-of-type(1) {
    margin-top: 300rem;
  }
  .pHowToUse__usecase_pathtop {
    position: absolute;
    left: 0;
    z-index: 5;
    height: calc(100% - 306rem);
  }
  .pHowToUse__usecase_pathtop_item {
    position: sticky;
    top: calc(50% - 158rem);
    left: 0;
    width: 272rem;
    height: 20rem;
    background: #fff;
  }
  .pHowToUse__usecase_list {
    margin-top: 0;
  }
  .pHowToUse__usecase_item {
    padding: 0;
  }
  .pHowToUse__usecase_item_textarea {
    width: 772rem;
    padding: 72rem 0;
    margin-left: auto;
  }
  .pHowToUse__usecase_item_title {
    gap: 8rem;
  }
  .pHowToUse__usecase_item_title_text {
    font-size: 26rem;
  }
  .pHowToUse__usecase_item_text {
    font-size: 16rem;
    line-height: 1.9;
    letter-spacing: 0.02em;
  }
  .pHowToUse__usecase_item_item {
    font-size: 15rem;
  }
  .pHowToUse__usecase_item:first-child::before {
    left: -344rem;
    z-index: 6;
    width: calc(100% + 344rem);
  }
  .pHowToUse__usecase_item::after {
    left: -344rem;
    z-index: 6;
    width: calc(100% + 344rem);
  }
  .pHowToUse__usecase_item:nth-of-type(1) .pHowToUse__usecase_item_textarea {
    padding: 72rem 0 79rem;
  }
  .pHowToUse__usecase_item:nth-of-type(2) .pHowToUse__usecase_item_textarea {
    padding: 72rem 0 79rem;
  }
  .pHowToUse__usecase_item:nth-of-type(3) .pHowToUse__usecase_item_textarea {
    padding: 91rem 0 88rem;
  }
  .pHowToUse__usecase_item:nth-of-type(4) .pHowToUse__usecase_item_textarea {
    padding: 86rem 0 68rem;
  }
  .pHowToUse__usecase_item:nth-of-type(5) .pHowToUse__usecase_item_textarea {
    padding: 91rem 0;
  }
  .pHowToUse__oem {
    position: relative;
    z-index: 6;
    padding: 200rem 0;
    margin-top: 200rem;
  }
  .pHowToUse__oem_bg {
    left: -340rem;
    width: 1512rem;
  }
  .pHowToUse__oem_inner {
    width: 936rem;
  }
  .pHowToUse__oem_item {
    flex-direction: row;
    gap: 64rem;
    padding: 16rem 4rem 48rem 24rem;
  }
  .pHowToUse__oem_item_data {
    width: 165rem;
  }
  .pHowToUse__oem_item_textarea {
    width: 696rem;
  }
  .pHowToUse__oem_item_title {
    letter-spacing: 0.04em;
  }
  .pHowToUse__oem_item_title_main {
    font-size: 19rem;
  }
  .pHowToUse__oem_item_text {
    margin-top: 14rem;
    font-size: 16rem;
    line-height: 1.9;
  }
  .pHowToUse__easily {
    padding-top: 188rem;
    margin-top: 0;
  }
  .pHowToUse__easily_inner {
    width: 935rem;
  }
  .pHowToUse__easily_headline {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row-reverse;
    gap: 32rem;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 20rem;
    margin-left: auto;
    background-color: var(--c-white);
  }
  .pHowToUse__easily_headline_en {
    writing-mode: vertical-rl;
  }
  .pHowToUse__easily_headline_en_blick {
    width: -moz-fit-content;
    width: fit-content;
    height: 134rem;
  }
  .pHowToUse__easily_headline_ja {
    margin-top: 0;
    font-size: 32rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
  }
  .pHowToUse__easily_list {
    margin-top: -92rem;
  }
  .pHowToUse__easily_item {
    padding: 72rem 0 128rem;
    border-bottom: 2px dotted #00c0dd;
  }
  .pHowToUse__easily_item:first-of-type {
    padding-top: 72rem;
    border-top: 2px dotted #00c0dd;
  }
  .pHowToUse__easily_item_wrapper {
    flex-direction: row-reverse;
    gap: 80rem;
    align-items: flex-end;
  }
  .pHowToUse__easily_item_title_en {
    font-size: 16rem;
  }
  .pHowToUse__easily_item_title_ja {
    gap: 8rem;
  }
  .pHowToUse__easily_item_title_ja_sub {
    font-size: 15rem;
  }
  .pHowToUse__easily_item_title_ja_main {
    font-size: 24rem;
  }
  .pHowToUse__easily_item_textarea {
    width: 520rem;
  }
  .pHowToUse__easily_item_image {
    width: 335rem;
    height: 361rem;
  }
  .pHowToUse__easily_item_list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40rem;
    align-items: flex-start;
    margin-top: 120rem;
  }
  .pHowToUse__easily_item_item_title {
    font-size: 24rem;
  }
  .pHowToUse__easily_item_item_text {
    margin-top: 14rem;
  }
  .pHowToUse__easily_item_item_num {
    font-size: 40rem;
  }
  .pHowToUse__easily_item_item--one {
    flex-direction: row-reverse;
    grid-row: 1/2;
    grid-column: 1/2;
    gap: 60rem;
    width: 526rem;
    padding: 79rem 61rem 53rem 60rem;
  }
  .pHowToUse__easily_item_item--one .pHowToUse__easily_item_item_textarea {
    width: 195rem;
  }
  .pHowToUse__easily_item_item--one .pHowToUse__easily_item_item_image {
    width: 150rem;
    height: 101rem;
  }
  .pHowToUse__easily_item_item--one .pHowToUse__easily_item_item_num {
    top: -27rem;
    left: 50rem;
  }
  .pHowToUse__easily_item_item--two {
    flex-direction: column-reverse;
    grid-row: 1/3;
    grid-column: 2/3;
    gap: 57rem;
    width: 360rem;
    padding: 60rem;
    margin-top: 47rem;
  }
  .pHowToUse__easily_item_item--two .pHowToUse__easily_item_item_image {
    width: 218rem;
    height: 131rem;
    margin-left: auto;
  }
  .pHowToUse__easily_item_item--two .pHowToUse__easily_item_item_num {
    top: -27rem;
    right: 79rem;
    left: unset;
  }
  .pHowToUse__easily_item_item--three {
    flex-direction: column-reverse;
    grid-row: 2/3;
    grid-column: 1/2;
    align-items: flex-start;
    width: 401rem;
    padding: 80rem 60rem 60rem;
    margin-left: auto;
  }
  .pHowToUse__easily_item_item--three .pHowToUse__easily_item_item_textarea {
    width: 196rem;
  }
  .pHowToUse__easily_item_item--three .pHowToUse__easily_item_item_image {
    width: 161rem;
    height: 108rem;
    margin-left: auto;
  }
  .pHowToUse__easily_item_item--three .pHowToUse__easily_item_item_num {
    top: -27rem;
    right: 56rem;
    left: unset;
  }
  .pHowToUse__easily_item--case1 .pHowToUse__easily_item_image {
    height: 416rem;
  }
  .pBuy {
    width: 935rem;
    padding: 0;
    margin-top: 159rem;
  }
  .pBuyLink {
    height: 286rem;
  }
  .pBuyLink__tag {
    padding: 16rem 0 0 24rem;
  }
  .pBuyLink__textarea {
    gap: 6rem;
    padding: 70rem 0 0 72rem;
  }
  .pBuyLink__title {
    font-size: 24rem;
    line-height: 1.5;
  }
  .pBuyLink__text {
    font-size: 17rem;
  }
  .pBuyLink__icon {
    top: 105rem;
    right: 72rem;
    width: 100rem;
    height: 76rem;
  }
  .pBuyLink__icon_innr {
    margin: 26rem 38rem 24rem 32rem;
  }
  .pBuyLink__icon_innr path {
    stroke-width: 1.4;
  }
  .pBuyLink_soon {
    top: 105rem;
    right: 72rem;
    width: 130rem;
    height: 88rem;
  }
}
@media (any-hover: hover) {
  .pBuyLink__icon {
    transition: color 0.4s var(--e-out-expo), background-color 0.4s var(--e-out-expo);
  }
  .pBuyLink:hover .pBuyLink__icon {
    color: var(--c-white);
    background-color: #09bbf2;
  }
}