@charset "utf-8";
@import "reset.css";

/* Base Style
================================================== */


@media print {
	body {
		width: 1200px;
		transform: scale(0.8);
		-moz-transform: scale(0.8);
		-webkit-transform: scale(0.8);
		transform-origin: 0 0;
	}

	#logo-sub {
		display: none;
	}

	.sp-header {
		display: none;
	}

	#scrollTop {
		display: none;
	}
}


/* Windows */
@font-face {
	font-family: YuGothicM;
	font-weight: normal;
	src: local('YuGothic-Medium'),
		/* Mediumを明示的に指定 */
		local('Yu Gothic Medium'),
		/* Chrome用 */
		local('YuGothic-Regular');
	/* Windows8.1ではMediumがないのでRegularを指定 */
}

@font-face {
	font-family: YuGothicM;
	font-weight: bold;
	src: local('YoGothic-Bold'),
		/* Boldはそのまま */
		local('Yu Gothic');
	/* Chrome用 */
}

.clr {
	clear: both;
	min-height: 1em;
}


.clr:after {
	display: block;
	height: 1px;
	content: "";
	clear: both;
}

input,
select,
textarea {
	color: #000;
	font-family: inherit;
	font-size: 100%;
}

.new {
	margin-left: 5px;
	color: #ff5353;
	font-size: 75%;
	font-weight: bold;
	text-transform: uppercase;
}



/**
 * https://unsplash.com/photos/rTZW4f02zY8
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.target {
  display: block;
  max-width: 350px;
  width: 70%;
  height: auto;
}

/* Animation */
.target {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}


.fluffy {
    animation: fluffy1 3s ease infinite;
}


@keyframes fluffy1 {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}


/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.7s ease-in-out;
    -moz-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    transform: translateX(-200px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
@media screen and (max-width: 810px) {
	.scroll_right.isMblReverse:not(.on) {
		transform: translateX(-150px);
	}
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.7s ease-in-out;
    -moz-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    transform: translateX(200px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
@media screen and (max-width: 810px) {
	.scroll_left.isMblReverse:not(.on) {
		transform: translateX(150px);
	}
}
/*------------------------*/
/*------------------------*/
/*------- layout -------*/



.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}
.timing05 {transition-delay: .8s;}



/* Clearfix
================================================== */
.inner:after,
header:after,
footer:after,
nav ul:after,
section:after,
article:after,
aside:after,
.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}

.inner,
header,
footer,
nav ul,
section,
article,
aside,
.clearfix {
	zoom: 1;
}

.none_text {
	display: none;
}


a{
	word-break: break-all;
}

a:hover img,
a:focus img {
	opacity: 0.85;
	filter: alpha(opacity=85);
}

:-ms-input-placeholder {
	color: #603814;
}


body,
html {
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	line-height: 140%;
	background-image: url("../images/toppage_bg.jpg");
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 120%;

}

@media screen and (max-width: 600px) {
body {
    background-position: center;
    background-size: 200%;
}
}


ol,
ul {
	list-style: none;
}

form {
	margin: 0px;
	padding: 0px;
}

* {
	box-sizing: border-box;
}


@media screen and (min-width: 811px) {
	.sp-disp {
		display: none !important;
	}

}

@media screen and (max-width: 810px) {
	.pc-disp {
		display: none !important;
	}

}



@media screen and (min-width: 601px) {
	.sp-disp600 {
		display: none !important;
	}

}

@media screen and (max-width: 600px) {
	.pc-disp600 {
		display: none !important;
	}

}





.hideAnchor {
	display: block;
	height: 0px;
		overflow: hidden;
	text-indent: -9999px;
	margin-top: -90px;
	padding-bottom: 90px;
}



#lay-container {
	width: 100%;
	min-height: 100%;
	height: auto !important;
	margin: 0;
	position: relative;
	top: 25px;
}


@media only screen and (max-width: 810px) {
#lay-container {
    top: 10px;
}
}


#scrollTop {
	position: fixed;
    right: 20px;
    z-index: 20;
    margin-bottom: 20px;

}


#scrollTop img {
	width: 60px;
}


.skip-header a {
	display: block;
	background-color: #007b44;
	color: #fff;
	text-decoration: none;
	text-align: center;
	position: absolute;
	height: 0;
	overflow: hidden;
}

.header-bottom {
	padding-top: 180px;
}


@media screen and (max-width: 900px) {
.header-bottom {
    padding-top: 130px;
}
}

@media screen and (max-width: 810px) {
.header-bottom {
	padding-top: 0px;
}
}


#pc-header {
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 9997;
	background-color: rgba(255, 255, 255, 0);

}



.headerInner {
	width: 100%;
	padding: 20px 20px;
}

.headerInner table {
	width: 100%;
}



.headerInner-l {
	width: auto;
	vertical-align: middle;
}

.headerInner-l img {
	width: 300px;
}

@media screen and (max-width: 970px) {
.headerInner-l img {
    width: 250px;
}
}


@media screen and (max-width: 850px) {

.headerInner-l img {
        width: 200px;
    }
	
}


.headerInner-r {
	width: auto;
	text-align: right;
	vertical-align: middle;
}


.headerInner-r table {
	width: auto;
}

.headerInner-r table td {
	vertical-align: middle;
}



.headerInner-r table td.header-tel {
	width: auto;
	text-align: left;
}

.header-tel-01 {
	font-size: 80%;
    padding-left: 35px;
    line-height: 100%;
    font-weight: bold;
	color: #603814;
}
.header-tel-02 {
	font-size: 280%;
    color: #53b015;
    font-weight: bold;
    background-image: url(../images/tel.png);
    background-repeat: no-repeat;
    background-position: left 10px;
    background-size: 30px;
    padding-left: 35px;
    line-height: 110%;

}



.headerInner-r table td.header-contact {
	width: 190px;
    padding: 5px 0 0 20px;
}

.headerInner-r table td.header-contact a {
	display: block;
    padding: 4px 0;
    text-decoration: none;
    border-radius: 50px;
    background-color: #fcd721;
    font-weight: bold;
    text-align: center;
    font-size: 130%;
    letter-spacing: 0;
}

@media screen and (max-width: 850px) {
.headerInner-r table td.header-contact a {
    font-size: 110%;
}
	
.headerInner-r table td.header-contact {
    width: 170px;
}
	
.header-tel-02 {
    font-size: 220%;
    background-position: left 10px;
    background-size: 23px;
    padding-left: 30px;
	}
	
}

.headerInner-r table td.header-contact a:hover {
	opacity: 0.85;
}




.header-nav-list-wrap {
	width: 100%;
	padding: 15px 0;
}




.header-nav-list li a {
  word-wrap: break-word;
}
.header-nav-list li a:hover {
  opacity: 1 !important;
}
.header-nav-list li > * {
  cursor: pointer;
}


.header-nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
             justify-content: flex-end;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	width: 100%;
  }




.header-nav-list > li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
.header-nav-list > li > .menuTitle {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0 30px 0;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }

@media print, screen and (max-width: 1060px) {
	
.header-nav-list > li > .menuTitle {
	    padding: 0 20px 0;
	    font-size: 120%;
	}
	
}


.header-nav-list > li > .menuTitle:hover {
    color: #53b015;
  }
.header-nav-list > li > .menuTitle::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 100%;
    height: -o-calc(100% - 0.2em);
    height: calc(100% - 0.2em);
    background-color: #603814;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
.header-nav-list > li:first-child > .menuTitle {
    padding-left: 0;
  }
.header-nav-list > li:first-child > .menuTitle::before {
    content: none;
  }
.header-nav-list > li:last-child > .menuTitle {
    padding-right: 0;
  }
.header-nav-list > li:hover .accordionMenu__02 {
    display: block;
    -webkit-transform: translate(50%, 100%) scale(1, 1);
            transform: translate(50%, 100%) scale(1, 1);
}
@media only screen and (min-width: 811px) and (min-width: 811px) and (max-width: 809px) {
.header-nav-list > li:nth-last-child(3) .accordionMenu__02 {
    -webkit-transform: translate(0, 100%) scale(1, 0);
            transform: translate(0, 100%) scale(1, 0);
    right: 0;
  }
.header-nav-list > li:nth-last-child(3):hover .accordionMenu__02 {
    -webkit-transform: translate(0, 100%) scale(1, 1);
            transform: translate(0, 100%) scale(1, 1);
  }
}
@media print, screen and (min-width: 811px) {
.header-nav-list .accordionMenu__02 {
    display: block;
    position: absolute;
    width: auto;
    height: 0;
    bottom: 4px;
    right: 50%;
    left: auto;
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: translate(50%, 100%) scale(1, 0);
            transform: translate(50%, 100%) scale(1, 0);
    padding: 30px 0 0;
  }
.header-nav-list .accordionMenu__02Inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 300px;
    background: #53b015;
    padding: 10px 20px 10px;
    border: 2px solid #fff;
    border-radius: 20px;
  }
.header-nav-list .accordionMenu__02 .header-nav-list__02 {
    position: relative;
    display: block;
    width: 100%;
  }
.header-nav-list .accordionMenu__02 .header-nav-list__02 > li {
    border-bottom: 1px solid #fcd721;
  }
.header-nav-list .accordionMenu__02 .header-nav-list__02 > li:last-child {
    border-bottom: none;
  }
.header-nav-list .accordionMenu__02 .header-nav-list__02 > li > .title a {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    word-wrap: break-word;
    padding: 0.5em 1em 0.5em;
	text-align: left;
  }
	
	
.header-nav-list .accordionMenu__02 .header-nav-list__02 > li > .title a::before {
    content: "";
    position: absolute;
    display: block;
    width: 0.5em;
    height: 2px;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background-color: #fcd721;
    border-radius: 2px;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
  }
