@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&display=swap');

* {
	font-size: inherit;
	line-height: inherit;
}
*, *:before, *:after {
	box-sizing: inherit;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
}
html {
	font-size: 62.5%;
}
body {
	color: #333;
	font-size: 1.6em;
	/*font-size: clamp(1.4rem, 1.6vw, 1.6rem);*/
	line-height: 1.8;
	font-weight: normal;
	font-family: "Noto Sans JP", verdana,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	letter-spacing: .05em;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
	vertical-align: middle;
}
svg {
	display: block;
	margin: -0.2px 0;
	position: relative;
	z-index: 1;
}
p.img img {
	border-radius: 12px;
}
p {
	margin: 0 0 1.1rem 0;
	padding: 0;
}
p:last-child {
	margin: 0;
}
p span {
}

@media screen and (max-width: 1194px) {
	body:before {
		animation: none;
	}
}
@media screen and (max-width: 834px) {
	body {
		line-height: 2;
	}
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 320px) {
	body {
		font-size: 1.4rem;
		line-height: 1.8;
	}
}


/* ***************************************
 * リンク
 * **************************************/

a {
	color: #333;
	text-decoration: none;
	transition: all .3s ease;
	word-break: break-all;
	cursor: pointer;
}
a:hover {
	opacity: .7;
}
a.noopacity,
a.noopacity img {
	opacity: 1 !important;
}
a img {
	transition: all .3s;
	-webkit-transition: all .3s;
}
a img:hover {
	opacity: .7;
}


/* ふつうのテキストリンク */
a.btnText {
	display: inline-block;
	border-bottom: 1px solid #000
}


/* 大きなボタン */
a.btnMain {
	display: inline-block;
	background: #C3D825;
	color: #333;
	padding: 18px 5vw;
	border-radius: 4px;
}

/* ページボタン */
a.btnPage {
	display: inline-block;
	min-width: 220px;
	background: #657014;
	color: #FFF;
	padding: 18px 3.2vw 18px 3.2vw;
	border-radius: 4px;
	position: relative;
}

/* お知らせ一覧ボタン */
a.btnAll {
	display: inline-block;
	color: #3eb034;
    border-bottom: 1px solid;
    padding-bottom: 6px;
	font-size: 1.4rem;
}
a.btnAll:hover {
	opacity: 1;
	color: #318929;
}


@media screen and (max-width: 768px) {
	
	/* ページボタン */
	a.btnPage {
		padding: 1.8vw 7vw 1.8vw 3.2vw;
	}
	a.btnPage:before {
		right: 3.6vw;
	}
	a.btnPage:after {
		width: 30px;
		right: 3.6vw;
	}
	a.btnPage:hover:before,
	a.btnPage:hover:after {
		right: 3vw;
	}
}
@media screen and (max-width: 430px) {
	
	/* ページボタン */
	a.btnPage {
		min-width: 240px;
		padding: 3vw 7vw 3vw 3.2vw;
	}
	a.btnPage:before {
		right: 5vw;
	}
	a.btnPage:after {
		right: 5vw;
	}
	a.btnPage:hover:before,
	a.btnPage:hover:after {
		right: 4vw;
	}
}


/* ***************************************
 * リスト
 * **************************************/

