@charset "UTF-8";

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 14px;
}

@media (max-width: 428px) {
  html {
    font-size: 3.2710280374vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.0769230769vw;
  }
}

@media (min-width: 1300px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  line-height: 1.9285714286;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

a,
a:visited {
  color: #000;
}

a:hover {
  text-decoration: none;
}

.l-example {
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .l-example {
    margin-top: 5.3571428571rem;
  }
}

.l-merchandise+.l-cta {
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .l-merchandise+.l-cta {
    margin-top: 6.6428571429rem;
  }
}

.l-flow+.l-cta {
  margin-top: 4.0714285714rem;
}

@media screen and (min-width: 768px) {
  .l-flow+.l-cta {
    margin-top: 9.8571428571rem;
  }
}

.l-example {
  margin-top: 3.1428571429rem;
}

@media screen and (min-width: 768px) {
  .l-example {
    margin-top: 8.5714285714rem;
  }
}

.l-fixed-bnr {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
}

.l-fixed-contact {
  position: fixed;
  right: 0.9285714286rem;
  bottom: 0.9285714286rem;
  z-index: 99;
}

.l-flow {
  margin-top: 4.4285714286rem;
}

@media screen and (min-width: 768px) {
  .l-flow {
    margin-top: 7rem;
  }
}

.l-header {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 99;
}

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 19px;
}

@media screen and (min-width: 768px) {
  .l-inner {
    width: 87.5%;
    padding: 0 25px;
    max-width: 1300px;
  }
}

.l-manufacturer {
  margin-top: 6.4285714286rem;
}

@media screen and (min-width: 768px) {
  .l-manufacturer {
    margin-top: 8.9285714286rem;
  }
}

.l-merchandise {
  margin-top: 4.4285714286rem;
}

@media screen and (min-width: 768px) {
  .l-merchandise {
    margin-top: 7rem;
  }
}

.l-mv {
  margin-top: 4.2857142857rem;
}

@media screen and (min-width: 768px) {
  .l-mv {
    margin-top: 6.2857142857rem;
  }
}

.l-subsidy {
  margin-top: 4.4285714286rem;
}

@media screen and (min-width: 768px) {
  .l-subsidy {
    margin-top: 7rem;
  }
}

.l-thanks {
  margin-top: 4.2857142857rem;
}

@media screen and (min-width: 768px) {
  .l-thanks {
    margin-top: 6.2857142857rem;
  }
}

.l-top-nav {
  margin-top: 1.9785714286rem;
}

@media screen and (min-width: 768px) {
  .l-top-nav {
    margin-top: 2.0428571429rem;
  }
}

.c-btn-more {
  display: inline-block;
  border-radius: 0.2857142857rem;
  font-size: 1.1428571429rem;
  font-weight: 700;
  padding: 0.6428571429rem;
  text-align: center;
  max-width: 18.7857142857rem;
  width: 100%;
  color: #fff !important;
  position: relative;
  background-color: #707070;
  transition: background-color 0.3s ease;
}

.c-btn-more:hover {
  background-color: #4C4C4C;
}

.c-btn-more::after {
  position: absolute;
  content: "";
  top: 50%;
  content: "";
  right: 1.4285714286rem;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 0.1428571429rem solid #fff;
  border-right: 0.1428571429rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  box-sizing: border-box;
}

.c-btn-more--article {
  max-width: 22.9285714286rem;
}

.c-btn-more--article span {
  display: inline-block;
  transform: translateX(-10px);
}

.c-title {
  text-align: center;
}

.c-title span {
  font-weight: 500;
  font-size: 1.7142857143rem;
  display: inline-block;
  padding-bottom: 1.2410714286125rem;
  line-height: 1.2;
  position: relative;
}

@media (min-width: 1300px) {
  .c-title span {
    font-size: clamp(1.5rem, 0.714rem + 0.968vw, 1.875rem);
  }
}

.c-title span::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 6.7857142857rem;
  height: 1px;
  background-color: #707070;
}

.p-article {
  padding: 4.355294460641399rem 0 5rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-article {
    padding: 7.857142857142857rem 0 5.3571428571rem;
  }
}

.p-article__swiper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media screen and (min-width: 768px) {
  .p-article__swiper {
    width: 100%;
    margin-left: 0;
  }
}

.p-article__list {
  display: flex;
  margin-top: 2.7857142857rem;
}

@media screen and (min-width: 768px) {
  .p-article__list {
    margin-top: 2.9285714286rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8571428571rem;
  }
}

.p-article__item {
  height: auto;
}

.p-article__link {
  display: block;
  height: 100%;
}

.p-article__link:hover .p-article__item-img img {
  transform: scale(1.05);
}

.p-article__item-img {
  width: 100%;
  border: 1px solid #C6C6C6;
  padding: 0 1.4285714286rem;
  overflow: hidden;
  background-color: #fff;
}

.p-article__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 265/169;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}

.p-article__title {
  line-height: 1.5714285714;
  margin-top: 0.8571428571rem;
  width: 89%;
  font-size: 14px;
}

@media (min-width: 1300px) {
  .p-article__title {
    font-size: clamp(1rem, 0.551rem + 0.484vw, 1.214rem);
  }
}

.p-article__date {
  padding-left: 1.9285714286rem;
  position: relative;
  line-height: 2.1666666667;
  font-size: 0.8571428571rem;
}

.p-article__date::before {
  position: absolute;
  content: "";
  top: -6%;
  left: 0;
  width: 1.5714285714rem;
  height: 1.8571428571rem;
  background: url("../img/ico_date.png") no-repeat center center/contain;
}

.p-article__btn {
  margin-top: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-article__btn {
    margin-top: 3.9285714286rem;
  }
}

.p-contact {
  background-color: #E6F7FF;
  padding: 3.8571428571rem 0 2.4285714286rem;
}

@media screen and (min-width: 768px) {
  .p-contact {
    padding: 4.2857142857rem 0 2.4285714286rem;
  }
}

.p-contact .c-title span {
  font-weight: 700;
  font-size: 2rem;
  padding-bottom: 0;
}

