/***********************
***********************
お問い合わせ進捗バー
2025.06.02
***********************
************************/
.form-progress-area {
  position: fixed;
  z-index: 2;
  right: 0;
  bottom: 0;
  background: #ededed;
  border-radius: 4px 0 0 4px;
  padding-block: 10px 14px;
  padding-inline: 24px;
  display: flex;
  gap: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 5px 10px rgba(85, 85, 85, 0.16);
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
}

.form-progress-area.is-visible {
  transform: translateX(0);
}

.form-progress-header {
  position: absolute;
  top: -20px;
  right: 40px;
}

.form-progress-label {
  background: #ff8000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 2px;
  padding: 5px 15px;
  position: relative;
  display: inline-block;
  box-shadow: 0 5px 10px rgba(85, 85, 85, 0.16);
}

.form-progress-label::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 100%;
  margin-top: -1px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #ff8000 transparent transparent transparent;
  display: block;
  width: 0;
}

.form-progress-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 16px;
}

.form-progress-bar {
  width: 150px;
  height: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #223166;
  border-radius: 100vmax;
  background: #fff;
}

.form-progress-bar::-webkit-progress-bar {
  background-color: #fff;
  border-radius: 100vmax;
}

.form-progress-bar::-webkit-progress-value {
  background-color: #223166;
  border-radius: 100vmax;
}

.form-progress-bar::-moz-progress-bar {
  background-color: #223166;
  border-radius: 100vmax;
}

.form-progress-count {
  font-size: 16px;
  color: #223166;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.form-progress-num {
  font-size: 2.5em;
  color: #223166;
  font-weight: 900;
}

.c-form .form-container dt .mark.is-ok {
  background-color: #ff8000;
  transition: 0.3s;
}

@-webkit-keyframes sparkle {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes sparkle {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-progress-num.is-animate-sparkle {
  -webkit-animation: sparkle 0.8s ease-out infinite;
  animation: sparkle 0.8s ease-out infinite;
  color: #ff9900;
  font-weight: bold;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .form-progress-area {
    top: 13.3333333333vw;
    bottom: initial;
    border-radius: 0;
    padding-block: 0 10px;
    padding-inline: 10px;
    gap: 24px;
    width: 100%;
    max-width: 375px;
    justify-content: center;
  }
  .form-progress-header {
    position: absolute;
    top: 95%;
    right: 34px;
  }

  .form-progress-label {
    font-size: 12px;
    padding: 5px 10px;
  }

  .form-progress-label::after {
    right: 26px;
    top: initial;
    bottom: 100%;
    margin-top: -1px;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #ff8000 transparent;
  }

  .form-progress-inner {
    gap: 30px;
    margin-top: 0;
  }

  .form-progress-bar {
    height: 8px;
    margin-top: 10px;
  }

  .form-progress-count {
    font-size: 14px;
  }

  .form-progress-num {
    font-size: 2.5em;
  }
}

/***********************
***********************
イベント詳細レイアウト調整
2025.06.02
***********************
************************/
.s-event .c-page-title {
  display: none;
}
.s-event .event .top-container .title span {
  padding-inline: 16px;
}
/* 開催中 */
.c-remain-container.display-pc {
  display: flex;
}
.c-remain-container.display-sp {
  display: none;
}
.c-remain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  width: min(1080px, 75vw);
  margin-inline: auto;
  border-radius: 5px;
  padding-block: 3px;
  background: rgb(237 237 237 / 50%);
}
.c-remain__label {
  padding-inline: 16px;
  padding-block: 4px;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  background: #ff8000;
  border-radius: 4px;
}
.c-remain__text,
.c-remain__unit {
  font-size: 20px;
  font-weight: 500;
  color: #ff8000;
}
.c-remain__text {
  margin-left: 12px;
}
.c-remain__num {
  font-weight: bold;
  font-size: 48px;
  color: #ff8000;
  margin-inline: 5px;
  position: relative;
  top: -5px;
}
.c-remain.is-end {
  background: rgb(159 159 159);
  padding-block: 8px;
}
.c-remain__end {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
  .c-remain-container.display-pc {
    display: none;
  }
  .c-remain-container.display-sp {
    display: flex;
  }
  .s-event .event .top-container dt {
    padding-inline: 2.4vw;
  }
  .s-event .event {
    padding-top: 0;
  }
  .s-event .event .top-container .title {
    margin-top: 4vw;
  }
  .c-remain {
    margin-top: 4vw;
    width: 89.3333333333vw;
  }
  .c-remain__label {
    font-size: 16px;
  }
  .c-remain__text,
  .c-remain__unit {
    font-size: 16px;
  }
  .c-remain__text {
    margin-left: 12px;
  }
  .c-remain__num {
    font-size: 42px;
    top: -3px;
  }
  .c-remain__end {
    font-size: 14px;
  }
}

/* 保証ページ */
.sp-cont {
  display: none;
}
.sp-br {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-cont {
    display: none;
  }
  .sp-cont {
    display: block;
  }
  .pc-br {
    display: none;
  }
  .sp-br {
    display: block;
  }
}
.txt-center {
  text-align: center;
}
.sec-cont {
  max-width: 1080px;
  margin: 0 auto;
}
.p-warranty .main-img {
  margin: 40px auto 0 auto;
  text-align: center;
}

.p-warranty .main-img img {
  max-width: 1080px;
  width: 85%;
}

.warranty-sec {
  padding-top: 70px;
}

.p-warranty-sec-head {
  text-align: center;
}
.p-warranty-sec-head img {
  max-width: 250px;
}

.warranty3 .p-warranty-sec-head img {
  max-width: 300px;
}

.warranty1-point-list {
  margin: 45px auto 0 auto;
  max-width: 1290px;
}

.warranty1-point-list ul {
  display: flex;
  justify-content: space-between;
}

.warranty1-point-list li {
  width: 29%;
  display: flex;
  flex-direction: column;
}

.warranty1-point-list li .item-head {
  background-color: #333;
  padding: 20px 15px;
  text-align: center;
}

.warranty1-point-list li .item-head img {
  max-width: 30%;
}

.warranty1-point-list li .item-text {
  padding: 25px 35px;
  background-color: #fff2e5;
  flex: 1;
}

.warranty1-point-list li .item-text h3 {
  font-size: 22px;
  color: #ff8331;
  line-height: 36px;
}

.warranty1-point-list li .item-text p {
  margin-top: 13px;
  font-size: 15px;
  letter-spacing: 0.75px;
  line-height: 28px;
}

.warranty1-table {
  margin: 60px auto 0 auto;
  background-color: #fff2e5;
  padding: 100px 0;
}

.warranty1-table-inner {
  max-width: 1290px;
  margin: 0 auto;
}

.warranty1-table-scroll {
  display: none;
}

.warranty1-details {
  margin-top: 0;
  padding: 110px 20px 100px;
}

.warranty1-details-inner {
  max-width: 800px;
  margin: 0 auto;
}

.warranty1-details-list-head {
  margin: 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-weight: bold;
}

.warranty1-details-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 46px;
}

