@charset "UTF-8";

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  --min-size: 53;
  --max-size: 146;
  --min-viewport: 375;
  --max-viewport: 1440; 
  --slope:calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  --fluid-size:calc(var(--slope) * 100vw + var(--intercept) * .1rem);
  --clamp-size: clamp(var(--min-size) * .1rem, var(--fluid-size), var(--max-size) * .1rem);
}
body {
  line-height: 1.7;
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  letter-spacing: 0.05em;
}
img {
  vertical-align: bottom;
}
figure {
  margin: 0;
}
iframe {
  width: 100%;
}
table {
  border-spacing: 0;
}
button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a,input,textarea {
  transition: all .3s ease-in-out;
}
.w-container {
  width: min(92%, 500px);
  margin-inline: auto;
}

  .pc-br {
    display: none; 
  }
@media (width >= 501px) {  
  .pc-br {
    display: block; 
  }
}

/* --- メインビジュアル (FV) --- */
.p-fv {
  padding-top: 6rem; 
}

.p-fv__img {
  margin-inline: auto;
}

.p-fv__img img {
    display: block; 
    width: 100%;
    height: auto;
}
@media (width >= 501px) {
  .p-fv__img img {
    max-width: 50rem;
    margin-inline: auto;
  }
}


 .p-introduction {
  padding-top: 8rem;
}

.p-introduction .w-container {
  position: relative;
}

.p-introduction__decoration {
  position: absolute;
  top: -7rem;
  right: 0;
  max-width: 15rem;
  z-index: 1;
}

.p-introduction h2 {
  font-size: 2.6rem;
  line-height: 1.5;
  margin-bottom: 4rem;
  color: #01A0EA;
  font-weight: 700;
}

.p-introduction p {
  font-size: 1.8rem;
}
.p-introduction p + p {
  margin-top: 2rem;

}

.p-introduction .--blue-bold {
  color: #01A0EA;
  font-weight: bold;
}


.p-introduction p span {
  color: #01A0EA;
  font-weight: bold;
}


/* --- 目次セクション (p-contents-list) --- */

.p-contents-list {
  background-color: #0A4DA4;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 5rem;
  max-width: 50rem;
  margin-inline: auto;
  margin-top: 8rem;
}
.p-contents-list h2 {
  color: #fff;
  font-weight: 700;
  font-size: 2.6rem;
  text-align: center;
}

.p-contents-list h2::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.1rem;
  background-color: #fff;
  margin: 1rem auto 0;
}

.p-contents-list ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
  margin-top: 4rem;
}
.p-contents-list li {
  background-color: #fff;
  border-radius: 0.4rem;
}
.p-contents-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  padding: 0.8rem 1rem;
}
.p-contents-list__item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.p-contents-list .p-contents-list__number {
  color: #0A4DA4;
  font-size: 1.8rem;
  font-weight: bold;
  flex-shrink: 0;
}
.p-contents-list .p-contents-list__text {
  font-weight: bold;
  font-size: 1.3rem;
@media (width >= 501px) {
  font-size: 1.5rem;
}
}

.p-contents-list__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  background-color: #0A4DA4;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.p-contents-list__arrow::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-left: 0.15rem solid #fff;
  border-bottom: 0.15rem solid #fff;
  transform: translateY(-0.3rem) rotate(-45deg); 
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.25rem;
}

.p-contents-list__arrow::before {
  content: "";
  display: block;
  width: 0.15rem;
  height: 0.6rem;
  background-color: #fff;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}

/* ポイントブロック */
.p-point-section {
  background-color: #0A4DA4;
  max-width: 50rem;
  margin-inline: auto;
  padding-bottom: 4rem;
}
.p-point-section--last {
  padding-bottom: 6rem;
}
.p-point-block__inner {
  background-color: #FFFFFF;
  border-radius: 0.8rem; 
  padding: 2rem;
  text-align: center;
}
.p-point-block__point-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0A4DA4;
  padding-bottom: 0.5rem;
  border-bottom: 0.2rem solid #0A4DA4;
}
.p-point-block h2 {
  font-size: 2.2rem;
  margin-top: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.p-point-block__detail-card {
  background-color: #F8F8F8;
  border-radius: 0.4rem;
  padding: 2rem;
  margin-top: 2rem;
}
.p-point-block__detail-card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0A4DA4;
  margin-bottom: 2rem;
  @media (width >= 501px) {
  font-size: 2rem;
}
}

