
:root {
	--color-bg: #f7f8e4;
	--color-accent: #285296;
	--color-accent2: #C19C48;
	--color-grass: #a1ddbf;

	--height-header: 112px;
	--width-container: 1280px;
	--padd-sides: 25px;
}

/* 共有部品 */

body {
	background-color: var(--color-bg);
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	/* font-size: 16px; */
}

body.page-volunteer {
	--color-bg: #EDFEFF;
}

.img-responsive {
	max-width: 100%;
	height: auto;
}

.sp-only {
	display: none;
}

.container {
	margin: auto;
	max-width: var(--width-container);
	padding: 0 var(--padd-sides);
}

.container-subpage {
	padding-top: 100px;
}

.title-container {
	margin-bottom: 50px;
	display: flex;
	gap: 1em;
	align-items: center;
	color: var(--color-accent);
}
.title-container h2 {
	font-size: 2rem;
	line-height: 1;
}

.section-block {
	margin: 0 0 80px 0;
}


:link,
:visited {
	color: var(--color-accent);
}
footer :visited {
	color: white;
}

.over:hover {
	opacity: 0.6;
	transition: opacity 100ms ease;
}

.chevron-right {
	position: relative;
	padding-right: 35px;
	--color: black;
	--size: 10px;
}
.chevron-right::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: var(--size);
  height: var(--size);
  border-top: 2px solid var(--color);
  border-right: 2px solid var(--color);
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.2s ease-in-out;
}
.chevron-right:hover::after {
  right: 15px;
}

/* default button */
.button-round {
	display: inline-block;
	padding: 12px;
	color: var(--color-accent);
	border: 3px solid var(--color-accent);
	background: white;
	border-radius: 30px;
	font-size: 14px;
	font-weight: bold;
}

.button-round-reservation {
	display: inline-block;
	padding: 10px 25px 10px 50px;
	color: white;
	background-color: var(--color-accent);
	background-image: url(../images/header-icon01.svg);
	background-repeat: no-repeat;
	background-position: left 15px center;
	background-size: 25px;
	border-radius: 30px;
	border: 2px solid white;
	font-size: 14px;
	font-weight: bold;
}

.button-round-bbq {
	display: inline-block;
	padding: 10px 25px 10px 50px;
	color: white;
	background-color: var(--color-accent2);
	background-image: url(../images/header-icon02.svg);
	background-repeat: no-repeat;
	background-position: left 20px center;
	background-size: 16px;
	border-radius: 30px;
	border: 2px solid white;
	font-size: 14px;
	font-weight: bold;
}

/* Modal*/

/* body scroll-lock */
body.modal-open,
body.spmenu-open {
	overflow: hidden;
}
body.spmenu-open header {
	background: var(--color-bg);
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.modal-outter {
	position: fixed;
	display: flex;
	flex-direction: column;
	top: 5%;
	left: 5%;
	right: 5%;
	bottom: 5%;
	background-color: white;
	z-index: 1001;
	padding: 5%;
}

.modal-header {
	position: relative;
}
.modal__close {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background: black;
	cursor: pointer;
}
.modal__close:before, .modal__close:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 1px;
	background: #fff;
	content: "";
}
.modal__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-title {
	font-size: 30px;
	font-weight: bold;
}

.modal-subtitle {
	font-size: 17px;
	font-weight: bold;
}

.modal-body {
	flex: 1;
	margin: 20px 0 20px 0;
	padding: 3%;
	border: 1px solid black;
	font-size: 17px;
	line-height: 1.7;
	overflow-y: auto;
}

.modal-body p:not(:last-child) {
	margin-bottom: 1.5em;
}

