@charset "UTF-8";

/*------------------------------------------------
基本
------------------------------------------------*/
/* 基本色 */
:root {
	--main-color: #0066cc;
	--accent-color: #006699;
	--dark-main-color: #00ccff;
	--text-bright-color: #fff;
	--icon-color: #fff;
	--icon-bk-color: #ddd;
	--gray-color: #ddd;
	--large-width: 1000px;
	--middle-width: 800px;
}

/* 基本設定： フォントサイズ */
@media (max-width: 599px) {
	:root {
		font-size: 12px;
	}
}
@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 14px;
	}
}
@media (min-width: 800px) {
	:root {
		font-size: 16px;
	}
}
body {font-size: 14px;}


/* 基本設定： ページ全体 */
body {
	margin: 0;
	font-family: 'メイリオ',
		'Hiragino Kaku Gothic Pro', 
		sans-serif;
}


/*------------------------------------------------
ヘッダー
------------------------------------------------*/
/* ヘッダー */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
}

.nohero header {
	position: static;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}

/* ヘッダーA: サイト名 */
.headA {
	display: inline-block;
	line-height: 70px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #0066cc;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
	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: 15px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
}

.headB a:hover {
	background-color: rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
	header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.headB ul {
		display
		
		: flex;
	}
}


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

@media (max-width: 767px) {
	/* 小さい画面用の設定 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.headC {
		margin-right: 10px;
		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;
	}
}





/*------------------------------------------------
TOPページ　コンテンツA： ヒーローイメージ
------------------------------------------------*/
.conA {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 450px;
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../img/top.jpg);
	background-position: center;
	background-size: cover;
	color: #fff;
	color: var(--text-bright-color);
	text-align: center;
}

.conA h1 {
	margin-top: 0;
	margin-bottom: 5px;
	font-family: 'Montserrat', sans-serif;
	font-size: 12vw;
	letter-spacing: 0.2em;
	margin-left: 0.2em;
}

.conA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 30px;
	font-weight: bold;
	text-shadow: 2px 2px 0px #000000; 
}

.conA img {
	width: 30%;
	margin-bottom: 260px;
}

.conA a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 50px;
	border: solid 4px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 16px;
	text-decoration: none;
}

.conA a:hover	{
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}

@media (min-width: 768px) {
	.conA h1 {
		font-size: 110px;
	}

	.conA p {
		font-size: 40px;
	}
}



/*------------------------------------------------
TOPページ　PR動画
------------------------------------------------*/
.youtube {
 	position: relative;
 	width: 100%;
 	padding-top: 56.25%;
}
.youtube iframe {
 	position: absolute;
 	top: 0;
 	right: 0;
 	width: 100% !important;
	height: 100% !important;
	margin-top: 10px;
}


@media (min-width: 768px) {
	.youtube {
		width: 40%;
		padding-top: 22%;
		margin: 0 auto;
		margin-bottom: 70px;
	}
	.youtube iframe {
		margin-top: 35px;
	}
}




/*------------------------------------------------
TOPページ　コンテンツB： 概要（アイコン＋テキスト）
------------------------------------------------*/
.conB .container {
	padding-top: 80px;
	padding-bottom: 20px;
}

.conB .text {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 60px;
	text-align: center;
}

.conB h2 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 20px;
}

.conB p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conB a {
	color: #5D9AB2;
	color: var(--main-color);
	text-decoration: none;
}

.conB a:hover	{
	text-decoration: underline;
}

.conB .photo01	{
	width: 200px;
	height: 200px;
	margin : 0 auto;
	/*min-height: 100px;*/
	background-image: url("../img/icon01.png");
	background-position: center;
	background-size: cover;
}
.conB .photo02	{
	width: 200px;
	height: 200px;
	margin : 0 auto;
	/*min-height: 100px;*/
	background-image: url("../img/icon02.png");
	background-position: center;
	background-size: cover;
}
.conB .photo03	{
	width: 200px;
	height: 200px;
	margin : 0 auto;
	/*min-height: 100px;*/
	background-image: url("../img/icon03.png");
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conB .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conB .text	{
		flex: 1;
	}
}


/*------------------------------------------------
TOPページ　コンテンツC： 概要（画像＋テキスト）
------------------------------------------------*/
.conC {
	background-color: #0066cc;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
}

.conC .text {
	padding: 20px;
}

