@charset "UTF-8";
/******************************************************************
Site Name: new GE
Author: Rarejob

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*
 *  GE Material CSS

0. BASE
  0. RESET
  1. MIXIN
  2. ICON FONTS
1. COMMONS / PARTS
  1. COLORS
  2. FONT/TEXT
  3. MARGIN
  4. GROUP COUNT
  5. IMAGE
2. MODULES
  0. R NUMBER
  1. HEADING
  2. TABLE
  3. BOX
  4. PRACTICE MODS
  5. TEXT
  6. LIST
  7. DIALOG
  8. CHALLENGE
  9. PRESENT
  10. UNDERSTAND
3. FRAME
  1. HEADER
  2. FOOTER
  3. FEEDBACK
  4. NEXT LESSON
4. SECTIONS
  A. BEGINNER/INTERMEDIATE
    1. INTRODUCE
    2. PRESENT
    3. UNDERSTAND
    4. SKILLS
      A. SPEAKING
      B. READING
      C. REVIEW
  B. STARTER
    0. HEAD/FOOT
    1. GOAL
  C. HIGH-INTERMEDIATE
5. OTHERS
  1. JP TRANSRATION
  2. TUTOR NOTES
  3. Print
 */
/* ------------------------------
 *  0. BASE
 ------------------------------ */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

ul {
  list-style-type: none;
}

ul li {
  margin: 0;
}

/* clearfix */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* ------------------------------
 *  1. COMMONS / PARTS
 ------------------------------ */
.edit-link {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 15px;
  background-color: #f1f1f1;
  color: #FF7E07;
}

body {
  background: #fff;
  color: #333;
}

.font-key {
  color: #FF7E07;
}

.bg-context, .box-hint {
  background-color: white;
}

.bg-litegry {
  background-color: #f1f1f1;
}

html {
  font-size: 62.5%;
}

body {
  font-family: Helvetica, Arial, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  word-wrap: break-word;
}
@media screen and (max-width: 849px) {
  body {
    font-size: 1.6rem;
  }
}

strong, .bold {
  font-weight: bold;
}

.t-center {
  text-align: center;
}

.underLine {
  text-decoration: underline;
}

.usage {
  font-family: Helvetica, Arial, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

section {
  margin: 0 auto 3em;
  *zoom: 1;
}
section:before, section:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
section:after {
  clear: both;
}
@media screen and (max-width: 849px) {
  section {
    margin-bottom: 1.5em;
  }
}

ol {
  list-style-position: inside;
}

.m-t15 {
  margin-top: 15px;
}

.m-b15 {
  margin-bottom: 15px;
}

.count-group, .tutor-notes, .bottom-tutor-notes {
  counter-reset: my-badass-counter;
}

.count-group .countme, .tutor-notes .countme, .bottom-tutor-notes .countme {
  padding: 5px 0px;
  position: relative;
  list-style-type: none !important;
  list-style: none !important;
}
.count-group .countme::before, .tutor-notes .countme::before, .bottom-tutor-notes .countme::before {
  content: counter(my-badass-counter);
  counter-increment: my-badass-counter;
  margin-right: 5px;
  color: white;
  background-color: black;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  line-height: 16px;
  text-align: center;
  display: inline-block;
  position: absolute;
  left: -20px;
}

.img-left, .bubble-outer img {
  width: 30%;
  max-width: 210px;
  float: left;
  margin-right: 15px;
  margin-bottom: 20px;
}

.img-right {
  width: 50%;
  max-width: 400px;
  float: right;
}

.resp-img-l {
  width: 100%;
  max-width: 600px;
}

.image-only {
  max-width: 450px !important;
}

.combo-img-txt {
  *zoom: 1;
  margin-bottom: 1.5em;
}
.combo-img-txt:before, .combo-img-txt:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.combo-img-txt:after {
  clear: both;
}
@media screen and (max-width: 499px) {
  .combo-img-txt {
    padding-bottom: 0.75em;
    margin-bottom: 0.75em;
  }
}
.combo-img-txt .combo-img-picture {
  width: 30%;
  float: left;
  display: inline-block;
}
.combo-img-txt .combo-img-picture img {
  width: 100%;
  height: auto;
  max-width: 210px;
}
.combo-img-txt .combo-img-context {
  width: 60%;
  float: left;
  display: inline-block;
  margin-left: 15px;
}
.combo-img-txt .combo-img-context ul {
  display: block;
  list-style-type: disc;
}
.combo-img-txt .combo-img-context ul li {
  list-style-type: disc;
}
.combo-img-txt .combo-img-context ul, .combo-img-txt .combo-img-context ol {
  list-style-position: outside;
  padding-left: 24px;
}
.combo-img-txt .combo-img-context ol ol {
  list-style-type: lower-alpha;
}

.alpha-list {
  list-style-type: lower-alpha !important;
  list-style-position: inherit;
  margin-left: 24px;
}

/* ------------------------------
 *  2. MODULES
 ------------------------------ */
article {
  counter-reset: section;
}
article > [class$=-h]:before, article > [class$=h-rv]:before {
  counter-increment: section;
  content: counters(section, ".") " ";
}

[class^=main-h]:before {
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
}

[class^=main-h] {
  position: relative;
  margin-left: -1.6em;
  overflow: hidden;
  color: #111;
  font-size: 1.5rem;
}
@media screen and (max-width: 849px) {
  [class^=main-h] {
    margin: 0 0 2px -0.25em;
    padding-top: 10px;
    font-size: 1.2rem;
  }
}
[class^=main-h]:after {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 135px;
  display: block;
  width: 100%;
  border-top: 1px solid;
}
@media screen and (max-width: 849px) {
  [class^=main-h]:after {
    top: 0;
    left: 0 !important;
  }
}
[class^=main-h]:before {
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  background: #FF7E07;
  color: #fff;
  margin-right: 3px;
}
@media screen and (max-width: 849px) {
  [class^=main-h]:before {
    width: 1.25em;
    height: 1.25em;
    line-height: 1.25em;
    background: #FF7E07;
    color: #fff;
    margin-top: -5px;
  }
}

.main-h-rv:after {
  left: 250px;
}

.sub-h {
  font-size: 2.8rem;
  color: #aaa;
}
@media screen and (max-width: 849px) {
  .sub-h {
    margin-left: 0;
    font-size: 2.4rem;
  }
}

.lead {
  margin: 15px 0 30px 0;
  font-weight: bold;
}
.lead ol, .lead ul {
  padding: 15px 0 15px 24px;
}

.step-h {
  margin: 0.5em 0;
  border-bottom: 2px solid #d36500;
  font-size: 1.6rem;
}
.step-h span {
  margin-right: 5px;
  padding: 0.4em 0.75em;
  background-color: #d36500;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}
.step-h span:before {
  font-family: "Material Icons";
  margin-right: 5px;
  vertical-align: middle;
  font-size: 1.2em;
  content: "\e536";
}

.hint-h {
  font-size: 2rem;
  font-weight: normal;
  color: #d36500;
}
.hint-h:before {
  font-family: "Material Icons";
  margin-right: 5px;
  vertical-align: middle;
  font-size: 1.2em;
  content: "\e85a";
}

.title-parts {
  margin-bottom: 0.5em;
  font-size: 2.5rem;
}

.table-complex-3, .table-complex-2, .table-header-media, .table-weekly, .table-fixed, .table-complex-1, .table-lined, .table-noline {
  margin-bottom: 1.5em;
  font-size: 1.7rem;
}
@media screen and (max-width: 849px) {
  .table-complex-3, .table-complex-2, .table-header-media, .table-weekly, .table-fixed, .table-complex-1, .table-lined, .table-noline {
    font-size: 1.5rem;
  }
}
.table-complex-3 thead th, .table-complex-2 thead th, .table-header-media thead th, .table-weekly thead th, .table-fixed thead th, .table-complex-1 thead th, .table-lined thead th, .table-noline thead th {
  background-color: #f1f1f1;
}
.table-complex-3 tbody th, .table-complex-2 tbody th, .table-header-media tbody th, .table-weekly tbody th, .table-fixed tbody th, .table-complex-1 tbody th, .table-lined tbody th, .table-noline tbody th {
  text-align: left;
  font-weight: normal;
}
.table-complex-3 th, .table-complex-2 th, .table-header-media th, .table-weekly th, .table-fixed th, .table-complex-1 th, .table-lined th, .table-noline th {
  padding: 1em;
  border: 1px #ddd solid;
  font-weight: bold;
}
.table-complex-3 td, .table-complex-2 td, .table-header-media td, .table-weekly td, .table-fixed td, .table-complex-1 td, .table-lined td, .table-noline td {
  padding: 1em;
  border: 1px #ddd solid;
}
.table-complex-3 img, .table-complex-2 img, .table-header-media img, .table-weekly img, .table-fixed img, .table-complex-1 img, .table-lined img, .table-noline img {
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 499px) {
  .table-complex-3, .table-complex-2, .table-header-media, .table-weekly, .table-fixed, .table-complex-1, .table-lined, .table-noline {
    width: 93%;
  }
}

.table-noline {
  width: 100%;
  border: 1px solid #ddd;
}

.table-lined {
  width: 100%;
  border: 5px solid #ddd;
}

.table-fixed, .table-complex-1 {
  width: 100%;
  border: 5px solid #ddd;
  table-layout: fixed;
}
.table-fixed tbody th, .table-fixed tbody td, .table-complex-1 tbody th, .table-complex-1 tbody td {
  text-align: center;
  vertical-align: top;
}

.table-fixed tbody th {
  border-bottom: 4px solid #ddd;
}

.table-inline {
  display: inline-block;
  width: 49%;
  min-width: 280px;
}
.table-inline tbody, .table-inline tr, .table-inline th, .table-inline td {
  display: block;
}

.table-weekly {
  width: 100%;
  border: 1px solid #ddd;
  text-align: center;
  table-layout: fixed;
}
.table-weekly .weekname {
  color: #999;
  text-align: center;
}
@media screen and (max-width: 499px) {
  .table-weekly {
    display: block;
    width: 100%;
  }
  .table-weekly thead, .table-weekly tbody, .table-weekly tr, .table-weekly td, .table-weekly th {
    display: block;
  }
  .table-weekly .weekname {
    display: none;
  }
  .table-weekly td:before {
    display: block;
    color: #999;
    font-size: 1.2rem;
  }
  .table-weekly td:first-child:before {
    content: "Monday";
  }
  .table-weekly td:nth-child(2):before {
    content: "Tuesday";
  }
  .table-weekly td:nth-child(3):before {
    content: "Wednesday";
  }
  .table-weekly td:nth-child(4):before {
    content: "Thursday";
  }
  .table-weekly td:nth-child(5):before {
    content: "Friday";
  }
  .table-weekly td:nth-child(6):before {
    content: "Saturday";
  }
}

.table-header-media {
  width: 100%;
  border: 5px solid #ddd;
  table-layout: fixed;
}
.table-header-media td {
  vertical-align: top;
}
.table-header-media td img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 499px) {
  .table-header-media {
    display: block;
    width: 100%;
  }
  .table-header-media thead, .table-header-media tbody, .table-header-media tr, .table-header-media td, .table-header-media th {
    display: block;
  }
}

.table-complex-1, .table-complex-2, .table-complex-3 {
  table-layout: fixed;
}
.table-complex-1 ul, .table-complex-2 ul, .table-complex-3 ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 24px;
}
.table-complex-1 img, .table-complex-2 img, .table-complex-3 img {
  max-width: 100%;
  width: 100% !important;
  height: auto;
}
.table-complex-1.no_border, .table-complex-1.no_border th, .table-complex-1.no_border td, .table-complex-2.no_border, .table-complex-2.no_border th, .table-complex-2.no_border td, .table-complex-3.no_border, .table-complex-3.no_border th, .table-complex-3.no_border td {
  border: none;
}
.table-complex-1.no_border th, .table-complex-2.no_border th, .table-complex-3.no_border th {
  border-collapse: collapse;
  margin-left: 10px;
  background-color: #C5E1A5;
  border-left: 10px solid white;
}
.table-complex-1.no_border th:first-child, .table-complex-2.no_border th:first-child, .table-complex-3.no_border th:first-child {
  border-left: none;
}
@media screen and (max-width: 499px) {
  .table-complex-1 td, .table-complex-2 td, .table-complex-3 td {
    padding: 0.4em;
  }
}

