@charset "utf-8";

:root {

}

@media (prefers-color-scheme: dark) {
	:root {

	}
}

/* モバイル　ALL */
@media screen and (max-width: 425px) {
	:root {
		--Nice_FlexWrapA_Dl_flex-basis: 100%;
		--Nice_FlexWrapB_Dl_flex-basis: 100%;
	}
}

/* タブレット */
@media screen and (min-width:426px) and (max-width: 768px) {
	:root {
		--Nice_FlexWrapA_Dl_flex-basis: 100%;
		--Nice_FlexWrapB_Dl_flex-basis: 100%;
	}
}

/* ノートパソコン */
@media screen and (min-width:769px) and ( max-width:1024px) {
	:root {
		--Nice_FlexWrapA_Dl_flex-basis: calc( calc( 100% - 1rem ) / 2 );
		--Nice_FlexWrapB_Dl_flex-basis: calc( calc( 100% - 1rem ) / 2 );
	}
}

/* ノートパソコン L */
@media screen and (min-width:1025px) and ( max-width:1440px) {
	:root {
		--Nice_FlexWrapA_Dl_flex-basis: calc( calc( 100% - 1rem ) / 2 );
		--Nice_FlexWrapB_Dl_flex-basis: calc( calc( 100% - 2rem ) / 3 );
	}
}

/* 2K以上 */
@media screen and (min-width:1441px) and ( max-width:2560px) {
	:root {
		--Nice_FlexWrapA_Dl_flex-basis: calc( calc( 100% - 1rem ) / 2 );
		--Nice_FlexWrapB_Dl_flex-basis: calc( calc( 100% - 2rem ) / 3 );
	}
}

/* 4K以上 */
@media screen and (min-width:2561px) {
	:root {
		--Nice_FlexWrapA_Dl_flex-basis: calc( calc( 100% - 1rem ) / 2 );
		--Nice_FlexWrapB_Dl_flex-basis: calc( calc( 100% - 2rem ) / 3 );
	}
}

















/* ーーーーーーーーーーーーーーーーーーーー
	はじめましてガイド
	グローバル英語
	画像付リストA
ーーーーーーーーーーーーーーーーーーーー */

#content .flex_wrap_A {
	display: flex;
	flex-wrap: wrap;
	gap: var(--Size_10);
}

#content .flex_wrap_A dl {
	flex-basis: var(--Nice_FlexWrapA_Dl_flex-basis);
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	background: var(--Color_E100);
	border-radius: var(--Border-radius_S);
	overflow: hidden;
}

#content .flex_wrap_A dl dt {
	padding: var(--Size_10);
	font-size: var(--Size_14);
	font-weight: 600;
	line-height: 1.2;
	border-bottom: 1px var(--Color_FF100) solid;
}

#content .flex_wrap_A dl dd:nth-of-type(1) {
	flex: 1;
	padding: var(--Size_10);
	font-size: var(--Size_10);
}

#content .flex_wrap_A dl dd img {
	width: 100%;
}








/* ーーーーーーーーーーーーーーーーーーーー
	はじめましてガイド
	グローバル英語
	画像付リストB
ーーーーーーーーーーーーーーーーーーーー */

#content .flex_wrap_B {
	display: flex;
	flex-wrap: wrap;
	gap: var(--Size_10);
}

#content .flex_wrap_B dl {
	flex-basis: var(--Nice_FlexWrapB_Dl_flex-basis);
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	border-radius: var(--Size_10);
	overflow: hidden;
}

#content .flex_wrap_B dl dt {
	flex: 1;
	display: flex;
	padding: 0 var(--Size_10) 0 0;
}

#content .flex_wrap_B dl dt h4 {
	padding: var(--Size_10);
	font-size: var(--Size_12);
	font-weight: 600;
	line-height: 1.2;
	background: var(--Color_E100);
	border-radius: var(--Size_10) var(--Size_10) 0 0;
}

#content .flex_wrap_B dl dd {
	background: var(--Color_E100);
	border-radius: 0 var(--Size_10) var(--Size_10) var(--Size_10);
}

#content .flex_wrap_B dl dd img {
	width: 100%;
}