.p-point-block__columns {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.p-point-block__column-item {
  flex: 1;
  display: flex;
  flex-direction: column; 
}

.p-point-block__column-item img {
  max-width: 8rem; 
  height: auto;
  display: block;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.p-point-block__column-item h4 {
  font-size: 1.6rem;
  font-weight: bold;
    @media (width >= 501px) {
  font-size: 1.8rem;
}
}
.p-point-block__column-item p {
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: left;
      @media (width >= 501px) {
  font-size: 1.4rem;
}
}
.p-point-block__column-item p + p {
  margin-top: 2rem;
}
.p-point-block__plus-button {
  width: 1.8rem;
  height: 1.8rem;
  background-color: #333333;
  border-radius: 50%;
  flex-shrink: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7.5rem;
  position: relative; 
}

.p-point-block__plus-button::before,
.p-point-block__plus-button::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 0.2rem;
  height: 1rem;
  border-radius: 0.1rem;
}

.p-point-block__plus-button::before {
  transform: rotate(90deg);
}

/* ポイント02  */

.p-point-block h2 {
  font-size: 2.2rem;
  margin-top: 1.6rem;
  font-weight: bold;
}
.p-point-block__image {
  margin-top: 3rem; 
}
.p-point-block__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-point-block #point02 h3,
.p-point-block #point03  h3,
.p-point-block #point05 h3{
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 4rem;
  padding-left: 1rem;
  color: #0A4DA4;;
  text-align: left;
  border-left: 0.5rem solid #0A4DA4;
  padding-bottom: .5rem;
  background: linear-gradient(to right, #C4C4C4 0.3rem, transparent 0) repeat-x bottom;
  background-size: 0.9rem 0.1rem;
     @media (width >= 501px) {
      font-size: 2rem;
     }
}
.p-point-block__failure-list {
  margin-top: 3rem;
  padding-left: 0;
  list-style: none;
}

.p-point-block__failure-list li {
  font-size: 1.2rem; 
  position: relative;
  padding-left: 2.5rem;
  margin-top: 1.5rem;
  text-align:left;
    @media (width >= 501px) {
      font-size: 1.4rem;
     }
}

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

.p-point-block__failure-list li::before {
  content: "";
  position: absolute;
  top: 10%; 
  left: 0.5rem;  
  width: 1rem;
  height: 1rem;
  background-color: #0A4DA4;
  border-radius: 50%;

}
.c-list-item-text {
color: #FF7200;
}

/* ポイント03 */
.p-point-block h2 {
  font-size: 2.2rem;
  margin-top: 1.6rem;
  font-weight: bold;
  text-align: center;
}

/* --- 工法編 --- */
.p-point-block__subtitle-tag {
  display: block;
  width: 100%;
  text-align: center; 
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #0A4DA4;
  border-radius: 1.6rem;
  margin-top: 4rem;
}
.p-point-block__kouchou-image {
  margin-top: 3rem;
}
.p-point-block__kouchou-image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-point-block__kouchou-columns {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.p-point-block__kouchou-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-point-block__kouchou-column p:first-child {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0A4DA4;
  margin-bottom: 1rem;
  @media (width >= 501px) {
      font-size: 1.5rem;
     }
}
.p-point-block__kouchou-column img {
  width: 100%;
  height: auto;
  display: block;
}

.p-point-block__kouchou-feature {
  background-color: rgba(1, 160, 234, 0.11);
  padding: 2rem 0;
  margin-top: 2rem;
  text-align: center;
}
.p-point-block__kouchou-feature p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #01A0EA;
  display: inline-block;
  position: relative;
    @media (width >= 501px) {
      font-size: 1.6rem;
     }
}

.p-point-block__kouchou-feature p:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 0.2rem;
  background-color: #01A0EA;
}

.p-point-block__kouchou-feature .--unit-bath-tag {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #FF7200;
  max-width: 2.9rem; 
  padding: 0.2rem 1rem;
  margin: 1rem 0.5rem 0;
    @media (width >= 501px) {
      font-size: 2.2rem;
     }
}
.p-point-block__kouchou-feature .--unit-bath-tag {
    max-width: none;
    width: auto;
}