.table-complex-2 {
  width: 100%;
  border: 5px solid #ddd;
  table-layout: fixed;
}
.table-complex-2 td {
  vertical-align: top;
}
.table-complex-2 td img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.table-complex-3 {
  width: 100%;
  border: 5px solid #ddd;
}
.table-complex-3 th {
  color: #333;
  font-weight: bold;
}
[class^=box-] {
  box-sizing: border-box;
  margin-bottom: 1em;
  padding: 0.5em;
}
[class^=box-] img.alignleft {
  float: left;
  display: inline-block;
  margin-right: 1em;
}
[class^=box-] img.alignright {
  float: right;
  display: inline-block;
  margin-left: 1em;
}
[class^=box-] img.aligncenter {
  display: block;
  margin: 0 auto;
}

.box-noline {
  border: 0;
}

.box-lined {
  margin-top: 1em;
  border: 5px solid #f1f1f1;
}
.box-lined ul {
  list-style-type: disc;
}
.box-lined ul li {
  display: list-item;
  margin: 0 20px;
}
.box-lined dt {
  font-weight: bold;
}
.box-lined dd {
  display: inline-block;
  margin: 0 20px;
}
.box-lined li {
  display: list-item;
  margin: 0 20px;
}
.box-lined.wordbox {
  display: table;
  width: auto;
  margin: 0 auto 2em auto;
  padding: 15px 0;
  list-style-type: none;
}
.box-lined.wordbox div {
  padding: 10px 15px;
  display: inline-block;
}
.box-lined.wordbox li {
  display: inline-block;
  padding: 0 15px;
}

section.practice ol {
  list-style-position: outside;
  padding-left: 24px;
}
section.practice .multitext_image ol {
  list-style-type: none;
  padding: 0;
}

.ab-answers {
  margin: 30px 0;
}
.ab-answers table {
  width: 100%;
}
.ab-answers .ab-label {
  padding-right: 10px;
}
.ab-answers .tn-answer-key {
  color: #ed1c24;
}

.profile-card {
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  background-color: #59ABE3;
  max-width: 724px;
}
.profile-card .profile-picture {
  border-radius: 50%;
  display: inline-block;
  width: 150px;
  height: 150px;
  overflow: hidden;
  vertical-align: bottom;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(100, 100, 100, 0.5);
}
@media screen and (max-width: 767px) {
  .profile-card .profile-picture {
    display: block;
    margin: 10px auto;
  }
}
.profile-card .profile-picture img {
  max-width: 150px;
  display: block;
  margin: 0;
  padding: 0;
}
.profile-card .profile-info {
  color: white;
  padding-left: 10px;
  display: inline-block;
  vertical-align: top;
  max-width: 524px;
}
.profile-card .profile-info .profile-label {
  text-transform: uppercase;
  font-weight: bold;
}

.col1-2 {
  width: calc((100% - 10px * 1) / 2);
  margin-right: 10px;
}
.col1-2:last-child {
  margin-right: 0;
}

.col1-3 {
  width: calc((100% - 10px * 2) / 3);
  margin-right: 10px;
}
.col1-3:last-child {
  margin-right: 0;
}

.col1-4 {
  width: calc((100% - 10px * 3) / 4);
  margin-right: 10px;
}
.col1-4:last-child {
  margin-right: 0;
}

.col1-5 {
  width: calc((100% - 10px * 4) / 5);
  margin-right: 10px;
}
.col1-5:last-child {
  margin-right: 0;
}