.conC h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.3;
}

.conC p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conC a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	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("../img/ukiyoe05.jpg");
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conC .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conC .photo {
		flex: 3;
	}

	.conC .text {
		flex: 2;
		padding: 50px;
	}
}

/*------------------------------------------------
TOPページ　コンテンツD： 概要（画像＋テキスト：逆配置）
------------------------------------------------*/
.conD .container {
	padding-top: 2px;
}

.conD .text {
	padding: 20px;
}

.conD h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.3;
}

.conD p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conD a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	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(../img/ukiyoe06.jpg);
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conD .container {
		display: flex;
		flex-direction: row-reverse;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.conD .photo {
		flex: 0 0 450px;
	}

	.conD .text {
		flex: 1;
		padding: 50px;
	}
}

/*------------------------------------------------
TOPページ　コンテンツE： 概要（画像＋テキスト）
------------------------------------------------*/
.conE {
	background-color: #0066cc;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
}

.conE .text {
	padding: 20px;
}

.conE h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.3;
}

.conE p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conE a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	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(../img/ukiyoe01.jpg);
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conE .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conE .photo {
		flex: 3;
	}

	.conE .text {
		flex: 2;
		padding: 50px;
	}
}

/*------------------------------------------------
TOPページ　コンテンツF： 概要（画像＋テキスト：逆配置）
------------------------------------------------*/
.conF .container {
	padding-top: 2px;
}

.conF .text {
	padding: 20px;
}

.conF h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.3;
}

.conF p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conF a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	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(../img/ukiyoe02.jpg);
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conF .container {
		display: flex;
		flex-direction: row-reverse;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.conF .photo {
		flex: 0 0 450px;
	}

	.conF .text {
		flex: 1;
		padding: 50px;
	}
}


/*------------------------------------------------
TOPページ　コンテンツG： 概要（画像＋テキスト）
------------------------------------------------*/
.conG {
	background-color: #0066cc;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
}

.conG .text {
	padding: 20px;
}

.conG h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.3;
}

.conG p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conG a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	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(../img/ukiyoe03.jpg);
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conG .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conG .photo {
		flex: 3;
	}

	.conG .text {
		flex: 2;
		padding: 50px;
	}
}

/*------------------------------------------------
TOPページ　コンテンツH： 概要（画像＋テキスト：逆配置）
------------------------------------------------*/
.conH .container {
	padding-top: 2px;
}

.conH .text {
	padding: 20px;
}

.conH h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.3;
}

.conH p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conH a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	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(../img/ukiyoe04.jpg);
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conH .container {
		display: flex;
		flex-direction: row-reverse;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.conH .photo {
		flex: 0 0 450px;
	}

	.conH .text {
		flex: 1;
		padding: 50px;
	}
}



/*------------------------------------------------
パンくずリスト 
------------------------------------------------*/
/*.bread {
	margin-top: 50px;
}*/
.bread ol {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.bread a {
	display: block;
	padding: 5px;
	color: inherit;
	font-size: 0.875rem;
	text-decoration: none;
}
.bread a::after {
	margin-left: 10px;
	content: '\f054';
	font-family: 'FontAwesome';
	opacity: 0.3;
}
.bread a:hover {
	background-color: rgba(0,0,0,0.3);
}


/*------------------------------------------------
コンテンツ 下にある3連ボタン【A】
------------------------------------------------*/
.button {
	clear: both;
	height: 200px;
	margin-top: 40px;
	padding-top: 50px;
}
.button_center {
	clear: both;
	height: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	/*padding-top: 50px;*/
}

/*.button01 ul {
	clear: both;
}*/
.button01 li {
	height: 50px;
	line-height: 50px;
	text-align: center;
	background-color: #fff;
	border: 3px solid #000;
	color: #000;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 10px;
	margin-bottom: 0px;
	list-style: none;
}
.button01 li a {
	display: block;
	color: #000;
	font-size: 100%;
	text-decoration: none;
}


/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.button01 li {
		float: left;
		width: 200px;
		margin-left: 30px;
	}
	.button01 li:hover {
		background-color: #000;
	}
	.button01 li a:hover {
		background-color: #000;
		color: #fff;
		font-size: 120%;
	}
}

/*------------------------------------------------
コンテンツ 下にある3連ボタン【B】
------------------------------------------------*/
.button_b {
	clear: both;
	height: 200px;
	margin-top: 100px;
}