.modal-check {
	padding-bottom: 15px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.modal-check input {
	width: 20px;
	height: 20px;
	margin-right: 5px;
	appearance: none;
	background-color: #fff;
	border: 1px solid #c1c1c1;
	border-radius: 5px;
	position: relative;
}

.modal-check input:checked:after {
	content: url(../images/icon-check.svg);
	width: 24px;
	height: 22px;
	position: absolute;
	top: -2px;
	left: 2px;
}

.modal-button {
	padding-bottom: 15px;
	text-align: center;
}

.modal-button .button-round {
	display: inline-block;
	padding: 15px 30px;
	font-size: 18px;
	font-weight: normal;
	border: none;
	border-radius: 60px;
	color: white;
	background: var(--color-accent);
	line-height: 1;
}
.modal-button .button-round:hover {
	background: black;
}
.modal-button .button-round[disabled] {
	background: #c1c1c1;
	cursor: not-allowed;
}

.modal-caution {
	text-align: center;
	font-weight: bold;
}

/* header */

header {
	z-index: 100;
	width: 100%;
	height: var(--height-header);
	/* background-color: var(--color-bg); */
	display: flex;
	align-items: center;
}

.header-nav {
	flex: 1;
	display: flex;
	gap: var(--spacing);
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
	--spacing: 30px;
}

.header-nav .logo {
	flex: 1;
}
.header-nav .logo img {
	display: block;
	width: 320px;
}

.header-nav ul {
	display: flex;
	gap: var(--spacing);
}

header .pc-nav {
	display: flex;
	gap: var(--spacing);
	align-items: center;
}

/* footer */

.footer-hill {
	height: 225px;
	background: url(../images/footer-hills.svg) center top no-repeat;
}

footer {
	position: relative;
	padding-top: 70px;
	background: var(--color-accent);
	color: white;
	font-size: 12px;
	line-height: 1.8;
}
footer :link {
	color: white;
}

.footer-back-up {
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	text-align: center;
}
.footer-back-up::before {
	content: "";;
	background: white url(../images/icon-back-up.svg) center center no-repeat;
	border: 3px solid var(--color-accent);
	width: 75px;
	height: 75px;
	display: block;
	border-radius: 50%;
}

.footer-content-group {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.footer-logo-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 800;
}
.footer-links ul {
	display: flex;
	gap: 30px;
	flex-direction: row;
}

.footer-sitename {
	font-size: min(8vw, 28px);
	font-weight: 800;
}
.footer-sitename span {
	white-space: nowrap;
}

.footer-sitename img {
	width: 280px;
}

.footer-sns-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-sns-links ul {
	display: flex;
	align-items: center;
	gap: 25px;
}

.footer-sns-links img {
	width: 25px;
	height: auto;
}

.footer-manager {
	text-align: right;
	flex: 1;
}

.footer-copyright {
	margin-top: 20px;
	padding: 20px 0 30px 0;
	border-top: 1px solid #4c6fa7;
	font-size: 10px;
	text-align: center;
}


/* トップ表示 */

.main-visual {
	height: 675px;
	background: url(../images/top-visual-house.jpg) top 44% left calc(50% + 100px) no-repeat;
}
.main-visual-head {
	position: relative;
	height: 300px;
}
.main-visual-head .catch-line {
	position: absolute;
	top: 50%;
	left: 4%;
	font-size: 48px;
	letter-spacing: -1px;
	color: var(--color-accent);
}

.main-presentation {
	margin-top: -200px;
	margin-bottom: 30px;
	padding-top: 200px;
	background: url(../images/top_bg.png) center center no-repeat;
	height: 845px;
}
.main-presentation .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main-pictures-1x4 {
	--spacing: 10px;
	display: flex;
	justify-content: space-between;
	gap: var(--spacing);
}
.main-pictures-1x4>* {
	width: calc((100% - var(--spacing) * 3) / 4);
}

.main-pictures-2x2 {
	display: none;
}

.main-presentation-footer {
	display: flex;
	align-items: flex-end;
	height: 100px;
}

.main-presentation-footer .button-round {
	padding: 1em 2em 1em 2em;
	color: white;
	background-color: var(--color-accent);
	border-color: white;
	border-radius: 3em;
	font-size: 18px;
	font-weight: bold;
}
.main-presentation-footer .button-round .chevron-right {
	--color: white;
}

.section-home-news .news-link{
	font-size: 18px;
}

.section-home-news .news-contents{
	gap: 0px;
}

.home-news-headblock {
	margin-bottom: 50px;
}
.home-news-headblock .title-container {
	margin-bottom: 0px;
}
.home-news-headblock .title-container h2 {
	font-size: 2.5em;
	padding-bottom: 8px;
}

.section-home-news .news-contents dl {
	gap: 1em;
	padding-bottom: 15px;
}

.section-home-news .chevron-right .news-link {
	line-height: 1.8;
    padding-bottom: 0px;
    padding-top: 0px;
}

.section-home-news .news-contents dl dd {
	margin-top: 0px;
}

.presentation-catch {
	margin-bottom: 40px;
	color: var(--color-accent);
	font-weight: bold;
	text-align: center;
}

.presentation-small {
	font-size: 38px;
}

.presentation-big {
	padding: 0 10px;
	font-size: 58px;
}

/* TOP お知らせ */

.home-news-headblock {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home-news-headblock .button-round {
	padding-left: 2em;
	padding-right: 1em;
}

.home-news-headblock .button-round .chevron-right {
	--color: var(--color-accent);
	--size: 8px;
}

/* TOP バナー */

.section-block.top-banners {
	margin-top: 80px;
	margin-bottom: 140px;
	display: flex;
	gap: 20px;
	justify-content: space-around;
}
.section-block.top-banners-sp {
	display: none;
}

/* TOP アクセス */

.access-block {
	display: flex;
	gap: 15px;
}

.access-block h2 {
	font-size: min(9vw, 40px);
}

.access-block h3 {
	display: flex;
	align-items: baseline;
	font-size: 22px;
	margin-bottom: 20px;
}

.access-block h3 small {
	font-size: 15px;
}

.access-block h3::before {
	content: "●";
	padding-right: 5px;
	font-size: 14px;
	color:  var(--color-accent2);
}

.access-block h4 {
	margin-bottom: 20px;
	font-size: 16px;
}

.section-access-mean {
	font-size: 13px;
	line-height: 1.8;
}

.section-access-time {
	margin-bottom: 30px;
}

.section-access-car {
	margin-bottom: 30px;
}

.access-right {
	flex: 1;
	position: relative;
}

.access-right iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: 25px;
}

.access-time-group {
	display: flex;
	gap: 20px;
	align-items: center;
}
.access-time-group:not(:last-child) {
	margin-bottom: 10px;
}

.access-month {
	padding: 8px 20px;
	font-size: 14px;
	font-weight: bold;
	color: white;
	background: var(--color-accent2);
	border-radius: 30px;
	line-height: 1;
}
.access-hours {
	font-size: 26px;
	font-weight: bold;
}


/* アクセスページ */
.page .section-access-mean { /* 0319追加・修正 */
	width: 100%;
}

.page .section-access-mean a { /* 0319追加・修正 */
    color: black;
    font-weight: bold;
}

.page .section-access-mean a:hover { /* 0319追加・修正 */
    color: var(--color-accent);
}

.page .section-access-mean a::before { /* 0319追加・修正 */
    content: url(../images/circle-chevron-right.svg);
    display: inline-block;
    width: 21px;
    position: relative;
    top: 5px;
    right: 1px;
    margin-right: 5px;
}

.page .section-access-info{ /* 0319追加・修正 */
	display: flex;
	align-items: center;
	margin-top: 3.5em;
}
.page .access-left {
	/*flex: 0 1 30%;*/
	flex: 2;
	margin-right: 1em;
}

.page .access-left-long { /* 0319追加・修正 */
	flex: 2;
}

.page .section-access-time{ /* 0319追加・修正 */
    margin: 5em 0;
}

.page .access-left p { /* 0319追加・修正 */
	font-size: 13px;
	margin: 0 0 2em;
}
.page .access-left p span { /* 0319追加・修正 */
	display: contents;
}

.page .access-right {
	flex: 3; /* 0319追加・修正 */
}

.page .access-right-long {
	flex: 1; /* 0319追加・修正 */
}
.page .access-title-bold { /* 0319追加・修正 */
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}
.page .access-title-bold img { /* 0319追加・修正 */
	width: 76px;
	margin-right: 1.5em;
}



/* お知らせｰ詳細ページ */

.news-container {
	margin: auto;
	max-width: 850px;
}
.dt-bold {
	font-size: 32px;
    font-weight: bold;
	overflow-wrap: break-word;
}
.wp-block-code {
	margin: 0 0 48px;
}
.news-report-block dt {
	width:100%;
}
.news-report-block dt {
	margin-top: 82px;
}
.news-report-block dt .news-ymd {
	margin-left: 25px;
}
.news-report-block dd {
	margin: 50px 0 76px;
}
.news-report-block p {
	line-height: 1.5;
	overflow-wrap: break-word;
	margin-bottom: 30px;
}
.news-report-block a { 
	color: black;
	font-weight: bold;
}
.news-report-block a::before {
	content: url('../images/circle-chevron-right.svg');
	display: inline-block;
	width: 21px;
	position: relative;
	top: 5px;
	right: 1px;
	margin-right: 5px;
}
.news-report-block a:hover::before {
	content: url('../images/circle-chevron-right-green.svg');
}
.news-report-block a::after {
    content: url('../images/up-right-from-square.svg');
    display: inline-block;
    width: 16px;
    position: relative;
	left: 7px;
    top: 1px;
}
.news-report-block a:hover {
	text-decoration: underline;
}
.news-report-block img {
	max-width: 390px;
	margin-bottom: 30px;
}
.information-under-blcok {
	text-align: center;
	margin-top: 46px;
	margin-bottom: 46px;
	position: relative;
}
.button-round-information {
	padding: 21px 27px 21px 41px;
	border-radius: 60px;
	font-size: 14px;
	font-weight: bold;
}
.button-round-information .chevron-right {
	--color: var(--color-accent) !important;
}

/*施設紹介*/ /* 0319追加・修正 */
#facility .contents-facility {
	display: flex;
	flex-direction: column;
	gap: 8rem;
}

