/* 基本のスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* ファーストビュー */
header img {
    width: 100%;
    height: auto;
}

/* 画像配置修正 */
img {
    vertical-align: bottom;
}

/* CTA全共通 */
.cta_area {
    position: relative;
}

/* ボタン */
.btn {
    position: absolute;
    bottom: 8.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 89%;
}

/* CTA2 ボタン位置調整 */
.cta_area2 .btn {
    bottom: 19%;
}

/* CTA4のボタン位置調整 */
.cta_area4 .btn {
    bottom: 10%;
}
/* 追加しました↑ ここまで */


/* ボタンのスタイル */
.cta_area img, .cta_area2 img {
    width: 100%;
    height: auto;
}

.cta_btn2 img {
    width: 100%;
    height: auto;
}

/* コンテンツスタイル */
.content img {
    width: 100%;
    height: auto;
    /* margin-bottom: 20px; */
}

/* フッターナビゲーション */
.footer_nav a {
    text-decoration: none;
    color: #333;
    margin: 10px;
}

/* ページトップボタン */
.pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    display: none;
}

.pagetop i {
    font-size: 18px;
}

/* レスポンシブ対応デザイン */

/* スマホ向け */
@media (max-width: 767px) {
    .cta_area img, .cta_area2 img, .content img {
        width: 100%;
        height: auto;
    }

    .footer_nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

  footer {
    text-align: center;
    padding: 25px 0;
  }
  
    .footer_nav a {
        margin-bottom: 5px;
        font-size: 3vw;
    }

    .pagetop {
        display: block;
    }
}

/* タブレット向け */
@media (min-width: 768px) and (max-width: 1024px) {
    .content img {
        width: 100%;
        height: auto;
    }

    .footer_nav {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    footer {
        text-align: center;
        padding: 25px 0;
    }

    .footer_nav a {
        margin: 0 15px;
    }
}

/* PC向け */
@media (min-width: 1025px) {
    .content img {
        width: 100%;
        height: auto;
    }

    .footer_nav {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    footer {
        text-align: center;
        padding: 25px 0;
    }
    
    .footer_nav a {
        margin: 0 20px;
    }
}


/* プライバシーポリシー */
.privacypolicy_in {
	width: 800px;
	margin: 0 auto;
    margin-top: 70px;
    line-height: 1.8;
}

@media screen and (max-width: 850px) {
    .privacypolicy_in {
        width: 90%;
    }
}

.privacypolicy_in .sub_center_ttl{
	font-size: 26px;
	line-height: 42px;
	font-weight: 500;
	margin-bottom: 48px;
	text-align: center;
}

.privacypolicy_in .policy_ttl{
	font-size: 20px;
	margin: 48px 0 24px;
}

.privacypolicy_in p {
    margin-bottom: 12px;
}

.privacypolicy_in ul {
    margin: 0 0 12px 40px;
}

.privacypolicy_in ul li {
    list-style: disc;
    margin-bottom: 10px;
}


/* 特商法取引法に基づく表記 */
.term_in {
	width: 800px;
	margin: 0 auto;
    margin-top: 70px;
    line-height: 1.8;
}
