@charset "UTF-8";

/* =========================================
   基本設定
   ========================================= */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    width: 100%;
    border: none;
}

/* =========================================
   LP用 共通クラス
   ========================================= */
.lp-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.lp-btn-overlay {
    position: absolute;
    display: block;
    z-index: 10;
    transition: opacity 0.3s;
}

.lp-btn-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

@media (hover: hover) {
    .lp-btn-overlay:hover {
        opacity: 0.8;
        cursor: pointer;
    }
}

/* =========================================
   フォームエリア
   ========================================= */
.form-section {
    width: 100%;
    background-color: #fff;
    padding-bottom: 40px;
    text-align: center;
}

.form-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.form-wrapper iframe {
    width: 100%;
    height: 900px;
    border: none;
    display: block;
    margin: 0 auto;
}

.form-wrapper h1 {
    font-size: 32px;
    font-weight: bold;
}
.css-7d1jrx {
    max-width: 900px !important;
}
@media screen and (max-width: 768px) {
    .form-wrapper iframe {
        height: 1100px;
    }
}

/* =========================================
   フッター (New!)
   ========================================= */
.lp-footer {
    background-color: #333; /* 背景色（濃いグレー） */
    color: #fff;            /* 文字色（白） */
    text-align: center;
    padding: 30px 10px;
    font-size: 14px;
}

.lp-footer a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.lp-footer a:hover {
    text-decoration: underline;
}

.lp-footer .copyright {
    opacity: 0.7;
    font-size: 12px;
}

/* =========================================
   PC / SP 切り替え設定
   ========================================= */
.sp-view {
    display: none !important;
}
.pc-view {
    display: block !important;
}

@media screen and (max-width: 768px) {
    .pc-view {
        display: none !important;
    }
    .sp-view {
        display: block !important;
    }
}