@charset "utf-8";

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, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

body {
line-height:1;
	}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
display:block;
}

nav ul {
list-style:none;
}

blockquote, q {
quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content:'';
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;
}

/* change border colour to suit your needs 
*/
hr {
display:block;
height:1px;
border:0; 
border-top:1px solid #cccccc;
margin:1em 0;
padding:0;
}

input, select {
vertical-align:middle;
}

* {
	margin: 0;
	padding: 0;
}

html,body {
	text-align: center;
}

/*Chrome*/
::-webkit-scrollbar {/*スクロールバーの幅*/
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {/*スクロールバーの軌道*/
    background: #CC0000;
}
::-webkit-scrollbar-thumb {/*つまみの部分*/
    box-shadow: inset 0 0 10px #EFEFEF;
    border-radius: 10px;
    background: #EFEFEF;
}
::-webkit-scrollbar-thumb:hover {/*マウスホバー時*/
    background: #CCCCCC;
}
/*Firefox*/
.hljs {/*適用させる箇所のID, クラスに置き換えてください*/
    scrollbar-width: thin;/*細さ(幅・高さ両方に適用)*/
    scrollbar-color: #EFEFEF #EFEFEF;/*つまみの色 軌道の色*/
}

body {
	-webkit-text-size-adjust: 100%;
	/*background-color: #FFFFFF;*/
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;
	
}

a,a:link,a:visited {
	overflow: hidden;
}

a:hover,a:active,a:focus {
	overflow: hidden;
}

a img,:link img,:visited img {
    border: none;
}

a:link{
	text-decoration: underline;
	color:#000000;
}

a:visited {
	text-decoration: underline;
	color:#000000;
}

a:hover{
	text-decoration:none;
	color: #CC0000;
	transition: color 0.3s ease 0s;
}

a:active {
	text-decoration: underline;
	color:#000000;
}

p,div,th,td {
	background-image: url(img/dummy.png);
}

img { 
    max-width: 100%; 
    height:auto;
	image-rendering: -webkit-optimize-contrast;
	-ms-interpolation-mode: bicubic;
	-webkit-backface-visibility: hidden;
}	

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.pc {
	display: block;	
}

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

.sp {
	display: none;
}

@media screen and (max-width: 680px) {
.sp {
	display: block;
}
}

#g-nav.panelactive{
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

.circle-bg{
    position: fixed;
	z-index:3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
   /* background: rgba(248,183,29,1.0);*/
	transform: scale(0);
	right:-50px;
    top:-50px;
    transition: all .6s;
	
	/*background-color: #5DB3F0;*/
}

.circle-bg.circleactive{
	transform: scale(50);
}

#g-nav-list{
    display: none;
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block;
}

/*#g-nav ul {
	opacity: 0;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}*/

#g-nav.panelactive ul {
    opacity:1;
}

#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}*/

.openbtn {
	position:fixed;
	top: 10px;
	right: 10px;
	z-index: 9999;
	cursor: pointer;
    width: 70px;
    height: 63px;
	/*background-color: #FFFFFF;*/
}
@media screen and (max-width: 680px) {
	.openbtn {
		top: 15px;
		right: 5px;
	}
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 2px;
	background-color: #111111;
  	width: 55%;
  }

.openbtn span:nth-of-type(1) {
	top:10px;	
}

.openbtn span:nth-of-type(2) {
	top:20px;
}

.openbtn span:nth-of-type(3) {
	top:30px;
}
.openbtn span:nth-of-type(4) {
display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 12px;
    height: 0;
    border-radius: none;
  	width: auto;
	top:40px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 88%;
	color: #111111;
	letter-spacing: 1px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
	background-color: #111111;
	text-shadow: 2px 2px 2px rgba(255,255,255,0.8);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
	background-color: #111111;
	text-shadow: 2px 2px 2px rgba(255,255,255,0.8);
}
/*.openbtn.active span:nth-of-type(4) {
	color: #1DA5A8;
}*/

/*-----------------------------------------------
	#menu
-----------------------------------------------*/

#menu {
	margin: 0 auto;
	padding: 0;
	background-color: #CC0000;
	}
@media screen and (max-width: 680px) {
	#menu {
		margin: 0 auto;
		padding: 0;
		min-height: 100vh;
	}
}

#menu h2 {
	margin-bottom: 30px;
}
@media screen and (max-width: 680px) {
	#menu h2 {
		margin-bottom: 0;
		padding: 0 30px;
	}
}

#menu .menuarea {
	margin: 0 auto;
	padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	max-width: 680px;
	min-height: 100vh;
}
#menu .menuimg {
	margin: 0 auto;
	padding: 0;
	flex: 1;
}
#menu .menudata {
	margin: 30px auto;
	padding: 0;
	flex: 1;
}
@media screen and (max-width: 680px) {
	#menu .menuarea {
		flex-flow: column wrap;
		min-height: auto;
	}
	#menu .menuimg {
		margin: 0 auto;
		padding: 90px 0 0 0;
	}
	#menu .menudata {
		margin: 0 auto;
		
	}
}

#menu .mul {
	margin: 0 auto 30px auto;
	padding: 0;
	list-style: none;
}
#menu .mul li {
	font-family: "BIZ UDGothic", sans-serif;
	font-size: 100%;
	font-weight: 500;
	line-height:1.6em;
	margin-bottom: 10px;
	letter-spacing: 3px;
}
#menu .mul li a:link{
	text-decoration:none;
	color: #FFFFFF;
	display: block;
}
#menu .mul li a:visited {
	text-decoration:none;
	color: #FFFFFF;
}
#menu .mul li a:hover{
	text-decoration:none;
	color: #CC0000;
	transition: color 0.3s ease 0s;
	background-color: #FFFFFF;
	border-radius: 3px;
}
#menu .mul li a:active {
	text-decoration:none;
	color: #FFFFFF;
}
@media screen and (max-width: 680px) {
	#menu .mul {
		margin: 0 auto;
		padding: 0;
	}
	#menu .mul li {
		font-size: 88%;
	}
	#menu .mul li:last-child {
		margin-bottom: 0;
	}
}

/*-----------------------------------------------
	#copy
-----------------------------------------------*/

#copy {   
	padding: 30px 0;
	margin: 0 auto;
}
@media screen and (max-width: 991px) {
	#copy {
		padding: 30px 0;
	}
}

#copy h5 {
	font-family: "BIZ UDGothic", sans-serif;
	font-size: 88%;
	font-weight: 500;
	letter-spacing: 1px;
	color: #CC0000;
}
@media screen and (max-width: 680px) {
	#copy h5 {
		font-size: 88%;
		letter-spacing: 0;
		line-height: 1.6em;
	}
}

#copy .copyarea {
	margin: 0 auto;
	padding: 0;
	max-width: 1140px;
}
@media screen and (max-width: 680px) {
	#copy .copyarea {
		width: 95%;
	}
}

.fade_off {
    opacity: 0;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -o-transition: all 3s;
    -ms-transition: all 3s;
    transition: all 3s;
}

.fade_on {
    opacity: 1;
}