html,
body,
div,
h1,
h2,
h3,
h4,
p,
ol,
ul,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

ul,
ol {
  list-style: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: rgb(235, 231, 231);
  height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  font-size: 1.8rem;
  font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  body {
    max-width: 600px;
    margin: 0 auto;
  }
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
a:active {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  a:hover {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.7;
  }
}

.link {
  color: #4288a8;
  text-decoration: underline;
}
.link:hover {
  text-decoration: underline;
  color: #257093;
}

.link_sound {
  color: #666;
  text-decoration: underline;
}
.link_sound:hover {
  text-decoration: underline;
  color: #a68bb3;
}

h1 {
  font-size: 2rem;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  text-align: center;
}

h3 {
  line-height: initial;
  padding: 3rem 0 2rem;
}
h3::before {
  display: inline-block;
  content: "";
  width: 0.5rem;
  height: 3rem;
  background-color: #555;
  vertical-align: bottom;
  margin-right: 1rem;
}

p {
  margin: 1.6rem 0;
}

ol {
  counter-reset: num;
}
ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
  font-weight: bold;
}
ol li:before {
  position: absolute;
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  background: #553b69;
  color: #FFF;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  top: 10px;
}

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

.bold-purple {
  font-weight: bold;
  color: #553b69;
}

.pen-purple {
  background-image: linear-gradient(transparent 70%, rgba(126, 120, 177, 0.5) 70%);
}

.top_area {
  padding: 1rem 0;
  background-color: #333;
}

.top_h2 {
  color: #fff;
  font-size: 1.4rem;
}

