@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');
/*--------------------------------------------------------------------------------------------------

   common

--------------------------------------------------------------------------------------------------*/


/*reset-------------------------------------------------*/
*, *:before, *:after {
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 -o-box-sizing: border-box;
 -ms-box-sizing: border-box;
 box-sizing: border-box;
}

body,div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd {
	margin: 0;
	padding: 0;
}

table {
 border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: none;
	vertical-align: top;
 -webkit-backface-visibility: hidden;
	max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}

header,section,article,aside,footer,nav {
 display: block;
}

.hs {
color: #FF0000;
}


/*-------------------------------------------------reset*/


@media all and (min-width: 1100px){

/*common-------------------------------------------------*/
body {
	margin: 0;
	padding: 0;
	color: #000000;
	font-size: 16px;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
	line-height: 1.8;
	overflow-x: hidden;
}

a:link {
	color: #6D7903;
}

a:visited {
	color: #6D7903;
}

a:hover, a:active {
	color: #F90;
}

.clear:after {
 content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear {
 display: inline-table;
 overflow: hidden;
}

/* mac \*/
* html .clear {
 height: 1%;
}
.clear {
 display: block;
}
/* macend */

.alignleft {
	float: left;
	margin: 0 10px 10px 0;
}

.alignright {
	float: right;
	margin: 0 0 10px 10px;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.mgn40 {
	margin-bottom: 40px !important;
}

.mgn80 {
	margin-bottom: 80px !important;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.entryWrap {
	display: flex;
	margin-bottom: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

.entryWrap div {
	width: 46%;
	margin: 0 2% 30px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.entryWrap div p {
	padding-top: 8px;
	padding-bottom: 14px;
	margin-bottom: 8px;
	position: relative;
	background-color: #FEF0CF;
}

#secondCont .entryWrap div p {
margin-bottom: 8px;
}

.entryWrap div p:before {
	position: absolute;
	border-top: 20px solid #F37402;
 border-right: 20px solid transparent;
 border-left: 20px solid transparent;
	content: "";
	bottom: -7px;
	left: calc( 50% - 10px);
}

a.btnlr {
  color: #F37402;
  font-size: 16px;
  font-weight: bold;
  background: #FEF0CF;
  padding: 18px 0;
		width: 320px;
		margin: 0 auto;
		display: block;
  border: 3px solid #F37402;
  position: relative;
  z-index: 1;
  transition: .3s;
		text-decoration: none;
		font-size: 20px;
		border-radius: 6px;
		box-shadow: 4px 4px 3px #CCC;
}
a.btnlr::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #F37402;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
a.btnlr:hover {
  color: #fff;
}
a.btnlr:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
/*-------------------------------------------------common*/


/*------------------------------------------------------------------------------------------------
  header
--------------------------------------------------------------------------------------------------*/
#header {
	padding: 10px 20px 0;
	background-color: #F0F1E5;
}

.pc-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header h1.title,
#header p.title {
	position: relative;
	text-indent: -9999px;
	top: 16px;
}

#header h1.title a,
#header p.title a {
	display: block;
	width: 330px;
	height: 83px;
	background: url(../image/title.png) no-repeat 0 0;
	background-size: 330px;
}

.menubt {
	display: none;
}

#spnav {
	border-bottom: 2px solid #F90;
	background-color: #F0F1E5;
}

#spnav ul {
	display: flex;
	margin: 0 28px 10px;
	padding: 0;
	list-style: none;
	justify-content: flex-end;
}

#spnav ul li {
	margin: 0;
	padding: 0;
}

#spnav ul li i.fa-caret-right:before {
	display: none;
}

#spnav ul li a {
	display: block;
	text-decoration: none;
	padding: 0 12px;
	color: #000;
	font-weight: 500;
	position: relative;
}

#spnav ul li a:hover {
	color: #6D7903;
}

#spnav ul li a::before,
#spnav ul li a::after {
 border-bottom: 2px solid #6D7903;
 bottom: -2px;
 content: "";
 display: block;
 position: absolute;
 transition: all .3s ease;
 transition: all .3s ease;
 -webkit-transition: all .3s ease;
 width: 0;
}

#spnav ul li a::before {
 left: 50%;
}

#spnav ul li a::after {
 right: 50%;
}

#spnav ul li a:hover::before,
#spnav ul li a:hover::after {
 width: 50%;
}

#spnav ul li a i {
	margin-right: 4px;
}

#spnav ul li a.pre {
	color: #999;
}

.pc-header .hEntry {
	display: flex;
}

.pc-header .hEntry ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.pc-header .hEntry ul li {
	margin: 0 8px;
	padding: 0;
}

