@charset "utf-8";
/* ======      リセット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;}

/* ========================================
    全体設定
========================================= */    

html {
	animation: fadein 3s forwards;
}

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

body {
	font-family: 'BIZ UDPGothic', sans-serif;
}
a {
	text-decoration: none;
}

/* スクロールバー　*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(77,76,76,0.5);
  border-radius: 5px;
}

/* ========================================
    ヘッダー
========================================= */

header {
	width: 100%;
	padding: 0 8%;
	position: fixed;  /* ヘッダーを */
 	z-index: 999;	  /* 透かしてスクロール */
  	top: 0;
  	background: rgba(255,255,255,0.8);
  	box-sizing: border-box; /* 要素サイズ制御 */
}
.top_logo {
	margin-top: 10px;
}
.top_logo h1 {
	float: left;
}
.top_sns img {
	padding-top: 20px;
}

/* ====================
	ナビゲーション　
======================*/

header a {
	color: #000;
}
.home_top a {         /* ホームのみオレンジ */
	color: #f17222;
	font-size: 1.3rem;
	line-height: 0.8;
}
.home_top {
	display: inline-block;
	margin-left: 1.6rem;
	margin-top: 2rem;
}

header nav {
	max-width: 800px;
	right: 13%;
	top: 48px;
	position: fixed;	
}
header nav ul li {
	float: left;
	padding: 0 20px; 
	height: 30px;
}
header nav ul li a:hover {
	color: #f17222;
	transition: 0.7s;
} 
.menu_second {
	display: flex;
	right: 3%;
    top: 28%;
    position: absolute;
}
.menu_second img:hover {
	opacity: 0.3;
	transition: 0.7s;
}
/* ===================
	メインイメージ
=====================*/

.pc {
	width: 80%;
	margin: 5rem auto 0 auto;
}
.sp {
	width: 100%;
	margin: 2rem auto 0 auto;
}
.sp img {
	position: relative;
}
.sp h2 {
	position: absolute;
	top: 20%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) 
}

.pc { display: block !important;}
.sp { display: none !important;}

.main_log {
	width: 40%;
	margin: 10rem auto;
}
.main_log img {
	width: 100%;
    object-fit: cover;
}

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

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

@media screen and (max-width: 1600px) {
	header nav {
		right: 13%;
	}
	header nav ul li {
		padding: 0 8px; 
		height: 30px;
	}
}

@media screen and (max-width: 1260px) {
	header {
		padding-left: 3%;
	}
	
}

@media screen and (max-width: 980px) {
	header {
		padding-left: 3%;
		height: 100px;
	}
	header nav {
		right: 3%;
	}
	header nav ul li {
		margin-top: 32px;
	}
	.pc { display: none !important;}
	.sp { display: block !important;}
	
	
}

@media screen and (min-width: 651px) { /*-----  navハンバーガー  ------*/
	
	.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);
	}
	.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;
		border-radius: 3px;
	}
	li.menu__single:hover ul.menu__second-level {
		top: 30px;
		visibility: visible;     	 /* セカンド最終位置 */
		opacity: 1;
	}
	ul.menu__second-level {			/* ドロップダウン　追加　*/
		visibility: hidden;
		opacity: 0;	
	}
	.menu__second-level li {
		width: 150px;
		border-bottom: 1px solid #111;
		border-radius: 3px;
	}
	.menu__second-level li a:hover {
		color: #f17222;
	}
}

@media screen and (max-width: 650px) {
	header {
		height: 110px;
	}
	header nav {
		width: 130px;
		border-radius: 5px;
		margin-top: 50px;
		background-color: rgba(239,239,239,0.9);
		display: block;
		left: 1%;
	}
	header nav ul li {
		padding: 5px 10px; 
		height: 20px;
		margin-top: 30px; /*セカンド枠も影響あり！*/
		display: block;
	}
	.top_logo {
		margin-top: 28px;
	}
	.top_logo img {
		width: 150px;
	}
	.home_top a {
		font-size: 1.2rem;
	}
	.home_top {
		position: absolute;
		top:45%;
		left: 3%;
	}
	.menu_second img {
		width: 28px;
	}
	.main_imagetop {
		margin-top: 7rem;  /*----　　ヘッダー余白-----*/
	}
	/* =======  ハンバーガーメニュー start　======= */
	.toggle-btn {
		display: block;
		position: fixed;
		top: 75px;
		right: 30px;
		width: 30px;
		height: 30px;
		z-index: 3;
		cursor: pointer;
	}
	.toggle-btn span {
		position: absolute;
		display: block;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #333;
		transition: all 0.5;
		border-radius: 2px;
	}
	.toggle-btn span:nth-last-child(1) {
		top: 4px;
	}
	.toggle-btn span:nth-last-child(2) {
		top: 14px;
	}
	.toggle-btn span:nth-last-child(3) {
		bottom: 4px;
	}
	.menu__second-level li { /* メニューセカンド表示なし */
		display: none;
	}
	.menu {
		display: none;	
	}
	.open .menu {
		display: block;      /*-- オープンメニュー --*/
	}
/* =======  ハンバーガーメニュー end　======= */
	footer {
		font-size: 0.9rem;
		letter-spacing: -0.06rem;
	}
	.sp {
		margin: 10rem auto 0 auto;
	}
	.sp h2 {
		top: 20%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%) 
	}
	.main_log {
		width: 90%;
		margin: 15rem auto 10rem auto;
	}
	.main_log img {
		width: 100%;
		object-fit: cover;
	}
}
	

@media screen and (max-width: 400px) {
	header {
		padding: 0 1%;
	}
	.toggle-btn {
		right: 10px;
	}
	.content_list00 {
		margin: 0;
	}
	.item_flame {
		width: 130px;
	}
	.content_list dl {
		margin: 0.5rem;
	}
	.text_fast {
		margin-top: 0.3rem;
		padding: 0.1rem;
		font-size: 0.7rem;
		line-height: 1.5;
	}
	.text_second {
		padding-left: 0.3rem;
		font-size: 0.75rem;
		line-height: 1;
	}
}





