.p-point-block__kouchou-feature .--shuryu {
  font-size: 1.8rem; 
  font-weight: bold;
  color: inherit; 
  color: #333;
  display: block; 
  text-align: center;
  margin-top: 1rem;
  @media (width >= 501px) {
      font-size: 2rem;
     }
}


/* --- 価格編 --- */

.p-point-block__price-tag {
  display: block;
  width: 100%;
  text-align: center; 
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #0A4DA4;
  border-radius: 1.6rem;
  margin-top: 4rem;
}
.p-point-block__price-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0A4DA4;
  margin-top: 4rem;
  padding-left: 1rem;
  border-left: 0.5rem solid #0A4DA4;
}

.p-point-block__price-graph {
  margin-top: 3rem;
}
.p-point-block__price-graph img {
  width: 100%;
  height: auto;
  display: block;
}

.p-point-block__price-text {
  font-size: 1.4rem;
  margin-top: 2rem;
  text-align: left;
   @media (width >= 501px) {
      font-size: 1.6rem;
     }
}

.p-point-block h2 {
  font-size: 2.2rem;
  margin-top: 1.6rem;
  font-weight: bold;
  text-align: center;
}

/* ポイント04  */
.swiper {
  width: 100%;
  height: auto;
  padding-bottom: 5rem;
  margin-top: 4rem;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.swiper-pagination {
  bottom: 1rem !important; 
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: transparent;
  opacity: 1;
  background-color: #747474; 
  margin: 0 0.5rem !important;
}

.swiper-pagination-bullet-active {
  background-color: #01A0EA; 
  border-color: #01A0EA;
}

/* ポイント05  */

.p-point-block h2 {
  font-size: 2.2rem;
  margin-top: 1.6rem;
  font-weight: bold;
  text-align: center;
}


.p-point-block__merit-area {
  margin-top: 3rem;
}

.p-point-block__merit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.p-point-block__merit-item-bg {
    background-color: #F0FAFF;
    padding: 1.5rem 1rem;
}
.p-point-block__merit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-point-block__merit-item-image {
  margin-bottom: 1rem;
}
.p-point-block__merit-item-image img {
  width: 100%;
  max-width: 5.8rem;
  max-height: 5.8rem;
  height: auto;
  display: block;
  margin-inline: auto;
}

.p-point-block__merit-item-text {
  font-size: 1.6rem;
  font-weight: bold;
}

.p-point-block__trigger-image1 {
  margin-top: 4rem;
}
.p-point-block__trigger-image1 img {
  width: 100%;
  height: auto;
  display: block;
}

.p-point-block__trigger-image2 {
  margin-top: 2rem;
}
.p-point-block__trigger-image2 img {
  width: 100%;
  height: auto;
  display: block;
}
.p-point-block__trigger-image3 {
  margin-top: 2rem;
}
.p-point-block__trigger-image3 img {
  width: 100%;
  height: auto;
  display: block;
}
.p-point-block__text-default {
  font-size: 1.4rem;
  margin-top: 3rem;
  text-align: left;
    @media (width >= 501px) {
      font-size: 1.6rem;
     }
}

/* --- case --- */
.p-case-study-section {
  max-width: 50rem;
  margin-inline: auto;
  background-color: #FFFBE0;
  border-top: 1rem solid #FFDE00;
  padding-top: 3rem;
  padding-bottom: 10rem;
}

.p-case-study-section h2 {
  font-weight: 700;
  font-size: 2.4rem; 
  color: #0A4DA4;
  text-align: center;
}

/* --- タブナビゲーション --- */

.p-tab__nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-top: 2rem;
  padding: 0;
  gap: 0.5rem;
}

.p-tab__item {
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
  padding: 1rem 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #F3F3F3;
  color: #747474;
  border-radius: 0.4rem;
  transition: all 0.3s;
  display: flex; 
  flex-direction: column;
  align-items: center;
  @media (width >= 501px) {
      font-size: 1.4rem;
     }

}

.p-tab__item.is-active {
  color: #fff;
  background-color: #0A4DA4;
}

/* --- 矢印アイコン--- */

.p-tab__item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-top: 0.5rem;
}

.p-tab__item-arrow::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-left: 0.15rem solid; 
  border-bottom: 0.15rem solid; 
  transform: translateY(-0.3rem) rotate(-45deg); 
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.25rem;
}