.p-contact .c-title span::before {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-contact .c-title span::before {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .p-contact .c-title span {
    font-size: 1.7142857143rem;
    padding-bottom: 1.6428571429rem;
    font-weight: 500;
  }
}

.p-contact__form {
  max-width: 64.2857142857rem;
  margin: 1.5rem auto 0;
}

@media screen and (min-width: 768px) {
  .p-contact__form {
    margin: 3.4285714286rem auto 0;
  }
}

.p-form__wrap {
  border: 1px solid #868686;
}

@media screen and (min-width: 768px) {
  .p-form__wrap {
    display: flex;
  }
}

.p-form__wrap+.p-form__wrap {
  border-top: none;
}

.p-form__label {
  font-size: 1.2857142857rem;
  line-height: 1;
  font-weight: 700;
  min-height: 4.2857142857rem;
  width: 100%;
  background-color: #79C3F2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2857142857rem 1.4285714286rem;
  border-bottom: 1px solid #868686;
}

@media screen and (min-width: 768px) {
  .p-form__label {
    min-height: 5.6071428571rem;
    border-right: 1px solid #868686;
    border-bottom: none;
    width: 34.67%;
  }
}

.p-form__label--textarea {
  align-items: flex-start;
}

.p-form__label span {
  padding: 0 0.5714285714rem;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.7142857143;
  color: #fff;
  background-color: #fff;
  font-weight: 700;
  color: #FF7F00;
}

@media screen and (min-width: 768px) {
  .p-form__label span {
    margin-right: 0.7142857143rem;
  }
}

.p-form__input {
  width: 100%;
  background-color: #F2F2F2;
  padding: 1.2857142857rem 1.4285714286rem;
}

@media screen and (min-width: 768px) {
  .p-form__input {
    width: 65.4%;
  }
}

.p-form__input input {
  width: 100%;
  max-width: 341px;
  border: 1px solid #868686;
  height: 41px;
  padding: 0.5714285714rem 1.0714285714rem;
  font-size: 1.1428571429rem;
  color: #868686;
}

.p-form-select__inner {
  position: relative;
  display: inline-block;
  max-width: 341px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-form-select__inner {
    max-width: 257px;
  }
}

.p-form-select__inner::before {
  position: absolute;
  content: "";
  top: 50%;
  content: "";
  right: 1.4285714286rem;
  width: 9px;
  height: 9px;
  margin: auto;
  border-bottom: 0.1428571429rem solid #333333;
  border-left: 0.1428571429rem solid #333333;
  transform: translateY(-50%) rotate(-45deg);
  box-sizing: border-box;
  pointer-events: none;
}

.p-form__select {
  background-color: #F2F2F2;
  padding: 1.2857142857rem 1.4285714286rem;
}

@media screen and (min-width: 768px) {
  .p-form__select {
    width: 65.4%;
  }
}

.p-form__select select {
  width: 100%;
  border: 1px solid #868686;
  height: 41px;
  padding: 0.5714285714rem 1.0714285714rem;
  font-size: 1.1428571429rem;
  cursor: pointer;
  color: #868686;
}

.p-form-select select::-ms-expand {
  display: none;
}

.p-form-textarea {
  background-color: #F2F2F2;
  padding: 1.4285714286rem;
}

@media screen and (min-width: 768px) {
  .p-form-textarea {
    width: 65.4%;
  }
}

.p-form-textarea textarea {
  padding: 0.5714285714rem 1.0714285714rem;
  width: 100%;
  height: 16.5rem;
  font-size: 1.1428571429rem;
  border-radius: 0;
  border: 1px solid #868686;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  color: #868686;
  max-width: 341px;
}

.p-contact__btn-wrap {
  margin-top: 2.7142857143rem;
  text-align: center;
}

.p-contact__btn {
  display: inline-block;
  position: relative;
  max-width: 23.8571428571rem;
  width: 100%;
}

.p-contact__btn input {
  font-size: 1.7857142857rem;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  padding: 1.5714285714rem;
  background-color: #6F6B65;
  border-radius: 2.7142857143rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.p-contact__btn input:hover {
  background-color: #4C4C4C;
}

.p-contact__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  content: "";
  right: 2.1428571429rem;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 0.2857142857rem solid #fff;
  border-right: 0.2857142857rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  box-sizing: border-box;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.p-cta {
  padding: 1.6071428571rem 0 2.75rem;
  text-align: center;
  background: url("../img/bg_cta.png") no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
  .p-cta {
    padding: 4.1428571429rem 0 4.5714285714rem;
  }
}

.p-cta .l-inner {
  padding: 0 2.8571428571rem;
}

@media screen and (min-width: 768px) {
  .p-cta .l-inner {
    padding: 0 25px;
  }
}

.p-cta__header {
  font-size: 1.7142857143rem;
  color: #fff;
  line-height: 1.4166666667;
}

@media (min-width: 1300px) {
  .p-cta__header {
    font-size: clamp(1.714rem, 0.816rem + 0.968vw, 2.143rem);
  }
}

.p-cta__box {
  margin-top: 1.3571428571rem;
  border-radius: 0.7142857143rem;
  background-color: #fff;
  position: relative;
  padding: 1.4285714286rem 1.4285714286rem 2.7142857143rem;
}

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

.p-cta__box::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 30px);
  background-color: #707070;
  display: none;
}

@media screen and (min-width: 768px) {
  .p-cta__box::before {
    display: block;
  }
}

.p-cta__title {
  font-size: 1.4285714286rem;
}

@media (min-width: 1300px) {
  .p-cta__title {
    font-size: clamp(1.429rem, 0.68rem + 0.806vw, 1.786rem);
  }
}

.p-cta__text {
  margin-top: 0.3571428571rem;
}

@media (min-width: 1300px) {
  .p-cta__text {
    font-size: clamp(1rem, 0.551rem + 0.484vw, 1.214rem);
  }
}

@media screen and (max-width: 767px) {
  .p-cta__text {
    font-size: 14px;
  }
}

.p-cta__right {
  margin-top: 1.5rem;
  padding-top: 1.1428571429rem;
  border-top: 1px solid #707070;
}

@media screen and (min-width: 768px) {
  .p-cta__right {
    margin-top: 0;
    padding-top: 0;
    border: none;
  }
}

.p-cta__tel {
  display: inline-block;
  position: relative;
  padding-left: 0.4285714286rem;
}

.p-cta__tel:hover {
  color: #000;
}

@media screen and (min-width: 768px) {
  .p-cta__tel {
    padding-left: 0;
    margin-top: 0.2142857143rem;
  }
}

.p-cta__tel::before {
  position: absolute;
  content: "";
  top: 0.3571428571rem;
  left: -0.7142857143rem;
  width: 3rem;
  height: 2.9285714286rem;
  background: url("../img/ico_tel.svg") no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .p-cta__tel::before {
    top: 0;
    height: 3.4285714286rem;
    left: -2.1428571429rem;
    width: 3.4285714286rem;
  }
}

.p-cta__tel-num {
  font-size: 2.4285714286rem;
  line-height: 1;
  margin-left: 1.7857142857rem;
  display: inline-block;
  margin-top: 0.3571428571rem;
}

