@charset "UTF-8";

/*----------------------------------------

	article
		- #emergency
		- #mainvisual
		- #article_news
		- #box01
		- #box02
		- #box03
		- #box04
		- #box05
		- #sns
		- #bnr

-----------------------------------------*/

article {
	display: flex;
	flex-direction: column;
}
article #emergency {
	order: 0;
}
article #mainvisual {
	order: 1;
}
article #mainvisual+ul {
	order: 2;
}
article #article_news {
	order: 3;
}
article #box01 {
	order: 6;
}
article #box02 {
	order: 5;
}
article #box03 {
	order: 4;
}
article #box04 {
	order: 7;
}
article #box05 {
	order: 8;
}
article #sns {
	order: 9;
}
article #bnr {
	order: 10;
}

article img {
	height: auto;
	width: 100%;
}


/*----------------------------------------
	link_settings
-----------------------------------------*/


/* 基本リンク色 */

.news a:link,
.news a:visited {
	color: #000000;
	text-decoration: none;
}

.news a:hover,
.news a:active {
	color: #000000;
	text-decoration: none;
	/*text-decoration: underline;*/
}


/*----------------------------------------
	mainvisual
-----------------------------------------*/

#mainvisual {
	position: relative;
	height: 40vw;
}

#mainvisual li {
	position: absolute;
	/*top: 0;*/
	left: 0;
	width: 100%;
}

#mainvisual+ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0 0 5px;
}

#mainvisual+ul li {
	width: calc((100% - 10px)/3);
	margin: 5px 5px 0 0;
	box-sizing: border-box;
}

#mainvisual+ul li:nth-of-type(3n) {
	margin-right: 0;
}



/*----------------------------------------
	#article_news
-----------------------------------------*/

#article_news {
	margin: 10px 0 20px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

#article_news h1 {
	height: 35px;
	width: 90px;
	margin: 0 auto;
	padding-bottom: 19px;
}

#article_news ruby rb,
#article_news ruby rt {
	white-space: nowrap;
}

/* 外部リンク */
#article_news a span.link::after {
	content: '';
	display: inline-block;
	height: 9px;
	width: 10px;
	margin-left: 5px;
	/* padding-right: 18px; */
	background: url(../img/c_link_ic01.png) no-repeat right center;
	background-size: 10px 9px;
}

/* PDF */
#article_news a span.pdf::after {
	content: '';
	display: inline-block;
	height: 15px;
	width: 15px;
	margin-left: 5px;
	/* padding: 2px 22px 2px 0; */
	background: url(../img/c_link_ic02.png) no-repeat right center;
	background-size: 15px 15px;
}



/*----------------------------------------
	.newsM
-----------------------------------------*/

.newsM {
	position: relative;
	/* height: calc((100vw - 74px)/3); */
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 0 auto;
	padding: 0 37px;
	border-top: none;
	letter-spacing: 0.05em;
}

.newsM .swiper-wrapper {
	align-items: stretch;
}

.newsM .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: auto;
}

.newsM .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.swiper-slide-shadow-top,
.swiper-slide-shadow-bottom {
	height: calc((100vw - 74px)/3);
}

.newsM .inner a {
	display: flex;
	width: 100%;
}

.newsM .inner a figure {
	overflow: hidden;
	min-height: 100px;
	height: calc((100vw - 74px)/3);
	min-width: 150px;
	width: calc((100vw - 74px)/2);
}

.newsM .inner a figure+dl {
	min-width: 135px;
	margin-left: 10px;
	padding-right: 5px;
	box-sizing: border-box;
}


/* 日付 */

.newsM dl {
	max-width: calc((100vw - 74px)/2 - 10px);
	width: calc((100vw - 74px)/2 - 10px);
	color: #333;
}

.newsM dl dt {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	line-height: 0;
}

.newsM dl dt span img {
	width: 55px;
	padding-right: 3px;
}


/* 記事 */

.newsM dl dd {
	display: inline-block;
	width: 100%;
	padding-top: 1px;
	line-height: 0;
}

.newsM dd>span+span {
	display: block;
	width: 100%;
	margin-top: 5px;
	letter-spacing: 0em;
}

.newsM .swiper-button-prev,
.newsM .swiper-button-next {
	position: absolute;
	height: calc((100vw - 74px)/3);
	width: 37px;
	fill: #666;
	stroke: none;
	stroke-width: 0;
	background-color: #efeeed;
	z-index: 10000;
	outline: none;
}

.newsM .swiper-button-prev {
	top: 22px;
	left: 0;
	background-image: url(../img/i_topics_arrow01.gif);
	background-size: 20px 56px;
}

.newsM .swiper-button-next {
	top: 22px;
	right: 0;
	background-image: url(../img/i_topics_arrow02.gif);
	background-size: 20px 56px;
}

/* 記事が一件の場合 ＜＞を消す */
.noswiper ~ .swiper-button-prev,
.noswiper ~ .swiper-button-next {
	display: none;
}