.pc-header .hEntry ul li a {
	display: block;
	text-align: center;
	color: #FFF;
	text-decoration: none;
	padding: 6px 20px;
	line-height: 1.3;
	border-radius: 8px;
	font-weight: 500;
	opacity: 0.8;
}

.pc-header .hEntry ul li:nth-child(1) a {
	background: url(../image/arrow-01.png) no-repeat #DA3DBE 97% center;
	background-size: 6px;
}

.pc-header .hEntry ul li a:hover {
    opacity: .8;
}

.pc-header .hEntry ul li:nth-child(2) a {
	background: url(../image/arrow-01.png) no-repeat #D9593D 97% center;
	background-size: 6px;
}

.pc-header .hEntry ul li:nth-child(3) a {
	background: url(../image/arrow-01.png) no-repeat #CCC 97% center; /*#593DD9*/
	background-size: 6px;
}

.pc-header .hEntry ul li:nth-child(4) a {
	background: url(../image/arrow-01.png) no-repeat #97C921 97% center; /*#CCC*/
	background-size: 6px;
}

.pc-header .hEntry .hSns ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.pc-header .hEntry .hSns ul li {
	margin: 0 8px;
	padding: 0;
}

.pc-header .hEntry .hSns ul li a {
	background: none;
	padding: 6px 0;
	opacity: 1;
}

.pc-header .hEntry .hSns ul li img {
	width: 40px;
	height: auto;
}


/*------------------------------------------------------------------------------------------------
  footer
--------------------------------------------------------------------------------------------------*/
#footer {
	border-top: 8px solid #6D7903;
	background: url(../image/illust-03.png) no-repeat 50% 100%;
	background-size: 60px;
}

#footer footer {
	width: 1100px;
	margin: 0 auto;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
}

#footer footer .info dl dt {
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 18px;
	letter-spacing: 0.1em;
}

#footer footer .info dl dd {
	line-height: 1.4;
}

#copy {
	text-align: center;
	color: #FFF;
	padding: 4px 0;
	background-color: #6D7903;
}

.fhm-pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
}

.fhm-pagetop img {
	width: 44px;
	height: 44px;
}


/*------------------------------------------------------------------------------------------------
  second
--------------------------------------------------------------------------------------------------*/
#secondNav {
	background-color: #FFB366;
}

#secondNav ul {
	width: 1100px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex;
}

#secondNav ul li {
	/*width: 205px;*/
	width: 172px;
	margin: 0;
	padding: 0;
	position: relative;
}

#secondNav ul li:first-child,
#secondNav ul li:nth-child(2) {
	width: 140px;
}

#secondNav ul li:before {
	position: absolute;
	top: calc( 50% - 15px);
	left: 0;
	content: "";
	background-color: #000;
	width: 1px;
	height: 30px;
}

#secondNav ul li:first-child:before {
	background-color: transparent;
}

#secondNav ul li a {
	display: block;
	padding: 16px  10px;
	text-align: center;
	color: #000;
	text-decoration: none;
	font-weight: 500;
}

#secondNav ul li a:hover {
	background-color: #FFD1A3;
}

#secondWrap {
	background: url(../image/line-02.png) repeat-x center 0;
}

#secondCont {
	width: 1100px;
	margin: 0 auto;
	padding: 40px 0;
}

#secondCont h1 {
	margin: 0 0 20px;
	font-size: 30px;
	font-weight: 700;
	position: relative;
}

#secondCont h1:first-letter {
	font-size: 50px;
	color: #6D7903;
}

#secondCont h1:after {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 10px;
 content: '';
 background-image: -webkit-repeating-linear-gradient(135deg, #6D7903, #6D7903 1px, transparent 2px, transparent 5px);
 background-image: repeating-linear-gradient(-45deg, #6D7903, #6D7903 1px, transparent 2px, transparent 5px);
 background-size: 7px 7px;
 -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
}

#secondCont h2 {
	position: relative;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 20px;
	padding: 60px 0 0;
	color: #6D7903;
}

#secondCont h2:before {
	position: absolute;
	content: "";
	width: 138px;
	height: 62px;
	top: 0;
	left: calc( 50% - 69px);
	background: url(../image/line-01.png) no-repeat 0 0;
}

#secondCont h3 {
	margin: 0 0 10px;
	padding: 4px;
	border-bottom: 2px dotted #6D7903;
	font-size: 24px;
	font-weight: 700;
	color: #6D7903;
}

#secondCont p {
	margin: 0 0 40px;
}

#secondCont .line01 {
	background: linear-gradient(transparent 70%, #FCCFE4 50%);
}

.wideWrap {
	position: relative;
}

