@charset "utf-8";
/*==================================================
ハンバーガー
===================================*/
header {
  position: fixed;
  height: 4rem;
  width: 100%;
  top: 0;
  box-sizing: border-box;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9997;
}
@media screen and (max-width: 700px) {
  header {
    height: 4.5rem;
    padding: 0;
  }
  }

.logo {
width: 100%;
max-width: 600px;
}
.logo .logo_img{
width: 100%;
max-width: 280px;
padding-left: 0.5rem;
}
.logo .logo_txt{
  font-size: 2rem;
  width: 75%;
  box-sizing: border-box;
  }
@media screen and (max-width: 768px){
  .logo .logo_img{
    width: 100%;
    max-width: 220px;
    padding-left: 0.5rem;
    }
}
.hamburger {
  display: none;
  width: 6rem;
  height: 4.5rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 9998;
  }

@media screen and (max-width: 700px) {
  .hamburger {
    display: flex;
  }
}

.hamburger .bar {
  width: 2.5rem;
  height: 0.1rem;
  background: #333;
  border-radius: 1rem;
  display: block;
  position: absolute;
  transition: all 0.3s;
}

.hamburger .bar-top {
  transform: translate(0, -12px);
}

.hamburger .bar-bottom {
  transform: translate(0, 12px);
}
.checkbox:checked ~ .hamburger{
  background:none;
}
.checkbox:checked ~ .hamburger .bar-middle {
  opacity: 0;
}

.checkbox:checked ~ .hamburger .bar-top {
  transform: translate(0, 0) rotate(45deg);
  background: #fff;
}

.checkbox:checked ~ .hamburger .bar-bottom {
  transform: translate(0, 0) rotate(-45deg);
  background: #fff;
}

.checkbox {
  display: none;
}

.nav-menu {
  position: static;
  width: auto;
}
@media screen and (max-width: 700px) {
  .nav-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background:rgba(255,255,255,0.7);
    color: #000;
    top: 0;
    left: -100%;
    transition: all 0.5s;
  }
}

.nav-menu ul {
  margin-left: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.nav-menu ul li{
box-sizing: border-box;
padding:0 0.75rem;
border-right: 1px solid #666;}
.nav-menu ul li:nth-last-of-type(1){
border-right:none;}
@media screen and (max-width: 700px) {
  .nav-menu ul {
    width: 100%;
    margin-top: 4rem;
    display: block;
  }
  .nav-menu ul li{
  border-right: none;
  width: 80%;
  box-sizing: border-box;
  padding: 1.5rem;
  margin: 0 auto;

  border-bottom: 1px solid #fff;
  }
  .nav-menu ul li:nth-last-of-type(1){
    border-right: none;
    border-bottom:none;
    }
}

@media screen and (max-width: 700px) {
  .nav-menu li {
    margin-bottom: 2rem;
  }
}

.nav-menu a {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
}
.nav-menu ul li img{
  width: 100%;
  height: auto;
  margin: 0 auto;
  }

.checkbox:checked ~ .nav-menu {
  left: 0;
}
@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background-color: #eeeeee; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* カスタマイズしてください */
    height: 3rem; /* カスタマイズしてください */
    justify-content: center;
    width: 3rem; /* カスタマイズしてください */
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000; /* カスタマイズしてください */
  display: block;
  height: 0.25rem; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 2rem; /* カスタマイズしてください */
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}

/*==================================================
フェードイン
===================================*/
/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
/*==================================================
フェードイン2
===================================*/
/* スクロールCSS */
.fade-in2 {
  opacity: 0;
  transition-duration: 2s;
  transition-property: opacity, transform;
}

.fade-in-up2 {
  transform: translate(0, 50px);
}

.fade-in-down2 {
  transform: translate(0, -50px);
}

.fade-in-left2 {
  transform: translate(-50px, 0);
}

.fade-in-right2 {
  transform: translate(10rem, 0);
}

.scroll-in2 {
  opacity: 1;
  transform: translate(0, 0);
}
/*==================================================
フェードイン3
===================================*/
.fade-inZ{
animation: FadeZ 1.5s ease-in  alternate;
animation-fill-mode: forwards;
opacity: 0;

}
@keyframes FadeZ{
  0% {
    transform: scale(1.1, 1.1);
    opacity: 0;
    
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

/*==================================================
テキストグラデーション
===================================*/
.glad {
  background: linear-gradient(90deg, rgba(56, 192, 115, 1), rgba(0, 71, 20, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(0, 152, 68, 0.69) );
  background-size: 200% 100%;
  animation: gradientAnimation 4s linear infinite;
 -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  
}
@keyframes gradientAnimation {
  0% {
      background-position: 200% 0;
  }
  100% {
      background-position: -200% 0;
  }
}
@media screen and (max-width: 768px){}

/*==================================================
光沢
===================================*/

.lightning_box{
}
#lightning .lightning_btn {
  display: block;
  position: relative;
  text-decoration: none;
  color: linear-gradient(150deg, rgba(56, 192, 115, 1), rgba(0, 71, 20, 1) 0%, rgba(0, 152, 68, 0.69) 50%, rgba(141, 194, 31, 1));
  text-align: center;
  overflow: hidden;
}

#lightning .lightning_btn:hover {
    text-decoration: none;
    color: #fbfbfb;
}

#lightning .lightning_btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fbfbfb;
    animation: lightning 2.5s ease-in-out infinite;
}

@-webkit-keyframes lightning {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@media screen and (max-width: 768px){}

/*==================================================
出現アニメーション
===================================*/
.fade-in3{
  opacity: 0;
  transition-duration: 2s;
  transition-property: opacity, transform;
}
.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap::before,
.img-wrap::after {
  animation: 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.img-wrap::before {
  animation-name: img-wrap-before;
  inset: 0 0 50%;
}

.img-wrap::after {
  animation-name: img-wrap-after;
  inset: 50% 0 0;
}

@keyframes img-wrap-before {
  100% {
    transform: translateX(100%);
  }
}

@keyframes img-wrap-after {
  100% {
    transform: translateX(-100%);
  }
}
.scroll-in3 {
  opacity: 1;
  transform: translate(0, 0);
}

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

/*==================================================
紙芝居
===================================*/
/* .kamishibai {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
} */
@media screen and (max-width: 768px){}