/* TOPページ */
/* cta */
.cta{
    text-align: center;
    padding: 5% 0;
}
.cta_ttl{
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 0.2em;
}
.cta_ttl::before, .cta_ttl::after{
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 3px;
    background-color: #42210b;
     position: absolute;
        top: 50%;
}
.cta_ttl::before{
    rotate: 50deg;
    left: -1.2em;
}
.cta_ttl::after{
    rotate: -50deg;
    right: -1.2em;
}
.cta_btn{
    position: relative;
    display: inline-block;
    margin: 10px auto;
    width: 90%;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    animation: pekopeko 2s infinite;
}

@keyframes pekopeko{
   0% {
    top: 0px;
}
10% {
    top: 3px;
}
20% {
    top: 0px;
}
30% {
    top: 3px;
}
40% {
    top: 0px;
}
}
@media screen and (max-width:750px) {
    .cta_ttl{
        font-size: clamp(1.375rem, 0.7238rem + 3.2558vw, 2.25rem);
    }
    .cta_time{
    font-size: clamp(1rem, 0.6279rem + 1.8605vw, 1.5rem);
}
}
@media screen and (max-width:599px) {
    .cta_btn{
    margin: 0.5vw auto;
}
}

/* fv */
.fv{
    background-color: #ffaf5f;
}


/* business-hour */
.business-hour{
    position: relative;
}
.business-hour .cta{
    position: absolute;
    bottom: 2%;
}

/* プラポリ・利用規約共通 */
.txt_wrap{
    width: 95%;
    margin-inline:auto;
    margin-bottom: 100px;
    padding: 2em 1em;
    background-color: #fff;
    border: 1px solid #42210b;
    border-radius: 5px;
    box-shadow:  0 8px 5px rgba(0, 0, 0, 0.4);
}
.txt_wrap p{
    margin-bottom: 1.2em;
}
/* 利用規約ページ */
.terms .txt_wrap{
    height: 600px;
    overflow-y: scroll;
}
.txt_wrap::-webkit-scrollbar {
  width: 12px;
}
.txt_wrap::-webkit-scrollbar-thumb {
  background-color: #fbb03b;
  border-radius: 6px;
}
.txt_wrap::-webkit-scrollbar-track {
  background-color: #c2c2c2;
}