
h1 {
    font-size: 36px;
    margin: 0;
}
table {
    border-collapse: collapse;
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
}
th, td {
    padding: 10px;
    text-align: left;
    width: 30px;
    border: 1px solid #ccc;
}
th {
    background-color: #ED6C00;
    color: #fff;
}

html {
    box-sizing: border-box;
    font-family: "Noto Sans JP";
}

body {
    margin: 0;
    font-family: "Noto Sans JP";
}


.logo img {
  width: 70%;
}

a {
    text-decoration: none;
    color: #ffffff;
}

/*----------------------header section-----------------------*/

header {
    max-width: 1520px;
    margin: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo {
    width: 250px;
    height: auto;
}
nav ul {
    display: flex;
    list-style-type: none;
    padding-inline-start : 0;
    gap: 50px;
}
nav li {
    position: relative;
}
.nav-item .bottom-line {
    position: absolute;
    height: 2px;
    width: 0;
    background: #ED6C00;
    bottom: 0;
    transition: 0.3s;
}
.nav-item li:hover > .bottom-line {
    width: 100%;
}
.nav-item a {
    color: #00A33F;
    font-size: 16px;
    text-decoration: none;
}

header .hamburgur {
    display: none;
}
@media screen and (max-width: 1120px) {
    header nav ul {
        display: none;
    }
    header .thick .nav-item {
      display: none;
    }
    header .thick .search.flex-between {
      display: none;
    }
    header .thick .bucket {
      display: none;
    }
    header .hamburgur {
      display: block;
      position: absolute;
      top: 40px;
      right: 30px;
    }
    header .hamburgur #hamburgur_icon .hamburgur_button {
      margin-left: auto;
      display: block;
    }
    header .hamburgur #hamburgur_icon .hamburgur_button span {
      display: block;
      height: 2px;
      width: 30px;
      background: #000;
    }
    header .hamburgur #hamburgur_icon .hamburgur_button span:nth-child(2) {
      margin-top: 10px;
    }
    header .hamburgur #hamburgur_icon .hamburgur_button span:last-child {
      margin-top: 10px;
    }
    header .hamburgur #hamburgur_menu {
      position: fixed;
      width: 100%;
      max-width: 240px;
      height: 100%;
      top: 0;
      z-index: 3;
      right: 0;
      background: rgba(255, 255, 255, 0.8);
      padding: 40px 20px 0 40px;
      transition: 0.3s;
      transform: translateX(100%);
    }
    header .hamburgur #hamburgur_menu.active {
      transform: translateX(0);
    }
    header .hamburgur #hamburgur_menu .hamburgur_close_button {
      width: -moz-fit-content;
      width: fit-content;
      display: block;
      margin-left: auto;
    }
    header .hamburgur #hamburgur_menu .hamburgur_close_button span {
      display: block;
      width: 70rem;
      height: 4px;
      background: #000;
      transform: rotate(45deg);
    }
    header .hamburgur #hamburgur_menu .hamburgur_close_button span:last-child {
      margin-top: -2rem;
      transform: rotate(-45deg);
      margin-top: -5px;
    }
    header .hamburgur #hamburgur_menu ul {
      margin-top: 5rem;
    }
    header .hamburgur #hamburgur_menu ul li {
      padding: 20rem 0;
      list-style: none;
    }
    header .hamburgur #hamburgur_menu ul li .menuitem {
      font-size: 17px;
      letter-spacing: 0.06em;
      color: #000;
    }
    header .hamburgur #hamburgur_menu ul li .menuitem .hove {
      font-size: 17px;
    }
    header .hamburgur #hamburgur_menu ul li .menuitem .hove:hover {
      color: #990000;
    }
    header .hamburgur #hamburgur_menu ul li .menuitem span {
      font-size: 13px;
    }
    header .hamburgur #hamburgur_menu ul .menuLink {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 40rem;
      margin-top: 10rem;
    }
    header .hamburgur #hamburgur_menu ul .menuLink img {
      width: 50rem;
    }
    header .hamburgur #hamburgur_menu ul .menuLink img:hover {
      animation: hovereft 0.3s linear forwards;
    }

}
/*---------------------footer---------------------------*/
footer {
    padding-top: 80px;
}
.sitemap {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;    
}
.map {
    width: 67%;
}
.site_map {
    width: 18.5%;
}
.site_map ul {
    margin-top: 50px; 
    font-size: 20px;
    color: #00A33F;  
    padding-inline-start: 0px; 
}
.site_map li {
    margin-bottom: 40px;
    list-style-type: none;
}
.site_map a {
    color: #00A33F;
}
.copyright {
    width: 80%;
    margin: auto;
    margin-top: 35px;
    margin-bottom: 40px;
    font-size: 14px;
}

@media only screen and (max-width: 768px) {
    html,
    body {
      font-size: 0.07vw;
      overflow-x: hidden;
    }
    th, td {
        font-size: 16px;
    }
    footer {
        padding-top: 80rem;
    }
    footer .logo img {
        width: 300rem;
    } 
    .sitemap {
        width: 80%;
        margin: auto;
        display: block;
        justify-content: space-between;    
    }
    .map {
        width: 100%;
    }
    .map iframe {
        border: 2px solid #ED6C00;
    }
    .site_map {
        width: 18.5%;
    }
    .site_map ul {
        width: max-content;
        margin-top: 50rem; 
        font-size: 12px;
        color: #00A33F;  
        padding-inline-start: 0rem; 
    }
    .site_map li {
        margin-bottom: 40rem;
        list-style-type: none;
    }
    .site_map a {
        color: #00A33F;
    }
    .copyright {
        width: 80%;
        margin: auto;
        margin-top: 35rem;
        margin-bottom: 40rem;
        font-size: 14px;
    }
}
