/* 
 * ------- setup ---------------------
 */


/*===========================
fonts
===========================*/

/* title */

h1, h2, h3, h4, h5, h6 {
	color: #333;
	letter-spacing: 1px;
	font-family: 'Noto Sans Japanese';
	font-weight:normal;
	/* font-weight:bold !important;
	transform: rotate(.03deg);
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif; */
}
/* ゴシック体      font-family: 'Noto Sans Japanese';  */
/* 明朝体         font-family: 'Sawarabi Mincho';  */
/* ポップ         font-family: 'Mplus 1p';*/
/* 丸ゴシック     font-family: 'Rounded Mplus 1c';  */



/*===========================
color
===========================*/


.black {
	color: #333;
}
.red {
	color: #bc2d2d;
}
.yellow {
	color: #E9CC35;
}
.green {
	color: #3b7a28;
}
.brown {
	color: #a67435;
}
.blue {
	color: #325f99;
}
/*----------------------------
linked color
-----------------------------*/

a:link, a:visited {
	color: #333;
}
a:hover, a:active {
	color: #BBB;
}
main a:link, main a:visited {
	color: #bc2d2d;
}
main a:hover, main a:active {
	color: #EC3C3C;
}
/*----------------------------
text
-----------------------------*/

/*----------------------------
header
-----------------------------*/

.homeNavArea .logo {
	position: relative;
	width: 200px;
	left: 52%;
	margin-left: -100px;
	box-sizing: border-box;
	margin-top: 10%;
}

.secondaryNavArea .logo {
	position: relative;
	left: 4%;
	width: 320px;
	box-sizing: border-box;
	float: left;
	margin-right: 5%;
	margin-top: 30px;
}
/* .secondaryNavArea .logo img {
	width: 320px;
} */
@media screen and (max-width: 768px) {
.homeNavArea, .secondaryNavArea {
	width: 100%;
	float: none;
	height:20vw;
	background-color: #FFF;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
}
.homeNavArea .logo-sp, .secondaryNavArea .logo {
	display: block;
	width: 70vw;
	position: absolute;
	left: 2%;
	margin-top: 0vw;
}
.secondaryNavArea .logo {
	width: 40vw;
}
.homeNavArea .logo-sp img {
	width: 100%;
	height:auto;
}
}
@media screen and (max-width: 420px) {
.homeNavArea .logo-sp, .secondaryNavArea .logo {
	width: 60vw;
	margin-top: 2vw;
}
.homeNavArea .logo-sp img{
	width: 100%;
	height:auto;
}
}
/*===========================
home layout
===========================*/


.home-inner {
	padding: 4vw 0;
}
/* pickup1 */

