/*mv*/
.c-page-header {
  background: url(../../oltana-004/images/mv/sp/mv_guide_sp.png) center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 641px) {
  .c-page-header {
    background: url(../../oltana-004/images/mv/mv_guide.png) center center no-repeat;
    background-size: cover;
  }
}
/* Facility Grid Section */
.p-facility__deco-1 {
  position: absolute;
  top: 4rem;
  left: -0.2rem;
  width: 30px;
  height:30px;
  background-color: #AFCF9B33;
  border-radius: 5px;
  transform: rotate(-25deg);
}
.p-facility__deco-2 {
  position: absolute;
  top: 5.6rem;
  left: 2rem;
  width: 15px;
  height:15px;
  background-color: #AFCF9B33;
  border-radius: 5px;
  transform: rotate(-25deg);
}
.p-facility__deco-3 {
  position: absolute;
  top: 4rem;
  right: -0.4rem;
  width: 36px;
  height:36px;
  background-color: #AFCF9B33;
  border-radius: 5px;
  transform: rotate(-25deg);
}
.p-facility__deco-4 {
  position: absolute;
  top: 7rem;
  right: 2rem;
  width: 20px;
  height:20px;
  background-color: #AFCF9B33;
  border-radius: 5px;
  transform: rotate(-25deg);
}

.p-facility__grid {
  margin-top: 50px;
  display: grid;
  gap: 50px;
}

.p-facility__img {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.p-facility__img img {
  width: 100%;
}

.p-facility__head {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.p-facility__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* PC Layout for Facility */
@media screen and (min-width: 641px) {
  .p-facility__grid {
    grid-template-columns: repeat(2, 1fr); /* 2カラム */
  }
  .p-facility__grid.three-columns {
    grid-template-columns: repeat(3, 1fr); /* 3カラム */
  }
}
@media screen and (min-width: 1024px) {
  .p-facility__deco-1 {
    top: 6.6rem;
    left: -3.2rem;
    width: 60px;
    height:60px;
  }
  .p-facility__deco-2 {
    top: 9rem;
    left: 3rem;
    width: 33px;
    height:33px;
  }
  .p-facility__deco-3 {
    top: 8rem;
    right: -5rem;
    width: 60px;
    height:60px;

  }
  .p-facility__deco-4 {
    top: 13rem;
    right: -2rem;
    width: 33px;
    height:33px;
  }
}

/* Access Section */
.p-access__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Access Info Area */
.p-access__logos {
  display: flex;
  justify-content: space-between;
}

.p-access__badge {
  width: clamp(4.875rem, 4.564rem + 1.33vw, 5.625rem);
}

.p-access__info {
  width: 100%;
}

.p-access__logo {
  max-width: clamp(13.875rem, 11.337rem + 10.83vw, 20rem);
  margin-bottom: 20px;
}

.p-access__address {
  font-style: normal;
  margin-bottom: 30px;
  line-height: 1.8;
}

.p-access__address a {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Access Map Area */
.p-access__map {
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 8px;
  overflow: hidden;
}

.p-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* PC Layout for Access */
@media screen and (min-width: 822px) {
  .p-access__container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }

  .p-access__badge {
    padding-top: 1em;
  }

  .p-access__info {
    width: 50%;
  }

  .p-access__map {
    width: 47%;
    aspect-ratio: 6/5;
  }
}

/*サービス提供時間*/
.p-service-time__title {
  padding: 15px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid var(--primary-color);
}
.p-service-time__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-color);
    background: #fff;
    border-radius: 10px;
}
.p-service-time__wrap {
  flex: 1;
}
.p-service-time__row {
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 0;
    border-bottom: 1px dashed var(--primary-color);
}

/* 最後の行のみ下線を消す */
.p-service-time__row:last-child {
    border-bottom: none;
}

/* 項目名（平日・土曜日など） */
.p-service-time__term {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    width: 33%;
}

/* 詳細内容（時間） */
.p-service-time__desc {
    font-weight: 700;
    font-size: 1rem;
    width: 66%;
    line-height: 1.8;
}


/* ==========================================================================
   Responsive: PC Layout (min-width: 768px)
   ========================================================================== */
@media screen and (min-width: 822px) {
  .p-service-time__body {
    flex-direction: row;
  }

  .p-service-time__title {
    line-height: inherit;
    padding: 20px 20px;
    width: 26%;
    border-bottom: none;
    border-right: 1px solid var(--primary-color);
}

    /* リスト内のレイアウト調整 */
    .p-service-time__row {
        padding: 20px 30px;
    }

    .p-service-time__term {
        width: 30%; /* ラベル幅 */
        margin-bottom: 0;
        text-align: start;
    }

    .p-service-time__desc {
        width: 70%; /* コンテンツ幅 */
    }
}