*[class^=col1-] {
  float: left;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 849px) {
  *[class^=col1-] {
    width: 100%;
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
}

.text-base {
  margin-bottom: 1em;
}
.text-base ul {
  list-style-position: outside;
  margin-left: 24px;
}
.text-base ol ol {
  list-style-type: lower-alpha;
}
.text-base > p {
  margin-top: 10px;
  text-align: center;
}
.text-base .jp {
  text-align: center;
}
.text-base.border {
  padding: 1em;
  border: 1px solid #999;
}
.text-base.border > p {
  text-align: left;
}
.text-base.border > ul {
  list-style-type: disc;
  list-style-position: inside;
}
.text-base.border .jp {
  text-align: left;
}
.text-base.border .jp ul {
  list-style-type: disc;
  list-style-position: inside;
}

.jp em {
  font-style: italic;
}

.list-basic {
  margin-bottom: 2em;
}
.list-basic > li {
  margin-bottom: 1em;
}

ul.list-basic {
  list-style: disc inside;
}

[class^=sub-list] {
  margin-left: 1em;
}

.sub-list-inline {
  display: inline-block;
  vertical-align: top;
}

.dialog {
  margin: 1em auto 2em;
}
.dialog dt {
  clear: both;
  float: left;
  width: 90px;
  font-weight: bold;
  word-wrap: break-word;
  text-align: right;
}
.dialog dd {
  margin-left: 90px;
  margin-bottom: 0.5em;
  padding-left: 10px;
}

.dialogue-table td, .dialogue-table th {
  height: 20px;
  line-height: 20px;
}
.dialogue-table tr:nth-child(even) td {
  padding-bottom: 15px;
}
.dialogue-table .dialogue-label {
  text-align: right;
  padding-right: 15px;
}

.ex-challenge .head {
  min-height: auto !important;
}

.mb-dis th {
  position: relative;
  background: #f1f1f1;
  vertical-align: middle;
  min-height: auto;
  text-align: left;
}

.topic-mark {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 0.2em;
  background: #FF7E07;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  z-index: 1;
  line-height: 18px;
}

.topic-mark::before {
  content: "TOPIC";
  display: block;
  font-size: 0.4em;
}

.if-time {
  background: #FF7E07;
  border-radius: 5px;
  color: white;
  padding: 5px 10px;
  text-align: left;
  /* margin-top: -40px; */
  margin-right: 10px;
  width: 120px;
  float: right;
  display: grid;
  grid-template-columns: 60px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
}

.split-70-30 {
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
}

@media (min-width: 768px) {
  .mb-dis {
    display: table-row;
  }
  .mb-none {
    display: none;
  }
}
@media (max-width: 767px) {
  .mb-dis {
    display: none;
  }
  .mb-none {
    display: block;
  }
}
.challenge-image {
  width: 100%;
  margin: 0 auto;
}
.challenge-image tr {
  padding: 0;
  margin: 0;
}
.challenge-image td {
  min-width: 350px;
  padding: 5px 10px;
}
.challenge-image img {
  max-width: 100%;
  width: 100%;
}
@media only screen and (max-width: 1100px) and (min-width: 769px) {
  .challenge-image td {
    min-width: inherit;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 849px) {
  .challenge-image td {
    min-width: 140px;
    padding: 5px 10px;
  }
}

.box-hint dd, .box-hint li {
  display: list-item;
  margin-left: 1em;
  list-style: outside disc;
  line-height: 120%;
}
.box-hint .jp {
  margin-top: 0 !important;
}

section.challenge .box-hint li {
  margin-bottom: 0.5em;
}
section.challenge .box-hint li span {
  display: list-item;
}

.extra_info ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 24px;
}
.extra_info ol {
  list-style-position: outside;
  padding-left: 24px;
}
.extra_info img {
  max-width: 600px;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 499px) {
  .extra_info img {
    max-width: 100% !important;
  }
}
.extra_info img.alignleft {
  float: left;
  display: inline-block;
  margin-right: 1em;
}
.extra_info img.alignright {
  float: right;
  display: inline-block;
  margin-left: 1em;
}
.extra_info img.aligncenter {
  display: block;
  margin: 0 auto;
}

.ex-challenge-container {
  margin: 0;
  margin-top: 1em;
  min-width: 300px;
  border-collapse: collapse;
  width: 100%;
}
.ex-challenge-container td {
  display: block;
  border: 1px solid #ddd;
}
.ex-challenge-container .content {
  margin: 1em 1em 1em 2em;
  list-style: decimal;
  font-size: 1.6rem;
}
.ex-challenge-container .content li {
  margin-bottom: 0.8em;
}

@media (min-width: 768px) {
  .ex-challenge-container {
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 10px 0;
  }
}
.ex-challenge-container td {
  text-align: left;
}

@media (min-width: 768px) {
  .ex-challenge-container td {
    display: table-cell;
  }
  .ex-challenge-container th:first-child, .ex-challenge-container td:first-child {
    padding-left: 0;
  }
  .ex-challenge-container th:last-child, .ex-challenge-container td:last-child {
    padding-right: 0;
  }
}
.ex-challenge-container {
  overflow: hidden;
}

.ex-challenge-container td {
  margin: 0.5em 0;
}

.ex-challenge {
  border: 1px solid #ddd;
  border-top: none;
  border-bottom: none;
}
.ex-challenge .head {
  position: relative;
  box-sizing: border-box;
  padding: 1em 0.5em 1em 3.5em;
  background: #f1f1f1;
  line-height: 1.1em;
  font-size: 1.5rem;
  min-height: 62px;
}
.ex-challenge .head span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 0.2em;
  background: #FF7E07;
  text-align: center;
  color: #fff;
  font-size: 2rem;
}
@media screen and (max-width: 499px) {
  .ex-challenge .head span {
    font-size: 2rem;
  }
}
.ex-challenge .head span:before {
  content: "TOPIC";
  display: block;
  font-size: 0.4em;
}
.ex-challenge .content {
  margin: 1em 1em 1em 2em;
  list-style: decimal;
  font-size: 1.6rem;
}
.ex-challenge .content > * {
  margin-bottom: 1em;
}

/* ------------------------------
 *  3. FRAME
 ------------------------------ */
header {
  background: url("https://cdn.rarejob.com/vendors/jitsuyo/everyday_english/masthead-orange.png");
  background-position: center center;
  background-size: cover;
  box-shadow: 0 2px 10px rgba(100, 100, 100, 0.5);
}
header .jp {
  font-size: 1.25rem;
  color: #ddd;
}

@media screen and (min-width: 760px) {
  header.fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}

header#STARTER.fixed {
  background: url(https://cdn.rarejob.com/ph/assets/jpg/tutor-img-264.jpg);
  background-position: center center;
  background-size: cover;
}
header#STARTER.fixed .jp {
  color: #fff;
}

header#STARTER {
  background: url(https://cdn.rarejob.com/ph/assets/jpg/tutor-img-264.jpg);
  background-position: center center;
  background-size: cover;
}
header#STARTER .jp {
  color: #fff;
}

header#FTL_1 {
  background: url(https://cdn.rarejob.com/ph/assets/jpg/tutor-img-264.jpg);
  background-position: center center;
  background-size: cover;
}
header#FTL_1 .jp {
  color: #fff;
}

header#FTL_2 {
  background: url(https://cdn.rarejob.com/ph/assets/jpg/tutor-img-263.jpg);
  background-position: center center;
  background-size: cover;
}
header#FTL_2 .jp {
  color: #fff;
}

.hd-bar {
  padding: 5px;
  background: rgba(0, 0, 0, 0.4);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 499px) {
  .hd-bar {
    font-size: 0.85rem;
  }
}
.hd-bar li:last-child {
  border-right: 1px solid transparent;
}
.hd-bar > * {
  display: inline-block;
  margin-right: 4px;
  padding-right: 4px;
  border-right: 1px solid #fff;
}

.lesson-header {
  width: 94%;
  max-width: 760px;
  position: relative;
  margin: 10px auto;
  color: #fff;
}
.lesson-header .Title {
  padding: 0px 0px 10px 0;
  font-weight: 900;
  font-style: italic;
}

.Lesson-Topic {
  font-size: 0.8em;
}

body.tutor .lesson-header {
  width: auto;
  max-width: 1024px;
}

@media screen and (max-width: 849px) {
  .lesson-title {
    font-size: 1.4rem;
  }
}

.lesson-title.situation {
  font-weight: bold;
  margin-left: 74px;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.lesson-title.situation::before {
  content: "SITUATION";
  display: inline-block;
  box-sizing: border-box;
  margin: 0 10px 0 -74px;
  padding: 8px 4px;
  border: 1px solid;
  vertical-align: top;
  font-size: 1rem;
  background: #fff;
  color: #1d9e53;
  font-weight: bold;
  float: left;
}

#INTERMEDIATE .lesson-title.situation {
  margin-left: 65px !important;
}
#INTERMEDIATE .lesson-title.situation::before {
  margin: 0 10px 0 -65px !important;
  font-size: 0.8rem !important;
}

.lesson-mission-below:before, .lesson-mission:before, .lesson-goal-below:before, .lesson-goal:before {
  display: inline-block;
  box-sizing: border-box;
  float: left;
  margin: 0 10px 0 -65px;
  padding: 10px 4px;
  border: 1px solid;
  vertical-align: top;
  font-size: 1rem;
}

.lesson-mission-below, .lesson-mission, .lesson-goal-below, .lesson-goal {
  margin-top: 5px;
  margin-left: 65px;
  font-size: 2.75rem;
  line-height: 1.1;
}
.lesson-goal:before {
  background: #fff;
  color: #FF7E07;
}
.lesson-goal:before {
  content: "GOAL";
}
@media screen and (max-width: 849px) {
  .lesson-goal {
    font-size: 1.8rem;
    padding-bottom: 20px;
  }
}

.lesson-goal.lesson-misson {
  margin-left: 74px;
  font-size: 2rem;
}

.lesson-goal.lesson-misson:before {
  content: "MISSION";
  margin: 0 10px 0 -74px;
  padding: 10px 9px;
}

.lesson-goal-below {
  margin-bottom: 1em;
  font-weight: bold;
}
.lesson-goal-below:before {
  background: #eee;
  color: #FF7E07;
}
.lesson-goal-below:before {
  content: "GOAL";
}

.lesson-mission {
  margin-left: 60px;
}
.lesson-mission:before {
  background: #fff;
  color: #FF7E07;
}
.lesson-mission:before {
  content: "MISSION";
  margin: 0 10px 0 -60px;
}

.lesson-mission-below {
  margin-bottom: 1em;
  font-weight: bold;
}
.lesson-mission-below:before {
  background: #eee;
  color: #FF7E07;
}
.lesson-mission-below:before {
  content: "MISSION";
}

