/* 
 * ------- setup ---------------------
 */


/*===========================
fonts
===========================*/

/* title */

h1, h2, h3, h4, h5, h6 {
	color: #333;
	letter-spacing: 1px;
	font-weight: 500;
	font-family: 'Noto Sans Japanese', sans-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
-----------------------------*/



/*===========================
home layout
===========================*/


.home-inner {
	padding: 4vw 0;
}
/* pickup1 */

/*背景画像*/
.home-bg1 {
	background-size: cover;
	background-position: center 5%;
	position: relative;
	z-index: 0;
	overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
	background-color: rgba(219,219,255,0.1);/*半透明カラーの色*/
}
.home-bg1::before {
	content: '';
	background-image: url(../img/common/bg_section1.jpg);
	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: 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.9);
	padding: 8px 14px 16px;
	margin: 0 auto;
	margin-top: -10vh;
	z-index: 999;
	position: relative;
	min-height: 150px;
}
.pickup1 .txt h2 {
	color: #1d3179;
	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: #333!important;
	border: 1px solid #444;
	border-radius: 30px;
	text-decoration: none;
	width: 240px;
	margin-top: 30px;
	font-family: 'Noto Sans Japanese', sans-serif;
	font-size: 1.2em;
	font-weight: 700;
}
.home-btn1 a:hover {
	color: #FFF!important;
	background-color: rgba(0, 0, 0, 0.5);
}
/* pickup2 */


.pickup2 {
	margin: 3.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: 240px;
	overflow: auto;
}
.pickup2 .topics h2 {
	width: 100px;
	height: 60px;
	padding: 10px;
	color: #FFF;
	background-color:#336dbb;
	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 .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;
}
.pickup2 .two_third .pic {
	float: right;
	width: 140px;
	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: 160%;
}
.pickup2 .two_third h3 {
	font-size: 1.3em;
	font-weight: 700;
	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;
}
}

/*===========================
info　color
===========================*/

.info {
	color: #FFF;
	background-color: rgba(150,150,150,0.40);
}
.info .info1 {
    letter-spacing: 0.1rem;
    color: #3C7D0F1;
}
/*===========================
btn　color
===========================*/


.like-btn1 a {
	background-color:#3f63b5;

}
.like-btn1 a:hover {
	background-color: rgba(112, 144, 214, 0.8);
}

/*===========================
data　color
===========================*/

.dataContainer {
	background-color:#4670a8;
}

.dataContainer .name {
	color:#def1ff;
}
.dataContainer .data {
	color: #FFF;
}

/*===========================
header h1　color
===========================*/
.secondary header h1 {
	color:#444;
	
}

/*===========================
home btn color
===========================*/
.secondaryNavArea .main-nav ul li.nav-home a {
	color:#255eaa;
}

/*===========================
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: #1f4f91;
	width: 240px;
	margin-left: -120px;
}

h3.menu-category {
	padding: 0.8rem;
	box-sizing: border-box;
	background-color:#7296c8;
	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 #999;
}
.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;
}
.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: 75%;
	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: 40%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
 
	transform: translate(-50%, -50%);
	width: 120%;
}
}