@media screen and (min-width: 768px) {
  .p-cta__tel-num {
    margin-top: 0;
    font-size: 2.8571428571rem;
    margin-left: 1.1428571429rem;
  }
}

@media (min-width: 1300px) {
  .p-cta__tel-num {
    font-size: clamp(2.429rem, 1.23rem + 1.29vw, 3rem);
  }
}

.p-cta__time {
  font-size: 0.9285714286rem;
  margin-top: 0.1428571429rem;
}

@media screen and (min-width: 768px) {
  .p-cta__time {
    margin-top: 0.3571428571rem;
  }
}

@media (min-width: 1300px) {
  .p-cta__time {
    font-size: clamp(0.929rem, 0.479rem + 0.484vw, 1.143rem);
  }
}

.p-cta__btn-wrap {
  margin-top: 0.2142857143rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-cta__btn-wrap {
    margin-top: 1.4285714286rem;
  }
}

.p-cta__btn {
  display: inline-flex;
  align-items: center;
  max-width: 23.7857142857rem;
  border-radius: 2.3571428571rem;
  width: 100%;
  background-color: #FF7F00;
  font-size: 1.5714285714rem;
  font-weight: 700;
  color: #fff !important;
  line-height: 1;
  box-shadow: 0 0.2857142857rem 0 #AD3A26;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  padding: 1.4285714286rem 0 1.4285714286rem 3.5714285714rem;
  gap: 1.3571428571rem;
}

@media screen and (min-width: 768px) {
  .p-cta__btn {
    padding: 1.4285714286rem 0 1.4285714286rem 4rem;
    gap: 1.9642857143rem;
  }
}

@media (min-width: 1300px) {
  .p-cta__btn {
    font-size: clamp(1.571rem, 0.823rem + 0.806vw, 1.929rem);
  }
}

.p-cta__btn::before {
  width: 29.5714285714rem;
  height: 9.9285714286rem;
  position: absolute;
  content: "";
  left: 50%;
  top: -8rem;
  transform: translateX(-50%);
  background-color: #FF9225;
  border-radius: 50%;
}

.p-cta__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  content: "";
  right: 1.7857142857rem;
  width: 9px;
  height: 9px;
  margin: auto;
  border-bottom: 0.1428571429rem solid #fff;
  border-left: 0.1428571429rem solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  box-sizing: border-box;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-cta__btn::after {
    right: 2.1428571429rem;
  }
}

.p-cta__btn span,
.p-cta__btn img {
  position: relative;
}

.p-cta__btn:hover {
  transform: translateY(4px);
  box-shadow: none;
  color: #fff;
}

.p-cta__btn:hover img {
  opacity: 1;
}

.p-example {
  padding: 3.7857142857rem 0 4.0714285714rem;
  overflow: hidden;
  background-color: #F0F3F5;
}

@media screen and (min-width: 768px) {
  .p-example {
    padding: 4.2857142857rem 0 6.8571428571rem;
  }
}

.p-example__swiper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media screen and (min-width: 768px) {
  .p-example__swiper {
    width: 100%;
    margin-left: 0;
  }
}

.p-example__list {
  display: flex;
  margin-top: 2.7857142857rem;
}

@media screen and (min-width: 768px) {
  .p-example__list {
    margin-top: 2.3571428571rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8571428571rem;
  }
}

.p-example__item {
  height: auto;
}

.p-example__link {
  display: block;
  height: 100%;
}

.p-example__item-img {
  width: 100%;
  padding: 0.5rem 0;
  background-color: #fff;
}

.p-example__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 307/173;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-example__title {
  font-size: 1.7142857143rem;
  text-align: center;
  color: #0C8CE4;
  line-height: 1.125;
}

@media (min-width: 1300px) {
  .p-example__title {
    font-size: clamp(1.714rem, 0.816rem + 0.968vw, 2.143rem);
  }
}

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

@media (min-width: 1300px) {
  .p-example__place {
    font-size: clamp(1rem, 0.551rem + 0.484vw, 1.214rem);
  }
}

.p-example__kind {
  text-align: center;
  font-size: 1.2857142857rem;
  line-height: 1;
}

@media (min-width: 1300px) {
  .p-example__kind {
    font-size: clamp(1.286rem, 0.687rem + 0.645vw, 1.571rem);
  }
}

.p-fixed-bnr__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.0714285714rem;
  background-color: #333333;
  padding: 0.8928571429rem 0;
}

.p-fixed-bnr__tel {
  display: inline-block;
  position: relative;
  color: #fff;
  padding-left: 0.4285714286rem;
  transform: translateX(10px);
}

@media screen and (min-width: 768px) {
  .p-fixed-bnr__tel {
    transform: initial;
  }
}

.p-fixed-bnr__tel::before {
  position: absolute;
  content: "";
  top: 0.3571428571rem;
  left: -1.0714285714rem;
  width: 1.0714285714rem;
  height: 1.5714285714rem;
  background: url("../img/ico_tel_sp.svg") no-repeat center center/contain;
}

.p-fixed-bnr__tel-num {
  font-size: 1.8571428571rem;
  display: inline-block;
  line-height: 1;
}

.p-fixed-bnr__time {
  font-size: 0.8571428571rem;
  line-height: 1;
}

.p-fixed-bnr__btn {
  display: inline-flex;
  padding: 0.2857142857rem 0 0.2857142857rem 1.0714285714rem;
  gap: 0.3571428571rem;
  align-items: center;
  max-width: 11.0714285714rem;
  border-radius: 2.3571428571rem;
  width: 100%;
  background-color: #FF7F00;
  font-size: 1.2142857143rem;
  font-weight: 700;
  color: #fff;
  transform: translateX(10px);
}

@media screen and (min-width: 768px) {
  .p-fixed-bnr__btn {
    transform: initial;
  }
}

.p-fixed-bnr__btn img {
  display: inline-block;
  transform: translateY(2px);
}

.p-fixed-contact__img img {
  width: 3.5714285714rem;
  height: 2.5714285714rem;
}

.p-fixed-contact__link {
  gap: 0.7142857143rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 9.7857142857rem;
  height: 9.7857142857rem;
  font-size: 1rem;
  line-height: 1;
  color: #fff !important;
  border-radius: 50%;
  background-color: #FF7F00;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.p-fixed-contact__link:hover {
  background-color: #FFA500;
}

.p-fixed-contact__link:hover img {
  opacity: 1;
}

