@charset "utf-8";
/* 基本色 */
root {	
	large-width: 1000px;		
}			
/* 基本設定：ページ全体 */		
body {
	margin: 0;			
	font-family: 'メイリオ', 'Hiragino Kaku Gothic Pro', 'Montserrat', 'sans-serif';
}			
/* ヘッダー */			
header {
	position: flex;
	line-height: 40px;
	top: 0;
	left:0;	
	z-index: 100;	
	width: 100%;
	background-color: rgba(13,175,192,1.00);
}			
/* ヘッダーA：サイト名 */			
.headA {
	display: flex;		
	line-height: 50px;
	padding-left: 24px;
	padding-right: 24px;
	background-color:salmon;
	color: #fff;
	font-family: 'Montserrat', 'sans-serif';
	font-size: 24px;
	text-decoration: none;
}			


/* ヘッダーB:　ナビゲーションメニュー */			
.headB ul {
	margin: 0;	
	padding: 0;	
	list-style: none;
}			
.headB a {			
	display: block;	
	padding: 5px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}			
.headB a:hover {				
	background-color: cadetblue;
}
@media (min-width: 768px) {				
	header .container {
		display: flex;
		align-items: right;
		justify-content: space-between;
		max-width: 1000px;
		margin-left: 50px;
		margin-right: 0;
	}			
	.headB ul {				
		display: flex;
	}
}			

/* ヘッダーC:　トグルボタン */

@media (max-width: 767px) {
	
	/* 小さい画面用の設定 */
	
	header .container-small{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	
	.headC {
		margin-right: 0;
		margin-left: 25px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.5;
		cursor: pointer;		
	}
	.headC:hover {
		opacity: 0.3;
	}
	
	.headB {
		display: none;
		
	}
	
}


@media (min-width: 768px) {
	/* 大きい画面用の設定 */
	.headC {
display: none;
		
	}


	.headB {
		display: block !important;
	}
}	



/* コンテンツA：ヒーローイメージ */			
.conA {
	display: flex;		
	align-items: center;
	justify-content: center;
	height: 82vh;	
	min-height: 450px;
	max-height: 1600px;
	background-image: url(../images/bike_michi.jpg) ;
	background-position: left;
	background-size: contain;
	background-color: antiquewhite;
	background-repeat: repeat-y;
	color: #fff;
	text-align: right;
}

.conA h1 {
	margin-top: 0;
	margin-bottom: 10px;
	margin-right: 5px;
	font-family: 'Montserrat', 'sans-serif';
	font-size: 96px;
	letter-spacing: 0.05em;
	text-shadow: 2px 4px 2px #022;
}
.conA p {
	margin-top: 0;
	margin-bottom: 0;
	margin-right: 5px;
	font-size: 22px;
	text-shadow: 2px 2px 2px #022;
}
.conA a {
	display: inline-block;
	margin-bottom: 15px;
	margin-right: 10px;
	padding: 0 20px;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 2px 2px 2px #022;
}
.conA a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}

.conA img {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 0;
	width: 11%;
	box-shadow: 2px 2px 2px #022;
	
}


.conA a2 {
	font-size: 14px;
}









@media (min-width:768px) {
	.conA h1 {
		font-size: 148px;
	}
	.conA p {
		font-size: 42px;
	}
	.conA a {
		font-size: 20px;
	}
}


/*　コンテンツB:　概要（アイコン+テキスト）　*/

.conB .container {
	padding-top: 20px;
	padding-bottom: 15px;
	background-color: antiquewhite;
	background-size: flex;
	color: #005243;
}
.conB .text {
	padding-top:  10px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 0;	
	text-align: center;
}
.conB h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 22px;
}
.conB p {
	margin-bottom: 20px;
	margin-top: 0;
	font-size: 18px;
	line-height: 1.8;
	opacity: 0.8;
}
.conB a {
	color: #eb6137;
	text-decoration: none;
	text-shadow: 2px 2px 2px #fff;
	font-size: 22px;

}
.conB a:hover {
	text-decoration: underline;
}
.conB .icon {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 40px;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
	background-color: #72c6c7;
	color: #fff;
	box-shadow: 2px 2px 2px #022;
	
}
@media (min-width: 768px) {
	.conB .container {
		display: flex;
		max-width: auto;		
		margin-left: auto;
		margin-right: auto;
		background-color: navajowhite;
		background-size: cover;
	}
	.conB .text {
		flex: 1;
	}
}





