@charset "utf-8";
/* CSS Document */

/*-- =================================================
	基本レイアウト
================================================== --*/

/*　Wrapper　*/
.wrapper {
	width: 1000px;
	margin: 0 auto;
}

.cb-header img.menu_logo {
	float: left;
	margin-top: 10px;
}


/*スライドダウン*/
.slide-down {
  animation-name: slideDown;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-delay: 0s;
  transform-origin: 50% 50% 0;
  animation-duration: 0s;
  top: 0;/*トップからの表示する位置*/
}

@keyframes slideDown {
  0% {
    top: -16px;/*表示するスピード*/
  }
  100% {
    top: 0;
  }
}

/*スライドアップ*/
.slide-up {
  animation-name: slideUp;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-delay: 0s;
  transform-origin: 50% 50%  0;
  animation-duration: 0s;
  top: -70px;
}

@keyframes slideUp {
  0% {
    top: 0;
  }
  100% {
    top: -70px;
  }
}

/*-- =================================================
	HEAD 레이아웃
================================================== --*/
header {
  width: 100%;
}

/*  HEAD RECRUIT  */
.head_line_back {
	clear: both;
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: #2a2e88;
}

.head_line {
	font-size: 146.5%;
	font-family: GulimChe, Gulim, GungsuhChe, Gungsuh, Batang, BatangChe, sans-serif;
	text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	-moz-text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	-webkit-text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	font-weight: bold;
}

.head_line_text {
	float: left;
}

/*  HEADER 그룹  */
.header_group2 {
	width: 100%;
	height: 150px;/*HEAD의 높이*/
	/*margin-bottom: 20px;*/
	background: url(../../../images/head/mizutama.png) repeat-x;
}