.p-flow__list {
  margin: 2.1428571429rem auto 0;
  max-width: 71.4285714286rem;
  display: grid;
  gap: 2.7142857143rem;
}

@media screen and (min-width: 768px) {
  .p-flow__list {
    transform: translateX(-22px);
    margin-top: 10.3571428571rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 9.0714285714rem 3.7857142857rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding: 0 50px;
  }
}

.p-flow__body {
  display: flex;
  gap: 0.9285714286rem;
}

@media screen and (min-width: 768px) {
  .p-flow__body {
    display: block;
    margin-top: -7.1428571429rem;
  }
}

.p-flow__item {
  background-color: #E6F7FF;
  padding: 1.0714285714rem 1.4285714286rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-flow__item {
    padding: clamp(0.625rem, -2.012rem + 5.495vw, 1.25rem) 1.4285714286rem;
  }
}

.p-flow__item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 100%;
  height: 2.1428571429rem;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #E6F7FF;
}

@media screen and (min-width: 768px) {
  .p-flow__item::before {
    top: 50%;
    right: -3.2857142857rem;
    left: initial;
    width: 3.2857142857rem;
    height: 100%;
    transform: translateY(-50%) rotate(180deg);
    -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
  }
}

.p-flow__item:last-child .p-flow__body {
  padding-top: 2.1428571429rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:last-child .p-flow__body {
    padding-top: 0;
    margin-top: -4.5714285714rem;
  }
}

.p-flow__item:last-child::before {
  display: none;
}

.p-flow__item:last-child .p-flow__item-img {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-flow__item:last-child .p-flow__item-img {
    margin: 0 auto;
  }
}

.p-flow__item-title {
  font-size: 1.2857142857rem;
  font-weight: 700;
  color: #0C8CE4;
}

@media screen and (min-width: 768px) {
  .p-flow__item-title {
    text-align: center;
  }
}

@media (min-width: 1300px) {
  .p-flow__item-title {
    font-size: clamp(1.286rem, 0.687rem + 0.645vw, 1.571rem);
  }
}

.p-flow__item-img {
  width: 100%;
  height: 100%;
  max-width: 5.5714285714rem;
  margin: 0 auto;
  margin-top: 1.7857142857rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item-img {
    margin-top: 0;
    max-width: 9.5714285714rem;
  }
}

.p-flow__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 134/134;
}

.p-flow__item-text {
  margin-top: 0.5714285714rem;
  font-size: 1rem;
  line-height: 1.9285714286;
  padding: 0.3571428571rem 1.0714285714rem;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-flow__item-text {
    margin-top: 1rem;
    font-size: 0.9285714286rem;
    line-height: 2.0769230769;
    padding: 1rem;
  }
}

@media (min-width: 1300px) {
  .p-flow__item-text {
    font-size: clamp(0.929rem, 0.479rem + 0.484vw, 1.143rem);
  }
}

.p-flow__item-text a {
  text-decoration: underline;
  color: #0C8CE4;
}

.p-flow__item-emphasis {
  font-weight: 700;
  color: #0C8CE4;
  text-align: center;
  font-size: 1.2857142857rem;
  margin-top: 0.7142857143rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item-emphasis {
    font-size: 2.0714285714rem;
    margin-top: 1.7142857143rem;
  }
}

.p-footer {
  text-align: center;
  padding: 1.4285714286rem 0 6.2142857143rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    padding: 2.1428571429rem 0 1.4285714286rem;
  }
}

.p-footer__link {
  width: 100%;
  height: 100%;
  max-width: 17.6428571429rem;
  display: inline-block;
  margin: 0 auto;
}

.p-footer__copyright {
  display: block;
  font-size: 0.7142857143rem;
}

.p-header {
  padding: 0.6428571429rem 0;
  background-color: #fff;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-header {
    padding: 0.8571428571rem 0;
  }
}

.p-header__inner {
  max-width: 100rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header__link {
  display: inline-block;
  height: 100%;
}

.p-header__link img {
  max-width: 10.7857142857rem;
  height: 2.7857142857rem;
}

@media screen and (min-width: 768px) {
  .p-header__link img {
    height: 4.5714285714rem;
    max-width: 17.6428571429rem;
  }
}

.p-header__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 2.3571428571rem;
  width: 100%;
  background-color: #FF7F00;
  font-weight: 700;
  color: #fff !important;
  font-size: 0.8571428571rem;
  max-width: 11.0714285714rem;
  padding: 0.5714285714rem 0 0.5714285714rem 2.1428571429rem;
  gap: 0.6428571429rem;
  transition: background-color 0.3s ease;
}

@media (min-width: 1300px) {
  .p-header__btn {
    font-size: clamp(0.857rem, 0.558rem + 0.323vw, 1rem);
  }
}

.p-header__btn:hover {
  background-color: #FFA500;
}

.p-header__btn:hover img {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .p-header__btn {
    padding: 0.7857142857rem 0 0.7857142857rem 3.0714285714rem;
    gap: 0.8571428571rem;
    max-width: 15.7857142857rem;
    font-size: 1.2142857143rem;
  }
}

.p-header__btn img {
  display: inline-block;
  transform: translateY(2px);
  width: 1.0714285714rem;
}

@media screen and (min-width: 768px) {
  .p-header__btn img {
    width: 1.5rem;
  }
}

.p-machine-items {
  padding-top: 4.4285714286rem;
}

.p-machine-items.p-bills {
  padding-top: 1.4285714286rem;
}

@media screen and (min-width: 768px) {
  .p-machine-items.p-bills {
    padding-top: 2rem;
  }
}

.c-section-header {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.8571428571rem;
}

.c-section-header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.2142857143rem;
  background-color: #F0F3F5;
  left: 0;
  bottom: 0;
}

.c-section-header__img {
  position: relative;
  width: 4.2142857143rem;
  height: 3.8571428571rem;
  padding: 0.3571428571rem;
  aspect-ratio: 59/54;
  background-color: #0C8CE4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-section-header__img img {
  max-width: 100%;
  max-height: 100%;
}

.c-section-header__text {
  width: 100%;
  margin: 0;
  font-size: 1.7142857143rem;
  font-weight: 500;
}

@media (min-width: 1300px) {
  .c-section-header__text {
    font-size: clamp(1.5rem, 0.714rem + 0.968vw, 1.875rem);
  }
}

.p-machine-items__text {
  margin-top: 1.0714285714rem;
}

@media screen and (min-width: 768px) {
  .p-machine-items__text {
    margin-top: 2.1428571429rem;
  }
}

@media (min-width: 1300px) {
  .p-machine-items__text {
    font-size: clamp(0.929rem, 0.479rem + 0.484vw, 1.143rem);
  }
}

