@charset "utf-8";

/* ************************************** _

タイトル：base.css

概要：全ページ共通となるベースCSSファイル

_ ************************************** */


/* kill 'Browser standard style'
---------------------------------------------------------------------------- */
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	min-height: 0 !important;
	min-width : 0 !important;
	/*outline: 2px solid blue;*/
}

body,
h1,h2,h3,h4,h5,h6,
p,ul,ol,dl,dt,dd,li,table,th,td,
form,select,option,address,pre,
strong,em{
	font-size:100%;
	font-style:normal;
	font-weight:normal;
	margin:0;
	padding:0;
	text-decoration:none;
}

/* Re style
---------------------------------------------------------------------------- */
a:link,a:visited{
	text-decoration:underline;
	color:#3688BA;
}
a:hover,a:active{
	text-decoration:underline;
	color:#003C79;
}

strong { font-weight: bold; }
em     { font-style: normal; }

img {
	border: 0;
	max-width: 100%;
	vertical-align: bottom;
  	height: auto;
	 image-rendering: -webkit-optimize-contrast !important;
}

hr { display:none; }

p {
	margin-top: 0;
	padding-bottom: 0;
}

li { margin: 0; list-style: none; }

ul ul, ol ul, ul ol, ol ol,dl ul, dl ol, dl dl, td td, dt label { font-size: 100%; }

table { border-collapse: collapse; }


/* html5
---------------------------------------------------------------------------- */
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary
{
	display:block;
}

html, body {
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
}
#page{
	background: #FFFFFF;
}


/* 共通
---------------------------------------------------------------------------- */
.only-pc{ display: block; }
.only-sp{ display: none; }
@media screen and (max-width: 768px) {
	.only-sp{ display: block; }
	.only-pc{ display: none; }
}

/* body 
---------------------------------------------------------------------------- */
body{
	padding: 0;
	color: #1a1a1a;
	font-size: 1em;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2;
	-webkit-text-size-adjust: none;
}



/*ボタン包括*/
.btn-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 840px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 940px) {
	.btn-wrap{
		flex-direction: column;
		justify-content: center;
		text-align: center;
		max-width: 400px;
		width: 100%;
		margin: 0 auto;
	}
}
/*ボタン >*/
.btn_arrowR{
	max-width: 300px;
	width: 100%;
	margin: 0 0 20px 0;
	text-align: center;
	border-radius: 30px;
	position: relative;
	transition: all 0.3s;
}
.btn_arrowR a{
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	padding: 10px 20px 10px 20px;	
	position: relative;
	letter-spacing: 0.2em;
}
.btn_arrowR a:after{
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.3s;
}
.btn_arrowR a:hover:after{
	right: 10px;
}

.black{ background: #1a1a1a; }


/*ボタン位置*/
.center{ margin: 0 auto 0 auto; }


/* wrapper
---------------------------------------------------------------------------- */
.wrapper{
	margin: 0 auto 50px auto;
	max-width: 900px;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.wrapper{
		margin: 0 auto;
		max-width: 768px;
		width: 100%;
	}
}







