@charset "UTF-8";

/* display */
@media screen and (max-width: 640px) {
	.pc-show {
		display: none !important;
	}
}
@media screen and (min-width: 641px) {
	.sp-show {
		display: none !important;
	}
}
img {
	height: auto;
} 

/* head */
.head {
	background: #f4f8ff;
	color: #003079;
}
.head__inner {
	border: 1px solid #003079;
}
.head__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .3rem;
	padding: 1rem 0 0;
}
.head__ttl {
	font-weight: bold;
	border-top: 2px dashed #333;
	border-bottom: 2px dashed #333;
	padding: .5rem 0;
}
.head__title {
	font-weight: bold;
	margin-bottom: 0;
	color: #003079;
}
.head__txt {
	text-align: center;
	font-size: 1.3rem;
	padding-top: 1rem;
	font-weight: bold;
}

@media screen and (max-width: 640px) {
	.head__wrap--column {
		flex-direction: column;
	}
	.head__ttl {
		font-size: 1.5rem;
	}
	.head__title {
		font-size: 2rem;
		text-align: center;
		line-height: 1.4;
	}
	.head__inner {
		padding: 2rem 1rem 2.5rem;
}
}
@media screen and (min-width: 641px) {
	.head__inner {
		padding: 2rem 0;
	}
	.head__ttl {
		font-size: 1.65rem;
	}
	.head__title {
		font-size: 2.5rem;
	}
}

/* section */
.section__inner {
	padding: 1rem 0;
}
.section__title {
	background: #003079;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	margin: auto;
	padding: 1rem 0;	
}

/* cont */
.cont-wrap__inner {
	margin-top: 1rem;
}
.cont {
	background: #fff;
}
.cont__inner {
	padding: 1rem;
}
.cont__element {
	display: flex;
	gap: 1.5rem;
}

.cont__title {
	font-weight: bold;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #cccccc;
}
.cont__ttl {
	font-weight: bold;
	padding-bottom: .5rem;
}
.cont__txt--pd {
	padding-bottom: 2rem;
}
.cont__right {
	position: relative;
}
.cont__img {
	border: 0.5px solid #b3b3b3;
}

.cont__expansion {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    aspect-ratio: 1 / 1;
    padding: 0.75rem;
	border: none;
    border-radius: 50%;
    background: #dcdcdc;
	color: currentColor;
	line-height: 1;
}

@media screen and (max-width: 640px) {
	.cont__element {
		flex-direction: column-reverse;
	}
	.cont__inner {
		border: 1px solid #003079;
		margin-bottom: 1rem;
	}
	.cont__ttl {
		padding-bottom: 1rem;
		font-size: 1.25rem;
	}
	.cont__txt {
		font-size: 1.125rem;
	}
	.cont__title {
		font-size: 1.3125rem;
	}
}

@media screen and (min-width: 641px) {
	.cont-wrap__inner {
		border: 1px solid #003079;
	}
	.cont__left {
		flex: 2;
	}
	.cont__right {
		flex: 3;
	}
	.cont__ttl {
		font-size: 1.1rem;
	}
	.cont__title {
		font-size: 1.125rem;
	}
}

.p-dialog {
	padding: 2rem 1rem 1rem;
	border: none;
}

.p-dialog__close {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	background: none;
	color: currentColor;
}
