@charset "utf-8";
/*================================
ベース
=================================*/
  html {
	font-size: 62.5%;
}
body {
	font-family: Quicksand, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6em;
	line-height: 1.8;
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
@font-face {
	font-family: 'roboto';
	  src: url('../fonts/Roboto-Regular.ttf') format('TrueType');
}
@font-face {
	font-family: 'roboto';
	  src: url('../fonts/Roboto-Bold.ttf') format('TrueType');
}
p {
	font-size: 1.4rem;
}
*::before,
*::after {
	content: "";
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.pdr-1 {
	padding-right: 1rem;
}
.pdr-2 {
	padding-right: 2rem;
}
.pdl-1 {
	padding-left: 1rem;
}
.pdl-2 {
	padding-left: 2rem;
}
.pdb-3 {
	padding-bottom: 3rem;
}
.pdt-5 {
	padding-top: 5rem;
}
.pdb-5 {
	padding-bottom: 5rem;
}
.mgb-1 {
	margin-bottom: 1rem;
}
.mgb-2 {
	margin-bottom: 2rem;
}
.mgb-3 {
	margin-bottom: 3rem;
}
.mgb-5 {
	margin-bottom: 5rem;
}
.case {
	display: flex;
	flex-wrap: wrap;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-normal {
	font-weight: normal;
}
.text-bold {
	font-weight: bold;
}
.text-lg {
	font-size: 1.8rem;
}
.text-box {
	width : 90%;
	margin-right: auto;
	margin-left: auto;
	padding: 20px;
}
.img-fluid {
	width: 100%;
	height: auto;
}
.no-border::after {
	border: none !important;
}
@media (min-width: 768px) {
	.text-box {
		width: 80%;
	}
}
@media (min-width: 992px) {
	.text-box {
		width: 70%;
	}
}
@media (min-width: 1200px) {
	.text-box {
		width: 50%;
	}
}
/*================================
共通
=================================*/
main {
	flex: 1;
}
#subpage h1 {
	font-family: 'roboto', sans-serif;
	position: relative;
	padding-top: 40.4%;
	width: 100%;
}
#subpage h1::before {
	background-position: center;
}
#subpage h1 span {
	position: absolute;
	top: 40%;
	bottom: 0;
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	display: block;
	letter-spacing: .4rem;
	width: 100%;
}
@media (min-width: 768px) {
	#subpage main,
	#subpage footer {
		margin-left: 30%;
		width: 70%;
	}
	#subpage header {
		margin-left: 30%;
	}
	#subpage h1 {
		padding-top: 32.32%;
	}
	#subpage h1::before {
		background-size: 100%;
	}
}@media (min-width: 992px) {
	#subpage h1 span {
		font-size: 3rem;
	}
}
@media (min-width: 1200px) {
	#subpage main,
	#subpage footer {
		margin-left: 25%;
		width: 75%;
	}
	#subpage header {
		margin-left: 25%;
	}
	#subpage h1 span {
		font-size: 3.2rem;
	}
}
/*================================
ヘッダー
=================================*/
header.top-header::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: url(../images/logo.svg)no-repeat;
	background-size: 80% auto;
	background-position: center;
}
@media (min-width: 768px) {
	header.top-header::before {
		background-size: 60%;
		background-position: center right 10%;
	}
}
@media (min-width: 1200px) {
	header.top-header::before {
		background-size: 60%;
		background-position: center right 15%;
	}
}
#subpage header.top-header::before {
	display: none;
}

