@charset "utf-8";

/*======================================================================
　リセット
======================================================================== */

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - https://richclarkdesign.com 
Twitter: @rich_clark
*/
 
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, 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;
}
 
body {
    line-height:1;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
    display:block;
}
 
ol,ul,li {
    list-style:none;
}
 
blockquote, q {
    quotes:none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
		text-decoration: none;
}
 
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
 
del {
    text-decoration: line-through;
}
 
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
img {
	vertical-align: top;
	font-size: 0;
	line-height: 0;
	-ms-interpolation-mode: bicubic;
	}	
	
iframe {
	vertical-align: bottom;
	display: block;
	}


i, cite, em, var, address, dfn {
	font-style: normal;
	}


/*======================================================================
　クリアフィックス
======================================================================== */

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}


/*======================================================================
　ベーシック
======================================================================== */

* {
	box-sizing: border-box;
	backface-visibility: hidden;
	}

html, body {
	font-family: "Noto Sans Japanese", sans-serif;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: 1px;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	}
	
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: inherit;
	font-weight: inherit;
	}

a {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	display: block;
	width: 100%;
	height: 100%;
	}

a[href*="tel:"],
a[href*="mailto:"] {
	display: inline !important;
	}

span {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	}

img {
	width: 100%;
	}
	
*:before,
*:after {
	font-family: "Noto Sans Japanese", sans-serif;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	}
		
		
input, select {
	font-family: "Noto Sans Japanese", sans-serif;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	border: none;
	background: transparent;
	letter-spacing: 2px;
	}

input, select, label {
	vertical-align:middle;
	}

input:not([type="text"]), select, label {
	cursor: pointer;
	}

input[type="button"],
input[type="submit"] {
	-webkit-appearance: none; 
	}

input:focus {
	outline: none;
	}



/*----------------------------------------------
　PC・SP切り替え
------------------------------------------------ */	
		
@media screen and (min-width:700px) {

.sp {
	display: none !important;
	}
	
} 

		
@media screen and (max-width:700px) {

.pc {
	display: none !important;
	}
	
} 

/*----------------------------------------------
　ローディング
------------------------------------------------ */	

/* ローディング関係ない部分のCSS */
.button{
  background:#222;
  border:1px solid #222;
  border-radius:5px;
  color:#fff;
  display:block;
  height:60px;
  line-height:60px;
  margin:30px auto;
  text-align:center;
  width:600px;
}
.button:hover{
  background:#fff;
  color:#222;
}
img{
  max-width:100%;
}
 
 
 
/* ローディングの背景部分のCSS */
.loader{
  background:#000;
  height:100%;
  left:0;
  position:fixed;
  top:0;
  width:100%;
  z-index: 999999999;
}
 
/* ローディングのアニメーション部分のCSS (https://projects.lukehaas.me/css-loaders/) */
.loader-animation,
.loader-animation:before,
.loader-animation:after {
  background:#ffffff;
  -webkit-animation:load1 1s infinite ease-in-out;
  animation:load1 1s infinite ease-in-out;
  width:1em;
  height:4em;
}
.loader-animation {
  height:10px;
  left:50%;
  margin:-5px 0 0 -5px;
  position:absolute;
  top:50%;
  width:10px;
  color:#ffffff;
  text-indent:-9999em;
  font-size:10px;
  -webkit-transform:translateZ(0);
  -ms-transform:translateZ(0);
  transform:translateZ(0);
  -webkit-animation-delay:-0.16s;
  animation-delay:-0.16s;
}
.loader-animation:before,
.loader-animation:after {
  position:absolute;
  top:0;
  content:'';
}
.loader-animation:before {
  left:-1.5em;
  -webkit-animation-delay:-0.32s;
  animation-delay:-0.32s;
}
.loader-animation:after {
  left:1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}



/*----------------------------------------------
ページトップ
------------------------------------------------ */	

@media screen and (min-width:600px) {
	
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1;
	background: #ffffff;
	width: 60px;
	height: 60px;
	opacity: 0.8;
	border-radius: 5%;
	}

#pagetop a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
  z-index: 1;
}

#pagetop a:before{
  content: '';
  width: 13px;
  height: 13px;
  border-top: solid 4px white;
  border-left: solid 4px white;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 35%;
  right: 35%;
  margin-top: -4px;
}

}



@media screen and (max-width:600px) {
	
#pagetop {
	position: fixed;
	bottom: 2vw;
	right: 2vw;
	width: 12vw;
	z-index: 99999999;
	}

}
