/* ------------- */
/* index */
/* ------------- */
/* ------------- */
/* Common */
/* ------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ------------- */
/* mixin */
/* ------------- */
/* ------------- */
/* responsive */
/* ------------- */
/* ------------- */
/* header */
/* ------------- */
.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 32px 0 0;
}

@media screen and (max-width: 768px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header .header_title {
  font-size: 1.2rem;
  margin: 0 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  .header .header_title {
    margin: 0;
    text-align: center;
  }
}

.header .header_title span {
  font-size: 1rem;
  font-weight: 100;
  color: #999;
}

@media screen and (max-width: 768px) {
  .header .header_title span {
    color: #000;
    font-size: 0.8rem;
  }
}

.header .header_about {
  color: #999;
  font-weight: 300;
  text-align: right;
  margin: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  .header .header_about {
    margin: 24px 0 0;
    text-align: center;
  }
}

.header .header_about p {
  font-size: 0.6rem;
}

.header .header_about p + p {
  margin: 2px 0 0;
}

.header_ad {
  width: 100%;
  padding: 32px 0;
  text-align: center;
  border: 1px solid red;
}

/* ------------- */
/* l_section */
/* ------------- */
.generate {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 32px 0 0;
  padding: 64px 0;
  z-index: 0;
}

.generate:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/index.jpg) 50% 50% no-repeat fixed;
  background-size: cover;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .generate {
    padding: 32px 0;
  }
}

.generate_inner {
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .generate_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.generate_results {
  width: calc(100% - 200px);
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .generate_results {
    width: 100%;
  }
}

.button_generate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 200px;
}

@media screen and (max-width: 768px) {
  .button_generate {
    width: 80px;
    height: 80px;
    margin: 16px 0 0;
  }
}

.results_top_kanji,
.results_top_jp,
.results_top_en {
  width: 100%;
  text-align: center;
}

.results_top_kanji {
  font-size: 4rem;
  font-weight: bold;
}

.results_top_jp,
.results_top_en {
  margin: 0 3px 0 0;
}

@media screen and (max-width: 768px) {
  .results_top_jp,
  .results_top_en {
    margin: 0;
  }
}

.results_top_en,
.results_top_mean {
  font-size: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .results_top_en,
  .results_top_mean {
    font-size: .8rem;
  }
}

.results_top_mean {
  color: #fff;
  height: 2rem;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

/* ------------- */
/* button */
/* ------------- */
.button_onemore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 120px;
  border: 5px solid #fff;
  border-radius: 90px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .button_onemore {
    width: 80px;
    height: 80px;
  }
}

.button_onemore img {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 768px) {
  .button_onemore img {
    width: 45px;
    height: 45px;
  }
}

/* ------------- */
/* example */
/* ------------- */
.examle {
  width: 100%;
  max-width: 960px;
  padding: 16px;
  margin: 32px auto 0;
}

@media screen and (max-width: 768px) {
  .examle {
    max-width: calc(100% - 40px);
    padding: 16px 0;
    margin: 0 auto;
  }
}

.example_title {
  width: 100%;
  font-size: 1.0rem;
  text-align: left;
  padding: 8px 0;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.example_lists {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.example_lists .list {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-left: 8px solid #eee;
  padding: 2px 0 2px 16px;
  margin: 32px 0 0;
}

@media screen and (max-width: 768px) {
  .example_lists .list {
    width: 100%;
    margin: 24px 0 0;
  }
}

.example_lists .ex_item {
  font-size: 1rem;
}

.example_lists .ex_item_en {
  margin: 0 0 0 8px;
  font-size: .8rem;
  font-weight: 100;
}

.ex_item_en::first-letter {
  text-transform: capitalize;
}

/* ------------- */
/* contact */
/* ------------- */
.contact {
  margin: 120px 0 0;
}

.contact .contact_title {
  font-size: 1.0rem;
  text-align: center;
}

.mailform {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 32px;
  margin: 24px auto 0;
  background: #f9f9f9;
}

@media screen and (max-width: 768px) {
  .mailform {
    padding: 32px 32px 48px;
  }
}

.mailform form {
  display: -ms-grid;
  display: grid;
}

@media screen and (max-width: 768px) {
  .mailform form {
    display: block;
  }
}

.mailform form p {
  margin: 0 0 4px;
}

.mailform_copy {
  position: absolute;
  right: 8px;
  bottom: 10px;
  font-size: .8rem;
}

.mailform_copy a {
  color: #111;
}

.mailform_name input,
.mailform_mail input {
  width: calc(100% - 32px);
  font-size: 1rem;
  padding: 4px 10px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .mailform_name input,
  .mailform_mail input {
    width: 100%;
  }
}

.mailform_name {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
}

.mailform_mail {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
}

@media screen and (max-width: 768px) {
  .mailform_mail {
    margin: 24px 0 0;
  }
}

.mailform_text {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
}

@media screen and (max-width: 768px) {
  .mailform_text {
    margin: 24px 0 0;
  }
}

.mailform_text textarea {
  width: 100%;
  height: 12rem;
  font-size: 1rem;
  padding: 8px;
  line-height: 1.5;
}

.mailform_submit {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3 / 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  margin: 32px auto 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mailform_submit {
    margin: 24px 0 0;
  }
}

.mailform_submit input {
  padding: 16px 32px;
  font-size: 1rem;
  letter-spacing: 2px;
  border: none;
  background: #c7c7c7;
}

/* ------------- */
/* footer */
/* ------------- */
.footer {
  margin: 64px auto 0;
  border-top: 1px solid #eee;
  padding: 16px 0;
}

@media screen and (max-width: 768px) {
  .footer {
    margin: 48px auto 0;
  }
}

.footer_today {
  font-size: 0.6rem;
  text-align: center;
}

.footer_counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.6rem;
  margin: 0 auto 8px;
}

.footer_counter img {
  max-width: 100%;
}
/*# sourceMappingURL=index.css.map */