#INTERMEDIATE .lesson-goal.lesson-misson {
  margin-bottom: 15px;
  margin-left: 65px !important;
}
#INTERMEDIATE .lesson-goal.lesson-misson::before {
  font-size: 0.8rem !important;
  margin: 0 10px 0 -65px !important;
}

footer {
  padding: 4em 0;
  background-image: url(https://cdn.rarejob.com/ph/assets/jpg/tutor-img-263.jpg);
  background-position: bottom center;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
}

#starter footer {
  background-image: url(https://cdn.rarejob.com/ph/assets/jpg/tutor-img-264.jpg);
  background-position: bottom center;
}

.evaluation {
  display: table;
  width: 100%;
}
.evaluation > * {
  display: table-cell;
  box-sizing: border-box;
  width: 25%;
  border-left: 1px solid #ddd;
}
.evaluation > *:last-child {
  border-right: 1px solid #ddd;
}
@media screen and (max-width: 499px) {
  .evaluation > * {
    display: block;
    float: left;
    width: 50%;
    border: none;
  }
}

.level-block:nth-child(1) .subHead {
  background: #ca0c27;
}
.level-block:nth-child(2) .subHead {
  background: #f3304c;
}
.level-block:nth-child(3) .subHead {
  background: #5d62bc;
}
.level-block:nth-child(4) .subHead {
  background: #3c4090;
}
@media screen and (max-width: 499px) {
  .level-block:last-child {
    border-right: none;
  }
}

@media screen and (max-width: 499px) {
  .level-block.starter {
    display: block;
    float: left;
    width: 100%;
    border: 1px solid #d2d2d2;
  }
}

body.single-lv2_rv .level-block, body.single-lv2 .level-block {
  border-bottom: 1px solid #ddd;
}
body.single-lv2_rv .level-block:nth-child(3) .subHead, body.single-lv2 .level-block:nth-child(3) .subHead {
  background: #fa7a7a;
}

.overall .head {
  width: 100%;
  font-size: 1.4rem;
  background-color: #d36500;
  text-align: center;
  color: #fff;
  padding: 0.5em 0;
  margin-bottom: 8px;
}
.overall .subHead {
  margin-bottom: 10px;
  padding: 4px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
}
.overall .content {
  margin: 0.5em 0.75em 1em;
  font-size: 1.2rem;
}
.overall .jp {
  font-size: 1.2rem;
}

.feedback-skill {
  display: flex;
}
.feedback-skill li {
  padding: 0.5em 0.25em;
  background: #f1f1f1;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}

#starter .feedback-skill li {
  height: 150px;
}
#starter .feedback-skill .guide {
  margin: 1em;
  text-align: left;
}
#starter .feedback-skill .guide .jp {
  display: inline-block;
  margin-left: 1em;
}

.nextLesson {
  box-sizing: border-box;
  padding: 1em;
  background-color: #ccd9fd;
}
.nextLesson .head {
  margin-bottom: 0.5em;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}
.nextLesson a {
  font-size: 1.5rem;
  line-height: 1;
  color: #1b6ab3;
  text-decoration: none;
}
.nextLesson a:hover {
  color: #0e365a;
}
.nextLesson a:after {
  font-family: "Material Icons";
  margin-right: 5px;
  vertical-align: middle;
  font-size: 1.6em;
  content: "\e409";
}

body.tutor section.feedback .content-wrap .main .tutor-notes, body.tutor section.feedback .content-wrap .main .bottom-tutor-notes {
  width: 100%;
  float: none;
  padding: 0px;
  margin-top: 1em;
  border: none;
  box-shadow: -3px 2px 10px rgba(100, 100, 100, 0);
}

/* ------------------------------
 *  4. SECTIONS
 ------------------------------ */
/* ----- 0. COMMON ----- */
article {
  width: 94%;
  max-width: 760px;
  margin: 20px auto 10px;
}

.main {
  max-width: 100%;
  float: none;
}