/*------------------------------------------------
コンテンツページ： 全体
------------------------------------------------*/
/* コンテンツページ: 記事 */
.post .container {
	max-width: 800px;
	max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
	padding: 30px 10px;
}
.post h1 {
	padding-left: 0.5rem;
	border-left: solid 0.75rem #006699;
	border-left: solid 0.75rem var(--accent-color);
	font-size: 1.4rem;
	margin-top: 15px;
	margin-left: 20px;
	margin-right: 20px;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.post h1 {
		font-size: 2rem;
	}
}


.post h5 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
	margin-right: 20px;
	line-height: 1.5;
}
/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.post h5 {
		font-size: 1.4rem;
	}
}


.post p {
	font-size: 1.0rem;
	line-height: 1.5;
	margin-left: 20px;	
	margin-right: 20px;
	margin-top: 10px;
}
/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.post p {
		font-size: 1rem;
	}
}




/*------------------------------------------------
コンテンツページ： 特徴　feature.html
------------------------------------------------*/
.content01 img {
	width: 80%;
	height: auto;
	margin-left: 20px;
}
.content01 a {
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 50px;
	padding-right: 50px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 10px;
	margin-right: 10px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 16px;
	text-decoration: none;
}
.content01 a:hover	{
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.content02 {
	clear: both;
}
.post h6 {
	font-size: 1.4rem;
	font-weight: bold;
	margin-top: 30px;
	margin-left: 20px;
}
.content02 a {
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 50px;
	padding-right: 50px;
	margin-top: 15px;
	margin-bottom: 20px;
	margin-left: 10px;
	margin-right: 10px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 16px;
	text-decoration: none;
}
 .content02 a:hover	{
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}

.point {
	display: inline-block;
	width: 220px;
	padding: 0.5em 3em 0.5em 3em;
	margin-left: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
    background: #D0F3FD;/*背景色*/
    border-top: solid 6px #1dc1d6;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.32);/*影*/

}
.point p {
    margin: 0; 
    padding: 0.5em 0.5em;
	text-align: center;
	font-size: 110%;
	font-weight: bold;
	line-height: 1.3;
}
.ul_design {
	clear: both;
	/*display: inline-block;*/
	background: #fffde8;
	box-shadow: 0px 0px 0px 10px #fffde8;/*線の外側*/
	border: dashed 2px #ffb03f;/*破線*/
	border-radius: 8px;
	margin-left: 20px;/*はみ出ないように調整*/
	margin-right: 10px;/*はみ出ないように調整*/
	margin-top: 20px;
	margin-bottom: 30px;
	padding: 1em 0.5em 1em 1.5em;
	list-style: none;
}
.ul_design li {
	line-height: 1;
	padding: 0.5em 0;
	text-decoration: none;
}


/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.content01 img {
		float: left;
		width: 200px;
		height: auto;
		margin-left: 20px;
	}
	.content01 p {
		margin-left: 240px;
		width: 550px;
		font-size: 1.2rem;
		line-height: 1.4;
	}
	.point {
		float: left;
		width: 160px;
		margin-bottom: 30px;
	}
	.point p {
		font-size: 110%;
	}
	.ul_design li {
		margin-left: 30px;		
	}
}


/*------------------------------------------------
aタグ挿入
------------------------------------------------*/
.tag {
	height: 500px; 
}
.tag02 {
	height: 600px; 
}
.tag h5 {
	margin: 00px 20px 0px 20px;
	padding: 30px 0px 0px 0px;
	font-size: 100%;
	clear: both;
}
.tag_plus {
	margin-top: 5px;
	margin-left: 10px;
}
.tag_plus01 img {
	float: left;
	width: 80%;
	margin-right: 10px;
	margin-top: 5px;
}
.tag_plus02 img {
	float: left;
	width: 90%;
	margin-right: 5px;
	margin-top: 5px;
}




/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.tag01 {
		height: 700px; 
	}
	.tag02 {
		height: 900px; 
	}
	.tag h5 {
		margin: 20px 20px 0px 20px;
		font-size: 150%;
	}
	}
	.tag_plus img {
		width: 250px;
	}
	.tag_plus01 img {
		width: 95%;
	}
}