.top_icon {
  position: absolute;
  top: 20px;
  right: 40px;
  cursor: pointer;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
.top_icon_pic {
  display: block;
  background-image: url(images/search_icon.png);
  background-size: contain;
  height: 30px;
  width: 30px;
}
.top_icon_text {
  color: #333;
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
}

.form {
  display: block;
  position: relative;
  border-radius: 5px;
  padding: 0 10px;
  color: #fff;
}
.form .input-area {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: block;
  width: 100%;
  height: 80px;
  border: solid 2px #eee;
  font-size: 2rem;
  border-radius: 0.2rem;
}
.form .input-area:hover {
  border: solid 2px #333;
  outline: 0;
}
.form input[type=submit] {
  display: none;
}
.form .sort_contents {
  display: inline-block;
}
.form .sort_announcement {
  font-size: 1.2rem;
  color: #d5d7c7;
}
.form .index-button {
  display: flex;
  flex-flow: row wrap;
  height: 200px;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .form .index-button {
    max-width: 600px;
    margin: 0 auto;
    height: unset;
    overflow: unset;
  }
}
.form .sort_button {
  display: inline-block;
  width: 120px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.form .sort_button::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
.form .sort_button::after {
  content: "";
  position: absolute;
  background-color: #abb178;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  top: 50%;
  left: 7px;
  opacity: 0;
}
.form input[type=radio] {
  display: none;
}
.form input[type=radio]:checked + .sort_button::after {
  opacity: 1;
}

.return-tag {
  margin: 2rem 0;
  padding: 1rem;
  border-radius: 5px;
  background-color: #abb178;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
  text-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.8);
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.return-tag:hover {
  opacity: 0.7;
  background-color: #5f614f;
}
.return-tag a {
  color: #fff;
}
.return-tag a:hover {
  color: #fff;
}

.button {
  width: 300px;
  height: 50px;
  line-height: 50px;
  background: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  color: #fff;
  display: block;
  margin: 20px auto;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: #553b69;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  text-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.8);
  padding: 0;
  border: none;
  cursor: pointer;
}
.button:hover {
  background-color: #9878B0;
}
.button a {
  width: 100%;
  height: 100%;
}

.screen {
  padding: 0 5px 5px 5px;
}

.result-list {
  color: #553b69;
  white-space: nowrap;
}
.result-list:hover {
  text-decoration: underline;
}

.result-box {
  position: relative;
  overflow: hidden;
}

.result-inner {
  position: absolute;
  right: 0;
  top: 0;
  width: 10rem;
  height: 100%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  z-index: 1;
}

.sound_icon {
  font-size: 1.2rem;
  color: #FFF;
  background-color: #a5a5a5;
  padding: 1px;
  border-radius: 2px;
}

.word {
  font-size: 3rem;
}

.info-title {
  display: inline-block;
  width: 100px;
  background-color: #eee;
  font-size: 1.4rem;
  margin: 0.5rem 2rem 0.5rem 0;
  padding: 0.5rem;
}

.info-num {
  font-size: 2rem;
  font-weight: bold;
}

.ex {
  background: #999;
  color: #fff;
  padding: 0.5rem;
  margin: 0 1rem;
  border-radius: 0.3rem;
}

.ja-text {
  font-weight: bold;
}

.info-text {
  margin: 1rem 0;
}

.footnote-text {
  font-size: 1.4rem;
  color: #484848;
}

.ca-text {
  color: #9878B0;
}

.bold {
  font-weight: bold;
  font-size: 2rem;
}

.result {
  display: inline-block;
  padding: 1rem;
  margin: 0;
}

.question-icon {
  background-color: #5f5f5a;
  border-radius: 0.5rem;
  color: #fff;
  display: inline-block;
  margin-right: 0.5rem;
  width: 40px;
  height: 40px;
  text-align: center;
}

.footer {
  margin-top: 50px;
}

.meaning_so {
  color: #888888;
}

.meaning_en {
  color: #9878B0;
}

.accordion-text {
  background-color: #9878B0;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem;
  margin: 0.5rem auto;
  z-index: 2;
}
.accordion-text p {
  padding-left: 2rem;
  display: inline-block;
}
@keyframes accordion {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  margin: 0 1rem;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}
.arrow::before, .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow::before {
  left: 2px;
  width: 7px;
  height: 3px;
  background: #666;
}
.arrow::after {
  left: 2px;
  width: 6px;
  height: 6px;
  border-top: 3px solid #666;
  border-right: 3px solid #666;
  transform: rotate(45deg);
}

.width15 {
  display: inline-block;
  width: 15rem;
}

.pagination {
  font-weight: bold;
  display: inline-block;
  background-color: #d0d0d0;
  text-align: center;
  color: #999;
  background-color: #fff;
  border: solid 0.3px #d2d2d2;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin-right: 3px;
  width: 40px;
  height: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.pagination:hover {
  background-color: #eee;
}
.pagination.off {
  visibility: hidden;
}
.pagination a {
  display: block;
  height: 40px;
  line-height: 40px;
}
.pagination_long {
  font-weight: bold;
  display: inline-block;
  background-color: #d0d0d0;
  text-align: center;
  color: #999;
  background-color: #fff;
  border: solid 0.3px #d2d2d2;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin-right: 3px;
  width: 40px;
  height: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  width: 80px;
}
.pagination_long:hover {
  background-color: #eee;
}
.pagination_long.off {
  visibility: hidden;
}
.pagination_long a {
  display: block;
  height: 40px;
  line-height: 40px;
}
.pagination_long.off {
  visibility: hidden;
}
.pagination_current {
  font-weight: bold;
  display: inline-block;
  background-color: #d0d0d0;
  text-align: center;
  color: #999;
  background-color: #fff;
  border: solid 0.3px #d2d2d2;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin-right: 3px;
  width: 40px;
  height: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  background-color: #999;
  line-height: 40px;
  color: #fff;
  cursor: default;
}
.pagination_current:hover {
  background-color: #eee;
}
.pagination_current.off {
  visibility: hidden;
}
.pagination_current a {
  display: block;
  height: 40px;
  line-height: 40px;
}
.pagination_current:hover {
  background-color: #999;
}
.pagination_box {
  text-align: center;
}

.grammar-ex {
  background-color: #f8f8f6;
  margin: 3rem 0;
  padding: 0 2rem;
}
.grammar-ex-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #abb178;
}
.grammar-ex-table {
  border-collapse: separate;
  padding: 0;
}
.grammar-ex-tr {
  text-align: left;
}
.grammar-ex-tr:nth-child(even) {
  background-color: inherit;
}
.grammar-ex-td {
  padding-right: 0;
  border-bottom: solid 3px #fff;
  width: 50%;
}
.grammar-ex-word {
  font-size: smaller;
  padding: 1rem 0;
}
.grammar-ex-word-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #abb178;
}
.grammar-ex-word-ja {
  display: inline-block;
  width: 18rem;
}

.grammar-table-th {
  background-color: #5f614f;
  color: #fff;
  text-align: left;
  padding-left: 2rem;
}
.grammar-table-td {
  background-color: #fff;
  text-align: left;
  padding-left: 2rem;
}
.grammar-table-num {
  font-size: 3rem;
}
.grammar-table-jp {
  display: inline-block;
  width: 15rem;
}
.grammar-table-jp-th {
  display: inline-block;
  width: 13rem;
}

.flex-container {
  display: flex;
  flex-flow: row wrap;
}
.flex-wide {
  width: 300px;
}

.pic-panda img {
  margin: 20px auto;
  display: block;
  width: 100px;
}

.main {
  margin: 0 10px;
}

@keyframes color {
  0% {
    background-color: #3d3d3d;
  }
  50% {
    background-color: #858585;
  }
}
.tip_area {
  position: relative;
}
.tip_box {
  background-color: rgb(237, 237, 237);
  padding: 2rem;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
  width: 70%;
  margin: 0 auto;
}
.tip_way {
  font-size: 1.4rem;
  color: #646449;
}
.tip_title {
  font-weight: bold;
}
.tip_body {
  font-size: 1.6rem;
}
.tip_next {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #858585;
  right: 0;
  top: 0;
  cursor: pointer;
}
.tip_next.auto {
  animation: color 3s forwards infinite;
}
.tip_next_child {
  position: absolute;
  width: 10px;
  height: 10px;
  right: 5px;
  top: 2px;
  transform: rotate(225deg) translateY(-50%);
  border-bottom: solid 5px #fff;
  border-left: solid 5px #fff;
}
.tip_prev {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #858585;
  left: 0;
  top: 0;
  cursor: pointer;
}
.tip_prev_child {
  position: absolute;
  width: 10px;
  height: 10px;
  left: 5px;
  top: 12px;
  transform: rotate(45deg) translateY(-50%);
  border-bottom: solid 5px #fff;
  border-left: solid 5px #fff;
}

.list-table {
  width: 100%;
  border-collapse: separate;
}
.list-table tr {
  background-color: #eee;
  border: 1px solid #fff;
}
.list-table td {
  padding: 0.2rem 1rem;
}
.list-table a {
  width: 100%;
  height: 100%;
}

.list_active td {
  background-color: #9878B0;
  color: #fff;
}
.list_active td a {
  color: #fff;
  font-weight: bold;
}

.list-c {
  font-size: 1.4rem;
  width: 60%;
}

.idiom {
  font-weight: bold;
  color: #646449;
}

.thumb_parent {
  flex-flow: row wrap;
  row-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  display: none;
}
.thumb_parent::before {
  content: none;
}
.thumb_parent.show {
  display: flex;
}

#thumb_area {
  margin-bottom: 5rem;
}

.thumb_child {
  position: relative;
  width: 45%;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .thumb_child {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    width: 250px;
  }
}

.thumb_title {
  font-weight: bold;
  text-align: center;
}

.thumb_link {
  height: 100%;
  width: 100%;
  position: absolute;
  cursor: pointer;
}

.top-index {
  height: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  background-image: url(../images/red_panda2.jpg);
}

.ne-index {
  height: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  background-image: url(../images/nepal.jpg);
}

.al-index {
  height: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  background-image: url(../images/camera.jpg);
}

.co-index {
  height: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  background-image: url(../images/feald.jpg);
}

.gr-index {
  height: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  background-image: url(../images/block.jpg);
}

.vo-index {
  height: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  background-image: url(../images/autumn.jpg);
}

.se-index {
  height: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  background-image: url(../images/beach.jpg);
}

.ga-index {
  height: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  background-image: url(../images/cake.jpg);
}

.i_ex_box {
  padding-left: 16px;
}/*# sourceMappingURL=dictionary.css.map */