@charset "UTF-8";
/* CSS Document */

/*----------------------------------------------------------
　トピックスcss
----------------------------------------------------------*/
.wrap_s{
	width: 100%;
    max-width: 100%;
	padding: 100px 0;
}
/*（スマホ）
-----------------------------*/
@media screen and (max-width: 736px){
	.wrap_s {
    padding-top: 1em;
}
.wrap_all {
	padding: 50px 0em 50px;
}
}

/*見出し
-----------------------------*/
.copy {
	font-size: 1.8em;
    padding: 3em 0 1em 0;
    margin: 0 auto;
    margin-bottom: 0em;
    color: #333;
    letter-spacing: 0.1em;
	font-weight: bold;
	text-align: center;
	
    position: relative;
    padding: .7em .7em;
    color: #333;
}
.copy::before,
.copy::after {
    display: inline-block;
    position: absolute;
    width: 1em;
    height: 1em;
    content: '';
}
.copy::before {
    top: 0;
    left: 0;
    border-top: 3px solid #333;
    border-left: 3px solid #333;
}
.copy::after {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
}
@media screen and (max-width: 736px){
	.copy {
		width: 90%;
		font-size: 1.4em;
		letter-spacing: 0;
		padding: .7em;
	}
	.copy br {
		display: none;
	}
}



.cafe .article_box h3 {
	letter-spacing: .1em;
	margin-bottom: 1em;
}
.article_txt > p {
    font-weight: normal;
	line-height: 1.7em;
	letter-spacing: .1em;
}

/*----------------------------------------------------------
　一覧ページ
----------------------------------------------------------*/
/*リスト
-----------------------------*/
.topicslist_wrap{
	display: block;
	max-width: 1000px;
}
.topicslist_wrap h2{
	border-bottom: 1px solid #333333;
}
.topicslist_wrap .tag_wrap a {
    font-size:0.9em;
}
.tag_box{
display: flex;
	justify-content: space-between;
}
.tag_box p{
width: 19%;
}
.area_box p{
width: 24%;	
}
.topicslist_wrap h4{
	font-size: 1.25em;
	margin: 0em;
	padding: .5em 0;
	color: #333;
	border-left: 3px solid #E98228;
		padding-left: 0.5em;
}
.article_img::before {
	background-image: url(../common/img/corner_w_l.svg);
}
.article_img::after {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: -5px;
    right: -5px;
	background-image: url(../common/img/corner_w_r.svg);
    background-repeat: no-repeat;
}
/*リスト（スマホ）
-----------------------------*/
@media screen and (max-width: 736px){
.topicslist_wrap{
	padding-bottom: 2em;
}
}

/*----------------------------------------------------------
　詳細ページ
----------------------------------------------------------*/
.maintext{
	width: 100%;
    max-width: 800px;
	margin: 0 auto;
}
article section{
	padding: 50px 0 100px;
		padding-top: 0;
}
article section:nth-of-type(even){
	background: #F5F5F5;
}
article header.main_title{
	position: relative;
	z-index: 1;
	border-top: none;
	max-width: 600px;
	margin: 0 auto;
	width: 100%;
}
article header .main_img img{
	width: 100%;
}
article header .sec_title {
	position: absolute;
	left: -40px;
	bottom: 0;
	width: auto;
	display: none;
}
article header .catch {
	/*-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;*/
	background-color: #000000dc;
	color: #fff;
	padding: 0.2em;
	line-height: 1.5;
	display: inline-block;
    position: absolute;
    top: 40px;
	left: 0;
	font-size: 1.725em;
    letter-spacing: 0.02em;
	text-align: left;
	/* white-space: nowrap; */
}
iframe{
	width: 100%;
}
figure {
    margin: 3em 0 2em;
}
figcaption {
   font-size: 0.875em;
	text-align: center;
	font-weight: bold;
}

/*タイトル
-----------------------------*/
.topics_name{
	font-size: 2em;
	color: #BD0813;
	font-weight: bold;
	text-align: center;
	padding: 40px 0 0;
	margin: 0 0 50px;
}
/*タイトル（スマホ）
-----------------------------*/
@media screen and (max-width: 736px){
	article section{
		padding: 50px 2em 100px;
	}
	article header .catch {
		font-size: 1.225em;
		/*height: 130%;*/
	}
	.sec_title img{
		width: 50%;
	}
	article header .sec_title {
        position: absolute;
        left: 0px;
        bottom: -60px;
        width: auto;
        text-align: left;
	}
}




