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

/* ========================================
    リセットcss
========================================= */
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-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}

/* micro clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {clear: both;}
.cf {*zoom: 1;}


/* ========================================
    全体設定
========================================= */
html {
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

body {
	font-family: 'BIZ UDPGothic', sans-serif;
}

/* スクロールバー　*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(77,76,76,0.5);
  border-radius: 5px;
}

/* ========================================
    ヘッダー
========================================= */
header {
	width: 100%;
	height: 85px;
	border-bottom: 1px solid rgba(141,141,141,0.2);
	margin: 0 auto;
	position: fixed;  /* ヘッダーを */
 	z-index: 999;	  /* 透かしてスクロール */
  	top: 0;
  	left: 0;
  	padding: 0px 210px 0px 200px;
  	background: rgba(255,255,255,0.8);
  	box-sizing: border-box; /* 要素サイズ制御 */
	color: #2a2626;
}
header h1 {
	float: left;
	padding-top: 20px;
}
header a {
	text-decoration: none;
	color: #000000;
	font-size: 16px;
}
.home_top a {
	color: #f17222;
	font-size: 19px;
}
header nav {
	float: right;	
	line-height:  40px;
	width: 880px;
	padding-top: 30px;	
}
header nav ul li {
	float: left;
	padding: 0px 15px;
	height: 40px;
	margin-top: 20px;	     /*セカンド枠も影響あり！*/	
}
header nav ul li a:hover {
	color: #f17222;
} 

/* ドロップダウン　基本　*/
.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level { /* セカンド位置や時間 */
    position: absolute;
    top: 50px;   
    background: rgba(255,255,255,0.7);
    -webkit-transition: all .5s ease;
    transition: all .7s ease;}

li.menu__single:hover ul.menu__second-level {
    top: 40px;
    visibility: visible;      /* セカンド最終位置 */
    opacity: 1;
}

/* ドロップダウン　追加　*/
.menu {
    position: relative;
    width: 100%;
    height: 50px;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 999;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;	
}

.menu__second-level li {
	width: 150px;
    border-bottom: 1px solid #111;	
}

.menu__second-level li a:hover {
    color: #f17222;
}

.menu__second-level li a {
	font-size: 16px;
	font-weight: 500;
	position: absolute;
    z-index: 999;
}

/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ショップボタン */
.online_shop a {
	color: #fff;
	font-weight: 900;
	background-color: #F9914F;
	display: inline-block;
	border-radius: 5px;
	padding: 0 25px;
	line-height: 40px;
	position: absolute;
    right: -15px;
	bottom: 5px;
}
.online_shop a:hover {
	transition: 0.7s;
	color: #7C7C7C;
}

/* ========================================
    メインイメージ
========================================= */
.main {
	width: 100%;
	height: auto;
	margin: 87px auto 0 auto;
	position: relative;
}

div#main_last ul {
	display: block;
	width: 950px;
	height: 80px;
	background-color: rgba(54,54,54,0.65);
	float: right;
	position: absolute;
	border-radius: 3px;
	bottom: 10px;
	left: 480px;
}
div#main_last ul li {
	display:inline-block;
	float:left;
	padding: 30px 0 20px 50px; 
}

div#main_last img {
	position: absolute;
	display: inline-block;
	top:25px;
	max-width: 1910px;
}

div#main_last ul li a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}
div#main_last ul li a:hover {
	opacity:0.3;
	transition:0.3s;
	color: #B4B4B4;
}
div#main_last ul li img {
	background-color: #EAF5FF;
	border-radius: 8px;
}


div#main_last ul li.home_top a {
	color: #f17222;
}



	
/* ========================================
    フッター
========================================= */

footer {
	width: 100%;
	height: 85px;
	background-color: #323232;
	color: #FFFFFF;
	text-align: center;
	line-height: 85px;
}



