@media screen and (max-width:767px) {
  .p-machine-items__text {
    font-size: 14px;
  }
}

.p-manufacturer {
  background-color: #E6F7FF;
  padding: 2.4285714286rem 0;
}

@media screen and (min-width: 768px) {
  .p-manufacturer {
    padding: 3.2857142857rem 0;
  }
}

.p-manufacturer__body {
  margin-top: -4.2857142857rem;
}

@media screen and (min-width: 768px) {
  .p-manufacturer__body {
    margin-top: -5.3571428571rem;
  }
}

.p-manufacturer__title {
  text-align: center;
  margin: 0 auto;
  width: 95%;
}

@media screen and (min-width: 768px) {
  .p-manufacturer__title {
    width: 86.7%;
  }
}

.p-manufacturer__title span {
  display: inline-block;
  line-height: 1.4285714286;
  font-weight: 700;
  font-size: 1.7142857143rem;
  border-radius: 1.7142857143rem;
  color: #0C8CE4;
  background-color: #F7F7F7;
  border: 1px solid #0C8CE4;
  padding: 0.3928571429rem;
  max-width: 26.5rem;
  width: 100%;
  text-align: center;
  position: relative;
}

@media (min-width: 1300px) {
  .p-manufacturer__title span {
    font-size: clamp(1.714rem, 0.816rem + 0.968vw, 2.143rem);
  }
}

.p-manufacturer__title span::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -8px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 8px solid #0C8CE4;
  border-bottom: 0;
}

.p-manufacturer__list {
  max-width: 53.6428571429rem;
  margin: 0 auto;
  margin-top: 1.7857142857rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5714285714rem;
}

@media screen and (min-width: 768px) {
  .p-manufacturer__list {
    gap: 1.9285714286rem 3.2142857143rem;
  }
}

.p-manufacturer__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-manufacturer__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 78/25;
}

.p-merchandise__content {
  margin-top: 3.5714285714rem;
  padding: 0.4285714286rem 1.2142857143rem 0.4285714286rem 1.4285714286rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/bg_merchandise.jpg") no-repeat center center/cover;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-merchandise__content {
    margin-top: 2.3571428571rem;
    padding: 6.5714285714rem 0;
  }
}

.p-merchandise__content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: -1;
}

.p-merchandise__btn-wrap {
  display: inline-block;
  position: relative;
}

.p-merchandise__btn-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border-left: 1.4285714286rem solid #0C8CE4;
  border-bottom: 1.4285714286rem solid transparent;
  z-index: 2;
}

.p-merchandise__btn-wrap::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  border-right: 1.4285714286rem solid #0C8CE4;
  border-top: 1.4285714286rem solid transparent;
  z-index: 2;
}

.p-merchandise__btn {
  display: inline-block;
  background-color: #fff;
  font-size: 1.1428571429rem;
  font-weight: 700;
  padding: 0.7857142857rem 4.0714285714rem 0.7857142857rem 2.9285714286rem;
  border: 0.2857142857rem solid #0C8CE4;
  position: relative;
}

@media (min-width: 1300px) {
  .p-merchandise__btn {
    font-size: clamp(1.143rem, 0.544rem + 0.645vw, 1.429rem);
  }
}

.p-merchandise__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  content: "";
  right: 1.0714285714rem;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 0.2857142857rem solid #333333;
  border-right: 0.2857142857rem solid #333333;
  transform: translateY(-50%) rotate(45deg);
  box-sizing: border-box;
}

.p-merchandise__img {
  max-width: 5.8571428571rem;
  position: initial;
}

@media screen and (min-width: 768px) {
  .p-merchandise__img {
    max-width: 9.3571428571rem;
    position: absolute;
    left: 63%;
  }
}

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

.p-merchandise__link_area:hover .p-merchandise__img img {
  opacity: 1;
}

.p-mv {
  overflow-x: hidden;
  background: url("../img/bg_mv_sp.png") no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
  .p-mv {
    background: url("../img/bg_mv.png") no-repeat center center/cover;
    overflow-y: hidden;
  }
}

.p-mv__inner {
  max-width: 66.4285714286rem;
  padding: 0;
  padding-left: 0.6428571429rem;
}

@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding: 0 25px;
  }
}

