/* ===========================
   ページ個別の設定
   =========================== */
:root {
	--color-key: #2b2b2b;
	--color-accent: #2C4A3F;
	--color-bg: #F5F3F1;
	--color-ui-bg: #ffffff;
	--color-ui-sub: #eae4dc;
	--color-text_dark: #000000;
	--color-text_gray: #B8B6B5;
	--color-text_light: #ffffff;
	--color-border_dark: #000000;
	--color-border_light: #ffffff;

	--color-text_main: #222222;

	/* コンテンツ幅 PC */
	--container-w: 1180px;

	/* パンくず */
	--color_breadcrumb-common: #ffffff;
}

/* コンテンツ幅 タブレット */
@media (max-width: 1179px) and (min-width: 810px) {
	:root {
		--container-w: 810px;
	}
}

/* コンテンツ幅 スマホ */
@media (max-width: 809px) {
	:root {
		--container-w: 100vw;
	}
}


/* ==============================
   Reset / Base
   ============================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html,
body {
	height: 100%;
	background-color: #EFF5F0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

ul,
ol {
	list-style: none;
}

button,
input,
textarea {
	font: inherit;
}

img {
	width: 100%;
	display: block;
}

a {
	opacity: 1;
	transition: opacity .25s ease-in-out;
}
a:hover {
	opacity: .65;
}
.sp-only {
	display: none;
}
@media (max-width: 809px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
}

/* contents */
#news {
    padding-block: 160px 100px;
    background-color: #FFF;
}

#news h1 {
    font-family: 'Zen Old Mincho', serif;
    color: var(--color-accent);
    font-size: 27px;
    line-height: 100%;
    margin: 0;
    font-weight: 400;
	text-align: center;
    padding-bottom: 60px;
}

#news .contents-lead p {
	max-width: 780px;
	margin-inline: auto;
    color: var(--color-key);
    font-size: 15px;
	text-align: left;
    line-height: 2;
    padding: 0 24px 25px;
}

#news .contents-lead p.text-right {
	text-align: right;
	padding-top: 30px;
}

@media (max-width: 809px) {
	#news {
	    padding-block: 60px;
	}
	#news h1 {
        justify-content: center;
        align-items: center;
        padding-inline: 20px;
        font-size: 24px;
        line-height: 1.6;
	    padding-bottom: 40px;
	}
	#news .contents-lead p {
	    font-size: 14px;
	}
	#news .contents-lead p.text-right {
		padding-top: 0px;
	}
}
/* /contents */