@charset "utf-8";

/* 初期値リセット　ここから */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}
/* 初期リセットここまで */


/* 共通の基本設定 */
body {
  width: 100%;
  font-family: sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}
main {
  max-width: 1200px;
  margin-top: 10px;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 10px;
  background-color: ghostwhite;
}

h1{
  font-size: 150%;
  color: chocolate;
  border-top: 5px solid aqua;
  border-bottom: 5px solid aqua;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

img {
  max-width: 100%;
}

.header_inner {
  max-width: 1200px;
  height: 140px;
  margin-top: 5px;
  margin-left: 2%;
  margin-right: 2%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../image/himawari2.png) ;
  background-repeat: repeat;
}

.toggle_menu_button {
  display: none;
}

.header_logo {
  display: block;
  width: 300px;
}

.site_menu ul {
  display: flex;
}

.site_menu ul li {
  margin: left 15px;
  margin-right: 15px;
  padding: 2px;
  border: 2px solid #7c5d48;
  border-radius: 5px;
  background-color: cornsilk;
}

.site_menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

.link_box{
  color: #000000;
  background-color:lightskyblue ;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link_menu ul {
  display: flex;
}

.link_menu ul li {
  margin-left: 20px;
  margin-right: 20px;
  padding: 2px;
  border: 2px solid #7c5d48;
  border-radius: 5px;
  background-color: cornsilk;
  text-align: center;
}

.link_menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 11px;
 
}
.footer {
  max-width: 1200px;
  color: #ffffff;
  background-color: blue;
  margin-left: 2%;
  margin-right: 2%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 1.1;
}

.mousikomi{
  margin-top: 10px;
  margin-left: 40x;
  padding: 3px;
  border: 1px solid blue;
  border-radius: 2px;
  font-size: 11px;
  font-weight: bold;
  color: brown;
  background-color: lightblue;
  text-align: center;
}

.p_red{
  color: red;
}
}

/*              */
/* モバイル用設定 */
/*              */
@media (max-width: 800px) {
  .header {
    position: fixed;
    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 {
    width: 100px;
  }

  .header_site_menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736E62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

  .header_site_menu.is-show {
    display: block;
  }

  .toggle_menu_button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../image/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
	border: solid 1px white;
    border-radius: 2px;
/*    border: none;*/
/*    border-radius: 0;*/
/*    outline: none;*/
  }
  .site_menu ul {
    display: block;
    text-align: center;
  }

  .site_menu li {
    margin-top: 20px;
  }

  .site_menu ul li {
    margin: left 15px;px;
    margin-right: 15px;
    padding: 2px;
    border: 0;
    border-radius: 0px;
    background-color: #736E62;
  }
  .main {
    padding-top: 50px;
  }

  .link_menu ul {
    display: flex;
    flex-direction: column;
  }

}