@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* ボディ */

body {
	padding: 0;
	margin: 0;
	font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*フォントの指定*/
	/* --------------背景固定の設定 -------------- 
	padding: 0;
	margin: 0;
	min-height: 100%;
	height: 100%;
	background-image: url("../image/feelkind-logo.png");
	/* 全体の背景画像 
	background-size: contain;
	background-repeat: no-repeat;
	/* 背景を繰り返さない 
	background-position: 50% 60%;
	/* 背景画像の位置は画面中央 
	background-attachment: fixed;
	/* 背景画像を固定する*/
}


/* --------------背景固定の設定 -------------- */

/* --------------スマホ用の背景固定の設定 -------------- */

body::before {
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	background: url("../image/feelkind-logo.png") no-repeat center top;
	background-size: 100% auto;
	top: 50%;
	left: 0;
	z-index: -1;
}


/* --------------スマホ用の背景固定の設定 -------------- */

.body-overray {
	background-color: rgba(255, 255, 255, 0.8)
}

a {
	color: #1e90ff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


/* スマホだけに適用するCSS */

@media screen and ( max-width:479px) {
	/* ボディ */
	body {
		font-size: 13px;
		/* 文字サイズ */
	}
}


/*全体(デスクトップPCとスマホ)に適用するCSS*/

.container {
	min-height: 100vh;
	height: 100%;
	/* for IE11 */
	display: flex;
	flex-direction: column;
}


/*-----------------ヘッダーの設定----------------*/

#header {
	height: auto;
	width: 100%;
	max-width: 100%;
	background: #ffffff;
	position: relative;
}

.header-cover,
.header-hero {
	height: auto;
}


/*ロゴ配置の親コンテナ*/

.header-cover {
	background-size: cover;
	position: relative;
	/*ロゴの上下中央配置*/
}


/*ロゴ配置の子の設定*/

.header-cover .desc {
	top: 50%;
	position: absolute;
	/*ロゴの上下中央配置*/
	width: 30%;
	margin-top: -15px;
	/*ロゴの配置の高さの設定 初期値は20px（ネガティブマージンOK）*/
	z-index: 2;
	color: #fff;
	/*text-align: center;
	/*ロゴの左右中央配置*/
}

.img-responsive {
	display: inline-block;
	/*ロゴの左右中央配置*/
}

.img-responsive img {
	width: 100%;
	max-width: 100%;
	height: auto;
}


/*-----------------ヘッダーの設定----------------*/

/*-----------------コンテンツ全体を包むラップの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.wrapper {
		width: auto;
		padding: 0 10px;
		/* 左右の余白 */
		display: flex;
		flex-direction: column;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.wrapper {
		width: auto;
		padding: 0 10px;
		/* 左右の余白 */
		display: flex;
		flex-direction: column;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.wrapper {
		width: auto;
		padding: 0 10px;
		/* 左右の余白 */
		display: flex;
		flex-direction: column;
	}
}


/*-----------------コンテンツ全体を包むラップの設定----------------*/

/*-----------------メインの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	#main {
		display: flex;
		flex-direction: column;
		margin: 0 auto;
		width: auto;
		max-width: 100%;
		height: auto;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	#main {
		display: flex;
		flex-direction: column;
		margin: 0 auto;
		width: auto;
		max-width: 100%;
		height: auto;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	#main {
		display: flex;
		flex-direction: column;
		margin: 0 auto;
		width: 1000px;
		max-width: 100%;
		height: auto;
	}
}


/*-----------------メインの設定----------------*/

/*-----------------コンテンツエリアの設定----------------*/

/*
.contents-area {
	display: flex;
	flex-direction: column;

}


/*-----------------コンテンツエリアの設定----------------*/

/*-----------------feelkindの説明エリア内のの設定----------------*/

h1 {
	color: #000;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.feelkind {
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	margin: 10px 10px 10px 10px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.8);
}