.p-tab__item-arrow::before {
  content: "";
  display: block;
  width: 0.15rem;
  height: 0.6rem;
  background-color: currentColor; 
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.p-tab__item:not(.is-active) .p-tab__item-arrow {
    background-color: #747474;
    color: #fff;
}

.p-tab__item.is-active .p-tab__item-arrow {
    background-color: #fff;
    color: #0A4DA4;
}

/* --- タブコンテンツ --- */

.p-tab__panel {
  display: none;
  padding-top: 1.5rem;
}

.p-tab__panel.is-show {
  display: block;
}


.p-tab__slider-inner {
  background-color: #fff;
  padding: 2rem;
}


.p-tab__slider-group h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #FF7200;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #C4C4C4 0.3rem, transparent 0) repeat-x bottom;
  background-size: 0.9rem 0.1rem; 
    @media (width >= 501px) {
      font-size: 1.8rem;
    }
}

.p-tab__price-group {
  display: block; 
  position: relative;
  margin-top: 2rem;
  max-width: 25rem;
  margin-inline: auto;
  margin-bottom: 2rem;
   @media (width >= 501px) {
       max-width: 28rem;
    }
}

.p-tab__price-box {
  background-color: #F0FAFF;
  border-radius: 0.4rem;
  text-align: center;
  padding: 1rem;
}
.p-tab__note {
  font-size: 1rem;
  color: #AAAAAA;
  text-align: right;
}

.p-tab__price-box p:first-child {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0A4DA4;
    @media (width >= 501px) {
      font-size: 1.8rem;
    }
}

.p-tab__price-box p:last-child {
  font-size: 1.2rem;
    @media (width >= 501px) {
      font-size: 1.4rem;
    }
}
.p-tab__price-box p:only-child {
  font-size: 1.6rem; 
  font-weight: bold;
  color: #0A4DA4;
}
.p-tab__before-after {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.p-tab__ba-item {
  width: 50%;
  position: relative;
}

.p-tab__ba-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
  padding: 0.2rem 2rem;
  color: #fff;
  z-index: 2;
}

.p-tab__ba-tag--before {
  background-color: #747474;
}

.p-tab__ba-tag--after {
  background-color: #FF7200;
}

.p-tab__ba-item:has(.p-tab__ba-tag--after) img {
  outline: 1px solid #FF7200;
  outline-offset: -1px;
  box-sizing: border-box;
}


.p-tab__center-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.6rem;
  height: 2.6rem;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
}

.p-tab__center-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.7rem solid #FF7200;
  border-right: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(0.15rem); 
}
.p-tab__content-body {
  margin-top: 2rem;
}

.p-tab__content-body p {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  text-align: left;
     @media (width >= 501px) {
      font-size: 1.6rem;
    }
}

.p-tab__content-body p:first-child {
  margin-top: 0;
}


.p-tab__detail-list {
  margin-top: 2rem;
  text-align: left;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.5rem 1rem;
}

.p-tab__detail-list dt {
  font-weight: bold;
  color: #fff;
  background-color: #0A4DA4;
  text-align: center;
  font-size: 1.2rem;
  padding-left: .2rem;
  padding-right: .2rem;
  display: flex;
  align-self: start;
  align-items: flex-start;
  justify-content: center;
    @media (width >= 501px) {
      font-size: 1.4rem;
    }
}

.p-tab__detail-list dd {
  margin-left: 0;
  font-size: 1.2rem;
  align-self: start;
      @media (width >= 501px) {
      font-size: 1.4rem;
    }
}

/* --- スライダーナビゲーション --- */
.p-case-study-section .swiper {
  margin-top: 0;
  padding-bottom: 0;
}
.p-case-study-section {
  position: relative;
}
.p-case-study-section .swiper-case-study {
  position: relative;
  overflow: hidden; 
}


.p-case-study-section .swiper-button-prev,
.p-case-study-section .swiper-button-next {
  width: 3rem;
  height: 3rem;
  background-color: #333;
  border-radius: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0 !important;

  z-index: 10;
  pointer-events: auto;
  color: #fff;
}

.p-case-study-section .swiper-button-prev {
  left: 0 !important;
  right: auto !important;
}
.p-case-study-section .swiper-button-next {
  right: 0 !important;
  left: auto !important;
}

