@charset "UTF-8";
/************************************************************
 * reset
 ************************************************************/
*, *::before, *::after{
  box-sizing: border-box;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
a{
	margin: 0;
	padding: 0;
	font-size: 100%;
	text-decoration: none;
	vertical-align: baseline;
	background: transparent;
	word-break: break-all;
	color: #32312E;
}
a, img{
	border: none;
	vertical-align: top;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
body{
	line-height: 1.2;
	-webkit-text-size-adjust: none;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display: block;
}
li{
	list-style: none;
}
ul, ol, li{
	list-style-position: outside;
	vertical-align: bottom;
}
/* clearfix */
/************************************************************
 * common style
 ************************************************************/
html{
	font-size: 62.5%;
}
html, body{
	overflow-x: hidden;
}
img{
	width:100%;
}
.pc{ display: none !important; }
.sp{ display: block !important; }
@media (min-width: 751px){
  .pc{ display: block !important; }
  .sp{ display: none !important; }
}
/************************************************************
 * base style
 ************************************************************/
body{
	width: 100%;
	background: url("../img/body-bg.jpg") repeat;
	-webkit-background-size: 61px 61px;
	     -o-background-size: 61px 61px;
	        background-size: 61px 61px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	color: #3d342c;
	font-size: 1.6rem;
	line-height: 1.6;
	box-sizing: border-box;
	position: relative;
}
.f-small{
	font-size: 80%!important;
}
.f-large{
	font-size: 120%!important;
}
.alignleft{
	text-align: left;
}
.alignright{
	text-align: right;
}
.aligncenter{
	text-align: center;
}
.bold{
	font-weight: 600;
}
.c-or{
	color: #e2761e;
}
/* flex */
@media (min-width: 751px){
	.dispflex{
		display: flex;
		gap: 40px;
		-webkit-align-items: center;
		        align-items: center;
	}
	.dispflex.rev{
		-webkit-flex-direction: row-reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
	}
}
.dispinblock{
	display: inline-block;
}
/* layout */
.inner{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
}
/* hover */
@media (min-width: 751px){
	.hov{
		-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
		-webkit-transition: .3s ease-in;
		-moz-transition: .3s ease-in;
		-ms-transition: .3s ease-in;
		transition: .3s ease-in;
		opacity: 1;
		filter: alpha(opacity=100);
	}
	.hov:hover{
		filter: alpha(opacity=70);
		opacity: .7;
		text-decoration: none;
		cursor: pointer!important;
	}
	.hov:hover a{
		text-decoration: none;
	}
}
.btn{
	display: block;
	background: #379b37;
	box-shadow: 0px 3px 0px 0px rgba(23, 24, 24, 0.2);
	font-size: 2rem;
	line-height: 1.3;
	text-align: center;
	-webkit-border-radius: 60px;
	        border-radius: 60px;
	color: #FFF;
	padding: 2rem 3rem;
	position: relative;
	font-weight: bold;
}
.arrow{
	display: block;
	width: 10px;
	height: 10px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -5px;
	transform: rotate(45deg);
}
/*PC*/
@media (min-width: 751px){
	.arrow{
		width: 20px;
		height: 20px;
		right: 30px;
		top: 50%;
		margin-top: -10px;
	}
}
.btn .arrow{
	width: 10px;
	height: 10px;
	right: 15px;
	margin-top: -5px;
}

/* margin */
.mb1{
	margin-bottom: 1rem;
}
.mb2{
	margin-bottom: 2rem;
}
.mb3{
	margin-bottom: 4rem;
}
/*PC*/
@media (min-width: 751px){
	.mb1{
		margin-bottom: 1.5rem;
	}
	.mb2{
		margin-bottom: 3rem;
	}
	.mb3{
		margin-bottom: 5rem;
	}
}

/*********************************	header *********************************/

header{
	width: 100%;
	padding: 2rem 0;
}
header .dispflex{
	display: flex;
	-webkit-align-items: center;
	        align-items: center;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
header .logo{
	display: block;
	width: calc(200 / 750 * 100vw);
	max-width: 103px;
}
header .logo img{
	vertical-align: bottom;
}
header .btn{
	padding: 1.5rem 3rem 1.5rem 2rem;
	font-size: 1.4rem;
}
.notice-closed-wrapper {
  text-align: center;
}
.notice-closed {
  text-align: center; !important;     /* テキスト中央揃え */
  font-weight: bold;
  margin: 20px auto;         /* 上下の余白＋中央寄せ */
  padding: 10px 15px;
  border: 2px solid #3d3d3d;
  display: inline-block;     /* 横幅をテキスト分だけに */
  background-color: #fff;
}



/* pc */
@media (min-width: 751px){
	header{
		padding: 3rem 0;
	}
	header .btn{
		width: 260px;
		font-size: 2rem;
	}
}

/* foot
========================= */
footer{
	padding: 3rem 0;
}
footer .copy{
	text-align: center;
	opacity: 0.75;
	font-size: 1.2rem;
}