table {
	table-layout: fixed;
}
dl,
dt,
dd {
	margin: 0;
	padding: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul ul{
	margin-left: 1em;
}


/* ***************************************
 * レスポンシブ
 * **************************************/

@media screen and (min-width: 769px) {
	.pc {
		display: block !important;
	}
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}


/****************************************
 * h要素
*****************************************/

h1, h2, h3, h4, h5, h6 {
	font-family: "Noto Sans JP", verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	text-align: center;
	line-height: 1;
}

h2 {
	font-size: 5rem;
    font-weight: 400;
}
h3 {
	font-size: 3rem;
}
h4 {
	font-size: 1.6rem;
}
h5 {
	font-size: 1.3rem;
}
h6 {
	font-size: 1rem;
}

@media screen and (max-width: 1194px) {
	h2 {
		font-size: 4rem;
	}
	h3 {
		font-size: 2.8rem;
	}
	h4 {
		font-size: 1.6rem;
	}
	h5 {
		font-size: 1.3rem;
	}
	h6 {
		font-size: 1rem;
	}
	
}
@media screen and (max-width: 560px) {
	h2 {
		font-size: 3rem;
	}
	h3 {
		font-size: 2.4rem;
	}
	h4 {
		font-size: 1.3rem;
	}
	h5 {
		font-size: 1.1rem;
	}
	h6 {
		font-size: 1rem;
	}
}
@media screen and (max-width: 380px) {
	h2 {
		font-size: 2.6rem;
	}
	h3 {
		font-size: 2rem;
	}
	h4 {
		font-size: 1.1rem;
	}
	h5 {
		font-size: 1rem;
	}
	h6 {
		font-size: 1rem;
	}
}
@media screen and (max-width: 320px) {
	h2 {
		font-size: 2.6rem;
	}
	h3 {
		font-size: 1.3rem;
	}
	h4 {
		font-size: 1.1rem;
	}
	h5 {
		font-size: 1rem;
	}
	h6 {
		font-size: 1rem;
	}
}


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

/* 通常 */
header {
	width: 100%;
	position: relative;
}
header .header-logo {
	position: fixed;
    top: 1vw;
    left: 1vw;
	z-index: 9;
}
header .header-top-flex {
	display: flex;
	justify-content: space-between;
    align-items: flex-end;
}

@media screen and (max-width: 1024px) {
	header .header-top .logo_box {
		width: 160px;
	}
}
@media screen and (max-width: 560px) {
	header .header-logo {
		top: 3vw;
		left: 3vw;
	}
}


/****************************************
 * スマホナビゲーション
 * **************************************/

#few_nav {
	display: block;
}
#few_nav a.arrow {
	padding: 12px 15px;
	color: #FFF;
}
#few_nav_body {
	background: #FFF;
	box-sizing: border-box;
	height: 100%;
	position: fixed;
	right: -380px;
	top: 0;
	transition: transform 0.3s linear 0s;
	width: 380px;
	overflow-x: auto;
	z-index: 999;
}
nav#gnav {
	padding: 30px 0;
}
nav#gnav ul.gnav {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #ededed;
}
nav#gnav ul.gnav li {
	text-align: center;
	border-bottom: 1px solid #ededed;
}
nav#gnav ul.gnav a {
	display: block;
	padding: 6px 18px;
}
nav#gnav ul.gnav a span {
	display: block;
	font-size: .8em;
	text-align: left;
}
nav#gnav ul.gnav a:hover {
	opacity: 1;
	background: #C3D825;
}
#few_nav_background {
	background: #000;
	display: block;
	height: 100%;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: all .3s linear 0s;
	width: 100%;
	z-index: -1;
}
#few_nav_icon {
	display: block;
	cursor: pointer;
	position: fixed;
	right: 0;
    top: 0;
    background: #FFF;
    width: 120px;
    height: 120px;
	text-align: center;
	transition: all 0.3s linear 0s;
	z-index: 1000;
}
#few_nav_icon img.few_nav_button {
	width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
input#switching {
	display: none;
}
input#switching:checked ~ #few_nav_body,
input#switching:checked ~ #few_nav_icon {
	transform: translate(-380px);
}
input#switching:checked ~ #few_nav_background {
	opacity: .7;
	z-index: 999;
}

@media screen and (max-width: 1194px) {
	#few_nav_icon {
		width: 105px;
		height: 105px;
	}
}
@media screen and (max-width: 560px) {
	#few_nav_icon {
		width: 90px;
		height: 90px;
	}
	#few_nav_icon img.few_nav_button {
		width: 38px;
        height: 38px;
	}
	
	#few_nav_body {
		right: -280px;
		width: 280px;
	}
	input#switching:checked ~ #few_nav_body,
	input#switching:checked ~ #few_nav_icon {
		transform: translate(-280px);
	}
}
@media screen and (max-width: 430px) {
	#few_nav_icon {
		width: 75px;
		height: 75px;
	}
}
@media screen and (max-width: 380px) {
	#few_nav a {
		padding: 8px 0;
	}
	#few_nav a.arrow {
		font-size: .8em;
	}
}


