/* CSS Document */

/* 全ページ共通設定 */

/*---------------------------------------------------------------------
reset設定
---------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}

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

body {
	line-height:1;
}

ol, ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}


/*---------------------------------------------------------------------
bodyの設定
---------------------------------------------------------------------*/
body{
	background:#FFFDD8;
	overflow-x:hidden;
	font-family:"ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	word-break:break-all;
	-webkit-text-size-adjust:100%;
}

body > *{
	width:100%;
}


/*---------------------------------------------------------------------
headerの設定
---------------------------------------------------------------------*/
header > div{
	padding:4% 0 5%;
	position:relative;
}

header > div h1{
	width:45%;
	margin:0 auto;
}

.h_btn{
    background:url(../img/header/menu_icon.png) no-repeat 0 0;
    display:block;
    width:35px;
    height:35px;
    position:absolute;
    top:20px;
    right:20px;
    cursor:pointer;
    z-index:999999999;
}
.peke{
    background-position:-35px 0;
}
.drawr{
    display:none;
    background-color:rgba(74,74,156,0.9);
    position:absolute;
    top:0px;
    right:0;
    width:50%;
    padding:15% 0 5% 5%;
    z-index:99999999;
}
#menu li{
    width:260px;
}
#menu li a{
    color:#fff;
    display:block;
    padding:5%;
	text-decoration:none;
	font-size:90%;
	border-bottom:1px solid #FFFFFF;
	line-height:1.8rem;
}

.logo20th{
    display:flex;
    justify-content:center;
    align-items: center;
    position:absolute;
    top:0;
    left:15px;
    width:clamp(40px,15%,100px);
    height:100%;
}

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

/*---------------------------------------------------------------------
navの設定
---------------------------------------------------------------------*/
nav{
	width:100%;
}

nav > ul{
	border-bottom:1px solid #AEAEAE;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	position:relative;
}

nav > ul > li{
	width:calc(100% / 3);
	line-height:0;
}

nav > ul > li:nth-of-type(1) ul{
	background:#4A4A9C;
}

nav > ul > li:nth-of-type(2) ul{
	background:#F7B400;
}

nav > ul > li:nth-of-type(3) ul{
	background:#00A172;
}

nav > ul > li:nth-of-type(4) ul{
	background:#E84653;
}

nav > ul > li:nth-of-type(5) ul{
	background:#009DE6;
}

nav > ul > li:nth-of-type(6) ul{
	background:#3AB6BE;
}

.ac_btn > div{
	display:none;
	width:100%;
	z-index:9999999;
	position:absolute;
	left:0;
}

.ac_btn > div > ul{
	padding:2% 4% 5%;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

.ac_btn > div > ul li{
	width:30%;
	margin-right:5%;
	text-align:center;
}

.ac_btn > div > ul li:nth-of-type(3){
	margin:0;
}

.ac_btn > div > ul li:nth-of-type(3) ~ li{
	margin:3% 5% 0 0;
}

.ac_btn > div > ul li:nth-of-type(3) ~ li:nth-of-type(3n){
	margin:3% 0 0;
}

.ac_btn > div > ul li a{
	display:block;
	padding:15% 0;
	text-decoration:none;
	font-weight:bold;
	font-size:75%;
	color:#FFFFFF;
	border-bottom:1px solid #FFFFFF;
	box-sizing:border-box;
}

.adst_fd{
    font-size:74%!important;
}


.ac_btn > div > ul li a:hover{
	background:#FFFFFF;
	border-radius:5px;
	color:#4A4A9C;
}


/*---------------------------------------------------------------------
footerの設定
---------------------------------------------------------------------*/
footer{
	background:#4A4E90;
	padding:8% 0;
	margin-top:8%;
	text-align:center;
	font-size:75%;
	color:#FFFFFF;
	line-height:0;
}


/*---------------------------------------------------------------------
campaign_boxの設定
---------------------------------------------------------------------*/
div#campaign_box{
	background:#FFD622;
	width:90%;
	margin:10% auto 0;
	border:5px solid #FFD622;
}

div#campaign_box > div{
	background:#FFFFFF;
	box-sizing:border-box;
}

div#campaign_box > div:not(#campaign){
	position: relative;/*相対配置*/
}

div#campaign_box > div:not(#campaign):before{
	content: '';
    top: 0;
    left: 0;
    width: 100%;/*指定したい幅*/
    padding-top: 35%;/*画像の幅に対する高さ比率*/
    display: block;
}

div#campaign_box > div:not(#campaign):after{
	position: absolute;
    content: '';
    top: 5px;
    left:-1px;
    display: block;
    width: 101%;/*幅*/
    height: 100%;/*どれだけデカくなってもはみ出ないであろう高さを指定*/
    background-image:url(../../img/parts/campaign.png);
    background-size: cover;
	background-position:center;
    background-repeat: no-repeat;/*画像を繰り返さない*/
}