.header-nav-list .accordionMenu__02 .header-nav-list__02 > li:hover > .title a::before {
    opacity: 1;
  }
}
@media print, screen and (min-width: 811px) {
.header-nav-list .header-nav-list__02 > li {
    position: relative;
  }
.header-nav-list .header-nav-list__02 > li:hover > .accordionMenu__03 {
    display: block;
  }
}
@media print, screen and (min-width: 811px) {
.header-nav-list .accordionMenu__03 {
    display: none;
    width: 100%;
  } .header-nav-list .accordionMenu__03 > .header-nav-list__03 > li {
    padding: 0.5em 1em 0.5em;
  }
.header-nav-list .accordionMenu__03 > .header-nav-list__03 > li > .menuTitle {
    display: block;
    width: 100%;
    color: #603814;
    font-size: 14px;
    text-decoration: none;
  }
}



/*
@media print, screen and (max-width: 1000px) {
	
.headerInner {
    padding: 10px 12px 10px 8px;
}
	
.headerInner-l img {
    width: 300px;
}
	
.headerInner-r {
    padding-top: 6px;
}
	
.header-nav-list > li > .menuTitle {
	font-size: 18px;
}
	
.h-news-wrap02,
.h-news-wrap {
    font-size: 90%;
        padding: 0 10px;
}
	
.header-nav-list-wrap {
    padding: 25px 0;
}
	
.header-new th {
    font-size: 20px;
	}
	
.header-new td ul {
    padding: 20px 0;
}
	
.header-new td.td02 {
    width: 20px;
}
	
.headerInner-r table td.header-contact {
    width: 120px;
}

.headerInner-r table td.header-contact a {
    font-size: 80%;
}

.headerInner-r table td.header-search input[type="text"] {
    width: 160px;
    padding: 5px 30px 5px 10px;
}
	
	
.headerInner-r table td.header-search input[type="image"] {
    right: 10px;
    top: 8px;
    width: 15px;
}

}
*/



@media screen and (max-width: 900px) {
.header-nav-list > li > .menuTitle {
        font-size: 100%;
    }
}



.font-size {
	background-color: #53b015;
	display: inline-block;
	width: auto;
	height: 52px;
	padding: 10px 15px 7px 15px;
	text-align: center;
}

.pc-search {
	display: inline-block;
	width: auto;
	height: 52px;
	background-color: #53b015;
	float: right;
	padding: 9px 17px;
	text-align: left;
}

.sp-search {

	margin-top: 50px;
	text-align: center;
}


.pc-search span {
	display: inline-block;
}

.label {
	color: #fff;
	font-size: 14px;
	margin-right: 6px;
}

.default {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
}

.default a:link {
	text-decoration: none;
	display: block;
	background-color: #fff;
	color: #000;
	padding: 3px 8px;
	border-radius: 20px;
}

.default a:hover {
	background-color: #fff;
	color: #000;
}

.large {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
}

.large a:link {
	text-decoration: none;
	display: block;
	background-color: #000;
	color: #f6e490;
	padding: 3px 8px;
	border-radius: 20px;
}

.large a:hover {
	background-color: #fff;
	color: #000;
}





.input_item {
	width: 166px;
	border: none;
	height: 32px;
	padding: 3px 28px 3px 5px;
	background: #fff;
	font-size: 16px;

	border-radius: 0px !important;
	color: #603814;
}


#searchsubmit {
	width: 18px;
	margin-left: -26px;
	padding-bottom: 0;

}


.input_item2 {
	width: 90%;
	max-width: 300px !important;
	border: 1px solid #ccc;
	height: 32px;
	padding: 3px 28px 3px 5px;
	background: #fff;
	font-size: 16px;

	border-radius: 0px !important;
	color: #603814;
}


#searchsubmit2 {
	width: 18px;
	margin-left: -26px;
	padding-bottom: 0;

}





#globalNav {
	width: 100%;
	padding-top: 5px；
}

#globalNavInner {
	width: 100%;
	padding: 0 0 0 0;
}



#globalNavInner ul {
	width: 100%;
	display: inline-flex;
	flex-wrap: nowrap;
	font-size: 110%;
	justify-content: right;
	padding: 8px 0;
}



#globalNavInner ul li {
	text-align: center;
	padding: 8px 0;
	font-size: 90%;
}


#globalNavInner ul li a {
	display: block;
	padding: 0 22px;
	text-decoration: none;
	font-weight: bold;
	border-left: #000 solid 1px;
}




@media screen and (max-width: 1000px) {
	#globalNavInner ul li a {
		padding: 0 10px;
	}
}




#globalNavInner ul li:first-child a {
	border-left: none;
}




#globalNavInner ul li a:hover {
	color: #53b015;
}



#sub-header {
	position: fixed;
	z-index: 9998;
	background-color: #fff6f0;
	top: -300px;
    box-shadow: 0 0 6px #b5b5b5;
}


@media screen and (max-width: 810px) {
#sub-header {
	display: none;
}
}


#sub-header .header-nav-list-wrap {
	width: 100%;
	padding: 14px 0;
}

#sub-header .header-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            justify-content: flex-end;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
  }


.headerInner-r-top {
	display: inline-block;
	width: auto;
}
.headerInner-r-bottom {
	display: block;
}


/* プルダウン Nav
================================================== */

#globalNavInner {
	position: relative;
}





#globalNavInner>ul .child {
	display: none;
	position: absolute;
	z-index: 800;
	margin-left: -2px;
	width: 300px;
}


#globalNavInner>ul .child li {
	max-width: auto;
	font-weight: bold;
	border-right: none;
	font-size: 80%;
	transition: .4s;
	color: #fff;

}

#globalNavInner>ul .child li:nth-child(odd) {
	background-color: #53b015;
}

#globalNavInner>ul .child li:nth-child(even) {
	background-color: #004136;
}


#globalNavInner>ul .child li:last-child {}

#globalNavInner>ul .child li a {
	display: block;
	text-decoration: none;
	padding: 0 15px;
	text-align: left;
	color: #fff;
	border-left: none;
}

#globalNavInner>ul .child li a:hover {}

#globalNavInner>ul .child li:hover {
	background-color: #fcd721;
}








/*メニュー関係終わり
---------------------------------------------------------------*/




/* トップ
================================================== */



#home #content {
	width: 100%;
	margin: 0px auto;
	padding-bottom: 0px;
	border-bottom: none;
}


#content {
	width: 100%;
	margin: 0px auto;
	padding-bottom: 60px;
}





#home h2 { 
	text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #603814;
    padding-top: 10px;
    background-image: url(../images/h2_bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 170px;
    padding: 30px 0;
}


@media screen and (max-width: 767px) {
#home h2,.top6 h2 { 
    background-size: 140px;
}
}

	
.sub-h2 {
	text-align: center;
	margin: 0px 0 60px 0;
}
.sub-h2 img {
	width: auto;
	height: 46px;
}



@media screen and (max-width: 767px) {
	
.sub-h2 img {
    height: 36px;
}
	
.sub-h2 {
    margin: -10px 0 30px 0;
}

}



.top1 {
	width: 100%;
	background-color: #fce9e0;
}
.top1.emergency {
	width: 100%;
	background-color: #ffd5d5;
}


.top1-inner {
	width: 100%;
}

.header-new-sp {
	width: 100%;

}

.header-new-sp td {
	width: 100%;
}
.header-new-sp td.td01 {
	padding: 30px 30px 5px 30px;
}
.header-new-sp td.td02 {
	padding: 20px 30px 30px 30px;
}


.header-new-sp td h2 {
	color: #53b015;
	font-size: 22px;
	border-bottom: 1px solid #53b015;
	padding-bottom: 15px;
}

.header-new-link {
	text-align: right;
	margin-top: -40px;
}
.header-new-link img {
	width: 25px;
}

.header-new-sp td ul li .date {
	display: block;
	color: #603814;
}
.header-new-sp td ul li .title {
	display: block;
}




#home .top2 {
	width: 100%;
    padding-top: 0px;
}

.top2 {
	width: 100%;
    padding-top: 40px;
}


@media screen and (max-width: 1360px) {
	
.top2 {
    padding-right: 30px;
}
	
}

@media screen and (max-width: 1299px) {
	
.top2 {
    padding-right: 0px;
}
	
}

@media screen and (max-width: 810px) {
.top2 {
    padding-top: 5px;
}
}


.top2-inner {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
	padding: 0 0 60px 25%;
	background-image: url(../images/kv_matsu.png);
    background-repeat: no-repeat;
    background-position: left 180px top 100px;
    background-size: 210px;
}

@media screen and (max-width: 1150px) {
.top2-inner {
    background-position: left -20px top 10px;
    background-size: 170px;
}
}

@media screen and (max-width: 600px) {

.top2-inner {
	padding: 0 0 30% 30px;
	background-image: none;
}



}



@media screen and (max-width: 500px) {
    .top2-inner {
        padding: 0 0 35% 30px;
    }
}



.slider {
	width: 100%;
}


.slider li img {
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	border-radius: 50px 0 0 50px;
}

@media screen and (min-width: 1300px) {
.slider li img {
	border-radius: 50px;
}

}

.top2-copy {
	position: absolute;
	width: 11.7%;
	top: 0;
	left: 6.5%;
    background-image: none!important;
}
.top2-copy img {
	width: 100%;
}

.top2-bokkuri {
	position: absolute;
    width: 130px;
    bottom: 20px;
    left: 12%;
}
.top2-bokkuri img {
	width: 100%;
}


@media screen and (max-width: 1030px) {
.top2-bokkuri {
    width: 130px;
    bottom: -10px;
    left: 9%;
}
}



@media screen and (max-width: 850px) {
.top2-bokkuri {
        width: 130px;
        bottom: -100px;
        left: 6%;
}
	
.top2-copy {
    width: 14.7%;
	top: -20px;
    left: 5.5%;
	}
	
}


@media screen and (max-width: 810px) {
    .top2-copy {
        width: 15%;
        top: -10px;
        left: 5%;
    }
	
    .top2-bokkuri {
        width: 110px;
        bottom: 10px;
        left: 5%;
    }
}


@media screen and (max-width: 670px) {
    .top2-bokkuri {
        width: 90px;
        bottom: 28px;
        left: 7%;
    }
}