.p-case-study-section .swiper-button-prev::after,
.p-case-study-section .swiper-button-next::after {
  content: none !important;
}

.p-case-study-section .swiper-button-prev::before,
.p-case-study-section .swiper-button-next::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.p-case-study-section .swiper-button-next::before {
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 1rem solid #fff;
}

.p-case-study-section .swiper-button-prev::before {
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-right: 1rem solid #fff;
}

.p-case-study-section .swiper-pagination {
  bottom: 6rem !important;
}

.p-commitment-section {
  background-color: #fff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.p-commitment-section h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0A4DA4;
  text-align: center;
  margin-bottom: 0;
}

.p-commitment-section h2::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.2rem;
  background-color: #0A4DA4;
  margin: 1rem auto 0;
}
.p-commitment__catch {
  background-color: #FF7200;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  width: fit-content;
   margin: 4rem auto 0;
}

.p-commitment__catch::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid #FF7200;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.p-commitment-section h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1.5rem;
  text-align: center;
      @media (width >= 501px) {
      font-size: 2rem;
    }
}

.p-commitment-section h3 br {
  display: block;
}

.p-commitment__content-wrapper {
  background-color: #F0FAFF;
  padding: 0 2.5rem 4rem;
  margin-top: 0.3rem; 
}

.p-commitment__title-box {

  margin-left: -2.5rem;
  margin-right: -2.5rem;
  width: calc(100% + 5rem);
  margin-top: 2rem;

  background-color: #01A0EA;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 60%,
    50% 100%,
    0 60% 
  );
}

.p-commitment__title-box p {
  margin: 0;
  line-height: 1.4;
}
.p-commitment__images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem; 
  margin-top: 2rem;
}

.p-commitment__images img {
  width: 100%;
  height: auto;
  display: block;
}

.p-commitment__images img:nth-child(1) {
  max-width: 22rem; 
  margin-inline: auto;
}

.p-commitment__text p {
  font-size: 1.4rem;
  margin-top: 1rem;
       @media (width >= 501px) {
      font-size: 1.6rem;
    }
}

/* --- STEP --- */

.p-flow-section {
  background-color: #0A4DA4;
  max-width: 50rem;
  margin-inline: auto;
  padding: 6rem 0;
}

.p-flow-section h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center; 
  margin-bottom: 0;
}

.p-flow-section h2::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.1rem;
  background-color: #fff;
  margin: 1rem auto 0;
}

.p-flow-section__lead {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 2rem;
}

.p-flow-section__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.p-flow-section__cta a {
  display: block;
  max-width: 25rem; 
}
.p-flow-section__cta img {
  width: 100%;
  height: auto;
}

.p-flow-accordion {
  margin-top: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-flow-step {
  margin-top: 1rem;
  background-color: #fff;
  border-radius: 0.4rem;
  overflow: hidden;
}
.p-flow-step:first-child {
  margin-top: 0;
}
.p-flow-step__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
}

.p-flow-step__details {
  display: grid;
  grid-template-columns: 6rem 1fr 3rem;
  align-items: center;
  gap: .8rem;

}

.p-flow-step__number-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  justify-self: start;
  width: fit-content;

  position: relative;
  padding-right: .6rem;
}
.p-flow-step__number-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0; 
  transform: translateY(-50%);
  
  width: 1px;
  height: 5rem;
  background-color: #F3F3F3;
}

.p-flow-step__number {
  font-size: 1rem;
  font-weight: bold;
  color: #0A4DA4;
  line-height: 1.2;
}


.p-flow-step__icon {
  margin-top: 0.4rem;
  align-self: center;
  width: 2rem;
  height: 2rem;
}

.p-flow-step__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.p-flow-step__title {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
       @media (width >= 501px) {
      font-size: 1.8rem;
    }
}

.p-flow-step__toggle {
  width: 1.5rem;
  height: 1.5rem;
  color: #0A4DA4;
  font-size: 2.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, color 0.2s;
  
  background: none;
  border: none;
  border-radius: 0; 
  line-height: 1;
  padding: 0; 
  cursor: pointer;
}

.p-flow-step.is-open .p-flow-step__toggle {
  transform: none;
}
.p-flow-step.is-open .p-flow-step__toggle::before {
  content: "–";
}

.p-flow-step__toggle::before {
  content: "+";
}

