@charset "utf-8";

/* font-family: "Zen Kaku Gothic New", sans-serif; */
/* font-family: "Zen Old Mincho", serif; */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");

/*=====ボディ設定*/
html {
  font-size: 62.5%;
  line-height: 1;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body {
  font-size: 1.6rem;
  overflow: hidden;
}

/* ヘッダー＝＝＝＝＝ */
header {
  line-height: 1.4;
}

/* サイトタイトル */
header h1 {
  width: 339px;
  height: 54px;
}

header h1 a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  background-image: url(../images/common/ttl_logo@2x.png);
  background-size: cover;
}

/* ヘッダの囲み */
.wrapper_header {
  width: 960px;
  margin: 50px auto 25px;
}

/* グローバルナビゲーション */
.nav_global {
  border-top: 1px solid #3f59b2;
  border-bottom: 2px solid #3f59b2;
}

.nav_con {
  display: none;
}

/* GN - ナビ本体 */
.list_global_nav {
  display: grid;
  grid-template-columns: repeat(5, 192px);
  width: 960px;
  list-style: none;
  text-align: center;
  margin: 0 auto;
}

/* GN - リンク */
.list_global_nav a {
  display: block;
  font-weight: 700;
  color: #000;
  transition: 0.1s;
  text-decoration: none;
  padding: 14px 0 11px;
}

/* GN - 装飾 */
.list_global_nav a span {
  display: block;
  font-weight: 600;
  font-size: 1.2rem;
  color: #3f59b2;
  transition: 0.1s;
}

.list_global_nav a:hover,
.list_global_nav a.is_current {
  color: #fff;
  background-color: #3f59b2;
}

.list_global_nav a:hover span,
.list_global_nav a.is_current span {
  color: #fff;
}

/*=====フッター*/
footer {
  width: auto;
  font-size: 1.4rem;
  line-height: 1.9;
  text-align: center;
  border-top: 1px solid #3f59b2;
  background-color: #e7ecfc;
  padding: 58px 0 0;
}

/* フッターロゴ */
.ttl_site_footer {
  width: 326px;
  height: 54px;
  margin: 0 auto 15px;
}

.ttl_site_footer a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  background-image: url(../images/common/ttl_logo_footer@2x.png);
  background-size: cover;
}

/* フッター住所 */
footer address ul {
  list-style: none;
  margin: 0 0 39px;
}

/* 著作表示 */
.txt_copyright {
  font-weight: 700;
  color: #fff;
  background-color: #3f59b2;
  padding: 9px;
}

/* ブレークポイント＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 768px) {

  /* イメージ設定 */
  img {
    max-width: 100%;
    height: auto;
  }

  body {
    padding: 60px 0 0;
  }

  header {
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: #fff;
    padding: 0 0 0 15px;
  }

  /* サイトタイトル */
  header h1 {
    width: 58.6vw;
    height: 10vw;
  }

  header h1 a {
    background-size: contain;
  }

  /* ヘッダの囲み */
  .wrapper_header {
    width: auto;
    margin: 0;
  }

  /* グローバルナビゲーション */
  .nav_global {
    width: 100%;
    border-top: none;
    border-bottom: none;
  }

  /* GN - ナブコン */
  .nav_con {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(../images/common/nav_con_close.svg);
    background-position: center center;
    background-color: #3f59b2;
  }

  /* GN - ナブコン -ナビゲーションの展開 */
  .nav_con.is_open {
    background-image: url(../images/common/nav_con_open.svg);
  }

  /* GN - ナビ本体 */
  .list_global_nav {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #3f59b2;
    text-align: left;
    padding: 20vw 8vw;
    margin: 0 auto;
  }

  /* GN - リンク */
  .list_global_nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    transition: 0;
    padding: 20px 0;
  }

  /* GN - 装飾 */
  .list_global_nav a span {
    width: 60px;
    color: #fff;
    font-weight: 400;
    transition: 0;
  }

  .list_global_nav a:hover,
  .list_global_nav a.is_current {
    color: #fff;
    background-color: inherit;
  }

  .list_global_nav a:hover span,
  .list_global_nav a.is_current span {
    color: inherit;
  }

  /*=====フッター*/
  footer {
    width: auto;
    font-size: 1.4rem;
    line-height: 1.9;
    text-align: center;
    border-top: 1px solid #3f59b2;
    background-color: #e7ecfc;
    padding: 38px 0 0;
  }

  /* フッターロゴ */
  .ttl_site_footer {
    width: 60vw;
    height: 10vw;
    margin: 0 auto 15px;
  }

  /* フッター住所 */
  footer address ul {
    margin: 0 0 20px;
  }

  /* 著作表示 */
  .txt_copyright {
    font-size: 1.1rem;
    font-weight: 500;
  }
}