.p-mv__box {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

@media screen and (min-width: 450px) {
  .p-mv__box {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__box {
    justify-content: flex-start;
    position: relative;
    height: 432px;
  }
}

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

.p-mv__catch {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.4285714286;
  font-weight: 700;
  border-radius: 1.7142857143rem;
  color: #0C8CE4;
  background-color: #E6F7FF;
  padding: 0.1428571429rem 0.4285714286rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-mv__catch {
    padding: 0.2857142857rem 2.9285714286rem;
    font-size: 1.9285714286rem;
    line-height: 1.4444444444;
  }
}

@media (min-width: 1300px) {
  .p-mv__catch {
    font-size: clamp(1.688rem, 0.901rem + 0.968vw, 2.063rem);
  }
}

.p-mv__catch::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -3px;
  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
  border-top: 3px solid #E6F7FF;
  border-bottom: 0;
}

@media screen and (min-width: 768px) {
  .p-mv__catch::before {
    bottom: -7px;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 8px solid #E6F7FF;
    border-bottom: 0;
  }
}

.mv__title {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-size: 3.4285714286rem;
  letter-spacing: 0.15em;
  filter: drop-shadow(6px 6px 0 #0C8CE4);
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .mv__title {
    margin-top: 1.0714285714rem;
    font-size: 8.2857142857rem;
  }
}

@media (min-width: 1300px) {
  .mv__title {
    font-size: clamp(7.25rem, 4.105rem + 3.871vw, 8.75rem);
  }
}

.p-mv__list {
  margin-top: 1.0714285714rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 0.3571428571rem;
}

@media screen and (min-width: 768px) {
  .p-mv__list {
    margin-top: 2.8571428571rem;
    gap: 0.3571428571rem 1.0714285714rem;
  }
}

.p-mv__item {
  display: inline-block;
  text-align: center;
  border-radius: 0.3571428571rem;
  border: 0.1428571429rem solid #0C8CE4;
  white-space: nowrap;
  width: 6.4285714286rem;
  font-size: 0.7142857143rem;
  letter-spacing: -0.126em;
  line-height: 1.1428571429rem;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-mv__item {
    letter-spacing: 0;
    width: 15rem;
    font-size: 1.4285714286rem;
    line-height: 2.3571428571rem;
  }
}

@media (min-width: 1300px) {
  .p-mv__item {
    font-size: clamp(1.25rem, 0.595rem + 0.806vw, 1.563rem);
    width: clamp(13.125rem, 6.573rem + 8.065vw, 16.25rem);
  }
}

.p-mv__item:nth-child(3n-2) {
  color: #098B6D;
}

.p-mv__item:nth-child(3n-1) {
  color: #0068B7;
}

.p-mv__item:nth-child(3n) {
  color: #5E14A0;
}

.p-mv__left {
  padding: 0.6428571429rem 0;
}

@media screen and (min-width: 768px) {
  .p-mv__left {
    padding: 0;
    margin-top: -1.7857142857rem;
    margin-left: -0.7142857143rem;
  }
}

.p-mv__box .p-mv__right {
  width: 38%;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  right: -90px;
  margin-top: 0;
  margin-left: 0;
}

.p-mv__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 337/472;
}

@media screen and (max-width: 767px) {
  .p-mv__box .p-mv__right {
    position: relative;
    width: 30.6%;
    margin-left: -1.0714285714rem;
    margin-top: -1rem;
    right: 0;
    top: 90px;
  }
}


@media screen and (min-width: 450px) {
  .p-mv__right {
    flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__right {
    margin-left: -3.9285714286rem;
    width: 24.0714285714rem;
    margin-top: -2.8571428571rem;
  }
}

.p-subsidy {
  overflow-x: hidden;
}

.c-title+.p-subsidy__text {
  margin-top: 2.2857142857rem;
}

@media screen and (min-width: 768px) {
  .c-title+.p-subsidy__text {
    margin-top: 2.8571428571rem;
  }
}

@media screen and (max-width: 767px) {
  .c-title+.p-subsidy__text {
    font-size: 14px;
  }
}

@media (min-width: 1300px) {
  .c-title+.p-subsidy__text {
    font-size: clamp(1rem, 0.551rem + 0.484vw, 1.214rem);
  }
}

.p-subsidy__invoice {
  margin-top: 4.3571428571rem;
  background-color: #F0F3F5;
  border-radius: 0.7142857143rem;
  padding: 0 0.5rem 2.0714285714rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy__invoice {
    margin-top: 6.3571428571rem;
    padding: 0 6.0714285714rem 2.4285714286rem;
  }
}

.p-subsidy__invoice-img {
  width: 100%;
  max-width: 26.8571428571rem;
  height: 100%;
  margin: 0 auto;
  transform: translateY(-40px);
}

.p-subsidy__invoice-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 376/145;
}

.p-subsidy__invoice-text {
  margin-top: -1.7857142857rem;
  padding: 0 1.1428571429rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy__invoice-text {
    margin-top: -1.4285714286rem;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-subsidy__invoice-text {
    font-size: 14px;
  }
}

@media (min-width: 1300px) {
  .p-subsidy__invoice-text {
    font-size: clamp(1rem, 0.551rem + 0.484vw, 1.214rem);
  }
}

.p-subsidy__target {
  margin-top: 2.7142857143rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy__target {
    margin-top: 3.7857142857rem;
  }
}

.p-subsidy__title {
  background-color: #E6F7FF;
  font-size: 1.2857142857rem;
  text-align: center;
  color: #0C8CE4;
  width: 100%;
}

@media (min-width: 1300px) {
  .p-subsidy__title {
    font-size: clamp(1.286rem, 0.687rem + 0.645vw, 1.571rem);
  }
}

.p-subsidy__title .p-subsidy__title-skew {
  padding: 0.5714285714rem 4.2857142857rem;
  background-color: #fff;
  display: inline-block;
  transform: skewX(115deg);
}

@media screen and (min-width: 768px) {
  .p-subsidy__title .p-subsidy__title-skew {
    padding: 0.5714285714rem 7.1428571429rem;
  }
}

.p-subsidy__title span {
  display: inline-block;
  transform: skewX(-115deg);
}

.p-subsidy-target__list {
  margin-top: 2.5rem;
  display: grid;
  gap: 3.7857142857rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5714285714rem;
    gap: 3.1428571429rem;
  }
}

.p-subsidy-target__item-header {
  font-size: 1.2857142857rem;
  font-weight: 700;
  color: #fff;
  background-color: #0C8CE4;
  padding: 0.9285714286rem;
  text-align: center;
}

.p-subsidy-target__box {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.1428571429rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__box {
    gap: 1.4285714286rem;
    margin-top: 1.0714285714rem;
    padding-left: 1.5714285714rem;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__item:nth-child(2) .p-subsidy-target__box {
    padding-left: 6.4285714286rem;
  }
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__item:nth-child(2) .p-subsidy-target__box:last-child {
    gap: 2.7142857143rem;
  }
}

.p-subsidy-target__box+.p-subsidy-target__box {
  margin-top: 1.2857142857rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__box+.p-subsidy-target__box {
    margin-top: 1.5rem;
  }
}

.p-subsidy-target__left {
  width: 100%;
  height: 100%;
  max-width: 8.7857142857rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__left {
    max-width: 10rem;
  }
}

.p-subsidy-target__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 140/140;
}

.p-subsidy-target__right {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__right {
    width: initial;
  }
}

.p-subsidy-target__text-wrap {
  font-size: 1.0714285714rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__text-wrap {
    font-size: 1.2857142857rem;
  }
}

@media (max-width: 427px) {
  .p-subsidy-target__text-wrap {
    font-size: 0.9285714286rem;
  }
}

.p-subsidy-target__num {
  text-align: center;
}

.p-subsidy-target__num span {
  font-size: 2.7142857143rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-subsidy-target__num span {
    font-size: 3.0714285714rem;
  }
}

@media (max-width: 427px) {
  .p-subsidy-target__num span {
    font-size: 2.7142857143rem;
  }
}

.p-subsidy__price {
  margin-top: 4.7142857143rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy__price {
    margin-top: 4.8571428571rem;
  }
}

.p-subsidy-price__software {
  margin-top: 1.0714285714rem;
}

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

.p-subsidy-price__hardware {
  margin-top: 3.5rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy-price__hardware {
    margin-top: 3.5714285714rem;
  }
}

.p-subsidy-price__title {
  font-size: 1.2857142857rem;
  font-weight: 700;
  text-align: center;
}

.p-subsidy-price__table {
  display: flex;
  flex-direction: column;
  gap: 0.1428571429rem;
  margin-top: 1.4285714286rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy-price__table {
    gap: 0;
    flex-direction: row;
  }
}

.p-subsidy-price__table table,
.p-subsidy-price__table td,
.p-subsidy-price__table th {
  border: 1px solid #0C8CE4;
  border-collapse: collapse;
  line-height: 1;
  width: 100%;
}

.p-subsidy-price__table td,
.p-subsidy-price__table th {
  padding: 1.2142857143rem;
  width: 100%;
  height: 4.3571428571rem;
  font-size: 1.2857142857rem;
  font-weight: 700;
  text-align: center;
}

.p-subsidy-price__table .p-subsidy-price__table-row2 td {
  width: 50%;
}

.p-subsidy-price__table th {
  background: #E6F7FF;
}

.p-subsidy-price__table td:empty {
  background-image: linear-gradient(to top left, transparent calc(50% - 0.5px), #0C8CE4 50%, #0C8CE4 calc(50% + 0.5px), transparent calc(50% + 1px)) !important;
}

.p-subsidy-price__table td span {
  vertical-align: super;
  font-size: 1rem;
}

.p-subsidy-price__hardware tr:last-of-type {
  height: 8.5714285714rem;
}

.p-subsidy-price__text {
  margin-top: 1.2142857143rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy-price__text {
    margin-top: 1.2857142857rem;
  }
}

@media screen and (max-width: 767px) {
  .p-subsidy-price__text {
    font-size: 14px;
  }
}

.p-subsidy__subject {
  margin-top: 4.2857142857rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-subsidy__subject {
    margin-top: 5.8571428571rem;
  }
}

.p-subsidy__subject-text {
  margin-top: 1.2142857143rem;
}

@media screen and (min-width: 768px) {
  .p-subsidy__subject-text {
    margin-top: 1.2142857143rem;
  }
}

@media screen and (max-width: 767px) {
  .p-subsidy__subject-text {
    font-size: 14px;
  }
}

.p-subsidy__subject__img {
  height: 100%;
  width: 100%;
  margin: 1.6428571429rem auto 0;
}

@media screen and (min-width: 768px) {
  .p-subsidy__subject__img {
    max-width: 52.5714285714rem;
    margin: 3.3571428571rem auto 0;
  }
}

.p-subsidy__subject__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 390/423;
}

@media screen and (min-width: 768px) {
  .p-subsidy__subject__img img {
    aspect-ratio: 736/395;
  }
}

.p-subsidy__subject__img img:nth-child(2) {
  display: block;
  aspect-ratio: 424/395;
  margin-top: 1.5714285714rem;
}

.p-tab__list {
  display: grid;
  margin-top: 3.2142857143rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6428571429rem;
}

@media screen and (min-width: 768px) {
  .p-tab__list {
    margin-top: 2.1428571429rem;
    gap: 0.7142857143rem;
  }
}

.p-tab__list--three {
  grid-template-columns: repeat(3, 1fr);
}

.p-tab__list--three .p-tab__item {
  font-size: 1rem;

}

@media screen and (min-width: 768px) {
  .p-tab__list--three .p-tab__item {
    font-size: 1.4285714286rem;
  }
}

.p-tab__list--three .p-tab__item {
  padding: 0.8571428571rem 0.4285714286rem;
}

@media screen and (min-width: 768px) {
  .p-tab__list--three .p-tab__item {
    padding: 1.6428571429rem;
  }
}

.p-tab__item {
  border-radius: 0.7142857143rem 0.7142857143rem 0 0;
  text-align: center;
  padding: 1.7857142857rem 0.4285714286rem;
  line-height: 1.25;
  position: relative;
  background-color: #E1E1E1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1428571429rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .p-tab__item {
    font-size: 1.4285714286rem;
    padding: 1.6428571429rem;
  }
}