#facility .contents-facility>.page-contents,
#facility .contents-facility>.page-contents-direction {
	display: flex;
	flex-direction: row;
	gap: 58px;
}

#facility .contents-facility>.page-contents-direction {
	flex-direction: row-reverse;
}

#facility .contents-facility>.page-contents-direction>.facility-visual-container {
	justify-content: flex-start;
}

#facility .contents-facility>.page-contents>.facility-visual-container {
	justify-content: flex-end;
}

#facility .contents-facility .facility-explanation {
	line-height: 2.0;
}

/*施設紹介-タイトル背景*/

.facility01,
.facility02,
.facility03,
.facility04,
.facility05,
.facility06 {
	position: relative;
}

#facility .contents-facility .facility01::before,
#facility .contents-facility .facility02::before,
#facility .contents-facility .facility03::before,
#facility .contents-facility .facility04::before,
#facility .contents-facility .facility05::before,
#facility .contents-facility .facility06::before {
	content: "";
	position: absolute;
	left: 8%;
	transform: translateY(-30%);
	z-index: -10;
}

#facility .contents-facility .facility01::before {
	background: url('../images/contents-facility-back01.png') no-repeat center center;
	background-size: cover;
	width: 249px;
	height: 182px;
}

#facility .contents-facility .facility02::before {
	background: url('../images/contents-facility-back02.png') no-repeat center center;
	background-size: cover;
	width: 256px;
	height: 189px;
}