@media (max-width: 374px) {
	.newsM {
		height: auto;
		min-width: auto;
		width: 300px;
		padding: 0 calc((100vw - 300px)/2);
	}
	.swiper-slide-shadow-top,
	.swiper-slide-shadow-bottom {
		height: 100px !important;
	}
	/* 幅が下記の場合 ＜＞を消す */
	.newsM .swiper-button-prev {
		height: 100px !important;
		width: calc((100vw - 300px)/2);
	}

	.newsM .swiper-button-next {
		height: 100px !important;
		width: calc((100vw - 300px)/2);
	}
}
@media (max-width: 360px) {
	.newsM .swiper-button-prev,
	.newsM .swiper-button-next {
		background-size: 70%;
	}
}
@media (max-width: 320px) {
	.newsM .swiper-button-prev,
	.newsM .swiper-button-next {
		display: none;
	}
}


/*----------------------------------------
	.newsS
-----------------------------------------*/

#newsS {
	/* margin-top: 9px; */
	border-top: none;
	letter-spacing: 0.03em;
}

#newsS li {
	padding: 8px 0 7px;
	border-bottom: 1px solid #efeeed;
}

#newsS li:last-child {
	border-bottom: none;
}

#newsS li dl {
	display: flex;
	width: calc(100vw - 74px);
	margin: 0 auto;
}

@media screen and (max-width:374px) {
	#newsS li dl {
		width: 300px;
	}
}


/* 日付 */

#newsS li dl dt {
	display: inline-block;
	width: 60px;
	vertical-align: top;
}

#newsS li dl dt span {
	display: block;
	text-align: center;
}

#newsS li dl dt span+span {
	display: block;
	width: 55px;
	margin-top: 1px;
}

#newsS dl dt span img+img {
	margin-top: 3px;
}


/* 記事 */

#newsS li dl dd {
	display: inline-block;
	width: 100%;
	padding: 0 0 0 10px;
}

@media screen and (min-width:568px) {
	#newsS li dl dd {
		width: auto;
	}
}

#newsS dd>span {
	display: inline;
}

/* #newsS dd>span:first-child {
	white-space: nowrap;
} */

#newsS dd>span+span {
	display: block;
}

/* リンク 一覧を見る */
#newsS+p {
	width: 100%;
	margin-top: 20px;
	background-color: #efeeed;
	text-align: center;
}

#newsS+p a {
	display: block;
	color: #333;
}

#newsS+p a span {
	display: inline-block;
	padding: 11px 24px 11px 0;
	background: url(../img/c_arrow04.png) no-repeat right top 12px;
	background-size: 13px 13px;
}

/*----------------------------------------
	#box01
-----------------------------------------*/

#box01 {
	min-width: 300px;
	width: calc(100vw - 74px);
	/*margin: 40px auto 0;*/
	margin: 40px auto;
}

#box01 div:nth-of-type(1) {
	background-color: #efeeed;
}

#box01 div:nth-of-type(1) p {
	padding: 12px 13px 10px;
	letter-spacing: 0.06em;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	line-height: 1.45;
}

#box01 div:nth-of-type(1) ul {
	display: flex;
	padding: 0 0 13px 13px;
}

/* リンク 一覧を見る */
#box01 div:nth-of-type(1) ul li {
	width: 50%;
}
#box01 div:nth-of-type(1) ul li+li {
	margin-left: -0.2em;
}

#box01 div:nth-of-type(1) ul li a {
	display: block;
	color: #333;
}

#box01 div:nth-of-type(1) ul li a span {
	display: inline-block;
	padding: 0 14px 0 0;
	background: url(../img/c_arrow04.png) no-repeat right top 2px;
	background-size: 13px 13px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.07em;
	white-space: nowrap;
}

#box01 div+ul {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}

#box01 div+ul li {
	width: calc((100% - 6px)/2);
}

#box01 div+ul li p {
	padding: 3px 0 0 5px;
	letter-spacing: -0.03em;
}

#box01 div+ul li a {
	display: block;
	color: #333;
}


/*----------------------------------------
	#box02
-----------------------------------------*/
#box02 {
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 40px auto 0;
}

#box02 h1 {
}

#box02 div:nth-of-type(1) {
	background-color: #efeeed;
}

#box02 div:nth-of-type(1) p {
	padding: 12px 13px 10px;
	letter-spacing: 0.06em;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	line-height: 1.45;
}

#box02 div:nth-of-type(1) ul {
	display: flex;
	padding: 0 0 13px 13px;
}

/* リンク 一覧を見る */
#box02 div:nth-of-type(1) ul li {
	width: 50%;
}
#box02 div:nth-of-type(1) ul li+li {
	margin-left: -0.5em;
}

#box02 div:nth-of-type(1) ul li a {
	display: block;
	color: #333;
}

#box02 div:nth-of-type(1) ul li a span {
	display: inline-block;
	padding: 0 14px 0 0;
	background: url(../img/c_arrow04.png) no-repeat right top 2px;
	background-size: 13px 13px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.07em;
	white-space: nowrap;
}


