html {}

body{
  background-color: #FFFFFF;
  font-family: sans-serif;
}
/*============
NAVI
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: .5s;
  z-index: 3;
  opacity: 0.9;
}
.open nav {
  left: 0;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -240px;
    width: 240px;
  }
}

.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 30px;
  transform: translate(0, 0);
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.open .toggle_btn {
  left: 330px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333333;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 5px;
  width: 40px;
  animation: equalizer01 7000ms infinite;
}
.toggle_btn span:nth-child(2) {
  top: 15px;
  width: 40px;
  animation: equalizer02 5000ms infinite;
  animation-delay: 0.33s;
}
.toggle_btn span:nth-child(3) {
  top: 25px;
  width: 40px;
  animation: equalizer02 5000ms infinite;
}
.open .toggle_btn span {
  background-color: #333333;
  width: 30px;
}
.open .toggle_btn span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
  animation: unset;
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
  animation: unset;
}
.open .toggle_btn span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg);
  animation: unset;
}
@media screen and (max-width: 767px) {
  .open .toggle_btn {
    left: 260px;
  }
}
/*============
#mask
=============*/
#mask {
  display: none;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .4;
  z-index: 2;
  cursor: pointer;
  transition: all .5s;
}
/*============
#言語切り替え
=============*/
.language-switch {
  text-align: right;
  margin-top: 20px;
}

.language-switch-link {
  text-decoration: none;
}

.language-label {
  display: inline-block;
  padding: 5px 10px;
  background-color: #333;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.language-switch-link:hover .language-label {
  background-color: #555;
}
/*============
top_img
=============*/
.top_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.top_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo{
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  padding: 10px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.logo img{
  display: inline-block;
  width: 100%;
}
/*============
COMPANY
=============*/
.company{
  padding: 80px 0;
}

.logo_company{
  padding-top: 50px;
  text-align: center;
}

.logo_company img{
  width: 5%;
  margin-bottom: 20pt;
}

.company_data{
  text-align: center;
  width: 100%;
  color: #333333;
}

#icon-1{
  width: 100px;
}

#p1{
  text-align: center;
  color: #333333;
  font-size: 15px;
  font-weight: bold;
  margin: 10px;
}

#p2{
  text-align: center;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  margin: 8px;
}

/*============
CONTACT
=============*/
#h1{
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #333333;
  letter-spacing: .2rem;
}

#h3{
  font-size: 15px;
  text-align: center;
  margin: 30px;
  color: #333333;
}

.form {
  padding: 80px 0;
  margin: 0 5%;
}

.form p{
  text-align: center;
  padding: 100px;
  font-weight: bold;
  font-size: 15px;
  color: #333333;
}
.form_div{
  text-align: left;
  font-weight: bold;
  font-size: 15px;
  color: #333333;
}

.form_div input,textarea{
  width: 100%;
  box-sizing: border-box;
  resize: none;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
}

.form_div label.error{
  color: red;
  font-size: 10px;
}

.form_div_radio{
  font-weight: bold;
  font-size: 15px;
  color: #333333;
}

.form_div_radio input{
  display: inline-block;
  padding: 5px;
}

.button{
  text-align: center;
}

.button input{
     width: 100px;
     height:30px;
     color: white;
     text-decoration: none;
     text-align: center;
     background-color: grey;
     border-radius: 5px;
     -webkit-transition: all 0.5s;
     transition: all 0.5s;
     display: inline-block;
 }

.button input:hover{
     background-color: silver;
}

/*============
footer
=============*/
.footerFixed{
  position: relative;
  min-height: 100vh;
  padding-bottom: 30px;
  box-sizing: border-box;
} 

.footer{
  position: absolute;
  width: 100%;
  height: 30px;
  text-align: center;
  bottom: 0px;
  padding: 0px;
  background: black;
}

.footer p{
  font-size: 10px;
  font-weight: bold;
  color: white;
  margin: 10px;
}
/*============
Project
=============*/
.project {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project h1,
.project h3 {
  text-align: center;
  max-width: 767px;
  width: 100%;
  line-height: 1.7;
}

.project img {
  display: block;
  margin: 0 auto;
  max-width: 767px;
  width: 100%;
  height: auto;
}

.project p {
  display: inline-block;
  text-align: left;
  margin-left: 0;
  max-width: 767px;
  width: 100%;
  line-height: 1.7;
}

.project ul {
  display: inline-block;
  text-align: left;
  padding-left: 1.5em;
  margin-left: 0;
  max-width: 767px;
  width: 100%;
  list-style-type: none;
  line-height: 1.7;
}

.project li {
  text-align: left;
}

.project li::before {
  content: "•";
  margin-right: 0.5em;
}

.brand-list {
    text-indent: -8em;
    padding-left: 8em;
}

.brand-list_en {
    text-indent: -6em;
    padding-left: 6em;
}