﻿@import url(http://fonts.googleapis.com/css?family=Open+Sans:600,700|Montserrat:400,700);


/****************************************************************
****************************************************************

 初期設定

****************************************************************
*****************************************************************/
html {
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

body {
	padding: 0;
	margin: 0 auto;
	line-height: normal;
	background: #fafafa;
	color: #545454;
	font-family: "Open Sans", sans-serif;
	font-weight: normal;
}

a {
	text-decoration: none;
	color: #;
}

a:hover,
a:active,
a:focus {
	outline:none;
}

div, ol, ul,dl, dt, dd,
form,
h1, h2, h3, h4, h5, h6,
header, footer, nav, section, article, aside, hgroup, menu, nav, section {
    display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6, h7 {
	font-size: 1em;
	line-height: normal;
	font-weight: normal;
}

p {
	margin: 0;
}

img {
	border: none;
}

ol, ul {
	list-style-type: none;
}



small {
	font-size: 0.86em;
	line-height: normal;
}



/****************************************************************
****************************************************************

 ラッッピング

****************************************************************
*****************************************************************/
.overwrap {
	width: 100%;
	position: relative;
	z-index: 1;
}


/****************************************************************
****************************************************************

 汎用・共通

****************************************************************
*****************************************************************/
.width_wrap {
	width: 100%;
	margin: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}

@media screen and (min-width: 980px) {
.width_wrap {
	width: 980px;
}
}


h2, h3, h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight:700;
}

.block {
	padding: 50px 0;
	/zoom : 1;
}

.block:after { content : ''; display : block; clear : both; height:0; }

.block > h3,
.block p {
	margin-bottom: 1em;
}

/*  ブロック見だし  */
h3.block_ttl {
	margin: 0.5em auto;
	font-size: 40px;
}

.block h4 {
	margin: 0.5em auto 1em;
	font-size: 26px;
}


/*  ブロック本文  */
.block p {
	font-size: 18px;
}


/*  ボタン  */
.btn {
	text-align: center;
	margin: 0 auto;
}

.square_btn {
    position: relative;
    display: inline-block;
	border-radius: 25px;
	box-shadow:2px 2px 2px #555;

	width: 450px;
	margin: 0 auto;
	text-align: center;
	padding: 25px 20px;
    font-weight: bold;
    text-decoration: none;
    color: #FFF;
    background: #990000;
    transition: .4s;
	font-size: 27px;
  }

.square_btn:hover {
    background: #a31919;
}


/*  マウスオーバー  */
a {
     -webkit-transition: opacity 0.5s ease-in-out;
     -moz-transition: opacity 0.5s ease-in-out;
     -o-transition: opacity 0.5s ease-in-out;
     transition: opacity 0.5s ease-in-out;
}

a:hover {
	opacity: 0.7;	
    filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}


.block ul img {
	width: 100%;
	height: auto;
}


/****************************************************************
****************************************************************

 ヘッダ

****************************************************************
*****************************************************************/
#header {
	width: 100%;
	display: block;
	text-align: center;
	height: 80px;
	background-color: rgba(30, 30, 60, 0.87);
	padding: 1px;

	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

#header > .width_wrap {
	position: relative;
}
	
	
/*  タイトル周り  */
#header h1 {
	display: block;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 48px 48px;
	text-align: left;
	padding-left: 55px;
	font-weight: normal;

}

#header h1 > a {
	color:#fff;
	font-size: 38px;
	line-height: 58px;
}

@media screen and (max-width: 979px) {
#header {
	height: auto;
}
	
#header h1 {
	background-size: 36px 36px;
	padding-left: 40px;
	margin-left: 10px;
	color:#fff;
}
}



/****************************************************************
****************************************************************

 グロナビ

****************************************************************
*****************************************************************/
#menu {
	position: absolute;
	top: 14px;
	right: 0;
}