.warranty1-detail-card-head {
  margin: 0;
  border-radius: 999px;
  padding: 6px 20px;
  text-align: center;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #fff;
  background: #333;
}

.warranty1-detail-card p {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.warranty1-detail-note {
  margin-top: 45px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .warranty-sec {
    padding-top: 30px;
  }
  .warranty1-details {
    padding: 70px 5.3333333333vw 60px;
  }

  .warranty1-details-list-head {
    font-size: 40px;
  }

  .warranty1-details-grid {
    margin-top: 45px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .warranty1-detail-card-head {
    font-size: 28px;
    padding: 12px 16px;
  }

  .warranty1-detail-card p,
  .warranty1-detail-note {
    font-size: 24px;
    line-height: 1.7;
  }

  .warranty1-detail-note {
    margin-top: 40px;
  }
}

.warranty1-details-list,
.warranty1-details-list-head,
.warranty1-detail-card p,
.warranty1-detail-note {
  color: #333;
}

.warranty1-details-limit {
  margin-top: 68px;
  border: solid 2px #ff8331;
  border-radius: 12px;
  padding: 50px 40px;
}

.warranty1-details-limit-head {
  margin: 0;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #333;
}

.warranty1-details-limit-main {
  margin-top: 28px;
  text-align: center;
}

.warranty1-details-limit-main img {
  width: min(100%, 490px);
}

.warranty1-details-limit-note {
  margin-top: 28px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #333;
  margin: 20px auto 0 auto;
  max-width: 410px;
}

.warranty1-details-limit-fig {
  margin-top: 64px;
  text-align: center;
}

.warranty1-details-limit-fig img {
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .warranty1-details-limit-fig img {
    width: 100%;
  }
  .warranty1-details-limit {
    margin-top: 60px;
    padding: 0;
  }

  .warranty1-details-limit-head {
    font-size: 25px;
  }

  .warranty1-details-limit-main {
    margin-top: 20px;
  }

  .warranty1-details-limit-note {
    margin: 20px auto 0 auto;
    font-size: 14px;
    max-width: 80%;
    line-height: 1.8;
  }

  .warranty1-details-limit-fig {
    margin-top: 44px;
  }

  .warranty1-details-limit-fig h4 {
    margin-bottom: 16px;
    font-size: 21px;
  }
}

.warranty2-mainimg {
  margin-top: 65px;
}

.warranty2-itemlist {
  margin-top: 100px;
}

.warranty2-itemlist ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.warranty2-item-head {
  margin: 0;
  text-align: center;
}

.warranty2-item-head img {
  max-width: 140px;
}

.warranty2-item-img {
  margin-top: 20px;
}

.warranty2-item-img img {
  width: 100%;
  display: block;
}

.warranty2-item-img-note {
  margin-top: 6px;
  text-align: right;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}

.warranty2-item-title {
  margin: 15px 0 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #333;
}

.warranty2-item-text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.04em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .warranty2-mainimg {
    margin-top: 42px;
  }

  .warranty2-itemlist {
    margin-top: 44px;
  }

  .warranty2-itemlist ul {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .warranty2-item-head img {
    max-width: 200px;
  }

  .warranty2-item-title {
    margin-top: 18px;
    font-size: 34px;
  }

  .warranty2-item-text {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.8;
  }
}

.warranty2-compare {
  margin-top: 86px;
}

.warranty2-compare-head {
  margin: 0;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #333;
}

.warranty2-compare-scroll {
  margin-top: 54px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.warranty2-compare-scroll-hint {
  display: none;
}

.warranty2-compare-table {
  min-width: 965px;
  width: 965px;
  margin: 0 auto;
  position: relative;
  padding-top: 55px;
}

.warranty2-compare-recommend {
  margin: 0;
  position: absolute;
  top: 0;
  left: 390px;
  transform: translateX(-50%);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #333;
}

.warranty2-compare-recommend img {
  width: 190px;
}

.warranty2-compare-grid {
  display: grid;
  grid-template-columns: 280px 225px 230px 230px;
}

.warranty2-compare-cell {
  border: 1px solid #b5b5b5;
  color: #333;
}

.warranty2-compare-cell.head-spacer {
  border: none;
}

.warranty2-compare-cell.head-ours {
  background: #ff8931;
  border-color: #ff8931;
  border-radius: 10px 10px 0 0;
  border-width: 4px;
  border-bottom-width: 0;
  border-style: solid;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.warranty2-compare-cell.head-ours img {
  width: 42px;
}

.warranty2-compare-cell.head-ours span {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
}

.warranty2-compare-cell.head-company {
  min-height: 120px;
  background: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.warranty2-compare-cell.target-list {
  min-height: 370px;
  padding: 30px 20px;
  text-align: center;
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.warranty2-compare-cell.body-ours {
  min-height: 370px;
  padding: 24px 20px 28px;
  text-align: center;
  border-left: 4px solid #ff8931;
  border-right: 4px solid #ff8931;
  border-bottom: 4px solid #ff8931;
}

.warranty2-compare-cell.body-company {
  min-height: 370px;
  padding: 24px 20px 28px;
  text-align: center;
}

.warranty2-compare-cell p + p {
  margin-top: 26px;
}

.warranty2-compare-cell.body-ours p + p,
.warranty2-compare-cell.body-company p + p {
  margin-top: 28px;
  color: #6f6e6e;
  font-weight: 500;
}

.warranty2-compare-cell.body-ours p,
.warranty2-compare-cell.body-company p {
  margin: 0;
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: #333;
}

.warranty2-compare-cell p.lead {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .warranty2-compare {
    margin-top: 56px;
  }

  .warranty2-compare-head {
    font-size: 25px;
  }

  .warranty2-compare-scroll {
    margin-top: 28px;
    padding-bottom: 12px;
    position: relative;
  }

  .warranty2-compare-scroll-hint {
    display: block;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translateX(-50%);
    width: 140px;
    pointer-events: none;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.25s ease;
  }

  .warranty2-compare-scroll-hint.is-hidden {
    opacity: 0;
  }

  .warranty2-compare-scroll-hint img {
    width: 100%;
    display: block;
  }
}

.warranty3-problem .inner {
  max-width: 940px;
  margin: 0 auto;
}

.warranty3-problem {
  margin-top: 30px;
}

.warranty3-problem-bubble {
  margin: 0;
  text-align: center;
}

.warranty3-problem-bubble img {
  width: min(100%, 360px);
}

.warranty3-problem-lead {
  margin-top: 34px;
  text-align: center;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #333;
}

.warranty3-problem-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.warranty3-problem-list h4 {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: #333;
}

.warranty3-problem-list h4 span {
  font-size: 26px;
}

.warranty3-problem-img {
  margin-top: 16px;
  text-align: center;
}

.warranty3-problem-img img {
  width: min(100%, 220px);
}

@media screen and (max-width: 767px) {
  .warranty3-problem {
    margin-top: 42px;
  }

  .warranty3-problem-bubble img {
    width: min(100%, 300px);
  }

  .warranty3-problem-lead {
    margin-top: 26px;
    font-size: 20px;
    line-height: 1.6;
  }

  .warranty3-problem-list {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.warranty3-solution-5support {
  max-width: 1290px;
  margin: 0 auto;
}

.warranty3-solution {
  margin-top: 56px;
  padding: 70px 20px 90px;
  position: relative;
}

.warranty3-solution > h3 {
  margin: 0;
  text-align: center;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: bold;
}

.warranty3-solution-line {
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}

.warranty3-solution-line img {
  width: 100%;
  display: block;
}

.warranty3-solution-5support {
  margin-top: 70px;
}

.warranty3-solution-5support-head {
  margin: 0;
  text-align: center;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #3798e2;
  font-weight: bold;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.warranty3-solution-5support-head::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 104%;
  height: 16px;
  background: #fefd01;
  z-index: -1;
}

.warranty3-solution-5support-lead {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #333;
}

.warranty3-solution-5support-list {
  margin-top: 148px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 85px;
}

.warranty3-solution-5support-list li {
  grid-column: span 2;
  position: relative;
  display: flex;
  flex-direction: column;
}

.warranty3-solution-5support-list li:nth-child(4) {
  grid-column: 2 / span 2;
}

.warranty3-solution-5support-list li:nth-child(5) {
  grid-column: 4 / span 2;
}

.support-item-head {
  margin: 0;
  text-align: left;
  position: absolute;
  left: -9px;
  top: -37px;
}

.support-item-head img {
  width: 100%;
  max-width: 170px;
}

.support-item-card {
  margin-top: 0;
  min-height: 300px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
  padding: 34px 16px 22px;
  text-align: center;
  flex: 1;
  display: grid;
  grid-template-rows: 92px 58px 1fr;
  align-items: start;
}

.support-item-img {
  height: 92px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.support-item-img img {
  width: auto;
  max-width: 110px;
}

.support-item-img.img3 img {
  max-width: 60px;
}

.support-item-title {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #3798e2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

.support-item-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .warranty3-solution {
    margin-top: 40px;
    padding: 52px 5.3333333333vw 64px;
  }

  .warranty3-solution-line {
    margin-top: 28px;
  }

  .warranty3-solution > h3 {
    font-size: 32px;
  }

  .warranty3-solution-5support {
    margin-top: 44px;
  }

  .warranty3-solution-5support-head {
    font-size: 28px;
  }

  .warranty3-solution-5support-head::before {
    bottom: 6px;
    height: 10px;
  }

  .warranty3-solution-5support-lead {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.8;
  }

  .warranty3-solution-5support-list {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .warranty3-solution-5support-list li,
  .warranty3-solution-5support-list li:nth-child(4),
  .warranty3-solution-5support-list li:nth-child(5) {
    grid-column: auto;
  }

  .support-item-head img {
    max-width: 180px;
  }

  .support-item-card {
    min-height: 220px;
    padding: 28px 14px 20px;
    grid-template-rows: 84px 52px 1fr;
  }

  .support-item-img {
    height: 84px;
  }

  .support-item-img img {
    max-width: 100px;
  }

  .support-item-title {
    min-height: 52px;
  }
}

.warranty3-solution {
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.warranty3-solution-facility {
  max-width: 1080px;
  margin: 0 auto;
}

.warranty3-solution-facility {
  margin-top: 82px;
}

.facility-head {
  margin: 0;
  text-align: center;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.facility-head::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  width: 102%;
  height: 13px;
  background: #ffdc64;
  z-index: -1;
}

.facility-category-wrap {
  margin-top: 38px;
  display: grid;
  gap: 28px;
  justify-content: start;
}

.facility-category {
  display: flex;
  align-items: center;
  gap: 26px;
}

.facility-category-name {
  width: 50px;
  min-height: 158px;
  border-radius: 26px;
  background: #3d9be5;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.facility-category-name .tcy {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  vertical-align: middle;
}

.facility-items {
  display: grid;
  gap: 10px 18px;
  justify-content: start;
}

.facility-items.items-4 {
  grid-template-columns: repeat(4, 165px);
}

.facility-items.items-3 {
  grid-template-columns: repeat(3, 165px);
}

.facility-items.items-2 {
  grid-template-columns: repeat(2, 165px);
}

.facility-items.items-1 {
  grid-template-columns: 165px;
}

.facility-items li {
  display: grid;
  grid-template-rows: 118px 60px;
  justify-items: center;
  align-items: end;
}

.facility-item-icon {
  width: 100%;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-item-icon img {
  max-width: 132px;
  max-height: 105px;
  width: auto;
  height: auto;
}

.facility-item-name {
  margin: 0;
  min-height: 60px;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #333;
}

.facility-bottom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.facility-bottom-grid .facility-category {
  gap: 0;
  width: 220px;
}

.facility-bottom-grid .facility-category-name {
  min-height: 200px;
}

.facility-note {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #333;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .warranty3-solution-facility {
    margin-top: 56px;
  }

  .facility-head {
    font-size: 34px;
  }

  .facility-head::before {
    bottom: 5px;
    height: 10px;
  }

  .facility-category-wrap {
    margin-top: 28px;
    gap: 18px;
  }

  .facility-category {
    gap: 12px;
  }

  .facility-category-name {
    width: 38px;
    min-height: 126px;
    border-radius: 20px;
    font-size: 14px;
  }

  .facility-items.items-4,
  .facility-items.items-3,
  .facility-items.items-2 {
    grid-template-columns: repeat(2, 132px);
    gap: 10px 14px;
  }

  .facility-items.items-1 {
    grid-template-columns: 132px;
  }

  .facility-items li {
    grid-template-rows: 88px 52px;
  }

  .facility-item-icon {
    height: 88px;
  }

  .facility-item-icon img {
    max-width: 94px;
    max-height: 74px;
  }

  .facility-item-name {
    min-height: 52px;
    font-size: 13px;
    line-height: 1.4;
  }

  .facility-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .facility-bottom-grid .facility-category {
    gap: 10px;
    width: auto;
  }

  .facility-bottom-grid .facility-category-name {
    min-height: 140px;
  }

  .facility-note {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 767px) {
  .p-warranty .main-img {
    margin-top: 24px;
  }

  .p-warranty .main-img img {
    width: 100%;
    max-width: none;
    min-height: 270px;
    object-fit: cover;
  }

  .warranty1 {
    padding-top: 58px;
  }

  .warranty1 .p-warranty-sec-head img {
    max-width: 190px;
  }

  .warranty2 .p-warranty-sec-head img {
    max-width: 190px;
  }

  .warranty1-point-list {
    margin-top: 30px;
    padding: 0 5.33vw;
  }

  .warranty1-point-list ul {
    display: block;
  }

  .warranty1-point-list li {
    width: 100%;
    margin-top: 35px;
    box-shadow: 0 4px 14px rgb(0 0 0 / 12%);
  }

  .warranty1-point-list li:first-child {
    margin-top: 0;
  }

  .warranty1-point-list li .item-head {
    padding: 14px 10px 16px;
  }

  .warranty1-point-list li .item-head img {
    max-width: 90px;
  }

  .warranty1-point-list li .item-img img {
    width: 100%;
    display: block;
  }

  .warranty1-point-list li .item-text {
    padding: 22px 18px 40px;
    background: #fff3e7;
  }

  .warranty1-point-list li .item-text h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .warranty1-point-list li .item-text p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .warranty1-table {
    position: relative;
    padding: 36px 0;
    overflow: hidden;
  }

  .warranty1-table-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 5.3333333333vw;
  }

  .warranty1-table-inner img {
    width: 900px;
    max-width: none;
    display: block;
  }

  .warranty1-table-scroll {
    display: block;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    pointer-events: none;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.25s ease;
  }

  .warranty1-table-scroll.is-hidden {
    opacity: 0;
  }

  .warranty1-table-scroll img {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .warranty1-details {
    padding: 50px 5.3333333333vw 56px;
  }

  .warranty1-details-list-head {
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 0.03em;
  }

  .warranty1-details-grid {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .warranty1-detail-card:nth-child(2) {
    order: 3;
  }

  .warranty1-detail-card:nth-child(3) {
    order: 2;
  }

  .warranty1-detail-card-head {
    font-size: 20px;
    padding: 8px 14px;
    line-height: 1.35;
  }

  .warranty1-detail-card p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.02em;
  }

  .warranty1-detail-note {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.02em;
  }
}

@media screen and (max-width: 767px) {
  .warranty2-mainimg {
    margin-top: 40px;
  }

  .warranty2-mainimg .sec-cont {
    padding: 0 5.3333333333vw;
  }

  .warranty2-mainimg img {
    width: 100%;
    transform: scale(1.1);
  }

  .warranty2-itemlist {
    margin-top: 34px;
  }

  .warranty2-itemlist .sec-cont {
    padding: 0 5.3333333333vw;
  }

  .warranty2-itemlist ul {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .warranty2-itemlist li {
    padding-bottom: 2px;
  }

  .warranty2-item-head img {
    max-width: 120px;
  }

  .warranty2-item-img {
    margin-top: 14px;
  }

  .warranty2-item-img-note {
    margin-top: 4px;
    font-size: 12px;
    color: #777;
  }

  .warranty2-item-title {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: #333;
  }

  .warranty2-item-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #333;
  }
}

@media screen and (max-width: 767px) {
  .warranty3 {
    padding-top: 56px;
  }

  .warranty3 .p-warranty-sec-head img {
    max-width: 210px;
  }

  .warranty3-problem {
    margin-top: 20px;
  }

  .warranty3-problem .inner {
    max-width: 320px;
    margin: 0 auto;
  }

  .warranty3-problem-bubble img {
    width: 250px;
  }

  .warranty3-problem-lead {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0.02em;
  }

  .warranty3-problem-list {
    margin-top: 60px;
    gap: 60px;
  }

  .warranty3-problem-list li {
    text-align: center;
  }

  .warranty3-problem-list h4 {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 700;
  }

  .warranty3-problem-img {
    margin-top: 12px;
  }

  .warranty3-problem-img img {
    width: 182px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .warranty3-solution {
    padding: 42px 4.2666666667vw 54px;
  }

  .warranty3-solution-line {
    margin-top: 18px;
  }

  .warranty3-solution-5support {
    margin-top: 28px;
    max-width: 360px;
  }

  .warranty3-solution-5support-head {
    font-size: 22px;
    line-height: 1.35;
  }

  .warranty3-solution-5support-head::before {
    bottom: 4px;
    height: 9px;
    width: 108%;
  }

  .warranty3-solution-5support-lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .warranty3-solution-5support-list {
    margin-top: 24px;
    gap: 24px;
  }

  .warranty3-solution-5support-list li {
    position: relative;
    padding-top: 0;
  }

  .support-item-head {
    position: static;
    text-align: left;
    margin: 0;
  }

  .support-item-head img {
    max-width: 170px;
  }

  .support-item-card {
    margin-top: 0;
    min-height: auto;
    padding: 24px 14px 18px;
    grid-template-rows: 88px 52px auto;
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
  }

  .support-item-img {
    height: 88px;
  }

  .support-item-img img {
    max-width: 92px;
  }

  .support-item-title {
    min-height: 52px;
    font-size: 17px;
    line-height: 1.35;
  }

  .support-item-text {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0.01em;
  }
}

@media screen and (max-width: 767px) {
  .warranty3-solution-facility {
    margin-top: 42px;
    max-width: 330px;
  }

  .facility-head {
    font-size: 42px;
    line-height: 1.25;
  }

  .facility-head::before {
    bottom: 6px;
    height: 10px;
    width: 104%;
  }

  .facility-category-wrap {
    margin-top: 20px;
    gap: 14px;
  }

  .facility-category {
    gap: 10px;
  }

  .facility-category-name {
    width: 40px;
    min-height: 114px;
    border-radius: 20px;
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .facility-items.items-4,
  .facility-items.items-3,
  .facility-items.items-2 {
    grid-template-columns: repeat(2, 118px);
    gap: 8px 10px;
  }

  .facility-items.items-1 {
    grid-template-columns: 118px;
  }

  .facility-items li {
    grid-template-rows: 74px 50px;
  }

  .facility-item-icon {
    height: 74px;
  }

  .facility-item-icon img {
    max-width: 86px;
    max-height: 70px;
  }

  .facility-item-name {
    min-height: 50px;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.01em;
  }

  .facility-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 8px;
  }

  .facility-bottom-grid .facility-category {
    gap: 8px;
  }

  .facility-bottom-grid .facility-category-name {
    min-height: 128px;
  }

  .facility-note {
    margin-top: 16px;
    font-size: 11px;
    line-height: 1.75;
    letter-spacing: 0.01em;
  }
}

@media screen and (max-width: 480px) {
  .warranty2-compare-scroll {
    padding-left: 5.3vw;
  }
  .warranty2-compare-cell.target-list {
    font-size: 18px;
    min-height: 310px;
  }
  .warranty2-compare-grid {
    grid-template-columns: 200px 180px 190px 190px;
  }
  .warranty2-compare-recommend {
    left: 295px;
    top: 20px;
  }
  .warranty2-compare-cell.head-ours span {
    font-size: 26px;
  }
  .warranty2-compare-cell p.lead {
    font-size: 17px;
  }
  .warranty2-compare-cell.body-ours p,
  .warranty2-compare-cell.body-company p {
    font-size: 15px;
  }
  .warranty2-compare-cell.head-company {
    font-size: 19px;
    min-height: 90px;
  }
  .warranty2-compare-cell.head-ours {
    min-height: 90px;
  }
  .warranty2-compare-cell.body-ours {
    min-height: 300px;
  }
  .warranty2-compare-cell.body-company {
    min-height: 310px;
  }
  .warranty2-compare-recommend img {
    width: 140px;
  }
  .warranty3-solution > h3 {
    font-size: 25px;
  }
  .warranty3-solution {
    margin-top: 90px;
  }
  .support-item-head {
    position: absolute;
    top: -52px;
  }
  .support-item-head img {
    max-width: 235px;
  }
  .warranty3-solution-5support-list {
    margin-top: 95px;
    gap: 80px;
  }
  .facility-head {
    font-size: 25px;
  }
  .facility-head::before {
    bottom: 0;
  }
  .facility-category {
    align-items: flex-start;
  }
  .facility-item-icon {
    height: auto;
  }
  .facility-item-icon img {
    max-width: 110px;
    max-height: 70px;
  }
  .facility-items li {
    gap: 10px;
  }
  .facility-note {
    font-size: 15px;
  }
  .warranty2-compare-table {
    min-width: 790px;
    width: 790px;
  }
  .warranty1-details-limit {
    border: none;
  }
}

/* 商品ページ改修 */
.p-price-concept .inner {
  width: 1240px;
  margin: 0 auto;
}

.p-price-detail {
  padding: 44px 0 70px;
}

.p-price-detail .inner {
  width: 1240px;
  margin: 0 auto;
}

.p-price-detail-box {
  border: 2px solid #ff9831;
  border-radius: 10px;
  padding: 60px 0 36px;
}

.p-price-detail-head {
  position: relative;
  text-align: center;
}

.p-price-detail-label {
  margin: 0;
  position: absolute;
  top: -41px;
  left: 40%;
  transform: translateX(-230px);
}

.p-price-detail-label img {
  width: 130px;
}

.p-price-detail-head h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  color: #333;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.p-price-detail-head h2 span {
  color: #ff9831;
}

.p-price-detail-main {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.p-price-detail-main-plan img {
  width: 165px;
}

.p-price-detail-main-price .sub {
  margin: 0 0 2px;
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  color: #333;
}

.p-price-detail-main-price .main {
  margin: 0;
  color: #333;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.p-price-detail-main-price .main span {
  color: #ff9831;
  font-size: 96px;
}

.p-price-detail-main-price .main {
  font-size: 69px;
}

.p-price-detail-list {
  margin: 45px auto 0 auto;
  width: 68%;
}

.p-price-detail-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 48px;
}

.p-price-detail-list li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.p-price-detail-list .icon img {
  width: 90px;
}

.p-price-detail-list .price {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
}

.p-price-detail-list .tax {
  margin: 2px 0 0;
  font-size: 20px;
  line-height: 1.2;
  color: #333;
  font-weight: 700;
}

.p-price-detail-image {
  margin-top: 34px;
  text-align: center;
}

.p-price-detail-image img {
  width: 820px;
  max-width: 100%;
}

.p-price-detail-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
  color: #333;
}

@media screen and (max-width: 767px) {
  .p-price-detail {
    padding: 28px 0 42px;
  }

  .p-price-detail .inner {
    width: auto;
    padding: 0 5.3333333333vw;
  }

  .p-price-detail-box {
    border-width: 1px;
    border-radius: 8px;
    padding: 34px 16px 18px;
  }

  .p-price-detail-label {
    top: -14px;
    transform: translateX(-132px);
  }

  .p-price-detail-label img {
    width: 86px;
  }

  .p-price-detail-head h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .p-price-detail-main {
    margin-top: 18px;
    gap: 14px;
    align-items: flex-start;
  }

  .p-price-detail-main-plan img {
    width: 112px;
  }

  .p-price-detail-main-price .sub {
    font-size: 15px;
  }

  .p-price-detail-main-price .main {
    font-size: 43px;
  }

  .p-price-detail-main-price .main span {
    font-size: 51px;
  }

  .p-price-detail-list {
    margin-top: 20px;
  }

  .p-price-detail-list ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p-price-detail-list li {
    gap: 10px;
  }

  .p-price-detail-list .icon img {
    width: 58px;
  }

  .p-price-detail-list .price {
    font-size: 24px;
  }

  .p-price-detail-list .tax {
    margin-top: 1px;
    font-size: 18px;
  }

  .p-price-detail-image {
    margin-top: 20px;
  }

  .p-price-detail-note {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.6;
  }
}

.p-price-concept {
  padding: 74px 0 60px;
}

.p-price-concept-head {
  margin: 0;
  text-align: center;
}

.p-price-concept-head img {
  width: 220px;
}

.p-price-concept-list {
  margin-top: 44px;
}

.p-price-concept-list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.p-price-concept-list li {
  color: #333;
}

.p-price-concept-item-img {
  width: 260px;
  margin: 0 auto;
}

.p-price-concept-item-img img {
  width: 100%;
  display: block;
  border-radius: 50%;
}

.p-price-concept-list h3 {
  margin: 26px 0 0;
  text-align: center;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0.04em;
  color: #ff9831;
  font-weight: 500;
}

.p-price-concept-list p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .p-price-concept {
    padding: 54px 0 36px;
  }

  .p-price-concept .inner {
    width: auto;
    padding: 0 5.3333333333vw;
  }

  .p-price-concept-head img {
    width: 190px;
  }

  .p-price-concept-list {
    margin-top: 34px;
  }

  .p-price-concept-list ul {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .p-price-concept-item-img {
    width: 220px;
  }

  .p-price-concept-list h3 {
    margin-top: 18px;
    font-size: 34px;
    line-height: 1.4;
  }

  .p-price-concept-list p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
  }
}

.p-price-detail .inner {
  max-width: 1080px;
  margin: 0 auto;
}

.p-price-cost-performance {
  padding: 100px 0 70px;
}

.p-price-cost-performance .inner {
  margin: 0 auto;
  max-width: 990px;
}

.p-price-cost-performance-head {
  margin: 0;
  text-align: center;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #333;
}

.p-price-cost-performance-head span {
  color: #ff9831;
}

.p-price-cost-performance-list {
  margin-top: 40px;
}

.p-price-cost-performance-list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.p-price-cost-performance-list li {
  min-height: 398px;
  padding: 60px 26px 24px;
  text-align: center;
  background: url("../img/p-price-cospa-item-bg.png") no-repeat center top /
    100% 100%;
  display: grid;
  grid-template-rows: 56px 152px 112px 1fr;
  align-items: start;
}

.p-price-cost-performance-list .point-head {
  margin: 0;
}

.p-price-cost-performance-list .point-head img {
  width: 140px;
}

.p-price-cost-performance-list .item-img {
  margin-top: 22px;
  height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.p-price-cost-performance-list .item-img img {
  width: auto;
  max-width: 128px;
}

.p-price-cost-performance-list .item-img.img1 img {
  max-width: 125px;
}

.p-price-cost-performance-list .item-img.img2 img {
  max-width: 112px;
}

.p-price-cost-performance-list .item-img.img3 img {
  max-width: 182px;
}

.p-price-cost-performance-list h4 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #523d28;
  font-weight: 500;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-price-cost-performance-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #523d28;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-price-cost-performance {
    padding: 34px 0 44px;
  }

  .p-price-cost-performance .inner {
    width: auto;
    padding: 0 5.3333333333vw;
  }

  .p-price-cost-performance-head {
    font-size: 36px;
    line-height: 1.3;
  }

  .p-price-cost-performance-list {
    margin-top: 24px;
  }

  .p-price-cost-performance-list ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .p-price-cost-performance-list li {
    min-height: 332px;
    padding: 18px 18px 16px;
    background-size: 100% 100%;
    grid-template-rows: 50px 124px 92px 1fr;
  }

  .p-price-cost-performance-list .point-head img {
    width: 120px;
  }

  .p-price-cost-performance-list .item-img {
    margin-top: 14px;
    height: 102px;
  }

  .p-price-cost-performance-list .item-img img {
    width: auto;
    max-width: 96px;
  }

  .p-price-cost-performance-list .item-img.img1 img {
    max-width: 96px;
  }

  .p-price-cost-performance-list .item-img.img2 img {
    max-width: 84px;
  }

  .p-price-cost-performance-list .item-img.img3 img {
    max-width: 132px;
  }

  .p-price-cost-performance-list h4 {
    margin-top: 6px;
    font-size: 20px;
    min-height: 92px;
  }

  .p-price-cost-performance-list p {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.75;
  }
}

@media screen and (max-width: 767px) {
  .p-price-concept {
    padding: 74px 0 22px;
  }

  .p-price-concept .inner {
    padding: 0 4.2666666667vw;
  }

  .p-price-concept-head img {
    width: 170px;
  }

  .p-price-concept-list {
    margin-top: 52px;
  }

  .p-price-concept-list ul {
    gap: 46px;
  }

  .p-price-concept-item-img {
    width: 84.8vw;
    max-width: 318px;
  }

  .p-price-concept-list h3 {
    margin-top: 24px;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    font-weight: 500;
    color: #ff9831;
  }

  .p-price-concept-list p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: 0.01em;
    color: #333;
  }
}

@media screen and (max-width: 767px) {
  .p-price-detail {
    padding: 22px 0 38px;
  }

  .p-price-detail .inner {
    padding: 0 4.8vw;
  }

  .p-price-detail-box {
    border: 2px solid #ff9831;
    border-radius: 16px;
    padding: 22px 14px 18px;
  }

  .p-price-detail-head {
    text-align: left;
    padding-left: 8px;
  }

  .p-price-detail-label {
    position: static;
    transform: none;
    margin: 0 0 2px;
  }

  .p-price-detail-label img {
    width: 88px;
  }

  .p-price-detail-head h2 {
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .p-price-detail-main {
    margin-top: 12px;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
  }

  .p-price-detail-main-plan img {
    width: 104px;
  }

  .p-price-detail-main-price {
    flex: 1;
  }

  .p-price-detail-main-price .sub {
    margin-bottom: 2px;
    text-align: right;
    font-size: 12px;
    line-height: 1.2;
  }

  .p-price-detail-main-price .main {
    font-size: 56px;
    line-height: 0.98;
    white-space: nowrap;
  }

  .p-price-detail-main-price .main span {
    font-size: 76px;
  }

  .p-price-detail-list {
    margin-top: 16px;
    width: 100%;
  }

  .p-price-detail-list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .p-price-detail-list li {
    display: block;
  }

  .p-price-detail-list .icon {
    margin-bottom: 6px;
  }

  .p-price-detail-list .icon img {
    width: 110px;
  }

  .p-price-detail-list .price {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0.01em;
  }

  .p-price-detail-list .tax {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.2;
  }

  .p-price-detail-image {
    margin-top: 16px;
  }

  .p-price-detail-image img {
    width: 100%;
    max-width: 320px;
  }

  .p-price-detail-note {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
  }
}

@media screen and (max-width: 480px) {
  .p-price-concept-head img {
    width: 140px;
  }
  .p-price-concept-item-img {
    width: 70vw;
  }
  .p-price-concept-list h3 {
    font-size: 20px;
    font-weight: 500;
  }
  .p-price-concept-list p {
    font-size: 15px;
  }
  .p-price-detail-head h2 {
    font-size: 22px;
  }
  .p-price-detail-label {
    position: absolute;
    left: -5px;
    top: -31px;
  }
  .p-price-detail-box {
    padding: 43px 15px 30px 15px;
  }
  .p-price-detail-main-price .sub {
    font-size: 10px;
  }
  .p-price-detail-main-price .main span {
    font-size: 50px;
  }
  .p-price-detail-main-price .main {
    font-size: 36px;
  }
  .p-price-detail-list .price {
    font-size: 20px;
  }
  .p-price-detail-list .price span {
    font-size: 14px;
  }
  .p-price-detail-list ul {
    gap: 22px 10px;
  }
  .p-price-detail-image {
    margin: 35px auto 0 auto;
    width: 70%;
  }
  .p-price-detail-note {
    font-size: 14px;
  }
  .p-price-cost-performance-head {
    font-size: 25px;
  }
  .p-price-cost-performance-list li {
    padding: 40px 18px 35px 18px;
  }
  .c-price01 .list-container {
    width: 92vw;
    margin: 0 auto;
  }
  .c-facility .list-container .item:nth-of-type(-n + 15) {
    width: 44vw;
  }
  .c-facility .list-container .item:nth-of-type(-n + 16) {
    width: 44vw;
  }
}

.p-price {
  padding-bottom: 0;
}

.c-facility .inner .title span {
  border-bottom: solid 5px #ffdc64;
}

@media (768px <= width) {
  .p-price .c-price01 .point-container .text > span:nth-of-type(2) {
    font-size: min(54px, 4.708333vw);
    line-height: 1.1358974359;
  }
  .p-price .c-price01 .point-container {
    width: min(710px, 48.527778vw);
  }
}

@media screen and (max-width: 767px) {
  .p-price .c-price01 .point-container .text > span:nth-of-type(2) {
    font-size: min(50px, 10.708333vw);
  }
  .c-price01 .point-container .text {
    row-gap: 0;
    line-height: 1.2545454545;
  }
}