/*----------------------------------------
	#box03
-----------------------------------------*/

#box03 {
	/*margin-top: 40px;*/
	margin-top: 20px;
	background: #ede7dd url(../img/i_visit_bg01.png) no-repeat center top;
	background-size: contain;
}

#box03 div {
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 0 auto;
}

#box03 div h1 {
	height: auto;
	width: 165px;
	margin: 0 auto;
	padding: 62px 0 15px;
}

#box03 div p+p {
	margin-top: 4px;
}

#box03 ul {
	display: flex;
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 0 auto;
	padding: 5px 0 13px 0;
}

/* リンク 一覧を見る */
#box03 ul li {
	width: calc((100% - 6px)/2);
	background-color: #f6f6f6;
}

#box03 ul li+li {
	margin-left: 6px;
}

#box03 ul li a {
	display: block;
	color: #333;
}

#box03 ul li a span {
    display: inline-block;
    padding: 15px 16px 15px 12px;
    background: url(../img/c_arrow04.png) no-repeat right top 16px;
    background-size: 13px 13px;
	-webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.07em;
	white-space: nowrap;
}

#box03 dl {
	min-width: 280px;
	width: calc(100vw - 102px);
	margin: 1px auto 0;
	padding-bottom: 40px;
	-webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

#box03 dl dt {
    letter-spacing: 0.05em;
}

#box03 dl dt+dd {
	margin-top: 10px;
}

#box03 dl dd {
	display: flex;
	justify-content: space-between;
    letter-spacing: 0.05em;
}

#box03 dl dd+dd {
	margin-top: 2px;
}

#box03 dl dd span:first-child::before {
	content: '■';
	display: inline-block;
	margin-right: 0.5em;
	color: #dccdb3;
}

#box03 dl dd span+span {
	padding-right: 2.5em;
}

@media (max-width: 375px) {
	#box03 dl dd span+span {
		padding-right: 0;
	}
}


/*----------------------------------------
	#box04
-----------------------------------------*/

#box04 {
	background-color: #333;
}

#box04 div {
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 0 auto;
}

#box04 div h1 {
	height: auto;
	width: 147px;
	margin: 0 auto;
	padding: 23px 0 14px;
}

#box04 div h1+p {
	padding: 0 10px 20px;
	color: #ccc;
	-webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
	line-height: 1.4;
}

#box04 ul {
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 0 auto;
	padding: 0 0 24px 0;
}

#box04 ul li {
	display: inline-block;
	width: calc((100% - 10px)/2);
}

#box04 ul li+li {
	margin-left: 10px;
}

#box04 ul li a {
	display: block;
	color: #ccc;
	text-align: center;
}

#box04 ul li a span {
    display: inline-block;
    padding: 13px 16px 15px 2px;
    background: url(../img/c_arrow04.png) no-repeat right top 16px;
    background-size: 13px 13px;
	-webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
	white-space: nowrap;
}


/*----------------------------------------
	#box05
-----------------------------------------*/

#box05 {
	background: #335520 url(../img/i_nature_bg01.jpg) no-repeat center top;
	background-size: contain;
}

#box05 div {
	display: flex;
	justify-content: space-between;
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 0 auto;
}

#box05 div h1 {
	height: auto;
	width: 54px;
	padding: 27px 0 0 5px;
}

#box05 ul {
	display: flex;
	width: 255px;
	margin: 0 auto;
	padding: 60px 4px 22px 0;
	text-align: right;
}

#box05 ul li+li {
	margin-left: 15px;
}

#box05 ul li a {
	display: block;
	color: #ccc;
	text-align: center;
}

#box05 ul li a figure {
	width: 115px;
}

#box05 ul li a span {
	display: inline-block;
	padding: 9px 20px 0 0;
	background: url(../img/c_arrow04.png) no-repeat right top 11px;
	background-size: 13px 13px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	white-space: nowrap;
}

#box05 div+p {
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 0 auto;
	padding-bottom: 40px;
}

#box05 div+p a {
	display: block;
}


/*----------------------------------------
	#sns
-----------------------------------------*/
#sns {
	min-width: 280px;
	width: calc(100vw - 102px);
	margin: 25px auto 0;
	padding-bottom: 20px;
}

#sns dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#sns dl dt,
#sns dl dd {
	padding-bottom: 0;
	vertical-align: middle;
}

#sns dl dt {
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

#sns dl dd {
	display: inline-block;
}

#sns dl dd a {
	display: block;
}

#sns dl dd:nth-of-type(1) {
	width: 41px;
	margin-left: 0;
}

#sns dl dd:nth-of-type(2) {
    width: 31px;
    margin-left: 20px;
}

#sns dl dd:nth-of-type(3) {
    width: 31px;
    margin-left: 20px;
}

/*----------------------------------------
	#bnr
-----------------------------------------*/
#bnr {
	min-width: 300px;
	width: calc(100vw - 74px);
	margin: 0 auto 0;
}

#bnr li {
	margin-top: 5px;
}