@media screen and (max-width: 600px) {
.top2-copy {
	width: 65%;
	top: auto;
	bottom: 0;
	left: 30px;
}

.top2-bokkuri {
	position: absolute;
        width: 100px;
        bottom: 5%;
        left: auto;
        right: 30px;
}

}

@media screen and (max-width: 480px) {
    .top2-bokkuri {
        width: 80px;
        right: 20px;
    }
}


@media screen and (max-width: 480px) {
.top2-bokkuri {
        width: 75px;
        right: 10px;
    }
}


.top3 {
	width: 100%;
	overflow: hidden;
}


.top3-inner {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 80px 30px;
}


@media screen and (max-width: 1300px) {
	
.top3-inner {
	padding-top: 40px;
	}
	
}


.service-01-wrap {
	width: 100%;
	position: relative;
}

.service-01 {
	width: 100%;
	position: relative;
	margin: 0 0 40px 0;
}
.service-02-wrap {
	width: 100%;
	position: relative;
}

.service-02 {
	width: 100%;
	position: relative;
	margin: 0 0 80px 0;
	
}

.service-img {
	position: absolute;
	width: 60%;

}

.service-01 .service-img {
	top: 0;
	right: 8%;
}
.service-02 .service-img {
	top: 50px;
	left: 8%;
}


.service-img img {
	    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    border-radius: 40px;
    height: 26em;
    display: block;
    object-position: top center;
}


.service-com {
	position: absolute;
	width: calc(48% - 8%);
	bottom: 0;
	background-color: #fff;
	border-radius: 40px;
	box-shadow: 0 0 4px #c5c5c5;
	line-height: 120%;
}
.service-com a:link {
	display: block;
	text-decoration: none;
	padding: 40px 40px;
	background-image: url("../images/arrow_g.png");
	background-repeat: no-repeat;
	background-position: right 25px bottom 25px;
	background-size: 25px;
}

.service-com a:hover {
	opacity: 0.85;
}




.service-01 .service-com {
	left: 8%;
}
.service-02 .service-com {
	right: 8%;
}



@media screen and (max-width: 960px) {
	
.service-img {
    width: 70%;
}
	
.service-com {
    width: calc(60% - 8%);
	}
	
.service-01 .service-img {
    right: 3%;
}

.service-01 .service-com {
    left: 3%;
}

.service-02 .service-img {
    left: 3%;
}

.service-02 .service-com {
    right: 3%;
}

}



.top3-kobokkuri {
	position: absolute;
	width: 13%;
	top: 0;
	left: calc(5% + 3%);
}
.top3-kobokkuri img {
	width: 100%;
}

.top3-matsu01 {
	position: absolute;
	width: 15%;
	right: -2%;
}
.top3-matsu01 img {
	width: 100%;
}

.top3-kobokkuri02 {
	position: absolute;
	width: 13%;
	top: 0;
	right: 8%;
}
.top3-kobokkuri02 img {
	width: 100%;
}

.top3-matsu02 {
	position: absolute;
	width: 15%;
	left: calc(8% + 3%);
}
.top3-matsu02 img {
	width: 100%;
}

.service-com h3 {
	font-size: 26px;
	color: #53b015;
	margin: 0 0 20px 0;
}


@media screen and (max-width: 810px) {

.top3-inner {
	padding: 40px 0 80px 0;
}


.service-01 {
	width: 100%;
	position: relative;
	margin: 0 0 80px 0;
}
.service-02 {
	width: 100%;
	position: relative;
	
}

.service-img {
	position: absolute;
	width: 100%;
	padding: 0 60px;
}

.service-01 .service-img {
	top: 0;
	right: 0;
}
.service-02 .service-img {
	top: 0;
	left: 0;
}


.service-img img {
	width: 100%;
}


.service-com {
	width: calc(60%);
}

.service-01 .service-com {
	left: auto;
	right: 0;
	border-radius: 40px 0 0 40px;
}
.service-02 .service-com {
	right: auto;
	left: 0;
	border-radius: 0 40px 40px 0;
}


.top3-kobokkuri {
	position: absolute;
        width: 15%;
        top: auto;
        left: 80px;
        bottom: 0px;
}

.top3-matsu01 {
	position: absolute;
        width: 15%;
        right: 20px;
        top: 10px !important;
}
.top3-matsu01 img {
	width: 100%;

}

.top3-kobokkuri02 {
	position: absolute;
	width: 13%;
	top: auto !important;
	bottom: -35px;
	right: 50px;
}
	
	
.top3-kobokkuri02 img {
	width: 100%;
}

.top3-matsu02 {
	position: absolute;
        width: 15%;
        left: 90px;
        top: -8% !important;
}
.top3-matsu02 img {
	width: 100%;
}


}





@media screen and (max-width: 730px) {
.top3-kobokkuri02 {
        position: absolute;
        width: 17%;
        top: auto !important;
        bottom: 5px;
        right: 50px;
    }
	
    .top3-kobokkuri {
        position: absolute;
        width: 20%;
        top: auto;
        left: 30px;
        bottom: -50px;
    }
	
}


@media screen and (max-width: 570px) {
    .top3-kobokkuri02 {
        width: 90px;
        right: 20px;
    }
	
.top3-kobokkuri {
        position: absolute;
        width: 20%;
        top: auto;
        left: 50px;
        bottom: -110px;
    }
	
}



@media screen and (max-width: 500px) {
	
	
    .service-img {
        padding: 0 30px;
    }
	
.service-img img {
    height: 20em;
	}
	
/*
    .top3-kobokkuri {
        width: 80px;
    }
	
*/
.service-com a:link {
    padding: 30px;
	background-position: right 18px bottom 20px;
    background-size: 20px;
	}
	
    .top3-kobokkuri02 {
        bottom: 40px;
        width: 90px;
        right: 10px;
    }
	
    .top3-matsu01 {
        width: 100px;
	}

    .top3-matsu02 {
        width: 100px;
        left: 60px;
	}
	
}


@media screen and (max-width: 450px) {
	
.service-com a:link {
    padding: 27px;
	}
}

@media screen and (max-width: 710px) {
.top3-matsu01 {
        top: -60px !important;
    }
	
    .top3-matsu02 {
        top: -5% !important;
    }
	
}

@media screen and (max-width: 767px) {
.top3-inner {
        padding: 0px 0 80px 0;
    }
	
.service-com {
        width: calc(70%);
    }
	
}

@media screen and (max-width: 570px) {
.service-com {
        width: calc(77%);
    }
	
	
.service-01 .service-com {
	border-radius: 30px 0 0 30px;
    }
	
.service-02 .service-com {
        border-radius: 0 30px 30px 0;
    }
	
}

@media screen and (max-width: 600px) {
    .top3-inner {
        padding: 60px 0 80px 0;
    }
}


@media screen and (max-width: 480px) {
	
	
.top3-kobokkuri {
        position: absolute;
        width: 28%;
        top: auto;
        left: 30px;
        bottom: -110px;
    }
	
.service-com {
        width: calc(70%);
    }
}

.service-com h3 {
	font-size: 26px;
	color: #53b015;
	margin: 0 0 20px 0;
}



p.service-p{
	font-weight: bold;
    font-size: 83%;
    line-height: 210%;
}


@media screen and (max-width: 767px) {

p.service-p {
    font-size: 95%;
}
}


@media screen and (max-width: 500px) {
	
	
	
.service-com h3 {
        font-size: 150%;
	}
	
p.service-p {
    font-weight: normal;
    font-size: 90%;
    line-height: 180%;
}
}

@media screen and (max-width: 430px) {
    p.service-p {
        font-size: 85%;
    }
}


.top4 {
	width: 100%;
	background-color: #fdf7c9;
	border-radius: 40px 40px 0 0;
	background-image: url("../images/local_bg.png");
	background-repeat:no-repeat;
	background-position: center top;
	background-size: 100%;
}


.top4-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 30px;

}


	
@media screen and (max-width: 480px) {	
#home .top4 h2 {
    background-size: 140px;
	}
	
.top4-inner {
    padding: 50px 30px;
}
	
	}

@media screen and (max-width: 430px) {
.top4-inner {
    padding: 60px 30px;
}
}
	


#home .top4 h2 {
	background-image: url("../images/h2_bg.png");
	background-repeat:no-repeat;
	background-position: center bottom;
	background-size: 150px;
	padding: 30px 0;
    mix-blend-mode: multiply;

}

.top4 .sub-h2 {
	margin: 0 0 60px 0;
}


@media screen and (max-width: 430px) {
.top4 .sub-h2 {
    margin: 0 0 30px 0;
}
}

.top4-ul {
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.top4-ul li {
	width: 48%;
	border-radius: 40px;
	box-shadow: 0 0 4px #c5c5c5;;
	margin-bottom: 40px;
}


@media screen and (max-width: 600px) {
	
.top4-ul {
    padding: 0 13%;
}
	
.top4-ul li {
	width: 100%;
}

}
	
@media screen and (max-width: 480px) {
	
    .top4-ul {
        padding: 0;
    }
	}


.top4-ul li:nth-child(odd) {
	background-color: #f9eca2;
}
.top4-ul li:nth-child(even) {
	background-color: #e3f3bb;
}



.top4-ul li a:link {
	display: block;
	padding: 0 0;
	text-decoration: none;
	border-radius: 20px;

}


.top4-ul li a:hover {
	opacity: 0.85;
}


.top4-ul li .thumb {
	display: block;
}
.top4-ul li .thumb img {
	width: 100%;
	border-radius: 40px 40px 0 0;
	object-fit: cover;
    height: 15em;
	font-family: 'object-fit: cover;';
}


@media screen and (max-width: 720px) {
.top4-ul li .thumb img {
    height: 12em;
}
}



.top4-ul li .title {
	    display: block;
    padding: 20px 35px;
    background-image: url(../images/arrow_g.png);
    background-repeat: no-repeat;
    background-position: right 30px center;
    background-size: 25px;
    font-size: 200%;
    font-weight: bold;
    color: #603814;
}

.diary-wrap {
	width: 100%;
	background-color: #fff;
	border: 2px solid #fcd721;
	border-radius: 40px;
	padding: 30px 40px 60px 40px;
	margin-top: 60px;
}

#home .top4 .diary-wrap h2 {
	background-image: url("../images/kobokkuri2.gif"), url("../images/h2_bg.png");
	background-repeat: no-repeat, no-repeat;
	background-position: center top, center bottom;
	background-size: 180px, 170px;
	padding: 100px 0 30px 0;

}


	
	