#facility .contents-facility .facility03::before {
	background: url('../images/contents-facility-back03.png') no-repeat center center;
	background-size: cover;
	width: 219px;
	height: 160px;
}

#facility .contents-facility .facility04::before {
	background: url('../images/contents-facility-back04.png') no-repeat center center;
	background-size: cover;
	width: 229px;
	height: 162px;
}

#facility .contents-facility .facility05::before {
	background: url('../images/contents-facility-back05.png') no-repeat center center;
	background-size: cover;
	width: 218px;
	height: 159px;
}

#facility .contents-facility .facility06::before {
	background: url('../images/contents-facility-back06.png') no-repeat center center;
	background-size: cover;
	width: 229px;
	height: 162px;
}


#facility .contents-facility {
	position: relative;
}


/*施設紹介-page-contents画像*/

#facility .contents-facility .facility-visual-container {
	flex: 0 0 55%;
	display: flex;
	gap: 26px;
	justify-content: center;
}

#facility .contents-facility .facility-visual-container .facility-visual1,
#facility .contents-facility .facility-visual-container .facility-visual2,
#facility .contents-facility .facility-visual-container .facility-visual3,
#facility .contents-facility .facility-visual-container .facility-visual4 {
	flex: 0 0 50%;
	height: 200px;
	background-position: center;
}

