@charset "UTF-8";

/**
 * all css
 * #reset
 * #base
 * #style
 */

/* ==========================================================================
   #reset
========================================================================== */
/* 
  http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul, li {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==========================================================================
   #base
========================================================================== */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 12px;
	color: #333333;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
	animation: fadeIn 3s ease 0s 1 normal;
	-webkit-animation: fadeIn 3s ease 0s 1 normal;
}
img {
	width: 100%;
	display: block;
}
a:link {
	display: block;
	opacity: 1;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fuwafuwa {
	0% {
		transform:translate(0, 0) rotate(-7deg);
	}
	50% {
		transform:translate(0, -7px) rotate(0deg);
	}
	100% {
		transform:translate(0, 0) rotate(7deg);
	}
}
@keyframes fuwafuwa2 {
	0% {
		transform:translate(0, 0) rotate(7deg);
	}
	50% {
		transform:translate(0, 7px) rotate(0deg);
	}
	100% {
		transform:translate(0, 0) rotate(-7deg);
	}
}

/* ==========================================================================
   #style
========================================================================== */
.l-header, .l-content, .l-footer {
	max-width: 580px;
	margin: 0 auto;
}

.l-header {
	position: fixed;
	right: 15px;
	bottom: 15px;
	width: 28%;
	z-index: 999;
}

.p-index-hero {
	position: relative;
}

.p-index-hero .hero__bubble1 {
	position: absolute;
	right: 2%;
	bottom: 48%;
	width: 45%;
	animation: fuwafuwa 3s ease-in-out infinite alternate;
	z-index: 1;
}

.p-index-hero .hero__bubble2 {
	position: absolute;
	right: 30%;
	bottom: 42%;
	width: 35%;
	animation: fuwafuwa2 3s ease-in-out infinite alternate;
	z-index: 2;
}

.p-index-company iframe {
	width: 100%;
	padding: 0 8%;
}

@media screen and (min-width: 580px) {
	.l-header {
		width: 160px;
	}
	
	.p-index-company iframe {
		height: 550px;
	}
}

@media screen and (min-width: 1280px) {
	.l-header {
		right: 30px;
		bottom: 30px;
	}
}



