.wideWrap .wide {
 margin: 0 calc(50% - 50vw) 30px;
	width: 100vw;
	padding: 40px 0;
}

.wideWrap .wide .cont {
	width: 1100px;
	margin: 0 auto;
}

.infoday1 {
	background-color: #E1E9F9;
}

.infoday2 {
	background-color: #F9E8F5;
}

.wbk1 {
	background-color: #FFF3E8;
}

.wbk2 {
	border-top: 2px solid #F4D5EF;
	border-bottom: 2px solid #F4D5EF;
	padding: 30px 0 0;
	margin-bottom: 30px;
}

}

@media all and (max-width: 1099px){

body {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

img {
	border: none;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
 max-width: 100%;
 height: auto;
}

a:link {
	color: #6D7903;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
}

a:visited {
	color: #6D7903;
}

a:hover, a:active {
	color: #6D7903;
}

.clear:after {
 content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear {
 display: inline-table;
}

/* mac \*/
* html .clear {
 height: 1%;
}
.clear {
 display: block;
}
/* macend */

.pc {
    display: none;
}

.sp {
    display: block;
}

.alignleft, .alignright, .aligncenter {
	display: block;
	margin: 0 auto 24px;
}

.mgn40 {
	margin-bottom: 40px !important;
}

.mgn80 {
	margin-bottom: 80px !important;
}


/*------------------------------------------------------------------------------------------------
  header
--------------------------------------------------------------------------------------------------*/
#header {
	position: relative;
	height: 80px;
	padding: 10px;
	border-bottom: 3px solid #6D7903;
}

#header h1.title,
#header p.title {
	position: absolute;
	top: 16px;
	left: 10px;
	text-indent: -9999px;
}

#header h1.title a,
#header p.title a {
	display: block;
	width: 200px;
	height: 50px;
	background: url(../image/title.png) no-repeat 0 0;
	background-size: 200px;
}

#header .menubt {
	display: block;
}

.menubt {
	display: block;
	margin: 0;
 z-index: 3;
 width: 46px;
 height: 46px;
 display: block;
 right: 7px;
 top: 15px;
 position: absolute;
	background-color: #6D7903;
	cursor: pointer;
}
  
.menubt span {
 width: 36px;
 height: 3px;
 display: block;
 background: #fff;
 border-radius: 0;
 position: absolute;
 right: 5px;
 top: 14px;
 transition: all 0.4s;
 transform: rotate(0deg);
}
  
.menubt .top {
 -webkit-transform: translateY(-250%);
 -ms-transform: translateY(-250%);
 transform: translateY(-250%);
}
  
.menubt .bottom {
 -webkit-transform: translateY(250%);
 -ms-transform: translateY(250%);
 transform: translateY(250%);
}
  
.menubt .menuclick1 {
 transform: rotate(-215deg);
}
  
.menubt .menuclick2 {
 background-color: rgba(255,255,255,0);
}
  
.menubt .menuclick3 {
 transform: rotate(215deg);
}

.menubt .text-menu {
 color: #fff;
 padding-top: 27px;
 text-align: center;
 font-size: 10px;
}

#spnav {
	display: none;
}

#spnav ul {
	margin: -3px 0 0;
	padding: 0;
	list-style: none;
	border-bottom: 3px solid #6D7903;
}

#spnav ul li {
	margin: 0;
	padding: 0;
}

#spnav ul li a {
	display: block;
	padding: 8px 12px;
	text-decoration: none;
	border-top: 3px solid #6D7903;
	border-left: 3px solid #6D7903;
	border-right: 3px solid #6D7903;
	background-color: #F0F1E5;
}

#spnav ul li a.pre {
	background-color: #DDD;
}

.hEntry {
}

.hEntry ul {
	margin: 1px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.hEntry ul li {
	width: 50%;
	margin: 0;
	padding: 0;
}

.hEntry ul li a {
	display: block;
	text-align: center;
	color: #FFF;
	text-decoration: none;
	padding: 6px 10px;
	line-height: 1.3;
	font-weight: 500;
	border: 1px solid #FFF;
}

.hEntry ul li:nth-child(1) a {
	background: url(../image/arrow-01.png) no-repeat #DA3DBE 95% center;/*#DA3DBE*/
	background-size: 6px;
}

.hEntry ul li:nth-child(2) a {
	background: url(../image/arrow-01.png) no-repeat #D9593D 95% center;/*#D9593D*/
	background-size: 6px;
}

.hEntry ul li:nth-child(3) a {
	background: url(../image/arrow-01.png) no-repeat #593DD9 95% center;/*#593DD9*/
	background-size: 6px;
}

.hEntry ul li:nth-child(4) a {
	background: url(../image/arrow-01.png) no-repeat #97C921 95% center;/*#*/
	background-size: 6px;
}

.hSns ul {
	margin: 0;
	padding: 10px 0;
	list-style: none;
	display: flex;
	justify-content: center;
	background-color: #F0F1E5;
}

.hSns ul li {
	margin: 0 10px;
	padding: 0;
}

.hSns ul li img {
	width: 40px;
}



/*------------------------------------------------------------------------------------------------
  footer
--------------------------------------------------------------------------------------------------*/
#footer {
	border-top: 8px solid #6D7903;
	background: url(../image/illust-03.png) #FFF no-repeat 90% 100%;
	background-size: 60px;
}

