@charset "UTF-8";

/* L1 ########################################  ######################################## */
/* L2 ****************************************  **************************************** */
/* L3 ========================================  ======================================== */
/* L4 ----------------------------------------  ---------------------------------------- */


/* #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# PC・スマホ 共通設定 #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# */

br.sp {
	display: none;
}

/* L1 ######################################## タイトル ######################################## */

#title {
	position: relative;
	min-width: 980px;
	height: 1000px;
	text-align: center;
}

#title h2 {
	display: none;
}

#catch {
	position: absolute;
	top: 50%;
	left: 50%;
	white-space: nowrap;
	transform: translate(-50%, -50%);
}

#title p.en {
	color: #008ccf;
	font-family: "Ubuntu Condensed", sans-serif;
	font-size: 6.0rem;
}

#title p.ja {
	font-size: 2.0rem;
	color: #333333;
}
#title p.ja::before {
	content: "─";
	margin-right: 0.6em;
}
#title p.ja::after {
	content: "─";
	margin-left: 0.6em;
}

#title p.company-name {
	margin-top: 2em;
	font-size: 2.4rem;
}

/* L2 **************************************** 背景 **************************************** */

.bg {
	  position: fixed;
	  top: 0;
	  bottom: 0;
	  left: -50%;
	  right: -50%;
	  z-index: -1;
	  background-image: linear-gradient(-60deg, rgba(255, 255, 255, 0.5) 50%, rgba(0, 140, 207, 0.02) 50%);
	  
	  opacity: 0.5;
	  animation: slide 10s ease-in-out infinite alternate;
}

.bg.sub1 {
	  animation-direction: alternate-reverse;
	  animation-duration: 8s;
}

.bg.sub2 {
	animation-duration: 6s;
}


@keyframes slide {
	0% {
		transform: translateX(-25%);
	}
	100% {
		transform: translateX(25%);
	}
}

/* L1 ######################################## イントロダクション ######################################## */

#introduction {
	min-width: 980px;
	padding: 6em 0;
	color: #666600;
	font-size: 2.0rem;
	background: rgba(255, 255, 255, 0.85);
	text-align: center;
	box-shadow: 0 0 80px rgba(0, 0, 0, 0.06) inset;
}

/* L1 ######################################## 会社概要 ######################################## */

#company {
	min-width: 980px;
	padding: 6em 0;
	text-align: center;
}

#company h2 {
	display: inline-block;
	margin-bottom: 2em;
	padding: 0.5em 1em;
	font-size: 2.0rem;
	font-weight: normal;
	line-height: 1.0;
	background: rgba(0, 0, 0, 0.05);
}

/* L2 **************************************** テーブル **************************************** */

#company table {
	margin: 0 auto 2em auto;
	font-size: 1.8rem;
	border-collapse: collapse;
}

#company table th, td {
	font-weight: normal;
	padding: 0.5em 2em;
	border: 1px solid #cccccc;
}

#company table th {
	vertical-align: middle;
	white-space: nowrap;
	background: rgba(0, 0, 0, 0.05);
}

#company table td {
	text-align: left;
}

/* L2 **************************************** 会社地図 **************************************** */

#company div.map {
	margin: 1em 0;
	text-align: center;
}

#company div.map figure {
	display: inline-block;
	padding: 10px;
	text-align: center;
	
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#company div.map figure img,
#company div.map figure iframe {
	border: 1px solid #ffffff !important;
	
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#company div.map figure  * {
	vertical-align: bottom;
}

/* L1 ######################################## 楽曲使用許諾 ######################################## */

#lisencing {
	min-width: 980px;
	padding: 6em 0;
	background: #ffffff;
	text-align: center;
}

#lisencing h2 {
	display: inline-block;
	margin-bottom: 2em;
	padding: 0.5em 1em;
	font-size: 2.0rem;
	font-weight: normal;
	line-height: 1.0;
	background: rgba(0, 0, 0, 0.05);
}

#lisencing p {
	font-size: 1.8rem;
}

#lisencing p.mail {
	margin-top: 2em;
	color: #336699;
	font-size: 2.0rem;
}
#lisencing p.mail::before {
	content: "\f0e0";
	font-family: "FontAwesome";
	margin-right: 0.6em;
}

#lisencing p.mail a {
	color: #336699 !important;
}

/* L1 ######################################## バナー ######################################## */

#banner-tm {
	padding: 6em 0;
}

#banner-tm ul {
	width: 980px;
	margin: 0 auto;
	list-style-type: none;
	text-align: center;
}

#banner-tm ul li {
	width: 24%;
	display: inline-block;
	margin-left: 1px;
	margin-right: 1px;
}

#banner-tm ul li a {
	display: table-cell;
	padding: 15px;
	text-align: center;
	vertical-align: middle;
	background: rgba(255, 255, 255, 0.90);
	
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

#banner-tm ul li img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 78px;
}


/* L1 ######################################## fade-effect ######################################## */

.fade-effect {
	position: relative;
	top: 45px;
	opacity: 0;
	transition: top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s linear;
}

.fade-effect.fade-effect-on {
	top: 0;
	opacity: 1;
}