@charset "utf-8";

/*----------------------------------------------------
CSSリセット
----------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote {
    quotes: none;
}

/*----------------------------------------------------
アニメーション
----------------------------------------------------*/

/* 大小 */

@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
        transform: scale(1.0);
    }
    50%, 70% {
        transform: scale(1.1);
    }
}

/* ボタン用オーラ */

@keyframes aura {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 1
    }

    90% {
        opacity: .1
    }

    to {
        -webkit-transform: scale(1.2, 1.5);
        transform: scale(1.2, 1.5);
        opacity: 0
    }
}

/* ふわふわバウンス */

@keyframes fuwafuwa {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

@keyframes fuwafuwa2 {
	0%,
	100% {
		transform: translateY(-5px);
	}
	50% {
		transform: translateY(0);
	}
}


/*----------------------------------------------------
基本
----------------------------------------------------*/

body {
    color: #532b14;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.75;
    width: 620px;
    max-width: 100%;
    margin: auto;
}

body>.wrap {
    overflow: hidden;
}

@media(min-width:720px) {
    body>.wrap {
        overflow: visible;
    }
}

img {
    display: block;
    max-width: 100%;
    margin: auto;
    height: auto;
}

/* 余白 */

.margin-m {
    margin-bottom: 30px !important;
}

/* テキスト */

p {
    margin: 30px 20px;
    text-align: center;
    font-weight: bold;
}

.text-orange {
    color: #fd4615;
}

/* ボタン */

.btn{
    max-width: 100%;
    margin: 0 auto 50px;
}

.cta_sub {
    width: 46%;
    margin-bottom: 5px;
}

.cta_btn {
    width: calc(100% - 40px);
    position: relative;
    z-index: 1;
}

/* ボタンアニメーション */

.aura {
    position: relative;
    margin: auto;
    display: block;
}

.aura:before {
    animation: aura 2s ease-out infinite;
}

.aura:after {
    animation: aura 2s ease-out 1s infinite;
}

.aura:before,
.aura:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100vh;
    background: #eb6124;
    transform: translate3d(0, 0, 0);
}

/*----------------------------------------------------
コンテンツ
----------------------------------------------------*/

/* メインビジュアル */
.mainvisual {
    position: relative;
    max-width: 620px;
    aspect-ratio: 32 / 21; /* 960x630 */
    margin: 0;
    background: url("/assets/images/lp/article/dream-myhome/mainvisual_bg.png") no-repeat center / cover;
}

.mainvisual a {
    color: #532b14;
    display: block;
    height: 100%;
}

.mainvisual:before,
.mainvisual:after {
    content: "";
    position: absolute;
    display: inline-block;
}

.mainvisual:before {
    width: 20%;
    height: 36%;
    bottom: 1%;
    left: 1%;
    background: url(/assets/images/lp/article/dream-myhome/illust_left.png) no-repeat center / contain;
    animation: 3s fuwafuwa infinite;
}

.mainvisual:after {
    width: 15%;
    height: 35%;
    bottom: 1%;
    right: 1%;
    background: url(/assets/images/lp/article/dream-myhome/illust_right.png) no-repeat center / contain;
    animation: 3s fuwafuwa2 infinite;
}

.mainvisual_pr {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: bold;
    font-size: 11px;
    text-align: center;
    padding: 0 3px;
    background: white;
}

.mainvisual_note {
    font-size: 10px;
    text-align: center;
    line-height: 1.5;
    bottom: 5%;
    position: absolute;
    right: 0;
    left: 0;
}

.mainvisual_sub {
    position: absolute;
    top: 0;
    width: 23%;
    left: 5%;
}

.mainvisual_title {
    position: absolute;
    top: 13%;
    width: 90%;
    right: 0;
    left: 0;
}

.mainvisual_condition {
    position: absolute;
    top: 41%;
    width: 32%;
    right: 0;
    left: 0;
}

.mainvisual_price {
    position: absolute;
    top: 54.5%;
    width: 60%;
    right: 0;
    left: 0;
    animation: poyopoyo 2s ease-out infinite;
}

/* 持ち家計画概要 */

.about {
    background: #fffbd9;
    margin: auto;
    max-width: 620px;
    padding: 50px 0;
}

.about_title {
    width: 92%;
}

/* 来場者のコメント */

.voice{
    margin: 0 auto 50px;
    padding: 50px 0;
    background: url("/assets/images/lp/article/see-house/3000yen/voice_bg.png") no-repeat center center / cover;
}

.voice p {
    font-weight: normal;
    text-align: left;
    margin: 0 20px;
}

.voice .voice_inner {
    width: calc(100% - 40px);
    background: #fff;
    opacity: 0.9;
    margin: auto;
    border-radius: 30px;
    padding: 30px 0;
}

.voice_title{
    width: 76%;
    margin-bottom: 12%;
}

.voice_inner:not(:last-of-type){
    margin: 0 auto 12%;
}

.voice_inner h3 img {
    margin-top: -12%;
}

.voice .voice_caution {
    font-size: 11px;
    color: #fff;
    margin: 0;
    text-align: center;
}

/* フッター */

footer {
    text-align: center;
}