#menu li {
	display:inline-block;
	*display: inline;
    *zoom: 1;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1;
	border-left: solid 1px #adadc7;
	font-size: 28px;
}

#menu a {
	display: block;
	margin: 0 8px;
	color: #fff;
	font-size: 15px;
	-webkit-text-shadow: 0px 0px 20px rgba(0,0,0,1);
	-moz-text-shadow: 0px 0px 20px rgba(0,0,0,1);
	text-shadow: 0px 0px 20px rgba(0,0,0,1);
	font-size: 28px;
}



.lang > a {
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 15px 15px;
	padding-left: 20px;
}



a.jpn {
	background-image: url(http://search.daisyo.co.jp/images/tel2.png);
	width: auto;
}





/****************************************************************
****************************************************************

 ファーストビュー

****************************************************************
*****************************************************************/
#firstview {
	text-align: center;
	position: relative;
	margin-top: -50px;
	background-color: #333;
	/* background-image: url(../images/view_01.jpg); */
	background-repeat: no-repeat;
	background-position: center center;	
}

#firstview:after{
    content:'';
    position: absolute;
    z-index: -1;
    top: 50%;
    bottom: 0;
    left:15px;
    right:15px;
	
    /*影を入れる*/
    -webkit-box-shadow :0 0 40px rgba(0,0,0,0.7);
    -moz-box-shadow: 0 0 40px rgba(0,0,0,0.7);
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
 
    /*角丸にする*/
    -moz-border-radius: 100px / 40px;
    -o-border-radius: 100px / 40px;
    border-radius: 100px / 40px;
}

.flexslider {
	height: 500px;
	overflow: hidden;
	display: block;
	margin: 0 auto;
	text-align: center;
	z-index:1;
}

.flexslider h2 {
	display: block;
	text-align: center;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 0;
	color: #fff;
	font-size: 54px;
	-webkit-text-shadow: 0px 0px 20px rgba(0,0,0,1);
	-moz-text-shadow: 0px 0px 20px rgba(0,0,0,1);
	text-shadow: 0px 0px 20px rgba(0,0,0,1);
	z-index:3;
}

ul.slides,
ul.slides li {
	display: block;
	margin: 0 auto;
}

/*
ul.slides img {
	height: 100%;
	width: auto;
	display: block;
	margin: 0 auto;
}
*/

ul.slides li {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 0;
	padding-top:500px;
}

.v1 {
	background-image: url(../images/view_01.jpg);
}

.v2 {
	background-image: url(../images/view_02.jpg);
}

.v3 {
	background-image: url(../images/view_03.jpg);
}

@media screen and (max-width: 979px) {
.v1 {
	background-image: url(../images/view_01_fix.jpg);
}

.v2 {
	background-image: url(../images/view_02_fix.jpg);
}

.v3 {
	background-image: url(../images/view_03_fix.jpg);
}
}

@media screen and (max-width: 480px) {
#firstview {
	margin-top: 0;
}

.flexslider {
	height: 260px;
}

ul.slides li {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 0;
	padding-top: 260px;
}

.flexslider h2 {
	font-size: 48px;
	margin-top: -66px;
}
}


/****************************************************************
****************************************************************

 SNS＿プラグイン

****************************************************************
*****************************************************************/
#social_plugin {
	width: 980px;
	margin: 20px auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
}

#social_plugin div {
	display: inline-block;
	*display: inline;
    *zoom: 1;
	vertical-align: top;
	margin: 0 6px;
}

@media screen and (max-width: 979px) {
#social_plugin {
	width: 100%;
}
}




/****************************************************************
****************************************************************

 コンテンツ

****************************************************************
*****************************************************************/
/******  セレクタ  ******/
.linkmenu,
.linkmenu_two {
	margin: auto;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;

}

