@charset "UTF-8";

/*
	全ページ共通のパーツ用css

*/

/* -----------------------------------------------
 news
-------------------------------------------------- */


/* -----------------------------------------------
 footer
-------------------------------------------------- */
.footer {
	width: 100%;
	padding: 2.75rem 0 0 0;
	background-color:var(--brownColor);
	color: #fff;
}

/*レイアウト*/
.footer--layout {
	display: flex;
	flex-wrap: wrap;
}

/*住所欄*/
.footer--layout--address {
	width: 50%;
}
.f_logo {
	font-size: 1.6666666666667rem;
	font-weight: bold;
}
.f_logo + .f_address {
	margin-top: 1rem;
}

/*リンク欄*/
.footer--layout--link {
	width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.footer--layout--link a:hover {
	box-shadow: none;
	transform: translate(2px,2px);
}

/*コピーライト*/
.copy {
	margin-top: 2.75rem;
	font-size: 0.875rem;
	text-align: center;
	padding: 1rem 0;
}

/*ページトップへ戻るボタン*/
.pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #93c1af;
    border: 1px solid #fff;
    padding: 10px 10px;
    z-index: 125;
}
.pagetop img {
	width: 40px;
	height: 40px;
}
.pagetop a {
	text-decoration: none;
	width: 40px;
	height: 40px;
	text-align: center;
	display: block;
}
.pagetop a:hover {
	text-decoration: none;
	opacity: 0.75;
	cursor: pointer;
}


/* -----------------------------------------------
 991px以下
-------------------------------------------------- */
@media screen and (max-width: 991px) {
	/*お知らせ*/
	.new-posts_item {
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.new-posts_cat {
		
	}
	.cat {
		display: inline-block;
	}
	.cat+.cat {
		margin-top: 0;
		margin-left: 0.5rem;
	}
	.new-posts_cat+.new-posts_ttl {
		margin-top: 0.5rem;
	}
	.new-posts_ttl {
		width: 100%;
	}
}


/* -----------------------------------------------
 tablet 768px以下
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	.home_banner-item:nth-child(2), /*2番目*/
	.home_banner-item+.home_banner-item { 
		margin-top: 1rem;
	}
	.footer {
	}
	.f_tel {
		margin-bottom: 1.2em
	}
/*住所欄*/
.footer--layout--address {
	width: 100%;
}
/*リンク欄*/
.footer--layout--link {
	width: 100%;
	justify-content: initial;
}
	.copy {
		font-size: 10px;
	}
	/*ページトップへ戻るボタン*/
	.pagetop {}
	.pagetop img {
		width: 20px;
		height: 20px;
	}
	.pagetop a {
		width: 20px;
		height: 20px;
	}
	.footer--layout{
		row-gap: 2rem;
	}
}

/* -----------------------------------------------
PRINT Module
-------------------------------------------------- */
@media print {
  
* { /*color: #666 !important;*/
    box-shadow: none !important;
    text-shadow: none !important;
  }
body { width: 100%; }
@page  { margin: 0.5cm; }
p, h2, h3 { orphans: 3; widows: 3; }
h2, h3 { page-break-after: avoid; }
thead { display: table-header-group; }
tr,img { page-break-inside: avoid; }
li { content: "» "; }
	
	/*common*/
	.header { position: static; }
	.wrapper { padding-top: 0; }
}