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


/* ==================== base =====================*/

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

html {
	font-size: 62.5%;
}

body {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #754c24;
	-webkit-text-size-adjust: 100%;
}
.montserrat{
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	letter-spacing: .15em;
}

a {
	transition: .3s;
}

a:link {
	color:#754c24;
	text-decoration: none;
}
a:visited {
	color:#754c24;
	text-decoration: none;
}
a:hover,
a:focus {
	color: #32624c;
	text-decoration: none;
	}
a:active {
	color:#32624c;
}


.alpha a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}


.alpha_a a img {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.alpha_a a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}


/*ページトップへ（矢印）*/
#ptop {
    position: fixed;
    bottom: 15px;
    right: 15px;
	z-index: 1;
}
#ptop a {
    text-align: center;
    display: block;
    border-radius: 5px;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}


/*スマホでは非表示*/
.sp_displaynone {
    display: none;
}



/*==================== header ====================*/

header {
	width: 100%;
}

.h_top {
	width: 100%;
}





/*==================== メニュー ====================*/
.base-container{
    display: none;
    opacity: 0;
}

.g_navi_wrap{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.g_navi_menu_list_t{
    display: flex;
    justify-content: center;
    height: auto;
}
.g_navi_text{
    width: 90%;
}
.g_navi_text:nth-child(n+4) {
    border-top: solid 1px #fff;
}
.g_navi_drop_item a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #32624c;
    border-right: solid 2px #32624c;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 22px;
}
.g_navi_drop_item a,.g_navi_text a{
display: block;
height: 100%;
    width: 100%;
    color: #32624c;
    text-decoration: none;
    padding: 15px 15px 15px 25px;
    position: relative;
    background-color: #fff;
    border-bottom: solid 1px #32624c;
}

#g_navi_input{
    display: none;
}

.menu_btn{
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    height: 55px;
    width: 55px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #32624c;
    cursor: pointer;
	border-radius: 15px;
}
.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
	border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    transition: .3s;
}
.menu_btn span:before {
    bottom: 8px;
}
.menu_btn span:after {
    top: 8px;
}
#g_navi_input:checked ~ .menu_btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#g_navi_input:checked ~ .menu_btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: .3s;
}
#g_navi_input:checked ~ .menu_btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: .3s;
}
#g_navi_input {
    display: none;
}
.g_navi_menu_list_t {
    display: block;
    padding: 70px 20px 0;
    line-height: normal;
}

.g_navi_menu_list_t label {
    border-bottom: solid 1px #fff;
}

.g_navi_menu_text {
    border-bottom: solid 1px #fff;
}

.g_navi_menu_text a {
    display: block;
    width: 100%;
    color:#ffffff;
    padding: 15px;
    position: relative;
}
.g_navi_menu_text a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 22px;
}
.g-navi_menu_con {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #32624c;
    transition: all 0.5s;/*アニメーション設定*/
    overflow-y: auto; /* 縦スクロールを有効にする */
}
#g_navi_input:checked ~ .g-navi_menu_con {
    height: 100%;
    left: 0;/*メニューを画面内へ*/
}
.g_navi_accordion_con label  {
    display: block;
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
    padding: 15px;
}
.g_navi_accordion_con label::before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 8px;
    width: 12px;
    height: 2px;
    margin-top: -1px;
    background-color: #fff;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-out;
    transform: rotate(-90deg);
    opacity: 1;
    z-index: 2;
    transition: .5s;
}
.g_navi_accordion_con label::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 8px;
    width: 12px;
    height: 2px;
    margin-top: -1px;
    background-color: #fff;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-out;
}

.g_navi_accordion_con label {
    display: inline-block;
    color :#fff;
    cursor :pointer;
}
.g_navi_accordion_con ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.g_navi_accordion_con li {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*links01*/
#g_navi_drop_menu01:checked + #accordion_title01::before{
    transform: rotate(0deg);
    transition: .5s;
}
#g_navi_drop_menu01 {
    display: none;
}
#g_navi_drop_menu01:checked ~ #links01 li {
    height: 52px;
    opacity: 1;
}

