* {
    box-sizing: border-box;
}
:root {
    --switches-bg-color: goldenrod;
    --switches-label-color: white ;
    --switch-bg-color: white;
    --switch-text-color: goldenrod ;
}

html {
    box-sizing: border-box;
    font-family: "Noto Sans JP";
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Noto Sans JP";
    overflow-x: hidden;
}
section { 
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    background-color: #f1f1f1
}

img {
    width: 100%;
}
.logo img {
    width: 70%;
}
a {
    text-decoration: none;
    color: #ffffff;
}

h1 {
    margin: 0;
    font-size: 36px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 16px;
    margin: 3px;
}
p {
    font-size: 16px;
    line-height: 1;
}

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;
    font-size: 16px;
}
th {
    background-color: #ed6b000e;
    color: #000000;
}

/*-----------------main--------------------*/
.flex {
    display: flex;
}

.flex .width {
    width: 18vw;
}




/*------------------------------------------*/
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;
}
.slick-next:before, .slick-prev:before {
    color: #ED6C00 !important;
}
@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;
    }

}

/*----------------------main -------------------------------*/
/* a container - decorative, not required */

.container {
    width: 20rem;
    padding: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
}
/* container for all of the switch elements 
    - adjust "width" to fit the content accordingly 
*/
.switches-container {
    width: 16rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: var(--switches-bg-color);
    line-height: 3rem;
    border-radius: 3rem;
    margin-left: auto;
    margin-right: auto;
}

/* input (radio) for toggling. hidden - use labels for clicking on */
.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

/* labels for the input (radio) boxes - something to click on */
.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: var(--switches-label-color);
}

/* switch highlighters wrapper (sliding left / right) 
    - need wrapper to enable the even margins around the highlight box
*/
.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
    /* transition: transform 1s; */
}

/* switch box highlighter */
.switch {
    border-radius: 3rem;
    background: var(--switch-bg-color);
    height: 100%;
}

/* switch box labels
    - default setup
    - toggle afterwards based on radio:checked status 
*/
.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: var(--switch-text-color) ;
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
}

/* slide the switch box from right to left */
.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

/* slide the switch box from left to right */
.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}

/* toggle the switch box labels - first checkbox:checked - show first switch div */
.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

/* toggle the switch box labels - second checkbox:checked - show second switch div */
.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}

/*-----------------------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;
    }
    .flex {
        display: block;
    }
    .flex .width {
        font-size: 20px;
        width: 50vw;
        font-weight: 700;
        text-decoration: solid;
        margin-bottom: 30px;
    }
    
    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;
    }
}