/*------------------------------------------------
コンテンツ：アバウト　about.html
------------------------------------------------*/
.about_logo img {
	margin-left: 40px;
}
.about_logo01 img {
	width: 30%;
	margin-top: 15px;
}
.about_logo02 img {
	width: 75%;
	margin-top: 5px;
	margin-bottom: 10px;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.about_logo img {
		float: left;
		margin-top: 25px;
		margin-bottom: 40px;
	}
	.about_logo01 {
		width: 480px;
		margin-left: 100px;
	}
	.about_logo02 img {
		width: 320px;
		margin-left: 50px;
	}
}


.history {
	clear: both;
	background-color: #0066cc;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
}
.history .container {
	max-width: 800px;
	max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
	margin-top: 2px;
	margin-bottom: 2px;
	padding: 20px 10px;
}
.history .text {
	padding: 10px 20px 10px 20px;
	margin-left: auto;
}
.history h2 {
	margin-top: 3px;
	margin-bottom: 10px;
	font-size: 1.3rem;
}
.history table {
	border-collapse: collapse;
	border-top: solid 1px #ddd;
	border-top: solid 1px var(--gray-color);
	font-size: 0.875rem;
}
.history th,
.history td {
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
	line-height: 1.4;
}
.history th {
	padding-right: 2rem;
	text-align: left;
	word-break: keep-all;
}
.history td a {
	text-decoration: none;
	color: white;
}
.history td a:hover {
	color: orange;
}

/*地図 */
.location iframe {
	width:100%;
	height: 400px;
	vertical-align: bottom;
}

.location h2 {
	margin: 0;
	margin-top: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #2B5566;
	background-color: var(--dark-main-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 1.2rem;
	text-align: center;
}
.location h5 {
	font-size: 1rem;
	font-weight: bold;
	margin-top: 7px;
	margin-bottom: 10px;
	margin-left:20px;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.history .container {
		display: flex;
		/*max-width: 1000px;*/
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.history .text {
		flex: 1;
		margin-left: 130px;
		margin-right: 130px;
		padding: 30px 10px;
	}
	.history th,
	.history td {
		padding-top: 0.8rem;
		padding-bottom: 0.8rem;
	}
	.location h2 {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.location h5 {
		margin-left: 240px;
	}
}




/*------------------------------------------------
コンテンツ：加工　design.html
コンテンツ：安全性　safety.html
------------------------------------------------*/
.design img {
	margin-left: 20px;
	margin-top: 5px;
	width: 90%;
}
.design p span {
	font-size: 140%;
	font-weight: bold;
}
.close {
	clear: both;
	margin-left: 20px;
	width: 90%;
	font-weight: bold;
	line-height: 1.4;
	color: red;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.design img {
		float: left;
		width: 300px;
		margin-bottom: 30px;
	}
	.design p {
		margin-left: 350px;
	}
	.design a {
		margin-left: 40px;
	}
	.design h6 {
		clear: both;
	}
	.close {
		padding-top: 30px;
	}
}



/*------------------------------------------------
コンテンツ：ギャラリー　gallery.html
------------------------------------------------*/
.gallery {
	height: auto; 
}
.gallery a {
	font-size: 130%;
	font-weight: bold;
	text-decoration: none;
	color: deepskyblue;
}
.gallery a:hover {
	color: orange;
}
.gallery h6 {
	clear: both;
	padding-top: 15px;
}
.gallery01 {
	margin-top: 5px;
	margin-left: 20px;
}
.gallery_image01 img {
	float: left;
	width: 30%;
	margin-right: 5px;
	margin-top: 5px;
}
.gallery_image02 img {
	width: 60%;
	margin-right: 5px;
	margin-top: 5px;
}
.gallery_image03 img {
	width: 14%;
	margin-right: 2px;
	margin-top: 5px;
}


/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.gallery {
		height: 4500px; 
	}
	.gallery h6 {
		padding-top: 30px;
	}
	.gallery_image01 img {
		width: 150px;
		margin: 5px 0px 0px 0px;
	}
	.gallery_image02 img {
		width: 250px;
	}
	.gallery_image03 img {
		width: 112px;
		margin-right: 10px;
	}
}

/*------------------------------------------------
コンテンツ：プロダクト　product.html
------------------------------------------------*/
.product {
	height: auto; 
}
.product a {
	font-size: 130%;
	font-weight: bold;
	text-decoration: none;
	color: deepskyblue;
}
.product a:hover {
	color: orange;
}
.product h6 {
	clear: both;
	padding-top: 15px;
}
.product01 {
	margin-top: 5px;
	margin-left: 20px;
}
.product_image01 {
	width: auto;
	margin-right: 20px;
	margin-top: 5px;
}
.product_image01 img {
	float: left;
	width: 100%;
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 10px;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.product {
		height: 750px; 
	}
	.product h6 {
		padding-top: 30px;
	}
	.product_image01 img {
		width: 200px;
	}
	.product_image01 {
		float: left;
		width: 200px;
	}
	.product_image01 p {
		font-size: 90%;
	}

	.product_image01:hover {
		opacity: 0.5;
	}
}



/*------------------------------------------------
コンテンツ：製品見本　sample.html
------------------------------------------------*/
.sample h6 {
	clear: both;
	padding-top: 15px;
}
.sample01 {
	margin-top: 5px;
	margin-left: 20px;
}
.sample img {
	/*float: left;*/
	width: 70%;
	/*margin-left: 20px;*/
	margin-right: 5px;
	margin-top: 5px;
}


/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.sample {
		height: 1100px; 
	}
	.sample h6 {
		padding-top: 30px;
	}

	.sample img {
		float: left;
		width: 150px;
	}
}


/*------------------------------------------------
コンテンツ：資料・ツール　tool.html
------------------------------------------------*/
.tool h6 {
	clear: both;
	padding-top: 5px;
}
.tool img {
	width: 80%;
	margin-left: 20px;
	margin-right: 5px;
	margin-top: 5px;
}
.tool a {
	padding: 20px 50px 20px 50px;
	margin-left: 20px;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	/*.sample {
		height: 900px; 
	}*/
	.tool h6 {
		padding-top: 30px;
	}
	.tool img {
		float: left;
		width: 200px;
	}
	.tool p {
		margin-left: 250px;
		width: 400px;
	}
	.tool a {
		clear: both;
		padding: 15px 150px 15px 150px;
	}
}




/*------------------------------------------------
お知らせ　news.html
------------------------------------------------*/
.conA.compact {
	height: 450px;
	min-height: 0;
	/*background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),*/ 
	background-image: /*linear-gradient(rgba(0,204,255,1), rgba(0,204,255,1)),*/
	url("../img/news_top.jpg");
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.conA.compact {
		height: 600px;
	}
}


/*  記事一覧  */
.listA h1 {
	text-align: center;
}
.listA .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 30px auto;
}
.listA article {
	flex: 1 1 384px;
	display: flex;
}
.listA a {
	flex: 1;
	margin: 5px 20px 5px 20px;
	display: flex;
	border: solid 1px #ddd;
	border: solid 1px var(--gray-color);
	color: inherit;
	text-decoration: none;
}
.listA a:hover {
	opacity: 0.8;
}