/****************************************
 * レイアウト
 * *************************************/

.inner {
	width: 100%;
	padding: 0 60px;
	margin: 0 auto;
}
.inner__nr {
	padding: 0 30px;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}
main {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
}
section {
	padding: 90px 0;
}
.contents {
	margin: 0 auto 0;
	padding-top: 90px;
}
.contents-wrapper {
	margin: 0 auto 0;
	padding-top: 60px;
}
.contents-wrapper .contents-flex {
	display: flex;
}
.contents-wrapper .contents-flex .contents-flex___main {
	webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
	min-width: 620px;
    padding: 0;
    margin-right: 60px;
}
.contents-wrapper aside {
	width: 300px;
}
.btnBox {
	text-align:center;
	margin-top: 45px;
}

@media screen and (max-width: 1194px) {
	.inner__nr {
		width: 100%;
	}
	.contents-wrapper .contents-flex .contents-flex___main {
		margin-right: 30px;
	}
	.contents-wrapper aside {
		width: 280px;
	}
}
@media screen and (max-width: 960px) {
	.contents-wrapper .contents-flex {
		flex-direction: column;
	}
	.contents-wrapper .contents-flex .contents-flex___main {
		min-width: 100%;
		margin-right: 0;
	}
	.contents-wrapper aside {
		width: 100%;
		margin-top: 60px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}
@media screen and (max-width: 768px) {
	section {
		padding: 90px 0;
	}
	.inner {
		padding: 0 30px;
	}
	.contents-wrapper {
		padding-top: 60px;
	}
	
}
@media screen and (max-width: 559px) {
	section {
		padding: 60px 0;
	}
	.contents {
		padding-top: 60px;
	}
	.contents-wrapper {
		padding-top: 30px;
	}
	.contents-wrapper aside {
		flex-direction: column;
		margin-top: 60px;
        padding-top: 60px;
        border-top: 1px solid #ededed;
	}
}
@media screen and (max-width: 430px) {
	section {
		padding: 45px 0;
	}
	
	.btnBox {
		margin-top: 30px;
	}
}
@media screen and (max-width: 380px) {
	.inner,
	.inner__nr {
		padding: 0 20px;
	}
}


/* メインビジュアル */
.mv {
	overflow: hidden;
	background:#eee;
	text-align: center;
	position: relative;
	z-index:1;
}
.mv .mv-msg {
	width: 100%;
	padding: 0 5vw;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.mv .mv-title {
	
}
.mv .mv-title span.mv-title-top {
	display: block;
	text-align: left;
	font-size: 2.3vw;
	font-weight: 500;
	line-height: 1.6;
	color: #FFF;
}
.mv .mv-title span.mv-title-bottom {
	display: block;
	text-align: left;
	font-size: 1.8vw;
	font-weight: 500;
	color: #C3D825;
}
.mv_page {
	position: relative;
}

/* ページのメインビジュアル */
.page-mv {
	position: relative;
}
.page-mv:after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: -1px;
	transform: translateX(-50%);
	background: url(../images/common/top.svg) no-repeat;
	background-size: 100%;
	width: 36vw;
	height: 3.2vw;
	line-height: 1;
	z-index: 2;
}
.page-mv .page-titleSet {
	width: 100%;
	padding: 0 5vw;
	position: absolute;
	top: auto;
    bottom: 0;
    left: 50%;
	transform: translate(-50%, -50%);
}
.page-mv .page-titleSet .page-title {
	color: #FFF;
	text-align: left;
}
.page-mv .page-titleSet .page-title br {
	display: none;
}
.page-mv .page-titleSet .page-title span.h1-title {
	display: block;
    font-size: 2.3vw;
    font-weight: 500;
	line-height: 1.6;
}

@media screen and (max-width: 1194px) {
	.mv .mv-msg,
	.page-mv .page-titleSet {
		padding: 0 30px;
	}
	
	/* メインビジュアル */
	.mv .mv-title span.mv-title-top {
		font-size: 3vw;
	}
	.mv .mv-title span.mv-title-bottom {
		font-size: 2.6vw;
	}
	
	.page-mv .page-titleSet .page-title span.h1-title {
		font-size: 3vw;
	}
}
@media screen and (max-width: 768px) {
	/* メインビジュアル */
	.mv .mv-title span.mv-title-top {
		font-size: 3vw;
	}
	.mv .mv-title span.mv-title-bottom {
		font-size: 2.6vw;
	}
	
	.page-mv .page-titleSet .page-title span.h1-title {
		font-size: 3vw;
	}
}
@media screen and (max-width: 560px) {
	
	/* メインビジュアル */
	.mv .mv-msg {
		top: auto;
        bottom: 28px;
	}
	.mv .mv-title span.mv-title-top {
		font-size: 5vw;
	}
	.mv .mv-title span.mv-title-bottom {
		font-size: 4.6vw;
	}
	
	.page-mv .page-titleSet .page-title span.h1-title {
		font-size: 5vw;
	}
}
@media screen and (max-width: 320px) {
	.mv .mv-msg,
	.page-mv .page-titleSet {
		padding: 0 20px;
	}
}


/****************************************
 * パンくず
 * *************************************/

.breadcrumbs_area {
	padding: 18px 0;
	background: #FFF;
	box-shadow: inset 0 0 9px 0 rgba(204, 204, 204, .8);
}
.breadcrumbs {
	font-size: 1.2rem;
	color: #657014;
}
.breadcrumbs a {
	color: #657014;
}
.breadcrumbs span.current-item {
	color: #071305;
}
.breadcrumbs br {
	display: none;
}

@media screen and (max-width: 560px) {
	.breadcrumbs {
		overflow-x: auto;
		white-space: nowrap;
	}
}


/****************************************
 * 共通
 * **************************************/

.slidein {
	animation: SlideIn 1s;
}
@keyframes SlideIn {
	0% {
		opacity: 0;
		transform: translateX(64px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
.slideinSlow {
	animation: SlideInSlow 2s;
}
@keyframes SlideInSlow {
	0% {
		opacity: 0;
		transform: translateX(64px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


/****************************************
 * サイドバー
 * **************************************/

.sidebar-title {
	color: #C3D825;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin-bottom: 30px;
}
.sidebar-title span {
	display: block;
	color: #999;
    font-size: .7em;
    font-weight: 400;
    margin-top: 9px;
}

/* asideのボックス */
.aside-item {
	margin-top: 60px;
}


/* 新着 */
ul.latestposts-list {

}
ul.latestposts-list li {
	clear: both;
	margin-top: 18px;
}
ul.latestposts-list li img.thumb {
	float: left;
	width: 90px;
	height: 90px;
	margin: 0 18px 18px 0;
}
ul.latestposts-list li img.thumb:hover {
	opacity: 1;
}
ul.latestposts-list li .latestposts-text {
    width: 100%;
}
ul.latestposts-list li .latestposts-text .latestposts-title {
	text-align: left;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.4;
}
ul.latestposts-list li .latestposts-text .latestposts-title br {
	display: none;
}
ul.latestposts-list li .latestposts-text .latestposts-time {
	display: inline-block;
	font-size: .8em;
	color: #999;
}


/* カテゴリーリスト */
ul.category-list {
	display: block;
	font-size: .9em;
	border-top: 1px solid #ededed;
}
ul.category-list li {
	border-bottom: 1px solid #ededed;
	position: relative;
}
ul.category-list li:before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 12px;
	top: 50%;
}
ul.category-list li a {
	display: block;
	padding: 9px 22px 9px 9px;
}
ul.category-list li a:hover {
	color: #C3D825;
}

select.category-select {
	display: none;
}

/* カテゴリーリスト */
ul.aside-nav {
	
}
ul.aside-nav li {
	margin-top: 12px;
}
ul.aside-nav li a {
	display: block;
    background: #C3D825;
    border-radius: 4px;
    padding: 12px 18px;
}

@media screen and (max-width: 1194px) {
	/* 新着 */
	ul.latestposts-list li img.thumb {
		width: 60px;
		height: 60px;
	}
	ul.latestposts-list li .latestposts-text .latestposts-time {
		font-size: .7em;
	}
}
@media screen and (max-width: 960px) {
	/* asideのボックス */
	.aside-item {
		width: calc(100% / 2 - 30px);
	}
	#aside-search {
		width: 100%;
	}
	
	#aside-mainmenu {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	/* asideのボックス */
	.aside-item {
		width: calc(100% / 2 - 18px);
	}
	
	ul.category-list {
		display: none;
	}
	select.category-select {
		display: block;
		border-radius: 60px;
		padding: 12px 34px 12px 18px;
	}
}
@media screen and (max-width: 559px) {
	/* asideのボックス */
	.aside-item {
		width: 100%;
	}
}


/****************************************
 * ページ
 * **************************************/

.contents-title {
	font-size: 3rem;
	text-align: left;
	padding-bottom: 9px;
	position: relative;
}
.contents-title:before {
	content: "";
	width: 100%;
	position: absolute;
	bottom: 9px;
	border-bottom: 1px solid #333;
	z-index: -2;
}
.contents-title span {
	display: inline-block;
	padding-bottom: 18px;
	border-bottom: 1px solid #C3D825;
}

.contents-box {
	margin-top: 30px;
}

@media screen and (max-width: 559px) {
	.contents-title {
		font-size: 1.4em;
	}
}


/****************************************
 * 検索フォーム
 * **************************************/

#searchform {
	position: relative;
}
#searchform input#s {
	width: 100%;
	background: #FFF;
	color: #333;
	border: 1px solid #D5D6D1;
	cursor: pointer;
	padding: 12px 50px 12px 12px;
	outline: none;
}
aside #searchform input#s {
	
}
#searchform input#s:focus {
	cursor: text;
	background: #F9FBE9;
}
#searchform input#searchsubmit {
	position: absolute;
	top: 50%;
	right: 13px;
	transform: translateY(-50%);
	width: 30px;
	height: 26px;
	border: none;
	background: url(../images/common/icon-search.webp) no-repeat 50% 50%;
	background-size: 25px;
	box-shadow: none;
}