body.tutor .tutor-notes, body.tutor .bottom-tutor-notes {
  display: block;
}
body.tutor article {
  width: 94%;
  max-width: 1024px;
}
body.tutor article .main {
  max-width: 760px;
  float: left;
  width: 100%;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  body.tutor article {
    width: 100%;
  }
  body.tutor article .main {
    width: 730px;
    padding-left: 15px;
    padding-right: 15px;
  }
  [class^=main-h] {
    margin-left: 0.6em;
  }
}
/* ----- A. BEGINNER/INTERMEDIATE ----- */
.goal-description {
  color: #555;
  font-size: 2rem;
}
.goal-description p {
  margin-bottom: 1em;
  line-height: 1.1em;
}
@media screen and (max-width: 849px) {
  .goal-description {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}

.expressions {
  margin-bottom: 1em;
  overflow: hidden;
}
.expressions .means {
  margin-bottom: 0.5em;
  padding: 0.25em 0.5em;
  background: #f1f1f1;
  font-weight: bold;
}
.expressions .means i {
  text-decoration: underline;
}
.expressions .usage i {
  text-decoration: underline;
  font-weight: bold;
}
.expressions .content {
  padding: 0.5em 0 0;
}

.dialog-starter dt, .dialog-starter dd, .speech-bubbles .sb-text, .speech-bubbles .sb-speaking .sb-text-bubble, .speech-bubbles .sb-images, .bubble-outer .bubble {
  position: relative;
  width: 50%;
  max-width: 500px;
  padding: 1em;
  border: 1px solid #777;
  border-radius: 4px;
}
@media screen and (max-width: 849px) {
  .dialog-starter dt, .dialog-starter dd, .speech-bubbles .sb-text, .speech-bubbles .sb-speaking .sb-text-bubble, .speech-bubbles .sb-images, .bubble-outer .bubble {
    padding: 0.5em;
  }
}
.dialog-starter dt:before, .dialog-starter dd:before, .speech-bubbles .sb-text:before, .speech-bubbles .sb-speaking .sb-text-bubble:before, .speech-bubbles .sb-images:before, .bubble-outer .bubble:before {
  content: "";
  position: absolute;
  top: 40%;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: rotate(-45deg);
}

.bubble-outer {
  *zoom: 1;
  margin-bottom: 1em;
}
.bubble-outer:before, .bubble-outer:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.bubble-outer:after {
  clear: both;
}
.bubble-outer:nth-child(odd) .bubble {
  float: left;
}
.bubble-outer:nth-child(odd) .bubble:before {
  border-top: 1px solid #777;
  border-right: 0 solid #777;
  border-bottom: 0 solid #777;
  border-left: 1px solid #777;
  transition: rotate;
  left: -6px;
}
.bubble-outer:nth-child(even) img {
  float: right;
  margin-left: 15px;
}
.bubble-outer:nth-child(even) .bubble {
  float: right;
}
.bubble-outer:nth-child(even) .bubble:before {
  border-top: 0 solid #777;
  border-right: 1px solid #777;
  border-bottom: 1px solid #777;
  border-left: 0 solid #777;
  transition: rotate;
  right: -6px;
}

.table-pronunciation tbody th {
  text-align: center;
}

.speech-bubbles {
  *zoom: 1;
}
.speech-bubbles:before, .speech-bubbles:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.speech-bubbles:after {
  clear: both;
}
.speech-bubbles .means {
  margin-bottom: 0.5em;
  padding: 0.25em 0.5em;
  background: #f1f1f1;
  font-weight: bold;
}
.speech-bubbles .means i {
  text-decoration: underline;
}
.speech-bubbles.left .sb-text.odd, .speech-bubbles.left .sb-speaking.odd, .speech-bubbles.left .sb-images.odd {
  float: left;
  margin-bottom: 15px;
}
.speech-bubbles.left .sb-text.odd .sb_speaker, .speech-bubbles.left .sb-text.odd .sb-text-bubble, .speech-bubbles.left .sb-speaking.odd .sb_speaker, .speech-bubbles.left .sb-speaking.odd .sb-text-bubble, .speech-bubbles.left .sb-images.odd .sb_speaker, .speech-bubbles.left .sb-images.odd .sb-text-bubble {
  float: left;
}
.speech-bubbles.left .sb-text.odd .sb-text-bubble, .speech-bubbles.left .sb-speaking.odd .sb-text-bubble, .speech-bubbles.left .sb-images.odd .sb-text-bubble {
  margin-left: 1em;
}
.speech-bubbles.left .sb-text.odd:before, .speech-bubbles.left .sb-text.odd .sb-text-bubble:before, .speech-bubbles.left .sb-speaking.odd:before, .speech-bubbles.left .sb-speaking.odd .sb-text-bubble:before, .speech-bubbles.left .sb-images.odd:before, .speech-bubbles.left .sb-images.odd .sb-text-bubble:before {
  border-top: 1px solid #777;
  border-right: 0 solid #777;
  border-bottom: 0 solid #777;
  border-left: 1px solid #777;
  transition: rotate;
  left: -6px;
  top: 20px;
}
.speech-bubbles.left .sb-text.even, .speech-bubbles.left .sb-speaking.even, .speech-bubbles.left .sb-images.even {
  float: right;
  margin-bottom: 15px;
}
.speech-bubbles.left .sb-text.even .sb_speaker, .speech-bubbles.left .sb-text.even .sb-text-bubble, .speech-bubbles.left .sb-speaking.even .sb_speaker, .speech-bubbles.left .sb-speaking.even .sb-text-bubble, .speech-bubbles.left .sb-images.even .sb_speaker, .speech-bubbles.left .sb-images.even .sb-text-bubble {
  float: right;
}
.speech-bubbles.left .sb-text.even .sb-text-bubble, .speech-bubbles.left .sb-speaking.even .sb-text-bubble, .speech-bubbles.left .sb-images.even .sb-text-bubble {
  margin-right: 1em;
}
.speech-bubbles.left .sb-text.even:before, .speech-bubbles.left .sb-text.even .sb-text-bubble:before, .speech-bubbles.left .sb-speaking.even:before, .speech-bubbles.left .sb-speaking.even .sb-text-bubble:before, .speech-bubbles.left .sb-images.even:before, .speech-bubbles.left .sb-images.even .sb-text-bubble:before {
  border-top: 0 solid #777;
  border-right: 1px solid #777;
  border-bottom: 1px solid #777;
  border-left: 0 solid #777;
  transition: rotate;
  right: -6px;
  top: 20px;
}
.speech-bubbles.right .sb-text.even, .speech-bubbles.right .sb-speaking.even, .speech-bubbles.right .sb-images.even {
  float: left;
  margin-bottom: 15px;
}
.speech-bubbles.right .sb-text.even .sb_speaker, .speech-bubbles.right .sb-text.even .sb-text-bubble, .speech-bubbles.right .sb-speaking.even .sb_speaker, .speech-bubbles.right .sb-speaking.even .sb-text-bubble, .speech-bubbles.right .sb-images.even .sb_speaker, .speech-bubbles.right .sb-images.even .sb-text-bubble {
  float: left;
}
.speech-bubbles.right .sb-text.even .sb-text-bubble, .speech-bubbles.right .sb-speaking.even .sb-text-bubble, .speech-bubbles.right .sb-images.even .sb-text-bubble {
  margin-left: 1em;
}
.speech-bubbles.right .sb-text.even:before, .speech-bubbles.right .sb-text.even .sb-text-bubble:before, .speech-bubbles.right .sb-speaking.even:before, .speech-bubbles.right .sb-speaking.even .sb-text-bubble:before, .speech-bubbles.right .sb-images.even:before, .speech-bubbles.right .sb-images.even .sb-text-bubble:before {
  border-top: 1px solid #777;
  border-right: 0 solid #777;
  border-bottom: 0 solid #777;
  border-left: 1px solid #777;
  transition: rotate;
  left: -6px;
  top: 20px;
}
.speech-bubbles.right .sb-text.odd, .speech-bubbles.right .sb-speaking.odd, .speech-bubbles.right .sb-images.odd {
  text-align: right;
  margin-bottom: 15px;
}
.speech-bubbles.right .sb-text.odd .sb_speaker, .speech-bubbles.right .sb-text.odd .sb-text-bubble, .speech-bubbles.right .sb-speaking.odd .sb_speaker, .speech-bubbles.right .sb-speaking.odd .sb-text-bubble, .speech-bubbles.right .sb-images.odd .sb_speaker, .speech-bubbles.right .sb-images.odd .sb-text-bubble {
  float: right;
}
.speech-bubbles.right .sb-text.odd .sb-text-bubble, .speech-bubbles.right .sb-speaking.odd .sb-text-bubble, .speech-bubbles.right .sb-images.odd .sb-text-bubble {
  margin-right: 1em;
}
.speech-bubbles.right .sb-text.odd:before, .speech-bubbles.right .sb-text.odd .sb-text-bubble:before, .speech-bubbles.right .sb-speaking.odd:before, .speech-bubbles.right .sb-speaking.odd .sb-text-bubble:before, .speech-bubbles.right .sb-images.odd:before, .speech-bubbles.right .sb-images.odd .sb-text-bubble:before {
  border-top: 0 solid #777;
  border-right: 1px solid #777;
  border-bottom: 1px solid #777;
  border-left: 0 solid #777;
  transition: rotate;
  right: -6px;
  top: 20px;
}
.speech-bubbles .sb-text, .speech-bubbles .sb-speaking .sb-text-bubble, .speech-bubbles .sb-images {
  width: 90%;
  margin-bottom: 1em;
  margin: 0 auto;
  width: 90%;
}
.speech-bubbles .sb-images img {
  max-width: 150px;
  display: inline-block;
}
.speech-bubbles .sb-text-bubble {
  vertical-align: middle;
  width: 50% !important;
  display: inline-block;
}
.speech-bubbles .sb_speaker {
  margin-bottom: 1em;
  border: 5px solid #ddd;
  vertical-align: top;
  display: inline-block;
  width: 150px;
  height: 150px;
  overflow: hidden;
  background-size: cover;
}
@media screen and (max-width: 849px) {
  .speech-bubbles .sb_speaker {
    width: 96px;
    height: 96px;
  }
}
.speech-bubbles .sb_speaker.starter-dialogue {
  width: 60px !important;
  height: 60px !important;
}
@media screen and (max-width: 849px) {
  .speech-bubbles .sb_speaker.starter-dialogue {
    width: 60px !important;
    height: 60px !important;
  }
}
.speech-bubbles .sb-plain-text, .speech-bubbles .sb-wrap {
  margin-bottom: 1em;
  *zoom: 1;
}
.speech-bubbles .sb-plain-text:before, .speech-bubbles .sb-plain-text:after, .speech-bubbles .sb-wrap:before, .speech-bubbles .sb-wrap:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.speech-bubbles .sb-plain-text:after, .speech-bubbles .sb-wrap:after {
  clear: both;
}
.speech-bubbles .sb-speaking, .speech-bubbles .sb-plain-text {
  *zoom: 1;
  width: 90%;
}
.speech-bubbles .sb-speaking:before, .speech-bubbles .sb-speaking:after, .speech-bubbles .sb-plain-text:before, .speech-bubbles .sb-plain-text:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.speech-bubbles .sb-speaking:after, .speech-bubbles .sb-plain-text:after {
  clear: both;
}
@media screen and (max-width: 499px) {
  .speech-bubbles .sb-speaking, .speech-bubbles .sb-plain-text {
    width: 100%;
  }
}

section.present .odd .sb-text-bubble, section.present .odd .sb-text-bubble:before, section.present .even .sb-text-bubble, section.present .even .sb-text-bubble:before {
  background-color: #f1f1f1;
}
section.present .sb-text-bubble ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 24px;
}

.multi {
  margin-bottom: 1em;
  *zoom: 1;
}
.multi:before, .multi:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.multi:after {
  clear: both;
}
.multi .multi_desc {
  text-align: center;
  float: left;
  margin-top: 1em;
  margin-right: 15px;
  margin-bottom: 20px;
}
.multi .multi_desc img {
  max-width: 210px;
}

.text_image_text {
  margin-bottom: 1em;
}
.text_image_text .tit_title {
  text-align: left;
}
.text_image_text img {
  max-width: 210px;
}
.text_image_text.single_desc {
  text-align: center;
}
.text_image_text.single_desc img {
  max-width: 350px;
}

.text_only {
  margin-bottom: 1em;
}

.trivia {
  padding: 1em;
  background: #ccd9fd;
}
.trivia .head {
  color: #fff;
}
.trivia .head::before {
  font-family: "Material Icons";
  margin-right: 5px;
  vertical-align: middle;
  font-size: 1.5em;
  content: "\e90f";
}
.trivia .content {
  font-size: 1.7rem;
  display: inline-block;
  max-width: 475px;
}
.trivia .content.multi {
  max-width: 100%;
  display: inline-block;
}
.trivia .content ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 24px;
}
.trivia .trivia-single {
  display: inline-block;
  vertical-align: top;
}
.trivia .trivia-single figcaption {
  font-size: 12px;
  text-align: center;
  max-height: 150px;
  padding: 0px 5px 5px 5px;
}
.trivia .trivia-single figure {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1em;
}
.trivia .trivia-single img, .trivia .trivia-single figure img {
  display: inline-block;
  height: 150px;
  border: 3px solid #fff;
}
@media screen and (max-width: 760px) {
  .trivia .trivia-single figure img {
    height: auto;
    width: 100%;
    border: none;
  }
}
.trivia .trivia-multi {
  display: block;
  text-align: center;
}
.trivia .trivia-multi figcaption {
  font-size: 12px;
  text-align: center;
  max-height: 150px;
  padding: 0px 5px 5px 5px;
}
.trivia .trivia-multi figure {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1em;
}
.trivia .trivia-multi img, .trivia .trivia-multi figure img {
  display: inline-block;
  height: 150px;
  border: 3px solid #fff;
}
@media screen and (max-width: 760px) {
  .trivia .trivia-multi figure img {
    height: auto;
    width: 100%;
    border: none;
  }
}