.p-flow-step__content {
  display: none;
  padding-bottom: 2rem;
}

.p-flow-step__content-left {
  background-color: #0A4DA4;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 0.4rem;
  text-align: center;
}

.p-flow-step__content-inner {
  display: flex;
  gap: 2rem; 
  padding: 0 1.5rem;
}

.p-flow-step__content-right {
  flex-grow: 1;
}

.p-flow-step__content-right h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
       @media (width >= 501px) {
      font-size: 1.6rem;
    }
}

.p-flow-step__content-right p {
  font-size: 1.2rem;
  text-align: left;
  margin-top: 1rem;
       @media (width >= 501px) {
      font-size: 1.4rem;
    }
}

.p-flow-step__content-right p:first-child {
  margin-top: 0;
}

.p-flow-step__content-right .p-flow-step__note {
  display: block;
  font-size: 1rem;
  color: #747474;
  margin-top: 0.5rem;
}

.p-flow-step__content-right > div {
  margin-top: 2rem;
}
.p-flow-step__content-right > div:first-child {
  margin-top: 0;
}

/* ヘッダーメニュー */

@media (width >= 501px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (width >= 501px) {
  a:hover {
    opacity: 0.8;
  }
}
.l-inner {
  margin-inline: auto;
  max-width: 50rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (width >= 501px) {
  .l-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.p-header {
  background-color: #fff;
  min-height: 5rem;
  padding: 0.5rem 0;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.p-header__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-header__logo img {
  height: auto;
  max-width: 16rem;
  
}
.p-header__text {
  color: #707070;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-left: 1rem;
  @media (width >= 501px) {
 font-size: 1.2rem;
  }
}

@media (width >= 501px) {
  .p-header__text {
    margin-left: 2.8rem;
  }
}

.p-drawer {
  margin-left: auto;
  pointer-events: auto;
  z-index: 100;
}

.p-drawer__icon {
  height: 5rem;
  position: relative;
  width: 6rem;
  z-index: 300;
}

.p-drawer__icon.is-active .p-drawer__icon-bar1 {
  -webkit-transform: translateY(1.25rem) rotate(-45deg); 
  transform: translateY(1.25rem) rotate(-45deg);
}

.p-drawer__icon.is-active .p-drawer__icon-bar2 {
  opacity: 0;
}

.p-drawer__icon.is-active .p-drawer__icon-bar3 {
  -webkit-transform: translateY(-1.25rem) rotate(45deg); 
  transform: translateY(-1.25rem) rotate(45deg);
}

.p-drawer__icon-bar1,
.p-drawer__icon-bar2,
.p-drawer__icon-bar3 {
  background: #00a0ea;
  border-radius: 0.125rem;
  display: inline-block;
  height: 0.5rem;
  left: 0.5rem;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  width: 4rem;
}
.p-drawer__icon-bar1 {
  position: absolute;
  top: 0;
}
.p-drawer__icon-bar2 {
  opacity: 1;
  position: absolute;
  top: 1.25rem;
}
.p-drawer__icon-bar3 {
  position: absolute;
  top: 2.5rem; /* 30px */
}

.p-drawer__icon-text {
  bottom: -0.2rem;
  color: #00a0ea;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.2rem;
  left: 50%;
  letter-spacing: 0rem;
  line-height: 1.25;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

.p-navigation-drawer__content {
  background-color: #f0faff;
  display: none;
  height: 100vh;
  left: 50%;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 6rem;
  max-width: 50rem;
  width: 100%;
  z-index: -1;
  transform: translateX(-50%); 
}
.p-drawer__nav {
  margin-inline: auto;
  max-width: 65rem;
}
.p-navigation-drawer__list-item {
  padding-left: 2rem;
  padding-right: 2rem; 
}

.p-navigation-drawer__link {
  border-bottom: solid 2px #fff;
  display: block;
  font-size: 2.6rem;
  line-height: 1.25;
  padding-bottom: 2.5rem;
  padding-left: 4.5rem;
  padding-top: 2.5rem;
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.p-navigation-drawer__link::before {
  border: 0;
  border-radius: 0.125rem;
  border-right: solid 6px #00a0ea;
  border-top: solid 6px #00a0ea;
  content: "";
  height: 1.8rem;
  left: 0;
  margin: auto;
  position: absolute;
  top: 4.2rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 1.8rem;
}

/* フローティングCTA */
.l-floating {
  background-color: rgba(0, 0, 0, .6);
  bottom: 0;
  display: none;
  left: 0;
  padding: 1rem;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.l-floating__inner {
  gap: 2rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 65rem;
  place-items: center;
}

.l-floating__link {
  max-width: 28rem; /* 280px */
}

.l-floating__link img {
  height: auto;
}

/* フッター */
.u-mb__125 {
  margin-bottom: .5rem;
}

.l-inner {
  margin-inline: auto;
  max-width: 70rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (width >= 501px) {
  .l-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
footer#Footer {
  height: auto;
  background: none;
}

#Footer .top {
  padding: 3.2rem 0 2.3rem;
}

#Footer .top .logo {
  margin: 0 auto 1rem;
}

#Footer .top .logo img {
  max-width: 16rem;
  margin-inline: auto;
  height: auto;
  display: block;
}

#Footer .top .lead {
  text-align: center;
  font-size: 1.2rem;
}

#Footer .top .lead span.companyname {
  display: none;
}

#Footer .top .lead span.oricon a {
  color: #0a4da4;
  font-size: 1.4rem;
  display: inline-block;
  margin: 1rem 0;
}

#Footer .top .lead span.spFontsize {
  display: block;
  font-size: 1.2rem;
  padding-top: 0.7rem;
}

#Footer .bottom .text {
  margin: 0 auto 2.3rem;
  font-size: 1.2rem;
}