@media screen and (max-width: 480px) {
#home .top4 .diary-wrap h2 {
    background-size: 180px, 140px;
}
}

.top4 .diary-wrap .sub-h2 {
	margin: 0 0 60px 0;
}


@media screen and (max-width: 430px) {
.top4 .diary-wrap .sub-h2 {
    margin: 0 0 30px 0;
}

	
}

@media screen and (max-width: 870px) {
	
.top4-ul li {
    border-radius: 20px;
	}
	
.top4-ul li .title {
    padding: 20px 22px;
        background-position: right 28px center;
        background-size: 22px;
        font-size: 150%;
}
	
	
.top4-ul li .thumb img {
    border-radius: 20px 20px 0 0;
	}
	
}



@media screen and (max-width: 720px) {
	
    .top4-ul li .title {
        padding: 10px 22px;
	}
	
}


.diary-ul {
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.diary-ul li {
	width: 31%;
	position: relative;
	margin-bottom: 50px;
}

@media screen and (max-width: 970px) {
.diary-ul li {
	width: 47%;

}
}

@media screen and (max-width: 630px) {
.diary-ul li {
	width: 100%;

}
}



.diary-ul li .thumb {
	display: block;
}
.diary-ul li .thumb img {
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	border-radius: 30px;
}
.diary-ul li .date {
	display: block;
    color: #53b015;
    margin-top: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.diary-ul li .title {
	display: block;
	line-height: 120%;
	font-weight: bold;
}



.list-category-mark {
	display: none;
	vertical-align: middle;
	position: absolute;
	width: 65px;
	height: 65px;
	top: -20px;
	left: -20px;
	text-align: center;

	border-radius: 50%;
	color: #fff;
	font-size: 70%;
	line-height: 120%;
	background-color: #53b015;
}
.list-category-mark div {
	display: table-cell;
	vertical-align: middle;
	width: 70px;
	height: 70px;
	padding: 7px;
}


.list-category-d_b {
	background-color: #53b015;
}
.list-category-d_nicchuu {
	background-color: #f2be1e;
}
.list-category-d_news {
	background-color: #754c24;
}


.top4-link {
	text-align: center;
}
.top4-link a:link {
	display: inline-block;
    width: 150px;
    text-align: left;
    padding: 7px 25px;
    border-radius: 50px;
    background-color: #754c24;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    background-image: url(../images/arrow_w.png);
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 7px;
}
.top4-link a:hover {
	opacity: 0.85;
}

.top4-link a:visited {
	color: #fff;
}




.top5 {
	width: 100%;
	background-color: #fff;
	background-image: url("../images/bg_news.jpg");
	background-repeat: repeat-x;
    background-position: center top;
    background-size: cover;
}


.top5-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 30px;

}


.top4-inner p.no-content,.top5-inner p.no-content{
	text-align: center;
	margin-bottom: 30px;
}

@media screen and (max-width: 500px) {
.top5-inner {
    padding: 50px 30px 60px 30px;
}
}


#home .top5 h2 {
	background-image: url("../images/h2_bg.png");
	background-repeat:no-repeat;
	background-position: center bottom;
	background-size: 170px;
	padding: 30px 0;

}

@media screen and (max-width: 480px) {
#home .top5 h2 {
    background-size: 130px;
}
}

.top5 .sub-h2 {
	margin: 0 0 20px 0;
}


@media screen and (max-width: 767px) {
.top5 .sub-h2 {
    margin: 0 0 5px 0;
}
}

.top5-ul {
	width: 100%;
	margin-bottom: 40px;
}

.top5-ul li {
	width: 100%;
    padding: 20px 15px;
    border-bottom: 1px dotted #c6b198;
    font-size: 115%;
    font-weight: bold;
}
.top5-ul li:last-child {
	border-bottom: none;
}


.top5-ul li .date {
	display: table-cell;
	width: 110px;
	color: #53b015;
}
.top5-ul li .title {
	display: table-cell;
	width: auto;
}


@media print, screen and (max-width: 810px) {
.top5-ul li .date {
	display: block;
	width: 100%;
}
.top5-ul li .title {
	display: block;
	width: 100%;
}

}


.top5-link {
	text-align: center;
}
.top5-link a:link {
	display: inline-block;
	width: 150px;
	text-align: left;
	padding: 7px 25px;
	border-radius: 50px;
	background-color: #f9eca2;
	font-weight: bold;
	text-decoration: none;
	background-image: url("../images/arrow_b.png");
	background-repeat: no-repeat;
	background-position: right 25px center;
	background-size: 7px;
}
.top5-link a:hover {
	opacity: 0.85;
}



.top6 {
	width: 100%;
	background-color: #fdf7c9;
    border-radius: 50px 50px 0 0;
}


.top6-inner {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 80px 30px;
}
@media only screen and (max-width: 430px) {
.top6-inner {
    padding: 10px 30px 60px 30px;
}
}

.top6  h2 {
	margin-bottom: 60px;
	text-align: center;
	font-size: 40px;
	font-weight: 800;
	color: #603814;
    margin-bottom: 10px;
}

.top6  h2.sns {
	background-image: none!important;
}



.top6  h2 img {
	width: 280px;
}

.top6-ul {
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.top6-ul li {
	width: 25%;
	border-right: 1px solid #c6b198;
}
.top6-ul li:last-child {
	border-right: none;
}

.top6-ul li a {
	display: block;
	padding: 10px 0;
	text-align: center;
}
.top6-ul li a img {
	width: 45px;
}



@media screen and (max-width: 500px) {
/*
.top6-inner {
    padding: 20px 30px 80px 30px;
}
*/
	

.top6  h2 img {
	width: 200px;
}
	
}

@media screen and (max-width: 430px) {
.top6-ul li a {
	padding: 8px 0;
}
.top6-ul li a img {
	width: 45px;
}
	


}


@media screen and (max-width: 767px) {

#home h2,.top6 h2 {
    font-size: 250%;
}
}


@media screen and (max-width: 480px) {
#home h2,.top6 h2{
        font-size: 220%;
    }
}


@media screen and (max-width: 430px) {
    #home h2,.top6 h2 {
        font-size: 180%;
		padding: 30px 0 20px 0;
    }
}



.top6-inner02-wrap {
	width: 100%;
	max-width: 850px;
	margin: 0 auto 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 3;
}


@media screen and (max-width: 810px) {
.top6-inner02-wrap {
    padding: 0 50px;
}
}

@media screen and (max-width: 600px) {
.top6-inner02-wrap {
        padding: 0 30px;
    }
}

.top6-inner02 {
	width: 100%;
	margin: 0 auto;
	padding: 60px 60px;
	background-color: #fff;
	border-radius: 50px;
	text-align: center;
	position: relative;
}
.top6-matsu01 {
	position: absolute;
	width: 20%;
	top: 40px;
	left: -9%;
}
.top6-matsu01 img {
	width: 100%;
}


.top6-inner02 h2 {
	background-image: url("../images/h2_bg.png");
	background-repeat:no-repeat;
	background-position: center bottom;
	background-size: 150px;
	padding: 30px 0;
	margin: 0 0 0 0;
}

@media screen and (max-width: 350px) {

#home .top6-inner02 h2 {
	letter-spacing: -1px;
}
}


.top6 .sub-h2 {
	margin: 0 0 40px 0;
}


@media screen and (max-width: 600px) {
.top6 .sub-h2 {
    margin: 0 0 15px 0;
}
}

.top6-logo-text {
	font-size: 26px;
	font-weight: 800;
	color: #603814;
	margin-bottom: 5px;
}

.top6-add {
	color: #603814;
}

.top6-tel {
	font-size: 40px;
	font-weight: 800;
	color: #53b015;
	line-height: 120%;
}
.top6-tel span {
	background-image: url(../images/tel.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 30px;
	padding-left: 40px;
}

.top6-tel span a{
	text-decoration: none;
    color: #53b015;
}

.top6-inner02 iframe {
	margin-top: 40px;
	width: 100%;
	height: 450px;
}


@media screen and (max-width: 790px) {
.top6-matsu01 {
	width: 20%;
	top: -6%;
	left: 20px;
}

}
@media screen and (max-width: 600px) {
.top6-inner02 {
	padding: 40px 35px;
}


}

@media screen and (max-width: 480px) {
.top6-logo-text {
    font-size: 20px;
}
}

@media screen and (max-width: 430px) {

.top6-matsu01 {
	width: 20%;
	top: -4%;
	left: 20px;
}
	
.top6-logo-text {
        font-size: 18px;
    }


.top6-logo-text {
	line-height: 130%;
}
.top6-logo-text span {
	display: block;
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 140%;
}

.top6-tel {
	font-size: 30px;
}
.top6-tel span {
	background-size: 25px;
	padding-left: 30px;
}
.top6-inner02 iframe {

	height: 350px;
}

}





#lay-footer {
	width: 100%;
	position: relative;
	background-color: #fcd721;
	z-index: 2;
	margin-top: -360px;
}

.f_kobokkuri {
	position: absolute;
	bottom: 15px;
	left: 2%;
	width: 200px;
}
.f_kobokkuri img {
	width: 200px;
}



.footer-inner {
	width: 100%;
	padding: 400px 0 80px 0;
	text-align: center;
	color: #603814;
}




.footer-link-ul {
	width: 100%;
	display: inline-flex;
	justify-content: center;;
	flex-wrap: wrap;
}
.footer-link-ul li {
	padding: 0 20px;
	font-weight: 700;
	border-right: 1px solid #603814;
}




.footer-link-ul li:last-child {
	border-right: none;
}


.footer-link-ul li a:link {
	text-decoration: none;
}


.footer-link-ul li a:hover {
	opacity: 0.85;
}