.grammar-tip {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-bottom: 1em;
  overflow: hidden;
}
@media screen and (max-width: 499px) {
  .grammar-tip img {
    width: 100% !important;
  }
}
.grammar-tip ul {
  list-style: disc outside;
  margin-left: 1.5em;
  margin-bottom: 0;
}
.grammar-tip ul ul {
  list-style-type: circle;
}
.grammar-tip ul ol {
  list-style-type: none;
}
.grammar-tip ul ol li::before {
  content: "-";
  display: inline;
  font-size: 100%;
  margin-right: 10px;
}
.grammar-tip .jp {
  margin-top: 0px;
  margin-bottom: 1em;
}
.grammar-tip .jp ul, .grammar-tip .jp ul ul {
  padding-left: 5px;
}
.grammar-tip .difinition {
  width: 100%;
  padding-right: 5%;
}
@media screen and (max-width: 499px) {
  .grammar-tip .difinition {
    float: none;
    width: auto;
    padding-right: 0;
  }
}
.grammar-tip .example {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5em 2.5%;
  border: 1px solid #999;
  border-bottom: 0;
  background: #f1f1f1;
}
.grammar-tip .example:nth-of-type(1):before {
  content: "EXAMPLE";
  display: block;
  color: #999;
}
.grammar-tip .example:last-child {
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 499px) {
  .grammar-tip .example {
    float: none;
    width: auto;
  }
}
.grammar-tip .example.examples:nth-of-type(1):before {
  content: "EXAMPLES";
}
.grammar-tip img {
  width: auto;
  max-width: 760px;
}

[class^=box-reading] {
  padding: 0;
}
[class^=box-reading] ul {
  list-style-type: disc;
  margin-left: 1em;
}
[class^=box-reading] p {
  margin-bottom: 1em;
}
[class^=box-reading] .title {
  padding: 0.5em 1em;
  border-bottom: 1px solid #111;
}
[class^=box-reading] .title:before {
  margin-right: 0.5em;
  font-family: "Material Icons";
  vertical-align: middle;
  font-size: 1.2em;
}
[class^=box-reading] .content {
  padding: 1em;
}
[class^=box-reading] .content-inner img {
  border: 1px solid #ddd;
  background-color: white;
  padding: 3px;
  width: 50%;
  height: auto;
}
[class^=box-reading] .content-inner figure {
  width: 50% !important;
  height: auto;
  margin: 0 auto;
}
[class^=box-reading] .content-inner figure img {
  width: 100%;
  height: auto !important;
}
[class^=box-reading] .content-inner figure figcaption {
  text-align: center;
  font-size: 80%;
}
@media screen and (max-width: 499px) {
  [class^=box-reading] .content-inner {
    font-size: 1.5rem;
  }
  [class^=box-reading] .content-inner img {
    width: 100%;
    height: auto;
    max-width: 100% !important;
  }
  [class^=box-reading] .content-inner figure {
    width: 100% !important;
  }
}
[class^=box-reading] .explanation {
  margin: 1em;
}

.box-reading-general .content-inner {
  padding: 1em 3em 1em 1em;
  border: 1px solid #ccc;
  background: #f1f1f1;
}
.box-reading-general .content-inner img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 499px) {
  .box-reading-general .content-inner {
    padding: 1em;
  }
  .box-reading-general .content-inner figure {
    width: 100% !important;
  }
}

.box-reading-email .content, .box-reading-web .content {
  margin: 0 auto;
}
.box-reading-email .content:before, .box-reading-web .content:before {
  display: block;
  content: "";
  height: 15px;
  background: #ddd;
  border-radius: 5px 5px 0 0/5px 5px 0 0;
}
.box-reading-email .content-inner, .box-reading-web .content-inner {
  padding: 5%;
  border-radius: 0 0 5px 5px/0 0 5px 5px;
  box-shadow: 2px 5px 30px rgba(150, 150, 150, 0.65);
}
.box-reading-email .content-inner p:first-child b, .box-reading-web .content-inner p:first-child b {
  font-size: 2.4rem;
}
@media screen and (max-width: 499px) {
  .box-reading-email .content-inner, .box-reading-web .content-inner {
    height: auto;
    overflow: scroll;
  }
}
.box-reading-email i, .box-reading-web i {
  text-decoration: underline;
  color: #1b6ab3;
  font-style: normal;
}

.box-reading-email .content-inner {
  padding-right: 20%;
}

.box-reading-sms .content {
  width: auto;
  padding: 5%;
  background: #eef2fd;
}
.box-reading-sms .content-inner {
  width: auto;
  padding: 1em;
  background: #fff;
  border-radius: 1em;
}

.box-reading-mag .content {
  width: 90%;
  margin: 0 auto;
}
.box-reading-mag .content-inner {
  padding: 4em 15% 4.5em 12%;
  background: #fbfbf5;
  box-shadow: 2px 5px 15px rgba(150, 150, 150, 0.5);
  line-height: 1.75em;
  font-family: serif;
}
@media screen and (max-width: 499px) {
  .box-reading-mag .content-inner {
    padding: 10% 7.5%;
  }
}
.box-reading-mag .content-inner .subject {
  position: relative;
  margin-bottom: 3em;
  font-size: 3.5rem;
  text-align: center;
  letter-spacing: -1px;
}
.box-reading-mag .content-inner .subject:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 42.5%;
  display: block;
  width: 15%;
  border-bottom: 1px solid;
}
.box-reading-mag .content-inner img {
  width: 50%;
  max-width: 300px;
  height: auto;
}
@media screen and (max-width: 499px) {
  .box-reading-mag .content-inner img {
    float: none;
    display: block;
    width: auto;
    max-width: 100%;
  }
}
.box-reading-mag p {
  margin-bottom: 2em;
}
.box-reading-mag b {
  font-size: 2.4rem;
}

.box-reading-paper .content {
  padding: 5%;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 849px) {
  .box-reading-paper .content {
    width: auto;
  }
}
.box-reading-paper .content-inner {
  padding: 5% 15% 10%;
  background: #efefef;
  box-shadow: 1px 5px 20px rgba(150, 150, 150, 0.8);
  line-height: 1.6em;
  font-size: 1.6rem;
  font-family: serif;
  color: #333;
}
@media screen and (max-width: 849px) {
  .box-reading-paper .content-inner {
    position: relative;
    width: 80%;
    padding: 10%;
  }
}
.box-reading-paper .content-inner .subject:after, .box-reading-paper .content-inner .subject:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  border-top: 1px solid;
}
.box-reading-paper .content-inner .subject {
  position: relative;
  width: 60%;
  margin: 0 auto 2em;
  font-size: 2em;
  text-align: center;
}
@media screen and (max-width: 849px) {
  .box-reading-paper .content-inner .subject {
    font-size: 1.6em;
  }
}
.box-reading-paper .content-inner .subject:before {
  left: -50%;
}
.box-reading-paper .content-inner .subject:after {
  right: -50%;
}
.box-reading-paper .content-inner p {
  margin-bottom: 2em;
}
.box-reading-paper .content-inner p:nth-of-type(1) {
  margin-top: 20%;
}
.box-reading-paper .content-inner p:nth-of-type(1):first-letter {
  margin-left: -10px;
  font-size: 4em;
  color: #af1a1a;
  font-weight: bold;
}
@media screen and (max-width: 849px) {
  .box-reading-paper .content-inner p:nth-of-type(1) {
    margin-top: 30px;
  }
}

.text-message {
  position: relative;
  width: 96%;
  max-width: 600px;
  height: 400px;
  margin-bottom: 20px;
  background: url(../lv4/images/bg-textmessage.jpg) no-repeat;
  background-size: cover;
}
.text-message .bubble {
  position: absolute;
  top: 120px;
  left: 5%;
  width: 60%;
  padding: 10px;
  background: #fff;
  font-size: 1.5rem;
}
.text-message .bubble:before {
  position: absolute;
  top: 45%;
  left: -20px;
  content: "";
  border: 10px solid transparent;
  border-right: 10px solid #fff;
}

.inline-images-3col li, .inline-images-2col li {
  padding: 10px;
  border: none;
  text-align: center;
}
.inline-images-3col li:last-child, .inline-images-2col li:last-child {
  border: 0;
}
.inline-images-3col img, .inline-images-2col img {
  width: 100%;
  max-width: 600px;
}

