@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&display=swap');

/* --------------------------------------------------------- */
/* 共通 - common.css
------------------------------------------------------------ */

/* reset */
body, div, dl, dt, dd, ul, ol, li, p, figure, h1, h2, h3, h4, h5, h6 { padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p, ul, ol, dl { font-size: 1em; }
li { list-style: none; }

/* common */
html {
	font-family: "BIZ UDPGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-y: scroll;
}
body {
	font-size: 94%;
	line-height: 1.7;
	letter-spacing:0.02em;
	color: #1f0202;
	background-color:#f6f2ee;
}
html,body{
    width: 100%;
}
img {
	vertical-align: top;
	border: 0;
}
a img {
	border: 0;
}
a:link, a:visited {
	text-decoration: underline;
	color:#3f2e18;
}
a:hover, a:active {
	text-decoration: none;
	color: #3f2e18 !important;
}
.sp {
	display: none;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
@media all and (max-width: 647px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline-block;
	}
}

/* --------------------------------------------------------- */
/* ヘッダ
------------------------------------------------------------ */
.headerWrap {
	background-image: url(../img/bg_head.png);
	background-repeat: no-repeat;
	background-size : auto 100%;
	background-position : top center;
	padding: 50px 0;
}
.header {
	width: 1000px;
	height: 420px;
	margin: 0 auto;
	background-image: url(../img/bg_main.png);
	background-repeat: no-repeat;
	background-position:right bottom;
}
.header h1 {
	padding-top:20px;
	text-align:center;
}
.spHeadimg {
	display:none;
}
@media all and (max-width: 647px) {
.headerWrap {
	background-image: url(../img/bg_head-sp.png);
	background-size : 100% auto;
	padding:10px;
	margin-bottom:20px;
}
.header {
	width: 100%;
	height: 40vw;
	background-size: 100% auto;
}
.header h1 {
	padding:10px 0 20px 10px;
	margin-bottom:0;
}
.header h1 img,
img.spHeadimg {
	width:100%;
	height:auto;
}
.spHeadimg {
	margin-top:6px;
	display:block;
}
}
/* --------------------------------------------------------- */
/* 最新の記事
------------------------------------------------------------ */
/*
.latestNewsWrap h2 img {
	width:200px;
	height:auto;
}
*/
.latestNewsWrap dl {
	border-top:dotted 1px #694f34;
}
.latestNewsWrap dt {
	font-size:.86em;
	width:256px;
	padding:12px 0 8px 10px;
	clear:both;
	float:left;
}
.latestNewsWrap dt span {
	width:9em;
	display:inline-block;
}
.latestNewsWrap dt img {
	margin-top:-2px;
}
.latestNewsWrap dd {
	padding:10px 0 10px 246px;
	border-bottom:dotted 1px #694f34;
}
.latestNewsWrap dd a {
	padding-left:14px;
	position:relative;
	display:block;
}
.latestNewsWrap dd a:before {
	position:absolute;
	top:0.7em;
	left:0;
	content:'';
	width: 5px;
	height: 5px;
	border-top: 1px solid #694f34;
	border-right: 1px solid #694f34;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media all and (max-width: 647px) {
/*
.latestNewsWrap h2 img {
	width:180px;
}
*/
.latestNewsWrap dt {
	font-size:.86em;
	width:100%;
	padding:10px 0 8px 0;
	float:none;
}
.latestNewsWrap dt img {
	margin-top:0;
	width:80px;
	height:auto;
}
.latestNewsWrap dd {
	padding:0 0 10px 0;
	border-bottom:dotted 1px #694f34;
}
.latestNewsWrap dd a {
	padding-left:14px;
}
.latestNewsWrap dd a:before {
	top:8px;
	width: 4px;
	height: 4px;
}
}
/* --------------------------------------------------------- */
/* 記事一覧
------------------------------------------------------------ */
.blogList {
	position:relative;
	width: 48%;
	padding: 10px;
	margin: 0 0 4% 0;
	background: #fff url(../img/arrow_orange.png) no-repeat right 20px bottom 20px;
	background-size: 21px 8px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px 0px #eee8e2;
}
.blogList:hover {
	box-shadow: 0px 0px 10px 0px #f8d5a3;
	transition: 0.6s;
}
.blogList h2 {
	text-align:left;
	position:relative;
	border-bottom:solid 1px #694f34;
	padding-bottom:6px;
	width:530px;
	font-size:1.2em;
	padding-right:100px;
}
.dateTxt {
	position:absolute;
	right:0;
	bottom:4px;
	font-weight:normal;
	font-size:.8rem;
}
.blogList .inner {
	display: flex;
}
.blogList figure,
.blogList .overView {
	display:inline-block;
	vertical-align:top;
}
.blogList figure {
	width:220px;
	overflow: hidden;
	border-radius: 8px;
}
.blogList figure img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform .6s ease;
	border-radius: 8px;
}
.blogList .overView {
	width:360px;
}
.blogList .overView p {
	word-break: break-all;
}
.blogList .overView span.more {
	margin-top:10px;
	display:block;
	text-decoration:none;
	font-weight:bold;
	position:relative;
	padding-left:22px;
}
.blogList .overView span.more:before {
	position:absolute;
	content:'';
	top:4.5px;
	left:0;
	width: 16px;
	height: 16px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #a3885d;
}
.blogList .overView span.more:after {
	content:'';
	position:absolute;
	top:10px;
	left:4px;
	width: 4px;
	height: 4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.blogList dl {
	width: calc(100% - 220px);
	padding: 20px;
}
.blogList dl dt {
	font-size: 14px;
	color: #666666;
	margin-bottom: 5px;
}
.blogList dl dd {
	font-size: 16px;
	color: #1f0202;
	font-weight: bold;
	line-height: 1.6;
}
.blogList a {
	text-decoration:none;
	display:block;
}
.blogList a:hover {
	transition:0.3s;
}
.blogList a:hover figure img {
	transform: scale(1.1);
}
.blogList .thumbImg {
	width: 90px;
	top: -20px;
	left: -10px;
}
.thumbImg {
	position:absolute;
	top:0;
	right:-14px;
	width:130px;
}
.readMore,
.dtlPrev {
	width:480px;
	font-size: 18px;
	border-radius: 30px;
	background: #ffcd73;
	margin:20px auto 40px;
	padding-right: 22px;
	text-align:center;
	position:relative;
}
.readMore:after {
	position: absolute;
	content:'';
	top: 50%;
	right: 20px;
	margin-top:-7px;
	width: 22px;
	height: 8px;
	background: url(../img/arrow_brown.png) no-repeat 0 0;
	background-size: 22px 8px;
}
.dtlPrev:after {
	position: absolute;
	content:'';
	top: 50%;
	left: 20px;
	margin-top:-7px;
	width: 26px;
	height: 14px;
	background-image: url(../img/cmn.png);
	background-repeat: no-repeat;
	background-position:-28px 0;
}
.readMore a,
.dtlPrev a {
	display:block;
	text-decoration:none;
	padding:14px 0 14px 1.5em;
	font-weight:bold;
}
.readMore:hover,
.dtlPrev:hover {
	background-color:#ffb953;
	transition: 0.3s;
}
h2.listTi {
	font-size:1.5rem;
	padding: 1rem 2rem calc(1rem + 10px);
	margin: 0 0 50px 0;
	background: #fff;
	color: #f26402;
	text-align: center;
	position: relative;
	border-radius: 8px;
}
h2.listTi:before {
	position: absolute;
	top: -7px;
	left: -7px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	content: '';
	border: 2px solid #f26402;
	border-radius: 8px;
}
.page_navi {
	text-align: center;
	margin:50px auto 20px;
	font-size:1rem;
	font-weight: bold;
}
.page_navi a {
	text-decoration: none;
	display: inline-block;
	margin: 0 3px;
}
.link_page,
.link_before,
.link_next,
.current_page {
	background-color: #ffcd73;
	padding: 6px 11px 4px 11px;
	display: inline-block;
	border-radius: 30px;
}
.link_page {
	width: 2.4em;
}
.link_before,
.link_next {
	width: 5em;
}
.current_page {
	width: 2.4em;
	background-color: #fff;
}
a.link_page:hover,
a.link_before:hover,
a.link_next:hover {
	background-color: #ffb953;
	transition: 0.3s;
}
@media all and (max-width: 647px) {
.blogList {
	width: 100%;
	margin: 0 0 8%;
}
.blogList:hover {
	box-shadow: 0px 0px 10px 0px #eee8e2;
}
.blogList .inner {
	overflow:hidden;
}

.hasenBox .blogList h2 {
	padding-bottom:6px;
	width:100%;
	font-size:1em;
	padding-right:90px;
}
.dateTxt {
	position:static;
	display:block;
}
.blogList inner {
	width:100%;
}
.blogList figure,
.blogList .overView {
	display:block;
}
.blogList figure {
	width:120px;
}
.blogList figure img {
	height: 160px;
	transition: none;
}
.blogList a:hover figure img {
	transform: none;
}
.blogList .overView {
	width:auto;
	font-size:.86em;
	padding-left:110px;
}
.blogList .overView a {
	padding-left:20px;
}
.blogList .overView a:before {
	top:1px;
}
.blogList .overView a:after {
	top:6px;
}
.blogList .thumbImg {
	width: 60px;
}
img.thumbImg {
	width:80px;
	height:auto;
}
.thumbImg {
	top:-25px;
	right:-5px;
}
.blogList dl {
	width: calc(100% - 120px);
	padding: 12px 12px 26px;
}
.blogList dl dt {
	font-size: 0.75rem;
}
.blogList dl dd {
	font-size: 0.875rem;
	
}
.readMore,
.dtlPrev {
	width:86%;
	font-size: 1rem;
	margin: 0px auto 40px;
}
h2.listTi {
	font-size:1.05rem;
	width: 92vw;
	padding: 0.5rem 1rem calc(0.5rem + 10px);
	margin: 0 auto 20px;
}
h2.listTi:before {
	top: -5px;
	left: -5px;
}
.page_navi {
	margin:0 auto 20px;
	font-size:0.85rem;
	width: 95vw;
}
.page_navi a {
	margin: 5px;
}
}

/* --------------------------------------------------------- */
/* 記事詳細
------------------------------------------------------------ */
.blogCont {
	position: relative;
	padding: 40px;
	margin: 0 0 4% 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 0px 10px 0px #eee8e2;
}
.blogCont h2 {
	text-align:left;
	border-bottom:solid 2px #f26402;
	padding:0 100px 30px 0;
	margin-bottom:50px;
	font-size:1.25rem;
}
.blogCont .dateTxt {
	position:static;
	color: #666666;
	font-size: 0.88rem;
	margin-bottom:6px;
}
.blogCont .thumbImg {
	top:-40px;
}
.blogCont .inner {
}
.blogCont .inner p{
	margin-bottom:2em;
	font-size: 1rem;
	line-height: 2;
}
.blogCont .inner em{
	display: inline-block;
	-webkit-transform: skewX(-15deg);
	-moz-transform: skewX(-15deg);
	-o-transform: skewX(-15deg);
	transform: skewX(-15deg);
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=-0.26794919243112214, M21=0, M22=1, SizingMethod='auto expand')";
}
.blogCont .inner p img {
	vertical-align: middle;
}
.blogCont .inner img.mt-image-none,
.blogCont .inner img.mt-image-left,
.blogCont .inner img.mt-image-right,
.blogCont .inner img.mt-image-center {
	max-width:100%;
	height:auto;
	margin-bottom:10px;
	float:none;
}
.blogCont .inner hr{
	border: 0;
	border-top: 2px dotted #c5bfb2;
	padding-bottom: 1.5em;
	max-width: 690px;
}
ul.sns {
	margin:40px 0 20px 0;
}
ul.sns li {
	display:inline-block;
	margin-right:10px;
}
.auther {
	padding-top:30px;
	margin: 20px 0 0 0;
	border-top:solid 1px #f99e2b;
}
.auther a {
	font-weight:bold;
}
@media all and (max-width: 647px) {
.blogCont {
	width: 92%;
	margin: 8% auto 6%;
	padding: 20px;
}
.blogCont h2 {
	padding:0 0 16px 0;
	margin-bottom:30px;
	font-size:0.875rem;
}
.blogCont .dateTxt {
	font-size:0.75rem;
}
.blogCont .inner {
}
.blogCont .inner p {
	font-size: 0.815rem;
}
.blogCont .thumbImg {
	top: -40px;
	right: -10px;
}
.blogCont .inner img {
	max-width: 100%;
}
.blogCont .inner img.mt-image-none,
.blogCont .inner img.mt-image-left,
.blogCont .inner img.mt-image-right,
.blogCont .inner img.mt-image-center {
	max-width:100%;
	height:auto;
	margin-bottom:10px;
	float:none;
}
ul.sns {
	margin:20px 0 20px 0;
}
.auther {
	margin: 0;
	padding-top:20px;
	font-size:0.75rem;
}
}
/* --------------------------------------------------------- */
/* サイドナビゲーション
------------------------------------------------------------ */
.sideWrap {
	max-width: 940px;
	padding: 60px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.sideWrap section {
	width: 30%;
}
.sideWrap .hasenBox {
	background: none;
	padding: 0;
}
.sideWrap .hasenBox h3 {
	font-size: 18px;
	padding: 8px 16px;
	margin-bottom: 20px;
	border-radius: 4px;
	color: #fff;
	font-weight: normal;
	background: rgb(249,156,28);
	background: linear-gradient(90deg, rgba(249,156,28,1) 0%, rgba(255,205,115,1) 100%);
}

ul.sideLi li {
	margin-bottom:8px;
	padding-left:10px;
	position:relative;
}
ul.sideLi li:before {
	position:absolute;
	content:'';
	top:10px;
	left:0;
	width:3px;
	height:3px;
	border-radius:50px;
	background-color:#9c7f51;
}
ul.sideBnr {
	text-align:center;
}
ul.sideBnr li {
	margin-bottom:10px;
}
ul.sideBnr li img {
	width: 230px;
}
@media all and (max-width: 647px) {
.sideWrap {
	width: 85% !important;
	display: block;
	padding: 20px 0 5px;
}
.sideWrap section {
	width: 100%;
}
.sideWrap .hasenBox {
}
.sideWrap .hasenBox h3 {
	font-size: 1rem;
	margin-bottom: 0;
	position:relative;
}
.sideWrap .hasenBox h3:after {
	position:absolute;
	top:11px;
	right:23px;
	content:'';
	width:2px;
	height:18px;
	background-color:#fff;
	transition: all 0.3s;
}
.sideWrap .hasenBox h3:before {
	position:absolute;
	top:19px;
	right:15px;
	content:'';
	width:18px;
	height:2px;
	background-color:#fff;
	transition: all 0.3s;
}
.sideWrap .hasenBox h3.active:after,
.sideWrap .hasenBox h3.active:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
ul.sideLi {
	display:none;
}
ul.sideLi li {
	font-size: 0.9rem;
	margin-top: 10px;
	padding: 0 10px 10px;
	border-bottom:dotted 1px #a3885d;
}
ul.sideLi li:before {
	top:10px;
}
.facebookBox {
	display:none;
}
ul.sideBnr {
	letter-spacing:-.4em;
	text-align:center;
}
ul.sideBnr li {
	letter-spacing:normal;
	display:inline-block;
	width:50%;
	padding:0 10px 10px 10px;
	margin-bottom:0;
}
ul.sideBnr li:nth-child(odd) {
	padding-right:0;
}
ul.sideBnr li img {
	width:100%;
	height:auto;
}
}

/* --------------------------------------------------------- */
/* 外部リンク
------------------------------------------------------------ */
aside {
	background: #fff;
}
aside .asideWrap {
	max-width: 730px;
	margin: 0 auto;
	padding: 60px 0 30px;
}
aside ul.sideBnrSNS,
aside ul.sideBnr {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}
aside ul.sideBnrSNS li img {
	width: 280px;
}
@media all and (max-width: 647px) {
	aside .asideWrap {
		max-width: 100%;
		margin: 0 auto;
		padding: 30px 0 15px;
	}
	aside ul.sideBnrSNS,
	aside ul.sideBnr {
		display: block;
		margin-bottom: 15px;
	}
	aside ul.sideBnrSNS {
		width: 65%;
		margin: 0 auto;
		padding-bottom: 10px;
	}
	aside ul.sideBnrSNS li {
		margin-bottom: 20px;
	}
	aside ul.sideBnrSNS li img {
		width: 100%;
	}
}

/* --------------------------------------------------------- */
/* フッター
------------------------------------------------------------ */
.aboutWrap {
	margin:0 auto;
	text-align:center;
	background: rgb(255,204,106);
	background: linear-gradient(90deg, rgba(255,204,106,1) 0%, rgba(249,156,28,1) 50%, rgba(255,216,161,1) 100%);
	padding:50px 0 60px;
}
.aboutWrap h3 {
	margin-bottom:30px;
}
.aboutWrap h4 {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: normal;
	display: inline-block;
	color: #fff;
	text-shadow: 5px 5px 10px #f47900;
	letter-spacing: 0.1em;
}
.aboutWrap p {
	color: #fff;
	text-shadow: 5px 5px 10px #f47900;
	letter-spacing: 0.1em;
}

.footerWrap {
	background-color:#FFF;
}
.footer {
	width:1000px;
	margin:0 auto;
	padding:48px 0 40px 86px;
	font-size: 0.9em;
}
.footer img,
.footer p {
	display:inline-block;
	vertical-align:middle;
}
.footer img {
	margin-right:50px;
}
address {
	text-align: center;
	padding: 10px 0;
	color: #FFF;
	font-style: normal;
	font-size:.86em;
	background-color:#f39800;
}
.pagetop {
	position:fixed;
	bottom:74px;
	right:20px;
	width: 90px;
	height: 90px;
	cursor:pointer;
}
.pagetop img {
	width: 100%;
}
.gotoEmifull {
	position:fixed;
	top:10px;
	right:10px;
}
@media all and (max-width: 647px) {
.aboutWrap {
	width:100%;
	padding:40px 10px 0 10px;
}
.aboutWrap h4 {
	font-size: 1.1rem;
}
.aboutWrap p {
	text-align: left;
	font-size: 0.85rem;
	letter-spacing: 0;
	padding: 0 4vw 40px;
}
.aboutWrap h3 img {
	width:320px;
	height:auto;
}
.footerWrap {
	background-size:30px;
}
.footer {
	width:100%;
	padding:30px 10px;
}
.footer img {
	width:200px;
	height:auto;
	margin:0 auto 20px auto;
}
.footer img,
.footer p {
	display:block;
}
.footer p {
	font-size:.8em;
}
address {
	font-size:.6em;
}
.pagetop {
	bottom:20px;
	right:10px;
	width: 50px;
	height: 50px;
}
.gotoEmifull {
	display:none;
}
}
/* --------------------------------------------------------- */
/* コンテンツレイアウト
------------------------------------------------------------ */
.contentsWrap {
	width:1000px;
	margin:0 auto 20px auto;
	letter-spacing: 0.05em;
}
.mainCnt {
}
.mainCnt section {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2%;
}
.sideWrap {
}
@media all and (max-width: 647px) {
.contentsWrap {
	width:100%;
}
.mainCnt {
	width:100%;
	float:none;
}
.mainCnt section {
	display: block;
	padding: 4%;
}
.sideWrap {
	width:100%;
	float:none;
}
}
/* --------------------------------------------------------- */
/* 共通パーツ
------------------------------------------------------------ */
.hasenBox {
	background-color: #FFF;
	background-image: url(../img/bg_line.png);
	background-repeat: repeat-x;
	background-position: top center;
	padding:28px 20px;
	margin-bottom:20px;
}
.hasenBox h2 {
	text-align:center;
	margin-bottom:18px;
}
.center {
	text-align:center;
}
@media all and (max-width: 647px) {
.hasenBox {
	padding:20px 10px;
	margin-bottom:20px;
}
.hasenBox h2 {
	margin-bottom:10px;
}
}
/* clearfix
------------------------------------------------------------ */
.contentsWrap:after,
.latestNewsWrap:after,
.blogList inner:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}