@media (min-width: 1300px) {
  .p-tab__item {
    font-size: clamp(1.429rem, 0.68rem + 0.806vw, 1.786rem);
  }
}

.p-tab__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.5357142857rem;
  border-radius: 0.7142857143rem 0.7142857143rem 0 0;
  background-color: #0C8CE4;
  left: 0;
  top: 0;
  display: none;
}

.p-tab__item.is-active {
  background-color: #F0F3F5;
}

.p-tab__item.is-active::before {
  display: block;
}

.p-panel__item {
  padding: 1.5rem 0.9285714286rem 2.7142857143rem;
  background-color: #E1E1E1;
  display: none;
}

@media screen and (min-width: 768px) {
  .p-panel__item {
    padding: 1.9285714286rem;
  }
}

.p-panel__item.is-active {
  display: block;
  background-color: #F0F3F5;
}

.p-panel__body {
  max-width: 48.9285714286rem;
  margin: 0 auto;
}

.p-panel__list {
  gap: 1.4285714286rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

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

.p-panel__list-item {
  text-align: center;
}

.p-panel__list-link {
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media screen and (min-width: 768px) {
  .p-panel__list-link {
    justify-content: center;
    display: block;
  }
}

.p-panel__list-img {
  aspect-ratio: 292/292;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  max-width: 13rem;
}

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

@media screen and (max-width: 767px) {
  .p-panel__list-img {
    max-width: 11rem;
  }
}

.p-panel__list-img img {
  max-width: 5.5714285714rem;
}

@media screen and (min-width: 768px) {
  .p-panel__list-img img {
    max-width: 8.9285714286rem;
  }
}

.p-panel__list-name {
  font-size: 1.2857142857rem;
  line-height: 1;
  margin-top: 0.7142857143rem;
}

@media (min-width: 1300px) {
  .p-panel__list-name {
    font-size: clamp(1.286rem, 0.687rem + 0.645vw, 1.571rem);
  }
}

@media screen and (max-width: 767px) {
  .p-panel__list-name {
    font-size: 16px;
    text-align: center;
  }

  .p-panel__katashiki p.p-panel__list-company {
    font-size: 14px;
    height: auto !important;
    text-align: center;
  }
}

.p-panel__list-company {
  line-height: 1;
  margin-top: 0.2142857143rem;
}

@media (min-width: 1300px) {
  .p-panel__list-company {
    font-size: clamp(1rem, 0.7rem + 0.323vw, 1.143rem);
  }
}

.p-panel__list__price {
  margin-top: 0.3571428571rem;
  font-size: 1.7142857143rem;
  color: #0C8CE4;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 1300px) {
  .p-panel__list__price {
    font-size: clamp(1.714rem, 0.816rem + 0.968vw, 2.143rem);
  }
}

.p-panel__btn {
  margin-top: 2.3571428571rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-panel__btn {
    margin-top: 2.8571428571rem;
  }
}

.p-thanks {
  padding: 5rem 0;
  background-color: #E6F7FF;
  text-align: center;
}

.p-thanks__title {
  font-size: 1.7857142857rem;
  font-weight: 700;
  line-height: 1.4375;
}

@media screen and (min-width: 768px) {
  .p-thanks__title {
    font-size: 2.2857142857rem;
  }
}

@media (min-width: 1300px) {
  .p-thanks__title {
    font-size: clamp(2.286rem, 1.088rem + 1.29vw, 2.857rem);
  }
}

.p-thanks__text {
  margin-top: 3.5714285714rem;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .p-thanks__text {
    letter-spacing: 0.027em;
    margin-top: 4.2857142857rem;
    font-size: 1.1428571429rem;
  }
}

@media (min-width: 1300px) {
  .p-thanks__text {
    font-size: clamp(1.143rem, 0.544rem + 0.645vw, 1.429rem);
  }
}

.p-thanks__caution {
  padding: 0.8571428571rem 1.5714285714rem;
  border: 1px solid #E60606;
  color: #E60606;
  max-width: 49.2142857143rem;
  margin: 2.2857142857rem auto 0;
  text-align: left;
  line-height: 2;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .p-thanks__caution {
    padding: 1.5rem 4.3571428571rem;
    font-size: 1.1428571429rem;
  }
}

@media (min-width: 1300px) {
  .p-thanks__caution {
    font-size: clamp(1.143rem, 0.544rem + 0.645vw, 1.429rem);
  }
}

.p-thanks__btn-wrap {
  margin-top: 3.7857142857rem;
  text-align: center;
}

.p-thanks__btn {
  font-size: 1rem;
  letter-spacing: 0.027em;
  border-radius: 1.4285714286rem;
  padding: 0.6428571429rem 2.7857142857rem;
  border: 1px solid #707070;
  color: #707070;
  background-color: #fff;
  transition: all 0.3s ease;
}

@media (min-width: 1300px) {
  .p-thanks__btn {
    font-size: clamp(1.143rem, 0.544rem + 0.645vw, 1.429rem);
  }
}

.p-thanks__btn:hover {
  background-color: #707070;
  color: #fff;
  border-color: transparent;
}

.p-top-nav__inner {
  padding: 0 10px;
}

.p-top-nav__list {
  display: flex;
  gap: 0 0.8571428571rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 30.4285714286rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-top-nav__list {
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 1.2142857143rem;
  }
}

.p-top-nav__link {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 125/125;
  background-color: #F0F3F5;
  transition: all 0.3s ease;
  color: inherit;
  position: relative;
}

.p-top-nav__link::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.3571428571rem;
  width: 0.6428571429rem;
  height: 0.4285714286rem;
  background: url("../img/ico_arrow-down_black.svg") no-repeat center center/contain;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .p-top-nav__link::before {
    bottom: 0.5714285714rem;
    width: 1rem;
    height: 0.5714285714rem;
  }
}

.p-top-nav__link:hover {
  background-color: #0C8CE4;
  color: #fff;
}

.p-top-nav__link:hover .p-top-nav__img path,
.p-top-nav__link:hover .p-top-nav__img ellipse,
.p-top-nav__link:hover .p-top-nav__img rect,
.p-top-nav__link:hover .p-top-nav__img line,
.p-top-nav__link:hover .p-top-nav__img circle {
  stroke: #fff;
}

.p-top-nav__link:hover::before {
  background-image: url("../img/ico_arrow-down_white.svg");
}

.p-top-nav__item {
  max-width: 7.2857142857rem;
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .p-top-nav__item {
    width: 11.9%;
    max-width: 10.7142857143rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-nav__item {
    margin-bottom: 20px;
  }
}

.p-top-nav__item:not(:nth-child(6)) .p-top-nav__img {
  display: flex;
  align-items: center;
}

.p-top-nav__item:nth-child(1) .p-top-nav__img svg {
  max-height: 1.2857142857rem;
}

@media screen and (min-width: 768px) {
  .p-top-nav__item:nth-child(1) .p-top-nav__img svg {
    max-height: 1.8571428571rem;
  }
}

.p-top-nav__item:nth-child(2) .p-top-nav__img svg {
  max-height: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-top-nav__item:nth-child(2) .p-top-nav__img svg {
    max-height: 2.3571428571rem;
  }
}

.p-top-nav__item:nth-child(3) .p-top-nav__img svg {
  max-height: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-top-nav__item:nth-child(3) .p-top-nav__img svg {
    max-height: 2.3571428571rem;
  }
}

.p-top-nav__item:nth-child(4) .p-top-nav__img svg {
  max-height: 1.7857142857rem;
}

@media screen and (min-width: 768px) {
  .p-top-nav__item:nth-child(4) .p-top-nav__img svg {
    max-height: 2.7857142857rem;
  }
}

.p-top-nav__item:nth-child(6) .p-top-nav__img svg {
  max-height: 1.5714285714rem;
}

@media screen and (min-width: 768px) {
  .p-top-nav__item:nth-child(6) .p-top-nav__img svg {
    max-height: 2.5rem;
  }
}

.p-top-nav__item:nth-child(7) .p-top-nav__img svg {
  max-height: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-top-nav__item:nth-child(7) .p-top-nav__img svg {
    max-height: 2.2857142857rem;
  }
}

.p-top-nav__item:nth-child(4) .p-top-nav__link:hover .p-top-nav__img path:nth-child(1) {
  fill: #fff;
}

.p-top-nav__item:nth-child(5) .p-top-nav__link:hover .p-top-nav__img path {
  fill: #fff;
}

.p-top-nav__item:nth-child(7) .p-top-nav__link:hover .p-top-nav__img circle {
  fill: #fff;
}

.p-top-nav__img {
  height: 2rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-top-nav__img {
    height: 3.1428571429rem;
  }
}

.p-top-nav__img svg {
  height: 100%;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.p-top-nav__title {
  margin-top: 0.2857142857rem;
  font-size: 0.7857142857rem;
  line-height: 1.375;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-top-nav__title {
    font-size: 0.9285714286rem;
    line-height: 1.3846153846;
  }
}

@media (min-width: 1300px) {
  .p-top-nav__title {
    font-size: clamp(0.929rem, 0.479rem + 0.484vw, 1.143rem);
  }
}

.p-top-nav__title span {
  font-size: 0.9285714286rem;
}

@media screen and (min-width: 768px) {
  .p-top-nav__title span {
    font-size: 1rem;
  }
}

@media (min-width: 1300px) {
  .p-top-nav__title span {
    font-size: clamp(1rem, 0.251rem + 0.806vw, 1.357rem);
  }
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

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

/*# sourceMappingURL=style.css.map */