.footer-copy {
	    margin-top: 30px;
	font-size: 65%;
 	padding: 0 0px;
}


@media only screen and (max-width: 1040px) {
.f_kobokkuri {
	bottom: 15px;
	left: 0;
	width: 100%;
	text-align: center;
}
.f_kobokkuri img {
	width: 140px;
}
.footer-inner {
	padding: 400px 0 130px 0;

}

}


@media only screen and (max-width: 440px) {

.footer-link-ul {
	padding: 0 60px;
}



.footer-link-ul li {
	width: 100%;
	padding: 0 0;
	border-right: none;
	border-bottom: 1px dotted #603814;
}

.footer-link-ul li a:link {
	display: block;
	padding: 15px 0;
}

.footer-link-ul li:last-child {
	border-right: none;
	border-bottom: none;
}

}




/* コンテンツページ関係始まり
==================================================
*/


#lay-title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 5%;
    height: 320px;
    background-color: #53b015;
    position: relative;
    background-position: center;
    border-radius: 35px;
	background-size: cover;
    background-repeat: no-repeat;

}


@media only screen and (max-width: 620px) {
#lay-title-wrap {
    margin: 0 5%;
    height: 220px;
}
}


@media only screen and (max-width: 480px) {
#lay-title-wrap {
    height: 170px;
}
}


#lay-title-wrap .title-inner{
	position: absolute;
	width: auto;
	bottom: 0;
/*	left: calc(50% - 200px);*/

}

#lay-title-wrap .title-inner .title {
	position: relative;
	display: inline-block;
	width: auto;
	color: #603814;
	height: 95px;
	background-color: #fff;
	border-radius: 30px 30px 0 0;
	text-align: center;
	vertical-align: bottom;
	font-size: 230%;
	font-weight: 800;
	line-height: 1.2em;
	letter-spacing: 0;
	padding: 30px 60px;
	margin: -1px;

}
.title-image {
    text-align: center;
    position: absolute;
    width: auto;
    bottom: 0;
    top: -30%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
.title-image img {
	height: 110px;
}

@media only screen and (max-width: 550px) {
#lay-title-wrap .title-inner{
/*
	width: 280px;
	left: calc(50% - 140px);
*/

}
	


#lay-title-wrap .title-inner .title {
/*	width: 280px;*/
	font-size: 200%;
        padding: 30px 40px;
        height: 75px;
}
.title-image {
	top: -14%;
}
.title-image img {
	height: 70px;
}


}

@media only screen and (max-width: 450px) {

    #lay-title-wrap .title-inner .title {
        font-size: 180%;
        padding: 20px 25px 40px 25px;
        height: 65px;
    border-radius: 20px 20px 0 0;
    }
	
.title-image {
        top: -26%;
    }
	
}


@media only screen and (max-width: 430px) {
	    #lay-title-wrap .title-inner .title {
        font-size: 170%;
    }
	}

#lay-breadcrumbs-list .pankuze_list_items {
    width: 100%;
    width: 90%;
    margin: 0 5%;
    font-size: 90%;
    line-height: 1.8em;
    letter-spacing: 0.06em;
    margin: 30px auto 0;
	padding-bottom: 30px;
    border-bottom: 1px dotted #603814;
}

#lay-breadcrumbs-list .pankuze_list_items a{
	color: #53b015;
}

@media only screen and (max-width: 500px) {
#lay-breadcrumbs-list .pankuze_list_items {
    
    font-size: 70%;
    padding-bottom: 10px;
}
}


.desc-wrap{
	width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 40px;
    /* text-align: center; */

}

p.desc{
	font-weight: bold;
	line-height: 250%;
}


@media only screen and (max-width: 1350px) {
	.desc-wrap{
		padding-left: 40px;
        padding-right: 40px;
	}
}

@media only screen and (max-width: 430px) {
	.desc-wrap{
		padding-left: 30px;
        padding-right: 30px;
		margin-top: 30px;
	}
	
	
}


#lay-main {
		width: 100%;
		padding-bottom: 80px;
    }

@media only screen and (max-width: 480px) {
#lay-main {
    padding-bottom: 10px;
}
}

.lay-page,.page-side{

	max-width: 1100px;
	margin: 50px auto;
}

.page-side{
	display: none;
}

.lay-page-title{
	text-align: center;
}

#lay-main > h1:has(+ .com-date-txt), #lay-main h1 {
	margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
    padding: 18px 40px;
    font-size: 200%;
    /* position: relative; */
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    background-color: #53b015;
	line-height: 160%;
}

/*
#lay-main h1:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 50px);
    width: 100px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #fcd721;
}
*/

        
@media screen and (max-width: 1350px) {
	
.lay-page{
	padding-left: 30px;
	padding-right: 30px;
	}
	
}

.cat-img-wrap {
	position: relative;

}

.cat-img img {
	vertical-align: bottom;
	width: 100%;
	height: 145px;
	object-fit: cover;
	font-family: 'object-fit: contain;';
	object-position: center;
}


@media screen and (max-width: 800px) {
.cat-img img {
    height: 140px;
}
}


@media screen and (max-width: 500px) {
.cat-img img {
    height: 120px;
}
	
	
#lay-main > h1:has(+ .com-date-txt), #lay-main h1 {
        font-size: 140%;
        padding: 12px 12px;
        border-radius: 20px;
}
	
	
#lay-main h1:before {
    height: 3px;
}
	
}



.cat-img-con {
	position: absolute;
	width: 100%;
	top: 28%;
	text-align: center;
	font-size: 220%;
	letter-spacing: 4px;
	color: #53b015;
	font-weight: 900;
	line-height: 1;
	margin: 0;
	z-index: 3;
}


@media screen and (max-width: 481px) {
.cat-img-con {
	font-size: 200%;
    letter-spacing: 1px;
}
}


@media screen and (max-width: 370px) {
.cat-img-con {
    font-size: 190%;
    letter-spacing: 1px;
}
}


.cat-img-con span.sub-cat-img-con {
	    display: block;
    font-size: 50%;
    color: #ea6000;
    padding-top: 15px;
    letter-spacing: 0px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}


#home #breadCrumb {
	display: none;
}

#breadCrumb {
	width: 100%;
	font-size: 100%;
	margin-bottom: 15px;
}

#breadCrumb a {
	color: #53b015;
}

#breadCrumb .inner {
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
}


#breadCrumb p {
	margin-left: 0px;

}




.scrText {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}



.print_wrp {
	display: none;
	text-align: right;
	padding-top: 8px;
	margin-bottom: -32px;
}

.contentBodyWrapper {
	padding: 0px;
}

.contentListWrapper {
	padding: 0px;
}

#content-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 0 25px;
}

#content-inner:after {
	content: "";
	display: block;
	clear: both;
}

#main {
	width: 73%;
	float: left;
}

#main2 {
	width: 100%;

}


.contentBody {
	width: 100%;
    font-size: 110%;
	margin-right: auto;
	margin-left: auto;
	clear: both;
	line-height: 180%;
	min-height: 1em;
}

.contentBody a:link,.contentBody a:visited{
    color: #53b015;
}


.contentBody img {
    max-width: auto;
	border-radius: 20px;
}


.sect-category-list{
	margin-top: 20px;
}

.pageList {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}


.pageList .pageList-item,
.pageList .pagelist-item {
	width: 46%;
    margin: 1.5% 2%;
    font-size: 110%;
    font-weight: bold;
    display: block;
    /* background-color: #fcd721; */
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border-radius: 13px;
    padding-bottom: 0;
    background-color: #f9eca2;
    box-shadow: 0 0 6px #b2b2b2;

}


.pageList .pageList-item a,
.pageList .pagelist-item a {
	text-decoration: none;
	display: block;
	padding: 30px;
}

.pageList .pageList-item:hover,
.pageList .pagelist-item:hover {
	opacity: 0.8;
}

.pageList .pageList-item apan.date,
.pageList .pagelist-item span.date {
	display: block;
    font-size: 87.5%;
    color: #53b015;
    padding: 0;
    text-align: right;
    margin-top: 5px;
}

.pageList .pageList-item span.thumb,
.pageList .pagelist-item span.thumb {
	display: block;
	width: 100%;
	margin-bottom: 25px;
}

.pageList .pageList-item .thumb a,
.pageList .pagelist-item .thumb a {
	display: block;
}