/* 本文中に外部リンクがあった場合 */
article .maintext a[href^="http://"],
article .maintext a[href^="https://"],
article .maintext a[target="_blank"]	{
	padding-right: 15px;
	background: transparent url(../imagem/icons/blank.gif) no-repeat center right;
}

/*ダウンロード
-----------------------------*/
ul.download{
	margin: 50px 0 0;
	padding: 50px 0;
	border-top: #ccc 1px solid;
}
ul.download li {
	margin: 0;
	padding: 0 0 5px;
	list-style: none;
	line-height: 16px;
}
ul.download li a {
	line-height: 1.7em;
	padding: 0;
	margin: 0;
}

	/* 添付ファイルにアイコンを付属 */
	ul.download li a[href$='.doc'],
	ul.download li a[href$='.docx'] {
		padding-left: 20px;
		background: transparent url(../imagem/icons/doc.gif) no-repeat center left;
	}
	
	ul.download li a[href$='.txt'] {
		padding-left: 20px;
		background: transparent url(../imagem/icons/txt.gif) no-repeat center left;
	}
	
	ul.download li a[href$='.xls'] ,
	ul.download li a[href$='.xlsx'] {
		padding-left: 20px;
		background: transparent url(../imagem/icons/xls.gif) no-repeat center left;
	}
	
	ul.download li a[href$='.pdf'] { 
		padding-left: 20px;
		background: transparent url(../imagem/icons/pdf.gif) no-repeat center left;
	}
	
	ul.download li a[href$='.zip'],
	ul.download li a[href$='.rar'],
	ul.download li a[href$='.lzh'] { 
		padding-left: 20px;
		background: transparent url(../imagem/icons/zip.gif) no-repeat center left;
	}
	
	ul.download li a[href$='.jpg'],
	ul.download li a[href$='.gif'],
	ul.download li a[href$='.png'],
	ul.download li a[href$='.bmp'],
	ul.download li a[href$='.jpeg']{ 
		padding-left: 20px;
		background: transparent url(../imagem/icons/pic.gif) no-repeat center left;
	}
/*ダウンロード（スマホ）
-----------------------------*/
@media screen and (max-width: 736px){
	ul.download{
		padding: 15px 0;
	}
}

/*本文
-----------------------------*/
article .maintext h1,
article .maintext h2,
article .maintext h3,
article .maintext h4,
article .maintext h5,
article .maintext h6 {
	clear: both;
}
article .maintext h2{
	font-size: 1.4em;
	margin: 1em 0 .5em;
	padding: .5em 0 .5em 0;
	border-bottom: 1px solid #BDA656;
	color: #BDA656;
	line-height: 1.6em;
}
article .maintext h3{
	font-size: 1.563em;
	margin: 1em 0 .5em;
	padding: .5em .5em .5em 2em;
	border-bottom: 1px solid #000;
	color: #fff;
	line-height: 1.6em;
	background:url("images/title_icon.svg") ,#E98228;
	background-position: left 10px center;
	background-repeat: no-repeat;
}
article .maintext h4{
	font-size: 1.4em;
	padding: 3em 0 1em 0;
	margin: 0 auto;
	margin-bottom: 2em;
	color: #333;
	/*border-bottom: 3px dotted #000;
	border-left: 3px solid #E98228;*/
		text-align: center;
		position: relative;
		display: flex;
		letter-spacing: 0.1em;
    justify-content: center;
    align-items: center;
}

/*子見出し　装飾*/
article .maintext h4::before,
article .maintext h4::after {
    width: 3px;
    height: 40px;
    background-color: #333;
    content: '';
}

article .maintext h4::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

article .maintext h4::after {
    transform: rotate(35deg);
    margin-left: 30px;
}
@media screen and (max-width: 736px){
article .maintext h4:first-child {
	padding-top: 0;
}
	
article .maintext h4{
	font-size: 1.2em;
	padding: 3em 0 1em 0;
	margin-bottom: 1.5em;
	letter-spacing: 0;
}
article .maintext h4::before,
article .maintext h4::after {
    height: 30px;
}
article .maintext h4::before {
    margin-right: 20px;
}
article .maintext h4::after {
    margin-left: 20px;
}
}


