@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;
        padding: 0;
        margin: 0 auto;
}
/*　cta
----------------------------------------*/
.cta {
  position: relative;
}

.btn01 {
  position: absolute;
  top: 49.5%;
  padding: 0 8% !important;
}
.btn02 {
  position: absolute;
  top: 76%;
  padding: 0 8% !important;
}

.btn01 a,.btn02 a {
  display: block;
  position: relative;
  overflow: hidden;
}

.btn01 a::after, .btn02 a::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;
  pointer-events: none;
}

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


/*  同梱設定方法 動画モーダル
--------------------------------------------------*/

/* 動画を見る画像 */
.howto-btn {
  display: block;
  cursor: pointer;
}

/* モーダル */
.howto-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
}

/* モーダル表示 */
.howto-modal.is-open {
  display: block;
}

/* 背景 */
.howto-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgb(47 70 82 / 75%)!important;
}

/* モーダル本体 */
.howto-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 800px;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
}

/* 閉じるボタン */
.howto-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 40px;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
}

/* 動画 */
.howto-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.howto-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
#howtoVideo {
  height: 80vh;
  left: 25%;
  position: relative;    
}   
@media screen and (max-width: 767px) {
  .howto-modal-content {
    width: 94%;
    padding: 10px;
  }

  .howto-modal-close {
    top: -45px;
    width: 40px;
    height: 40px;
    font-size: 35px;
    line-height: 40px;
  }
#howtoVideo {
  width: 100%;
    height: auto;
    left: auto;
}     
}
 

/**************** フッター *****************/
.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;
        }
}