/*背景画像*/
.home-bg1 {
	position: relative;
	z-index: 0;
	overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
	background-color: rgba(245, 251, 234, 1.00);/*半透明カラーの色*/
}
.home-bg1::before {
	content: '';
	background-image: url(../img/common/bg_section1.jpg);
	background-size: cover;
	background-position: center;
	opacity: 0.5;/*半透明カラーの透明度*/
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	-o-filter: blur(8px);
	-ms-filter: blur(8px);
	filter: blur(8px);
	position: absolute;
	/*ブラー効果で画像の端がボヤけた分だけ位置を調整*/
	top: -8px;
	left: -8px;
	right: -8px;
	bottom: -8px;
	z-index: -1;/*重なり順序を一番下にしておく*/
}
.home-inner h1 {
	text-align: center;
	font-size: 2em;
	margin-bottom: 36px;
	font-weight: 700;
}
.pickup1 .pick-a {
	width: 32%;
	float: left;
	margin-right: 2%;
}
.pickup1 .pick-b {
	width: 32%;
	float: left;
}
.pickup1 .pick-c {
	margin-left: 2%;
	width: 32%;
	float: left;
}
.pickup1 .pic {
	overflow: hidden;
	width: 100%;
	height: 220px;
	position: relative;
	border-radius: 24px;
}
.pickup1 .pic img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	-moz-transition: -moz-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
	width: 100%;
	height: auto;
}
/* .pickup1 .pic {
	overflow: hidden;
	width: 100%;
	height: 300px;
	position: relative;
	border-radius: 24px;
}
.pickup1 .pic img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 
	transform: translate(-50%, -50%);
	-moz-transition: -moz-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
	width: 140%;
	height: auto;
} */
.pickup1 .txt {
	width: 80%;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 8px 14px 16px;
	margin: 0 auto;
	margin-top: -8%;
	z-index: 999;
	position: relative;
	min-height: 50px;
}
.pickup1 .txt h2 {
	color: #025b0b;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0;
	font-size: 1.25em;
	
}
.home-btn1 a {
	text-align: center;
	display: block;
	margin: 0 auto;
	padding: 8px 30px;
	color: #FFF!important;
	border: 1px solid #24331e;
	border-radius: 30px;
	text-decoration: none;
	width: 240px;
	margin-top: 30px;
	font-family: 'Sawarabi Mincho';
	font-size: 1.2em;
	background-color: rgba(36, 51, 30, 0.5);
}
.home-btn1 a:hover {
	color: #333!important;
	background-color: rgba(255, 255, 255, 0.1);
}
/* pickup2 */


.pickup2 {
	margin: 3.5em auto 0;
}
.pickup2.after {
	margin: 1.5em auto 0;
}
.pickup2 .pickup-half {
	width: 47.5%;
	margin: 0 0 1.5em 5%;
	list-style: none;
	float: left;
}
.pickup2 .pickup-half.first {
	margin-left: 0;
}
.pickup2 .pickup-half h2 {
	position: relative;
	font-weight: 500;
	font-size: 1.05rem;
	color: #774933;
	margin: 5px 0 8px;
	padding: 0;
}
.pickup2 .pickup-half .pic {
	width: 35%;
	float: left;
	margin-right: 5%;
}
.pickup2 .pickup-half img {
	width: 100%;
	height:auto;
}
.pickup2 .pickup-half .like-btn1 a {
	display: inline-block;
	width: 160px;
	border-radius: 20px;
	padding: 8px 4px;
}
.pickup2 .pickup-half .like-btn1 a::before {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 8%;
}
.pickup2 .pickup-half .txt {
	float: left;
	width: 60%;
}
.pickup2 .pickup-half.first {
	margin-left: 0;
}
.pickup2 .one_third {
	width: 30%;
	float: left;
}
.pickup2 .topics {
	font-size: 0.9rem;
	position: relative;
}
.pickup2 .topics .inner {
	height: 180px;
	overflow: auto;
	padding-right: 0.8em;
}
.pickup2 .topics h2 {
	width: 100px;
	height: 60px;
	padding: 10px;
	color: #FFF;
	background-color:#59a62e;
	font-size: 1rem;
	font-weight: normal;
	position: relative;
	margin-top: -70px;
	margin-bottom: 30px;
}
.pickup2 .topics h2 span {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
}
.pickup2 .topics h3 {
	font-weight: bold;
	font-size: 0.9rem;
	margin-bottom: 0.5em;
}
.pickup2 .topics h2, .pickup2 .topics h3 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
.pickup2 .topics .txt {
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	box-sizing: border-box;
	border-bottom: 1px dashed #ddd;
	font-size: 0.9rem;
}
/*
.pickup2 .topics .txt:last-child {
	border-bottom: none;
}
*/
.pickup2 .topics .txt.ls {
	border-bottom: none;
}
.pickup2 .two_third {
	width: 65%;
	float: left;
	box-sizing: border-box;
	padding-left: 2.5%;
	margin-left: 2.5%;
	border-left: 1px solid #222;
	min-height: 220px;
	margin-bottom:50px;
}
.pickup2 .two_third .pic {
	float: right;
	/* width: 140px; */
	width: 220px;
	height: 220px;
	position: relative;
	overflow: hidden;
	margin-left: 16px;
}
.pickup2 .two_third .pic img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	-moz-transition: -moz-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
	width: 100%;
}
.pickup2 .two_third h3 {
	font-family: 'Sawarabi Mincho';
	font-size: 1.3em;
	margin: .2em 0 .6em;
}
 @media screen and (max-width: 768px) {
.pickupInner {
	margin: 20px auto 0;
}
.pickupInner .pickup-half {
	width: 100%;
	margin: 0 0 0 0;
	list-style: none;
	float: none;
}
.pickup2 .pickup-half .pic {
	width: 100%;
	float: none;
	margin-right: 0;
}
.pickup2 .pickup-half .txt {
	float: none;
	width: 100%;
}
}
 @media screen and (max-width: 420px) {
.pickupInner .pickup-half h2:before {
	width: 86%;
}
.pickupInner .pickup-half .like-btn1 a {
	padding: 14px 6px;
}
.pickupInner .pickup-half .like-btn1 a::before {
	left: 26vw;
}
.pickupInner .pickup-half .pic {
	width: 80px;
	height: 80px;
	margin: 10px 10px 0 0;
	padding: 0;
}
}
 @media screen and (max-width: 320px) {
.home-btn1 a {
	width:200px;
}
 }
 /*===========================
info　color
===========================*/
.info {
	color: #FFF;
	background-color: rgba(11, 105, 1, 0.5);
	position: absolute;
	left: 2%;
	bottom: 8%;
	border: 1px solid #FFF;
	padding: 20px;
	border-radius: 18px;
	max-width:500px;
}
.info .info1 {
	letter-spacing: 0.1rem;
	color:#FFF;
	font-size: 1.1rem;
	font-weight: normal !important;
	/* font-style: italic; */
	margin-bottom: 0.3em;
	font-family: 'Sawarabi Mincho';
	
}
.info .info2 {
	margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
/* info*/
.info {
	position: absolute;
	left: 5vw;
	bottom: auto;
	top: 65vh;
}
}
@media only screen and (max-width: 420px) {
/* info*/
.info {
	position: absolute;
	left: 3vw;
	bottom: auto;
	top: 58vh;
	max-width:250px;
}
}
/*===========================
btn　color
===========================*/