#Footer .bottom .text small {
  display: block;
  padding-top: 0.5rem;
}

#Footer .bottom .text .copyright {
  padding-top: 0.5rem;
}

#Footer .bottom .link {
  overflow: hidden;
  display: flex;
}

#Footer .bottom .link a {

  display: flex; 
  align-items: center; 
  justify-content: center; 
  
  font-size: 1.2rem;
  width: 33%;
  line-height: 1.4;
  padding: 1rem 0;
  text-align: center; 
  
  background-color: #f3f3f3;
  margin-right: 0.2rem;
  @media (width >= 501px) {
    font-size: 1.4rem;
  }
}

#Footer .bottom .link a.spLast {
  margin-right: 0rem;
}

.SPpart {
  display: none;
}

/* CTAエリア上 */
.p-point__question {
  background-color: #f3f3f3;
  border-radius: 2rem; 
  max-width: 50rem;
  margin: 4rem auto 0; 
  padding: 3rem;
  position: relative;
}

.p-point__question::before {
  background-color: #f3f3f3;
  border-radius: 50%;
  content: "";
  height: 3rem; 
  left: 50%;
  position: absolute;
  top: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 3rem;
}

.p-point__question::after {
  background-color: #f3f3f3;
  border-radius: 50%;
  bottom: -4.5rem; 
  content: "";
  height: 1.5rem; 
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.5rem; 
}

.p-point__question-list {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-point__question-list:not(:first-child) {
  margin-top: 2rem; 
}

.p-point__question-list svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 4%;
  flex: 0 0 4%;
}

.p-point__question-list svg path {
  vertical-align: top;
}

.p-point__question-list span {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 95%;
  flex: 0 1 95%;
  line-height: 1.2;
  padding-left: 2rem; 
}

/* CTAエリア */
.p-contact {
margin-top: 5rem;
}
.p-contact__container {
  background-color: #f0faff;
  border-radius: .8rem;
  padding: 4rem 3rem;
  padding: 3rem;
}
.p-contact__message {
  text-align: center;
}
.p-contact__message span {
  color: #ff0000;
  display: block;
  font-size: 1.1em;
  font-weight: bold;
}
.p-contact__button {
  margin-top: 1.8rem;
}
.p-contact__button img {
  margin-inline: auto;
  height: auto;
  max-width: 45rem;
  width: 100%;
}

.p-contact__button-form {
  margin-top: 2rem;
}

.p-contact__button-form img {
  margin-inline: auto;
  height: auto;
  max-width: 45rem;
  width: 100%;
}

/* フッター */

#FooterContact {
	position: relative;
	padding: 75px 0 10px;
	background-color: #f3f3f3;
	margin: 10rem auto 0;
  max-width: 50rem;
  text-align: center;
}