/*================================
ハンバーガーナビゲーション
=================================*/
  #nav-toggle {
	position: fixed;
	top: 25px;
	right: 25px;
	height: 32px;
	cursor: pointer;
  }
  @media (min-width: 768px) {
	#nav-toggle {
		display: none;
	}
}
  #nav-toggle > div {
	position: relative;
	width: 36px;
  }
  #nav-toggle span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: #333;
	position: absolute;
	transition: transform 0.6s ease-in-out, top 0.5s ease;
  }
  #nav-toggle span:nth-child(1) {
	top: 0;
  }
  #nav-toggle span:nth-child(2) {
	top: 12px;
  }
  #nav-toggle span:nth-child(3) {
	top: 24px;
  }
  #nav-toggle:hover span:nth-child(1) {
	top: 4px;
  }
  #nav-toggle:hover span:nth-child(3) {
	top: 20px;
  }

  .open #nav-toggle span {
	background: #fff;
  }
  .open #nav-toggle span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
  }

  /* z-index */
  #nav-toggle {
	z-index: 1000;
  }

  #container {
	z-index: 900;
  }

#gloval-nav {
	background: #000;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 990;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: 'roboto', sans-serif;
	font-size: 1.8rem;
	opacity: 0;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	z-index: -1;
}
@media (min-width: 768px) {
	#gloval-nav {
		right: 70%;
		font-size: 2rem;
		visibility: inherit;
		opacity: 1;
		transition: inherit;
	}
}
@media (min-width: 1200px) {
	#gloval-nav {
		right: 75%;
	}
}
nav {
	overflow-x: hidden;
	overflow-y: auto;
	width: 100%;
}
nav {
	overflow-x: hidden;
	overflow-y: auto;
	width: 100%;
}
nav {
	overflow-x: hidden;
	overflow-y: auto;
	width: 100%;
}
  #gloval-nav a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	padding: 10px 0;
	transition: color 0.6s ease;
}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}

  #gloval-nav ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.6s ease, opacity 0.2s ease;
  }
  @media (min-width: 768px) {
	#gloval-nav  {
		z-index: inherit;
	}
	#gloval-nav ul li {
		letter-spacing: .2rem;
		opacity: 1;
		transform: translateX(0px);
		transition: inherit;
		transition-delay: 0;
	}
	#gloval-nav .ul-sublist {
		font-size: 1rem;
	}
  }
  #gloval-nav .ul-gvlist li:nth-child(2) {
	transition-delay: 0.15s;
  }
  #gloval-nav .ul-gvlist li:nth-child(3) {
	transition-delay: 0.3s;
  }
  #gloval-nav .ul-gvlist li:nth-child(4) {
	transition-delay: 0.45s;
  }
  #gloval-nav .ul-gvlist li:nth-child(5) {
	transition-delay: 0.6s;
  }
  #gloval-nav .ul-gvlist li:nth-child(6) {
	transition-delay: 0.75s;
  }
  #gloval-nav .ul-gvlist li:nth-child(7) {
	transition-delay: 0.85s;
  }
  #gloval-nav .ul-sublist li:nth-child(1) {
	transition-delay: 0.95s;
  }
  #gloval-nav .ul-sublist li:nth-child(2) {
	transition-delay: 1.2s;
  }
#gloval-nav .ul-gvlist li:last-child {
	font-size: 1.6rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