.like-btn1 a {
	color:#FFF !important;
	background-color:#d98b17;
}
.like-btn1 a:hover {
	background-color: rgba(232, 156, 42, 0.8);
}
.like-btn1 a::before {
	border-left: 5px solid #FFF;
}

.like-btn2 a {
	border: 1px solid #999;
}
.like-btn2 a:hover {
	background-color: rgba(102, 102, 102, 0.8);
	color: #FFF;
}
.like-btn2 a::before {
	border-left: 5px solid #7a0;
}


.like-btn3 {
	color: #FFF;
	line-height: 1;
}
.like-btn3 a {
	background-color: rgba(255, 255, 255, 0.2);
	border: 1px solid #FFF;
	color: #FFF!important;
}
.like-btn3 a:hover {
	background-color: rgba(255, 255, 255, 0.4);
	border: 1px solid #fff;
	color: #FFF;
}
.like-btn3 a::before {
	border-left: 4px solid #fff;
}

/*===========================
data　color
===========================*/

.dataContainer {
	
	background-color:#6CB046;
	/*
	background-color:#ffff00;
	*/
	opacity:0.9;
}
.dataContainer .name {
	color:#fff;
}
.dataContainer .data {
	color: #FFF;
}

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

footer .footerInner #totop a::before {
	border: 1px solid #6CB046;
}
footer .footerInner #totop a::after {
	border-color: #6CB046;
	border-style: solid;
	border-width: 6px;
	border-left-color: transparent;
	border-top-color: transparent;
	border-right-color: transparent;
}

