@charset "utf-8";
/* CSS Document */

.p-greeting {
	margin-block: 10rem;
	@media (max-width: 767.98px) {
		margin-block: 10vw;
		width: 100% !important;
	}
}

.p-greeting__inner_box {
	display: grid;
	/*grid-template-columns: 1fr 1fr;*/
	gap: 5rem;
	margin-top: 5vw;
	@media (max-width: 768px) {
		/*grid-template-columns: repeat(1,1fr);*/
		gap: 3rem;
	}
}

/* 1段目（通常） */
.p-greeting__inner_box:nth-of-type(2) {
    /*direction: rtl;*/
	margin-top: 5rem;
	.greeting_img > picture {
		margin-top: 0px;
	}
	.greeting_txt > dl:nth-of-type(1) {
		margin-top: 0px;
	}
	@media (max-width: 768px) {
		margin-top: 3rem;
	}
}

.p-greeting__inner_box:nth-of-type(2) > * {
    direction: ltr;
}



.greeting_img-placeholder {
	@media (max-width: 768px) {
		display: none;
	}
}

.greeting_img {
	/*max-width: 680px;*/
    width: 100%;
	margin: 0px auto;
	position: relative;
	/*opacity: 0;
	transition: opacity .2s ease;
	&.is-ready {
		opacity: 1;
	}*/
	@media (max-width: 768px) {
		position: relative !important;
		top: 0px !important;
		opacity: 1;
		width: 100% !important;
	}
}

.greeting_txt {
	display: grid;
	row-gap: 6rem;
	@media (max-width: 768px) {
		row-gap: 3rem;
	}
}

.president_name {
	font-size: var(--font-size-18px);
	margin-top: 1rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1em;
	@media (max-width: 768px) {
		gap: 1em;
		margin-top: 1rem;
	}
	span:nth-of-type(1) {
		top: 1px;
		position: relative;
	}
	span:nth-of-type(2) {
		font-size: clamp(1.8rem,2.4vw,2.4rem);
		font-weight: bold;
	}
}

.greeting_txt_ttl {
	color: #0075C2;
	font-size: clamp(2rem,4vw,4rem);
	font-weight: bold;
	font-feature-settings: 'palt';
	letter-spacing: 2px;
	line-height: 160%;
}

.greeting_txt > dl {
	display: grid;
	row-gap: 2rem;
	@media (max-width: 768px) {
		row-gap: 1rem;
	}
	dt {
		color: #0075C2;
		font-size: clamp(1.8rem,2vw,2.4rem);
		font-weight: bold;
	}
	dd {
		font-size: var(--font-size-18px);
		line-height: var(--line-height-base);
		text-align: justify;
	}
}













