@charset "UTF-8";

/*----------------------------------------
*
* +01 base
* +02 layout
* +03 module/component
* +04 header
* +05 rest
*
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap");

/*----------------------------------------------------
add
----------------------------------------------------*/
.copy_content .container {
  width: 1190px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 25px;
}

#news table th,
#news table td {
  border: 1px solid #000;
  padding: 3px;
  text-align: left;
}

#specifications .features_inner ul {
  padding-left: 30px;
  list-style: initial;
}

/*----------------------------------------------------
++01 base
----------------------------------------------------*/

html {
  font-size: 62.5%;
}

div.reader {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
}

body.fixed {
  overflow: hidden;
}

a {
  color: #000000;
  text-decoration: none;
  outline: none;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.f_en {
  font-family: "Poppins", sans-serif;
}

.pc_non {
  display: none;
}

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

.siteWrapper {
  background: url("../img/reader/features_bg.jpg") repeat;
  background-size: 683px auto;
  margin-top: 75px;
}

@media screen and (max-width: 1023px) {
  .siteWrapper {
    margin-bottom: 50px;
    margin-top: 66px;
  }
}

/*----------------------------------------------------
++02 layout
----------------------------------------------------*/
.l-inner {
  width: 1336px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/*----------------------------------------------------
++03 module/component c-●●
----------------------------------------------------*/
.c-gnav {
  font-size: 1.5rem;
  font-weight: bold;
}

.c-gnav__list {
  display: flex;
}

.c-gnav__item a {
  display: inline-block;
  padding: 14px 26px;
}

.c-gnav__item a:hover {
  color: #0098ad;
}

.c-gnav__item--contact {
  margin-left: 16px;
}

.c-gnav__item--contact a {
  color: #fff;
  background-color: #ffa400;
  padding: 14px 45px;
  border-radius: 50px;
}

.c-gnav__item--contact a:hover {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .c-gnav {
    display: none;
  }

  .c-gnav.show {
    display: block;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    padding: 60px 15px;
    overflow-y: scroll;
  }

  .c-gnav__list {
    flex-direction: column;
  }

  .c-gnav__item {
    width: 100%;
    text-align: center;
  }

  .c-gnav__item--contact {
    margin-left: 0;
  }
}

.c-secTtl {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}

.c-secTtl__en {
  display: block;
  font-family: "Poppins", sans-serif;
  color: #0098ad;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-secTtl {
    font-size: 2.2rem;
  }

  .c-secTtl__en {
    font-size: 1.2rem;
  }
}

.c-sp_fixedFooter {
  display: none;
}

@media screen and (max-width: 1023px) {
  .c-sp_fixedFooter {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    transform: translateY(100%);
    transition: all 0.3s;
  }

  .c-sp_fixedFooter.active {
    transform: translateY(0%);
  }

  .c-sp_fixedFooter a {
    width: 100%;
    min-height: 50px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #ffa400;
  }
}

/*----------------------------------------------------
++04 header
----------------------------------------------------*/
.header {
  padding: 8px 0;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
}

.header_inner {
  display: flex;
  justify-content: space-between;
}

.header__logo .logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.header__logo .logo img {
  width: 162px;
}

@media screen and (max-width: 768px) {
  .header__logo .logo img {
    width: 110px;
  }
}

.header__nav {
  padding-top: 8px;
}

.header .btnMenu {
  display: none;
}

@media screen and (max-width: 1023px) {
  .header .btnMenu {
    position: absolute;
    z-index: 99;
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
  }

  .header .btnMenu span {
    width: 30px;
    height: 1px;
    background-color: #000;
    position: relative;
  }

  .header .btnMenu span::before,
  .header .btnMenu span::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: all 0.3s;
  }

  .header .btnMenu span::before {
    top: -10px;
  }

  .header .btnMenu span::after {
    top: 10px;
  }

  .header .btnMenu.active span {
    background-color: transparent;
  }

  .header .btnMenu.active span::before,
  .header .btnMenu.active span::after {
    top: 0;
  }

  .header .btnMenu.active span::before {
    transform: rotate(45deg);
  }

  .header .btnMenu.active span::after {
    transform: rotate(-45deg);
  }
}

