@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,
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;
}
/* HTML5 display-role reset for older browsers */
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;
}

/*----------------------------------------------
common
----------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  color: #000;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", "ヒラギノ角ゴ Pro W6",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1.4;
  font-size: 1.4rem;
}
img {
  width: 100%;
  vertical-align: middle;
  height: auto;
}
strong {
  font-weight: bold;
}
a {
  text-decoration: none;
  color: initial;
}
.mincho {
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3,
    "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.gothic {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体",
    YuGothic, "Yu Gothic", sans-serif;
}
.sp {
  display: block;
}
.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}

/*----------------------------------------------
wrap
----------------------------------------------*/
.wrap {
  margin: 0 auto;
}

/*----------------------------------------------
header
----------------------------------------------*/
header {
  margin: 0;
}
.header_inner {
  height: 100px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_logo {
  margin: 0 auto;
}
.header_logo img {
  width: auto;
  height: 80px;
}

/* @media screen and (min-width: 768px) {
	.header_logo {
		width: 50%;
	}
} */

/*----------------------------------------------
section
----------------------------------------------*/
section {
  margin: 0;
  padding: 0;
  position: relative;
}

/*----------------------------------------------
privacy
----------------------------------------------*/
header {
  border-bottom: #a0a0a0 1px solid;
  margin-bottom: 70px;
}
.privacy {
  width: 640px;
  margin: 0 auto;
}
.privacy h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.privacy h2 img {
  max-width: 638px;
}
.privacy_inner {
  padding: 80px 4% 0;
  font-size: 2.4rem;
  line-height: 1.8;
}
.privacy_inner dt {
  font-size: 2.4rem;
  margin: 50px 0 0;
  font-weight: bold;
}
.privacy_inner dd {
  font-size: 2.4rem;
  margin-bottom: 50px;
}
.privacy_inner dd ul li {
  position: relative;
  padding-left: 1em;
}
.privacy_inner dd ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

footer {
  background-color: #222;
  margin-top: auto;
  padding: 10px;
}

footer .ft_logo {
  text-align: center;
  padding: 2% 10px;
}

footer .ft_logo img {
  width: 40%;
  max-width: 130px;
}

footer .ft_menu {
  text-align: center;
  margin-bottom: 20px;
}

footer .ft_menu a {
  color: white;
  font-size: 14px;
}

footer .copy {
  color: #fff;
  text-align: center;
  margin: 2% auto;
  font-size: 14px;
}

@media screen and (max-width: 600px) {
  .privacy {
    width: 80%;
    margin: 0 auto;
  }
  .privacy_inner {
    padding: 40px 4% 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .privacy_inner dt {
    font-size: 1.6rem;
    margin: 20px 0 0;
  }
  .privacy_inner dd {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.history-back-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  background-color: #000;
  cursor: pointer;
  transition: opacity 0.2s;
  display: none;
}

.history-back-btn:hover {
  opacity: 0.7;
  transition: opacity 0.2s;
}
