.l-hdr {
  position: fixed;
}

.l-main {
  padding-bottom: 0;
}

.l-main .c-pankuzu {
  z-index: 2;
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  padding-top: 0;
}

.p-area {
  padding: 220px 0 100px;
}
.p-area__title {
  font-size: 36px;
  text-align: center;
}
.p-area__lead {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin-top: 20px;
}
.p-area__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 0;
  margin-top: 70px;
}
.p-area__contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 48%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #de471a;
  background-color: #de471a;
  color: #fff;
  transition:
    background-color 0.4s,
    color 0.4s;
}
.p-area__contents:hover {
  background-color: #fff;
  color: #de471a;
  opacity: 1;
}
.p-area__contents:hover .arrow {
  background-color: #de471a;
}
.p-area__contents:hover .arrow::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.p-area__contents .arrow {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  transition: background-color 0.4s;
}
.p-area__contents .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  aspect-ratio: 1 / 1;
  border-top: 2px solid #de471a;
  border-right: 2px solid #de471a;
  transition: border 0.4s;
}

/* 下層ページ用 */
.p-mv {
  padding: 220px 0 70px;
}
.p-mv__image {
  aspect-ratio: 128 / 25;
}
.p-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mv__contents {
  text-align: center;
  margin-top: 40px;
}
.p-mv__area {
  font-size: 30px;
  font-weight: bold;
}
.p-mv__title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: bold;
  margin: 25px 0 30px;
}
.p-mv__lead {
  font-size: 15px;
}

.p-homeBuilding {
  position: relative;
  padding: 100px 0;
  background-color: #303c5a;
}
.p-homeBuilding::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}
.p-homeBuilding__title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 3;
}
.p-homeBuilding__list {
  position: relative;
  z-index: 3;
  margin-top: 50px;
}
.p-homeBuilding__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-homeBuilding__item:nth-child(n + 2) {
  margin-top: 25px;
}
.p-homeBuilding__image {
  width: 47%;
  height: 290px;
}
.p-homeBuilding__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-homeBuilding__desc {
  width: 50%;
}
.p-homeBuilding__heading {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.p-homeBuilding__text {
  color: #fff;
  margin-top: 15px;
  font-size: 15px;
}

.p-archive {
  padding-top: 100px;
}
.p-archive__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  font-weight: bold;
}
.p-archive__wrap {
  display: flex;
  gap: 3.5%;
  margin-top: 50px;
}
.p-archive__contents {
  width: 31%;
}
.p-archive__contents:hover .p-archive__imag img {
  transform: scale(1.1);
}
.p-archive__image {
  aspect-ratio: 14 / 9;
  overflow: hidden;
}
.p-archive__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.p-archive__text {
  font-size: 15px;
  margin-top: 10px;
}
.p-archive__button {
  text-align: center;
  margin-top: 50px;
}
.p-archive__button .c-btnD {
  width: auto;
}

.p-showroom {
  padding: 100px 0;
}
.p-showroom__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 0;
  max-width: 900px;
  margin: 50px auto 0;
}
.p-showroom__item {
  width: 48%;
}
.p-showroom__image {
  aspect-ratio: 56 / 31;
}
.p-showroom__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-showroom__name {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
}
.p-showroom__address {
  font-size: 14px;
}
.p-showroom__button {
  text-align: center;
  margin-top: 20px;
}

.p-event {
  position: relative;
  padding: 80px 0;
  background-color: #303c5a;
}
.p-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}
.p-event .p-archive__title {
  color: #fff;
}
.p-event .p-archive__text {
  color: #fff;
  line-height: 1.3;
  text-decoration: underline;
}

.p-point {
  padding-top: 100px;
}
.p-point__list {
  margin: 50px auto 0;
  max-width: 800px;
}
.p-point__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-point__item:nth-child(n + 2) {
  margin-top: 30px;
}
.p-point__image {
  width: 32%;
  height: 165px;
}
.p-point__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-point__desc {
  width: 65%;
}
.p-point__title {
  font-weight: bold;
  font-size: 18px;
}
.p-point__text {
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.5;
}

.p-serviceArea {
  padding: 80px 0 100px;
}
.p-serviceArea__text {
  margin-top: 40px;
  text-align: center;
}

.p-column {
  padding-bottom: 80px;
}
.p-column__contents {
  max-width: 750px;
  margin: 50px auto 0;
}
.p-column__link {
  display: table;
  line-height: 1.4;
  text-decoration: underline;
  transition: color 0.4s;
}
.p-column__link:hover {
  color: #de471a;
}
.p-column__link:nth-child(n + 2) {
  margin-top: 20px;
}

@media screen and (max-width: 810px) {
  .l-main .c-pankuzu {
    top: 80px;
    left: 15px;
  }
  .p-mv__image {
    aspect-ratio: 128 / 40;
  }
  .p-mv__area,
  .p-mv__title {
    font-size: 26px;
  }
  .p-homeBuilding__item {
    align-items: flex-start;
  }
  .p-homeBuilding__item:nth-child(n + 2) {
    margin-top: 30px;
  }
  .p-homeBuilding__image {
    height: 32vw;
  }
}

@media screen and (max-width: 650px) {
  .p-area {
    padding: 170px 0 70px;
  }
  .p-area__title {
    font-size: 28px;
  }
  .p-area__lead {
    text-align: left;
  }
  .p-area__wrap {
    margin-top: 40px;
  }
  .p-area__contents {
    width: 100%;
  }

  .p-mv {
    padding: 150px 0 60px;
  }
  .p-mv__area,
  .p-mv__title,
  .p-homeBuilding__title,
  .p-archive__title {
    font-size: 22px;
  }
  .p-mv__title {
    margin: 20px 0;
    text-align: left;
  }
  .p-mv__lead {
    text-align: left;
  }
  .p-homeBuilding {
    padding: 70px 0;
  }
  .p-homeBuilding__list {
    margin-top: 40px;
  }
  .p-homeBuilding__item {
    flex-direction: column;
    gap: 25px;
  }
  .p-homeBuilding__item:nth-child(n + 2) {
    margin-top: 55px;
  }
  .p-homeBuilding__image {
    width: 100%;
    height: 55vw;
  }
  .p-homeBuilding__desc {
    width: 100%;
  }
  .p-archive {
    padding-top: 60px;
  }
  .p-archive__wrap {
    flex-direction: column;
    gap: 50px 0;
    margin-top: 30px;
  }
  .p-archive__contents {
    width: 100%;
  }
  .p-showroom__list {
    flex-direction: column;
    margin-top: 30px;
  }
  .p-showroom {
    padding: 70px 0;
  }
  .p-showroom__item {
    width: 100%;
  }
  .p-event {
    padding: 60px 0 70px;
  }
  .p-point {
    padding-top: 60px;
  }
  .p-point__list {
    margin-top: 30px;
  }
  .p-point__item {
    flex-direction: column;
    gap: 20px;
  }
  .p-point__item:nth-child(n + 2) {
    margin-top: 50px;
  }
  .p-point__image {
    width: 100%;
    height: 55vw;
  }
  .p-point__desc {
    width: 100%;
  }
  .p-serviceArea {
    padding: 70px 0 80px;
  }
  .p-serviceArea__text {
    margin-top: 20px;
    text-align: left;
  }
  .p-column__contents {
    margin-top: 30px;
  }
  .c-btnD {
    padding: 5px 50px 5px 30px;
  }
}
