@charset "utf-8";

/*サイト全体*/
*{font-family: "游ゴシック", 'Yu Gothic medium', 'Hiragino Sans', 'sans-serif' ;}

/*ヒーロー領域*/
.hero img{width:100%;}

/*パンくず*/
#breadcrumbs ul {
    display: flex;
	list-style-type:none; 
	background-color: #e5e638;
	font-weight: bold;
	
}

#breadcrumbs ul li{display:inline;color:#000;}

#breadcrumbs ul li a {
    padding-right: 8px;
	padding-left: 8px;
    background-image: url(../img/bread.png);
    background-repeat: no-repeat;
    background-position: right center;
	text-decoration: none;
	color:#000;
	
}


/*メイン領域*/


p{font-weight: bold;}

.all-contents{background-color: #e5e638;
padding-bottom: 3%;
text-align:center;}

.contents1 img:hover{
  opacity: 0.8;
  color: #E3D5C7;}
	
.contents2 img:hover{
  opacity: 0.8;
  color: #E3D5C7;}
	

/*フッター領域*/
.footer{
    text-align: center;
	height:auto;
	background-color: #3967a9;
}

.footer img{width:100%;}

.footer small{color: #fff;
font-weight: bold;
position:relative;
top:20px;}


/*ハンバーガーメニュー*/

#hamburger .btn-gNav {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 24px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
#hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 3px;

  -webkit-transition: all 400ms;
  transition: all 400ms;
}
#hamburger .btn-gNav span:nth-child(1) {
  top: 0;
	background-color: #000;
}
#hamburger .btn-gNav span:nth-child(2) {
  top: 10px;background-color: #000;
}
#hamburger .btn-gNav span:nth-child(3) {
  top: 20px;background-color: #000;
}
#hamburger .btn-gNav span:nth-child(3)::after {

  font-family:"游ゴシック", "Yu Gothic medium", "Hiragino Sans", "Meiryo", "sans-serif";
  position: absolute;
  top: 1px;
  left: -2px;
	
  color: #DCD3BF;
	
  font-size: 0.7rem;
}
.btn-gNav.open span:nth-of-type(3)::after {
  display: none;
}
#hamburger .btn-gNav.open span:nth-child(1) {
  background: #000;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hamburger .btn-gNav.open span:nth-child(2), #hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
#gNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
	
  background-color: #e5e638;
  background-size: 100% auto;
  background-position: bottom;
  box-sizing: border-box;
  z-index: 2;
  transition: .3s;
}
#gNav.open {
  right: 0px;
}
#gNav .gNav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;

}
#gNav ul{margin-top: 50px;}
#gNav .gNav-menu li {
  display: block;
    font-family: "游ゴシック", 'Yu Gothic medium', 'Hiragino Sans', 'sans-serif' ;
  color: #000;
    font-size: 20px;
    font-weight:bold;
  padding: 20px 30px;
}
#gNav .gNav-menu li a {
  color: #000;
    font-size: 15px;
    font-weight:bold;
  text-decoration: none;
}



/*ページトップ*/
.pagetop {
  width: 60px;
  height: 110px;
  position: fixed;
  right: 20px;
  bottom: 30px;
}
.pagetop a {
  display: block;
  width: 60px;
  height: 60px;
  padding-top: 25px;
  box-sizing: border-box;
  color: #E3D5C7;
  background-color:#666666;

  text-decoration: none;
  text-align: center;
  font-size: 12px;
}
.pagetop a:hover {
  background: #666666;
  opacity: 0.8;
  color: #E3D5C7;
}
.pagetop a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}
@media screen and (min-width:640px) {
/*メイン領域*/

	.contents1 {display:flex;
	justify-content: center;
	}
	
	
	.contents2 {display:flex;
	justify-content: center}

/*フェードイン*/
.scroll-fade {
  max-width: 900px;
  margin:  auto;
  display: flex;
  flex-wrap: wrap;
}

.group1 {
  opacity: 0;
  flex: 0 1 30%;
  transform: translateY(10px);
  transition: all 1.0s;
}
.group1:not(:nth-child(3n+1)) {
  margin-left: 20px;
}
.group1:not(:nth-child(-n+3)) {
  margin-top: 20px;
}
.group1.show {
  opacity: 1;
  transform: translateY(0);
}
.group1.show:nth-of-type(1) {
  transition-delay: 0s;
}
.group1.show:nth-of-type(2) {
  transition-delay: 0.1s;
}
.group1.show:nth-of-type(3) {
  transition-delay: 0.2s;
}
.group1.show:nth-of-type(4) {
  transition-delay: 0.3s;
}
.group1.show:nth-of-type(5) {
  transition-delay: 0.4s;
}
.group1.show:nth-of-type(6) {
  transition-delay: 0.5s;
}
	/*フッター領域*/
	.small{font-size: 25px;}
	

}