﻿@charset "utf-8";
/* CSS Document */

/* 基本設定 */

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    word-break: normal;
    word-wrap: break-word
	}

html {
	width: 100%;
	margin: 0;
	padding: 0;
	color: #3E3A39;
	line-height: 2;
	font-size: 62.5%;
	}

body {
 	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
/*	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
*/	font-family: serif;
	font-weight: 500;
	}

/* リスト設定の初期化 */

ul {
	padding-left: 0;
	margin: 0;
	}

ul li {
	list-style: none;
	}

/* 写真・動画のレスポンシブ対応 */

img {
	max-width: 100%;
	height: auto;
	}

iframe {
	max-width: 100%;
	height: auto;
	}

/* 準備中 
.not_yet::after{
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	content: '現在準備中です';
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
}
*/

footer::before {
	display: block;
	content: 'Copyright © FAUN AGRI LIFE All Rights Reserved.';
}