.linkmenu li,
.linkmenu_two li {
	display:inline-block;
	*display: inline;
    *zoom: 1;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;

	line-height: 1.8em;
	padding: 0 0 20px;
	background: #fff;
	
	-webkit-box-shadow :0 0 10px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.4);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);

	text-align: left;
}

.linkmenu li:first-child {
	margin-right: 1px;
}

.linkmenu li:last-child {
	margin-left: 1px;
}


/*  カテゴリーネーム  */
.linkmenu h3,
.linkmenu_two h3 {
	color: #333;
	font-size: 30px;
	margin: 1em 20px;
}

.linkmenu img {
	width: 100%;
}


.linkmenu_two li {
	margin: 20px;
	width: 280px;
}

.linkmenu_two p {
	font-size: 16px;
	line-height: 2em;
	margin: 1em 10px;	
	height: 6em;

	z-index: 1;
}








@media screen and (max-width: 979px) {
.linkmenu li,
.linkmenu_two li {
	width: 47%;
	margin: 10px 5px;
}
}


@media screen and (max-width: 480px) {
.linkmenu,
.linkmenu_two {
	width: 95%;
}

.linkmenu li,
.linkmenu_two li {
	margin: 10px;
	width: 95%;
}
}




/****************************************************************
****************************************************************

 グリーティング＿トップページ

****************************************************************
*****************************************************************/
/*  グリーティング  */
#greet {
	background: #dbdbee;
	text-align: center;
}

#greet p {
	text-align: left;
	font-size: 16px;
	line-height: 2em;
	overflow: hidden;
	height: 10em;
	
	position: relative;
	z-index: 1;
}

#greet p:after {
  position: absolute;
  display: block;
  content: '…';
  width: 16px;
  height: 2em;
  right: 0px;
  bottom: 0px;
  background: #dbdbee;
  z-index: 2;
}

/*  サイドバー  */
.cores_box,
.fb_tl_box,
.weibo_tl_box {
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}

.cores_box {
	padding-right: 20px;
	width: 450px;
}

.fb_tl_box,
.weibo_tl_box {
	width: 230px;
	background: #fff;
}

.fb_tl_box {
	margin-right: 10px;
}

@media screen and (max-width: 979px) {
.cores_box {
	display: none;
}

.fb_tl_box,
.weibo_tl_box {
	display: block;
	float: none;
	width: 90%;
	margin: 10px auto;
}
}






/****************************************************************
****************************************************************

 フォーム＿トップページ

****************************************************************
*****************************************************************/
/*  コンタクト  */
#contact {
	text-align: center;
	background: #21203c;
}

#contact h3.block_ttl {
	color: #fff;
}

#contact_form,
#wpcf7-f4-o1 {
	text-align: left;
}

#wpcf7-f4-o1 fieldset {
	border: none;
}

#wpcf7-f4-o1 label {
  min-height: 56px;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
}

#wpcf7-f4-o1 input,
#wpcf7-f4-o1 textarea {
  margin: 0;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: solid 1px #e8e8e8;
}

#wpcf7-f4-o1 input[type="text"],
#wpcf7-f4-o1 input[type="tel"],
#wpcf7-f4-o1 input[type="email"] {
  height: 36px;
  width: 450px;
  padding: 10px 18px;
  line-height: 17px !important;
}

#wpcf7-f4-o1 textarea {
  width: 100%;
  height: 246px;
  padding: 10px 18px;
  resize: none;
}

#wpcf7-f4-o1 input:focus,
#wpcf7-f4-o1 textarea:focus {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

/*  ボタン  */
#wpcf7-f4-o1 .pull {
	padding: 30px 0;
	text-align: center;
}

#wpcf7-f4-o1 input[type="reset"],
#wpcf7-f4-o1 input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
	
	font-size: 18px;
	line-height: 18px;
	padding: 0.65em 1.35em;
	margin: 0 20px;
	border: 3px solid #fff;

	background: #21203c;
	color: #fff;
}

