@charset "utf-8";

/* ゴシック体 */
/* font-family: "Noto Sans JP", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

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

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

/* 共通設定 */

/* コンテナサイズ */
.wrapper {
  width: 940px;
  margin: 0 auto;
  padding: 60px 0;
}

/* ボタン */
/* お問い合わせボタン */
.btn_common_1 {
  display: block;
  width: 150px;
  text-align: center;
  color: #fff;
  background-color: #0c66ab;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 16px 10px 30px;

  background-image: url("../images/common/mail.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: left 16px center;

  transition: color 0.3s, background-color 0.3s;
}

.btn_common_1:hover {
  background-color: rgba(12, 102, 171, 0.7); /* 透過70%で少し薄く */
  color: #fff;
}

.btn_common_2 {
  display: inline-block;
  text-align: left;
  color: #fff;
  background-color: #0c66ab;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;

  padding: 10px 40px 10px 25px;

  background-image: url("../images/common/chevron-right.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 16px center;
  transition: color 0.3s, background-color 0.3s;
}

.btn_common_2:hover {
  background-color: rgba(12, 102, 171, 0.7); /* 透過70%で少し薄く */
  color: #fff;
}

/* 基本的なテキスト */
/* 1.6rem本文 */
.text_main {
  line-height: 1.8;
}

/* リンクテキスト */
.text_link {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

/* お知らせ日付テキスト */
.news_date {
  font-size: 1.4rem;
  font-weight: 600;
}

/* お知らせカテゴリー */
.news_category {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  background-color: #0c66ab;
  width: 77px;
  padding: 5px 0;
}

/* セクションタイトル */
.ttl_cmn_1 {
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
}

.ttl_cmn_1 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 30px 0 37px;
}

/*=====ヘッダー*/
header {
  width: 100%;
  position: relative;
}

/* グローバルナビゲーション */

.nav_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: grid;
  grid-template-columns: 165px 650px;
  justify-content: space-between;
  padding: 20px 70px 25px 70px;
}

.list_nav_1 {
  display: flex;
  justify-content: right;
  gap: 60px;
  align-items: center;
  list-style: none;
  width: 100%;
  margin: 0 auto;
}

.is_current {
  color: #0c66ab;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.item_nav_1 {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.item_nav_1:hover {
  color: #0c66ab; /* ホバー時の色 */
}

/*=====メイン*/
main {
}

/*=====アサイド*/
aside {
}

/*=====フッター*/
footer {
  width: 940px;
  margin: 0 auto;
  padding: 60px 0 0;
}

.grid_access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

footer h2 {
  margin-bottom: 29px;
}

footer h3 {
  margin-bottom: 41px;
}

/* グローバルナビゲーション（フッター） */

.nav_footer {
  margin-top: 76px;
  border-bottom: 1px solid #0c66ab;
}

.list_nav_2 {
  display: flex;
  justify-content: center;
  gap: 120px;
  align-items: center;
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding-top: 38px;
  padding-bottom: 28px;
}

.item_nav_f {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.item_nav_f:hover {
  color: #0c66ab;
}

footer p {
  text-align: center;
  padding-top: 16px;
  padding-bottom: 15px;
}