.listA .photo {
	flex: 2;
	min-height: 0;
	width: 100px;
	height: 100px;
	background-position: center;
	background-size: cover;
}
.listA .text {
	flex: 3;
	margin: 10px;
}
.listA h2 {
	font-size: 17px;
	font-weight: bold;
	padding-bottom: 7px;
}
.listA p {
	font-size: 12px;
	line-height: 1.4;
	opacity: 0.8;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.listA article {
		flex: 1 500px;
		display: flex;
	}
	.listA a {
		margin: 20px 5px 5px 20px;
	}
	.listA .photo {
		flex: 2;
		width: 150px;
		height: 150px;
	}
/*	.listA p {
		display: none;
	}
*/	.listA .text {
		flex: 4;
		margin: 20px;
	}
	.listA h2 {
		font-size: 22px;
		padding-bottom: 7px;
	}
	.listA p {
		font-size: 16px;
		line-height: 1.4;
	}
}


/*------------------------------------------------
記事（ニュース記事）　news0000.html
------------------------------------------------*/
.news img {
	margin-left: 20px;
	margin-top: 5px;
	width: 90%;
}
.news h6 {
	line-height: 1.4;
	margin-right: 30px;
}
.news p span {
	font-size: 140%;
	font-weight: bold;
}
.news_photo img {
	margin: 10px 20px 5px 20px;
}
.news_text {
	margin: 10px 20px 5px 20px;
	line-height: 1.4;
}
.news a {
	margin-bottom: 3px;
}
.link-tag a {
	background-color: white;
}
.bigfont h6 {
	font-size: 140%;
	padding-top: 15px;
}
.qr img {
	width: 30%;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.news img {
		float: left;
		width: 300px;
		margin-bottom: 30px;
	}
	.news p {
		margin-left: 350px;
	}
	.news a {
		margin-left: 40px;
	}
	.news h6 {
		clear: both;
	}
	.news_photo img {
		width: 230px;
		margin: 10px 0px 10px 20px;
	}
	.news_photo_image01 {
		height: 770px;
	}
	.news_photo_image02 {
		height: 0px;
	}
	.news_link a {
		margin: 10px 20px 10px 40px;
		line-height: 1.4;
  		padding: 2em;
		position: relative;
	}
	.link-tag a {
		margin: 10px 20px 10px 20px;
		line-height: 1.4;
  		padding: 0em;
		background-color: white;
		position: relative;
	}
	.link-tag a:hover {
		opacity: 0.5;
	}
	.bigfont h6 {
		font-size: 280%;
		padding-top: 30px;
	}
	.qr img {
		width: 100px;
	}
	.news_link a {
		float: left;		
	}
}




