/* CSS Document */

/* Layout */

/* 基本設定 */
html,
body {
  width: 100%;
  min-width: 1000px;
  height: 100%;
}

* {
  font-size: 14px;
  color: rgba(65, 65, 65, 1);
  font-family: "Noto Sans Japanese", "Noto Sans CJK JP";
}


header,
main,
footer {
  width: 100%;
}



/* header */
header {
  position: fixed;
  top: 0;
  border-bottom: 1px solid rgba(13, 86, 97, .1);
  z-index: 10;
  background: rgba(255, 255, 255, 1);
  height: 60px;
}

nav {
  display: flex;
  width: 1000px;
  height: 60px;
  margin: 0 auto;
  font-size: 0;
}

nav .logo {
  display: inline-block;
  width: 350px;
  height: 60px;
  line-height: 60px;
  font-size: 21px;
}

nav .logo span {
  font-size: 13px;
  margin-right: 5px;
}

nav .navi {
  display: inline-block;
  width: 650px;
  height: 60px;
  font-size: 14px;
}

nav .navi li {
  height: 60px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 0 calc((650px - 410px) / 12);
}

nav .navi li a {
  font-size: 14px;
}

nav .navi li:last-child {
  background: rgba(252, 238, 33, 1);
}

nav .navi li a:hover {
  color: rgba(65, 65, 65, .5);
}

nav .navi li a.cur {
  color: rgba(65, 65, 65, .5);
}

/* footer */
footer {
  color: rgba(255, 255, 255, 1);
  background: rgba(13, 86, 97, .5);
}


.footer_navi {
  display: flex;
  justify-content: space-between;
  width: 1000px; 
  margin: 0 auto;
  padding: 30px 0;
}

.ssl {
  width: 1000px;
  margin: 0 auto;
}

.footer_navi .logo {
  display: inline-block;
  line-height: 168px;
  font-size: 21px;
  vertical-align: middle;
}

.footer_navi .logo span {
  font-size: 13px;
  margin-right: 5px;
}


.footer_navi>div {
  display: inline-block;
  border-right: 1px solid #FFF;
  width: 350px;
  box-sizing: border-box;
  padding: 0 45px;
}

.footer_navi>div:first-child {
  padding: 0;
  width: 270px;
}

.footer_navi>div:last-child {
  border: none;
}

.footer_navi p {
  font-size: 14px;
}

.footer_navi address {
  margin-bottom: 10px;
}


.footer_navi a {
  color: rgba(255, 255, 255, 1);
}

.footer_navi .map {
  border: 1px solid rgba(255, 255, 255, 1);
  width: 120px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 11px;
  -webkit-border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  margin-bottom: 10px;
}

.copyright {
  background: rgba(13, 86, 97, 1);
  font-size: 12px;
  height: 40px;
}

.copyright p {
  width: 1000px;
  margin: 0 auto;
  line-height: 40px;
  text-align: right;
  padding-right: 30px;
  box-sizing: border-box;
}



/* etc */

.load_svg {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-78%);
  overflow: hidden;
}

.load_svg svg {
  position: relative;
  left: 50%;
  width: 2000px;
  transform: translateX(-50%);
}

.index_image {
  opacity: 0
}

.to_top {
  display: block;
  width: 80px;
  text-align: center;
  margin: 30px auto;
  color: rgba(13, 86, 97, 1);

}

.to_top img {
  margin-bottom: 5px;
}

a {
  color: rgba(65, 65, 65, 1);
  text-decoration: none;
}

/*a:hover{
	color: rgba( 65 , 65 , 65 , .5 );
}
*/
.fix {
  position: fixed;
}