@charset "utf-8";

/* ====== Base / Reset ====== */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px;
    /* 基準サイズはここ */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

/* iOSフォーム要素の初期化（必要なら） */
input,
button,
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
}

/* 画像LP前提：セクション画像だけ100%にしたいなら範囲を限定 */
.lp-content img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    width: 100%;
}

.btn_box img {
   /*width: auto;*/
}

/***** LPここから *****/
.lp-content {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
}

.section02  {
    margin-bottom: -12px;  /* 数字は調整してください */
}

.section05 {
    margin-bottom: -12px;  /* 数字は調整してください */
}

/* ボタン */
.section01 {
    position: relative;
}

.section03 {
    position: relative;
}

.section06 {
    position: relative;
}

.section10 {
    position: relative;
}

.section11 {
    position: relative;
}


.btn_box {
    position: absolute;
    width: 85%;
    z-index: 999;
    /*top: 90%;*/
    /*right: 0;*/
    bottom: 1.5%;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
}
.section01 .btn_box {
    left: 49.4%;
}

.section03 .btn_box {
    top: 74%;
}

.section06 .btn_box {
    top: 74%;
}

.section10 .btn_box {
    top: 73%;
}

.section11 .btn_box {
    top: 93%;
}

/* 拡大縮小 */
.cta-style {
    display: block;
    -webkit-animation: cta_style8 2.0s infinite ease-in-out;
    animation: cta_style4 2.0s infinite ease-in-out;
}

@keyframes cta_style4 {

    0%,
    100% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.0);
    }
}

/*** フッター ***/
.footer-section {
    background: rgb(225, 225, 225);
    padding: 2rem;
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
    color: #000;
}

.footer-section a {
    color: #000;
    text-decoration: none;
}

.footer-section a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 768px) {
    .footer-section {
        padding: 1rem;
    }
}