#facility .contents-facility .facility-visual-container .facility-visual1 {
	background: url('../images/facility01.png') center center;
	background-size: cover;
}

#facility .contents-facility .facility-visual-container .facility-visual2 {
	background: url('../images/facility02.jpg') center center;
	background-size: cover;
}

#facility .contents-facility .facility-visual-container .facility-visual3 {
	background: url('../images/facility03.jpg') center center;
	background-size: cover;
}

#facility .contents-facility .facility-visual-container .facility-visual4 {
	background: url('../images/facility04.jpg') center center;
	background-size: cover;
}

#facility .spot-mark {
	width: 78px;
}

#facility .explanation-box>.facility-title {
	display: flex;
	align-items: end;
	margin-bottom: 12px;
}

#facility .explanation-box>.facility-title>h3 {
	margin-left: 18px;
}

#facility .contents-facility .button-round {
	display: inline-block;
	margin-top: 24px;
	padding: 12px 37px 17px 20px;
	letter-spacing: normal;
	font-size: 16px;
}

#facility .contents-facility .button-round:hover {
	color: #fff;
	text-decoration: none;
}

#facility .contents-facility .button-round>span {
	display: inline-block;
}

#facility>p {
	margin-bottom: 8rem;
}

#facility h3 {
	display: flex;
	align-items: baseline;
	font-size: 27px;
	margin-bottom: 20px;
	color: var(--color-accent);
}


/*施設紹介-col2-page-contents*/
.col2-page-contents {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* Two columns */
	grid-gap: 30px;
	/* Space between items */
}

.col2-page-contents-block {
	margin-bottom: 8rem;
	align-items: stretch;
}

#facility .contents-facility .col2-page-contents .col2-page-contents-block p {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

/*施設紹介-col2-page-contents画像*/

#facility .contents-facility .col2-page-contents {
	justify-content: center;
}

#facility .contents-facility .col2-page-contents .facility-visual5,
#facility .contents-facility .col2-page-contents .facility-visual6,
#facility .contents-facility .col2-page-contents .facility-visual7,
#facility .contents-facility .col2-page-contents .facility-visual8 {
	height: 200px;
	background-position: center;
}

#facility .contents-facility .facility-visual5 {
	background: url('../images/facility05.jpg') center center;
	background-size: cover;
}

#facility .contents-facility .facility-visual6 {
	background: url('../images/facility06.jpg') center center;
	background-size: cover;
}

#facility .contents-facility .facility-visual7 {
	background: url('../images/facility07.jpg') center center;
	background-size: cover;
}