#search .results {
	margin-bottom: 60px;
}
#search .results span.hits {
    margin-right: 3px;
    font-size: 1.3em;
}
#search .results p.hits-page {
	text-align: right;
    font-size: .8em;
}

#search .searchform {
	width: 480px;
    margin: 0 auto;
}

@media screen and (max-width: 1194px) {
	#search .searchform {
		display: none;
	}
}


/****************************************
 * ページナビゲーション
 * **************************************/

nav.navigation {
	overflow: hidden;
	float: none;
	max-width: 100%;
	text-align: center;
	padding: 0;
	margin: 45px 0 0;
}
nav.navigation a {
	text-decoration: none;
	color: #333;
}
nav.navigation > div {
	width: 30%;
}
nav.navigation h2.screen-reader-text {
	display: none;
}
nav.navigation .nav-links {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
nav.navigation .nav-links span.current {
	display: inline-block;
	min-width: 90px;
	background: #ededed;
	border-radius: 4px;
	padding: 6px 18px;
	margin: 0 12px;
	text-align: center;
}
nav.navigation .nav-links a.page-numbers {
	display: inline-block;
	min-width: 90px;
	background: #fafafa;
	margin: 0 12px;
	padding: 6px 18px;
	text-align: center;
}
nav.navigation .nav-links a:hover {
	opacity: 1;
	background: #C3D825;
	border-radius: 4px;
	color: #FFF;
}
nav.navigation .nav-links a.page-numbers:hover {
	opacity: 1;
}
nav.navigation .nav-links a.prev,
nav.navigation .nav-links a.next {
	float: none;
	border: none;
	background: #fafafa;
	margin: 0;
	min-width: 120px;
}
nav.navigation .nav-links a.prev:hover,
nav.navigation .nav-links a.next:hover {
	background: #C3D825;
	border-radius: 4px;
	color: #FFF;
}

@media screen and (max-width: 768px) {
	nav.navigation {
		display: block;
	}
}
@media screen and (max-width: 560px) {
	nav.navigation .nav-links span.current,
	nav.navigation .nav-links a.page-numbers {
		min-width: 45px;
		margin: 0 6px;
		padding: 6px 9px;
	}
	nav.navigation .nav-links a.prev {
		margin: 0 6px 0 0;
	}
	nav.navigation .nav-links a.next {
		margin: 0 0 0 6px;
	}
}
@media screen and (max-width: 430px) {
	nav.navigation .nav-links {
		overflow-x: auto;
		white-space: nowrap;
	}
	nav.navigation .nav-links span.current,
	nav.navigation .nav-links a.page-numbers {
		min-width: 30px;
		margin: 0 3px;
		padding: 6px 9px;
	}
}

/****************************************
 * フォーム
 * **************************************/

/* iOSリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

/*フォーム*/
textarea {
	overflow: auto;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
textarea {
	margin: 0;
	padding: 12px;
	width: 100%;
	max-width: 100%;
	outline: none;
	background: #FFF;
	color: #000;
	vertical-align: bottom;
	letter-spacing: 1px;
	font-family: inherit;
	font-weight: inherit;
	border-radius: 4px;
	border: 1px solid #ededed;
	transition: .3s;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
	background: #ECF9EB;
	border: 1px solid #3EB034;
	outline: none;
}
select {
	position: relative;
	width: 100%;
	padding: 12px 34px 12px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ededed;
	background: #fff url(../images/common/select-arrow.webp) no-repeat;
    background-position: right 1em center;
    background-size: 14px, 100%;
	font-size: 1em;
	color: #000;
	border-radius: 4px;
}

/*ボタン*/
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
.button:before,
button:before,
input[type="submit"]:before,
input[type="reset"]:before,
input[type="button"]:before,
.button:after,
button:after,
input[type="submit"]:after,
input[type="reset"]:after,
input[type="button"]:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	padding: 0;
	margin: 0;
	height: auto;
	text-align: center;
	text-decoration: none;
	outline: none;
	position: relative;
}
.button:before,
button:before,
input[type="submit"]:before,
input[type="reset"]:before,
input[type="button"]:before,
.button:after,
button:after,
input[type="submit"]:after,
input[type="reset"]:after,
input[type="button"]:after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	background: #095034;
}


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