/*meiji*/
#g_navi_drop_menu01:checked ~ #links01 li:nth-of-type(7) {
    height: 73px;
    opacity: 1;
}

/*links02*/
#g_navi_drop_menu02:checked + #accordion_title02::before{
    transform: rotate(0deg);
    transition: .5s;
}
#g_navi_drop_menu02 {
    display: none;
}
#g_navi_drop_menu02:checked ~ #links02 li {
    height: 52px;
    opacity: 1;
}

.logo{
	width: 90%;
	margin: 0 auto;
	height: 60px;
}
.logo img{
	height: 60px;
	max-width: 250px;
}

.h_top_r{
	display: none;
}



/*メインビジュアル*/


.mainvisual{
	margin: 0 auto;
	width: 90%;
	position: relative;
}
.mainv_img{
	width: 100%;
	overflow: hidden;
}
.mainv_img img{
	width: 100%;
	height: 480px;
	border-radius: 15px;
	object-fit: cover;
}

.mainv_text p{
	background-color: #32624c;
	padding: 2px 10px;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	letter-spacing: 0;
	font-size: 2.4rem;
}
.mainv_text01{
	bottom: 100px;
    left: 30px;
	position: absolute;
}
.mainv_text02{
    bottom: 45px;
    left: 30px;
	position: absolute;
}



/*下層ページのメインビジュアル*/

.mainv_sub{
	margin: 0 auto;
	width: 90%;
	position: relative;
	height: 120px;
}

