@charset "utf-8";

/* ======================================================
 * family/rules - rules.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Override
 * - PageComponent
 * PC Media Queries
 * @media only screen and (max-width: 767px)
 * - Override
 * - PageComponent
 * SP Media Queries
 * Print
====================================================== */

/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
	/* ------------------------------------------------------
	 * Override
	------------------------------------------------------ */

	/* ------------------------------------------------------
	 * PageComponent
	------------------------------------------------------ */
	/* --- rules-think --- */
	.rules-think {
		margin: 52px 0 0;
	}
	.rules-think .think_head {
		display: flex;
		justify-content: center;
	}
	.rules-think .think_lead {
		position: relative;
		display: inline-block;
		padding: 0 23px;
		padding-right: 0;
		color: var(--main-color);
		font-size: 20px;
		font-weight: 500;
	}
	.rules-think .think_lead::before,
	.rules-think .think_lead::after {
		content: "";
		display: block;
		position: absolute;
		top: calc(50% + 3px);
		border-radius: 1px;
		width: 26px;
		height: 2px;
		background: var(--main-color);
		transform-origin: center;
	}
	.rules-think .think_lead::before {
		left: -5px;
		transform: rotate(60deg);
	}
	.rules-think .think_lead::after {
		right: -12px;
		transform: rotate(-60deg);
	}
	.rules-think .think_lead rt {
		font-size: 10px;
	}
	.rules-think .think_body {
		display: flex;
		margin: 26px 0 0;
	}
	.rules-think .think_item {
		width: calc((100% - (24px * 2))/3);
		margin: 0 0 0 24px;
	}
	.rules-think .think_item:nth-of-type(3n+1) {
		margin-left: 0;
	}
	.rules-think .think_balloon {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 15px;
		border-radius: 8px;
		border: 2px solid var(--sub-color8);
		background: var(--bg-color);
	}
	.rules-think .think_balloon::before,
	.rules-think .think_balloon::after {
		content: "";
		display: block;
		position: absolute;
		left: 50%;
		border-style: solid;
		border-width: 20px 15px 0;
		transform: translateX(-50%);
	}
	.rules-think .think_balloon::before {
		top: 100%;
		border-color: var(--sub-color8) transparent transparent;
	}
	.rules-think .think_balloon::after {
		top: calc(100% - 3px);
		border-color: var(--bg-color) transparent transparent;
	}
	.rules-think .think_balloon .balloon_text {
		font-size: 18px;
		font-weight: 500;
		line-height: 1.8;
		text-align: center;
	}
	.rules-think .think_image {
		width: 147px;
		margin: 28px auto 0;
	}

}



/* ======================================================
 * PC Media Queries
====================================================== */
@media screen and (min-width: 768px) and (max-width: 1224px) {
}

/* ======================================================
 * SP
====================================================== */
@media only screen and (max-width: 767px) {
	/* ------------------------------------------------------
	 * Override
	------------------------------------------------------ */

	/* ------------------------------------------------------
	 * PageComponent
	------------------------------------------------------ */
	/* --- rules-think --- */
	.rules-think {
		margin: 30px 0 0;
	}
	.rules-think .think_head {
		display: flex;
		justify-content: center;
	}
	.rules-think .think_lead {
		position: relative;
		display: inline-block;
		width: 100%;
		max-width: 345px;
		padding: 0 60px;
		color: var(--main-color);
		font-size: 16px;
		font-weight: 500;
		text-align: center;
		line-height: 1.8;
	}
	.rules-think .think_lead::before,
	.rules-think .think_lead::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		border-radius: 1.25px;
		width: 92.5px;
		height: 2.5px;
		background: var(--main-color);
		transform-origin: center;
	}
	.rules-think .think_lead::before {
		left: -16px;
		transform: rotate(51.3deg);
	}
	.rules-think .think_lead::after {
		right: -16px;
		transform: rotate(-51.3deg);
	}
	.rules-think .think_lead rt {
		font-size: 10px;
	}
	.rules-think .think_body {
		margin: 18px 0 0;
	}
	.rules-think .think_item {
		display: flex;
		align-items: center;
		width: 100%;
		margin: 16px 0 0;
	}
	.rules-think .think_item:first-of-type {
		margin-top: 0;
	}
	.rules-think .think_balloon {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 7px;
		border-radius: 8px;
		border: 2px solid var(--sub-color8);
		background: var(--bg-color);
	}
	.rules-think .think_balloon::before,
	.rules-think .think_balloon::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		border: solid transparent;
		border-width: 10px 14px;
		transform: translateY(-50%);
	}
	.rules-think .think_balloon .balloon_text {
		font-size: 15px;
		font-weight: 500;
		line-height: 1.8;
		text-align: center;
	}
	.rules-think .think_image {
		flex-shrink: 0;
		width: 23.5vw;
		max-width: 88px;
	}
	.rules-think .think_item:nth-of-type(odd) {
		flex-direction: row-reverse;
		padding-left: 5px;
	}
	.rules-think .think_item:nth-of-type(even) {
		flex-direction: row;
		padding-right: 5px;
	}
	.rules-think .think_item:nth-of-type(odd) .think_balloon {
		flex-direction: row-reverse;
		margin-left: 24px;
	}
	.rules-think .think_item:nth-of-type(even) .think_balloon {
		flex-direction: row;
		margin-right: 24px;
	}
	.rules-think .think_item:nth-of-type(odd) .think_balloon::before {
		right: 100%;
		border-right-color: var(--sub-color8);
	}
	.rules-think .think_item:nth-of-type(even) .think_balloon::before {
		left: 100%;
		border-left-color: var(--sub-color8);
	}
	.rules-think .think_item:nth-of-type(odd) .think_balloon::after {
		right: calc(100% - 3px);
		border-right-color: var(--bg-color);
	}
	.rules-think .think_item:nth-of-type(even) .think_balloon::after {
		left: calc(100% - 3px);
		border-left-color: var(--bg-color);
	}


}
/* ======================================================
 * SP Media Queries
====================================================== */
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 375px) {
}

/* ======================================================
 * Print
====================================================== */
@media print {
}