@charset "utf-8";
@import url("reset.css");
@import url("header.css");
@import url("footer.css?v=20240516");
@import url("../plugin/font/css/font_sans.css");



.headerColor-default {
  color: #333;
  /* （画像よりも下までスクロールした時に変えたい文字色） */
}

.green {
  color: #1E841E
}
.blue {
  color: #3467C1
}
.br_pc {
  display: none;
}
@media only screen and (min-width:768px) {
  .br_sp {
    display: none;
  }
}
@media only screen and (min-width:1024px) {
	 .br_pc {
    display: block;
  }
}

/*========= ヘッダー固定のためのCSS ===============*/
body {
	padding-top: 70px;
}
@media screen and (min-width: 1024px) {
	body {
	padding-top: 90px; 
}
}
/*リンクの形状*/
#page-top a {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #1E841E;
  border-radius: 50%;
  transition: all 0.3s;
}
#page-top a::before {
  content: "";
  position: absolute;
  top: 0.7em;
  border-right: 8px solid transparent;
  border-bottom: 13px solid #fff;
  border-left: 8px solid transparent;
}
#page-top a::after {
  content: "TOP";
  margin-top: 0.8em;
  color: #fff;
}
#page-top a:hover {
  opacity: 0.5;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 999;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@media only screen and (min-width:768px) {
  #page-top {
    right: 2em;
    bottom: 2em;
  }
	#page-top a {
  width: 65px;
  height: 65px;
  font-size: 1em;
}
#page-top a::before {
  border-right: 10px solid transparent;
  border-bottom: 15px solid #fff;
  border-left: 10px solid transparent;
}
#page-top a::after {
  margin-top: 0.7em;
}
}
	@media print{
		#page-top{
			display: none;
		}	
	}
/*========= フェードインのためのCSS ===============*/
.fadein.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  z-index: 1
}
@media screen {
  .fadein {
    opacity: 0;
    visibility: hidden;
    transition: 2s;
    transform: translateY(60px)
  }
}

/*========= アニメーション文字のためのCSS ===============*/
.catchcopy {
	width: 100%;
    bottom: 8.5rem;
    overflow: hidden;
    white-space: nowrap;
}
@keyframes hscroll2 {
  0% {
    transform: translateX(4px);
  }

  100% {
    transform: translateX(-100%);
  }
}
.catchcopy ul {
	background-color: transparent;
	display: inline-block;
    animation: hscroll2 40s linear infinite;
}
.catchcopy  ul li {
	margin-right: 1em;
	position: static;
	display: inline-block;
    font-size: 3em;
    color: #EFEFEF;
	font-family: 'Merriweather-Regular.woff';
}
@media screen and (min-width: 768px){
		.catchcopy ul {
	background: transparent;
  display: inline-block;
	}
	.catchcopy ul {
		margin-top: 1em;
	}
}
@media screen and (min-width: 1024px) {
		.catchcopy  ul li {
		font-size: 6.5em;
	}
	.catchcopy ul {
		margin-top: 1.2em;
	}
}
@media screen and (min-width: 1400px) {
		.catchcopy  ul li {
		font-size: 7em;
	}	
}
@media print{
	.catchcopy{
		display: none;
	}
}
/*=========パンくずリスト===============*/
.breadcrumbs {
  width: 90%;
  margin: 1em auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9em
}
.breadcrumbs li a {
  color: #000;
  transition: 0.2s
}
.p-breadcrumbs_link::after {
  margin: 0 10px;
  content: ">";
  font-weight: 300
}
@media screen and (min-width: 1024px) {
  .breadcrumbs {
    max-width: 1400px;
    margin-top: 1.6em;
    font-size: 1.1em
  }
}
/*=========はっぱ===============*/
.reaf_bg {
  width: 100%;
  padding: 5em 0 8em 0;
  position: relative;
  overflow: hidden;
}
.reaf_bg::before {
  content: "";
  max-width: 250px;
  width: 40%;
  height: 40%;
  position: absolute;
  display: block;
  left: -10%;
  top: 0;
  z-index: -1;
  background: url("../images/leaf02.svg") left top / 100% auto no-repeat;
}
.reaf_bg::after {
  content: "";
  max-width: 250px;
  width: 40%;
  height: 30%;
  position: absolute;
  display: block;
  right: -7%;
  top: 75%;
  z-index: -1;
transform: rotateZ(10deg);
  background: url(../images/leaf01.svg) right top / 100% auto no-repeat;
}

@media screen and (min-width: 768px) {
	.reaf_bg::before {
    width: 30%;
    height: 30%;
    left: -6%;
  }
  .reaf_bg::after {
    width: 40%;
    height: 30%;
    top: 70%;
	  right: -5%;
  }
}
@media print, screen and (min-width: 1024px) {
  section .reaf_bg {
    padding: 5em 0 8em 0;
  }
	.reaf_bg::before {
    max-width: 250px;
    height: 300px;
    left: -4%;
  }
  .reaf_bg::after {
	  max-width: 300px;
    height: 300px;
    top: 55%;
	  right: -4%;
  }
}
@media print, screen and (min-width: 1300px) {
	  .reaf_bg::before {
     max-width: 300px;
  }
	.reaf_bg::after {
    max-width: 350px;
  }
}