/*  ヘッダーのh1テキスト  */
.header_h1 h1 {
	font-size: 93%;
	color:#333;
	padding-top: 5px;
	/*margin-bottom: 10px;*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*  ヘッダーのロゴ  */
.header_logo {
	float: left;
	margin-top: 25px;
	width: 250px;
	height: 70px;
	margin-right: 90px;
}

/*  ヘッダーのイメージ  */
.h_image1 {
	float: left;
	margin-top: 25px;
	width: 410px;
	height: 90px;
}

.h_image2 {
	float: right;
	margin-top: 25px;
	width: 220px;
	height: 90px;
	background: url(../images/head/head_image2.png) no-repeat;
}


/*  ヘッダーのお問合わせ  */
.header_contact {
	float: right;
	width: 220px;
	height: 80px;
	margin-top: 30px;
	background: #2a2e88;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
}

p.h_contact_text {
	color: #fff;
	text-align: center;
	padding-top: 10px;
	margin-bottom: 7px;
	font-weight: bold;
}


p.request_button a {
	display: block;
	width: 200px;
	height: 40px;
	color: #2a2e88;
	font-size: 116%;
	text-align: center;
	line-height: 45px;
	font-weight: bold;
	background: #fff;
	margin: 0px auto;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-box-shadow: 1px 1px 3px #999;
	-webkit-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

p.request_button a:hover {
	color: #09c;
	-webkit-transition: all 0.2s linear 0s;
	-moz-transition: all 0.2s linear 0s;
	-ms-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
	transition: all 0.2s linear 0s;
}



/*-- =================================================
	サブメインメニュー
================================================== --*/
.sub_menu {
	clear: both;
	width: 100%;
	height: 47px;
	border-bottom : solid 3px #999;
	background: #E5E5E5;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.sub_menu ul {
	width: 792px;
	height: 50px;
	margin-left: 198px;
	/*text-align: center;*/
}

.sub_menu ul li {
	float: left;
	width: 200px;
	height: 50px;
	text-align: center;
	line-height: 50px;
}

.sub_menu ul li.sub_menu_line {
	width: 2px;
	height: 50px;
	line-height: 50px;
	font-weight: bold;
	margin-right: 1px;
	color: #999;
}

.sub_menu ul li.sub_menu_item a {
	display: block;
	width: 195px;
	height: 47px;
	margin-left: 4px;
	text-align: center;
	font-size: 123.1%;
	font-weight: bold;
	-webkit-transition: all 0.2s linear 0s;
	-moz-transition: all 0.2s linear 0s;
	-ms-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
	transition: all 0.3s linear 0s;
}

.sub_menu ul li.sub_menu_item a:hover {
	color: #e60012;
	/*background: #EBEBEB;*/
	background: #EAFFFF;
	/*color: #fff;*/
	/*border-bottom: solid 3px #e60012;*/
	-webkit-transition: all 0.2s linear 0s;
	-moz-transition: all 0.2s linear 0s;
	-ms-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
	transition: all 0.1s linear 0s;
}

.sub_menu ul li.sub_menu_choice {
	width: 195px;
	height: 47px;
	margin-left: 4px;
	text-align: center;
	font-size: 123.1%;
	font-weight: bold;
	color: #e60012;
	background: #EAFFFF;
	/*border-bottom: solid 3px #e60012;*/
}

/*　 ページナビ 　*/
.page_navi {
	clear: both;
	width: 690px;
	height:30px;
	line-height: 30px;
	font-size: 85%;
	margin: 0 0 30px 10px;
}

.page_navi p {
	float: left;
}

.page_navi p a {
	color: #245386;
	padding-right: 5px;
}

.page_navi p a:hover {
	color: #09c;
}

.page_navi p.page_arrow {
	padding-right: 5px;
	font-size: 108%;
}

/*-- =================================================
	メインナビケーション
================================================== --*/



/*-- =================================================
	メインフレームのレイアウト
================================================== --*/
/*　 トップタイトル 　*/
.title_grp {
	width: 1000px;
	/*text-align: center;*/
	margin: 100px auto 50px;
	
}

.title_grp img {
	float: left;
	margin-left: 300px;
}

.title_grp p.stitle {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 35px;
	font-weight: bold;
	color: #333;
	padding-top: 25px;
}

.chui_gaki {
	width: 900px;
	text-align: center;
	clear: both;	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #f00;
	line-height: 20px;
	margin-left: 100px;
}

.title_grp p.manual {
	width: 1000px;
	/*height: 50px;*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 26px;
	font-weight: bold;
	color: #333;
}

.pdf {
	width: 1000px;
	height: 30px;
	text-align: center;
	clear: both;	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #3058b0;
	line-height: 30px;
}

.pdf a {
	color: #333;
}

.pdf a:hover {
	color: #F00;
}

/*　 トップキャンペーンテキスト 　*/
.title_campaign {
	width: 1000px;
	/*height: 300px;*/
	margin: 0px auto;
	font-size: 34px;
	font-weight: bold;
	line-height: 1.5em;
	text-align: center;
	color: #333;
}

/*　 メインボックス 　*/
.main_box {
	width: 1000px;
	/*height: 1350px;*/
	margin-bottom: 150px;
}

/*　 詳細ボックス１ 　*/
.main_image1 {
	width: 1000px;
	height: 5079px;
	background: url(../shosai/main_img10_jp.png) no-repeat;
}

.main_image2 {
	width: 1000px;
	height: 7830px;
	margin-bottom: 50px;
	background: url(../shosai/main_img20_jp.png) no-repeat;
}

/*　 詳細ボックス２ 　*/
.main_image2_1 {
	width: 1000px;
	height: 4648px;
	background: url(../shosai/main_img2_1_jp.png) no-repeat;
}

.main_image2_2 {
	width: 1000px;
	height: 3366px;
	background: url(../shosai/main_img2_2_jp.png) no-repeat;
}

/*　 マクアケ 　*/
.makuake {
	width: 700px;
	height: 534px;
	text-align: center;
	margin-left: 150px;
	margin-bottom: 50px;
}

.makuake a {
	display: block;
	width: 700px;
	height: 534px;
	text-align: center;
	background: url(../shosai/makuake.png) no-repeat;
}

.makuake a:hover {
	display: block;
	width: 700px;
	height: 534px;
	background: url(../shosai/makuake_on.png) no-repeat;
}

.makuake_text {
	width: 800px;
	margin: 20px 100px 50px;
	font-size: 19px;
	line-height: 1.5em;
	color: #333;
}

/*６つの理由*/
.riyu {
	width: 1000px;
	/*height: 12000xp;*/
}

/*　 理由１ 　*/
.riyu1 {
	width: 1000px;
	height: 450px;
	margin-bottom: 50px;
}

.riyu1_title1 {
	font-size: 19px;
}

.riyu1_image1 {
	float: left;
	width: 490px;
	height: 350px;
	padding-top: 20px;
	margin-bottom: 50px;
	margin-left: 10px;
}

.riyu1_text1 {
	float: right;
	width: 400px;
	height: 310px;
	padding-top: 100px;
	margin-left: 50px;
	margin-right: 50px;
	font-size: 21px;
	color: #333;
	line-height: 2em;	
}

/*　 理由２ 　*/
.riyu2 {
	clear: both;
	width: 1000px;
	height: 450px;
	margin-bottom: 50px;
}

.riyu2_title2 {
	clear: both;
	width: 990px;
	height: 20px;
	margin-left: 10px;
	font-size: 19px;
}

.riyu2_image2 {
	float: left;
	width: 490px;
	height: 350px;
	padding-top: 20px;
	margin-bottom: 50px;
	margin-left: 10px;
}

.riyu2_text2 {
	float: right;
	width: 400px;
	height: 310px;
	padding-top: 100px;
	margin-left: 50px;
	margin-right: 50px;
	font-size: 21px;
	color: #333;
	line-height: 2em;	
}

/*　 理由３ 　*/
.rec_title {
	clear: both;
	width: 1000px;
	height: 2704px;
}

.riyu3_title3 {
	clear: both;
	width: 990px;
	height: 20px;
	margin-left: 10px;
	font-size: 19px;
}

.riyu3 {
	width: 1000px;
	height: 316px;
	/*margin-bottom: 100px;*/
}

.riyu3_image3 {
	float: left;
	width: 490px;
	height: 350px;
	padding-top: 20px;
	margin-bottom: 50px;
	margin-left: 10px;
}

.riyu3_text3 {
	float: right;
	width: 400px;
	height: 310px;
	padding-top: 70px;
	margin-left: 50px;
	margin-right: 50px;
	font-size: 21px;
	color: #333;
	line-height: 2em;	
}

/*　 理由４ 　*/
.wrec_title img {
	width: 820px;
	height: 700px;
	margin-bottom: 119px;
}

.riyu4 {
	width: 1000px;
	height: 366px;
	/*margin-bottom: 50px;*/
}

.riyu4_title4 {
	clear: both;
	width: 990px;
	height: 20px;
	margin-left: 10px;
	font-size: 19px;
}

.riyu4_image4 {
	float: left;
	width: 490px;
	height: 350px;
	padding-top: 20px;
	margin-bottom: 50px;
	margin-left: 10px;
}

.riyu4_text4 {
	float: right;
	width: 400px;
	height: 310px;
	padding-top: 30px;
	margin-left: 50px;
	margin-right: 50px;
	font-size: 21px;
	color: #333;
	line-height: 2em;	
}

/*　 理由５ 　*/
.riyu5 {
	clear: both;
	width: 1000px;
	height: 3100px;
}

.riyu5_image5 {
	float: left;
	width: 500px;
	height: 971px;
	padding-top: 20px;
	margin-bottom: 50px;
	background: url(../shosai/shosai01_6_jp.png) no-repeat;
	
}

.riyu5_text {
	float: right;
	width: 500px;
	
	font-size: 21px;
	color: #333;
	line-height: 2em;
}

.riyu5_text1 {
	width: 500px;
	height: 180px;
	margin: 120px 0px 300px;
	font-size: 25px;
	font-weight: bold;
}

.riyu5_text1_1 {
	font-size: 18px;
	font-weight: normal;
}

.riyu5_text2 {
	width: 500px;
	/*height: 180px;*/
	margin: 120px 0px 420px;
	font-size: 25px;
}

/*　 機内搬入イメージ 　*/
.kinai_image {
	clear: both;
	width: 1000px;
	/*height: 1500px;*/
}

.kinai_text {
	width: 820px;
	height: 562px;
	margin-left: 90px;
	background: url(../shosai/kinai_text.png) no-repeat;
}

.kinai_image_img {
	width: 910px;
	height: 1330px;
	margin-left: 45px;
	background: url(../shosai/shosai01_6_jp.png) no-repeat;
}

/*　 マイクのプリアンプ 　*/
.mic_title {
	clear: both;
	width: 910px;
	height: 1005px;
	margin-left: 90px;
	margin-bottom: 100px;
}

.mic_text {
	width: 910px;
	height: 719px;
	margin-left: 90px;
	margin-bottom: 100px;
}

/*　 mogabiスマートギターの色々 　*/
.tec_title {
	width: 910px;
	height: 150px;
	text-align: center;
	font-size: 394%;
	font-weight: bold;
	line-height: 1.5em;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mogabi_tec {
	width: 910px;
	height: 932px;
	margin-left: 90px;
	margin-bottom: 100px;
}

/*　 mogabiスマートギターの多様な機能 　*/
.smari_kino1 {
	width: 910px;
	height: 4100px;
	margin-left: 90px;
	/*margin-bottom: 100px;*/
}

.smari_kino2 {
	width: 910px;
	height: 3350px;
	margin-left: 90px;
	/*margin-bottom: 100px;*/
}

.smari_kino3 {
	width: 910px;
	height: 1375px;
	margin-left: 90px;
	/*margin-bottom: 100px;*/
}

/*　 理由６ 　*/
.riyu6 {
	width: 1000px;
	/*height: 3000px;*/
	/*margin-bottom: 100px;*/
}

.silent1 {
	width: 1000px;
	height: 6000px;
	/*margin-left: 90px;*/
}


/*　　　　ページのトップへ　　　　*/
#page-top {
	position: fixed;
	bottom:0;
	right: 0;
}

#page-top a {
	display: block;
	width: 50px;
	height: 40px;
	padding-top:10px;
	line-height:15px;
	border:solid 1px #ccc;
	text-align: center;
	font-weight:bold;
	font-size:85%;
	color: #fff;
	border: solid 2px #ffffff;
	text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	-moz-text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	-webkit-text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	-webkit-box-shadow: 1px 1px 3px #999;
	border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0;	
	background: -moz-linear-gradient(top, #608ddb 0%, #1a4793 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#608ddb), 	color-stop(100%,#1a4793)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #608ddb 0%,#1a4793 100%); 	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #608ddb 0%,#1a4793 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #608ddb 0%,#1a4793 100%); /* IE10+ */
	background: linear-gradient(top, #608ddb 0%,#1a4793 100%); /* W3C */
	transition: all 1s 0.5inear 0s;
	-webkit-transition: all 0.5s linear 0s;
	-moz-transition: all 0.5s linear 0s;
	-ms-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
}

#page-top a:hover {
	color:#FF0;
	background:#547fce;
	border-radius:10px 10px 0 0;
	-moz-border-radius:10px 10px 0 0;
	-webkit-border-radius:10px 10px 0 0;
	transition: all 0.5s inear 0s;
	-webkit-transition: all 0.5s linear 0s;
	-moz-transition: all 0.5s linear 0s;
	-ms-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
}
