/*--------------------------------------------
基本設定
--------------------------------------------*/
* {
	font-style: normal;
	margin: 0px;
	padding: 0px;
}
html {
	background-color: #FFF;
}
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	color: #333333;
	background: #f4fcff;
}
hr {
	display: none;
}
img {
	vertical-align: bottom;
	border-style: none;
}
a:link {
	color: #333;
	text-decoration: underline;
}
a:visited {
	color: #999;
	text-decoration: underline;
}
a:hover {
	color: #000;
	text-decoration: none;
}
/*--------------------------------------------
枠
--------------------------------------------*/
#wrapper {
	overflow: hidden;
	background: #ffffff;
}
/*--------------------------------------------
ヘッダー
--------------------------------------------*/
#header {
	margin:0 auto;
}
/*--------------------------------------------
グローバルナビ　スマートフォン非表示
--------------------------------------------*/
.gnav {
    display: flex;
    height: 3rem;
	border-bottom:5px solid #034A84;
    margin: 0 auto;
    width: 100%;
}
.gnav > li {/*親階層のみ幅を25%にする*/
    width: 25%;
}
/*全てのリスト・リンク共通*/
.gnav li {
    list-style: none;
    position: relative;
}
.gnav li a {
    background: #74a9d7;
    border-right: 1px solid #eee;
    color: #fff;
    display: block;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.gnav li :hover {
	background: #5886fb;
}
/*子階層以降共通*/
.gnav li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
	z-index: 1000;
}
.gnav li li a {
    border-top: 1px solid #eee;
}
.gnav li:hover > ul > li {
    height: 3rem;
    overflow: visible;
}
/*--------------------------------------------
メインビジュアル
--------------------------------------------*/
.img-wrap {
	width:100%;
    position: relative;
}
.img-wrap img {
    width:100%;
	position: absolute;    
}
.logo {
	width:100%;
}
/*--------------------------------------------
メインコンテンツ
--------------------------------------------*/
#main_contents {
	margin: 0px auto;
}
.info h3 {
	font-size: 1.5em;
	font-weight: bold;
    color: #555555;
}
.top {
	margin-bottom: 10px;
}
.info dt {
    background: #74a9d7;
    border-right: 1px solid #eee;
	font-size: 1.2em;
	font-weight: bold;
    color: #fff;
    display: block;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.spot {
	margin-top: 20px;
}
/*--------------------------------------------
ボトムナビゲーション　ＰＣ非表示
--------------------------------------------*/
.menu {
	position: fixed;
	left: 0;
	bottom: 0;
	background-color: #69F;
	width: 100%;
	height:70px;
	z-index:30;
}
.menu li {
	float: left;
	display: table;
	table-layout: fixed;
	width: 33%;
	text-align: center;
	list-style-type: none;
}
.menu li a {
	display: block;
	margin: auto;
	padding: 20px;
	text-decoration: none;
}
.area {
	display: block;
	margin: auto;
	padding: 20px;
	text-decoration: none;
}
.menu li i {
	color: #FFF;
}
.menu li a:hover {
	background-color: rgb(104, 194, 255);
}
span {
	display: block;
	font-size: 10px;
	color: #FFF;
}
/*ここからコンテンツメニュー*/
#drawer {
  position: relative;
}
.unshown {
  display:none;
}
#open {
  display: inline-block;
  vertical-align: middle;
}
#close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
#menu-content {
	overflow: auto;
	position: fixed;
	top: 0;
	z-index: 9999;
	width: 60%;
	max-width: 300px;
	height: 100%;
    transition: .3s ease-in-out;
	transform: translate(105%);
	right: 0px;
	background-color: rgb(255, 252, 205);
}
#menu-content ul{
  padding: 70px 10px 0;
}
#menu-content ul li{
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
  text-decoration: none;
  color: #000000;
  padding: 10px;
  position: relative;
}
#input:checked ~ #close {
  display: block;
  opacity: .5;
}
#input:checked ~ #menu-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
/*--------------------------------------------
メインコンテンツ
--------------------------------------------*/
#main_contents {
	clear:both;
	width: 100%;
}
/*----フェードイン----*/
.box{
  width: 100%;
  float:right;
  transform:translateX(100px);
  opacity:0;
  transition:opacity 1s,transform 1s;
}
.fadein{
  opacity:1;
  transform:translateX(0);
}
/*-----------------------
フッター
------------------------*/
#footer_inner p {
	float: right;
	margin-right: 10px;
}
#footer_inner ul li {
	display: inline;
	font-size: 1.5em;
	padding-left: 1em;
	list-style: none;
}
#footer_inner address {
	margin: 10px;
	font-size: 75%;
}
/*------------------------
スマートフォン用デザイン
--------------------------*/
@media screen and (max-width: 480px) {
#header {
	text-align: center;
}
#header img {
	width: 50%;
}
#main_contents img {
	width:100%;
}
#main_contents p {
	width: 90%;
	margin: 0px auto;
}
/*--スマートフォンでのグローバルナビ非表示--*/
.gnav {
	display: none;
}
#main_visual {
	display: none;	
}
/*--フッター--*/
#footer{
	width: 100%;
	margin-bottom: 70px;
}
}
/*------------------------
ＰＣ用デザイン
--------------------------*/
@media screen and (min-width: 481px) {
#wrapper {
	width: 1000px;
	margin: 0px auto;
}
#header img {
	float: right;
}
#main_visual {
	width: 1000px;
	height: 345px;
}
#main_contents {
	width: 1000px;
	margin-top: 10px;
}
.top {
	display: flex;
}
.spot {
	display: flex;
}
/*--フッター--*/
#footer {
	clear:both;
	color: #FFF;
	border-top: 2px solid #CCC;
	background: #034A84;
}
#footer_inner {
	margin: 0px auto;
	width: 1000px;
	padding-top: 5px;
}
#footer_inner a:link {
	color: #FFF;
}
#footer_inner a:hover {
	color: #FFF;
	text-decoration: none;
}
/*ＰＣ画面でのボトムナビゲーション非表示*/
.menu {
	display: none;
}
}