@charset "utf-8";

hr {
	border-top-color: rgba(0,0,0,0.3);
}

.ImgList {
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.ImgList > * {
	margin-top: 20px;
}

.ImgList > *:first-child {
	margin-top: 0;
}

.ImgList__item {
	position: relative;
}

.ImgList__img {
	margin: 0;
}

.ImgList__img img {
	width: 100%;
	vertical-align: bottom;
	border-radius: 3px;
}

.ImgList__caption {
	font-size: 1.1rem;
	text-align: left;
	position: absolute;
	bottom: -0.3em;
	right: 0;
	background-color: var(--color-bg);
	padding: 5px 0 0 10px;
	border-radius: 5px 0 0 0;
}

.ImgList__caption::before,
.ImgList__caption::after {
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	content: "";
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.ImgList__caption::before {
	bottom: 0.3em;
	left: -10px;
	background-image: var(--round-out-corner-RB);
}

.ImgList__caption::after {
	right: 0;
	top: -10px;
	background-image: var(--round-out-corner-RB);
}

@media all and (min-width: 768px) {
	.ImgList {
		width: var(--wcalc10-8);
		margin-right: auto;
		margin-left: auto;
	}
	
	.ImgList > * {
		margin-top: 30px;
	}
	
	.ImgList > *:nth-of-type(-n + 3) {
		margin-top: 0px;
	}
	
	.ImgList::after {
		content: '';
		display: block;
		width: calc(33.333% - 20px);
	}

	.ImgList__item {
		width: calc(33.333% - 20px);
	}

	.ImgList__img figcaption {
		font-size: 1.15rem;
	}
}



/* -------------------------------------------------------------------------------------------------- */

.std-table__item {
	background-color: rgba(255,255,255,1);
	padding: 20px;
}

.std-table__lbl {
	font-size: 1.5rem;
}

.std-table__des {
	margin-top: 1em;
}

.std-table__des ul {
	margin: 0;
}

@media all and (min-width: 768px) {
	.std-table__item {
		padding: 30px;
	}
}

@media all and (min-width: 1280px) {
	.std-table__lbl {
		font-size: 1.8rem;
	}
}


/* -------------------------------------------------------------------------------------------------- */

.Pickup {
	background-color: rgba(255,255,255,1);
	padding: 20px;
	box-sizing: border-box;
	border-radius: 5px;
}

.Pickup__head {
	
}
.Pickup__head > * {
	margin-top: 15px;
}
.Pickup__head > *:first-child {
	margin-top: 0;
}

.Pickup__ttl {
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 110%;
}

.Pickup__ttl > * {
	margin-left: 15px;
}


.Pickup__ttl > *:first-child {
	margin-left: 0;
}

.Pickup__body {
	
}

.Pickup ul {
	padding-left: 22px;
	line-height: 1.5;
}

.Pickup li {
	padding-left: 18px;
	margin-top: 8px;
}

.Pickup li:firsdt-child {
	margin-top: 0;
}

.Pickup .sContentList__item {
	border-top: none;
	padding-top: 0;
}

.Pickup .sContentList__item::before {
	display: none;
}

@media all and (min-width: 768px) {
	.Pickup {
		padding: 40px;
	}
	
	.Pickup .sContentList::before,
	.Pickup .sContentList::after,
	.Pickup .sContentList__item {
		width: calc(33.333% - 20px);
	}
}

@media all and (min-width: 1280px) {
	.Pickup .sContentList::before,
	.Pickup .sContentList::after,
	.Pickup .sContentList__item {
		width: calc(33.333% - 20px);
	}
}


/* -------------------------------------------------------------------------------------------------- */

.PickupContents {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
}

.PickupContents > * {
	margin-top: 20px;
}

.PickupContents > *:first-child {
	margin-top: 0;
}

.PickupContents__img {
}

.PickupContents__img img {
	display: block;
	width: 100%;
	border-radius: 3px;
}

.PickupContents__body {
	
}

.PickupContents__body > * {
	
}

.PickupContents__body > *:first-child {
	margin-top: 0;
}

@media all and (min-width: 768px) {
	.PickupContents {
		display: flex;
		justify-content: space-between;
		padding: 40px;
	}

	.PickupContents > * {
		margin-top: 0;
	}

	.PickupContents__img {
		width: calc(30% - 20px);
	}

	.PickupContents__body {
		width: calc(70% - 20px);
	}
}

@media all and (min-width: 1280px) {
	.PickupContents__img {
		width: calc(25% - 20px);
	}

	.PickupContents__body {
		width: calc(75% - 20px);
	}
}

/* -------------------------------------------------------------------------------------------------- */

.other__img {
	margin: 0;
}

.other__img img {
	width: 100%;
	vertical-align: bottom;
	border-radius: 3px;
}

.other__txt {
	width: 100%;
	margin-top: 20px;
}

.other__txt > *:first-child {
	margin-top: 0;
}

@media all and (min-width: 768px) {
	.other {
		display: flex;
		justify-content: space-between;
	}

	.other__img {
		width: calc(50% - 10px);
	}

	.other__txt {
		width: calc(50% - 10px);
		margin-top: 0;
	}
}

@media all and (min-width: 1280px) {
	.other__img {
		width: var(--wcalc3-1);
	}

	.other__txt {
		width: var(--wcalc3-2);
	}
}



/* -------------------------------------------------------------------------------------------------- */

.RelatedLinks {
	list-style: none;
	padding: 0 0 0 20px;
	border-left: 1px solid rgba(0,0,0,0.1);
}

@media all and (min-width: 1280px) {
	.RelatedLinks {
		display: flex;
		flex-wrap: wrap;
		padding: 20px 0 0 0;
		border-left: none;
		border-top: 1px solid rgba(0,0,0,0.1);
	}

	.RelatedLinks > * {
		margin-left: 40px;
	}

	.RelatedLinks > *:first-child {
		margin-left: 0;
	}

	.RelatedLinks__item {
		margin-top: 0;
	}
}



/* -------------------------------------------------------------------------------------------------- */

.Conversion {
	
}

@media all and (min-width: 1280px) {

	.Conversion::after {
		content: '';
		display: block;
	}

	.Conversion > * {
		margin-top: 20px;
	}

	.Conversion > *:first-child {
		margin-top: 0;
	}

	.Conversion__link {
		
	}
}


