@charset "UTF-8";


/* # =================================================================
# Style
# ================================================================= */
.news {
  width: 100%;
  display: flex;
  column-gap: 50px;
  margin-top: 50px;
}

.category-list {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  margin-bottom: 40px;
}
.category-list__item a {
  font-size: 16px;
  font-weight: 500;
}
.category-list__item a::before {
  content: "⚫︎";
  font-size: 16px;
}
.category-list__item--important a::before {
  color: #df8674;
}
.category-list__item--plastic a::before {
  color: #3a638e;
}
.category-list__item--obstetrics a::before {
  color: #e08d2a;
}
.category-list__item--recruit a::before {
  color: #443c37;
}

.article {
  width: calc(100% - 200px);
}
.article__inner {
  background-color: #ffffff;
  border-radius: 38px;
  padding: 80px 60px 82px;
  box-shadow: 15px 15px 12px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 425px) {
  .privacy__inner {
    padding: 45px 35px;
  }
}


/* # =================================================================
# Single
# ================================================================= */

.article__head {
  padding-bottom: 20px;
  border-bottom: 0.6px dashed #443c37;
}
.article__date {
  font-size: 15px;
  font-weight: 500;
}
.article__title {
  font-size: 26px;
  font-weight: 600;
  margin-top: 16px;
}
.article__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 25px;
}
.article__cat-item {
  display: inline-block;
  color: #ffffFf;
  font-size: 13px;
  font-weight: 500;
  border-radius: 22px;
  white-space: nowrap;
  padding: 5px 10px;
}
.article__cat-item--important {
  background-color: rgba(223, 134, 116, .15);
	color: #df8674;
}
.article__cat-item--plastic {
    background-color: rgba(58, 99, 142, .15);
    color: #3a638e;
}
.article__cat-item--obstetrics {
    background-color: rgba(224, 141, 42, .15);
    color: #e08d2a;
}
.article__cat-item--recruit {
    background-color: rgba(68, 60, 55, .15);
    color: #443c37;
}

.article__body {
  padding-top: 40px
}
.article__image {
  width: 100%;
  border-radius: 30px;
  box-shadow: 13px 13px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* + .article__text {
  margin-top: 54px;
}
.article__text p {
  font-size: 16px;
  line-height: 2;
  margin: 10px 0 30px;
}
.article__text h3.wp-block-heading {
  position: relative;
  font-size: 22px;
  line-height: 1.6;
  padding-left: 26px;
  margin: 40px 0 20px;
}
.article__text h3.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #3a638e;
  border-radius: 3px;
}
.article__text h4.wp-block-heading {
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  padding-left: 26px;
  margin: 30px 0 10px;
}
.article__text h4.wp-block-heading::before {
  content: "⚫︎";
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  color: #3a638e;
  font-size: 12px;
}
.article__text .wp-block-image {
	margin-bottom: 20px;
}
.article__text .wp-block-image.size-full img {
	width: 100%;
	border-radius: 20px;
}
.article__text .wp-block-image .wp-element-caption {
	font-size: 13px;
    margin-top: .65em;
	line-height: 1.5;
}
.article__text .wp-block-list {
	padding-left: 40px;
	margin: 20px auto;
}
.article__text .wp-block-list li {
    list-style: disc;
	line-height: 1.6;
}
.article__text .wp-block-table {
	margin: 20px auto;
}
.article__text .wp-block-table thead {
    border-bottom: 1px solid;
}
.article__text .wp-block-table td,
.article__text .wp-block-table th {
	line-height: 1.5;
}
.article__text a {
	text-decoration: underline;
	color: #428ac9;
	overflow-wrap: break-word;
}

.return-button {
  width: 214px;
  margin-top: 40px;
}
.return-button .c-pill-button {
  justify-content: flex-start;
  background-color: #3a638e;
  padding-left: 30px;
  box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.1);
}
.return-button .c-pill-button__text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.return-button .c-pill-button::before {
  background-color: #ffffff;
  right: 30px;
}





/* # =================================================================
# Archive
# ================================================================= */
.news-item {
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px dashed #251e1c;
  padding-top: 25px;
}
.news-item::after {
  content: "";
  position: absolute;
  bottom: 34px;
  right: 0;
  display: block;
  width: 18px;
  height: 10px;
  -webkit-mask-image: url("../img/icon/icon_arrow.svg");
          mask-image: url("../img/icon/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #251e1c;
}
.news-item__upper {
  width: 100%;
  display: flex;
	align-items: center;
  column-gap: 10px;
}
.news-item .article__cat {
  margin-top: 0;
}
.news-item__date {
  font-size: 15px;
}
.news-item__title {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  padding: 25px 0;
}

@media screen and (max-width: 425px) {
	.article__inner .news-item:first-child {
	  padding-top: 0;
	}
	.news-item__title {
		padding: 15px 20px 20px 0;
		line-height: 1.5;
	}
	.article__cat-item {
	  font-size: 11px;
	  border-radius: 60px;
	  padding: 5px 6px;
	}
	.news-item__upper {
		column-gap: 6px;
	}
	.news-item__date {
		font-size: 14px;
	}

	.category-list {
	  row-gap: 10px;
	}
}



/* # =================================================================
# 採用情報
# ================================================================= */
.recruit-info {
  margin-top: 10px;
}
.recruit-info__item {
  display: flex;
  border-bottom: 1px dashed #251e1c;
  padding: 18px 0;
}
.recruit-info__title {
  width: 150px;
  font-size: 16px;
  line-height: 1.5;
  padding-right: 15px;
}
.recruit-info__disc {
  width: calc(100% - 150px);
  font-size: 16px;
  line-height: 1.5;
}
.recruit-info__text {
  font-size: 16px;
  line-height: 1.5;
}
.reservation-info {
  border-left: 8px solid #251e1c;
  padding-left: 15px;
  margin-top: 20px;
	padding-bottom: 5px;
}
.reservation-info__tel {
  font-size: 30px;
  font-weight: 600;
  margin-top: 12px;
}
.reservation-info__tel span {
  font-size: 16px;
}
.reservation-info__note {
  font-size: 15px;
  margin-top: 10px;
}
.recruit-text {
  margin-top: 45px;
}
.recruit-text p {
  font-size: 16px;
}
.recruit-text > * {
  line-height: 2;
}


/* # =================================================================
# SP
# ================================================================= */
@media screen and (max-width: 768px) {
  .news {
    flex-direction: column;
  }
  .article {
    width: 100%;
  }
  .article__inner {
    padding: 40px 20px 85px;
  }
  
  .article__date {
    font-weight: 400;
  }
  .article__title {
    font-weight: 500;
    font-size: 22px;
	  line-height: 1.5;
  }
  .article__cat {
    margin-top: 16px;
  }
  
  .return-button {
    margin: 40px auto 0;
  }
}


@media screen and (max-width: 425px) {
  .article__title {
    font-size: 20px;
  }
	* + .article__text {
		margin-top: 30px;
	}
.article__text h3.wp-block-heading {
		font-size: 18px;
		line-height: 1.6;
		padding-left: 20px;
	}
	.article__text .wp-block-list {
		padding-left: 20px;
	}
	.article__inner {
        padding: 40px 20px 40px;
    }
}