#facility .contents-facility .facility-visual8 {
	background: url('../images/facility08.jpg') center center;
	background-size: cover;
}

/*お知らせ一覧*/
.page-news .title-container h2 {
	font-size: 2.5rem;
	padding-bottom: 8px;
}
.page-news .title-container div {
	font-size: 15px;
	font-weight: bold;
}

.news-date-category-block {
	display: flex;
	/* flex-direction: column; */ /* 日付と未分類を縦並び */
	gap: 30px;
}

.news-date-category-block .news-date{
	font-size: 15px;
	padding-top: 0.3em;
}

.news-title-container {
	display: flex;
	flex-direction: column;
	margin-right: auto;
}

.new-post-block dl {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: 1.5em;
	align-items: flex-start;
	word-break: break-all;
	border-bottom: 2px solid #b2b2b2;
}

.news-contents dl {
	display: flex;
	margin-top: 1.5em;
	align-items: center;
	word-break: break-all;
	border-bottom: 2px solid #b2b2b2;
}

.news-container dl dt span.news-event,
.news-contents dl dt span.news-event {
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	padding: 1.0em 3.5em;
	color: #000;
	background-color: #ecff0b;
	border-radius: 5px;
	margin-left: 7px;
}

.news-container dl dt span.news-uncategorized,
.news-container dl dt span.news-news,
.news-contents dl dt span.news-news {
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	padding: 1.0em 3.5em;
	color: #000;
	background-color: #a6ff5a;
	border-radius: 5px;
	margin-left: 7px;
}

.news-container dl dt span.news-uncategorized,
.news-contents dl dt span.news-uncategorized {
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	padding: 1.0em 3.9em;
	color: #000;
	background-color: gray;
	border-radius: 5px;
	margin-left: 7px;
}

.news-link {
	color:  black;
	display: block;
	margin-left: 90px;
	margin-right: 20px;
}

.chevron-right .news-link {
	line-height: 1.8;
    padding-bottom: 30px;
    padding-top: 20px;
}

.news-link:hover {
	color: black;
	text-decoration: underline;
}

.news-contents dl dd {
	line-height: 1.8;
	font-size: 0.95rem !important;
	font-weight: bold;
	flex: 1;
    margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.news-contents dl dd span.dt-bold {
	font-size: 1.15rem;
	word-break: break-all;
	margin-top: 8px;
}

.news-contents {
	flex: 4;
	display: flex;
	flex-direction: column;
	gap: 90px;
}

.new-all-block dl {
	margin-top: 0 !important;
	align-items: center !important;
}

.new-all-block dl dt {
	margin-bottom: 0;
}

.new-all-block dl dt span {
	margin-bottom: 0 !important;
}

.new-all-block dl dd {
	margin-left: 1em;
	line-height: 4;
	display: grid;
}

.pagination {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 25px;
}
.pagination-Item-Link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	background: #fff;
	font-size: 14px;
	color: #285296;
	font-weight: bold;
	transition: all 0.15s linear;
	border: #285296 solid 2px;
	border-radius: 50%;
}
.pagination-Item-Link.isActive {
	background: #285296;
	color: #fff;
	pointer-events: none;
}
.pagination-Item-Link:not(.isActive):hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.pagination-section {
	display: flex;
	justify-content: center;
	margin: 2rem 130px 8em 135px;
}

.news--gototop-container{
	display: block;
	margin-top: 36px;
	text-align: center;
}
.news--gototop-container .button-round {
	padding-left: 2em;
	padding-right: 1em;
}
.news--gototop-container .button-round .chevron-right {
	--color: var(--color-accent);
	--size: 8px;
}

/* ボランティア */ /* 0319追加・修正 */
.volunteer-container {
	margin-bottom: 10em;
}

.volunteer-title-img{
	display: flex;
	align-items: center;
}
.volunteer-container .volunteer-title-img >img {
	max-width: 30%;
	height: auto;
	object-fit: contain;
	display: inline-block;
	margin-right: 2em;
}

