﻿@charset "UTF-8";

/* ============================================================
   guide Section
   ============================================================ */

.guide-section {
	margin-bottom: 3.2rem;
	padding: 1.6rem;
	background-color: #f2f6ff;
	border: 1px solid #f2f6ff;
	border-radius: 1rem;
}

@media screen and (min-width: 768px) {
	.guide-section {
		padding: 2rem 3.2rem;
	}
}

#content .guide-section a {
	text-decoration: underline;
}

.guide-section h2 {
	margin: 0 0 1.6rem;
	font-family: var(--font-default);
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.8;
}

@media screen and (min-width: 768px) {
	.guide-section h2 {
		margin: 0 0 2rem;
	}
}

.guide-section .guide-section--inner {
	padding: 1.6rem;
	background: #ffffff;
	border-radius: 1.5rem;
}

@media screen and (min-width: 768px) {
	.guide-section .guide-section--inner {
		padding: 2.4rem 3.2rem;
	}
}

/* ============================================================
   guide Item
   ============================================================ */

.guide--item + .guide--item {
	margin-top: 3rem;
}

@media screen and (min-width: 768px) {
	.guide--item + .guide--item {
		margin-top: 2rem;
	}
}

.guide--item > dt {
	position: relative;
	margin: 0 0 1.4rem;
	padding: 0 0 0 1.5rem;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: calc(22 / 16);
}

.guide--item > dt::after {
	content: "";
	display: block;
	position: absolute;
	top: 0.2rem;
	left: 0;
	width: 4px;
	height: 1.6rem;
	background: #8da0d3;
}

.guide--item p {
	line-height: calc(22 / 14);
}

/* ============================================================
   guide Item - Numberd Description
   ============================================================ */

.guide--numbered-description {
}

.guide--numbered-description__item {
}

.guide--numbered-description__term {
	display: flex;
	align-items: center;
	background: #eaf1fd;
	padding: 0.8rem;
	margin: 2.4rem 0 1.6rem;
}

@media screen and (min-width: 768px) {
	.guide--numbered-description__term {
		padding: 8px;
		margin: 24px 0 16px;
	}
}

.guide--numbered-description__number {
	background: #8daaff;
	color: #fff;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	margin: 0 8px 0 0;
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	line-height: 30px;
}
@media screen and (min-width: 768px) {
	.guide--numbered-description__number {
		width: 22px;
		height: 22px;
		line-height: 22px;
	}
}

.guide--numbered-description__text {
	font-weight: bold;
}

.guide--numbered-description__detail img {
	display: block;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	.guide--numbered-description__detail img {
		margin: 0;
	}
}

/* ============================================================
   guide Item - Image variant (image01)
   ============================================================ */

dl.guide--item__image01 dd.guide--item__image01-img {
	margin-top: 2rem;
}

@media screen and (min-width: 768px) {
	dl.guide--item__image01 {
		display: grid;
		grid-template-columns: 1fr 217px;
		grid-template-rows: auto 1fr;
		gap: 0 1rem;
		position: relative;
	}

	dl.guide--item__image01 dt {
		grid-column: 1;
		grid-row: 1;
	}

	dl.guide--item__image01 dd:not(.guide--item__image01-img) {
		grid-column: 1;
		grid-row: 2;
	}

	dl.guide--item__image01 dd.guide--item__image01-img {
		grid-column: 2;
		grid-row: 1 / 3;
		margin-top: 0;
		align-self: center;
	}
}