@charset "utf-8";
/*----------------------------------------------各ページ共通*/
body {
  background-color: #fffaf0;
}
img {
  max-width: 100%;
  text-align: center;
}
a {
  color: #0a2214;
  text-decoration: none;
}
a:hover {
  text-decoration: underline 5px #9bb784;
}
/*----------------------------------------------見出し*/

h4 {
  font-size: 1.1rem;
  font-family: "Kaisei Decol", serif;
  font-style: normal;
  padding-bottom: .5rem;
}

/*----------------------------------------------header部*/
header {
  text-align: center;
}
/*----------------------------------------------main部*/
/*-------------------パンくずメニュー 開始*/
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  text-align: left;
	padding-bottom: 1rem;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: #999;
}
/*-------------------パンくずメニュー 終了*/



main {
  padding-top: 2rem;
  padding-bottom: 5rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
.grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.ec_item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
}
.ec_item p {
  text-align: right;
  font-size: .75rem;
  padding-bottom: .5rem;
}





/*---------------------------------  footer部 */
footer{
padding: 1rem;
text-align: center;	
background-color: #91b377;
font-size: .875rem;

}


.footer_design {
margin-bottom: 3rem;
}

.footer_left  img {
width: 180px;
height: 80px;
}


.footer_design img {
	width: 100px;
	height: 50px;
	max-width: none;
}


.insta_logo {
	background-image: url("../images/insta.png");
	width: 30px;
	height: 30px;
	margin-top: .5rem;
	margin-right: auto;
	margin-left: auto;
}



.footer_btn a {
	display: inline-block;
	width: 160px;
	height: 30px;
	background-color: #596f49;
	
	text-decoration: none;
	color: #f8f8fa;
	border-radius: 40px;
	margin: .6rem;
	padding-top: .4rem;
	text-align: center;
	font-size: .875rem;
}


.Copyright {
	font-size: .5rem;
		color:  #fffaf0;
	}






@media (min-width:800px) {
  /*-----------     共通部分------------*/
  body {
    max-width: 1440px;
    margin: 0 auto;
  }


  /*---------------　リンク・JS hover時アニメ　開始　----*/
.ec_item p { 
margin: 0; 
}
.ec_item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 330ms cubic-bezier(.2,.9,.2,1), filter 330ms cubic-bezier(.2,.9,.2,1), box-shadow 330ms;
  will-change: transform, filter;
  cursor: pointer;
  backface-visibility: hidden;
}

/* ホバー時の見た目（クラスを付ける） */
.ec_item img.hover-effect {
  transform: translateY(-8px) scale(1.03); /* 少し上へ・わずかに拡大 */
  filter: brightness(1.1) saturate(0.9); /* 色をやや薄く（暗く）見せる */
  box-shadow: 0 12px 24px rgba(0,0,0,0.12); /* 浮き上がり感 */
}
  /*---------------　リンク・JS hover時アニメ　終了　----*/





  /*----------------------------------------------header部*/

  /*----------------------------------見出し*/
  h1 img {
    width: 1440px;
    height: auto;
  }
  h2 {
    font-size: 8rem;
    margin-top: -7rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    text-align: center;
    font-size: 1.2rem;
  }
  /*----------------------------------------------main部*/
  /*-------------------パンくずメニュー　開始*/
  .breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    text-align: left;
    padding-bottom: 2rem;
  }
  .breadcrumb li {
    display: flex;
    align-items: center;
  }
  .breadcrumb li + li::before {
    content: ">";
    margin: 0 8px;
    color: #999;
  }

  /*-------------------パンくずメニュー　終了*/



  /*-------------------------------------------main   */
  main {
    max-width: 1100px;
    margin-top: 0;
    margin-bottom: 10rem;
    margin-right: auto;
    margin-left: auto;
  }
  .grid {
    display: grid;
    gap: 3rem 2rem;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
  .wrapper {
    width: 800px;
    margin: 0 auto;

  }

  
/*------------------------------------------  footer部 */
	footer{
	padding: 1rem;
	text-align: center;	
	background-color: #91b377;
	font-size: .5rem;

	}



	.footer_design {
	font-size: .875rem;
	display: flex;
	justify-content: center;

	}
	.footer_left {
	padding-right: 1rem;
	}


  /*--------  footer リンク色 開始　 */


  .footer_btn a {
  width: 185px;
  height: 45px;
  background-color: #596f49;
  
  text-decoration: none;
  color: #f8f8fa;
  border-radius: 40px;
  margin: .6rem;
  padding-top: .5rem;
  text-align: center;
  font-size: .9rem;
  transition: background-color .5s ease-out 200ms;

  }
  .footer_btn a:hover {
  background-color: #C0D904;
  }
  /*--------  footer リンク色 終了　 */


	.insta_logo {
	margin-left: 5rem;
	}



	.Copyright {

		font-size: .8rem;
		color:  #fffaf0;
	}
}


