@charset "UTF-8";
@import url("grid.css");
img {
  max-width: 100%;
  height: auto; /*高さ自動*/
}
a {
  display: block;
  color: #333;
  text-decoration-line: none;
}
a:hover {
  color: #999;
}
a img:hover {
  opacity: 0.8;
}
.blueback {
  background-color: #003399;
  color: #fff;
  padding: 1rem;
}
.underline {
  border-bottom: 3px solid #003399;
  padding-bottom: 0.5rem;
}
.center {
  text-align: center;
}
/*ヘッダー
-------------------------------------*/
.head {
  display: flex;
  flex-direction: row;
  padding: 0;
}
.head h1 {
  margin: 20px 0 0 0;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.25);
}
.menu {
  background-color: #BDCCD4;
}
.menu .visit a {
  background-color: #F94C4D;
  color: #FFFFFF;
}
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  list-style: none;
  margin-bottom: 0;
}
nav li {
  flex: 1 0 auto;
  margin-bottom: 0;
}
nav li a {
  text-decoration: none;
  text-align: center;
  color: #fff;
}
nav a:hover {
  background-color: #A6DDDD;
  color: #fff;
}
nav a {
  padding: 1rem 1rem;
  display: block;
}
@media screen and (min-width: 768px) {
  /* PC時はMENUボタンを非表示 */
  #open, #close {
    display: none !important;
  }
  #navi {
    display: block !important;
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 768px) {
  .head {
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
  }
  .telbox {
    clear: both;
    text-align: center;
  }
  .head #open, #close {
    position: absolute;
    top: 20px;
    right: 12px;
  }
  nav ul {
    flex-direction: column;
  }
  nav li {
    padding-top: 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
  }
  /* スマホ時はMENUボタンを表示 */
  #open, #close {
    display: block;
    width: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
  }
  /* スマホ時はメニューを非表示 */
  #navi {
    display: none;
  }
}
/*メインコンテンツ
-------------------------------------*/
main {
  margin: 100px 0 0 0;
}
.temp {
  text-align: center;
}
h2 {
  color: #333;
  margin: 30px 0 0 0;
  padding: 1rem;
  font-size: 2.6rem;
  text-align: center;
}
h3 {
  width: 100px;
  border-bottom: 2px #333333 solid;
  margin: 0 auto 20px auto;
}
.temp h4 {
  border-bottom: 2px solid #003399;
  color: #333333;
  padding: 1rem;
  font-size: 0.8rem;
}
.temp li {
  list-style-type: none;
  text-align: center;
  padding: 0.5rem;
}
.temp p {
  text-align: left;
}
.downlord {
  text-align: center;
}
/*フッター
-------------------------------------*/
footer {
  background-color: #003399;
  padding: 5rem 0;
  color: #fff;
}
footer h5 {
  border-bottom: 2px solid #fff;
}
/*コピーライト
-------------------------------------*/
.copyright {
  text-align: center;
  color: #FFF;
  font-size: 0.6rem;
  margin: 40px 0 0 0;
  padding: 1rem 0;
  background-color: #3B82C4;
}
.copyright a {
  text-decoration: none;
  display: inline-block;
}
/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
}
#pagetop a {
  display: block;
  background: #3B82C4;
  color: #fff;
  width: 50px;
  padding: 10px 5px;
  text-align: center;
}
#pagetop a:hover {
  background: #3366FF;
}
/*パンくずリスト
-----------------------------------*/
.breadcrumb {
  margin: 0 0 1em 0;
  padding: 0;
}
.breadcrumb li {
  list-style-type: none;
}
.breadcrumb li a {
  display: inline-block;
  color: #959fa5;
}