/*------------------------------------------------
契約について　contact.html
------------------------------------------------*/
.box {
	padding: 0.5em 1em;
    margin: 10px 20px 10px 20px;
    border: double 5px #0099cc;

}
.box p {
	margin: 0; 
    padding: 0;
	text-align: center;
}


/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.boxarea {
		/*height: 150px;*/
	}
	.box {
		float: left;
		width: 130px;
		padding: 0.5em 1em;
		margin: 10px 0px 10px 20px;
	}
	.box p {
		font-size: 85%;
		padding: 20px 10px 20px 10px;
	}
	.box01 {
		clear: both;
	}
}

.plan {
	/*clear: both;*/
	/*display: inline-block;*/
	background: #fffde8;
	box-shadow: 0px 0px 0px 10px #fffde8;/*線の外側*/
	border: dashed 2px #ffb03f;/*破線*/
	border-radius: 8px;
	margin-left: 20px;/*はみ出ないように調整*/
	margin-right: 20px;/*はみ出ないように調整*/
	margin-top: 20px;
	margin-bottom: 30px;
	padding: 1em 0.5em 0.5em 1.5em;
	list-style: none;
}
.plan dt {
	line-height: 1;
	padding: 0.5em 1em 0em 0em;
	text-decoration: none;
	font-weight: bold;
}
.plan dd {
	line-height: 1.3;
	padding: 0.5em 1em 1em 0em;
	text-decoration: none;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.plan dt {
		margin-left: 20px;
	}
	.plan dd {
		margin-left: 20px;
	}
}




/*------------------------------------------------
ショップ　shop.html
------------------------------------------------*/
.shop_end img {
	width: 80%;
	margin-left: 20px;
}
.caution {
	margin: 10px 20px 0px 20px;
	line-height: 1.3;
	color: red;
	font-size: 80%;
	font-weight: bold;
}
.caution a {
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 45px;
	padding-right: 45px;
	margin-top: 5px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 16px;
	text-decoration: none;	
}



/*スライド画像 slick */
.shop {
	width: 80%;
	margin-top: 50px;
	margin-left: 20px;
}
.shop_h1 {
	font-size: 120%;
	font-weight: bold;
}
.shop-item img {
	max-width: 100%;
	height: auto;
	margin-top: 10px;
}
.shop-item-nav img {
	max-width: 100%;
	height: auto;
	margin-top: 10px;
	margin-bottom: 15px;
}
.shop_p {
	font-size: 80%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	line-height: 1.2;
}
.itemnumber {
	font-size: 80%;
	font-weight: bold;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
}
.itemcomment {
	font-size: 80%;
	margin-left: 20px;
	margin-right: 20px;
	color: red;	
	line-height: 1.3;
}
.shop a {
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 45px;
	padding-right: 45px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 10px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #006699;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 16px;
	text-decoration: none;
}