div#campaign_box > div:not(#campaign) img{
	display:none;
}

div#campaign{
	min-height:190px;
	padding:5%;
	box-sizing:border-box;
}

div#campaign > div:last-of-type{
	margin-top:5%;
}

div#campaign img{
	width:100%;
}

div#campaign a{
	display:block;
	text-decoration:none;
	color:#000000;
}

div#campaign a p{
	line-height:1.4em;
}

div#campaign section h2{
	padding-bottom:3%;
	font-weight:bold;
	font-size:130%;
	color:#ED5701;
	line-height:1.2em;
	border-bottom:1px dashed #ED5701;
}

div#campaign section p{
	margin-top:3%;
}


/*---------------------------------------------------------------------
harmonyの設定
---------------------------------------------------------------------*/
div.harmony{
	width:100%;
	margin-top:10%;
	padding:0 5%;
	text-align:center;
	box-sizing:border-box;
}

div.harmony section h2{
	height:60px;
	font-weight:bold;
	font-size:130%;
	color:#CB4E51;
	border-bottom:2px solid #CB4E51;
	position:relative;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-justify-content:center;
	-ms-flex-pack:center;
	justify-content:center;
	-webkit-align-items:center;
	-ms-flex-align:center;
	align-items:center;
}

div.harmony section h2:before,
div.harmony section h2:after{
	content:"";
	background:#CB4E51;
	display:block;
	width:10px;
	height:10px;
	border-radius:10px;
	position:absolute;
	bottom:-5.5px;
}

div.harmony section h2:before{
	left:0;
}

div.harmony section h2:after{
	right:0;
}

div.harmony section h2 span{
	font-weight:bold;
	font-size:150%;
}

div.harmony section h3{
	font-weight:bold;
	font-size:150%;
	margin:3% 0 5%;
}

div.harmony section p:first-of-type{
	margin-top:5%;
}

div.harmony section p a{
	background:url(../../img/harmony/btn_arrow.png) no-repeat 95% center, #FFC222;
	display:block;
	padding:8% 0;
	text-decoration:none;
	color:#000000;
	line-height:0;
	border:1px solid #FFC222;
	border-radius:10px;
	box-sizing:border-box;
}

div.harmony section p a:hover{
	background:url(../../img/harmony/btn_arrow.png) no-repeat 95% center, #FFFFFF;
}


/*---------------------------------------------------------------------
page_infoの設定
---------------------------------------------------------------------*/
div#page_info{
	width:90%;
	margin:10% auto 0;
}

div#page_info section{
	background:#FFFFFF;
	padding:8%;
	border-radius:10px;
	box-shadow:0px 0px 10px rgba(0, 0, 0, 0.24);
}

div#page_info section h3{
	text-align:center;
	font-weight:bold;
    font-size:140%;
    color:#DF4E51;
	line-height:1.4em;
}

div#page_info section p{
	margin-top:5%;
	line-height:1.4em;
}

div#page_info section div{
	margin-top:5%;
}

div#page_info section div a{
	background:url(../../../common/img/parts/black_arrow.png) no-repeat 95% center, #FFC622;
	display:block;
    padding:8% 0;
	text-align:center;
    text-decoration:none;
    color:#2A2A2B;
	line-height:0;
    border:1px solid #FFC622;
    border-radius:5px;
    box-sizing:border-box;
}

div#page_info section div a:hover{
	background:url(../../../common/img/parts/black_arrow.png) no-repeat 95% center, #FFFFFF;
}


/*---------------------------------------------------------------------
各クラス設定
---------------------------------------------------------------------*/
.title{
	text-align:center;
}

.title img{
	width:auto !important;
	height:1.2rem;
}

.title:after{
	content:url(../../img/parts/title_border.png);
	display:block;
	margin-top:3%;
	text-align:center;
}

.mini_title{
	text-align:center;
}

.mini_title span{
	display:inline-block;
	padding:0 6% 3%;
	font-size:140%;
	font-weight:bold;
	color:#E24E51;
	border-bottom:3px dotted #E24E51;
}

/* コンテンツ内の背景色設定 */
div.oddNum > div,
div.oddNum > section{
	width:100%;
	padding:10% 5% 0;
	box-sizing:border-box;
}

div.evenNum{
	background:#FAF7C7;
	width:100%;
	margin-top:10%;
	padding:0 5%;
	box-sizing:border-box;
}

div.evenNum > div,
div.evenNum > section{
	padding:10% 0;
}
/* コンテンツ内の背景色設定 */



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

/* 中ページ共通設定 */

/*---------------------------------------------------------------------
main_areaの設定
---------------------------------------------------------------------*/
div#main_area{
	width:100%;
}

div#main_area > div{
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
}

div#main_area > div h2{
	background:url(../../../common/img/page/main_back.png) no-repeat right center, #009872;
	background-size:contain;
	width:40%;
}