.pageList .pageList-item .thumb img,
.pageList .pagelist-item .thumb img {
	transition: 0.3s;
	vertical-align: bottom;
	border-radius: 10px;
	height: 290px;
    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

@media only screen and (max-width: 1000px) {
.pageList .pageList-item .thumb img, .pageList .pagelist-item .thumb img {
    height: 200px;
}
}

@media only screen and (max-width: 850px) {
.pageList .pageList-item .thumb img, .pageList .pagelist-item .thumb img {
    height: 170px;
}
}

@media only screen and (max-width: 700px) {
.pageList .pageList-item .thumb img, .pageList .pagelist-item .thumb img {
    height: 320px;
}
}


@media only screen and (max-width: 600px) {
.pageList .pageList-item .thumb img, .pageList .pagelist-item .thumb img {
    height: 250px;
}
}

@media only screen and (max-width: 500px) {
.pageList .pageList-item .thumb img, .pageList .pagelist-item .thumb img {
    height: 200px;
}
}

@media only screen and (max-width: 420px) {
.pageList .pageList-item .thumb img, .pageList .pagelist-item .thumb img {
    height: 170px;
}
}

.pageList .pageList-item .title,
.pageList .pagelist-item .title {
	display: block;
    font-size: 150%;
    line-height: 160%;
    text-align: left;
    padding: 0 0 0 32px;
    background-image: url(../images/arrow_g.png);
    background-repeat: no-repeat;
    background-position: left top 10px;
    background-size: 22px;
    letter-spacing: 0;
}



@media screen and (max-width: 700px) {
.pageList .pageList-item, .pageList .pagelist-item {
    width: 100%;
    margin: 15px 0;
}
	
.pageList .pageList-item, .pageList .pagelist-item {
    border-radius: 15px;
}
	
}

.pageList .pageList-item .title a{
	font-size: 130%;
	text-decoration: none;
	font-weight: bold;
	display: block;
}

.pageList .pageList-item .title a:hover,
.pageList .pagelist-item .title a:hover {
	text-decoration: underline;
}

.pageList .pageList-item .description,
.pageList .pagelist-item .description {
	margin-top: 15px;
    padding: 20px 0 0 0;
    display: block;
    font-size: 77%;
    line-height: 200%;
    font-weight: 500;
    color: #603814;
    border-top: 2px dotted #fcd721;
}

.pageList .pageList-item p,
.pageList .pagelist-item p {
	text-align: right;
	padding: 0 10px 5px 0;
	font-size: 90%;
}



.pagination,
.contentBodyWrapper .pagination {
	text-align: center;
	margin-top: 45px;
}

.pagination a:link,
.contentBodyWrapper .pagination a {
	background-color: #53b015;
	color: #fff;
	text-decoration: none;
}

.pagination span.current,
.pagination a:link,
.contentBodyWrapper .pagination a {
	border: 1px solid #53b015;
	padding: 5px 12px;
	text-align: center;
	display: inline-block;
	min-width: 40px;
    border-radius: 8px;
}

.pagination a:hover,
.contentBodyWrapper .pagination a:hover {
	background-color: #fff;
	color: #53b015;
}

.pagination span.current {
	color: #53b015;
}

li.pagelist-item.current-category_fascinating-news-item span.thumb {
	display: none;
}

@media screen and (max-width: 480px) {

.pageList .pageList-item .title, .pageList .pagelist-item .title {
    font-size: 130%;
}
}


/*　検索一覧ページ
*********************************************/
.contentBodyWrapper .search-area ul li {
	margin-bottom: 10px;
}

.contentBodyWrapper .search-ul li .thumb,
.contentBodyWrapper .search-ul li .description,
.contentBodyWrapper .search-ul li .date {
	display: none;
}




/*サイトマップ初め
================================================== */



.sitemap {
	margin-left: 0px;
}

/********** 共通 **********/
.sitemap .sitemap-list {
	margin-top: 2%;
}
.sitemap .sitemap-list {
	display: block;
}
.sitemap .sitemap-list li {
	display: block;
}
.sitemap .sitemap-list li .sitemap-list-item-span {
		display: block;
line-height: 1.8em;
	letter-spacing: 0.1em;
	transition: 0.3s;
}
.sitemap .sitemap-list li .sitemap-list-item-span a {
	display: block;
	text-decoration: none;
	color: inherit;
}
.sitemap .sitemap-list li .sitemap-list-item-span a:hover {
	color: #53b015;
}
/********** 第1階層 **********/
.sitemap .sm-depth1-list {
	margin-top: 0;
}
.sitemap .sm-depth1-list > li {
	padding: 0 0 0;
	margin: 0 0 4%;
}
.sitemap .sm-depth1-list > li:last-child {
	margin-bottom: 0;
}
.sitemap .sm-depth1-list > li > .sitemap-list-item-span {
		display: block;
	font-size: 115%;
	font-weight: bold;
	border-left: 10px solid #53b015;
padding: 0.5em 1.0em;
    margin: 1.5em 0;
}
.sitemap .sm-depth1-list > li > .sitemap-list-item-span > a {

}
/* 第2階層 */
.sitemap .sm-depth2-list {

}
.sitemap .sm-depth2-list > li {
	margin: 0 0 4%;
}
.sitemap .sm-depth2-list > li:last-child {
	margin-bottom: 0;
}
.sitemap .sm-depth2-list > li > .sitemap-list-item-span {
	display: block;
	color: #000;
	font-size: 115%;
	font-weight: bold;
	padding: 0.5em 1.0em;
	background-color: #d8ece9;
}
.sitemap .sm-depth2-list > li > .sitemap-list-item-span > a {

}
/* 第3階層 */
.sitemap .sm-depth3-list {

}
.sitemap .sm-depth3-list > li {
	margin: 0 0 4%;
}
.sitemap .sm-depth3-list > li:last-child {
	margin-bottom: 0;
}
.sitemap .sm-depth3-list > li > .sitemap-list-item-span {
	display: block;
	color: #000;
	font-size: 110%;
	font-weight: bold;
	border-bottom: 1px solid #fcd721;
	padding: 0 1.0em 0.5em;
}
.sitemap .sm-depth3-list > li > .sitemap-list-item-span > a {

}
/* 第4階層 */
.sitemap .sm-depth4-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
.sitemap .sm-depth4-list > li {
	width: calc(25% - (40px * 3 / 4));
	margin: 0 0 4%;
}
@media screen and (max-width:1000px) {
	.sitemap .sm-depth4-list > li {
		width: calc((100% / 3) - (30px * 2 / 3));
	}
}
@media screen and (max-width:860px) {
	.sitemap .sm-depth4-list > li {
		width: calc(50% - 15px);
	}
}
@media screen and (max-width:500px) {
	.sitemap .sm-depth4-list > li {
		width: 100%;
	}
}
.sitemap .sm-depth4-list > li:last-child {
	margin-bottom: 0;
}
.sitemap .sm-depth4-list > li > .sitemap-list-item-span {
	display: block;
	color: #fff;
	font-size: 105%;
	font-weight: bold;
	background-color: #53b015;
	padding: 0.25em 0.5em;
}
.sitemap .sm-depth4-list > li > .sitemap-list-item-span:hover {
	opacity: 0.7;
}
.sitemap .sm-depth4-list > li > .sitemap-list-item-span > a {

}
.sitemap .sm-depth4-list > li > .sitemap-list-item-span > a:hover {
	color: #fff;
}
/* 第5階層 */
.sitemap .sm-depth5-list {
	
}
.sitemap .sm-depth5-list > li {
	position: relative;
	padding: 0 0 0 1.5em;
	margin: 0 0 2%;
}
.sitemap .sm-depth5-list > li::before {
	content: "";
	position: absolute;
	top: 0.9em;
	left: 0.25em;
	width: 1.0em;
	height: 1.8em;
	width: 0.5em;
	height: 2px;
	background-color: #fcd721;
}
.sitemap .sm-depth5-list > li:last-child {
	margin-bottom: 0;
}
.sitemap .sm-depth5-list > li > .sitemap-list-item-span {
	display: block;
	font-size: 100%;
	font-weight: 400;
}
.sitemap .sm-depth5-list > li > .sitemap-list-item-span > a {

}
.sitemap .sm-depth5-list > li > .sitemap-list-item-span > a:hover {
	text-decoration: underline;
}
/* 第6階層以降 */
.sitemap .sm-depth5-list .sitemap-list  {
	margin-top: 1%;
}
.sitemap .sm-depth5-list .sitemap-list > li {
	position: relative;
	padding: 0 0 0 1.0em;
}
.sitemap .sm-depth5-list .sitemap-list > li::before {
	position: absolute;
	content: "・";
	color: #53b015;
	width: 1.0em;
	height: auto;
	top: 0;
	left: 0;
	line-height: inherit;
}
.sitemap .sm-depth5-list .sitemap-list > li > .sitemap-list-item-span > a {
}
.sitemap .sm-depth5-list .sitemap-list > li > .sitemap-list-item-span > a:hover {
	text-decoration: underline;
}
.isEmpty {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}
.isEmpty::before,
.isEmpty::after {
	content: none !important;
}
/*サイトマップ終わり
================================================== */


/*　検索一覧ページ
================================================== */

/*
.search-result h2{
	padding: 7px 3%;
	display: block;
	margin: 30px 0 10px 0;
	border-left: 10px solid #78242e;
	background-color: #f5f5f5;
}
*/

.search-result h2 {
	margin: 80px 0px 30px 0;
	padding: 10px 15px;
	border-left: 14px solid #53b015;
	font-size: 155%;
	line-height: 160%;
	background-color: #f7f7f7;
}










.search-result ul li {
	display: block;
	line-height: 120%;
	margin: 12px 0;
	background-image: url(../images/icon.png);
	background-repeat: no-repeat;
	background-position: 0px top;
	background-size: 24px;
	padding: 0px 0px 0px 30px;
	text-align: left;
	font-size: 1.15em;
}

@media screen and (max-width: 767px) {
	.search-result ul li {
		background-size: 9px;
		padding: 0px 0px 0px 22px;
	}
}


.search-result ul li .thumb,
.search-result ul li .description,
.search-result ul li .date {
	display: none;
}

.search-result p {
	margin-bottom: 20px;
}

/*　検索一覧ページ終わり
================================================== */


/*　検索ページ
================================================== */
.input_items_wrap {
	margin: 10px 0;
}

.input_items_wrap .input_item {
	width: 70%;
	height: 32px;
	max-width: 500px;
	padding: 0 5px;
	background-color: #e4e4e4;
}

.input_items_wrap .submit_btn {
	height: 32px;
	padding-left: 3px;
}

/*　検索ページ終わり
================================================== */

/*コンテンツページ関係終わり
================================================== */





/* レスポンシブ対応
==================================================
==================================================
==================================================
================================================== */



@media screen and (min-width: 811px) {
	.sp-header {
		display: none;
	}


}




/*メニュー関係
---------------------------------------------------------------*/




.inner {
	width: 960px;
	margin: 0 auto;
}

.sp-header {
	width: 100%;
	height: 80px;
	vertical-align: middle;
/*	position: fixed;*/
	z-index: 1100;
/*    backdrop-filter: blur(4px);*/
}



.sp-header .inner {
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.sp-header .inner .sp-logo {
	width: 100%;
	padding: 10px 0 0 10px;
}



.sp-header .inner .sp-logo img {
	height: 75px;
/*    position: absolute;
    z-index: 999;
*/
}


@media only screen and (max-width: 810px) {
.sp-header .inner .sp-logo img {
    height: 65px;
/*
        position: absolute;
        z-index: 99999;
*/
}
}

.sp-header nav {
	margin-right: -16px;
}




#main_img {
	max-width: 960px;
	margin: 0 auto;
}

#nav_toggle {
	display: none;
}