.volunteer-container p {
	margin: 2em 0;
	/* Adds a margin of 1rem */
}

.volunteer-container h3 {
	display: flex;
	align-items: baseline;
	font-size: 22px;
	margin-bottom: 20px;
}

.volunteer-container h3 small {
	font-size: 15px;
}

.volunteer-container h3::before {
	content: "●";
	padding-right: 5px;
	font-size: 14px;
	color:  var(--color-accent);
}

.volunteer-container .tell-container {
	display: flex;
	gap: 20px;
	align-items: center;
}

.volunteer-container .round-label {
	padding: 8px 20px;
	font-size: 14px;
	font-weight: bold;
	color: white;
	background: var(--color-accent);
	border-radius: 30px;
	line-height: 1;
}

.volunteer-container .TEL-label {
	font-size: 32px;
	font-weight: bold;
}

.volunteer-container .volunteer-img-container {
	display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
}

.volunteer-container .volunteer-img-container img {
	width: 100%;
    height: auto; /* 0324追加・修正 */
	object-fit: cover; /* 0324追加・修正 */
}

.volunteer-container .volunteer-img1 img {
	margin-top: 6em;
}

.volunteer-container .volunteer-img2{
	text-align: center;
}
.volunteer-container .volunteer-img2 img{
	width: 85%;
}
.volunteer-container .volunteer-img3{
	text-align: right;
}

.volunteer-container .volunteer-img3 img {
	margin-top: 7em;
}

/* ポリシー */  /* 0319追加・修正 */

.policy-container {
    margin-bottom: 70px;
}

.policy--block {
    word-break: break-all;
}

.policy-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}
.policy-list {
    counter-reset: level1;
}
.policy-list, .policy-list ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.policy-list > li {
    counter-increment: level1;
    position: relative;
    padding-left: 3.5em;
    margin-bottom: 35px;
    /*font-weight: bold;*/
}
.policy-list > li::before {
    content: counter(level1) ' ';
    position: absolute;
    left: 18px;
    font-weight: bold;
    color: var(--color-accent);
}


/* 関連リンク */  /* 0319追加・修正 */
.link-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 37px;
}
.explanation-details{
	margin-bottom: 3em;
}
.explanation-details li {
    margin-bottom: 10px;
}
.important-points li:first-child {
    margin-top: 10px;
}

.important-points li {
    margin-left: 10px;
}


.links-summary, .site-map-links {
    margin-bottom: 110px;
}

.links-summary > li , .site-map-links > li {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 36px;
	list-style: none; /* 0324追加・修正 */
}
.links-summary > li a , .site-map-links > li a {
	color: black;
}
.links-summary > li a:hover , .site-map-links > li a:hover {
	color: var(--color-accent);
}

.links-summary > li a::before , .site-map-links > li a::before {
    content: url(../images/circle-chevron-right.svg);
    display: inline-block;
    width: 21px;
    position: relative;
    top: 5px;
    right: 1px;
    margin-right: 5px;
}

.links-summary > li a::after {
    content: url(../images/up-right-from-square.svg);
    display: inline-block;
    width: 16px;
    position: relative;
    left: 7px;
    top: 1px;
}

.explanation-details li, .important-points li, .links-summary li .site-map-links > li {
    list-style-type: none;
}

/* 
.button-round {
    position: relative;
    display: inline-block;
    font-family: "Noto Sans JP", serif;
    font-weight: bold;
    line-height: 1;
    font-size: 15px;
    padding: 15px 45px 15px 45px;
    border: 2px solid black;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    background: white;
    color: black;

	margin-bottom: 100px;
}

.button-round::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s ease-in-out;
}

.button-round:hover {
	color: white;
	background: #285296;;
}

.button-round:hover::after {
	right: 15px;
	border-color: white;
} */