/*===========================
header h1　color
===========================*/
.secondary header h1 {
	color:#333;
	background-image: url(../img/common/bg_h1.jpg);
	background-position:bottom;
	background-size: cover;
}
.secondary header h1 span {
	display: inline-block;
	font-weight:normal;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%);
	margin-left: 4.6%;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.85);
	padding: 0.6rem;
}
/*===========================
main-nav
===========================*/
/* .secondaryNavArea .main-nav ul li.nav-home a {
	color:#e89c2a;
}
.secondaryNavArea .main-nav ul li.nav-home a:hover {
	color: #f4ce95;
} */
.homeNavArea .main-nav ul li a:after {
	display: block;
	content: "";
	width: 0;
	height: 2px;
	background-color:#6CB046;
	margin: 1px auto 0;
	transition: .20s ease-out;
	-webkit-transition: .20s ease-out;
	-moz-transition: .20s ease-out;
	-o-transition: .20s ease-out;
	-ms-transition: .20s ease-out;
}

/*===========================
background color
===========================*/

.bg-color {
	background-color:#f7f7f7;
}

/*===========================
content color
===========================*/
.content h2::after {
	position: absolute;
	bottom: -16px;
	left: 50%;
	z-index: 1;
	content: '';
	display: block;
	height: 2px;
	background: #6CB046;
	width: 120px;
    margin-left: -60px;
}
h3.menu-category {
	padding: 0.8rem;
	box-sizing: border-box;
	background-color:#a8be7e;
	color: #FFF!important;
	font-weight: 900;
	text-align: center;
	font-size: 1.5rem;
	margin-top: -2rem;
	position: relative;
}
.menu-list li {
	padding: 8px 2px 6px;
	border-bottom: dashed 1px #999;
}
.content h3 {
	color:#333;
}
.content h4 {
	border-bottom: 1px dashed #D9D0C3;
}
.content h4.various1 {
	border: dashed 1px #999;
	padding: 0.4em 0.5em;
}
.content h4.various2 {
	border: solid 1px #999;
	padding: 0.4em 0.5em;
	border-radius: 6px;
}
.content h4.various3 {
	background: #f2eedb;
	box-shadow: 0px 0px 0px 5px #f2eedb;
	border: dashed 1px white;
	padding: 0.2em 0.5em;
}
.r-number {
	width: 78px;
	height: 78px;
	background-color: #333;
	border-radius: 50%;
	color: #FFF;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 30px;
	line-height: 82px;
	font-size: 46px;
}
/*===========================
secondary
===========================*/



/* 地図高さ */


#map_canvas {
	height: 500px;
	margin-bottom: 1em;
}
 @media screen and (max-width: 768px) {
#map_canvas {
	height: 300px;
}
}
/* ビフォーアフター透かしのサイズと位置 */

.before::after {
	width: 26%;
	height: 26%;
	bottom: 3%;
	left: 80%;
}
.after::after {
	width: 26%;
	height: 26%;
	bottom: 3%;
	left: 80%;
}
/*----------------------------
flow
-----------------------------*/

