/* 背景色を白に変更 */
/*.article .cloud-native-square:not(:last-child) {
  background-color: rgba(255, 255, 255, 0.8);
  color: #030E2E;
  padding: 20px 20px 60px;
}
.article .cloud-native-square strong {
  color: #7800ff;
}
.article .cloud-native-square a:link, .article .cloud-native-square a:visited {
  color: #00b0ff;
  text-decoration: underline;
}
.article .cloud-native-square .cloud-native-square a:hover{
  text-decoration: none;
}

.article .cloud-native-square .block-list__title {
  color: #ffffff;
}

.article .cloud-native-square .block-list a:link{
  color: #96b4ff;
}*/

/* サムネイルスタイル */
.article .cloud-native-square .tmb {
  width: 600px;
  margin: 0 auto;
  cursor: pointer;
  color: #00b0ff;
  text-decoration: underline;
}
.article .cloud-native-square .tmb_img {
  width: 100%;
  height: auto;
  margin: 0 0 -10px;
}
.article .cloud-native-square .tmb img {
  border-radius: 0;
}

/* ポップアップ背景 */
.article .cloud-native-square .popup {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s, transform 0s 0.3s;
  overflow: hidden;
}

/* ポップアップ表示トリガー */
.article .cloud-native-square input[type="checkbox"] {
  display: none;
}
.article .cloud-native-square input[type="checkbox"]:checked ~ .popup {
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.3s;
}

/* ポップアップ内画像領域（スクロール対応） */
.article .cloud-native-square .popup__img {
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

/* ポップアップ内画像（原寸サイズを維持） */
.article .cloud-native-square .popup__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 閉じるボタン */
.article .cloud-native-square .popup__btn {
  display: block;
  z-index: 13;
  position: absolute;
  top: 1vh;
  right: 1vh;
  width: 5vh;
  height: 5vh;
  cursor: pointer;
}
.article .cloud-native-square .popup__btn::before,
.article .cloud-native-square .popup__btn::after {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  content: '';
}
.article .cloud-native-square .popup__btn::before {
  transform: rotate(45deg);
}
.article .cloud-native-square .popup__btn::after {
  transform: rotate(-45deg);
}

/* 背景スクロール制御用（JSでbodyに追加） */
body.no-scroll {
  overflow: hidden;
}

/* ラベルなど */
.article .cloud-native-square label {
  cursor: pointer;
}
.article .cloud-native-square label p {
  color: #00b0ff;
  text-decoration: underline;
}
.article .cloud-native-square .popup__btnarea {
  z-index: 12;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 2025/05/01 追加 */
.article .cloud-native-square .popup {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100vw;
  height: 100vh;
  height: 100svh;
}

.article .cloud-native-square .tmb {
  max-width: 100%;
}

.article .cloud-native-square .popup__img img {
  max-height: auto;
  position: relative;
  z-index: 13;
}

.article .cloud-native-square .popup__img {
  height: auto;
  position: static;
}

.article .cloud-native-square .popup__btn {
  cursor: pointer;
}

.article .cloud-native-square .popup {
  cursor: default;
}



/* 202505 追加 */
.flag__judgement {
  display: none;
}

.article__header .article__date {
	position: relative;
}

.list-case-s__item .item__date {
	position: relative;
}

.icon_new, .icon_update {
	position: absolute;
	margin-left: .7em;
	font-style: normal;
	line-height: 1;
	color: #bd5a9e;
	top: 50%;
	margin-top: -.5em;
	font-weight: bold;
}

.icon_update {
	color: #3f97cf;
}

.cloud-native-square pre code {
	background: #000;
	color: #fff;
	padding: 1.5em 1em;
	max-height: 20em;
	line-height: 1.5;
	overflow-y: auto;
	position: relative;
	display: block;
	margin-bottom: 2em;
}

.cloud-native-square pre code .copy {
	position: absolute;
	top: .5em;
	right: 1em;
	cursor: pointer;
	font-size: 12px;
	background: url(../img/ico-copy.svg) no-repeat left center / 1em;
	padding-left: 1.4em;
}

.cloud-native-square pre code .copy:before {
	content: 'コピー';
}

/* h3の色の変更 */
.article__body h3:before{
  background: linear-gradient(to top, #F848F6, #E291FF);
}