@charset "utf-8";
/**
 *
 * global: サイト共通
 *
 */
.pace { -webkit-pointer-events: none; pointer-events: none; -webkit-user-select: none; -moz-user-select: none; user-select: none; } .pace-inactive { display: none; } .pace .pace-progress { background: #33afc7; position: fixed; z-index: 2000; top: 0; right: 100%; width: 100%; height: 3px; }

/*--------------------------------------------------------------------------
	reset
---------------------------------------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,ins,kbd,q,samp,small,strong,
sub,sup,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;font-size:100%;vertical-align:baseline;background:transparent;}
*{-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}
ul,ol,li,dl,dt,dd{list-style-type:none;list-style-position:outside;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
ins{text-decoration:none;}
img{vertical-align:top;border:0;image-rendering: optimizeQuality;-ms-interpolation-mode: bicubic;}
del{text-decoration:line-through;}
hr{display:block;height:0;border:0;margin:0;padding:0;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
em,strong{ font-weight: bold;}

input,select,textarea{margin:0;padding:0;vertical-align:baseline;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}

img {max-width: 100%;}

/*--------------------------------------------------------------------------
	basic elements
---------------------------------------------------------------------------*/
html{
	overflow-y: scroll;
}
body{
	background: #fff;
	font-family:'Noto Sans Japanese', "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	font-size: 16px;
	color: #666666;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	letter-spacing:0.5px;
	min-width: 1180px;
}

a {
	color: inherit;
	outline:none;
	display:inline-block;
	text-decoration: underline;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
a:hover {text-decoration: none; color: #cb2c68;}
a:before,
a:after {
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

/****************************
 HELPER
****************************/
.centering {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.shadow {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
/*Inview*/
.inview {
	opacity: 0;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	opacity: 0;
	transform: translate(0,40px);
    -webkit-transform: translate(0,40px);
}
.show {
	opacity: 1;
	transform: translate(0,0);
    -webkit-transform: translate(0,0);
}

.entry-btn {
	text-align: center;
}
.entry-btn a {
	width: 420px;
	height: 70px;
	line-height: 70px;
	border-radius: 35px;
	background: #e9a63c;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}
.entry-btn a:hover{
	background: #143e6d;
}
/*--------------------------------------------------------------------------
	Tablet
---------------------------------------------------------------------------*/

@media all and (max-width: 1024px) {

}

/*--------------------------------------------------------------------------
	Smart Phone
---------------------------------------------------------------------------*/

@media all and (max-width: 767px){
	body {
		min-width: 320px;
	}

.entry-btn a {
	width: 90%;
	height: 50px;
	line-height: 50px;
	border-radius: 25px;
	font-size: 15px;
	margin: 0 auto;
}

}