#gloval-nav ul li a.icon-fb::before {
	background: url(../images/icon-fb.svg)no-repeat;
	background-size: 20px;
	display: block;;
	width: 20px;
	height: 20px;
	margin-right: auto;
	margin-left: auto;
}
.ul-sublist {
	font-size: 1.2rem;
}
.ul-sublist li:not(:last-child) {
	margin-bottom: 1rem;
}
@media (min-width: 1200px) {
	.ul-sublist li {
		font-size: 1.2rem;
	}
}
/* open */
  .open {
	overflow: hidden;
  }
  .open #gloval-nav {
	visibility: visible;
	opacity: 1;
	z-index: 999;
}
.open #gloval-nav li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity 0.9s ease;
}
body::before {
	position: absolute;
	top: 2rem;
	left: 2rem;
	width: 80px;
	height: 30px;
	background: url(../images/logo.svg)no-repeat;
	background-size: 80px 30px;
	z-index: 2;
}
.nav-logo {
	display: none;
}
@media (min-width: 768px) {
	body::before {
		display: none;
	}
	.nav-logo {
		display: inherit;
		width: 100px;
		height: 38px;
		margin-bottom: 6rem;
	}
}
@media (min-width: 1200px) {
	.nav-logo {
		width: 120px;
		height: 45px;
	}
}
/*=================================
フッター
==================================*/
.top-footer {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 20px;
}
.top-footer .copy {
	font-family: 'roboto', sans-serif;
	letter-spacing: 0.2rem;
	text-align: center;
}
#subpage footer {
	position: inherit;
}
@media (min-width: 992px) {
	.top-footer .copy {
		text-align: right;
	}
}
/*================================
News
=================================*/
#subpage.news h1::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: url(../images/news_kv.png)no-repeat;
	background-size: 100% auto;
}
.ul-news {
	font-size: 1.4rem;
	padding: 0 15px;
}
.ul-news li {
	padding: 0 0 20px 0;
}
.ul-news li:not(:last-child) {
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 3rem;
}
.ul-news .ul-news-day {
	font-family: 'roboto';
	font-size: 1.2rem;
	font-weight: bold;
	display: block;
	letter-spacing: .15rem;
}
.ul-news a .ul-news-detail {
	color: #0066c0;
	display: inline-block;
}
@media (min-width: 1200px) {
	.ul-news {
		font-size: 1.5rem;
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}
}
/*================================
About
=================================*/
#subpage.about h1::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: url(../images/about_kv.png)no-repeat;
	background-size: 100% auto;
}
#subpage.about h2 {
	font-family: 'roboto';
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: .2rem;
	margin-bottom: 3rem;
}
#subpage.about .gallery-area {
	margin-right: auto;
	margin-left: auto;
}
#subpage.about .ul-gallery li {
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	#subpage.about .gallery-area {
		max-width: calc(720px - 30%);
	}
}
@media (min-width: 992px) {
	#subpage.about .gallery-area {
		max-width: calc(960px - 30%);
	}
	#subpage.about h2 {
		font-size: 2.8rem;
	}
}
@media (min-width: 1200px) {
	#subpage.about .gallery-area {
		max-width: calc(1140px - 10%);
	}
}
/*================================
Menu
=================================*/
#subpage.menu .menu-area {
	margin-right: auto;
	margin-left: auto;
}
#subpage.menu h1::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: url(../images/menu_kv.png)no-repeat;
	background-size: 100% auto;
}
#subpage.menu h3 {
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: .2rem;
	padding: 2rem 0;
}
.ul-menu li {
	position: relative;
	font-family: 'roboto';
	font-size: 1.4rem;
	display: flex;
	margin-bottom: 1.5rem;
}
.ul-menu li::after {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	border-top: 2px dotted #d1d1d1;
	height: 1px;
	z-index: -1;
}
.ul-menu li span {
	background:#fff;
	display: inline-block;
	padding: 0 2rem;
}
.ul-menu .ul-menu-item {
	margin-right: auto;
}
@media (min-width: 768px) {
	#subpage.menu .menu-area {
		max-width: calc(720px - 30%);
	}
}
@media (min-width: 992px) {
	#subpage.menu .menu-area {
		max-width: calc(960px - 30%);
	}
	#subpage.menu h3 {
		font-size: 2.4rem;
	}
}
@media (min-width: 1200px) {
	#subpage.menu .menu-area {
		max-width: calc(1140px - 25%);
	}
}
/*================================
Access
=================================*/
#subpage.access h1::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: url(../images/access_kv.png)no-repeat;
	background-size: 100% auto;
}
#subpage.access .dl-normal {
	text-align: center;
}
#subpage.access .dl-normal dt {
	letter-spacing: .2rem;
	margin-bottom: 1.5rem;
}
#subpage.access .dl-normal dd {
	font-size: 1.5rem;
	letter-spacing: .15rem;
	margin-bottom: 3rem;
}
#subpage.access .g-map {
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
	width: 100%;
}
#subpage.access .g-map iframe {
	position: absolute;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {
}