@charset "UTF-8";
/*
Theme Name: M's PLANNING
Description: 
Version: 1.0
Author: 
*/

/* Basic Tag Setting
------------------------- */
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
	--gray: #999;
	--pale-gray: #f6f6f5;
	--gold: #ab8c42;
	--bright-gold: #c9a95e;
	--deep-green: #476650;
	--light-grayish-green: #b3c0bc;
}
body {
	position: relative;
	letter-spacing: 1px;
	font-weight: 400;
	font-family:
		"Noto Sans JP",
		"游ゴシック Medium", "Yu Gothic Medium",
		"游ゴシック体", "YuGothic",
		"ヒラギノ角ゴシック", "Hiragino Sans",
		"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		"メイリオ", "Meiryo",
		sans-serif;
	font-feature-settings: "palt";
	line-height: 1.6;
}
address, em {
	font-style: normal;
}
.lato {
	font-family:
		"Lato",
		"游ゴシック Medium", "Yu Gothic Medium",
		"游ゴシック体", "YuGothic",
		"ヒラギノ角ゴシック", "Hiragino Sans",
		"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		"メイリオ", "Meiryo",
		sans-serif;
}

/* SVG
------------------------- */
.svg-symbol {
	position: absolute;
	width: 0;
	height: 0;
}
.svg-instance {
	width: 100%;
	height: auto;
}

/* Up Button
------------------------- */
#up-button {
	display: none;
	width: 40px;
	height: 40px;
	position: fixed;
	right: 12px;
	bottom: 14px;
}
#up-button .svg-up-path {
	fill: #fff;
}
#up-button .svg-up-rect {
	transition: 0.4s;
	fill: var(--gold);
}
#up-button:hover .svg-up-rect {
	fill: var(--bright-gold);
}

/* Edit Link
------------------------- */
.edit-link {
	/*display: none;*/
	width: 300px;
	margin: 30px auto;
}
.edit-link a {
	transition: 0.4s;
	display: block;
	padding: 0.9rem 0 0.7rem;
	background-color: #000;
	text-indent: 2rem;
	text-decoration: none;
	text-align: center;
	color: #fff;
}
.edit-link a:hover {
	background-color: #666;
}
.edit-link a:after {
	content: "\f105";
	margin-left: 1rem;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #fff;
}

/* Login
------------------------- */
#log-in {
	background-color: #000;
	text-align: right;
	color: #fff;
}
#log-in p {
	padding: 1.6rem 0 1.3rem 0;
}
#log-in a {
	display: inline-block;
	padding: 0 7rem 0 1rem;
	text-decoration: none;
	color: #fff;
}
#log-in a:after {
	content: "\f2f6";
	margin-left: 3px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

/* Menu Button
------------------------- */
#menu-button {
	width: 24px;
	height: 24px;
}
#menu-button2 {
	display: none;
	position: absolute;
	top: 5px;
	left: 0;
	cursor: pointer;
	width: 24px;
	height: 24px;
}

/* Button
------------------------- */
.simple-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 40px;
	border: solid 1px var(--deep-green);
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	color: var(--deep-green);
}
.moreButton {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

/* Pagenation
------------------------- */
.pagination {
	margin: 50px 0 0;
	text-align: center;
}
.pagination .page_num {
	display: block;
	margin: 0 0 10px;
	text-align: center;
}
.pagination .pager {
	transition: 0.4s;
	display: inline-block;
	width: 33px;
	height: 33px;
	margin: 0 3px;
	border: solid 1px var(--deep-green);
	line-height: 31px;
}
.pagination a {
	text-decoration: none;
	color: var(--deep-green);
}
.pagination a.pager {
	color: #000;
}
.pagination .next {
	display: inline-block;
	margin: 0 2px;
}
.pagination .last {
	display: inline-block;
	margin: 0 2px;
}
.pagination .pager.current {
	border: solid 1px var(--deep-green);
	background-color: var(--deep-green);
	color: #fff;
}

/* Google Map
------------------------- */
.google-map {
	margin: 0 0 50px;
}
.google-map iframe {
	width: 100%;
	height: 400px;
}

/* End of CSS File */