@charset "UTF-8";
/* CSS Document */

* {
margin: 0;
padding: 0;
border: none;
font-size: 100%;
font-weight: normal;
font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
vertical-align: baseline;
}
ul li{
	list-style: none;
}

.wrapper{
	overflow: hidden;
}
/*header*/

.header_inr{
	margin: 0 auto;
	padding: 0 30px 0 30px;
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}
h1{
	width: 353px;
}

.navi_pc nav{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
		
}
nav p{
	margin-left: 25%;
	
}
nav ul{
	width: 900px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
nav ul li a{
	position: relative;
	display: inline-block;
	transition: .3s;
	text-decoration: none;
	color: #fff;
}
nav ul li a::after{
	position: absolute;
	bottom: .3em;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #63f3fe;
	opacity: 0;
	transition: .3s;
}
nav ul li a:hover{
	color: #63f3fe;
}
nav ul li a:hover::after {
  bottom: 0;
  opacity: 1;
}


/*footer*/
footer .f_nav{
	width: 1205px;
	margin: 0 auto;
	border-bottom: 2px solid #000;
	padding: 30px 0;
}
footer .add{
	width: 1205px;
	margin: 0 auto;
	padding: 30px 0;
	
}
footer .f_nav ul,footer .add ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
}
footer .f_nav ul li a{
	text-decoration:none;
	color: #000;	
}
footer .f_nav ul li a:hover{
	text-decoration:none;
	color: #0b9eb6;
	
}

/*青いボタン*/
.sec_btn{
	background: #023378;
	font-size: 20px;
    width: 410px;
	color: #fff;
    margin-top: 10px;
    text-align: center;
    padding: 30px;
	line-height: 3.0em;
    font-weight: bold;
    background-color: #023378;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .2s;
    transition: all 1s;
	position: relative;
}
.sec_btn a{
	color: #fff;
	text-decoration: none;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* マウスオーバー時 */
.sec_btn:hover{
    background-color: #0b9eb6;
    cursor: pointer;
}
.tx_c{
	margin: 0 auto;
}

/* 下部contact */
.sec4 .sec4_main{
	background: #000;
	margin-top: -10px;
}
.sec4 .sec4_inr{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 50px 0;
}
.sec4 .sec4_inr dl{
	color: #fff;
	text-align: center;
	line-height: 2.0em;
}
.sec4 .sec4_inr dl .sec4_ttl{
	font-size: 20px;
	font-weight: bold;
}

a:hover img{
	transition: .3s;
	opacity: 0.7;	
}

.navi_pc,.f_nav,.add,.sec4{
	display: block!important;
}
.navi_sp,.f_nav_sp,.add_sp,.sec4_sp{
	display: none!important;
}

@media screen and (max-width: 1370px){
	
nav ul{
	width: 800px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
}
@media screen and (max-width: 1366px){
	
nav ul{
	width: 700px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
}
@media screen and (max-width: 1280px){
nav ul{
	width: 700px;
	list-style: none;
	flex-direction:column;
	align-items: center;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 9999;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 999;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}
	
/*footer*/
footer .f_nav_sp{
	width: 95%;
	margin: 0 auto;
	border-bottom: 2px solid #000;
	padding: 20px 0;
}
footer .f_nav_sp img{
	width: 30%;
	margin: 0 auto;
	text-align: center;
	}
footer .f_nav_sp ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap:wrap;
	list-style: none;
	margin: 20px 0;
}
	footer .f_nav_sp ul li{
		margin-right: 20px;
		line-height: 2.5em;
	}
footer .f_nav_sp ul li a{
	text-decoration:none;
	color: #000;	
}
footer .f_nav_sp ul li a:hover{
	text-decoration:none;
	color: #0b9eb6;
	
}
	footer .add{
		width: 95%;
		margin: 0 auto;
	}
	footer address{
		font-style: normal;
		font-size: 14px;
		padding-top: 20px;
		text-align: center;
	}
	footer small{
		display: block;
		text-align: center;
		padding: 30px 0;
		font-size: 12px;
		
	}
.navi_sp,.f_nav_sp,.add_sp,.sec4_sp{
	display: block!important;
}
.navi_pc,.f_nav,.add,.sec4{
	display: none!important;
}



/*section4*/
	.sec4_sp h3{
		width: 100%;
		margin: 50px auto 0 auto;
		text-align: center;
}
	.sec4_sp .sec4_inr{
		width: 85%;
		margin: -10px auto 0 auto;
		color: #fff;
		padding: 20px 0;
		text-align: center;
		display: flex;
		justify-content: space-between;
		
		
	}
	
	.sec4_sp .sec4_main{
		background: #000;
	}
	.sec4_sp .se4_ttl{
		font-size: 22px;
	}	


}
@media screen and (max-width: 670px){
	footer .f_nav_sp img{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	}
}
@media screen and (max-width: 414px){
h1{
	width: 100%;
}
h1 img{
	width: 60%;
	}
/*section4*/
	.sec4_sp h3{
		width: 100%;
		margin: 50px auto 0 auto;
		text-align: center;
}
	.sec4_sp .sec4_inr{
		width: 85%;
		margin: -10px auto 0 auto;
		color: #fff;
		padding: 30px 0 0 0;
		text-align: center;
		flex-direction:column;		
	}
	.sec4_sp h3 img{
		width: 90%;
	}
	.sec4_sp dl{
		margin-bottom: 30px;
	}
	
	.sec4_sp .sec4_main{
		background: #000;
	}
	.sec4_sp .se4_ttl{
		font-size: 22px;
	}
footer .f_nav_sp ul li{
	font-size: 14px;

}
}
