.japanese {
 
 color: #333333;
}
.english {

	
	color: #333333;
}
.japanese,
.english {
  color: #333333;
  text-align: left;
}
p {
  text-align: left;
}
.english h4 {
	font-size: 16px;
	font-weight: bold;
	color: #CC3366;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px;
	line-height: normal;
}
.english h3 {
	font-size: 16px;
	font-weight: normal;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px;
	text-decoration: underline;
	}
strong {
	font-weight: bold;
	color: #CC3366;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
}



.nav-container {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(153,153,153,0.35);
  padding: 1em;
  border: 1px solid #eee;
  display: block;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

ul,
li {
  list-style: none;
  -webkit-padding-start: 0;
}

a {
  text-decoration: none;
  color: #ED3E44;
}

//Navigation menu
.nav-item {
  padding: 1em;
  display: inline;
}

//Dropdown menu
.nav-item-dropdown {
  position: relative;
  
  &:hover > .dropdown-menu {
    display: block;
    opacity: 1;
  }
}

.dropdown-trigger {
  position: relative;
  
  &:focus + .dropdown-menu {
    display: block;
    opacity: 1;
  }
  
  &::after {
    content: "›";
    position: absolute;
    color: #ED3E44;
    font-size: 24px;
    font-weight: bold;
    transform: rotate(90deg);
    top: -5px;
    right: -15px;
  }
}

.dropdown-menu {
  background-color: #ED3E44;
  display: inline-block;
  text-align: right;
  position: absolute;
  top: 2.5rem;
  right: -10px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease; 
  width: 160px;

  a {
    color: #fff;
  }
}

.dropdown-menu-item {
  cursor: pointer;
  padding: 1em;
  text-align: center;
  
  &:hover {
    background-color: darken(#ED3E44, 5%);
  }
}



@media ( min-width : 600px ){
  
	.flexbox {
    width: 1100px;
	padding-top:50px;
    margin: 0 250px;
    display: -webkit-flex;
    display: flex;
	color: #333333;
	}
  .japanese,
  .english {
    -webkit-flex: 1;
    flex: 1;
    background: none;
	color: #333333;
  }
}