@charset "utf-8";
/*===============================
	リセット
================================*/
body, h1, h2, h3, p, ul, figure, dt, dd, nav {
	margin: 0;
	padding: 0;
}


/*===============================
	基本
================================*/
* {
	box-sizing: border-box;
}

html {
	height: 100%;
	font-size: 62.5%;
	overflow-y: scroll;
  	-webkit-overflow-scrolling: touch
}

body {
	display: block;
	margin: 0 auto;
	background-color: #FFFAFE;
	color: #060606;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 2px;
	overflow: hidden;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	object-fit: cover;
}
address {
  	font-style: normal;
}
ul {
  	list-style: none;
}
a {
	text-decoration: none;
}

.come {
	text-align: center;
	padding-top: 50px;
}

/*===============================
	共通
================================*/
/* ボタン */
.btn {
	display: block;
	position: relative;
	z-index: 1;
	padding: 12px 35px;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	background: transparent;
	background-color: #0064B3;
	border-radius: 10px;
	box-shadow: 3px 3px 2px #000;
	text-align: center;
	overflow: hidden;
	transition: .3s;
}
.btn::before {
	content: "";
	width: 100%;
	position: absolute;
	top: 0;
	right: -60px;
	z-index: -1;
	border-right: 60px solid transparent;
	border-bottom: 60px solid #FFAF08;
	transform: translateX(-100%);
	transition: transform ease .3s;
}
.btn:hover {
	color: #fff;
}
.btn:hover::before {
	transform: translateX(0);
}


/* ページTOPに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
    display: block;
    width: 50px;
    height: 50px;
    background: #0064B3;
    border-radius: 50%;	
	font-size: 0;
    text-align: center;
    line-height: 50px;
}
#page-top a i{
    color:#fff;
    font-size: 20px;
    line-height: 50px;
}

/* 見出し */
.heading {
	text-align: center;
	margin: 20px 0;
}
.heading h2 {
	font-size: 2.5rem;
	font-weight: bold;
}
.heading p {
	font-size: 1.4rem;
}

/* 見出し(下層ページ) */
.title h2 {
	margin: 20px 0 30px;
	font-size: 3rem;
	text-align: center;
}


/*===============================
	header
================================*/
.header {
	position: fixed;
  	top: 0px;
  	width: 100%;
  	padding-top: 10px;
	background: -moz-linear-gradient(top, #FFAF08 , transparent);
	background: -webkit-linear-gradient(top, #FFAF08, transparent);
	background: linear-gradient(to bottom, #FFAF08, transparent);
	z-index: 200;
}
.header h1 {
	margin:8px 10px;
	font-size: 0.8rem;
}
.header-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-area img {
	max-width: 200px;
}


/* ナビゲーション
----------------------------------------*/
/* ハンバーガーメニュー */
.openbtn {
  	position:fixed;
  	top:20px;
  	right: 10px;
	z-index: 9999;
    width: 50px;
    height:50px;
	margin-top: 10px;
	cursor: pointer;
}
.openbtn span{
	position: absolute;
    display: inline-block;
    left: 14px;
	width: 45%;   
    height: 3px;
  	background-color: #fff;
 	border-radius: 2px;
	transition: all .4s;
}
.openbtn span:nth-of-type(1) {
 	top:15px; 
}
.openbtn span:nth-of-type(2) {
  	top:23px;
}
.openbtn span:nth-of-type(3) {
  	top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.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: 30%;
}

/* ナビゲーション */
.sp-gNav {
    position: fixed;
  	top: 0;	
  	z-index: -1;
  	width: 100%;
  	background: #060606;	
  	opacity: 0;
  	transition: all 0.3s;
}
.sp-gNav.panelactive{
  	z-index: 999;
	opacity: 0.7;
}
.sp-gNav.panelactive {
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.sp-gNav ul {
    position: absolute;
    display: none;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.sp-gNav.panelactive ul {
    display: block;
}
.sp-gNav li {
	padding: 5px 0;
}
.sp-gNav li a {
  	font-size: 1.8rem;
	color: #fff;
}
.sp-gNav li a:hover {
  	color: #0064B3;
}


/*===============================
	main
================================*/
main {
	margin: 0 auto;
}

/* メインビジュアル */
.mainVisual {
  	width: 100vw;
	height: 50vh;
  	background-size: cover;
  	background-position: center center;
}

/* トップイメージ */
.top-img {
  	width: 100vw;
	height: 30vh;
	background-size: cover;
  	background-position: center;
	background-repeat: no-repeat;
}

.content {
	margin: 60px 20px;
}


/*===============================
	footer
================================*/
.footer {
	z-index: 200;
  	width: 100%;
	background: -moz-linear-gradient(bottom, #FFAF08, transparent);
	background: -webkit-linear-gradient(bottom, #FFAF08, transparent);
	background: linear-gradient(to top, #FFAF08, transparent);
	text-align: center;
}
footer .contact {
	margin: 80px 20px 30px
}
footer .contact .text {
	margin: 48px 0;
}
footer .contact .btn {
	width: 300px;
	margin: 0 auto;
}
footer .copyright {
	padding: 48px 0 16px 0;
}

.pc-only {
	display: none;
}
.sp-only {
	display: inherit;
}


/*===============================
	pc
================================*/
@media screen and (min-width: 960px) {
	.sp-only {
		display: none;
	}
	.pc-only {
		display: inherit;
	}
	
	/* 見出し */
	.heading {
		margin: 40px 0;
	}
	/* 見出し(下層ページ) */
	.title h2 {
		margin: 40px 0 30px;
	}
	
	
	/* header
	----------------------------------------*/
	.header h1 {
		margin:8px 50px 0;
		font-size: 1.4rem;
}
	.header-area {
		margin: 0 30px;
	}
	.header-area img {
		max-width: 300px;
	}
	
	/* ナビゲーション */
	.gnav {
		display: flex;
		justify-content: space-around;
		margin-top: 20px;
	}
	.gnav li a {
  		position: relative;
  		display: inline-block;
  		text-decoration: none;
		color: #fff;
		text-shadow: 2px 2px 5px #333;
		letter-spacing: 2px;
	}
	.gnav li a::after {
	  	position: absolute;
	  	bottom: -4px;
	  	left: 0;
	  	content: '';
	  	width: 100%;
	  	height: 2px;
	  	background: #333;
	  	transform: scale(0, 1);
	  	transform-origin: center top;
	  	transition: transform .3s;
	}
	.gnav li a:hover::after {
	 	transform: scale(1, 1);
	}
	.gnav li a:hover {
	 	text-shadow: none;
	}
	.item {
		padding: 0 20px;
	}
	.item a {
    	display: block;
    	line-height: 30px;
	}
	.child {
    	visibility: hidden;
    	width: 100%;
	}
	.child a {
    	background: none;
	}
	.item:hover .child {
   	 	visibility: visible;
	}
	
	
	/* main
	----------------------------------------*/
	/* メインビジュアル */
	.mainVisual {
		height: 100vh;
	}
	/* トップイメージ */
	.top-img {
		height: 60vh;
	}
	.top-img_fixed-bg {
  		min-height: 60vh;
	}
	
	.content {
		margin: 120px auto;
	}
	
	/* footer
	----------------------------------------*/
	footer .contact {
    	margin: 120px 0 30px;
	}

}
