@charset "utf-8";
* {
	box-sizing: border-box;
}
html {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	color: #5F5F5F;
    background: #fff;
	font-size: 16px;
	font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'FontAwesome', sans-serif;
}
.aizen {/*親div*/ 
    position: relative;/*相対配置*/
    background-color: #000;
    min-height: 100px; /* 必要に応じて高さを指定 */
  }

ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  display: block;
  text-decoration: none;
  color: #0d488b;
  margin-right: 0;
  margin-left: 0;
}
a:hover {
  color: rgb(214, 237, 248);
}


.kv_gf700_07 {
    align-content: center;
    background-color: #000;
    max-width: 100%;
    height: auto;
    margin: 0;
}

.top-banner li img {
  max-width:100%; /*画像のはみだしを防ぐ*/
  height: auto; /*画像の縦横比を維持 */
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

address {
  font-style: normal;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}


.footer {
  padding: 2rem;
  font-size: 15px;
  color: #4b5564;
  background: #fff;
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer__navi li {
  margin-bottom: 0.75rem;
}

.footer__address {
  margin-bottom: 2rem;
}

.footer__address a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
    max-width: 960px;
    width: 100%; /* フレキシブルに対応 */
    margin: 0 auto;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer__address a {
    text-decoration: none;
  }

}