#wpcf7-f4-o1 .action:hover {
	background: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 766px) {
#wpcf7-f4-o1 input[type="text"],
#wpcf7-f4-o1 input[type="tel"],
#wpcf7-f4-o1 input[type="email"]{
  width: 100%;
  float: none;
}
}


#wpcf7-f4-o1 {
	position: relative;
}

.policy_box {
	position: absolute;
	top: 0;
	right: 0;
	
	display: block;
	width: 450px;
	height: 200px;
	overflow-x: hidden;
	overflow-y: scroll;
	
	color: #fff;
	border: 1px solid #333253;
	padding: 0 1em;
}

.policy_box strong {
	display: block;
	border: 1px solid #777;
	padding: 0.25em 1em;
}
	
.policy_box p {
	font-size: 90%;
	margin: 1em auto;
}

.listin {
	font-size: 83%;
	list-style-type: disc;
	margin: 0 0 1em 1.6em;
}

@media screen and (max-width: 980px) {
.policy_box {
	position: static;
	width: 90%;
	margin: auto;
}
}

@media screen and (max-width: 480px) {
.policy_box {
	width: 100%;
}
}





/****************************************************************
****************************************************************

 フッタ

****************************************************************
*****************************************************************/
#footer {
	margin: 0;
	overflow: hidden;
	color: #fff;
	
	background-image: url(../images/ftr_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.over_clr {
	background: rgba(15, 50, 90, 0.95);
	padding: 20px 0 0;
}

#footer .width_wrap {
	position: relative;
	text-align: left;
}

#footer strong {
	display: block;
	background-image: url(../images/logomark.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 48px 48px;
	text-align: left;
	padding-left: 55px;
	margin-bottom: 30px;
	font-weight: normal;
}

#footer a {
	color: #fff;
}

#footer strong > a {
	font-size: 18px;
	line-height: 48px;
}


/*  フッタメニュー  */
.ft_menu li {
	margin: 5px auto;
}

.ft_menu a {
	font-size: 14px;
	display: inline !important;
	padding: 0.5em 0.5em 0.5em 0;
}

.ft_menu a:hover {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;	
	border-radius: 3px;
	color: #00428f !important;
	background: #fff;
}


/*  コピーライト  */
.cp {
	display: block;
	background: #263648;
	line-height: 1;
	text-align: center;
	padding: 1em 0 7em 0;
	margin-top: 20px;
	font-size: 11px;
}



/****************************************************************
****************************************************************

 下位共通

****************************************************************
*****************************************************************/
#pagetitle {
	text-align: center;
	margin-top: -50px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	height: 220px;
	position: relative;
}

#pagetitle:after{
    content:'';
    position: absolute;
    z-index: -1;
    top: 50%;
    bottom: 0;
    left:15px;
    right:15px;
	
    /*影を入れる*/
    -webkit-box-shadow :0 0 40px rgba(0,0,0,0.7);
    -moz-box-shadow: 0 0 40px rgba(0,0,0,0.7);
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
 
    /*角丸にする*/
    -moz-border-radius: 100px / 40px;
    -o-border-radius: 100px / 40px;
    border-radius: 100px / 40px;
}

#pg_ttl h2 {
	display: block;
	text-align: center;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 35%;
	left: 0;
	color: #000000;
	font-size: 54px;


	z-index:3;
}
#pg_ttl h1 {
	display: block;
	text-align: center;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 75%;
	left: 20%;
	color: #000000;
	font-size: 25px;
	z-index:3;
}

/*  各ページイメージ  */
.c1 {
	background-image: url(../images/ptl_bg_c1.jpg);
	background-size: cover;
}

.c2 {
	background-image: url(../images/ptl_bg_c2.jpg);
	background-size: cover;
}

.c3 {
	background-image: url(../images/ptl_bg_c3.jpg);
	background-size: cover;
}

.c4 {
	background-image: url(../images/ptl_bg_c4.jpg);
	background-size: cover;
}
.c5 {
	background-image: url(../img/c5.jpg);
	background-size: cover;
}