div#main_area > div h2 span{
	height:100%;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-justify-content:center;
	-ms-flex-pack:center;
	justify-content:center;
	-webkit-align-items:center;
	-ms-flex-align:center;
	align-items:center;
}

div#main_area > div h2 span img{
	width: 50%;
}

div#main_area > div div{
	width:60%;
	line-height:0;
}


/*---------------------------------------------------------------------
各コンテンツ領域の設定
---------------------------------------------------------------------*/
section#contents > h2,
section.child_contents > h3{
	text-align:center;
}

section#contents > h2 img,
section.child_contents > h3 img{
	max-width:90% !important;
	height:auto;
}

/* #contentsの設定 */
section#contents{
	margin-top:10%;
}

/* #child_contentsの設定 */
section.child_contents{
	margin-top:15% !important;
}


/*---------------------------------------------------------------------
btm_menuの設定
---------------------------------------------------------------------*/
div#btm_menu{
	margin-top:10%;
	padding:0 5%;
	box-sizing:border-box;
}

div#btm_menu > ul{
	width:100%;
	padding-top:8%;
	border-top:4px solid #DDD3B8;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-justify-content:space-between;
	-ms-flex-pack:space-between;
	justify-content:space-between;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

div#btm_menu > ul li{
	width:48%;
}

div#btm_menu > ul li:nth-of-type(2) ~ li{
	margin-top:3%;
}

div#btm_menu > ul a{
	background:url(../../img/parts/btm_pointer.png) no-repeat 93% center, #FFFFFF;
	display:block;
	width:100%;
	padding:14% 0;
	text-align:center;
	text-decoration:none;
	color:#2A2A2B;
	line-height:0;
	border:1px solid #E2D8BD;
	border-radius:5px;
	box-sizing:border-box;
}

div#btm_menu > ul a:hover{
	background:url(../../img/parts/btm_pointer_on.png) no-repeat 93% center, #E2D8BD;
	color:#FFFFFF;
}



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

/* くらしの交流・地域とのかかわりの特殊共通設定エリア */

/*---------------------------------------------------------------------
くらしの交流・地域とのかかわりの共通設定
---------------------------------------------------------------------*/
/* blogの設定 */
div#blog{
	width:100%;
	margin-top:10%;
	padding:0 5%;
	box-sizing:border-box;
}

div#blog > div{
	background:#FFFFFF;
	padding:5%;
	border-radius:5px;
	box-sizing:border-box;
	box-shadow:0px 0px 10px rgba(0, 0, 0, 0.1);
}

div#blog > div:first-of-type ~ div{
	margin-top:7%;
}

div#blog > div > div{
	text-align:center;
}

div#blog > div > div img{
	width:100%;
}

div#blog section h3{
	margin:5% 0;
	font-weight:bold;
	font-size:110%;
	color:#D99301;
	line-height:1em;
}

div#blog section p{
	font-size:90%;
	line-height:1.4em;
}

div#blog section > div{
	margin-top:3%;
}

div#blog section > div p{
	padding:5% 0;
	color:#787879;
	line-height:0;
	text-align:center;
	border-top:1px solid #AEAEAE;
	border-bottom:1px solid #AEAEAE;
	box-sizing:border-box;
}

div#blog > div > p{
	margin-top:5%;
}

div#blog > div > p a{
	background:url(../../img/parts/black_arrow.png) no-repeat 95% center, #FFC622;
	display:block;
	padding:6% 0;
	text-align:center;
	text-decoration:none;
	font-size:95%;
	color:#2A2A2B;
	line-height:0;
	border:1px solid #FFC622;
	border-radius:30px;
	box-sizing:border-box;
}

div#blog > div > p a:hover{
	background:url(../../img/parts/black_arrow.png) no-repeat 95% center, #FFFFFF;
}


/* linkの設定 */
div#link > ul li:first-of-type ~ li{
	margin-top:7%;
}

div#link > ul li a{
	display:block;
	padding:7% 0;
	text-align:center;
	text-decoration:none;
	color:#FFFFFF;
	border:1px solid #3A937A;
	border-radius:10px;
	box-sizing:border-box;
}

div#link > ul li:first-of-type a{
	background:url(../../img/page/point_a.png) no-repeat 95% center, #3A937A;
}

div#link > ul li:first-of-type a:hover{
	background:url(../../img/page/point_a.png) no-repeat 95% center, #FFFFFF;
	font-weight:bold;
	color:#3A937A;
}

div#link > ul li:last-of-type a{
	background:url(../../img/parts/white_arrow.png) no-repeat 95% center, #3A937A;
}

div#link > ul li:last-of-type a:hover{
	background:url(../../img/parts/black_arrow.png) no-repeat 95% center, #FFFFFF;
	font-weight:bold;
	color:#3A937A;
}



.pc-hide{
    display:none;
}
