@charset "utf-8";
/* CSS Document */
/*******************

LP style

********************/
*, *:before, *:after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}
html, body {
        box-sizing: border-box;
        margin: 0;
        width: 100%;
        line-height: 1.5;
}
img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
}
a, a:hover {
        text-decoration: none;
        color: inherit;
}
ul, ol, li {
        list-style: none;
}
.visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
}
/* content
--------------------------------------------------*/
.lpbox, .footer {
        font-size: clamp(14px, calc(28 / 855 * 100vw), 28px);
        font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Mayryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
        color: #303030;
        width: 100%;
        max-width: 855px;
        margin: 0 auto;
}
.lpbox img, .lpbox header, .lpbox h1, .lpbox h2, .lpbox h3, .lpbox p, .lpbox dl, .lpbox dt, .lpbox dd, .lpbox div, .lpbox section, .lpbox span {
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: none;
        box-sizing: border-box;
        padding: 0;
        margin: 0 auto;
}
/*----------------------------------------*/
.cta {
        position: relative;
}
/*
.btn01 {
        position: absolute;
        padding: 0 8% !important;
        top: 85%;
}
*/
.btn01 {
  position: absolute;
  display: inline-block;
  overflow: hidden;
padding: 0 8% !important;    
 top: 85%;    
}

.btn01 a {
  display: block;
  position: relative;
}

.btn01::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}




.mv01 {
        width: 70%;
        margin: 2rem auto 4rem!important;
}
/**************** フッター *****************/
.jdma {
        width: 30%;
        max-width: 150px;
        margin: auto;
}
.footer {
        padding: 3rem 1rem;
        background-color: #f0f0f0;
        text-align: center;
}
.footer_linkList {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin: 1rem auto;
}
.footer_linkList li {
        flex: 0 0 180px;
        font-size: 14px;
}
.footer .copyright {
        font-size: 12px;
}
@media screen and (max-width: 550px) {
        .footer_linkList {
                flex-wrap: wrap;
        }
}