@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;
}

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

/* 予約枠 */

@-webkit-keyframes blink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

 @keyframes blink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

/* 大小 */

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

/* オーラ */

@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
    }
}


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

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-0 {
    margin: 0;
}

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

.margin-l {
    margin-bottom: 50px !important;
}

/* テキスト */

p {
    margin: 30px 10px;
    text-align: center;
}

p:last-child {
    margin: 30px 10px 0;
}

.bold {
    font-weight: bold;
}

.text-s {
    font-size: 11px;
}

.text-l {
    font-size: 20px;
}

.text-orange {
    color: #eb6124;
}

/* ボタン */

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

.btn_img {
    width: calc(100% - 20px);
    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);
}

/*----------------------------------------------------
予約枠
----------------------------------------------------*/

.stock-information {
    width: calc(100% - 20px);
    margin: 0 auto 30px;
}

.stock-information ul li {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
    font-size: 20px;
}

.stock-information ul li:first-of-type {
    margin-top: 0;
}

.stock-information ul li .term {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    background-color: #7f7f80;
    color: #ffffff;
    margin-right: 15px;
}

.stock-information ul li .term::after {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: -15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 15px;
    height: 100%;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(48%, transparent), color-stop(52%, #7f7f80)) no-repeat top left/100% 51.2%, -webkit-gradient(linear, right bottom, left top, color-stop(48%, transparent), color-stop(52%, #7f7f80)) no-repeat bottom left/100% 51.2%;
    background: linear-gradient(to bottom left, transparent 48%, #7f7f80 52%) no-repeat top left/100% 51.2%, linear-gradient(to top left, transparent 48%, #7f7f80 52%) no-repeat bottom left/100% 51.2%;
}

.stock-information ul li .desc {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    padding: 10px;
}

.stock-information ul li span {
    font-size: 18px;
}

.stock-information ul .past{
    outline: 2px solid #7f7f80;
    outline-offset: -2px;
}

.stock-information ul .past .desc {
    font-weight: 700;
    color: #7f7f80;
}

.stock-information ul .present{
    outline: 2px solid #eb6124;
    outline-offset: -2px;
}

.stock-information ul li.present {
    position: relative;
}

.stock-information ul li.present .term {
    background: #eb6124;
}

.stock-information ul li.present .term::after {
    content: "";
    background: -webkit-gradient(linear, right top, left bottom, color-stop(48%, transparent), color-stop(52%, #eb6124)) no-repeat top left/100% 51.5%, -webkit-gradient(linear, right bottom, left top, color-stop(48%, transparent), color-stop(52%, #eb6124)) no-repeat bottom left/100% 51.5%;
    background: linear-gradient(to bottom left, transparent 48%, #eb6124 52%) no-repeat top left/100% 51.5%, linear-gradient(to top left, transparent 48%, #eb6124 52%) no-repeat bottom left/100% 51.5%;
}

.stock-information ul li.present .desc {
    font-weight: 700;
    color: #eb6124;
}

.stock-information ul li.present .desc span {
    color: #532b14;
}

.stock-information ul li.present::before {
    content: "";
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    border: 6px solid #ff0000;
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: 10;
    -webkit-animation: blink 1.5s linear infinite;
    animation: blink 1.5s linear infinite;
}

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

.note {
    display: block;
    font-size: 11px;
    text-align: center;
    margin-bottom: 5px;
}

/* メインビジュアル */
.mainvisual {
    position: relative;
    max-width: 620px;
    margin: 0;
}

.mainvisual_reward {
    position: absolute;
    bottom: 15px;
    width: 85%;
    left: 0;
    right: 0;
}

.mainvisual .note {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.mainvisual .btn {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 25px;
    max-width: 563px;
}

/* ステップ */

.step {
    margin: auto;
    max-width: 620px;
    padding: 50px 0;
    background: url("/assets/images/lp/article/see-house/3000yen/merit_bg.png") no-repeat;
}

/* 背景黄色部分 */

.yellow_area {
    background: #efda55;
    padding: 30px 0;
}

.yellow_area .yellow_area_inner {
    width: calc(100% - 20px);
    background: #fff;
    margin: auto;
    border-radius: 30px;
    padding: 30px 0;
}

.yellow_area .yellow_area_inner p {
    text-align: left;
    width: calc(100% - 30px);
    margin: auto;
}

.yellow_area_recommend {
    display: flex;
    width: 95%;
    margin: auto;
    position: relative;
}

.yellow_area_recommend_content {
    width: calc(50% - 20px);
}

.yellow_area_recommend_catch {
    position: absolute;
    right: -15px;
    bottom: 15%;
    width: 21%;
    height: auto;
}

/* メリット */

.merit {
    padding: 50px 0 0;
}

.merit .merit_inner {
    padding: 0 0 30px;
}

/* ギフト券 */

.gift {
    padding: 60px 0 30px;
}

.gift h2 {
    margin-top: -70px;
}

.gift .gift_card {
    margin-left: -8px;
    animation: poyopoyo 2s ease-out infinite;
}

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

.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 .voice_inner {
    width: calc(100% - 40px);
    background: #fff;
    opacity: 0.9;
    margin: auto;
    border-radius: 30px;
    padding: 30px 0;
}

.voice .voice_inner:first-of-type{
    margin: 0 auto 30px;
}

.voice .voice_grid{
    margin: auto;
    width: calc(100% - 40px);
    display: grid;
    gap: 10px;
    grid-template-columns: 100px 1fr;
}

.voice .voice_grid p {
    text-align: left;
    font-size: 18px;
    margin: 0;
}

.voice .caution {
    font-size: 11px;
    color: #fff;
    margin: 0;
}