.change_btn {
	color: #fff;
	display: block;
	width: 100%;
	text-decoration: none;
	border: 1px solid #fff;
	text-align: center;
	padding: 25px 0;
	font-size: 20px;
	margin-top: 40px;
}


header {}

h1 {}

.inner {
	width: 90%;
}

#main_img {
	width: 100%;
}

.change_btn {
	width: 90%;
	margin: 32px auto;
}


.sp-tel {
	width: 60px;
	height: 70px;
	position: fixed;
	top: 60px;
	right: 0;
	z-index: 49;
}

.sp-tel a:link {
	display: block;
    height: 60px;
    background-color: #fcd721;
    text-decoration: none !important;
    text-align: center;
    padding-top: 38px;
    background-image: url(../images/tel.png);
    background-repeat: no-repeat;
    background-position: center top 9px;
    background-size: 18px;
    font-size: 11px;
    font-weight: bold;
    padding-top: 34px;
    border-radius: 0 0 0 8px;
}

.sp_search a:visited {

}



/*メニュー部分*/
.sp-header nav {
	    display: none;
    position: absolute;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    z-index: 50;
    overflow: scroll;
    background-color: #fdf7c9;
    background-image: url(../images/local_bg.png), url(../images/sp_h_bg.gif);
    background-repeat: no-repeat,no-repeat;
    background-position: top right,bottom center;
    background-size: 210%,240px;
}




.nav-ul {
	display: flex;
    align-items: center;
    display: block;
    width: 100%;
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 0px;
    left: 0px;
    margin: auto;
    padding: 30px;

}

.nav-li {
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #603814;
	padding-left: 5px;
	padding-right: 5px;
}


.nav-li:last-child{
	border-bottom: none;
}


.nav-li a:link {
	text-decoration: none;
	font-weight: bold;

}

.nav-li a:visited {

}




.nav-li a span {
	display: block;
	font-size: 130%;
	background-image: url(../images/menu_icon.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 20px;
/*	padding-left: 10px;*/
}


.kaso-ul {
	display: inline-flex;
	width: 100%;
	flex-wrap: wrap;
	margin-top: 10px;
	padding: 0 10px;
}

.kaso-ul li {
	width: 100%;
	font-size: 14px;

}


.kaso-ul li .title{
	font-weight: bold;
}

.kaso-ul li .title a{
	font-weight: bold;
}

/*
@media screen and (max-width: 500px) {
.kaso-ul li {
    width: 50%;
	font-size: 12px;
}
}
*/




.kaso-ul li::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 2px;
	margin-bottom: 2px;
	margin-right: 10px;
	background: #fcd721;
	/* border-radius: 2px; */
	vertical-align: middle;
}

.kaso-ul li a:link {
    font-weight: normal;
    color: #603814;
}


.kaso-ul li a:visited {
	 color: #603814;
}



/*開閉ボタン*/
#nav_toggle {
	display: block;
    width: 60px;
    height: 60px;
    background-color: #53b015;
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 0px;
    z-index: 100;
    padding: 0 11px;
    border-radius: 0;
}

#nav_toggle div {
	position: relative;
}

#nav_toggle span {
	display: block;
	height: 2px;
	background: #fff;
	position: absolute;
	width: 100%;
	left: 0;
	transition: 0.5s ease-in-out;
}

#nav_toggle span:nth-child(1) {
	top: 10px;
}

#nav_toggle span:nth-child(2) {
	top: 20px;
}

#nav_toggle span:nth-child(3) {
	top: 30px;
}

#nav_toggle p {
	position: absolute;
    width: 100%;
    color: #fff;
    top: 33px;
    left: 0;
    font-size: 12px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: -1px;
    font-weight: bold;
    text-align: center;
}

/*開閉ボタンopen時*/
.open #nav_toggle {
	background-color: #53b015;
    border-radius: 0 0 0 8px;
}

.open #nav_toggle span {
	background: #fff;
}

.open #nav_toggle span:nth-child(1) {
	top: 20px;
	transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}

.open #nav_toggle span:nth-child(3) {
	top: 20px;
	transform: rotate(-135deg);
}


@media screen and (max-width: 480px) {
/*

.sp-header nav {
    background-position: left 10px top 16px, left top;
    background-size: 250px, cover;
}
*/
}



@media screen and (max-width: 810px) {
.headerInner-r {
    width: auto;
        text-align: center;
        vertical-align: middle;
        width: 100%;
        position: absolute;
        top: 71px;
        z-index: 9999;
        background-color: #fce9e0;
        padding: 25px 20px 20px 20px;
}
}


/*メニュー関係終わり
---------------------------------------------------------------*/



@media print {
	body {
		width: 1200px;
		transform: scale(0.8);
		-moz-transform: scale(0.8);
		-webkit-transform: scale(0.8);
		transform-origin: 0 0;
	}

	#scrollTop {
		display: none;
	}
}


/* books
---------------------------------------------------------------*/
.books__inner {
	display: grid;
	grid-template-columns: 10% auto 10%;
	gap: 20px;
}

.books__info {
	display: flex;
	flex-direction: column;
}

@media screen and (max-width: 811px) {
	.books__inner {
		display: grid;
		grid-template-columns: auto 50px;
		grid-template-rows: auto auto;
		gap: 20px;
	}

	.books__image {
		grid-column-start: 1;
		grid-column-end: 3;
		text-align: center;
	}

	.books__image img {
		max-width: 30%;
	}
}

/* tbl-form
---------------------------------------------------------------*/
.tbl-form .required {
	background-color: #c9171e;
	color: #fff;
	padding: 3px 5px;
	font-size: 85%;
	margin-left: 10px;
	border-radius: 3px;
}

.tbl-form th {
	width: 200px;
}

.tbl-form input:not([type="radio"]),
.tbl-form textarea {
	width: 100%;
}

.tbl-form textarea {
	height: 200px;
}

.tbl-form input.input100 {
	width: 100%;
}

.tbl-form input.input50 {
	width: 50%;
	min-width: 400px;
}

.tbl-form input.input25 {
	width: 25%;
	min-width: 200px;
}

.tbl-form textarea.input-textarea {
	width: 100%;
	height: 200px;
}

@media screen and (max-width: 811px) {

	.tbl-form th,
	.tbl-form td {
		display: block;
		width: 100%;
	}

	.tbl-form .input50,
	.tbl-form .input25 {
		width: 100%;
		min-width: 100%;
	}
}

@media screen and (max-width: 810px) {


	.hideAnchor {
		display: block;
		height: 0px;
		height: 1px;
		overflow: hidden;
		text-indent: -9999px;
		margin-top: -60px;
		padding-bottom: 60px;
	}


	body,
	html {
		-webkit-text-size-adjust: 100%;

	}



	select,
	textarea,
	input[type=text],
	input[type=email],
	input[type=date],
	input[type=tel] {
		font-size: 16px;
		/*  transform: scale(0.8);*/
	}




	.scrollTable {
		overflow-x: auto;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
	}



	#scrollTop img {
		width: 50px;
	}




	#pc-header {
		display: none;
	}

	#globalNav {
		display: none;
	}


}




@media screen and (max-width: 480px) {
#scrollTop {
    right: 10px;
    margin-bottom: 10px;
}
	
#scrollTop img {
        width: 35px;
    }
	
}


/* sect-sitemap
============================================================ */
.sect-sitemap > .sitemap-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .sect-sitemap > .sitemap-list > li {
    width: calc((100% / 3) - (40px * 2 / 3));
    margin: 80px 0 0;
  }
  .sect-sitemap > .sitemap-list > li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .sect-sitemap > .sitemap-list > li {
    width: calc(50% - 20px);
    margin-top: 60px;
  }
  .sect-sitemap > .sitemap-list > li:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 599px) {
  .sect-sitemap > .sitemap-list > li {
    width: 100%;
    margin-top: 50px;
  }
  .sect-sitemap > .sitemap-list > li:first-child {
    margin-top: 0;
  }
}
.sect-sitemap > .sitemap-list > li > span {
  display: block;
  color: #603814;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.06em;
  margin-bottom: 13px;
}
.sect-sitemap > .sitemap-list > li > span > a {
  position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-decoration: none;
    padding: 0.5em 2em 0.5em 0.3em;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    /* background-color: #fff6f0; */
    border-bottom: 2px dotted #603814;
}
.sect-sitemap > .sitemap-list > li > span > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: 0.4em solid transparent;
  border-left: 0.6em solid #fcd721;
  border-right: none;
  top: 50%;
  right: 0.75em;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.sect-sitemap > .sitemap-list > li > span > a:hover {
  opacity: 1 !important;
 color: #53b015;
}
.sect-sitemap > .sitemap-list > li ul {
  margin-top: 1em;
  padding: 0 0 0 0.5em;
}
.sect-sitemap > .sitemap-list > li ul > li {
  margin-bottom: 0.25em;
}
.sect-sitemap > .sitemap-list > li ul > li:last-child {
  margin-bottom: 0;
}
.sect-sitemap > .sitemap-list > li ul > li > span {
  display: block;
}
.sect-sitemap > .sitemap-list > li ul > li > span > a {
  position: relative;
  display: block;
  padding: 0 0 0 1.25em;
  line-height: 1.8em;
}
.sect-sitemap > .sitemap-list > li ul > li > span > a::before {
  content: "";
  position: absolute;
  display: block;
  font-size: inherit;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  left: 0;
  border: 2px solid #cfd641;
  border-bottom: none;
  border-left: none;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sect-sitemap > .sitemap-list > li ul > li > span > a:hover {
  opacity: 1 !important;
}



#lay-preview-mode-notice {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 9999;
    width: 100%;
    max-width: 580px;
    padding: 10px 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #f80000;
    border-radius: 0 0 5px 5px;
    margin: 0 0 -26px 30px;
    text-align: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#lay-preview-mode-notice p {
    font-size: 14px;
    font-weight: bold;
}

#lay-preview-mode-notice a {
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