#footer footer {
	width: 92%;
	margin: 0 auto;
	padding: 30px 0;
}

#footer footer .info {
	margin: 0 0 20px;
}

#footer footer .info dl dt {
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 18px;
	letter-spacing: 0.1em;
}

#footer footer .info dl dd {
	line-height: 1.4;
}

.produce img {
	width: 110px;
	height: auto;
}

#copy {
	text-align: center;
	color: #FFF;
	padding: 4px 0 0;
	background-color: #6D7903;
}

.fhm-pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
}

.fhm-pagetop img {
	width: 44px;
	height: 44px;
}

/*------------------------------------------------------------------------------------------------
  second
--------------------------------------------------------------------------------------------------*/
#secondNav {
	display: none;
}

#secondCont {
	width: 92%;
	margin: 0 auto;
	padding: 10px 0 40px;
}

#secondCont h1 {
	margin: 0 0 20px;
	padding-bottom: 8px;
	font-size: 26px;
	font-weight: 700;
	position: relative;
}

#secondCont h1:first-letter {
	font-size: 36px;
	color: #6D7903;
}

#secondCont h1:after {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 10px;
 content: '';
 background-image: -webkit-repeating-linear-gradient(135deg, #6D7903, #6D7903 1px, transparent 2px, transparent 5px);
 background-image: repeating-linear-gradient(-45deg, #6D7903, #6D7903 1px, transparent 2px, transparent 5px);
 background-size: 7px 7px;
 -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
}

#secondCont h2 {
	position: relative;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 20px;
	padding: 60px 0 0;
	color: #6D7903;
}

#secondCont h2:before {
	position: absolute;
	content: "";
	width: 138px;
	height: 62px;
	top: 0;
	left: calc( 50% - 69px);
	background: url(../image/line-01.png) no-repeat 0 0;
}

#secondCont h3 {
	margin: 0 0 10px;
	padding: 4px;
	border-bottom: 2px dotted #6D7903;
	font-size: 20px;
	font-weight: 700;
	color: #6D7903;
}

#secondCont p {
	margin: 0 0 40px;
}

#secondCont .line01 {
	background: linear-gradient(transparent 70%, #FCCFE4 50%);
}

.wideWrap {
	position: relative;
}

.wideWrap .wide {
 margin: 0 calc(50% - 50vw) 30px;
	width: 100vw;
	padding: 40px 0;
}

.wideWrap .wide .cont {
	width: 92%;
	margin: 0 auto;
}

.infoday1 {
	background-color: #E1E9F9;
}

.infoday2 {
	background-color: #F9E8F5;
}

.wbk1 {
	background-color: #FFF3E8;
}

.wbk2 {
	border-top: 2px solid #F4D5EF;
	border-bottom: 2px solid #F4D5EF;
	padding: 30px 0 0;
	margin-bottom: 30px;
}

.entryWrap {
	margin-bottom: 40px;
}

.entryWrap div {
	width: 100%;
	margin: 0 0 30px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.entryWrap div p {
	padding-top: 8px;
	padding-bottom: 14px;
	margin-bottom: 8px;
	position: relative;
	background-color: #FEF0CF;
}

.entryWrap div p:before {
	position: absolute;
	border-top: 20px solid #F37402;
 border-right: 20px solid transparent;
 border-left: 20px solid transparent;
	content: "";
	bottom: -7px;
	left: calc( 50% - 10px);
}

#secondCont .entryWrap div p {
margin-bottom: 8px;
}

a.btnlr {
  color: #F37402;
  font-weight: bold;
  background: #FEF0CF;
  padding: 18px 0;
		width: 90%;
		margin: 0 auto;
		display: block;
  border: 3px solid #F37402;
  position: relative;
  z-index: 1;
  transition: .3s;
		text-decoration: none;
		font-size: 20px;
		border-radius: 6px;
		box-shadow: 4px 4px 3px #CCC;
}
a.btnlr::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #F37402;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
a.btnlr:hover {
  color: #fff;
}
a.btnlr:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

}