.flow-down, .flow-end {
	position: relative;
	display: inline-block;
	margin: 1em 0;
	min-width: 120px;
	max-width: 100%;
	color: #555;
	font-size: 16px;
	box-sizing: border-box;
	border: 2px solid #999;
	width: 100%;
	padding: 30px 20px;
	border-radius: 10px;
}
.flow-end {
	margin: 1.5em 0 0;
}
.flow-down::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -30px;
	border: 40px solid transparent;
	border-top: 20px solid #999;
}
.flow-end::before, .flow-right.end::before {
	content: none;
}
.flow-right, .flow-right.end {
	position: relative;
	display: inline-block;
	margin: 0 1em 0 0;
	min-width: 60px;
	max-width: 23.666%;
	color: #555;
	font-size: 16px;
	box-sizing: border-box;
	border: 2px solid #999;
	width: 100%;
	padding: 30px 20px;
	border-radius: 10px;
	float: left;
	min-height: 300px;
}
.flow-right.end {
	margin: 0 0 0 0;
	background-color: #EEE;
}
.flow-right::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -28%;
	margin-top: -40px;
	border: 40px solid transparent;
	border-left: 20px solid #999;
}
.flow-down h3, .flow-right h3.flow-end h3 {
	color: #333;
}
 @media only screen and (max-width: 768px) {
.flow-right, .flow-right.end {
	position: relative;
	display: inline-block;
	margin: 1em 0;
	min-width: 120px;
	max-width: 100%;
	color: #555;
	font-size: 16px;
	box-sizing: border-box;
	border: 2px solid #999;
	width: 100%;
	padding: 30px 20px;
	border-radius: 10px;
	min-height: inherit;
}
.flow-right::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -30px;
	border-top: none;
	right: 50%;
	margin-top: 0px;
	border-left: none;
	border: 40px solid transparent;
	border-top: 20px solid #999;
}
.flow-down::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -30px;
	border: 40px solid transparent;
	border-top: 20px solid #999;
}
}
/*===========================
footer
===========================*/


/* バナー位置（1つか2つの場合はfloat:right） */

footer .add-banner .inner-add-banner .wrap-banner div {
/*float:right;*/
}

/* 
 * ↓↓↓↓↓↓↓↓ 768以下setup ↓↓↓↓↓↓↓↓（first.cssではコメントアウトする）
 */



/*===========================
home layout
===========================*/


@media screen and (max-width: 768px) {
.home-inner {
	padding: 8vw 0;
}
/* pickup1 */
	
.pickup1 .pic {
	border-radius: 20px;
}
.pickup1 .pick-a {
	width: 66.6%;
	float: none;
	margin-right: auto;
	margin: 0 auto 30px;
	position:relative;
}
.pickup1 .pick-b {
	width: 66.6%;
	float: none;
	margin: 0 auto 30px;
}
.pickup1 .pick-c {
	margin-left: auto;
	width: 66.6%;
	float: none;
	margin: 0 auto 30px;
}
.pickup1 .pic {
	overflow: hidden;
	width: 100%;
	height: 300px;
	position: relative;
}
.pickup1 .txt {
	width: 80%;
	min-height: auto;
}
}
 @media screen and (max-width: 420px) {
.home-inner h1 {
	font-size: 1.4em;
	margin-bottom: 20px;
}
/* pickup1 */

.pickup1 {
	width: 78%;
}
.pickup1 .pick-a, .pickup1 .pick-b, .pickup1 .pick-c {
	width: 100%;
}
.pickup1 .txt {
	width: 75%;
	min-height: auto;
}
.pickup1 .txt h2 {
	font-size: 1.1em;
}
}
 @media only screen and (max-width: 768px) {
/* pickup2 */
	
	
.pickup2 .one_third {
	width: 100%;
	float: none;
}
.pickup2 .topics .inner {
	height: auto;
	margin-bottom: 2em;
}
.pickup2 .one_third .inner {
	border-bottom: 1px solid #ddd;
}
.pickup2 .two_third {
	width: 100%;
	float: none;
	padding-left: 0;
	margin-left: 0;
	border-left: none;
	min-height: inherit;
	position: relative;
}
.pickup2 .two_third .like-btn1 {
	margin-bottom: 2em;
}
.pickup2 .two_third .pic {
	margin-bottom: 2em;
}
}
 @media only screen and (max-width: 420px) {
/* pickup2 */

 
.pickup2 {
	margin: 4vw auto 4vw;
}
.pickup2 .topics h2 {
	margin-top: -30px;
}
.pickup2 .pickup-half {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 1.5em;
	float: none;
}
.pickup2 .pickup-half.first {
	margin-left: 0;
}
.pickup2 .two_third .pic {
	float: none;
	width: 100%;
	height: 240px;
	position: relative;
	overflow: hidden;
	margin-left: 10px;
}
.pickup2 .two_third .pic img {
	position: absolute;
	top: 55%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	width: 100%;
}
}
