@charset "utf-8";
/*outline: 4px red solid;outline-offset: -4px;*/

.c-button__wrap {
  text-align: center;
}

.c-button-close {
  position: relative;
  display: inline-block;
  /* width: clamp(300px, 25.21865889vw, 346px); */
  width: 300px;
  transition: top 0.1s linear;
  will-change: top;
  z-index: 1;
}
.c-button-close::after {
  border-radius: 5vw;
  bottom: -5px;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  transition: bottom 0.1s linear;
  width: 100%;
  will-change: bottom;
  z-index: -1;
}
.c-button-close::after {
  background-color: #666;
}
/*
.c-button-secondary::after {
  background-color: #bb5400;
}
.c-button:hover {
  top: 5px;
}
.c-button:hover::after {
  bottom: 0;
}
*/
@media screen and (max-width: 768px) {
  .c-button-close {
/*    width: clamp(220px, 45vw, 280px);*/
      width: 47vw;
  }
  .c-button-close::after {
    border-radius: 10vw;
  }
}

/* ====================================================
　hero
==================================================== */
.p-hero {
  position: relative;
  padding-block: 16px;
  background-color: #ffe89e;
  overflow: hidden;
}

.p-hero__image {
  position: relative;
  left: 12px;
  display: block;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

.p-hero__buttonWrap {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.p-hero__button {
  width: min(300px, 25.21865889vw);
}

.p-hero__button img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .p-hero__image {
    width: 100%;
    margin: 0 auto;
  }
  .p-hero__buttonWrap {
    /*
    bottom: 59vw;
    */
    bottom: 51vw;
  }

  .p-hero__button {
    width: 47vw;
  }
}
.p-hero__caution{
  display: block;
  /* margin-top: min(80px, 7vw); */
  width: 100%;
  margin-top: 5px;
  text-align: center;
  color: #d00;
  /* font-size: clamp(24px, 3.20699708vw, 44px); */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
} 
@media screen and (max-width: 768px) {
  .p-hero__caution{
  /* font-size: clamp(12px, 3vw, 14px); */
    font-size:5vw;
  }
}