.feelkind .text-box {
	padding: 5px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

hr {
	border-top: 1px solid #c9c9c9;
	margin-bottom: 20px;
	width: 95%;
}

.feelkind .image-box {
	display: flex;
	flex-direction: row;
	height: auto;
	justify-content: center;
	align-content: center;
}

.feelkind .image-box {
	display: block;
	margin: 20px;
}

.feelkind .image-box img {
	width: 100%;
	max-width: 100%;
	height: auto;
}


/*-----------------feelkindの説明エリア内のの設定----------------*/

/*-----------------コンテンツエリアのセクションの設定----------------*/

#main .contents-area section {
	margin: 10px;
	border-radius: 5px;
	background: linear-gradient(rgba(135, 206, 235, 0.8), rgba(127, 255, 212, 0.8));
	padding: 15px;
	height: auto;
}

.contents-area h2 {
	color: #fff;
	text-align: center;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.contents-area .text-box {
	padding: 5px
}


/*-----------------clom-areanaの設定----------------*/

.clom-area {
	display: block;
	/*flexから変更*/
	margin: 0 auto;
}



.clom-area ul {}

.clom-area ul li {
	margin: 0;
	/*20pxから変更*/
}

/*-----------------clom-areanの設定----------------*/

/*-----------------clom-arean内のimege-areaの設定----------------*/

.clom-area .image-area {
	display: flex;
	flex-direction: row;
	height: auto;
	justify-content: center;
	align-content: center;
	margin: 0;
	padding: 0;
}

.clom-area .image-area .image-box {
	display: block;
	margin: 20px;
}

.clom-area .image-area .image-box img {
	width: 100%;
	max-width: 100%;
	height: auto;
}


/*-----------------clom-arean内のimege-areaの設定----------------*/

/*-----------------clom-areana2の設定----------------*/

.clom-area2 {
	display: block;
	/*flexから変更*/
	flex-direction: row;
	margin: 0 auto;
}


/*-----------------clom-areana2の設定----------------*/

/*-----------------clom-arean2内のimege-area2の設定----------------*/

.flex-box .products-area .text-box p {
	margin: 10px;
	font-size: 10pt;
}

.flex-box .products-area .text-box h3 {
	padding: .25em 0 .25em .75em;
	border-left: 6px solid #ffffff;
}

.image-area2 {
	display: flex;
	flex-direction: row;
	height: auto;
	justify-content: center;
	align-content: center;
	margin: 0;
	padding: 0;
}

.image-area2 .image-box2 {
	display: block;
	margin: 0;
	margin: 10px;
}

.image-area2 .image-box2 img {
	width: 100%;
	max-width: 100%;
	height: auto;
}


/*-----------------clom-arean2内のimege-area2の設定----------------*/

/*-----------------flex-boxの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.flex-box {
		display: block;
		/*flexから変更*/
		flex-direction: column;
		height: auto;
		justify-content: center;
		align-content: center;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.flex-box {
		display: block;
		/*flexから変更*/
		flex-direction: column;
		height: auto;
		justify-content: center;
		align-content: center;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.flex-box {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
}


/*-----------------flex-boxの設定----------------*/

.flex-box h3 {
	color: #ffffff;
}

.flex-box .text-box {
	padding: 5px;
	color: #fff;
}


/*-----------------flex-box内のimage-boxの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.flex-box .image-box {
		display: block;
		margin: 0 auto;
		width: 50%;
		height: auto;
		padding: 5px;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.flex-box .image-box {
		display: block;
		margin: 0 auto;
		width: 40%;
		height: auto;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.flex-box .image-box {
		display: block;
		margin: 5px;
		width: 100%;
		height: auto;
	}
}


/*-----------------flex-box内のimage-boxの設定----------------*/

/*-----------------products-areaの設定----------------*/

.products-area {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: auto;
	background: #3A3C4F;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
}


/*-----------------products-areaの設定----------------*/

/*-----------------products-arean内のimage-areaの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.products-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.products-area .image-area .image-box {
		display: block;
		margin: 0px;
	}
	.products-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.products-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.products-area .image-area .image-box {
		display: block;
		margin: 0px;
	}
	.products-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.products-area .image-area {
		display: flex;
		flex-direction: column;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.products-area .image-area .image-box {
		display: block;
		margin: 0px;
	}
	.products-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/*-----------------products-areaの設定----------------*/

/*-----------------review-areaの設定----------------*/

.review-area {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: auto;
	background: #3A3C4F;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
}


/*-----------------review-arean内のimage-areaの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.review-area .image-area {
		display: flex;
		flex-direction: column;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.review-area .image-area .image-box {
		display: block;
		margin: 0px;
		width: 95%;
	}
	.review-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.review-area .image-area {
		display: flex;
		flex-direction: column;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.review-area .image-area .image-box {
		display: block;
		margin: 0 auto;
		width: 100%;
	}
	.review-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.review-area .image-area {
		display: flex;
		flex-direction: column;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.review-area .image-area .image-box {
		display: block;
		margin: 0 auto;
	}
	.review-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/*-----------------review-arean内のimage-areaの設定----------------*/

/*-----------------press-areaの設定----------------*/

.press-area {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: auto;
	background: #3A3C4F;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
}


/*-----------------press-areaの設定----------------*/

/*-----------------press-arean内のimage-areaの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.press-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.press-area .image-area .image-box {
		display: block;
		margin: 0px;
	}
	.press-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.press-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.press-area .image-area .image-box {
		display: block;
		margin: 0px;
	}
	.press-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.press-area .image-area {
		display: flex;
		flex-direction: column;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.press-area .image-area .image-box {
		display: block;
		margin: 5;
	}
	.press-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/*-----------------press-arean内のimage-areaの設定----------------*/

/*-----------------press-area内のimage-areaの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.press-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.press-area .image-area .image-box {
		width: 100%;
		max-width: 100%;
		height: auto;
		padding: 5px;
	}
	.press-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.press-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.press-area .image-area .image-box {
		width: 100%;
		max-width: 100%;
		height: auto;
		padding: 10px;
	}
	.press-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.press-area .image-area {
		display: flex;
		flex-direction: column;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.press-area .image-area .image-box {
		width: 100%;
		max-width: 100%;
		height: auto;
		padding: 0px;
		padding-bottom: 5px;
	}
	.press-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/*-----------------press-area内のimage-areaの設定----------------*/

/*-----------------dealer-areaの設定----------------*/

.dealer-area {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: auto;
	background: #3A3C4F;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
}


/*-----------------dealer-areaの設定----------------*/

/*-----------------products-arean内のimage-areaの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.dealer-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.dealer-area .image-area .image-box {
		display: block;
		margin: 0px;
		width: 100%;
	}
	.dealer-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.dealer-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.dealer-area .image-area .image-box {
		display: block;
		margin: 0px;
		width: 100%;
	}
	.dealer-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.dealer-area .image-area {
		display: flex;
		flex-direction: row;
		height: auto;
		justify-content: center;
		align-content: center;
	}
	.dealer-area .image-area .image-box {
		display: block;
		margin: 0px;
		width: 100%;
	}
	.dealer-area .image-area .image-box img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}

.switch {
	visibility: hidden;
}


/*-----------------products-arean内のimage-areaの設定----------------*/

/*-----------------コンテンツエリアのセクションの設定----------------*/

/*-----------------ボタンの設定の設定----------------*/

.button {
	display: block;
	background: #00bfff;
	width: 5em;
	height: auto;
	margin-top: 20px;
	margin-bottom: 30px;
	padding: 2px;
	text-align: center;
	border-radius: 5px;
	color: #fff;
}

.button a {
	color: #fff;
	text-decoration: none;
}

.button:hover {
	background: #ffc401;
	text-decoration: none;
}


/*-----------------ボタンの設定の設定----------------*/

/*-----------------問い合わ項目の設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.ask {
		display: flex;
		flex-direction: column;
		border-radius: 5px;
		margin: 10px 10px 10px 10px;
		padding: 10px;
		background: rgba(255, 255, 255, 0.8);
	}
}


/* 480px以上用（タブレット用）の記述 */

@media screen and ( min-width:480px) {
	.ask {
		display: flex;
		flex-direction: column;
		border-radius: 5px;
		margin: 10px 10px 10px 10px;
		padding: 10px;
		background: rgba(255, 255, 255, 0.8);
	}
}


/* 1024px以上用（PC用）の記述 */

@media screen and ( min-width:1024px) {
	.ask {
		display: flex;
		flex-direction: column;
		border-radius: 5px;
		margin: 10px 10px 10px 10px;
		padding: 10px;
		background: rgba(255, 255, 255, 0.8);
	}
}

.ask ul {
	list-style: none;
	margin: 5px;
}

.ask li {}


/*-----------------問い合わ項目の設定----------------*/

/*-----------------フッターの設定----------------*/

footer {
	height: 300px;
	background: #3A3C4F;
}


/*-----------------フッターの設定----------------*/

/*----------------フッターナビの設定----------------*/

.footer-navi {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	width: 100%;
	height: 10%;
	justify-content: center;
}

.footer-navi ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	list-style: none;
	font-size: 1em;
}

.footer-navi li {
	margin: 10px;
	padding-left: 10px;
	height: 20px;
}

.footer-navi li + li {
	border-left: solid 1px #ffffff;
}

.footer-navi li a {
	color: #ffffff;
}


/*----------------フッターナビの設定----------------*/

/*-----------------SNSボタンの設定----------------*/

.sns-area {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 80%;
	height: auto;
	margin: 0 auto;
}

.fb-share-button {
	padding: 10px;
}

.twitter-share-button {
	padding: 10px;
}

.g-plus {
	display: flex;
	flex-direction: row;
}


/*-----------------SNSボタンの設定----------------*/

/*-----------------ナビの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	.navi {
		display: none;
		margin-top: 50px;
		background: #3A3C4F;
	}
	.navi ul {
		display: flex;
		flex-direction: row;
		list-style: none;
		padding: 0px;
		margin: 0px;
	}
	.navi li {
		display: block;
		margin: 5px;
		padding: 2px;
		background: #3A3C4F;
		border-radius: 5px;
	}
	.navi li a {
		color: #ffffff;
		text-decoration: none;
	}
	.navi li:hover {
		background: #ffc401;
		text-decoration: none;
	}
}


/* スマートフォン以外の記述 */

.navi {
	margin-top: 50px;
	background: #3A3C4F;
}

.navi ul {
	display: flex;
	flex-direction: row;
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.navi li {
	display: block;
	margin: 10px;
	padding: 5px;
	background: #3A3C4F;
	border-radius: 5px;
}

.navi li a {
	color: #ffffff;
	text-decoration: none;
}

.navi li:hover {
	background: #ffc401;
	text-decoration: none;
}


/*-----------------ナビの設定----------------*/

/*----------------サイドナビの設定----------------*/

.menu-btn {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
}


/*マウスオーバーの記述（失敗中）*/

/*
.menu-btn:hover {
	opacity: 100;
	filter: alpha(opacity=100);
}

*/

/*----------------サイドナビの設定----------------*/

.list-area {
	display: flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
}

.list-box {
	display: flex;
	flex-direction: column;
	margin-top: 10px;
	margin-bottom: 10px;
}

.list-area h2 {
	margin: 0;
	padding: 0;
}

.list-area .button {
	margin-bottom: 0;
	padding: 0;
}

.pdf {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}



/*----------------newstickerの設定----------------*/

/* 479px以下用（スマートフォン用）の記述 */

@media screen and ( max-width:479px) {
	#newsticker {
		margin-top: 10px;
		width: 100%;
		display: flex;


	}

	/* 480px以上用（タブレット用）の記述 */
	@media screen and ( min-width:480px) {
		#newsticker {
			margin-top: 10px;
			width: 100%;
			display: flex;
		}


		/* 1024px以上用（PC用）の記述 */
		@media screen and ( min-width:1024px) {
			#newsticker {
				margin-top: 10px;
				width: 100%;
				display: flex;
			}
		}
