@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 {
	width: 100%;
	margin: 0 auto;
	position: relative;
	height: 76px;
	display: flex;
	align-items: center;
	background-color: #fff;
	z-index: 10;
	box-shadow: 0px 8px 3px -3px rgba(0,0,0,0.05);
}
.header_inner {
	width: 640px;
	margin: 0 auto;
	padding: 0 33px;
	box-sizing: border-box;
}
.header_logo {
	width: 258px;
}

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


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

@media screen and (min-width: 768px) {
	section {

	}
}

/*----------------------------------------------
privacy
----------------------------------------------*/
.privacy {
	width: 640px;
	margin: 0 auto;
	padding-top: 73px;
}
.privacy h2 {
	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 {}
.privacy_inner dd ul li {
	position: relative;
  padding-left: 1em;
}
.privacy_inner dd ul li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}
.privacy_inner a {
	word-break: break-all;
}
.privacy .entry_box {
	margin: 100px 0 120px;
}
.privacy .entry_box .entry_btn {
	text-align: center;
}
.privacy .entry_box .entry_btn a {
	display: block;
	background: #9C8F37;
	box-shadow: 0 3px 7px rgb(0 0 0 / 30%);
	color: white;
	text-align: center;
	width: 85%;
	margin: 0 auto;
	font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: 700;
	padding: 1.2em 4%;
	border-radius: 50px;
	position: relative;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	margin-bottom: 40px;
	border: none;
	cursor: pointer;
}
.privacy .entry_box .entry_btn a:hover {
	-webkit-transform: scale(1.04);
	-ms-transform: scale(1.04);
	transform: scale(1.04);
	color: white;
}
.privacy .entry_box .entry_btn a:after {
	border-top: 2px solid white;
	border-right: 2px solid white;
	display: block;
	width: 10px;
	height: 10px;
	content: "";
	position: absolute;
	top: 50%;
	right: 4%;
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	-ms-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}