#lay-preview-mode-notice a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    margin-bottom: 1px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (min-width: 1025px) {
    html .less-w811, html .less-w481, .contentBody .less-w811, .contentBody .less-w481 {
        display: none !important;
    }
}





	/*　カレンダー
==================================================*/

	.calendar {}

	.sectionHeader {
		margin-bottom: 20px;
	}


.sect-calendar {
	width: 100%;
	padding: 0 30px 0 30px;
}



.calendar-nav {
	text-align: center;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
.calendar-nav {
    margin-top: 40px;
}
}


.now-month {
	font-size: 230%;
    padding: 0 25px;
    color: #53b015;
}

.prev-month{
	font-weight: bold;
    background-image: url(../images/cal_icon_02.png);
    background-repeat: no-repeat;
    background-position: left 0px center;
    background-size: 20px;
    padding: 0px 0px 0px 25px;
}

.next-month{
	font-weight: bold;
    background-image: url(../images/cal_icon.png);
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 20px;
    padding: 0px 25px 0px 0px;
}


.calendar-category {
	margin-bottom: 10px;
	display: none;
}

	.cal_category_select {}



	.calendar table {
		width: 100%;
	}

	.calendar .colgroup1 {
		width: auto;
	}


	.calendar table caption {
		font-size: 140%;
		color: #5f3919;
		font-weight: bold;
		padding-bottom: 5px;
	}

	.calendar thead {
		background-color: #ffffbb;
	}

	.calendar table th,
	.calendar table td {
		border: 1px solid #575757;
		height: auto;

	}

	.week-wrap {
		background-color: #f9f9f9;
		
}
.one_calendar .cal_head, .one_calendar .cal_day {
    width: calc(100% / 7);
    border: 1px solid #fff;
    background-color: #f1f1f1;
}

	.calendar .day,
	.calendar .week,
	.calendar .event {
		vertical-align: middle;
	}

	.calendar .sunday {
		background-color: #ffefdf;

	}

	.calendar .saturday {
		background-color: #e3f5f9;
	}

	.calendar table td a {}

	.calendar_item {
		padding: 2px 4px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.one-calendar ul {
    margin-left: 5px;
}

	.one-calendar ul li{
    display: block;
    font-weight: bold;
    background-image: url(../images/cal_icon.png);
    background-repeat: no-repeat;
    background-position: left 0px center;
    background-size: 20px;
    padding: 10px 0px 10px 20px;
}


	.calendar_item span {
		display: block;
	}

	.calendar_item .title {
		padding: 0 3px;
		margin-right: 10px;
	}

.calendar_item .time{
	font-size: 80%;
    color: #ff7c00;
    letter-spacing: 0;
}

.calendar_item .title a{
/*	pointer-events: none;*/
/*	text-decoration: none;*/
}

	.calendar table .category_title {
		display: none;
	}

	.calendar table .category {
		background-color: #ad6ad1;
		color: #fff;
		font-size: 80%;
		padding: 2px 5px;
	}

	.calendar table .calendar_item .cate1 {
		background-color: #d17bfe;
	}

	.calendar table .calendar_item .cate2 {
		background-color: #48D1CC;
	}

	.calendar table .calendar_item .cate3 {
		background-color: #67cafe;
	}

	.calendar table .calendar_item .cate4 {
		background-color: #33d867;
	}

	.calendar table .calendar_item .category {}


	.calendar .cal_day_tbl {
		margin-bottom: 10px;
	}




	.calendar .cal_day_tbl th,
	.calendar .cal_day_tbl td {
		padding: 5px 10px;
	}

	.calendar .cal_day_tbl th {
		vertical-align: middle;
		background-color: #eee;
		width: auto;
	}




.cal_category_select label {
	display: none;
}


.sect-calendar .one-calendar {
	border: 2px solid #575757;
	border-bottom: 1px solid #575757;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}



.week-wrap.header {
	display: none;
}

.cal-day {
	border-bottom: 1px solid #575757;
	position: relative;
}
.calendar .cal-day.holiday {
	background-color: #ffefdf;
}


.cal-day.blank {
	display: none;
}



.cal-day-head {
	display: table-cell;
	width: 150px;
	font-weight: bold;
	padding: 4%;
	vertical-align: middle;
	border-right: 1px solid #575757;
}
.cal-day-head .day {
	display: block;
    /* width: 30px; */
    text-align: center;
}
.cal-day-head .wday {
	display: block;
    /* width: 30px; */
    text-align: center;
}

.cal-day.holiday .cal-day-head .wday,
.cal-day.holiday .cal-day-head .day,
.cal-day.sunday .cal-day-head .wday,
.cal-day.sunday .cal-day-head .day{
    color: #53b015;
}


.cal-day.saturday .cal-day-head .wday,
.cal-day.saturday .cal-day-head .day{
    color: #368fa3;
}

.cal-day-head .wday::before {
	content: '(';
}
.cal-day-head .wday::after {
	content: ')';
}


.cal-day-head .label {
	color: #53b015;
	    text-align: center;
	    display: block;
	    font-size: 80%;
}



.cal-day ul {
	display: table-cell;
	width: auto;
	    padding: 20px;
	    vertical-align: middle;
}

.cal-day.holiday ul li:first-child {
}



#lay-title-wrap  h1{
	margin-bottom: 3%;
}

.sect-calendar-info table {
	width: 100%;
	margin-bottom: 15px;
}

.sect-calendar-info table,
.sect-calendar-info td,
.sect-calendar-info th {
    border-collapse: collapse;
    border:1px solid #575757;
}

.sect-calendar-info td,
.sect-calendar-info th {
    padding: 5px;
}

.sect-calendar-info th {
    width: 130px;
    background-color: #fff6f0;
}

.sect-calendar-info td {
	background-color: #fff;
}

@media screen and (max-width: 767px) {
.sect-calendar-info tr,
.sect-calendar-info td,
.sect-calendar-info th {
    display: block;
}
.sect-calendar-info td,
.sect-calendar-info th {
    width: 100%;
}


}


@media screen and (max-width: 600px) {

.cal-day-head {
    width: 90px;
    font-size: 85%;
}
	
.cal-day-head .label {
    line-height: 150%;
    font-size: 70%;
}
	
.cal-day-head .day {
    line-height: 100%;
}
	
.one-calendar ul li {
    display: block;
    font-weight: bold;
    background-image: url(../images/cal_icon.png);
    background-repeat: no-repeat;
    background-position: 0px 15px;
    background-size: 13px;
    padding: 10px 0px 10px 13px;
    font-size: 80%;
    line-height: 150%;
}
	
}



/* sect-search-results
============================================================ */

.com-section.sect-search-results {
	width: 100%;
	max-width: 1100px;
	margin: 60px auto !important;
	padding: 0 30px;
}

.search-result-list li .thumb {
	display: none;
}


/* 事業内容 商品紹介
============================================================ */


.com-section-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px;
	background-color: #fff;
	border-radius: 35px;
	border: 2px solid #fcd721;
    font-size: 110%;
	margin-bottom: 40px;
}

.w-comment{
/*	margin-bottom: 50px;*/
}

@media screen and (max-width: 700px) {
.com-section-inner {
    padding: 0;
    background-color: transparent;
    border: none;
}
}

/*
@media screen and (max-width: 500px) {
.com-section-inner {
	padding: 50px 15px;
}
*/


}

.w-comment {
	margin-bottom: 30px;
}


.slick-box-wrap.merchandise-slick {
	margin-bottom: 60px;
}

.com-section-inner .slick-box {
	width: 100%;
	padding: 0 50px 0;
  margin: 0 auto;
}

.slickArrow {
    width: 30px!important;
}




.w_sagyou .slick-box {
		max-width: 470px;
    margin: 0 auto;
}


.com-section-inner .slick-box li .slick-imgWrap {
	position: relative;
	border-radius: 30px;
	width: 100%;
	height: 0;
	padding-bottom: 62%;
	overflow: hidden;
}

.com-section-inner .slick-box li .slick-imgWrap img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	object-fit: cover;
}
.com-section-inner .slick-box li p {
	text-align: center;
	padding: 25px 0 5px 0;
}


.com-section-inner.custom h2 {
	text-align: center;
	margin: 80px 0 40px;
	font-size: 30px;
	font-weight: 800;
	color: #603814;
	position: relative;
}
.com-section-inner.custom h2.merchandise-h2 {
	margin: 80px 0 60px;
}


.com-section-inner.custom h2::after {
	content: '';
	width: 80px;
	height: 4px;
	display: inline-block;
	background-color: #fcd721;
	position: absolute;
	bottom: -20px;
	left: calc(50% - 40px)
}




.work-list-wrap {
	width: 100%;
	display: block;
	flex-wrap: wrap;
	justify-content: space-between;
}
.work-list {
	width: 100%;
/*	margin: 0 0 50px;*/
}
@media screen and (max-width: 810px) {
.work-list {
	width: 100%;
}
}

.com-section-inner .work-list h3 {
	margin: 60px 0 30px 0;
    font-size: 24px;
    font-weight: 800;
    color: #53b015;
    text-align: center;
    background-color: #fdf7c9;
    border-radius: 10px;
    padding: 12px;
}
.com-section-inner .work-list .w_comment {
	margin: 0;
	padding: 0 15px;
}

@media screen and (max-width: 430px) {
.com-section-inner .work-list .w_comment {
    padding: 0;
}
}

.w_comment h3{
	margin: 0 0 20px 0!important;
    font-size: 24px;
    color: #53b015!important;
    text-align: left!important;
    background-color: transparent!important;
    padding: 7px 0!important;
}


@media screen and (max-width: 570px) {
	
.slickArrow {
    width: 20px!important;
}
.com-section-inner .slick-box {
    padding: 0 30px 0!important;
}
	
}


/*innner*/


@media screen and (max-width: 1090px) {
.top4-inner,.top5-inner,.lay-page {
    padding-left: 40px;
	padding-right: 40px;
}
}

@media screen and (max-width: 500px) {
.top4-inner, .top5-inner, .lay-page {
        padding-left: 30px;
        padding-right: 30px;
    }
}