article .maintext h5{
	font-weight: bold;
	font-size: 1.4em;
	margin:0em  0 0.5em;
	margin-bottom: 1em;
	color: #E98228;
		position: relative;
    	padding: .5em 0em .7em;
    	border-bottom: 3px solid #333;
    	color: #333;
	font-size: 2.5em;
	font-family: 'Montserrat', "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
article .maintext h5 br {
	display: none;
}
article .maintext h5 span {
	font-size: 0.4em;
	margin-left: 1.5em;
	letter-spacing: 0.1em;
}
/*h5 装飾*/
article .maintext h5::before,
article .maintext h5::after {
    position: absolute;
    left: 30px;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
article .maintext h5::before {
    background-color: #333;
}
article .maintext h5::after {
    bottom: -11px;
    background-color: #F5F5F5;
}
@media screen and (max-width: 736px){
article .maintext h5{
	font-size: 2em;
}
article .maintext h5 span {
	font-size: 0.5em;
	margin-left: 1em;
}
}


article .maintext h6{
	font-weight: bold;
	font-size: 1em;
	margin: 1em 0;
	color: #333;	
}

article .maintext{
	line-height: 1.7em;
		padding-top: 50px;
}
@media screen and (max-width: 736px){
article .maintext{
	padding-top: 0;
}
}


article .maintext p {
	margin: 0 0 2em;
	line-height: 2em;
	font-size: 100%;
	text-align: left;
}
@media screen and (max-width: 736px){
article .maintext p:last-child {
	padding-top: 0;/*？*/
	margin-bottom: 0;
}
}
article .maintext p:has(img)  {
	text-align: center;
}
article .maintext img {
	max-width: 100%;
	height: auto;
	margin: 0 auto
}
article .-u-PcNoneSpBlock img{
	margin-bottom: 2em;
}

.maintext a,.download a{
	color: #3D74AA;
}

/*詳細情報
-----------------------------*/
article .maintext dl p{
	margin: 0;
}
article .maintext dl dd{
	font-weight: bold;
	margin: 0;
}
article .maintext dl dt{
	border-bottom: 1px solid #ccc;
	margin-bottom: 1em;
	padding-bottom: 1em;
}

/*注意書き
-----------------------------*/
.attention{
	font-weight: bold;
	color:#C22A23;
}





/* スライダー上書き */
.swiper {
	width: 100%;
}
.swiper-button-next, .swiper-button-prev{
	bottom: -4px;
	top: auto;
}
.swiper-button-prev{
	left: 35%;
}
.swiper-button-next{
	right: 33%;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next{
	height: 50px;
	width: 50px;
}
/* 前へ次への矢印カスタマイズ */
/* .swiper-button-prev::after,
.swiper-button-next::after{
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 40px;
	margin: auto;
	width: 40px;
} */
/* 前への矢印カスタマイズ */
/* .swiper-button-prev::after{
	background-image: url(common/images/swiper_arrow_l.svg);
} */
/* 次への矢印カスタマイズ */
/* .swiper-button-next::after{
	background-image: url(common/images/swiper_arrow_r.svg);
} */
/* 画像サイズ調整 */
.swiper-slide img {
	height: auto;
	width: 100%;
}

/*キャプション*/
.mainvisual .swiper-slide img {
	position: relative;
}
.swiper-slide .caption {
	color: #fff;
	position: absolute;
	bottom: 1em;
	left: 0;
	margin: 0;
	padding: .7em;
	padding-left: 1em;
	padding-bottom: .4em;
	font-size: .85em;
	letter-spacing: .1em;
	background: hsla(0,0%,0%,0.50);
	line-height: .8em;
	font-weight: bold;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.swiper-slide .caption span {
	font-size: 0.5em;
	letter-spacing: 0.1em;
	font-weight: normal;
	font-family: 'Montserrat', "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}


/* ページネーション */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction{
	/* position: static; */
	margin-top: 2em;
	z-index: -1;
} 
/* .pickup_wrap .swiper-wrapper{
	min-height: 120dvh;
	height: 75vmax;
} */
.sp_only{
	display: none !important;
}
@media screen and (max-width: 736px){
	.swiper-button-next{
		right: 30%;
	}
	/* スライダー上書き */
	.swiper-button-next, .swiper-button-prev{
		bottom: -14px;
		top: auto;
	}
	.news_wrap .swiper-wrapper .swiper-slide{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.pc_only{
		display: none !important;
	}
	.sp_only{
		display: block !important;
	}
}




/* スライダー上書き */
.swiper-button-next, .swiper-button-prev{
	bottom: -4px;
	top: auto;
}
.swiper-button-prev{
	left: 35%;
}
.swiper-button-next{
	right: 33%;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next{
	height: 50px;
	width: 50px;
}
/* 前へ次への矢印カスタマイズ */
/* .swiper-button-prev::after,
.swiper-button-next::after{
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 40px;
	margin: auto;
	width: 40px;
} */
/* 前への矢印カスタマイズ */
/* .swiper-button-prev::after{
	background-image: url(common/images/swiper_arrow_l.svg);
} */
/* 次への矢印カスタマイズ */
/* .swiper-button-next::after{
	background-image: url(common/images/swiper_arrow_r.svg);
} */
/* 画像サイズ調整 */
.swiper-slide img {
	height: auto;
	width: 100%;
}

/*キャプション*/
.mainvisual .swiper-slide img {
	position: relative;
}
.swiper-slide .caption {
	color: #fff;
	position: absolute;
	bottom: 1em;
	left: 0;
	margin: 0;
	padding: .7em;
	padding-left: 1em;
	padding-bottom: .4em;
	font-size: .85em;
	letter-spacing: .1em;
	background: hsla(0,0%,0%,0.50);
	line-height: .8em;
	font-weight: bold;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.swiper-slide .caption span {
	font-size: 0.5em;
	letter-spacing: 0.1em;
	font-weight: normal;
	font-family: 'Montserrat', "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}


/* ページネーション */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction{
	/* position: static; */
	margin-top: 2em;
	z-index: -1;
} 
/* .pickup_wrap .swiper-wrapper{
	min-height: 120dvh;
	height: 75vmax;
} */
.sp_only{
	display: none !important;
}
@media screen and (max-width: 736px){
	.swiper-button-next{
		right: 30%;
	}
	/* スライダー上書き */
	.swiper-button-next, .swiper-button-prev{
		bottom: -14px;
		top: auto;
	}
	.news_wrap .swiper-wrapper .swiper-slide{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.pc_only{
		display: none !important;
	}
	.sp_only{
		display: block !important;
	}
}



/*----------------------------------------------------------
　秋祭り
----------------------------------------------------------*/
#wander.wrap_all{
	position: relative;
	padding: 0 2em;
	margin-bottom: 2em;
}
.wander_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
#wander h2{
	text-align: left;
}
.wander_box,
.fes_box{
	position: relative;
}
.wander_box h3,
.fes_box h3{
	text-align: center;
	font-size: 1.5em;
	margin: 0.5em 0;
	letter-spacing: 0.1em;
	color: #333;
	font-family: 'Montserrat', "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.wander_box a,
.fes_box a{
	text-decoration: none;
}
.wander_box img{
	width: 100%;
}
.wander_box .btn a{
	min-width: 300px;
}
@media print, screen and (min-width: 737px){
	#wander .swiper-button-prev,
	#wander .swiper-button-next {
		display: none;
	}
	#wander .swiper-wrapper {
		display: flex;
		justify-content: space-between;
		/*padding-bottom: 6em;*/
	}
	#wander .swiper-slide {
		width: 30%;
	}
	#wander .wander_box {
		width: 100%;
		height: 100%;
	}
	.wander_box .btn,
	.fes_box .btn{
		position: absolute;
		bottom: 3%;
		left: 0;
		right: 0;
	}
}
@media screen and (max-width: 736px){
	#wander .swiper-wrapper {
		/*padding-bottom: 2em;*/
	}
}
@media screen and (max-width: 736px){
	.wander_box{
		width: 90%;
		margin: 0 auto;
	}
	.wander_box .btn a{
		min-width:100%;
	}
	#wander .swiper-pagination-fraction {
		bottom: 1px;
		position: absolute;
	}
	.wander_box h3,
	.fes_box h3{
		font-size: .9em;
	}
}



/*----------------------------------------------------------
swiper.js 上書き
----------------------------------------------------------*/
.swiper{
	padding: 0em 0 6em;
}
.mainvisual .swiper{
	padding: 0em 0 0em;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction{
	bottom: 3px;
}
.swiper-button-prev{
	left: -100%;
}
.swiper-button-next{
	right: -100%;
}
.swiper-button-prev-a{
	background-image: url(../common/img/swiper_arrow_l.svg);
	position: absolute;
	right: auto;
	left: 40%;
	width: 30px;
	height: 30px;
	z-index: 9;
}
.swiper-button-next-a{
	background-image: url(../common/img/swiper_arrow_r.svg);
	position: absolute;
	left: auto;
	right: 40%;
	width: 30px;
	height: 30px;
	z-index: 9;
}
.swiper-button-prev-a,
.swiper-button-next-a{
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	bottom: 0;
}


/*アクセス方法
-----------------------------*/
@media screen and (max-width: 736px){
	.swiper .btn{
		margin: 0 2em;
	}
	.swiper-button-prev-a{
		left: 20%;
	}
	.swiper-button-next-a{
		right: 20%;
	}
}

