@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;600&family=PT+Sans:wght@400;700&display=swap");

/* 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%;
    font-family: 'Noto Serif JP', serif;
}

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.5em;
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: .05em;
    color: #272e53;
    -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;
}

button,
input[type='submit'],
input[type='button'] {
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
}

::-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%;
}


/* header */

#header {
    background: #fff;
    -webkit-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1);
}

#header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

#header .inner img {
    margin-top: 8px;
}

#header .back_to_toppage {
    display: block;
    padding: 10px 20px;
    -webkit-transition: .5s;
    transition: .5s;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    /* -webkit-box-shadow: 0px 3px 0px 0px #d02e2e;
    box-shadow: 0px 3px 0px 0px #d02e2e; */
    border: 1px solid #0c67b6;
    background: #0c67b6;
}

#header .back_to_toppage:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    #header .inner img {
        width: 168px;
        height: auto;
    }
    #header .back_to_toppage {
        font-size: 12px;
        padding: 8px 12px;
    }
}


/* footer */

#footer {
    text-align: center;
    background: #d1edf2;
}

#footer #copyright {
    font-size: 1.2rem;
    line-height: 48px;
    letter-spacing: 1px;
    color: #9f9e9e;
}

@media (max-width: 767px) {
    #footer #copyright {
        font-size: 1rem;
    }
}

#wrap {
    position: relative;
    min-height: 100%;
    padding-bottom: 60px;
}

#wrap #footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

#wrapper>.inner {
    padding-top: 0px;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    #wrapper>.inner {
        padding-top: 20px;
        padding-bottom: 50px;
    }
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0 40px;
    margin-bottom: 0rem;
    list-style: none;
    background: none;
    border-radius: 0;
}

.breadcrumb__item {
    font-size: 1.2rem;
    padding: 3px 0.5em 3px 0;
}

.breadcrumb__item a {
    color: #0c67b6;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.breadcrumb__item::after {
    content: "/";
    margin-left: 0.5em;
}

.breadcrumb__item:last-child {
    padding-right: 0;
}

.breadcrumb__item:last-child::after {
    content: none;
    margin-left: 0;
}


/*# sourceMappingURL=common.css.map */

.section-ttl {
    text-align: center;
    margin: 30px 0 40px;
    font-size: 3.2rem;
    color: #272e53;
}

.privacy-title {
    margin: 30px auto 10px;
    font-size: 2.3rem;
    font-weight: bold;
}

#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%;
    }
}