footer {
	padding: 90px 0;
    background: #C3D825;
}

/*トップへ戻る*/
.totop {
	padding: 18px 0;
	background: #EDF3BD;
	text-align: right;
}
.totop a {
	color: #AABC21;
	font-weight: 500;
	font-size: 1.2rem;
}

footer .footer-logo {
	text-align: center;
}
footer .footer-logo img {
	
}
footer .footer-about {
	text-align: center;
	margin-top: 18px;
}
footer .footer-about .footer-about-inbox {
	margin-top: 12px;
    font-size: .9em;
}

footer #copyright {
	text-align: center;
	margin: 60px 0 0;
	padding: 30px 0 0;
	font-size: 1.2rem;
	border-top: 1px solid #B1C421;
	position: relative;
}
footer #copyright:before {
	content: "";
	position: absolute;
	top: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: #D6E566;
}
footer #copyright p,
footer #copyright a {
	color: #333;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 90px 0;
	}
}
@media screen and (max-width: 560px) {
	/*トップへ戻る*/
	.totop img {
		width: 45px;
	}

	footer {
		padding: 60px 0;
	}
	footer .footer-logo img {
		width: 220px;
	}
	footer .footer-about {
		font-size: .9em;
	}
}
@media screen and (max-width: 430px) {
	/*トップへ戻る*/
	.totop {
		bottom: 20px;
		right: 20px;
	}
	
	footer {
		padding: 45px 0;
	}
}
