@charset "utf-8";

*,
::before,
::after {
  	padding: 0;
  	margin: 0;
  	box-sizing: border-box;
}

ul,ol {
  	list-style: none;
}

a {
  	color: inherit;
  	text-decoration: none;
}

body {
  	font-family: sans-serif;
  	font-size: 16px;
  	color: #000000;
  	line-height: 1;
  	background-color: #ffffff;
}

img {
  	max-width: 100%;
}

/*ヘッダー↓*/
.header {
	max-width: 1200px;
	height: 178px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.header-logo {
	display: inline-block;
	margin-top: 20px;
}

h1 {
	display: inline-block;
	text-align:center;
	position: absolute;
	top: 40%;
}
h1+p {
	display: inline-block;
	position: absolute;
	top: 20%;	
}
.tel {
	display: inline-block;
	color: #1363DF;
	font-size: 40px;
	position: absolute;
	top: 40%;
	left: 65%;
}
.mail {
	display: inline-block;
	width: 100px;
	height: 45px;
	padding: 5px 2px;
	text-decoration: none;
	background-color: #ffa500;
	text-align: center;
	line-height: 40px;
	border-bottom: 5px solid #D2691E;
	border-radius: 3px;
	font-size: 25px;
	color: #fffacd;
	letter-spacing: 4px;
	position: absolute;
	top:36%;
	left: 91.5%;
}
.mail:hover {
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
	border-bottom: none;
}

.soudan {
	display: inline-block;
	position: absolute;
	top: 15%;
	left: 65%;
}
.soudan span {
	color: #0000ff;
	background:linear-gradient(transparent 70%, #ffdc00 70%);
  	font-weight:bold;
}
.jikan {
	display: inline-block;
	position: absolute;
	top: 30%;
	left: 65%;
	font-size: 13px;		
}
	
/*グローバルナビゲーション↓*/
.gnavi__wrap {
    	width: 1200px;
    	margin: 0 auto;
}
.gnavi__lists {
    	display: flex;
}
.gnavi__list {
    	width: 50%;
    	height: 60px;
    	background-color: #E5F0F8;
    	position: relative;
    	transition: all .3s;
}
.gnavi__list:hover {
    	background-color: #1363DF;
}

.gnavi__list:not(:first-child)::before {
    	content: "";
    	width: 1px;
    	height: 100%;
   	background-color: #fff;
    	position: absolute;
    	top: 0;
    	left: 0;
    	transition: all .3s;
}
.gnavi__list:hover::before {
    	background-color: #0071BB;
}
.gnavi__list a {
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	width: 100%;
    	height: 100%;
    	text-decoration: none;
    	color: #1b4059;
    	font-size: 15px;
    	letter-spacing: 0.05em;
    	font-weight: 600;
    	transition: all .3s;
}
.gnavi__list:hover a {
    	color: #fff;
}

.dropdown__lists {
    	display: none;
    	width: 100%;
    	position: absolute;
    	top: 60px;
    	left: 0;
}
.gnavi__list:hover .dropdown__lists {
    	display: block;
}
.dropdown__list {
    	background-color: #004d80;
    	height: 60px;
    	transition: all .3s;
    	position: relative;
}
.dropdown__list:not(:first-child)::before{
    	content: "";
    	width: 100%;
    	height: 1px;
    	background-color: #3492d1;
    	position: absolute;
    	top: 0;
    	left: 0;
}
.dropdown__list:hover {
    	background-color: #003558;
}
.dropdown__list a {
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	color: #fff;
    	text-decoration: none;
    	position: relative;
}
.dropdown__list a::before {
    	content: '';
    	display: block;
    	width: 6px;
    	height: 6px;
    	border-top: 2px solid #fff;
    	border-left: 2px solid #fff;
    	transform: rotate(135deg);
    	position: absolute;
    	left: 15px;
    	top: calc(50% - 5px);
}
.dropdown__lists {
    	visibility: hidden;
    	opacity: 0;
    	transition: all .3s;
    	width: 100%;
    	position: absolute;
    	top: 60px;
    	left: 0;
}
.gnavi__list:hover .dropdown__lists {
    	visibility: visible;
    	opacity: 1;
}
/*↑グローバルナビゲーション終わり*/
/*↑ヘッダー終わり*/

/* フッターここから↓ */
.footer {
  	color: #ffffff;
  	background-color: #1363DF;
  	padding-top: 30px;
  	padding-bottom: 15px;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
}

.site-menu ul {
  	display: flex;
}

.site-menu ul li {
  	margin-left: 20px;
  	margin-right: 20px;
}

.site-menu ul li a {
  	font-weight: bold;
}

.site-menu ul li a:hover {
	opacity: 0.7;
}

.footer-logo {
	display: inline-block;

  	margin-top: 90px;
}
.footer-jimusyo {
	display: inline-block;
	font-size: 22px;
  	font-weight: bold;
	color: #000;
}
.footer-tel {
  	font-size: 26px;
  	font-weight: bold;
  	margin-top: 28px;
}

.footer-time {
  	font-size: 13px;
  	margin-top: 16px;
}
.footer-adress {
	font-size: 13px;
  	margin-top: 16px;
}	
.copyright {
  	font-size: 16px;
  	font-weight: bold;
  	margin-top: 90px;
}
/*フッター終わり↑ */

/*　↓メディアクエリ　800px以下のときだけ適用 */
@media (max-width: 800px) {

.gnavi__lists {
    	display: block;
}
.gnavi__list a {
	display: block;
}
.dropdown__lists {
	display: block;
}
.dropdown__list a {
	display: block;
}


}

