@charset "UTF-8";

.p-pros {	
	font-size: 16px;
	width: 100%;
	margin-top: 30px;
}
.p-pros__list {
	width: fit-content;
	margin: 0 auto;
	padding-left: 0;
	list-style: none;
}
.p-pros__list-item {
	margin-bottom: 14px;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.p-pros__list-item:last-child {
	margin-bottom: 10px;
}
.p-pros__list-item-icon {
	width: 19px;
	margin-right: 5px;
	display: inline-block;
}

.p-pros__arrow {
	width: 62px;
	margin: 0 auto;
	display: block;
}

.p-pros__contact {
	text-align: center;
	font-size: 16px;
}

.p-pros__whitebox {
	margin: 22px auto 0;
	padding: 22px 90px;
	background-color: #FCFCFC;
	font-size: 16px;
	line-height: 1.6;
	border: 1px solid #B2B2B2;
	border-radius: 10px;
}

.p-pros__whitebox_top{
	margin:22px auto 0;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.p-pros__whitebox_under {
	margin: 22px auto;
	font-size: 16px;
	line-height: 1.6;
}

.p-pros__redbox {
	margin: 22px auto 0;
	padding: 22px 110px;
	background-color: #FFEFEF;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.6;
	border: 1px solid #FF0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column; /* 縦並び */
	align-items: center;    /* 横方向の中央揃え */
}

.p-pros__redbox_top {
	margin: 22px auto 0;
	color: #FF0000;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
}

.p-pros__redbox_under {
	margin: 22px auto;
	width: auto;
	font-size: 19px;
	line-height: 1.6;
}

.p-pros__redbox2 {
	margin: 22px auto 0;
	padding: 22px 90px;
	background-color: #FFEFEF;
	font-size: 16px;
	line-height: 1.6;
	border-radius: 10px;
	display: flex;
	flex-direction: column; /* 縦並び */
	align-items: center;    /* 横方向の中央揃え */
}

.p-pros__redbox2_top {
	margin: 22px auto 22px;
	padding: 3px 110px;
	color:  #FF0000;
	background-color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
	border: 2px solid #FF0000;
	border-radius: 16px;
}

.p-pros__redbox2_under {
	margin: 22px auto;
	width: auto;
	font-size: 16px;
	line-height: 1.6;
}

.p-pros__figure {
	width: 100%;
	margin: 28px auto 50px;
	display: block;
}

.circle-dot::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  background-color: red;
  border-radius: 50%;  /* 真円にする */
}

.p-youtube__header {
	margin-top: 82px;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: bold;
}
.p-youtube__body {
	width: 100%;
	max-width: 1050px;
	margin:30px auto;
	padding-top: 56.25%;
	position: relative;
}
.p-youtube__body iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


.p-dlimg {
	max-width: 800px;
	width: 100%;
	margin: 30px auto 40px;
}
.p-dlimg__img {
	width: 100%;
	display: block;
	margin: 50px auto;
}


.p-melsecbtn {
	width: fit-content;
	margin: 30px auto;
	padding: 20px 80px;
	background-color: #FF0000;
	border: none;
	border-radius: 42px;
	color: #FFF;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 10px;
	cursor: pointer;
	transition: .3s background-color ease-out;
}
.p-melsecbtn:hover {
	background-color: #FF6900;
	color: #FFF;
}
.p-melsecbtn__icon {
	width: 34px;
	display: block;
}
.p-melsecbtn__arrow {
	display: block;
	width: 13px;
	height: 13px;
	border-bottom: 3px solid #FFF;
	border-right: 3px solid #FFF;
	transform: rotate(-45deg);
}

.triangle {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;  /* 左の辺を透明に */
	border-right: 20px solid transparent; /* 右の辺を透明に */
	border-top: 25px solid #FF0000;      /* 上の辺を透明に */
	border-bottom: 0 solid transparent;   /* 下の辺に色を付ける */
	margin: 20px auto; 
}

  .gray-box {
	margin: 40px auto; 
    aspect-ratio: 1050 / 591; 
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    font-family: sans-serif;
  }

@media screen and (max-width: 600px) {
	.p-pros {
		margin-top: 20px;
	}

	.p-pros__list-item {
		margin-bottom: 20px;
		align-items: flex-start;
	}

	.p-pros__text {
		margin: 20px auto 0;
	}

	.p-melsecbtn {
		padding: 20px 32px;
		font-size: 24px;
	}
	.p-melsecbtn__icon {
		width: 28px;
	}
	.p-melsecbtn__arrow {
		width: 11px;
		height: 11px;
	}

	.p-pros__whitebox {
	padding: 22px 40px;
}
	
	.p-pros__redbox {
	padding: 22px 40px;
}
	
	.p-pros__redbox2 {
	padding: 22px 40px;
	}	
}