/*----------------------------------------------------
++05 rest
----------------------------------------------------*/
.mv {
  background: linear-gradient(#fff 90%, transparent 10%);
}

.mv_bg {
  background: url("../img/reader/mv_img.png") top right no-repeat;
  background-size: 687px auto;
  padding: 56px 0 133px;
}

@media screen and (max-width: 1132px) {
  .mv_bg {
    background-size: 58vw auto;
  }
}

@media screen and (max-width: 768px) {
  .mv_bg {
    text-align: center;
    padding: 0 0 240px 0;
    background-size: 280px auto;
    background-position: center top 94%;
  }
}

.mv_inner {
  width: 1132px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.mv_txt01 {
  color: #0098ad;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 1132px) {
  .mv_txt01 {
    font-size: 1.7vw;
  }
}

@media screen and (max-width: 768px) {
  .mv_txt01 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.mv_ttl {
  font-size: 6.1rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 32px;
}

@media screen and (max-width: 1132px) {
  .mv_ttl {
    font-size: 5.4vw;
  }
}

@media screen and (max-width: 768px) {
  .mv_ttl {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

.mv_subttl {
  max-width: 412px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  background: url("../img/reader/mv_subttl_bg.png") no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 1132px) {
  .mv_subttl {
    font-size: 1.4vw;
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .mv_subttl {
    width: 90%;
    background-size: auto 100%;
    background-position: center;
    margin: 0 auto;
    font-size: 1.6rem;
  }
}

.mv_green {
  padding: 50px 0;
  background: url("../img/reader/mv_bg01.png") top left repeat-x, url("../img/reader/mv_bg02.png") bottom left repeat-x;
  background-size: 1366px auto, 1366px auto;
  position: relative;
  top: -45px;
}

@media screen and (max-width: 1132px) {
  .mv_green {
    background-size: 100% auto, 100% auto;
  }
}

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

.mv_green p {
  color: #fff;
  font-size: 3.4rem;
  letter-spacing: -0.07em;
  text-align: center;
  padding: 56px 0 38px;
  background-color: #0098ad;
}

@media screen and (max-width: 1132px) {
  .mv_green p {
    font-size: 2.8vw;
  }
}

@media screen and (max-width: 768px) {
  .mv_green p {
    font-size: 1.6rem;
    padding: 20px 0;
  }
}

.features {
  padding: 30px 0 22px 0;
  padding: 100px 0 180px;
  margin-top: -75px;
}

.features_inner {
  width: 1200px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.features_bgImg {
  padding-bottom: 60px;
  background: url("../img/reader/features_img.png") top 34px right no-repeat;
  background-size: 473px auto;
}

@media screen and (max-width: 1100px) {
  .features_bgImg {
    background-size: 300px auto;
    background-position: top 40px right;
  }
}

@media screen and (max-width: 768px) {
  .features_bgImg {
    padding-bottom: 450px;
    background-position: center top 90%;
  }
}

.features_list {
  counter-reset: sample;
  list-style: none;
  margin: 44px 0 0 40px;
}

@media screen and (max-width: 1100px) {
  .features_list {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .features_list {
    width: 500px;
    max-width: 100%;
    margin: 44px auto 0;
  }
}

.features_item {
  padding-left: 44px;
  position: relative;
}

.features_item:not(:last-child) {
  margin-bottom: 30px;
}

.features_item::before {
  position: absolute;
  top: -20px;
  left: 0;
  counter-increment: sample;
  content: counter(sample) ".";
  margin-right: 7px;
  color: #0098ad;
  font-family: "Poppins", sans-serif;
  font-size: 4.6rem;
  font-weight: 500;
  font-style: italic;
}

@media screen and (max-width: 1100px) {
  .features_item {
    padding-left: 30px;
  }

  .features_item::before {
    top: -12px;
    font-size: 3rem;
  }
}

.features_item_ttl {
  color: #0098ad;
  font-size: 2.6rem;
  font-weight: bold;
}

@media screen and (max-width: 1100px) {
  .features_item_ttl {
    font-size: 1.8rem;
  }
}

.features_item_txt {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 1100px) {
  .features_item_txt {
    font-size: 1.3rem;
  }
}

.points {
  padding: 108px 0 0 0;
  background: url("../img/reader/point_bg.png") left top repeat-x;
  background-size: 1366px auto;
  padding-top: 183px;
  margin-top: -75px;
}

@media screen and (max-width: 768px) {
  .points {
    padding: 40px 0;
    background-size: 100% auto;
  }
}

.points_inner {
  background-color: #fff;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .points_inner {
    padding-top: 40px;
  }
}

.points_list {
  display: flex;
  flex-wrap: wrap;
  counter-reset: sample;
  list-style: none;
  margin-top: 34px;
}

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

.points_item_ttlArea {
  min-height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}

.points_item {
  width: 25%;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .points_item {
    width: 50%;
  }
}

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

  .points_item:not(:last-child) {
    margin-bottom: 10px;
  }
}

.points_item::before {
  position: absolute;
  bottom: -20px;
  left: 10px;
  z-index: 1;
  counter-increment: sample;
  content: "0" counter(sample);
  color: #43c9de70;
  font-family: "Poppins", sans-serif;
  font-size: 5.2rem;
  font-weight: 500;
}

.points_item.points_item_01 img {
  width: 290px;
}

.points_item.points_item_02 .points_item_img {
  padding-bottom: 34px;
}

.points_item.points_item_02 img {
  width: 297px;
}

.points_item.points_item_03 .points_item_img {
  padding-bottom: 12px;
}

.points_item.points_item_03 img {
  width: 266px;
}

.points_item.points_item_04 .points_item_img {
  padding-bottom: 16px;
}

.points_item.points_item_04 img {
  width: 180px;
}

.points_item.points_item_05 img {
  width: 288px;
}

.points_item.points_item_06 .points_item_img {
  padding-bottom: 0px;
}

.points_item.points_item_06 img {
  width: 294px;
}

.points_item.points_item_07 .points_item_img {
  padding-bottom: 0px;
}

.points_item.points_item_07 img {
  width: 293px;
}

.points_item.points_item_08 .points_item_img {
  padding-bottom: 56px;
}

.points_item.points_item_08 img {
  width: 223px;
}

.points_item:not(:nth-child(4n)) {
  border-right: 1px solid #fff;
}

.points_item_ttl {
  position: relative;
  z-index: 2;
  font-size: 15pt;
}

.points_item_ttl span {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .points_item_ttl {
    font-size: 1.6rem;
  }
}

.points_item_img {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.points_item_img img {
  height: auto;
}

.points_item_ttlArea {
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #0098ad;
}

.points_note {
  font-size: 1.2rem;
  line-height: 1.7;
  padding: 22px 0 0 24px;
}

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

/*# sourceMappingURL=style.css.map */

.schema-faq-section {
  margin: 30px auto;
  width: 70%;
}

.schema-faq-section .schema-faq-question {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  padding-left: 5rem;
  position: relative
}

.schema-faq-section .schema-faq-question:before {
  color: #0098ad;
  content: "Q";
  font-size: 3rem;
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  text-align: center;
  top: 0;
  width: 3rem
}

.schema-faq-section .schema-faq-question+.schema-faq-answer {
  margin-top: 1.6rem
}

.schema-faq-section .schema-faq-answer {
  padding-left: 5rem;
  position: relative
}

.schema-faq-section .schema-faq-answer:before {
  color: #555;
  content: "A";
  font-size: 3rem;
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  text-align: center;
  top: 0;
  width: 3rem
}

.schema-faq-section+.schema-faq-section {
  margin-top: 5rem
}

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

  .schema-faq-section .schema-faq-answer {
    max-width: 100%
  }

  .schema-faq-section .schema-faq-question,
  .schema-faq-section .schema-faq-answer {
    font-size: 1.4rem;
  }

  .schema-faq-section .schema-faq-question:before,
  .schema-faq-section .schema-faq-answer:before {
    font-size: 1.8rem;
  }
}

.movie,
#specifications,
#download,
#faq,
#news,
#contact {
  padding-top: 50px;
  margin-top: -75px;
}

@media screen and (max-width: 768px) {

  .movie .spec_inner,
  #specifications .spec_inner,
  #download .spec_inner,
  #news .spec_inner,
  #contact .spec_inner {
    padding-top: 30px;
  }
}

iframe {
  display: block;
  margin: 0 auto;
}

.txt_center {
  margin: 20px auto;
  text-align: center;
}

.txt_center small {
  font-size: 1.2rem;
}

.txt_center a {
  text-decoration: underline;
}

.spec_inner {
  margin: 20px auto 20px;
  padding: 25px 15px;
  width: 1200px;
  max-width: 100%;
  background-color: #fff;
}

table.spec_table {
  margin: 40px auto 20px;
  width: 75%;
  border-top: 1px solid #aaa;
}

table.spec_table tr {
  border-bottom: 1px solid #aaa;
}

table.spec_table th,
table.spec_table td {
  padding: 15px 10px;
  font-size: 1.4rem;
  vertical-align: middle;
}

.news_table {
  margin: 0 auto;
  width: 75%;
  border: none !important;
}

.news_table th {
  width: 35%;
}

table.contact_table {
  margin: 0 auto 20px;
  width: 75%;
}

table.contact_table th,
table.contact_table td {
  padding: 20px;
  font-size: 16px;
}

table.contact_table th {
  padding-top: 30px;
  font-weight: bold;
  width: 25%;
  vertical-align: top;
}

table.contact_table td:first-of-type {
  width: 80px;
  text-align: center;
  vertical-align: middle;
}

table.contact_table td .must {
  padding: 3px 8px;
  border-radius: 2px;
  background: #000;
  font-size: 12px;
  color: #fff;
}

input {
  padding: 3px;
  width: 100%;
  height: 40px;
  line-height: 40px;
}

textarea {
  padding: 3px;
  width: 100%;
}

select {
  padding: 3px;
  height: 40px;
  border-radius: 3px;
  font-size: 18px !important;
}

input[type="radio"] {
  margin: 0 5px 0 10px;
  border: none;
  top: -2px;
  width: 15px;
  height: 15px;
}

.mwform-radio-field label {
  display: block;
  height: 20px;
  font-size: 16px;
  text-align: left;
}

.mwform-radio-field label input {
  float: left;
}

.mwform-radio-field label .mwform-radio-field-text {
  float: left;
}

.mwform-checkbox-field label {
  float: left;
  display: inline-block;
  margin-right: 20px;
}

input[type="checkbox"] {
  margin: 0 5px 0 10px;
  border: none;
  top: -2px;
  width: 15px;
  height: 15px;
}

.mwform-checkbox-field label {
  width: 100%;
  height: 25px;
  font-size: 16px;
  text-align: left;
  line-height: 1;
}

.mwform-checkbox-field label input {
  float: left;
}

.mwform-checkbox-field label .mwform-checkbox-field-text {
  float: left;
}

input[type="text"],
input[type="email"],
input[type="url"] {
  height: 40px;
  font-size: 18px;
}

input[type="number"] {
  width: 80px;
  height: 40px;
  font-size: 18px;
}

.mwform-tel-field {
  width: 100%;
  border: none;
  text-align: left;
}

.mwform-tel-field input {
  width: 80px;
  height: 40px;
  font-size: 18px;
}

.submit {
  margin: 0 auto;
  text-align: center;
}

.submit input {
  margin: 20px auto;
  padding: 10px 0 20px;
  width: 350px;
  height: 60px;
  border: none;
  background: #ffa400;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.mw_wp_form_confirm .submit input {
  margin: 20px auto;
  padding: 10px 0 20px;
  width: 350px;
  height: 60px;
  border: none;
  background: #ffa400;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.mw_wp_form_confirm .back input {
  width: 200px;
  height: 50px !important;
  border: none;
  background: #888;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
}

.back {
  margin: 0 auto 30px;
  text-align: center;
}

.thanks {
  margin: 0 auto 40px;
  padding: 20px 20px 10px;
  border: 1px solid #000;
  font-size: 16px;
  text-align: center;
}

.error {
  display: block;
  font-size: 16px !important;
  color: #f00;
}

@media screen and (max-width: 768px) {
  iframe {
    width: 100%;
    height: 300px;
  }

  .features_inner {
    padding: 0;
  }

  #features .features_inner {
    padding: 0 20px;
  }

  table.spec_table {
    width: 100%;
  }

  table.spec_table th,
  table.spec_table td {
    padding: 10px 5px;
    font-size: 1.2rem;
  }

  .news_table,
  table.contact_table {
    width: 100%;
  }

  table.contact_table tr {
    border-bottom: 1px solid #ccc;
  }

  table.contact_table th,
  table.contact_table td {
    float: left;
    border: none;
    padding: 4% 3%;
  }

  table.contact_table th {
    width: 65%;
    background: none;
    text-align: left;
  }

  table.contact_table th.td_center {
    width: 100%;
    text-align: center;
  }

  table.contact_table td:first-of-type {
    width: 20%;
  }

  table.contact_table td:nth-of-type(2) {
    width: 100%;
    text-align: center;
  }

  .txt_center small {
    font-size: 1rem;
  }

  input {
    width: 100%;
    border: 1px solid #aaa;
  }

  input[type="text"],
  input[type="email"],
  input[type="url"] {
    width: 100%;
  }

  textarea {
    border: 1px solid #aaa;
  }

  .submit {
    margin: 0 auto;
    text-align: center;
  }

  .submit input {
    width: 100%;
  }

  .mw_wp_form_confirm .submit input {
    width: 70%;
  }

  .mw_wp_form_confirm .back input {
    width: 50%;
    font-size: 14px;
  }

  .error {
    font-size: 16px !important;
  }

}