@charset "utf-8";


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,
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;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

html,
body {
    color: #555;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a,
a:visited {
    text-decoration: none;
    color: #1977ec;
}

a:hover {
    color: #ec194a;
}

:root {
    --main-color: #473733;
    --sub-color: #a38e88;
    --deco-color:#ffc12b;
    --bg-color:#f7f6f4;;
}

body {
    font-family: "ZenKaku Gothic NEW";
    font-weight: 500;
    color: #333;
    background-color: var(--bg-color)
}

body.noscroll {
    overflow: hidden;
}

main {
    overflow: hidden;
}

.w126 {
    width: 100%;
    max-width: 1260px;
    margin: auto;
}

@media screen and (max-width:1300px) {
    .w126 {
        padding: 0 3%;
    }
}

.has-bg{
    background-image: linear-gradient(to bottom , #c3b5ac 93.1% ,#f7f6f4 93.1% 100%);
}


@media screen and (max-width:599px) {
    .sp_mt10 {
        margin-top: 10px;
    }

    .sp_mt20 {
        margin-top: 20px;
    }

    .sp_mt30 {
        margin-top: 30px;
    }

    .sp_mt40 {
        margin-top: 40px;
    }

    .sp_mt50 {
        margin-top: 50px;
    }

    .sp_mt60 {
        margin-top: 60px;
    }

    .sp_mb10 {
        margin-bottom: 10px;
    }

    .sp_mb20 {
        margin-bottom: 20px;
    }

    .sp_mb30 {
        margin-bottom: 30px;
    }

    .sp_mb40 {
        margin-bottom: 40px;
    }

    .sp_mb50 {
        margin-bottom: 50px;
    }

    .sp_mb60 {
        margin-bottom: 60px;
    }

    .sp_pb10 {
        padding-bottom: 10px;
    }

    .sp_pb20 {
        padding-bottom: 20px;
    }

    .sp_pb30 {
        padding-bottom: 30px;
    }

    .sp_pb40 {
        padding-bottom: 40px;
    }

    .sp_pb50 {
        padding-bottom: 50px;
    }

    .sp_pb60 {
        padding-bottom: 60px;
    }

    .sp_pt10 {
        padding-top: 10px;
    }

    .sp_pt20 {
        padding-top: 20px;
    }

    .sp_pt30 {
        padding-top: 30px;
    }

    .sp_pt40 {
        padding-top: 40px;
    }

    .sp_pt50 {
        padding-top: 50px;
    }

    .sp_pt60 {
        padding-top: 60px;
    }
}

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pc用
=======================================*/
@media screen and (max-width: 899px) {
    .pc {
        display: none;
    }
}

/*=====================================
*pc以外
=======================================*/
@media screen and (min-width: 900px) {
    .nopc {
        display: none;
    }
}

/*=====================================
*sp以外
=======================================*/
@media screen and (max-width: 599px) {
    .nosp {
        display: none;
    }
}

/*=====================================
*tablet_sp共通
=======================================*/
@media screen and (min-width: 900px) {
    .sp_tb {
        display: none;
    }
}

@media screen and (max-width: 899px) {
    .sp_tb {
        display: inherit;
    }
}

/*=====================================
*tablet用
=======================================*/
@media screen and (min-width: 900px) {
    .tb {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .tb {
        display: none;
    }
}

/*=====================================
*sp用
=======================================*/
@media screen and (min-width: 600px) {
    .sp {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    .sp {
        display: inherit;
    }
}