.inline-images-2col {
  display: table;
  width: 100%;
}
.inline-images-2col > * {
  display: table-cell;
  box-sizing: border-box;
  width: 50%;
  border-left: 1px solid #ddd;
}
.inline-images-2col > *:last-child {
  border-right: 1px solid #ddd;
}
@media screen and (max-width: 499px) {
  .inline-images-2col > * {
    display: block;
    float: left;
    width: 50%;
    border: none;
  }
}

.inline-images-3col {
  display: table;
  width: 100%;
}
.inline-images-3col > * {
  display: table-cell;
  box-sizing: border-box;
  width: 33.3%;
  border-left: 1px solid #ddd;
}
.inline-images-3col > *:last-child {
  border-right: 1px solid #ddd;
}
@media screen and (max-width: 499px) {
  .inline-images-3col > * {
    display: block;
    float: left;
    width: 50%;
    border: none;
  }
}
.inline-images-3col li:last-child {
  float: none;
  margin: 0 auto;
}

.excercise {
  *zoom: 1;
}
.excercise:before, .excercise:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.excercise:after {
  clear: both;
}
.excercise i {
  text-decoration: underline;
}

.comprehension {
  margin-top: 15px;
  padding: 1em;
  background: #f1f1f1;
}
.comprehension .title {
  margin-bottom: 1em;
}
.comprehension div {
  padding-left: 2em;
}
.comprehension div ul {
  list-style-type: lower-alpha;
  list-style-position: outside;
}
.comprehension .list-basic {
  margin-bottom: 0 !important;
  list-style-position: outside;
  padding-left: 24px;
}
.comprehension .list-basic li:last-child {
  margin-bottom: 0 !important;
}

.light-talk {
  *zoom: 1;
}
.light-talk:before, .light-talk:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.light-talk:after {
  clear: both;
}
.light-talk dt {
  float: left;
  width: 30%;
  color: #777;
}
.light-talk dd {
  margin-bottom: 1em;
  padding-left: 30%;
  padding-bottom: 1em;
  border-bottom: 1px solid #999;
}

.multi-text {
  list-style: decimal outside;
  margin-left: 1em;
}
.multi-text li {
  margin-bottom: 10px;
}

.dialog-starter {
  margin-left: 50px;
}
.dialog-starter dt, .dialog-starter dd {
  display: block;
  clear: both;
  width: 50%;
  margin-bottom: 10px;
  padding: 0.5em 1em;
  border: 1px solid #777;
}
.dialog-starter dt:before, .dialog-starter dd:before {
  border-top: 1px solid #777;
  border-right: 0 solid #777;
  border-bottom: 0 solid #777;
  border-left: 1px solid #777;
  transition: rotate;
  left: -6px;
}
.dialog-starter dt:after, .dialog-starter dd:after {
  position: absolute;
  top: 30%;
  left: -50px;
  font-family: "Material Icons";
  font-size: 3rem;
}
.dialog-starter dt {
  float: left;
}
.dialog-starter dt:after {
  content: "\e80c";
}
.dialog-starter dd {
  float: right;
}
.dialog-starter dd:after {
  content: "\e851";
}

.tutor-notes-high {
  background-color: rgba(237, 28, 36, 0.25);
  position: relative;
  left: 0;
  top: 0;
  margin: -1px -6px 5px -6px;
  padding-bottom: 1px;
}
.tutor-notes-high ul {
  list-style-type: disc !important;
  padding: 5px !important;
}
.tutor-notes-high .warning-head {
  margin: -6px 0 10px 0;
  padding: 4px;
  background: #ed1c24;
  color: white;
  text-align: center;
}
.tutor-notes-high .warning-head span {
  font-size: 13px;
  font-weight: 700;
}
.tutor-notes-high .warning-head small {
  font-style: italic;
  font-size: 11px;
}
.tutor-notes-high ul {
  color: #333333;
  text-align: left;
}

.blackout {
  width: 100%;
  background-color: black;
  line-height: normal;
  display: inline-block;
}

.split-width {
  width: 45%;
  float: left;
}
.split-width.first {
  margin-right: 5%;
}

@media screen and (max-width: 499px) {
  .split-width {
    width: 100%;
    float: none;
  }
  .split-width.first {
    margin-right: 0;
  }
}
.spk-your-mind {
  font-size: 2rem;
  font-weight: normal;
  color: #15733c;
}

/* ------------------------------
 *  5. OTHERS
 ------------------------------ */
.jp {
  visibility: visible;
  display: block;
  margin-top: 5px;
  font-size: 0.8em;
  color: #777;
  height: auto;
}

.jp-toggle {
  position: fixed;
  top: 50%;
  display: inline-block;
  padding: 10px;
  border: 2px solid;
  background: white;
  z-index: 500;
  box-shadow: 0 0 6px rgba(100, 100, 100, 0.5);
  text-align: center;
  vertical-align: middle;
  font-size: 1.2rem;
  color: #1b6ab3;
  right: 0px;
  cursor: pointer;
  font-size: 14px;
}
@media screen and (max-width: 849px) {
  .jp-toggle {
    top: auto;
    bottom: 15px;
    right: 0;
  }
}
.jp-toggle:hover {
  cursor: pointer;
  color: #0e365a;
}

.show {
  visibility: hidden;
}

article > section {
  position: relative;
}

.content-wrap {
  *zoom: 1;
  position: relative;
}
.content-wrap:before, .content-wrap:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: " ";
}
.content-wrap:after {
  clear: both;
}
.content-wrap:nth-of-type(even) [class$=tutor-notes] {
  right: auto;
  left: -260px;
}
.content-wrap:not(:first-child) .sub-h {
  margin-top: 1em;
}

[class$=tutor-notes] {
  padding: 5px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1.3rem;
  color: #333;
}
[class$=tutor-notes] .head-tn {
  margin: -5px -5px 5px -5px;
  padding: 4px;
  background: #FDAF67;
}
[class$=tutor-notes] .subHead-tn {
  margin-bottom: 5px;
  padding: 3px;
  background: #fed7b3;
}
[class$=tutor-notes] ul {
  list-style-type: disc;
  margin-left: 2em;
  margin-bottom: 1em;
}
[class$=tutor-notes] ul ul {
  list-style-type: circle;
}
[class$=tutor-notes] table {
  width: 100%;
  border: 1px solid #777;
  border-collapse: collapse;
}
[class$=tutor-notes] td, [class$=tutor-notes] th {
  padding: 3px;
  border: 1px solid #777;
}

.tutor-notes, .bottom-tutor-notes {
  float: right;
  width: 240px;
  min-height: 200px;
  z-index: 500;
  display: none;
}
@media screen and (max-width: 849px) {
  .tutor-notes, .bottom-tutor-notes {
    display: none !important;
  }
}
.tutor-notes ol, .bottom-tutor-notes ol {
  list-style-position: outside;
  padding-left: 24px;
}
.tutor-notes b, .bottom-tutor-notes b {
  display: block;
  margin-bottom: 5px;
}
.tutor-notes p + b, .bottom-tutor-notes p + b {
  margin-top: 10px;
}
.tutor-notes li.tn-script, .bottom-tutor-notes li.tn-script {
  list-style-type: none;
  color: #FF7E07;
  font-style: italic;
  list-style-position: outside;
  font-weight: bolder;
}
.tutor-notes li.tn-script:before, .bottom-tutor-notes li.tn-script:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: -10px;
  font-size: 100%;
  background-color: #FF7E07;
  position: relative;
  left: -22px;
}
.tutor-notes li.tn-diamond, .bottom-tutor-notes li.tn-diamond {
  list-style-type: none;
  font-weight: bolder;
  list-style-position: outside;
  color: #ed1c24;
}
.tutor-notes li.tn-diamond:before, .bottom-tutor-notes li.tn-diamond:before {
  content: "♦" !important;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: -8px;
  font-size: 150%;
  position: relative;
  left: -20px;
  color: #ed1c24;
}
.tutor-notes li.tn-answer-key, .bottom-tutor-notes li.tn-answer-key {
  color: #ed1c24;
}
.tutor-notes li.tn-answer-key:last-child, .bottom-tutor-notes li.tn-answer-key:last-child {
  margin-bottom: 1em;
}
.tutor-notes .tn-green-box, .bottom-tutor-notes .tn-green-box {
  border: 1px solid #FF7E07;
  padding: 15px;
  margin-left: 25px;
  margin-bottom: 1em;
}
.tutor-notes .tn-green-box p:last-child, .bottom-tutor-notes .tn-green-box p:last-child, .tutor-notes .tn-green-box ul, .bottom-tutor-notes .tn-green-box ul {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}
.tutor-notes .tn-green-box ul, .bottom-tutor-notes .tn-green-box ul {
  margin-left: 1.25em !important;
  list-style-type: disc !important;
}