#FooterContact .pct {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -4rem;
	width: 100%;
	text-align: center;
}

#FooterContact .pct img {
	width: 10rem;
	height: auto;
	margin-inline: auto;
}

#FooterContact .title {
	font-size: 2.2rem;
	text-align: center;
	margin-bottom: 10px;
}

#FooterContact .text {
	font-size: 1.4rem;
	margin-bottom: 13px;
}

.fcRed {
	color: #ff0000;
}
#FooterContact .text small {
	display: block;
	font-size: 1rem;
}

#FooterContact .btn ul {
	overflow: hidden;
}

#FooterContact .btn li {
	text-align: center;
	margin-bottom: 15px;
}

#FooterContact .btn li.SPpart {
	display: none;
}

#FooterContact .btn li:last-child a {
	display: block;
	height: auto;
	background: url(../images/common/footer/btn-contacte4bf.png?2024032101);
	background-size: 300px 79px;
	margin: 0 auto;
}

/* ヘッダーメニュー上書き用 */
.p-navigation-drawer__content {
  background-color: #0A4DA4;
}

.p-navigation-drawer__list-item {
  padding-left: 0;
  padding-right: 0;
}

.p-navigation-drawer__link {
  border-bottom: none;
  font-size: 1.3rem;
  padding: 0;
  line-height: normal;
  transition: none;
}

.p-navigation-drawer__link::before {
  content: none;
}
.p-navigation-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 2rem 0;
}

.p-new-contents-list__li {
  background-color: #fff;
  border-radius: 0.4rem;
}

.p-new-contents-list__a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  padding: 0.8rem 1rem;
}

.p-new-contents-list__item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-new-contents-list__number {
  color: #0A4DA4;
  font-size: 1.8rem;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
  padding-right: 1.5rem;
}

.p-new-contents-list__number::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    width: 0.1rem;
    height: 1.8rem; 
    background-color: #F3F3F3;
}

.p-new-contents-list__item-left:not(:has(.p-new-contents-list__number)) .p-new-contents-list__number::after {
    content: none;
}

.p-new-contents-list__text {
  font-weight: bold;
  font-size: 1.3rem;
  @media (width >= 501px) {
      font-size: 1.5rem;
  }
}
.p-new-contents-list__text--no-number {
    margin-left: 1em; 
}

.p-new-contents-list__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  background-color: #0A4DA4;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transform: translateZ(0); 
  -webkit-transform: translateZ(0);
}

.p-new-contents-list__arrow::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.15rem solid #fff;
  border-right: 0.15rem solid #fff;
  transform: rotate(45deg); 
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.3rem;
  margin-left: -0.3rem;
}

.p-new-contents-list__arrow::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.1rem;
  background-color: #fff;
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%) translateX(-0.08rem) translateY(-0.05rem); 
}

/* --- ドロワーメニュー内CTAエリアのスタイル --- */
.p-drawer-cta-area {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-left: 4%;
  padding-right: 4%;
}
.p-drawer-cta-link img {
  display: block;
  width: 100%;
  height: auto;
}

/* ページトップ */
.p-pagetop {
  position: fixed;
  right: 2rem;
  bottom: 9rem;
  z-index: 1001; 
  display: block;
  width: 5rem;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  @media (width >= 501px) {
    bottom: 15rem;
  }
}

.p-pagetop img {
  width: 100%;
  height: auto;
  display: block;
}
.p-pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
}
/* フローティングCTA */
.p-floating-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  gap: 1rem;

  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.6rem 1rem;
   z-index: 1000;
}

.p-floating-banner__link img {
  display: block;
  height: auto;
  width: 100%;
}

.p-floating-banner__link {
  flex: 1;
  max-width: 22rem;
}

@media (max-width: 500px) {
  .p-floating-banner {
    width: 100%;
  }
}

@media (min-width: 501px) {
  .p-floating-banner {
    width: 100%;
    max-width: none;
     padding: .5rem 1rem;
     gap: 2rem;
  }
}
.p-floating-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
body.is-fixed .p-floating-banner,
body.is-fixed .p-pagetop {
  opacity: 0;
  pointer-events: none;
}

/* フェードイン */
.p-point-block {
  opacity: 0;
  transform: translateY(150px); 
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.p-point-block.is-fadein {
  opacity: 1;
  transform: translateY(0);
}