@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

* {  
  margin:0;
  padding:0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*---------------------------------------------------------------------------一般・共通設定--*/
html{
  min-height: 100%;
  position: relative;
  padding-bottom:100px;
}
body {
	-webkit-text-size-adjust: none;
/*	font-family: "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "Osaka", sans-serif;*/
	font-family: "メイリオ", sans-serif;
	font-size: 18px;
	color: #003366;
	line-height: 1.5;
	background-color:#ffffff;
}

a {
	color: #3399cc;
	text-decoration: underline;
}
a:hover {
	color: #336699;
	text-decoration: underline;
}

strong {
	font-weight: bold;
}

p {
	margin: 0;
	padding-bottom: 1em;
}

img {
	vertical-align:bottom;
}
img {
max-width: 100%;
height: auto;
}

/* header */
header .inner {
display: grid;
grid-template-columns: 300px 1fr;
grid-template-rows: 40px 50px;
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.logo { grid-area: 1 / 1 / 3 / 2; }
.summary { grid-area: 1 / 2 / 2 / 3;}
.stellarnav { grid-area: 2 / 2 / 3 / 3; }

header {position: fixed;font-size: 14px; z-index:10; }
header {width:100%; background-color:rgba(0,0,0,0.3);}
header .inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding: 5px;
}

header .inner .logo img {}
header .inner .summary {
	font-size: 14px;
	text-align: right;
	color:#fff;
}

/*--スクロール後のhead--*/
.fixed{
	position: fixed;
	top: 0;
	height: 60px;
	background-color:rgba(0,0,0,0.8);
	box-shadow: 0px 10px 0px 0px rgba(0,0,0,0.05);
}
.fixed .inner {grid-template-rows: 25px 35px;}
.fixed .logo img {width:180px;}
.fixed .summary {display:none;}
.fixed .inner {grid-template-rows: 0px 50px;}

.hero {
	position:relative;
	overflow:hidden;
	width: 100%;
	height: 250px;
	top: 0px;
	margin-bottom:5%;
}
.cover {
	position:absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.marunage {
	float:right;
	right: 10px;
	width:100px;
	}

@media screen and (max-width:1199px) {
	body {font-size:90%;}
	.pageTop a {
	right: 10px;
	}
	header .inner {
	padding: 10px !important;
	}
	.inner {
	width: 100%;
	}
	.summary {
	position: absolute;
	top: 10px;
	margin: 0;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	right: 10px;
	}

}

@media screen and (max-width: 1180px) {
	.hero {height: 200px;}
	.marunage {
	position: absolute;
	right: 10px;
	width: 80px;
	bottom: 10px;
	}
}

@media screen and (max-width: 1024px) {
header .inner {
grid-template-rows: 30px 40px;
}

header .inner {
grid-template-columns: 220px 1fr;
}

}

/*---------------------------------------------------------------------------フッター--*/

/*
footer {
	clear:both;
}
*/
footer {
  position: absolute;
  z-index:1;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footmenu {
	width:100%;
	padding:20px 0;
	overflow:hidden;
	background:#efede9;
}
.footmenu ul {
	position:relative;
	float:left;
	left:50%;
	margin:0;
	padding:0;
}
.footmenu li {
	position:relative;
	left:-50%;
	float:left;
	list-style:none;
	margin:0;
	padding:0 15px;
	font-size:12px;
	text-align:center;
}
.footmenu a {
	color:#333;
	text-decoration:none;
}
.footmenu a:hover {
	color:#333;
	text-decoration:underline;
}

.copyright {
	clear:both;
	padding:20px 0;
	font-size:11px;
	text-align:center;
	color:#efede9;
	background:#2e2e2e;
}

/*---------------------------------------------------------------------------TOPへ戻る--*/

#page_top{
  width: 56x;
  height: 56px;
  position: fixed;
  right: 0;
  bottom: 0px;
  background: #da3215;
  z-index:2;
}
#page_top a{
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -15px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


@media screen and (max-width:767px) {
	body {font-size:80%;}
	.logo img {
	height: 50px;
}
	.logo {
	font-size: 20px !important;
	transition: 0.4s;
	}
	.logo span {
	font-size: 10px !important;

	}
	.copyright {
	padding:10px 0;
}
	#page_top,#page_top a{
	width: 36px;
  height: 36px;
}

}

@media screen and (max-width:480px) {
	.summary {
		display:none !important;
	}
	
}
