@charset "utf-8";
@import url('../../css/novel-fonts.css');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap');

/* ----- 汎用 ------------------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
}

/* ----- 基礎 --------------------------------------------------------------- */

html {
	font-size: 62.5%;
}

body {
	background-color: #FEFEFE;
	color: #303030;
	font-family: "Noto Sans JP", sans-serif;
}

/* ----- ヘッダー ------------------------------------------------------------ */

header {
	margin: 20px;
	display: block;
}

/* ----- メイン ------------------------------------------------------------ */

main {
	margin: 20px;
}

div.text {
	font-size: 1.6rem;
}

/* ----- インデックス/注意書き --------------------------------------------- */

#caution {
	padding: 30px;
	font-size: 1.2rem;
	line-height: 2rem;
	font-weight: 500;
}

#caution ul {
	margin: 0.4rem 1rem;
	list-style: none;
}

#caution li {
	text-indent: -0.8rem;
}

#caution li:before {
	padding-right: 3px;
	content: "● ";
	font-size: 6px;
	vertical-align: middle;
	color: #BAC3B0;
}

/* ----- インデックス/ナビ -------------------------------------------------- */

nav {
	margin: 20px;
}

nav ul{
	list-style: none;
}

nav li{
	padding: 0 .4rem;
	display: inline-block;
	font-size: 2.4rem;
	line-height: 2em;
	font-family: "Lato";
	font-weight: 400;
}

nav a{
	border-radius: 6px;
	padding: 0 6px;
	color: rgba(0,0,0,0);
	text-decoration: none;
	background-image: url("./img/link.jpg");
	background-clip: text;
	-webkit-background-clip: text;
}

nav a:hover{
	color: #FFF;
	background-image: url("./img/link.jpg");
	background-clip: text;
	-webkit-background-clip: padding-box;
}

/* ----- フッター ------------------------------------------------------------- */

footer {
	margin: 80px 20px;
	padding-top: 20px;
	display: block;
	font-family: "lato", sans-serif;
	font-size: 1.6rem;
	line-height: 2em;
	text-align: center;
	border-top: 1px dashed #99DABA;
}

footer a{
	padding: 0 5px;
	font-weight: normal;
	color: #1DA891;
	text-decoration: underline;
}

footer a:hover{
	color: #E7A9B1;
	text-decoration: none;
}

footer ul{
	margin: 1rem 0;
}

footer li{
	display: inline-block;
	margin: 0 4px;
}

footer .current_page{
	padding: 0.1rem 0.4rem;
	background: url("./img/link.jpg");
	color: #FFF;
	border-radius: 4px;
}

/* ----- h1 ~ h6 ------------------------------------------------------------ */

h1 {
	background: url("./img/logo.png") no-repeat;
	width: 128px;
	height: 35px;
	text-indent: -1000000px;
	display: block;
}

h2 {
	font-size: 1.3rem;
	color: #95BE3E;
	font-weight: normal;
	display: block;
}

h3 {
	margin-bottom: 8rem;
	font-size: 3rem;
	line-height: 1.5em;
	font-weight: 900;
	font-family: "lato", "Noto Sans JP", sans-serif;
	color: rgba(0,0,0,0);
	text-decoration: none;
	background-image: url("./img/bg.jpg");
	background-clip: text;
	-webkit-background-clip: text;
}

h4 {
	margin-bottom: 8rem;
	padding-bottom: 1rem;
	font-size: 3rem;
	line-height: 1.5em;
	font-weight: 900;
	font-family: "lato", "Noto Sans JP", sans-serif;
	color: rgba(0,0,0,0);
	text-decoration: none;
	background-image: url("./img/bg2.jpg");
	background-clip: text;
	-webkit-background-clip: text;
}

/* ----- main --------------------------------------------------------------- */

/* 横幅768以下 */
@media screen and (max-width: 768px){
	.text{
		margin: 50px auto;
		width: 90%;
		max-width: 42em;
		line-height: 2em;
		font-size: 14rem;
	}
}

/* 横幅769以上 */
@media screen and (min-width: 769px){
	.text{
		margin: 100px auto;
		padding: 0px 2em;
		max-width: 42em;
		line-height: 2em;
		font-size: 16rem;
	}
}

/* ----- hr ----------------------------------------------------------------- */

hr {
	margin: 6em 0;
	padding: 0;
	border: none;
	color: #44CCAA;
	text-align: center;
	width: 16rem;
}

hr:after{
	content: "◇　　◇　　◇";
	display: inline-block;
	position: relative;
	top: 0rem;
	font-size: 1.6rem;
}