/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.shop_end img {
		width: 600px;
		margin-left: 20px;
	}
	.shoparea{
		height: 5500px;
	}
	.shop {
		float: left;
		width: 240px;
		height: 550px;
		margin-top: 50px;
		margin-left: 20px;
	}
	.shop_h1 {
		font-size: 100%;
	}
	.shop-item-nav img {
		max-width: 90%;
	}
	.shop_p {
		font-size: 95%;
		margin-left: 5px;
		margin-right: 5px;
		line-height: 1.4;
	}
	.itemnumber {
		font-size: 100%;
		margin-left: 5px;
		margin-right: 5px;
	}
	.itemcomment {
		font-size: 80%;
		margin-left: 5px;
		margin-right: 5px;
		line-height: 1.3;
	}
}


/*------------------------------------------------
セルフカスタマイズ　shop_order.html
------------------------------------------------*/
.order {
	clear: both;
}
.order h6 {
	line-height: 1.3;
	font-size: 120%;
	color: deepskyblue;
}
.order01 {
	margin-top: 5px;
	margin-left: 20px;
}
.order_image01 img {
	float: left;
	width: 30%;
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 10px;
}
.order p {
	line-height: 1.3;
	margin: 0px 20px 0px 20px;
}


/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.order_image01 img {
		/*width: 150px;*/
	}

}


/*------------------------------------------------
お支払いについて　shop_pay.html
------------------------------------------------*/
.payflow img {
	width: 100%;
	align-content: center;
}

/*------------------------------------------------
購入上の事項事項　shop_notes.html
------------------------------------------------*/
.notes {
	padding-top: 20px;
}


/*------------------------------------------------
特定商取引法に関する表示　business.html
------------------------------------------------*/
.profile {
	border-collapse: separate;
	border-spacing: 0;
	line-height: 1.5;
	border-top: 2px solid #ccc;
	border-left: 2px solid #ccc;
	margin-top: 20px;
	margin-left: 20px;
	margin-right: 20px;
	font-size: 65%;
}
.profile th {
	width: 65px;
	padding: 5px;
	text-align: left;
	vertical-align: middle;
	border-right: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	background: #eee;
}
.profile td {
	max-width: auto;
	padding: 10px 10px 10px 10px;
	vertical-align: middle;
	text-align: left;
	border-right: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
}


/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.profile {
		margin-bottom: 50px;	
		font-size: 95%;
	}
	.profile th{
		width: 110px;
		padding: 7px 15px 7px 20px;
	}
	.profile td {
		width: 540px;
		padding: 15px 20px 15px 20px;
	}
}

/*------------------------------------------------
個人情報の取り扱いについて　privacy.html
------------------------------------------------*/
.privacy h5 {
	margin: 30px 20px 0px 20px;
/*	padding: 100px 0px 0px 0px;*/
}
.privacy p {
	margin: 3px 20px 0px 20px;
	font-size: 90%;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.privacy {
		width: 700px;
	}
}


/*------------------------------------------------
お問い合わせ　contact.html
------------------------------------------------*/
.contact {
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 10px;
	border: solid 2px #ddd;
	border: solid 2px var(--gray-color);
	text-align: center;
}

.contact span	{
	display: inline-block;
	margin-bottom: 20px;
	font-size: 2.2rem;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
	background-color: #5D9AB2;
	background-color: var(--main-color);
	color: #fff;
	color: var(--icon-color);
}
.contact h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.5rem;
	text-decoration: none;
	color: dodgerblue
}
.contact a {
	font-size: 1.4rem;
	color: inherit;
	text-decoration: none;
}
.contact p {
	font-size: 1.3rem;
	font-weight: bold;
	text-decoration: none;
	color: dodgerblue
}



/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.contact-wrap {
		display: flex;
	}
	.contact {
		flex: 1;
		margin-left: 20px;
	}
	.contact:first-child {
		margin-right: 5px;
	}
}


/*------お問い合わせフォーム　inquiry-------*/
.inquiry h6 {
	margin-bottom: 18px;
}
.inquiry01 {
	margin-left: 20px;
	margin-top: 10px;
}
.inquiry01 label {
	float: left;
    display: inline-block;
	width: 100px;
    text-align: left;
	margin-top: 15px;
}
.inquiry01 label span {
	color: orange;
	font-weight: bold;
}
.inquiry01 input {
	width: 190px;
	margin-top: 10px;
}
.inquiry02 label {
	float: left;
	display: inline-block;
    text-align: left;
	margin-left: 20px;
	margin-top: 10px;
}
.inquiry02 textarea {
    font: 1em sans-serif;
    width: 300px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #000;
	margin-top: 10px;
	margin-left: 15px;
    height: 15em;
    vertical-align: top;
    resize: vertical;
}
.inquiry01 input:focus {
	border: 1.5px solid #ff9900;
}
.inquiry02 textarea:focus {
	border: 1.5px solid #ff9900;
}


