@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 {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
  font-weight: 400;
}
img {
  max-width: 100%;
}



/*　header設定
================================================================================*/
.header-inner {
  max-width: 1200px;
  height: 130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.header-logo_english-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.header-logo {
  display: flex;
  width: 900px;
  background-color: #ffffff;
}
.header-logo img {
  width: 900px;
}
.header-logo p {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 3px;
  color: rgb(28, 49, 119);  
}
.header-logo h1 {
  font-size: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  color: rgb(28, 49, 119);
}
.header-logo-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  margin-left: 10px;
}
.english-menu {
  width: 100px;
  height: 30px;
  background-color: rgb(28, 49, 119);
  color: #ffffff;
  text-align: center;
  padding: 7px 0;
}
.english-menu:hover {
  background-color: #93c80e;
  transition-duration: 0.3s;
}
.header-site-menu {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-menu {
  width: 100%;
}
.site-menu ul {
  display: flex;
  justify-content: space-between;
}
.site-menu ul li:first-child{
  margin-left: 20px;
}
.site-menu ul li{
  font-size: 18px;
  padding-right: 20px;
}
.site-menu ul li::after {
  content: '';
  display: block;
  width: 120%;
  height: 3px;
  background-color:#93c80e;
  margin-top: 5px;
  margin-left: -10%;
  visibility: hidden;
}
.site-menu ul li:hover{
  color: #93c80e;
  font-weight: bold;
}
.site-menu ul li:hover:after {
  visibility: visible;
}
.header-site-menu-en {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-menu-en {
  width: 100%;
}
.site-menu-en ul {
  display: flex;
  justify-content: space-between;
}
.site-menu-en ul li:first-child{
  margin-left: 20px;
}
.site-menu-en ul li{
  font-size: 18px;
  padding-right: 20px;
}
.site-menu-en ul li::after {
  content: '';
  display: block;
  width: 120%;
  height: 3px;
  background-color:#93c80e;
  margin-top: 5px;
  margin-left: -10%;
  visibility: hidden;
}
.site-menu-en ul li:hover{
  color: #93c80e;
  font-weight: bold;
}
.site-menu-en ul li:hover:after {
  visibility: visible;
}
/*　各ページのタイトル設定
================================================================================*/
.main-header {
  height: 100px;
  background-color: #2C2E2C;
  color: #ffffff;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 150px;
}
.main-header h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  font-size: 36px;
}






/*　フッターの設定
================================================================================*/
.footer {
  background-color: #2C2E2C;
  color: #EBEBEB;
  margin-top: 200px;
}
.footer-inner {
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.footer-inner-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  height: 500px;
}
.footer-address_and_contact {
  width: 500px;
  text-align: left;
}
.footer-address_and_contact h4::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #EBEBEB;
  margin-top: 3px;
  margin-bottom: 8px;
}
.footer-address_and_contact p {
  line-height: 1.3;
}
.map {
  margin-left: 40px;
  width: 60%;
  min-width: 300px;
  height: 300px;
}
.map iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.cooyright {
  font-size: 10px;
  margin-bottom: 20px;
}




/*　================================================================================
スマホ・タブレット設定
================================================================================　*/
@media (max-width: 800px) {

  /*　全体設定
  ================================================================================*/
  body {
    font-size: 14px;
  }

  /*　ヘッダー設定
  ================================================================================*/
  .header {
    position: fixed;
    background-color: #ffffff;
    z-index: 200;
    width: 100%;
    top: 0;
  }
  .header-inner {
    height: 110px;
  }
  .header-logo img {
    width: 500px;
    /* height: fit-content; */
    /* object-fit: contain; */
  }
  .header-logo {
    display: flex;
    width: 305px;
    background-color: #ffffff;
  }
  .header-logo-name {
    margin-left: 3px;
  }
  .header-logo h1 {
    font-size: 31px;
  }
  .header-logo p {
    font-size: 10px;
  }
  .english-menu {
    width: 45px;
    height: 20px;
    padding-top: 5px;
    font-size: 8px;
  }
  .header-site-menu {
    height: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .site-menu {
    overflow: scroll;
    height: 50px;
  }
  .site-menu ul li{
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 10px;
    height: 100%;
    padding-right: 20px;
  }
  .site-menu ul li:first-child{
    margin-left: 20px;
  }
  .header-site-menu-en {
    height: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .site-menu-en {
    overflow: scroll;
    height: 50px;
  }
  .site-menu-en ul li{
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 10px;
    height: 100%;
    padding-right: 20px;
  }
  .site-menu-en ul li:first-child{
    margin-left: 20px;
  }  

  /*　メイン設定
  ================================================================================*/
  main {
    padding-top: 110px;
  }

  /*　フッター設定
  ================================================================================*/
  .footer {
    background-color: #2C2E2C;
    color: #EBEBEB;
    margin-top: 100px;
    height: 550px;
  }
  .footer-address_and_contact {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-inner-box {
    display: block;
    height: 400px;
  }
  .map {
    margin-top: 50px;
    margin-left: 0px;
    width: 60%;
    height: 200px;
  }
  .cooyright {
    font-size: 10px;
    margin-bottom: 10px;
  }
}

