@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&subset=japanese");
:root {
    --main_color: #ab8317;
    --sub_color: #ba3f63;
    --sub_color_dark: #aa2e53;
}


/* 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 {
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    vertical-align: top;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}

a img {
    border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

html,
body {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: .05em;
    color: #222;
    background: #fff;
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 767px) {
    body {
        letter-spacing: .5px;
    }
}

body,
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

p {
    font-size: 1.5rem;
    line-height: 1.75;
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #acacac;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #acacac;
}

::-ms-input-placeholder {
    /* Others */
    color: #acacac;
}

::placeholder {
    /* Others */
    color: #acacac;
}


/* common */

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
}

.section-ttl {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    margin-top: 10px;
    font-size: 3rem;
    letter-spacing: 0.05em;
    color: var(--main_color);
    text-align: center;
}

.privacy-title {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    margin: 30px auto 10px;
    font-size: 2.3rem;
    color: var(--main_color);
}

#antisocial .privacy-title {
    margin: 50px auto 10px;
}

.privacy-sub-title {
    margin: 40px auto 7px;
    font-size: 1.9rem;
    font-weight: bold;
}

.p-mt {
    margin-top: 17px;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .section-ttl {
        font-size: 2.4rem;
        font-feature-settings: "palt";
    }
}

@media screen and (max-width: 1200px) {
    .wrap {
        width: 88%;
    }
}