/* コンテンツC:　概要（画像＋テキスト） */
.conC {
	background-color: #97B3C3;
	color: #024;
	background-position: center;
	background-size: 80vw;
}
.conC .text {
	padding: 10px;
	background-position: center;
	background-color:  rgba(255,255,255,0.4);
	border-radius: 2%;
	box-shadow: 2px 2px 2px #022;
}
.conC h2 {
	margin-top: 0;
	margin-bottom: 10;
	font-size: 20px;
}
.conC p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.8;
}
.conC a {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 5px;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}
.conC a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.conC .photo {
	min-height: 200px;
	background-image: url(../images/raku.JPG);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media (min-width: 768px) {
	.conC .container {
		display: flex;
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.conC .photo {
		flex: 0 0 400px;
	}
	.conC .text {
		flex: 1;
		padding: 20px;
	}
}






/* コンテンツD:　概要（画像＋テキスト:逆配置） */
.conD {
	background-color: antiquewhite;
	background-position: center;
	background-size: 80vw;
	color: #024;
}
.conD .container {
	padding-top: 0;
}
.conD .text {
	padding: 10px;
	background-color: rgba(255,255,255,0.4);
	border-radius: 2%;
	box-shadow: 2px 2px 2px #022;
}
.conD h2 {
	margin-top: 0;
	margin-bottom: 10;
	font-size: 20px;
}
.conD p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.8;
}
.conD a {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 5px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}
.conD a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.conD .photo {
	min-height: 200px;
	background-image: url(../images/hosokatu_harukasu.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media (min-width: 768px) {
	.conD .container {
		display: flex;
	flex-direction: row-reverse;
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;		
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.conD .photo {
		flex: 0 0 400px;
	}
	.conD .text {
		flex: 1;
		padding: 20px;
	}	
}







/* コンテンツE:　概要（画像＋テキスト） */
.conE {
	background-color: #97B3C3;
	color: #024;
	background-position: center;
	background-size: 80vw;
}
.conE .text {
	padding: 10px;
	background-position: center;
	background-color: rgba(255,255,255,0.4);
	border-radius: 2%;
	box-shadow: 2px 2px 2px #022;
}
.conE h2 {
	margin-top: 0;
	margin-bottom: 10;
	font-size: 20px;
}
.conE p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.8;
}
.conE a {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 5px;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}
.conE a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.conE .photo {
	min-height: 200px;
	background-image: url(../images/egurian_e.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	
}
@media (min-width: 768px) {
	.conE .container {
		display: flex;
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.conE .photo {
		flex: 0 0 400px;
	}
	.conE .text {
		flex: 1;
		padding: 20px;
	}
}






/* コンテンツF:　概要（画像＋テキスト:逆配置） */
.conF {
	background-color: antiquewhite;
	background-position: center;
	background-size: 80vw;
	color: #024;
}
.conF .container {
	padding-top: 0;
}
.conF .text {
	padding: 10px;
	background-color: rgba(255,255,255,0.4);
	border-radius: 2%;
	box-shadow: 2px 2px 2px #022;
}
.conF h2 {
	margin-top: 0;
	margin-bottom: 10;
	font-size: 20px;
}
.conF p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.8;
}
.conF a {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 5px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}
.conF a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.conF .photo {
	min-height: 200px;
	background-image: url(../images/tamago.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media (min-width: 768px) {
	.conF .container {
		display: flex;
	flex-direction: row-reverse;
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;		
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.conF .photo {
		flex: 0 0 400px;
	}
	.conF .text {
		flex: 1;
		padding: 20px;
	}	
}





/* コンテンツG:　概要（画像＋テキスト） */
.conG {
	background-color: #97B3C3;
	color: #024;
	background-position: center;
	background-size: 80vw;
}
.conG .text {
	padding: 10px;
	background-position: center;
	background-color:  rgba(255,255,255,0.4);
	border-radius: 2%;
	box-shadow: 2px 2px 2px #022;
}
.conG h2 {
	margin-top: 0;
	margin-bottom: 10;
	font-size: 20px;
}
.conG p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.8;
}
.conG a {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 5px;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}
.conG a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.conG .photo {
	min-height: 200px;
	background-image: url(../images/biwako.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media (min-width: 768px) {
	.conG .container {
		display: flex;
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.conG .photo {
		flex: 0 0 400px;
	}
	.conG .text {
		flex: 1;
		padding: 20px;
	}
}









/* コンテンツH:　概要（画像＋テキスト:逆配置） */
.conH {
	background-color: antiquewhite;
	background-position: center;
	background-size: 80vw;
	color: #024;
}
.conH .container {
	padding-top: 0;
}
.conH .text {
	padding: 10px;
	background-color: rgba(255,255,255,0.4);
	border-radius: 2%;
	box-shadow: 2px 2px 2px #022;
}
.conH h2 {
	margin-top: 0;
	margin-bottom: 10;
	font-size: 20px;
}
.conH p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.8;
}
.conH a {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 5px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}
.conH a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.conH .photo {
	min-height: 200px;
	background-image: url(../images/egurian.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media (min-width: 768px) {
	.conH .container {
		display: flex;
	flex-direction: row-reverse;
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;		
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.conH .photo {
		flex: 0 0 400px;
	}
	.conH .text {
		flex: 1;
		padding: 20px;
	}	
}








/* コンテンツC2:　概要（画像＋テキスト） */
.conC2 {
	background-color: #97B3C3;
	color: #024;
	background-position: center;
	background-size: 80vw;
}
.conC2 .text {
	padding: 10px;
	background-position: center;
	background-color:  rgba(255,255,255,0.4);
	border-radius: 2%;
	box-shadow: 2px 2px 2px #022;
}
.conC2 h2 {
	margin-top: 0;
	margin-bottom: 10;
	font-size: 20px;
}
.conC2 p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.8;
}
.conC2 a {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 5px;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}
.conC2 a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.conC2 .photo {
	min-height: 200px;
	background-image: url();
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media (min-width: 768px) {
	.conC2 .container {
		display: flex;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.conC2 .photo {
		flex: 0 0 480px;
	}
	.conC2 .text {
		flex: 1;
		padding: 20px;
	}
}






/* コンテンツD2:　概要（画像＋テキスト:逆配置） */
.conD2 {
	background-color: antiquewhite;
	background-position: center;
	background-size: 80vw;
	color: #024;
}
.conD2 .container {
	padding-top: 0;
}
.conD2 .text {
	padding: 10px;
	background-color: rgba(255,255,255,0.4);
	border-radius: 2%;
	box-shadow: 2px 2px 2px #022;
}
.conD2 h2 {
	margin-top: 0;
	margin-bottom: 10;
	font-size: 20px;
}
.conD2 p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	opacity: 0.8;
}
.conD2 a {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 5px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentcolor;
	border-radius: 6px;
	background-color: #F5AF7D;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}
.conD2 a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.conD2 .photo {
	min-height: 200px;
	background-image: url();
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}
@media (min-width: 768px) {
	.conD2 .container {
		display: flex;
	flex-direction: row-reverse;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;		
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.conD2 .photo {
		flex: 0 0 480px;
	}
	.conD2 .text {
		flex: 1;
		padding: 20px;
	}	
}

























/*　コンテンツI:　フッター上の帯（ロゴ+TOPへ）　*/

.conI .container {
	padding-top: 10px;
	padding-bottom: 0;
	background-color: antiquewhite;
	background-size: flex;
	color: #023;
}
.conI .text {
	padding-top:  10px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 10px;	
	text-align: center;
}


.conI h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}
.conI p {
	margin-bottom: 10px;
	margin-top: 0;
	font-size: 18px;
	line-height: 1.8;
	opacity: 0.8;
}
.conI a {
	margin-left: 30px;
	color: #eb6137;
	font-size: 18px;
	text-decoration: none;
	text-shadow: 2px 2px 2px #fff;
}
	
.conI a:hover {
	text-decoration: underline;
}
.conI .icon {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 40px;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
	background-color: #72c6c7;
	color: #fff;
	box-shadow: 2px 2px 2px #022;
	
}
@media (min-width: 768px) {
	.conI .container {
		display: flex;
		max-width: auto;		
		margin-left: auto;
		margin-right: auto;
		background-color: navajowhite;
		background-size: cover;
	}
	.conI .text {
		flex: 1;
	}
}







/* フッター */
footer {
	color: #fff;
	background-color: darkcyan;
}
	
	footer container {
		padding: 20px 40px;
	}	
	
	

/* フッターA:　サイト情報 */
.footA {
	margin-bottom: 15px;
}
.footA h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	letter-spacing: 0.08em;
}
footer .container {
	padding: 15px 10px;
}
.footA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
}
.footA a {
	color: inherit;
	text-decoration: none;
}


/* 	フッターB：　フッターメニュー */

.footB div {
	margin-bottom: 15px;
}
.footB h3 {
	margin-top: 0;
	margin-bottom: 10px;
	border-bottom: solid 1px currentColor;
	font-size: 14px;
}
.footB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footB a {
	display: block;
	padding: 5px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
}
.footB a hover {
	background-color: rgba(0,0,0,0.3);
}
	
@media (min-width: 768px) {
	.footB {
		display: flex;
	}
	.footB div {
		flex: 1;
	}
	.footB div:not(:first-child) {
		margin-left: 40px;
	}
}


/* フッターC：フッターメニュー*/
.footC {
	font-size: 12px;
	text-align: center;
	font-famiry:'Montserrat', 'sans-serif';
}

/* フッターD：SNSメニュー */	

.footD {
	margin-top: 15px;
}
	
	
	.footD ul {
		display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
		
}
.footD a {
	display: block;
	margin-right: 8px;
	padding: 0;
	color: inherit;
	font-size: 16px;
	text-decoration: none;
	border: solid 1px currentColor;
		width: 2em;
		line-height: 2em;
		border-radius: 50%;
		text-align: center;
		
	
}
	
.footD a hover {
	background-color: palevioletred;
}
	



#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 80%;
}
 
#page-top a {
    display: block;
    background: #666;
    color: #fff;
    width: 100px;
    padding: 25px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
}
 
#page-top a:hover {
    background: #999;
    text-decoration: none;
}
