@charset "utf-8";
/*==========================================================================

   browser reset

==========================================================================*/
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;
}
header, hgroup, footer, section, article, details, menu, nav, aside, figure, figcaption {
	display: block;
}
a, a:focus {
	outline: 0;
}
img, hr {
	border: none;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
strong {
	font-weight: bold;
}

/*==========================================================================

   base set

==========================================================================*/
body {
	position: relative;
	color: #222;
	font: 400 13px/1 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased; /* for webkit アンチエイリアス */
	-webkit-text-size-adjust: 100%;
	background: #fff;
}
:root {
	--key-color: #dc0a17;
	--key-bg-color: #f5f6f7;
}
a {
	color: #000;
	text-decoration: none;
	transition: color .3s ease, background-color .3s;
}
a:hover {
	color: var(--key-color);
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
* {
	box-sizing: border-box;
}
a[href^="tel:"] {
    pointer-events: none;
}
.fa-up-right-from-square {
    margin-left: .75em;
}


/*==========================================================================

   utility style

==========================================================================*/
.align-center { text-align: center;}
.align-left { text-align: left;}
.align-right { text-align: right;}

.font-en01 {
	font-family: "Roboto Condensed", sans-serif;
}

.youtube {
	aspect-ratio: 16 / 9;
}
.br-sp {
	display: none;
}
.key-color {
    color: var(--key-color);
}

/*--------------------------------------------------

	js-animation

--------------------------------------------------*/
.js-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(.75,0,.175,1),transform 1.2s cubic-bezier(.75,0,.175,1);
}
.js-slide-up.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

.js-blur-fade {
  opacity: 0;
  filter: blur(6px);
  transition: opacity 1.2s cubic-bezier(.75,0,.175,1),transform 1.2s cubic-bezier(.75,0,.175,1);
}
.js-blur-fade.is-inview {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
}