.copyClip {
  cursor: pointer;
  width: 100%;
  padding: 10px 5px;
  color: white;
  background-color: #FF7E07;
  border: none;
  border-radius: 4px;
  outline: none;
}
.copyClip.bottom-btn {
  position: absolute;
  top: 0px;
  left: 0px;
}
.copyClip:active {
  background-color: #d36500;
}
.copyClip.copied {
  background-color: #777 !important;
}

.top {
  margin: -5px;
  padding: 10px;
  position: relative;
}
.top.feedback-important-copy {
  margin-bottom: 10px;
  margin-top: 10px;
  border: 3px dashed #ddd !important;
  transition: all 350ms ease-in-out;
}
.top.feedback-important-copy td {
  border: none !important;
  padding: 0.5em !important;
}
.top.feedback-important-copy.copied {
  border-color: #FF7E07 !important;
}
.top.feedback-important-copy:hover {
  border: 3px dashed #ffb36d !important;
}
.top.feedback-important {
  border: 1px solid red !important;
  margin-bottom: 15px !important;
}
.top.feedback-important td {
  border: none !important;
  padding: 0.5em !important;
}
.top.feedback-important b {
  display: inline;
}

section.feedback .content-wrap .main small {
  font-size: 13px;
}
section.feedback .content-wrap .main .fb-line {
  border-right: 1px solid #ddd;
}
section.feedback .content-wrap .main .fbb {
  border-bottom: 1px solid #ddd !important;
}
section.feedback .content-wrap .main .fb-none {
  border: none !important;
}
section.feedback .content-wrap .main .feedback-important-copy {
  margin-top: 10px;
  width: 100%;
  border: 3px dashed #ddd !important;
}
section.feedback .content-wrap .main .feedback-important-copy td {
  border: none !important;
  padding: 0.5em !important;
}
section.feedback .content-wrap .main .feedback-important-copy-top {
  position: relative;
}
section.feedback .content-wrap .main .feedback-important {
  width: 100%;
  border: none;
  border: 1px solid #ddd !important;
}
section.feedback .content-wrap .main .feedback-important td {
  border: none !important;
  padding: 0.5em !important;
}
section.feedback .content-wrap .main .feedback-important b {
  display: inline;
}
section.feedback .content-wrap .main .feedback-wrap {
  border: none;
  font-size: 13px;
  border-collapse: collapse;
  border-spacing: 10px 0;
}
section.feedback .content-wrap .main .feedback-wrap td {
  vertical-align: top;
  padding: 0;
  border: 1px solid #ddd;
}
section.feedback .content-wrap .main p {
  margin-bottom: 1em;
}

.feedback-table {
  font-size: 13px;
  float: left;
  min-height: 428px;
  border: 0px solid transparent;
  width: 100%;
}
.feedback-table thead {
  background-color: #FF7E07;
  color: white;
  border: none;
  font-size: 1.4rem;
  text-align: center;
}
.feedback-table thead td {
  border: none !important;
  padding: 5px !important;
}
.feedback-table thead th {
  border: none;
  padding: 0.5em;
  vertical-align: middle;
}
.feedback-table tbody th {
  border: none;
  background-color: #f1f1f1;
  padding: 0.5em;
  vertical-align: middle;
}
.feedback-table tbody td {
  border: none !important;
  padding: 0.5em !important;
  vertical-align: top;
}
.feedback-table tbody td b {
  display: inline;
  font-weight: 800 !important;
}
.feedback-table tbody td table tr td {
  padding: 0px 0px 5px 0px !important;
}

.bottom-tutor-notes {
  right: -330px;
  width: 320px;
}

.feedback-tutor-notes {
  margin-top: 20px;
}

.rarejob-tip {
  margin-top: 20px;
}
.rarejob-tip .content {
  padding: 1em;
  border: 1px solid #333;
}

.tn-guide-q-header p {
  margin: 0;
  padding: 0;
}

.tn-guide-q-header, .tn-guide-q {
  border: 1px solid #008c19;
  padding: 5px 0;
}

.tn-guide-q-header {
  padding-left: 10px;
  margin-left: 0;
}

.tn-guide-q {
  list-style-position: inside;
  padding-left: 30px;
  margin-left: -24px;
  text-indent: -15px;
  border-bottom: none;
}
.tn-guide-q ul, .tn-guide-q ul ul {
  margin-left: 10px;
}
.tn-guide-q ul {
  list-style-type: disc !important;
}
.tn-guide-q ul ul {
  list-style-type: circle !important;
}

.tn-guide-q ol {
  padding: 0;
  margin: 0;
  margin-left: -23px;
  margin-top: 5px;
  margin-bottom: 0;
  border-collapse: collapse;
  list-style-type: none;
}

.tn-guide-q ol li {
  padding: 5px 0 5px 24px;
  border: 1px solid #777;
  font-style: italic;
  color: #ed1c24;
  border-left: none;
  border-right: none;
}

ol li.tn-guide-q:not(:first-child):not(:last-child), ul li.tn-guide-q:not(:first-child):not(:last-child) {
  border-bottom: none;
  border-top: 1px solid #777777;
}

ol li.tn-guide-q:first-child:not(:last-child), ul li.tn-guide-q:first-child:not(:last-child) {
  border-bottom: none;
  border-top: 1px solid #008c19;
}

ol li.tn-guide-q:last-child:not(:first-child), ul li.tn-guide-q:last-child:not(:first-child) {
  border-top: 1px solid #777777;
  border-bottom: 1px solid #008c19;
}

.tn-guide-q-header + ol li:first-child:not(:last-child), .tn-guide-q-header + ul li:first-child:not(:last-child) {
  border-top: none;
}

.tn-guide-q-header + ol li:last-child:not(:first-child) {
  border-bottom: none;
}

.tn-guide-q-header ~ ul {
  margin-top: 1em;
}

.trivia-multi small {
  font-size: 1.2em;
}

pre.timelineMessage__message {
  white-space: normal;
}

.table-complex-2 td p {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 849px) {
  body.tutor .tutor-notes, body.tutor .bottom-tutor-notes {
    display: none;
  }
}
.print-only {
  display: none;
}

@media screen and (max-width: 499px) {
  .jp-toggle {
    top: auto;
    bottom: 15px;
    left: auto;
    right: 0;
    background: rgba(219, 248, 231, 0.7);
  }
}
@media print {
  header.fixed {
    position: static !important;
    background: none;
    background-image: none;
  }
  header.fixed .hd-bar, header.fixed .lesson-header {
    color: #505050;
  }
  .print-only {
    display: block;
  }
  .jp-toggle {
    display: none;
  }
}
small {
  font-size: 0.6em;
}

@media screen and (min-width: 1336px) {
  body.tutor .main {
    max-width: 780px !important;
  }
  body.tutor .lesson-header, body.tutor article {
    max-width: 1200px;
  }
  body.tutor .tutor-notes, body.tutor .bottom-tutor-notes {
    max-width: 395px !important;
    width: 100% !important;
  }
}
@media screen and (min-width: 850px) and (max-width: 1335px) {
  body.tutor .main {
    width: calc(98% - 252px) !important;
  }
}
.content.jp .en-text, .feedback-skill.jp .en-text {
  display: none;
}
.content.jp .jp-text, .feedback-skill.jp .jp-text {
  display: block;
}
.content.jp.show, .feedback-skill.jp.show {
  visibility: visible !important;
}
.content.jp.show .en-text, .feedback-skill.jp.show .en-text {
  display: block;
}
.content.jp.show .jp-text, .feedback-skill.jp.show .jp-text {
  display: none;
}

.additional-info.jp {
  color: #333;
  margin-top: 0px;
  font-size: 100%;
}
.additional-info.jp.show {
  visibility: visible;
}
.additional-info.jp.show table span {
  visibility: hidden;
}

.footer-logo.jp .jp-logo {
  display: inline;
}
.footer-logo.jp .en-logo {
  height: 50px;
  display: none;
}
.footer-logo.jp.show {
  visibility: visible;
}
.footer-logo.jp.show .jp-logo {
  display: none;
}
.footer-logo.jp.show .en-logo {
  display: inline;
}

body.remove-jp .jp, body.remove-jp .jp-toggle, body.remove-jp .trivia-section {
  display: none !important;
}
body.remove-jp .content.jp, body.remove-jp .feedback-skill.jp {
  display: block;
}
body.remove-jp .content.jp .jp-text, body.remove-jp .feedback-skill.jp .jp-text {
  display: none !important;
}
body.remove-jp .content.jp .en-text, body.remove-jp .feedback-skill.jp .en-text {
  display: block;
}
body.remove-jp .footer-logo.jp {
  display: block !important;
}
body.remove-jp .footer-logo.jp .jp-logo {
  display: none !important;
}
body.remove-jp .footer-logo.jp .en-logo {
  display: inline;
}
body.remove-jp .additional-info.jp {
  display: block;
}
body.remove-jp .additional-info.jp table span {
  display: none !important;
}

body.remove-jp .jp {
  display: none !important;
}