/* 共通クラス */
.mb32 {
	margin-bottom: calc(32 / 16 * 1rem);
}

/* トップ */
.p-news__list-wrap {
	margin-top: 0;
	gap: calc(40 / 16 * 1rem);
	max-width:632px;
}

.p-news__banner-wrap {
}
.p-news__inner {
	display: flex;
	gap: calc(40 / 16 * 1rem);
	align-items: center;
}

/* 会社案内 */
.p-pageCompany__access {
	margin-top: 5rem;
}

.access-content {
	.text {
		color: #000;
		font-family: "BIZ UDGothic";
		font-size: calc(18 / 16 * 1rem);
		font-style: normal;
		font-weight: 400;
		line-height: 170%; /* 30.6px */
		letter-spacing: 0.9px;

		margin-bottom: calc(8 / 16 * 1rem);
	}
	.map{
		width: 100%;
		height: 320px;
		iframe{
			width: 100%;
			height: 100%;
			border: none;
		}
	}
}

/* お知らせ */
.c-newsList {
  .c-newsList__item {
	display: flex;
	gap: calc(40 / 16 * 1rem);
	@media screen and (max-width: 768px) {
		flex-direction: column;
		gap: calc(12 / 16 * 1rem);
	}
	align-items: flex-start;
    .c-newsList__item-image {
		max-width: calc(230 / 16 * 1rem);
		img{

		}
    }
    .c-newsList__item-content {
      .c-newsList__item-date {
      }
      .c-newsList__item-title {
      }
    }
  }
}