.submain_text{
	background-image: url(../images/submain.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 100%;
	border-radius: 15px;
}

.mainv_sub h2{
	top: 50%;
	left: 50%;
	position: absolute;
	font-weight: bold;
	font-size: 2.2rem;
	color: #fff;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}


/*==================== main ====================*/
/*ボタン共通装飾*/
.basic_btn{
	text-align: center;
}

.basic_btn a{
	background-color: #fff;
	text-align: center;
	border-radius: 40px;
	background-image: url(../images/icon_arrow.png);
	background-repeat: no-repeat;
	background-position: right 35px center;
	background-size: 30px 11px;
	padding: 20px 100px;
	color: #754c24;
	width: 100%;
	transition: ease .3s;
}
.basic_btn a:hover{
	background-color: #32624c;
	color: #fff;
	background-image: url(../images/icon_arrow_w.png);
	transition: ease .3s;
}
.btn_google{
	margin-top: 50px;
}
.btn_google a:hover{
	transition: ease .3s;
	background-color: #f4d04c;
	background-image: url(../images/icon_arrow.png);
	color: #754c24;
}

.basic_btn a:hover{
	background-position: center right 25px;
	transition: ease .3s;
}
.btn_yellow{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.btn_yellow a{
	background-color: #f4d04c;
	margin: 0 auto;
}
.btn_yellow a:hover{
	background-color: #32624c;
	color: #fff;
	background-image: url(../images/icon_arrow_w.png);
	transition: ease .3s;
}

/*セクションタイトル*/
.sec_title h2{
	font-size: 2.2rem;
	font-weight: bold;
	color: #754c24;
	text-align: center;
	line-height: 1.4;
}
.sec_title p{
	font-size: 1rem;
	color: #32624c;
	text-align: center;
}

.sec_title_flex{
	align-items: center;
	column-gap: 20px;
}
/* イラストの装飾 */
.deco_illust{
	width: 90%;
	margin: 0 auto;
	margin-top: -45px;
	margin-bottom: 70px;
	text-align: right;
}
.deco_illust img{
	height: 17vh;
	width: auto;
}



/* 紹介一覧のところ共通 */
.intro_list_wrap{
	margin: 0 auto;
	max-width: 385px;
	width: 90%;
	margin-top: 25px;
	margin-bottom: 90px;
}
.intro_list_wrap ul{
}
.intro_list_wrap ul li{
	width: 100%;
	margin: 0 auto;
	margin-bottom: 40px;
}
.intro_list_img img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.intro_list_wrap ul li p{
	color: #754c24;
}
.intro_list_name{
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	margin: 10px 0;
}
.intro_list_name span{
	font-size: 1.2rem;
	background-color: #f6f0dc;
	border-radius: 50px;
	padding: 5px 10px;
	vertical-align:middle;
	margin-left: 10px;
}
.intro_list_name br{
	display: none;
}
/* .intro_list_name br{
	display: block;
	margin-top: 50px;
} */
.intro_list_t{
	background-image: url(../images/border_g.png);
	background-size: 385px 3px;
	background-repeat: repeat-x;
	background-position: top;
	padding-top: 15px;
}




/* =============トップページの装飾=============== */

/* ニュース部分の装飾 */
.top_newslist{
	background-color: #f6f0dc;
	padding-top: 110px;
	margin-top: -50px;
	padding-bottom: 40px;
}
.top_newslist_wrap{
	width: 90%;
	margin: 0 auto;
}
.top_newslist_box01{
	width: 100%;
}
.btn_topnews{
	text-align: center;
	margin-top: 50px;
	margin-bottom: 70px;
	display: none;
}
.btn_topnews a{
	padding: 20px 80px 20px 40px;
	margin-top: 25px;
}
.btn_topnews_sp{
	display: block;
}
.top_newslist_box02{
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
	margin-top: 20px;
}
.top_newslist_box02 ul{
	max-width: 315px;
	width: 100%;
	margin: 0 auto;
	/* display: flex; */
	column-gap: 30px;
	justify-content: space-between;
}
.top_newslist_box02 ul li{
	margin: 0 auto 20px;
	/* width: 48%; */
}
.top_newslist_box02 ul li:last-child{
	margin-bottom: 0;
}
.top_newslist_img {
    width: 100%;
    height: 200px;
    text-align: center;
    overflow: hidden;
    background-color: #e4dac1;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top_newslist_img img{
    height: 100%;
    width: auto;
}
.top_newslist_date{
    font-size: 1.2rem;
    color: #754c24;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 8px;
}
.top_newslist_title{
    font-weight: bold;
    color: #754c24;
    line-height: 1.6;
}
.top_newslist_text{
	background-color: #fff;
    padding: 15px 20px;
	border-radius: 0 0 15px 15px;
}



.top_newlist_bottombtn{
	width: 90%;
	max-width: 300px;
	margin: 0 auto;
	/* margin-top: 40px;
	text-align: center; */
}
.top_newlist_bottombtn a{
	
	border-radius: 40px;
	position: relative;
	margin: 0 auto;
}
.top_newlist_bottombtn_box{
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}
.top_newlist_bottombtn_box{
	border: solid 1px #754c24;
	border-radius: 40px;
}
.top_newlist_bottombtn a .bottombtn_icon{
	padding: 10px 20px;
	position: absolute;
}
.bottombtn_arrow{
	position: absolute;
	margin-left: 250px;
	/* margin-right: 20px!important; */
	top: 25px;
}
.bottombtn_arrow img{
	text-align: right;
	width: 30px;
	height: 11px;
	right: 0px;
}

.top_newlist_bottombtn a p{
	width: 300px;
	line-height: 65px;
	text-align: center;
}

.top_newlist_bottombtn a:hover {
	background-color: #f4d04c;
	color: #754c24;
}


/* トップページ花の駅の装飾 */

.top_flower_wrap{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
	column-gap: 50px;
	width: 90%;
	max-width: 480px;
	margin: 60px auto 60px;
}
.top_flower_box01{
	/* margin-bottom: 60px; */
	margin-top: 20px;
}
.top_flower_box01 h2{
	color: #754c24;
	font-size: 2rem;
	font-weight: bold;
}
.top_flower_box01 p{
	margin-top: 10px;
	margin-bottom: 40px;
}

.top_flower_box02 img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.top_flower_br{
	display: none;
}
.sub_table_flower th,
.sub_table_flower td{
	border-top: 1px solid #754c24 !important;
}
.sub_table_flower th{
	border-radius: 15px 0 0 15px !important;
}
.sub_table_flower td{
	border-radius: 0 15px 15px 0 !important;

}

/* トップページ特産物の装飾 */

.top_market_wrap{
	background-color: #f6f0dc;
	padding-top: 50px;
	padding-bottom: 50px;
}
.top_market_con{
	width: 90%;
	max-width: 480px;
	margin: 0 auto;
	/* display: flex; */
	column-gap: 50px;
}
.top_market_box01 img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.top_market_box02{
	margin-top: 20px;
}
.top_market_box02 h2{
	color: #754c24;
	font-size: 2rem;
	font-weight: bold;
}
.top_market_box02 p{
	margin-top: 10px;
	margin-bottom: 40px;
}



/* 共通下層ページの装飾 */
.sub_yerea{
	background-color: #f6f0dc;
	margin-top: -25px;
	padding: 70px 0 50px;
}
.sub_yerea_box{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.sub_slide_a{
	border-radius: 30px;
	width: 100%;
	margin: 0 auto;
	margin-top: 20px;
	max-width: 1000px;
}
.sub_slide_a_img{
	border-radius: 15px;
	overflow: hidden;
}
.sub_slide_a_img img{
	width: 100%;
	height: 280px;
	object-fit: cover;
}
.slick-dots li.slick-active button:before{
	color: #754c24 !important;
}
.slick-dots li button:before{
	color: #754c24 !important;
}
/*矢印*/
.slide_arrow_l {
    width: 12px !important;
    height: 20px !important;
    position: absolute;
    top: 45%;
    left: 8px;
    z-index: 1 !important;
    cursor: pointer;
}
.slide_arrow_r {
    width: 12px !important;
    height: 20px !important;
    position: absolute;
    top: 45%;
    right: 8px;
    z-index: 1 !important;
    cursor: pointer;
}
.slick-dots{
	bottom: -30px!important;
}

.sub_yerea_box .sub_t{
	margin-top: 45px;
	margin-bottom: 30px;
}

/* 共有パーツ_詳細のテーブル装飾*/
.sub_con .sub_table{
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	border-collapse: separate;
	border-radius: 20px;
}

.sub_con .sub_table .table_b{
	width: 17%;
	padding: 20px 15px;
	/* text-align: center; */
	background-color: #f4d04c;
	margin: 0 ;
	white-space: nowrap;
}
.sub_con .sub_table .table_t{
	width: 83%;
	padding: 20px 10px;
	background-color: #fff;
	margin: 0;
}
.sub_con .sub_table .table_b{
	border: 1px solid #754c24;
	border-right: none;
	border-top: none;
	font-weight: bold;
	font-size: 1.3rem;
}
.sub_con .sub_table .table_t{
	border: 1px solid #754c24;
	border-left: none;
	border-top: none;
	font-size: 1.3rem;
}
.sub_con .sub_table .table_b_first{
	border-radius: 15px 0 0 0;
	border: 1px solid #754c24;
	border-right: none;
}
.sub_con .sub_table .table_t_first{
	border-radius: 0 15px 0 0;
	border: 1px solid #754c24;
	border-left: none;
}
.sub_con .sub_table .table_b_last{
	border-radius: 0 0 0 15px;
	border: 1px solid #754c24;
	border-right: none;
	border-top: none;
}
.sub_con .sub_table .table_t_last{
	border-radius: 0 0 15px 0;
	border: 1px solid #754c24;
	border-left: none;
	border-top: none;
}
.sub_table .table_t .tablecopy_a a {
	text-decoration: underline;
}
.sub_werea{
	margin-top: 30px;
}
.sub_werea .intro_list_wrap{
	margin-bottom: 50px;
}




/* =============下層ページ周辺情報ページの装飾=============== */
.spot .sub_yerea{
	margin-bottom: -100px;
	padding-bottom: 150px;
}
.sub_yerea_box_spot{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
.spot_map{
	max-width: 1000px;
	margin: 0 auto;
}
.spot_map_img{
	margin-top: 20px;
}
.spot_map_img img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.spot_map_number .spot_map_numberlist{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	column-gap: 5%;
	row-gap: 12px;
	flex-wrap: wrap;
}
.spot_map_number .spot_map_numberlist li{
	width: 47.5%;
}
.spot_map_number .spot_map_numberlist li a{
	display: flex;
	font-weight: bold;
	align-items: center;
}
.spot_map_number .spot_map_numberlist li a img{
	width: 20px;
	height: 20px;
}
.spot_map_number .spot_map_numberlist li p{
	margin-left: 6px;
	line-height: 1.4;
	font-size: 1.3rem;
}

.spot_list{
	background-color: #fff;
	border-radius: 15px;
	margin: 30px 0 40px;
}
.spot_list:last-child{
	margin-bottom: 0;
}
.spot_list .spot_list_con{
	width: 90%;
	max-width: 480px;
	margin: 0 auto;
	padding-top: 5%;
	padding-bottom: 45px;
}
.spot_list_box{
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between;
	column-gap: 4%; */
	margin-bottom: 60px;
}
.spot_list_box:nth-child(odd) .spot_list_box01{
	order: 2;
}
.spot_list_box:nth-child(odd) .spot_list_box02{
	order: 1;
}
.spot_list_box:last-child{
	margin-bottom: 0;
}
.spot_list_box01{
	width: 100%;
}
.spot_list_box01_park{
	color: #754c24;
	background-color: #f6f0dc;
	border-radius: 15px;
	font-size: 1.3rem;
	font-weight: bold;
	width: 175px;
	text-align: center;
	margin-bottom: 3px;
}
.spot_list_box01 .spot_list_title{
	display: flex;
	align-items: center;
}
.spot_list_box01 .spot_list_title h3{
	font-size: 1.9rem;
	font-weight: bold;
	margin-left: 7px;
}
.spot_list_box01 .spot_list_title img{
	width: 30px;
	height: auto;
}
.spot_list_box01 .spot_list_box01_p{
	background-image: url(../images/border_b.png);
	background-size: 430px 4px;
    background-repeat: repeat-x;
    background-position: left bottom;
	margin-top: 5px;
    padding-bottom: 20px;
    margin-bottom: 15px;
}
.spot_list_box01 .spot_list_bordernone{
	background-image: none;
	margin-bottom: 0;
	padding: 0;
	margin-top: 8px;
}
.spot_list_box01 table{
	width: 100%;
}
.spot_list_box01 table tbody{
	width: 100%;
}
.spot_list_box01 table tr{
	width: 100%;
	display: flex;
	justify-content: space-between;
	/* column-gap: 4%; */
}
.spot_list_box01 table th{
	width: 50px;
	font-size: 1.3rem;
	font-weight: bold;
	color: #32624c;
	white-space: nowrap;
	margin-right: 15px;
}
.spot_list_box01 table td{
	width: 83%;
	font-size: 1.3rem;
}

.spot_list_box02{
	width: 100%;
	margin-bottom: 15px;
}
.spot_list_box02 img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.spot_list_link div{
	background-color: #32624c;
	display: flex;
	align-items: center;
	padding: 5px;
	justify-content: center;
	column-gap: 15px;
	border-radius: 5px;
	margin-top: 20px;
	transition: ease .3s;
}
.spot_list_link div p{
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
}
.spot_list_link:visited{
	color: #fff;
}
.spot_list_link:hover div{
	background-color: #f4d04c;
	transition: ease .3s;
}




/*==================== 下層ページアクセスページの装飾 ====================*/
.access_googlemap{
	width: 100%;
	margin: 0 auto;
	margin-top: 25px;
}
.access_googlemap iframe{
	width: 100%;
	height: 300px;
	border-radius: 15px;
}
.access_googlemap p{
	text-align: center;
	margin-top: 15px;
}
.access_googlemap p span{
	font-weight: bold;
}
.access_googlemap .btn_google{
	margin-top: 30px;
	text-align: center;
}
.access_con{
	width: 90%;
	max-width: 480px;
	margin: 0 auto;
	margin-bottom: 60px;
}
.access_title{
	text-align: center;
	margin-top: 40px;
	margin-bottom: 10px;
}
.access_title h3{
	font-weight: bold;
	font-size: 1.9rem;
}
.access_car_flex,.access_airport .access_airport_con{
	border: solid 2px #32624c;
	border-radius: 15px;
}
.access_shinkansen .access_time,.access_train .access_time{
	border: solid 2px #32624c;
	border-radius: 15px;
	padding: 10px 5px;
}
.access_time{
	display: flex;
	justify-content: center;
	column-gap: 5px;
	align-items: center;
}
.access_t_b{
	color: #754c24;
	font-weight: bold;
}
.access_t_g{
	color: #32624c;
	font-weight: bold;
	vertical-align: middle;
	display: inline-flex;
	align-items: center;
}
.access_t_g span{
	font-size: 2.1rem;
	margin: 0 1px;
}

.access_car_flex
{
	padding-bottom: 20px;
}
.access_car_box{
	width: 90%;
	margin: 0 auto;
	margin-top: 20px;
}
.access_car_box:first-child{

	background-image: url(../images/border_g.png);
	background-size: 385px 3px;
	background-repeat: repeat-x;
	background-position: bottom;
	padding-bottom: 20px;
}
.access_car_box p{
	font-weight: bold;
	text-align: center;
}
.access_car_box .access_t_b{
	margin-top: 10px;
}
.access_t_b_sp {
	text-align: center;
}
.access_car_box p .access_t_normal{
	font-weight: normal;
	font-size: 1.4rem;
}
.access_car_box .access_car_b{
	background-color: #f4d04c;
	color: #754c24;
	padding: 5px 20px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 1.6rem;
}
.access_car_box_border{
	display: none;
}
.access_airport_box{
	width: 90%;
	max-width: 750%;
	margin: 20px auto;
	/* display: flex;
	column-gap: 40px; */
}
/* .access_airport_content{
	margin-top: 30px;
} */
.access_airport_box:first-child{
	background-image: url(../images/border_g.png);
	background-size: 385px 3px;
	background-repeat: repeat-x;
	background-position: bottom;
	padding-bottom: 20px;
}
.access_airport_b{
	background-color: #f4d04c;
	color: #754c24;
	padding: 5px 20px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 1.6rem;
	/* width: 25%;
	height: 40px; */
	text-align: center;
}
.access_airport_box .access_time{
	justify-content: flex-start;
	padding: 5px 0;
	margin-left: 20px;
}
.access_time_sp{
	justify-content: center !important;
	padding: 0 !important;
	margin-left: 0 !important;
}
.access_airport_box .access_time  .access_border{
	border: solid 1px #32624c;
	height: 50px;
	width: 1px;
	margin: 3px 0;
	margin: 0 .5em;
}
.access_airport_content{
	margin-top: 10px;
}



/*==================== 下層ページお知らせ・ブログ一覧ページの装飾 ====================*/

.infolist{
	background-color: #f6f0dc;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 20px;
}

.infolist ul{
	margin-bottom: 50px;
}
.infolist ul li{
	width: 100%;
	max-width: 315px;
	margin: 0 auto;
	margin-bottom: 25px;
}
.infolist ul li:last-child{
	margin-bottom: 0;
}
.infolist_img{
	width: 100%;
	height: 200px;
	text-align: center;
	overflow: hidden;
	background-color: #e4dac1;
	border-radius: 20px 20px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.infolist_img img{
	height: 100%;
	width: auto;
}
.infolist_date{
	font-size: 1.2rem;
	color: #754c24;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-bottom: 8px;
}
.infolist_title{
	font-weight: bold;
	color: #754c24;
	line-height: 1.6;
}
.infolist_text{
	background-color: #fff;
	padding: 15px 20px;
	border-radius: 0 0 20px 20px;
}
.blog_pastbtn{
	text-align: center;
	margin-top: 30px;
	margin-bottom: 80px;
}

/*==================== 下層ページお知らせ・ブログ詳細ページの装飾 ====================*/
.infosingle{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 50px;
}
.infosingle .infosingle_date span{
	background-color: #32624c;
	border-radius: 50px;
	padding: 3px 10px;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
.infosingle h2{
	margin-top: 6px;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.4;
	background-image: url(../images/border_g.png);
	background-repeat: repeat-x;
	background-size: 390px 3px;
	background-position: left bottom;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.infosingle .basic_btn{
	text-align: center;
	margin-top: 50px;
}
.info_wpcontent p{
	margin-bottom: 15px;
}

/*==================== 下層ページイベントカレンダーページの装飾 ====================*/

.infosingle .calendar .calendar_img{
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	margin-top: 20px;
}
.infosingle .calendar .calendar_img img{
	width: 100%;
	height: auto;
}







/*========================== shimokawaここから ==========================*/


/* お弁当　追加 */
.sec_bentocopy{
	margin: 0 auto;
	width: 90%;
	max-width: 480px;
	margin-top: 20px;
}

.sec_bentocopy .bentocopy_a{
	margin-bottom: 20px;
}

.sec_bentocopy .bento_btn {
	margin: 0 auto;
	font-weight: bold;
	background-color: #f4d04c;
	text-align: center;
	font-size: 1.6rem;
	border-radius: 40px;
	padding: 15px;
	color: #754c24;
	width: 300px;
	transition: ease .3s;
}

.sec_bentocopy .bentocopy_b {
	font-size: 1.2rem;
	margin-top: 5px;
	text-align: center;
}


/* もち工房　追加     20251111修正 */

.mochi_chumon_con {
	background-color: #FFF;
	margin-top: 40px;
}
.mochicon_tuika {
	margin-bottom: 60px;
}

.mochi_chumon_con .deco_wave {
	margin-bottom: 0px;
}

.chumon_con_a {
	margin-bottom: 20px;
}

.chumon_con_a img {
	width: 100%;
	height: auto;
}

.chumon_con {
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 20px;
}


/* もち工房　追加     20251111修正 */

.sisetsumap_copy {
	margin: 0 auto;
	width: 90%;
	margin-top: 25px;
	margin-bottom: 20px;
}

.sisetsumap_con {
	padding-bottom: 30px;
	text-align: center;
}
.sisetsumap_con .sisetsumap_con_img img {
	border-radius: 15px;
	width: 90%;
	height: auto;
}

.kannai_p {
	margin-bottom: 60px;
}
.kannai_p img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.sec_title_a {
	margin-bottom: 25px;
}

.sub_table .table_t .tablecopy_a {
	font-size: 1.3rem;
}

.deco_illust_a{
	width: 90%;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: -20px;
	text-align: right;
	z-index: 30;
	position: relative;
}

.intro_list_wrap_a {
	margin-top: 25px;
	margin-bottom: 50px;
}

.intro_list_wrap_a ul{
	width: 90%;
    margin: 0 auto;   
    max-width: 480px;
}
.intro_list_wrap_a ul li{
	width: 100%;
	margin-bottom: 45px;
}

.intro_list_wrap_a ul li img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	margin-bottom: 10px;
}
.intro_list_name_a {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.intro_list_name_a .sisetsu_ti_sub {
	font-size: 1.3rem;
	font-weight: bold;
	border: solid 1px #754c24;
	padding: 5px 15px;
	vertical-align: middle;
	border-radius: 15px;
}


.intro_list_name_a a:visited {
	color:#754c24;
	text-decoration: none;
}


.intro_list_wrap_a dl {
	display: flex;
    flex-wrap: wrap;
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.intro_list_wrap_a dl {
	display: flex;
    flex-wrap: wrap;
}

.intro_list_wrap_a dl .color_a {
	width: 17%;
	color: #FFF;
	font-weight: bold;
	line-height: 1.9;
	text-align: center;
	border-radius: 5px;
	background-color: #32624c;
	margin-bottom: 5px;
}
.intro_list_wrap_a dl .color_b {
	width: 17%;
	font-weight: bold;
	line-height: 1.9;
	text-align: center;
	border-radius: 5px;
	background-color: #f4d04c;
	margin-bottom: 5px;
}
.intro_list_wrap_a dl dd {
	width: 75%;
	padding-left: 10px;
}
.intro_list_wrap_a dl .color_c {
	width: 40%;
	color: #FFF;
	font-weight: bold;
	line-height: 1.9;
	border-radius: 5px;
	background-color: #754c24;
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
}
.intro_list_wrap_a dl .color_c_s {
	width: 55%;
	padding-left: 10px;
}

.intro_list_wrap_a .intro_list_t_a {
	background-image: url(../images/border_b.png);
	background-size: 100% 4px;
    background-repeat: repeat-x;
    background-position: left top;
	padding-top: 12px;
}



/* 花の駅　追加 */

.hana_maincopy {
	background-image: url(../images/border_.png);
	background-size: 150% 4px;
    background-repeat: repeat-x;
    background-position: left top;
	padding-top: 15px;
	margin-top:  10px;
	margin-bottom:  20px;
	width: 100%;
}

.sub_slide_no .sub_slide_no_img img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	margin-bottom: 30px;
}

.nanacontent {
	margin: 0 auto;
	width: 90%;
	max-width: 480px;
	margin-bottom: 50px;
	margin-top: 40px;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
.nanacontent .nanacontent_left {
	margin-bottom: 30px;
}
.nanacontent .nanacontent_right img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.nanacontent .nanacontent_left h3 {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 10px;
}



/* サイトポリシー　追加 */

.spot_list_a {
	background-color: #fff;
	border-radius: 15px;
	margin-bottom: 65px;
}
.spot_list_a .spot_list_con{
	width: 90%;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 5px;
}
.spot_list_a .spot_list_con .sitepolicy_con {
	margin-bottom: 25px;
}
.spot_list_a .spot_list_con .sitepolicy_con h3 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.page404{
	width: 90%;
	margin: 0 auto;
	text-align: center;
	margin-top: 100px;
	margin-bottom: 100px;
}











/*==================== footer ====================*/

/*f_info*/

.deco_wave{
	width: 100%;
}

.deco_wave img{
	width: 100%;
    height: auto;
    display: block;
}

/*f_info*/
.f_info {
	background-color: #32624c;
}


.f_box{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 20px;
	align-items: center;
	justify-content: space-between;
}

.f_info h3 {
	font-weight: bold;
	color: #fff;
	font-size: 1.8rem;
}

/*施設・設備*/
.f_ttl{
	width: 100%;
	margin: 0 auto;
	align-items: center;
	margin-bottom: 25px;
}
.f_ttl h3{
	text-align: center;
}
.f_ttl p{
	text-align: center;
	color: #fff;
	font-size: 1rem;
}

.equipment_list ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 30px;
	column-gap: 4%;
}
.equipment_listitem{
	width: 48%;
	display: flex;
}
.equipment_list_r{
	width: 100%;
}
.equipment_list_l{
	margin-right: 12px;
}

.equipment_list_l img{
	width: 45px;
	height: auto;
}
.equipment_listitem p{
	color: #fff;
}
.equipment_list_title{
	font-size: 1.5rem;
	font-weight: bold;
	background-image: url(../images/border_w.png);
    background-size: 157px 3px;
    background-repeat: repeat-x;
    background-position: left bottom, left center;
    padding-bottom: 7px;
    margin-bottom: 5px;
}
.equipment_list_text{
	font-size: 1.1rem;
}

/*SNSアイコン */
.icon_group{
	border-radius: 38px;
	margin: 40px auto 60px auto;
	background-color: #fff;
	width: 90%;
	max-width: 1100px;
}

.icon_group_con {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
	text-align: center;
	margin: 0 auto;
	column-gap: 25px;
}

/*インフォメーション*/
.f_bottom{
	background-image: url(../images/f_back.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 100%;
}


.sitepolicy{
	text-align: center;
	padding-top: 30px;
	margin-bottom: 45px;
}
.sitepolicy a{
	color: #fff;
}


.f_bottom_con{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	justify-content: space-between;
	padding-bottom: 90px;
}

.f_bottom_ttl{
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
}
.f_bottom_text{
	color: #fff;
}
.f_bottom_text a{
	color:#fff;
}

.f_info_name,
.f_info_add {
	color: #fff;
	font-size: 1rem;
}

.f_info_add a {
	color: #fff;
}

/*f_copy*/

.f_copy {
	width: 100%;
	padding: 15px 0;
	font-size: 1rem;
	text-align: center;
	color: #754c24;
}

/*道の駅様更新箇所の画像CSS*/
.intro_list_img_bg {
    width: 100%;
    height: 220px;
    text-align: center;
    overflow: hidden;
    background-color: #e4dac1;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.intro_list_img_bg img{
    height: 100%;
    width: auto;
}


.sub_t_tablenone {
	margin-bottom: 0 !important;
}