@charset "UTF-8";
/* CSS Document */
ul#GlobalNav > li.About.havChild {
	color: var(--color-green);
}
#BodyContents p {
	line-height: 180%;
}
.TopMessage figure {
	width: 35%;
	height: auto;
	float: right;
	margin: 0 1em 1em 2em;
}
.TopMessage figure figcaption {
	text-align: center;
}
.PhotoOffice {
	position: absolute;
	right: 1em;
	height: 33vw;
	max-height: 400px;
	width: auto;
}
dl.Plofile {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-flow: wrap;
	gap: 1em;
	width: 80%;
	margin: 0 auto;
}
dl.Plofile dt {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 8em;
	padding: 0.5em;
	border-left: solid 5px var(--color-green);
}
dl.Plofile dd {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: calc(100% - 9em);
	padding: 0.5em;
	gap: 1em;
}
dl.Plofile dd img {
	width: 80%;
	height: auto;
	margin: 0 auto;
}
/*251008修正*/
/*dl.Plofile dd img.Circle {
	width: 25%;
	height: auto;
	margin: 0;
}*/
dl.Plofile dd figure{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap:0.5em;
    width: 25%;
    height: auto;
    margin: 0;
}
ul.Feature {
	display: inline-flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.5em;
	margin: 1em auto 2em;
	list-style: none;
}
ul.Feature li {
	position: relative;
	text-align: left;
	padding-left: 1.5em;
}
ul.Feature li::before {
	content: '■';
	color: var(--color-green);
	position: absolute;
	left: 0;
	top: 0;
}
.FeatureBlock {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 1em;
}
.FeatureBlock .FeatureBox {
	border: solid 1px var(--color-blue);
	width: 100%;
	padding: 0.5em;
	font-size: 80%;
	line-height: 150%;
}
.FeatureBlock .FeatureBox .TextArea h3 {
	text-align: center;
	font-size: 120%;
	line-height: 150%;
	font-weight: 400;
	background-color: var(--color-blue);
	color: var(--color-white);
	margin-bottom: 0.5em;
}
.FeatureBlock .FeatureBox .TextArea p {
	line-height: 150% !important;
	margin: 0 !important;
}
/*タブレット*/
@media screen and (max-width:1023px) {
	ul#GlobalNav > li.About.havChild {
		color: var(--color-white);
	}
	dl.Plofile {
		width: 90%;
	}
	.FeatureBlock {
		flex-flow: wrap;
	}
	.FeatureBlock .FeatureBox {
		width: calc(50% - 1em);
	}
}
/*スマホ*/
@media screen and (max-width: 767px) {
	@media screen and (max-aspect-ratio: 11/10) {
		/* 縦向きの場合のスタイル */
		.TopMessage{
			display: flex;
			justify-content: flex-start;
			align-items: flex-start;
			flex-flow: column;
		}
		.TopMessage figure {
			width: 50%;
			height: auto;
			float: none;
			margin: 0 auto 1em auto;
			order: 2;
		}
		.PhotoOffice {
			position: inherit;
			height: auto;
			width: 100%;
			margin: 1em auto;
			text-align: center;
			right: 0;
		}
		.PhotoOffice img {
			width: 50vw;
			height: auto;
		}
		dl.Plofile dt {
			width: 100%;
			padding: 0 0 0 0.5em;
		}
		dl.Plofile dd {
			width: 100%;
			padding: 0;
			flex-flow: column;
		}
        /*251008修正*/
		/*dl.Plofile dd img.Circle {
			width: 50%;
			height: auto;
			margin: 0;
		}*/
        dl.Plofile dd figure{
            width: 60%;
        }
		.FeatureBlock {
			flex-flow: column;
		}
		.FeatureBlock .FeatureBox {
			width: 100%;
		}
	}
	@media screen and (min-aspect-ratio: 11/10) {
		/* 横向きの場合のスタイル */
	}
}