@charset "uft-8";

*,
::before,
::after{
  padding: 0;
  margin: 0;
}
ul,ol{
  list-style: none;
}

body {
  font-family: sans-seriffont-family, 'Noto Sans JP';
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

p,h1{
  margin: 0;
}


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

img { 
  max-width: 100%;
}


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

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

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

.site-menu ul{
  display: flex;
  align-items: center ;
}

/* ナビゲーションの余白 */
.site-menu ul li {
  margin-left: 10px;
  margin-right: 10px;  
}

.site-menu ul li a{
  font-family: font-family, 'Noto Sans JP', sans-serif;
}

.switch-lang-button{
  display: flex;
  font-family: font-family, 'Noto Sans JP', sans-serif;
  gap: 1px;
  margin-left: 1em;
}
.switch-lang-button>li{
  display: block;
  background-color: #00A9FE;
  border: #00A9FE 2px solid;
  line-height: 1.5em;
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.switch-lang-button>li.selected{
  background-color: #93dbff;
  border: rgba(134, 195, 225, 0.569) 2px solid;
  
}


li.switch-lang-button-ja{
  border-radius: 1em 0 0 1em;
  padding-left: 0.5em;
  padding-right: 0.4em;
}
li.switch-lang-button-en{
  border-radius: 0 1em 1em  0;
  padding-left: 0.4em;
  padding-right: 0.5em;
}

.footer{
  color:#000000;
  background-color: #A8A7AB;
  padding-top: 25px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center
}

.footer-logo{
  display: block;
  width: 200px;
}

.sns-btn {
  display: flex;
  gap: 10px;
  }
  .sns-btn li {
  width: 20px;
 
  }

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


@media(max-width:800px){
  .site-menu ul{
    display: block;  
    text-align: center;
  }
  .site-menu li{
    margin-top: 20px;
  }
  .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: 150px;
  }
  .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(../images/common/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  ul.switch-lang-button{
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
  }

  .main{
    padding-top: 50px;
  }

  .footer{
    padding-top: 5px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center
  }
  /* .footer-logo{
    margin-top: 5px;
  } */

  .sns-btn {
    display: flex;
    }
    
    .sns-btn li {
    width: 25px;
    margin-left: 10px;
    margin-right: 10px;
    }
  /* .copyright{
    margin-top: 50px;
  } */
}