/*  3層目フォーマット  */
#third_containts .block {
	text-align: left;
	padding: 0;
}

#third_containts .block img {
	margin: auto auto 20px;
	width: auto;
	height: auto;
}

#third_containts .block h3 {
	margin: 20px auto;
	font-size: 30px;
}

#third_containts .block h4 {
	margin: 10px auto;
	font-size: 24px;
}

#third_containts .block p {
	font-size: 16px;
	line-height: 1.8em;
}

.width_wrap.clm_back {
	background: #fff !important;
	padding: 20px;
	color: #4f5a6e;
}





#third_containts .width_wrap.clm_back .aligncenter {
	clear: both;
	margin: 0 auto 1em;
}

#third_containts .width_wrap.clm_back .alignright {
	float: right;
	margin: 0 0 1em 1em;
}

#third_containts .width_wrap.clm_back .alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

#third_containts .width_wrap.clm_back .alignnone {
	float: none;
	clear: both;
}

#third_containts .width_wrap.clm_back img.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1em;
}


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

#third_containts .width_wrap.clm_back img {
	max-width:100%;
	height:auto;
}

#pg_ttl h2 {
	font-size: 24px;
}
}


@media screen and (max-width: 480px) {
#pg_ttl h2 {
	top: 45%;
	font-size: 20px;
}
}




/****************************************************************
****************************************************************

 テーブル

****************************************************************
*****************************************************************/
table.type04 {
	border-collapse: separate;
	border-spacing: 1px;
	text-align: left;
	line-height: 1.5;
	border-top: 1px solid #ccc;
}
table.type04 th {
	width: 150px;
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
}
table.type04 td {
	width: 400px;
	padding: 10px;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
}


/****************************************************************
****************************************************************

 コンテンツ個別スタイル

****************************************************************
*****************************************************************/
.sign {
	margin: 10px auto;
	font-size: 16px;
	text-align: right;
}

.sign span {
	display: block;
	font-size: 13px;
}


.brand_box {
	margin: auto;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.brand_box li {
	display:inline-block;
	*display: inline;
    *zoom: 1;
	vertical-align: top;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	
	width: 300px;
	line-height: 1.8em;
	padding: 0 0 20px;
	margin: 10px;
	background: #fff;
	
	-webkit-box-shadow :0 0 10px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.4);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);

	text-align: left;
}

.brand_box li h3,
.brand_box li p {
	margin: 1em 20px;
}





/****************************************************************
****************************************************************

　ドロワーメニュー	

****************************************************************
*****************************************************************/
/*  トグル  */
.sb-toggle-right {
	display: none;
}	

#sb-site,
.sb-site-container {
	background-color: transparent;
}

@media screen and (max-width: 480px) {
.sb-toggle-right {
	display: block;
}	

.sb-toggle-right i {
	font-size: 34px;
	color: #fff;
	
	display: block;
	position: absolute;
	top: 6px;
	right: 10px;
}

.sb-right {
	background: rgba(15, 50, 90, 0.95);
}

.sb-right ul {
	margin-top: 50px;
}

.sb-right a {
	display: block;
	padding: 0.85em 0.3em;
	font-size: 13px;
	color: #fff;
	border-bottom: solid 1px #27476b;
}
}


	
/****************************************************************
****************************************************************

　ページアップ

****************************************************************
*****************************************************************/
#page_upper {
	display: block;
	
	position: fixed;
	right: 50px;
	bottom: 60px;
	
	/*
	overflow: hidden;
	
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius:5px;
	
    width: 50px;
    height: auto;

     opacity: 0.85;
     filter: alpha(opacity=85);
	 -ms-filter: "alpha(opacity=85)";
	*/

	z-index: 10;
}

