@charset "utf-8";

/* 全体設定 */

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p{
  line-height: 1.4;
}

img {
  max-width: 100%;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

/* header */

.header {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-box {
  display: flex;
  padding: 0;
  margin: 0;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-left: 10px;
}

.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 50px;
}

/* side-menu */

.side-menu {
  flex-shrink: 0;
  margin-right: 60px;
  margin-top: 10px;
  position: relative;
}

.side-menu-inner {
  position: sticky;
  top: 30px;
  left: 0;
  right: 0;
}

.side-menu-inner h3 {
  font-size: 18px;
  font-weight: bold;
}

.side-menu-inner ul {
  list-style-type: disc;
  margin-top: 20px;
  margin-left: 20px;
}

.side-menu-inner li {
  font-size: 14px;
  margin-top: 15px;
}


/* mein-contents */

.contents {
  width: 1080px;
  max-width: 90%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

.main-contents {
  flex-grow: 1;
  max-width: 765px;
}

.main-contents h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

.main-contents a {
  text-decoration:underline;
}

.main-contents a:hover{
  text-decoration: none;
}

.item-group {
  padding-bottom: 20px;
  padding-left: 10px;
}

.link-table{
  padding-top: 10px;
  padding-left: 10px;
}

.link-table td{
  padding-left: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.map{
  width: 500px;
}

.map iframe{
  display: block;
  width: 100%;
  height: 300px;
}

/* footer */

.footerFixed {
  min-height: 100vh;
  position: relative;
  padding-bottom: 60px;
  /* フッターの高さを指定 */
  box-sizing: border-box;
}

.footer {
  color: #ffffff;
  background-color: #000000;
  padding-top: 10px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 0;
  min-width: 100%;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
}


/* レスポンシブ */

@media (max-width: 800px) {

  /* header */

  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .header-logo {
    padding-top: 5px;
    width: 40px;
  }

  .title h1 {
    padding-top: 5px;
    font-size: 20px;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../../../images/side-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  /* main */

  .main {
    padding-top: 0;
  }

  .contents {
    display: block;
    max-width: 100%;
    margin-top: 10px;
  }

  /* side-menu */

  .side-menu {
    position: fixed;
    top: 0;
    transform: translateX(-110%);
    background-color: #f1f1f1;
    padding-top: 10px;
    padding-bottom: 20px;
    margin-top: 50px;
    margin-right: 0;
    width: 100%;
  }

  .side-menu.is-show {
    transform: translateX(0%);
  }

  .side-menu-inner {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* mein-contents */

  .main-contents {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-contents h2 {
    font-size: 20px;
  }

  .main-contents a {
    text-decoration:underline;
  }
  
  .main-contents a:hover{
    text-decoration: underline;
  }

  .link-table{
    padding-top: 10px;
    padding-left: 10px;
  }

  .link-table th{
    min-width: 65px;
  }

  .link-table td{
    padding-left: 20px;
  }

  .map{
    width: 100%;
  }

  /* footer */

  .copyright {
    margin-top: 10px;
  }

  .footer {
    margin-top: 0;
  }

}