/*------送信・キャンセル ボタン-------*/
.inquiry_button {
	clear: both;
	margin-top: 20px;
}
.inquiry_button01 {
	display: inline-block;
	float: left;
	font-weight: bold;
	padding: 10px 15px;
	margin-left: 20px;
	margin-right: 20px;
	background-color: #ff9900;
	color: #fff;
	border-style: none;
}
.inquiry_button02 {
	display: inline-block;
	font-weight: bold;
	padding: 10px 20px;
	background-color: #ccc;
	color: #fff;
	border-style: none;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.inquiry01 label {
		width: 150px;
	}
	.inquiry01 input {
		width: 400px;
	}
	.inquiry02 label {
		width: 133px;
	}
	.inquiry02 textarea {
	    width: 410px;
	}
	.inquiry_button {
		margin-top: 50px;
		margin-bottom: 80px;
}
	.inquiry_button01 {
		padding: 10px 60px;
		font-size: 110%;
		font-weight: bold;
		border-style: none;
		border-radius: 15px;
		-webkit-border-radius: 15px;
    	-moz-border-radius: 15px; 
	}
	.inquiry_button02 {
		padding: 10px 60px;
		font-size: 110%;
		font-weight: bold;
		border-style: none;
		border-radius: 15px;
		-webkit-border-radius: 15px;
    	-moz-border-radius: 15px; 
	}
	.inquiry_button01:hover {
		opacity: 0.5;
	}
	.inquiry_button02:hover {
		opacity: 0.5;
	}
	.inquiry_button01:active {/*ボタンを押したとき*/
		-ms-transform: translateY(4px);
		-webkit-transform: translateY(4px);
		transform: translateY(4px);/*下に動く*/
		border-bottom: none;/*線を消す*/
	}
	.inquiry_button02:active {/*ボタンを押したとき*/
		-ms-transform: translateY(4px);
		-webkit-transform: translateY(4px);
		transform: translateY(4px);/*下に動く*/
		border-bottom: none;/*線を消す*/
	}
}


/*------------------------------------------------
ショップ購入ページ　buy.html
------------------------------------------------*/
.sheets {
	width: 250px;
}
.sheets input {
	width: 40px;
	margin-top: 10px;
}
.sheets p {
	float: right;
	padding-right: 45px;
	padding-top: 3px;
}
.radio01 {
	display: flex;
	margin-top: 15px;
	margin-bottom: 15px;
	float: left;
	/*width: 500px;*/
}
.radio01 label {
	display: inline-flex;
	justify-content: flex-start;
    height: 11px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	width: 50px;
}
.radio01 input {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: left;
}
.inquiry02 {
	clear: both;
}

/* 768px以上に適用されるCSS（PC用） */
@media (min-width: 768px) {
	.sheets {
		width: 400px;
	}
	.sheets input {
		width: 70px;
	}
	.sheets p {
		padding-right: 110px;
		padding-top: 0px;
	}
	.radio01 label {
		width: 70px;
		padding-right: 30px;
	}
}






/*------------------------------------------------
フッター
------------------------------------------------*/
footer {
	color: #fff;
	color: var(--text-bright-color);
	background-color: #00ccff;
	background-color: var(--dark-main-color);
}

footer .container {
	padding: 40px 20px;
}


@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.footA {
		flex: 0 0 40%;
	}

	.footB {
		flex: 0 0 60%;
	}

	.footC {
		flex: 0 0 100%;
	}
}


/* フッターA： サイト情報 */
.footA {
	margin-bottom: 30px;
}

.footA h2 {
	margin-top: 0;
	margin-bottom: 15px;
	font-family: 'Montserrat', sans-serif;
	font-size: 180%;
	letter-spacing: 0.2em;
}

.footA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.3;
}

.footA a {
	color: inherit;
	text-decoration: none;
}


/* フッターB： フッターメニュー */
.footB div {
	margin-bottom: 20px;
}

.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-family: 'Montserrat', sans-serif;
}


/* フッターD： SNSメニュー */
.footD {
	margin-top: 20px;
}

.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: rgba(0,0,0,0.3);
}