#page_upper li {
	overflow: hidden;

	display:inline-block;
	*display: inline;
    *zoom: 1;
	
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	
	margin-right: 1px;
	height: 50px;
	overflow: hidden;
}

#page_upper a {
    display: block;
    color: #fff;
	padding: 14px;
	background: #00428E;
	text-align: center;
	font-size: 9px;
}

/*
#page_upper li:first-child a {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	-o-border-radius: 5px 5px 0 0;
	-ms-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}

#page_upper li:last-child a {
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 5px 5px 0 0;
	-o-border-radius: 0 0 5px 5px;
	-ms-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}
*/

#page_upper a .fa {
	font-size: 22px;
}

#page_upper a small {
	line-height: 1.2em;
}

#page_upper a span.mail_icon {
	background-image: url(../images/icon_sm.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 47px 22px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	
    display: block;
	width: 47px;
	height: 24px;
}

#page_upper a span.fb_icon {
	background-image: url(../images/icon_fb.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 65px 22px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	
    display: block;
	width: 65px;
	height: 24px;
}

#page_upper a span.weibo_icon {
	background-image: url(../images/icon_weibo.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 65px 22px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	
    display: block;
	width: 65px;
	height: 24px;
}



@media screen and (max-width: 480px) {
#page_upper {
	bottom: -160px;
}	
}

/****************************************************************
****************************************************************

 グリーティング＿トップページ

****************************************************************
*****************************************************************/
/*  グリーティング  */
#pagetop .navi {
	float:right;
	padding-right: 120px;
}
#pagetop .navi img{
	cursor:pointer;
}
#pagetop .navi li {
	margin:19px 0 0 0;
}
#pagetop .navi img {
	border:#CCCCCC 1px solid;
}
#pagetop .navi .active img {
	border:#CB0000 1px solid;
}

#pagetopl #store_img,
#pagetop #food_img,
#pagetop #foods_img{
	margin:0 0 15px 0;
}
#pagetop .navi-image,
#pagetop .navi-image2,
#pagetop .navi-image3{
	position:relative;
	float:left;
	width:435px;
	margin:20px 0 0 0;
}
#pagetop .navi-image a,
#pagetop .navi-image2 a,
#pagetop .navi-image3 a{
	display: block;
	position: absolute;
	top: 3px;
	left: 80px;
	z-index: 8;
	height: 327px;
	width: 609px;
}
#pagetop .navi-image a img,
#pagetop .navi-image2 a img,
#pagetop .navi-image3 a img {
	border:#CB0000 1px solid;
	margin:0 0 0 0 !important;
}
#pagetop .navi-image a.active,
#pagetop .navi-image2 a.active,
#pagetop .navi-image3 a.active {
	z-index:10;
}
#pagetop .navi-image a.last-active,
#pagetop .navi-image2 a.last-active,
#pagetop .navi-image3 a.last-active{
	z-index:9;
}

/****************************************************************
****************************************************************

 グリーティング＿トップページ

****************************************************************
*****************************************************************/
.mainContent {
	display: block;
}
.mainContent .externalResourcesNav .externalResources {
	border-radius: 15px;
	box-shadow:2px 2px 2px #555;
	background: #990000;
	display: inline-block;
	text-align: center;
	margin-top: 0px;
	padding-top: 3%;
	cursor: pointer;
}
.mainContent .externalResourcesNav .externalResources:hover {
	background: #a31919;
}
.externalResourcesNav .externalResources a {
	color: rgba(255,255,255,1.00);
	font-size: 30px;
	text-align: center;

}

.mainContent .externalResourcesNav {
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	padding-top: 0px;
	clear: both;
}
.mainContent .externalResourcesNav .externalResources {
	width: 250px;
	height: 70px;
}
.stretch {
	content: '';
	display: inline-block;
	margin-left: 2%;
	margin-right: 2%;
}
/****************************************************************
****************************************************************
 グリーティング＿トップページ

****************************************************************
*****************************************************************/