/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 共通 */
.section_bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
.section_bg>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
section {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

img {
    width: 100%;
    height: 100%;
}

.section_sp {
    display: none;
}

.section_box {
    display: grid;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta_img {
    display: grid;
}

/* fv */
.fv_box {
    display: grid;
}

/* cta */
.sec_cta_box {
    position: relative;
}
.input_mail_box {
    position: absolute;
    top: min(12.2vw, 122px);
    right: min(6.3vw, 63px);
    width: min(58vw, 580px);
    height: min(7vw, 70px);
}
form.myForm input[type="text"].input_mail {
    width: 100% !important;
    height: 100%;
    font-size: min(2.4vw, 24px);
    padding: min(2.4vw, 24px) min(4vw, 40px);
    box-sizing: border-box;
    background-color: #fff !important;
    border: 1px solid #c09468;
    border-radius: unset;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    -ms-border-radius: unset;
    -o-border-radius: unset;
}
form.myForm div.submit.cta_btn_box {
    position: absolute;
    right: min(3.5vw, 35px);
    bottom: min(3.5vw, 35px);
    margin-top: 0;
}
.cta_btn {
    display: grid;
    width: min(63vw, 630px);
    background: unset;
    border: unset;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

::-webkit-input-placeholder {
  color: #d4d1d1;
}

::-moz-placeholder {
  color: #d4d1d1;
}

:-ms-input-placeholder {
  color: #d4d1d1;
}

::-ms-input-placeholder {
  color: #d4d1d1;
}

::placeholder {
  color: #d4d1d1;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #d4d1d1;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #d4d1d1;
}


@media screen and (max-width: 750px) {
    .section {
        display: none;
    }
    .section_sp {
        display: block;
    }
    .sec_cta_box {
        width: 100%;
        height: min(42.67vw, 320px);
        padding: 0;
        background-color: #F6F1DB;
        box-sizing: border-box;
    }
    .input_mail_box {
        top: min(2.4vw, 18px);
        left: 50%;
        right: unset;
        width: min(92.8vw, 696px);
        height: min(11.74vw, 88px);
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
    form.myForm input[type="text"].input_mail {
        font-size: min(4vw, 30px);
        letter-spacing: 0.05rem;
        text-align: center;
        padding: min(4vw, 30px);
    }
    form.myForm div.submit.cta_btn_box {
        bottom: min(1.34vw, 10px);
        left: 50%;
        right: unset;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
    .cta_btn {
        width: min(96vw, 720px);
    }
}