@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.none_contents {
  display: none !important;
}

@media screen and (min-width: 766px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .spNone {
    display: none !important;
  }
}
@media screen and (min-width:768px) and (max-width:961px) {
  .tabNone {
    display: none !important;
  }
}
html {
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  color: #3E3E3E;
  line-height: 1.1;
}

.font-01 {
  font-family: "Oswald", sans-serif;
}

.font-02 {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  color: #3E3E3E;
}
a:hover {
  opacity: 0.8;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

body.no-scroll {
  overflow: hidden;
}

/*flexbox 共通*/
.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*色*/
.color01 {
  color: #D2302F;
}

/*ヘッダー*/
header {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transition: all 2s ease;
  z-index: 99;
  height: 100px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  header {
    padding: 0 20px;
    height: 75px;
  }
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: center;
}
header .header_inner .logo {
  width: 40%;
  max-width: 320px;
  transition: all 2s ease;
}
@media screen and (max-width: 767px) {
  header .header_inner .logo {
    width: 50%;
    max-width: inherit;
  }
}
@media screen and (max-width: 767px) {
  header .header_inner nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(238, 117, 32, 0.95);
    transition: all 0.4s;
    z-index: 99;
    padding-top: 100px;
  }
  header .header_inner nav.active {
    right: 0;
  }
  header .header_inner nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  header .header_inner nav ul li a {
    color: #fff;
    font-size: 24px;
  }
}
header .header_inner nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
header .header_inner nav ul li {
  font-size: 20px;
  font-weight: bold;
}
header.fixed {
  background: #fff;
  height: 70px;
}
@media screen and (max-width: 767px) {
  header.fixed {
    height: 45px;
  }
}
header.fixed .header_inner .logo {
  width: 20%;
  transition: all 2s ease;
}
@media screen and (max-width: 767px) {
  header.fixed .header_inner .logo {
    width: 50%;
    max-width: inherit;
  }
}
header.fixed .header_inner .h_button a {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 5px;
  transition: all 2s ease;
}
@media screen and (max-width: 767px) {
  header.fixed .header_inner .h_button a {
    font-size: 13px;
    padding: 10px 5px;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    z-index: 100;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #3E3E3E;
    transition: all 0.3s;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 11px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
  .hamburger.active span {
    background-color: #fff;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}

/*共通タイトル*/
.h_title {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  color: #EB6120;
  position: relative;
  margin: 0 0 20px;
  font-weight: bold;
  padding: 0 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .h_title {
    font-size: 24px;
    margin: 0 0 15px;
    padding: 0 0 15px;
  }
}
.h_title:before {
  content: "";
  width: 40px;
  height: 5px;
  background: #EB6120;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.h_sub_title {
  font-size: 40px;
  font-weight: 900;
  margin: 0 0 30px;
  text-align: center;
  line-height: 52px;
}
@media screen and (max-width: 767px) {
  .h_sub_title {
    font-size: 22px;
    margin: 0 0 20px;
    line-height: 36px;
  }
}

/*共通ボタン*/
.text-button01 {
  border: 2px solid #000000;
  border-radius: 40px;
  max-width: 325px;
}
@media screen and (max-width: 767px) {
  .text-button01 {
    width: 80%;
    margin: 0 auto;
    max-width: inherit;
  }
}
.text-button01 a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 40px 20px 0;
}
@media screen and (max-width: 767px) {
  .text-button01 a {
    font-size: 16px;
    padding: 15px 0;
  }
}
.text-button01 a:before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: solid 2px #EE7520;
  border-right: solid 2px #EE7520;
  position: absolute;
  right: 35px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

.text-button02 {
  border: 2px solid #EE7520;
  background: #EE7520;
  border-radius: 40px;
  max-width: 325px;
}
.text-button02 a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .text-button02 a {
    font-size: 16px;
    padding: 15px 0;
  }
}

/*mv area*/
main {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  main {
    padding: 85px 0 0;
  }
}
main #mv_area {
  background: url("../img/fv_bg.png") no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  padding: 65px 0;
}
@media screen and (max-width: 767px) {
  main #mv_area {
    padding: 50px 0;
  }
}
main #mv_area .mv_img01 {
  width: 50%;
  max-width: 260px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  main #mv_area .mv_img01 {
    width: 40%;
  }
}
main #mv_area .mv_illust {
  width: 50%;
  max-width: 84px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  main #mv_area .mv_illust {
    width: 20%;
    max-width: inherit;
  }
}
main #mv_area h2 {
  width: 50%;
  max-width: 825px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main #mv_area h2 {
    width: 90%;
  }
}
main #new_release {
  position: relative;
}
main #new_release:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 7, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
main #new_release .announce_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 3;
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 767px) {
  main #new_release .announce_box {
    height: 65px;
    width: 30%;
  }
}
main #new_release .announce_box .en {
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #EE7520;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #new_release .announce_box .en {
    border-radius: 0;
  }
}
main #new_release .announce_box .en:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 110%;
  border: 1px solid #EE7520;
  height: 110%;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  main #new_release .announce_box .en:before {
    border-radius: 0;
    height: 75px;
    width: calc(100% + 10px);
  }
}
main #new_release .announce_box h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  main #new_release .announce_box h2 {
    font-size: 16px;
  }
}
main #new_release .announce_box h2 span {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  main #new_release .announce_box h2 span {
    font-size: 20px;
  }
}
main #new_release .Asterisk {
  position: absolute;
  right: 20px;
  bottom: 25px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
}
main #new_release .inner_box {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  main #new_release .inner_box {
    flex-flow: column;
  }
}
main #new_release .inner_box .img-box {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #new_release .inner_box .img-box {
    width: 100%;
  }
}
main #new_release .inner_box .img-box .sheet {
  position: absolute;
  width: 58%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
main #new_release .inner_box .img-box .sheet h3 {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 35px;
}
@media screen and (max-width: 767px) {
  main #new_release .inner_box .img-box .sheet h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
main #new_release .inner_box .img-box .sheet .js-product-slider {
  width: 100%;
  margin-bottom: 10px;
}
main #new_release .inner_box .img-box .sheet .js-product-slider li img {
  width: 100%;
  height: auto;
  display: block;
}
main #new_release .caution {
  position: absolute;
  bottom: 15px;
  right: 5px;
  font-size: 12px;
  color: #fff;
  z-index: 10;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  main #new_release .caution {
    font-size: 10px;
    bottom: 5px;
  }
}
main #main-content {
  margin: 100px auto 0;
  /*----------------------------
  ABOUT
  ----------------------------*/
  /*----------------------------
  HOW-TO
  ----------------------------*/
  /*----------------------------
  explanation
  ----------------------------*/
  /*----------------------------
  feature
  ----------------------------*/
  /*----------------------------
  Voice
  ----------------------------*/
  /*----------------------------
  Spec
  ----------------------------*/
  /*----------------------------
  faq
  ----------------------------*/
}
@media screen and (max-width: 767px) {
  main #main-content {
    margin: 50px auto 0;
  }
}
main #main-content #about {
  margin: 0 0 100px;
}
@media screen and (max-width: 767px) {
  main #main-content #about {
    padding: 0 20px;
    margin: 0 0 50px;
  }
}
main #main-content #about p.text01 {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  margin: 0 auto 70px;
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  main #main-content #about p.text01 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 35px;
  }
}
main #main-content #about p.text01 span {
  color: #EB6120;
}
main #main-content #about .about_box {
  max-width: 1200px;
  background: rgba(255, 138, 55, 0.1);
  border-radius: 25px;
  padding: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main #main-content #about .about_box {
    padding: 25px 15px;
  }
}
main #main-content #about .about_box .flex-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  main #main-content #about .about_box .flex-box {
    flex-flow: column;
  }
}
main #main-content #about .about_box .left-box {
  width: 48.5%;
  background: #FFF9F9;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  main #main-content #about .about_box .left-box {
    width: 100%;
  }
}
main #main-content #about .about_box .left-box img {
  width: 85%;
}
main #main-content #about .about_box .right-box {
  flex: 1;
}
@media screen and (max-width: 767px) {
  main #main-content #about .about_box .right-box {
    width: 100%;
  }
}
main #main-content #about .about_box .right-box ul {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 20px;
}
main #main-content #about .about_box .right-box ul li {
  display: flex;
  justify-content: flex-start;
  background: #FFF9F9;
  border-radius: 20px;
}
main #main-content #about .about_box .right-box ul li img {
  width: 46%;
}
main #main-content #about .about_box .right-box ul li p {
  font-size: 20px;
  font-weight: bold;
  line-height: 35px;
  padding-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main #main-content #about .about_box .right-box ul li p {
    font-size: 14px;
    line-height: 21px;
  }
}
main #main-content #about .about_box .right-box .Asterisk {
  font-size: 14px;
  font-weight: bold;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  main #main-content #about .about_box .right-box .Asterisk {
    font-size: 9px;
    padding-top: 10px;
    line-height: 1.5;
  }
}
main #main-content #how-to {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to {
    padding: 25px 20px;
    margin-bottom: 50px;
  }
}
main #main-content #how-to .flex-box {
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box {
    flex-flow: column;
  }
}
main #main-content #how-to .flex-box .left-box {
  width: 50%;
  max-width: 410px;
  margin-right: 70px;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box .left-box {
    width: 100%;
    order: 2;
    max-width: inherit;
    margin: 0 auto;
    text-align: center;
  }
}
main #main-content #how-to .flex-box .left-box video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 750px;
  border-radius: 25px;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box .left-box video {
    margin: 0 auto;
    width: 100%;
    -o-object-position: center;
       object-position: center;
    height: 500px;
  }
}
main #main-content #how-to .flex-box .right-box {
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box .right-box {
    width: 100%;
    order: 1;
    margin: 0 0 20px;
  }
}
main #main-content #how-to .flex-box .right-box h2.h_title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box .right-box h2.h_title {
    text-align: center;
  }
}
main #main-content #how-to .flex-box .right-box h2.h_title:before {
  content: "";
  left: 0;
  right: inherit;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box .right-box h2.h_title:before {
    right: 0;
  }
}
main #main-content #how-to .flex-box .right-box h3.h_sub_title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box .right-box h3.h_sub_title {
    text-align: center;
  }
}
main #main-content #how-to .flex-box .right-box p {
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box .right-box p {
    font-size: 14px;
    line-height: 24px;
  }
}
main #main-content #how-to .flex-box .right-box .Asterisk {
  font-size: 18px;
  line-height: 34px;
  font-weight: bold;
  margin: 0 0 45px;
}
@media screen and (max-width: 767px) {
  main #main-content #how-to .flex-box .right-box .Asterisk {
    font-size: 10px;
    line-height: 20px;
    margin: 0 0 20px;
  }
}
main #main-content #how-to .flex-box .right-box .Asterisk img {
  margin-top: 10px;
}
main #main-content #explanation .title-text {
  background: url("../img/explanation_bg01.png") no-repeat;
  width: 100%;
  background-size: cover;
  padding: 65px 0;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .title-text {
    padding: 30px 20px;
  }
}
main #main-content #explanation .title-text h2 {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  line-height: 60px;
  color: #EE7520;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .title-text h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
main #main-content #explanation .inner_box {
  background: #FFF4EB;
  padding: 65px 0 90px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box {
    padding: 30px 20px 45px;
  }
}
main #main-content #explanation .inner_box .comment_box {
  max-width: 1200px;
  margin: 0 auto;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box {
  padding: 0 9%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box {
    padding: 0;
  }
}
main #main-content #explanation .inner_box .comment_box .comment_text_box h3 {
  background: #161616;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  max-width: 610px;
  margin: 0 auto 65px;
  position: relative;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box h3:before {
  content: "";
  background: url(../img/bubble.svg) no-repeat;
  width: 57px;
  height: 52px;
  position: absolute;
  left: 30px;
  bottom: -33px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box h3:before {
    width: 42px;
    height: 38px;
    left: 25px;
    bottom: -24px;
    background-size: cover;
  }
}
main #main-content #explanation .inner_box .comment_box .comment_text_box h3 span {
  text-align: center;
  margin: 0 auto;
  padding: 23px 0;
  font-size: 30px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box h3 span {
    font-size: 18px;
    padding: 15px 0;
  }
}
main #main-content #explanation .inner_box .comment_box .comment_text_box h3 span.sub {
  position: absolute;
  top: -1.5em;
  left: 2em;
  padding: 8px 15px;
  font-size: 15px;
  background: #fff;
  color: #000;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box h3 span.sub {
    left: 1.2em;
  }
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 20px;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text:last-child {
  margin-bottom: 0;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text.pattern02 {
  justify-content: flex-end;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text.pattern02 .illust {
  order: 2;
  margin-right: inherit;
  margin-left: 25px;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text.pattern02 .text .text_bg:before {
  left: -10px;
  bottom: -7px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text.pattern02 .text .text_bg:before {
    left: -5px;
    bottom: -4px;
  }
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text.pattern02 .text .text_bg:after {
  left: 100%;
  margin-top: 0;
  border: 7px solid transparent;
  border-left: 7px solid #fff;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .illust {
  width: 10%;
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .illust {
    width: 20%;
    margin-right: 15px;
  }
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .text {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .text {
    flex: 1;
  }
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .text .text_bg {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  background-color: #fff;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .text .text_bg:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #EB6120;
  position: absolute;
  right: -10px;
  bottom: -7px;
  z-index: -1;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .text .text_bg:before {
    right: -5px;
    bottom: -4px;
  }
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .text .text_bg:after {
  content: "";
  position: absolute;
  top: 25%;
  left: -13px;
  margin-top: 0px;
  border: 7px solid transparent;
  border-right: 7px solid #fff;
}
main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .text p {
  font-size: 25px;
  line-height: 42px;
  font-weight: bold;
  padding: 15px 24px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .comment_text_box .comment_text .text p {
    font-size: 13px;
    line-height: 22px;
    padding: 10px 10px;
  }
}
main #main-content #explanation .inner_box .comment_box .graph_box {
  background: rgba(255, 138, 55, 0.1);
  border-radius: 25px;
  padding: 35px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .graph_box {
    padding: 30px 15px;
    flex-flow: column;
    margin: 30px auto;
  }
}
main #main-content #explanation .inner_box .comment_box .graph_box .left-box {
  width: 51%;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .graph_box .left-box {
    width: 100%;
    margin: 0 auto 35px;
  }
}
main #main-content #explanation .inner_box .comment_box .graph_box .right-box {
  flex: 1;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .graph_box .right-box {
    width: 100%;
  }
}
main #main-content #explanation .inner_box .comment_box .graph_box .right-box p {
  font-size: 25px;
  line-height: 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main #main-content #explanation .inner_box .comment_box .graph_box .right-box p {
    font-size: 16px;
    line-height: 26px;
  }
}
main #main-content #explanation .inner_box .comment_box .graph_box .right-box p span {
  color: #EB6120;
}
main #main-content #feature {
  background: #EE7520;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  main #main-content #feature {
    padding: 50px 20px;
  }
}
main #main-content #feature .feature_box01 {
  margin: 0 0 50px;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box01 {
    margin: 0 0 25px;
  }
}
main #main-content #feature .feature_box01 h2 {
  text-align: center;
  font-size: 40px;
  line-height: 54px;
  font-weight: 900;
  margin: 0 0 85px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box01 h2 {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 34px;
  }
}
main #main-content #feature .feature_box01 .feature_img_01 {
  width: 40%;
  margin: 0 auto 20px;
  max-width: 655px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box01 .feature_img_01 {
    width: 80%;
  }
}
main #main-content #feature .feature_box01 .feature_img_01:before {
  content: "";
  background: url(../img/icon_01.png) no-repeat;
  width: 105px;
  height: 82px;
  position: absolute;
  left: 0;
  top: 2px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box01 .feature_img_01:before {
    width: 70px;
    height: 57px;
    top: -15px;
  }
}
main #main-content #feature .feature_box01 .Asterisk {
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 35px;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box01 .Asterisk {
    font-size: 14px;
    line-height: 22px;
  }
}
main #main-content #feature .feature_box02 {
  background: #fff;
  border-radius: 25px;
  padding: 60px 120px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 {
    padding: 30px 15px;
  }
}
main #main-content #feature .feature_box02 ul {
  display: flex;
  justify-content: center;
  gap: 50px 6.5%;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul {
    justify-content: flex-start;
    gap: 15px 4%;
  }
}
main #main-content #feature .feature_box02 ul li {
  width: 29%;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul li {
    width: 48%;
  }
}
main #main-content #feature .feature_box02 ul li .img-box {
  position: relative;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul li .img-box {
    margin: 0 0 10px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 170px;
  }
}
main #main-content #feature .feature_box02 ul li .img-box img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul li .img-box img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 170px;
  }
}
main #main-content #feature .feature_box02 ul li .img-box p.number {
  width: 64px;
  height: 64px;
  background: #A9DAE6;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  left: 0;
  display: flex;
  top: 0;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 10px 0 10px 0;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul li .img-box p.number {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
main #main-content #feature .feature_box02 ul li .img-box video {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul li .img-box video {
    -o-object-fit: cover;
       object-fit: cover;
    height: 170px;
  }
}
main #main-content #feature .feature_box02 ul li .img-box .icon {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  background: #EB6120;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -25px;
  bottom: -15px;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul li .img-box .icon {
    width: 45px;
    height: 45px;
    right: -20px;
    bottom: -10px;
  }
}
main #main-content #feature .feature_box02 ul li .img-box .icon p {
  font-size: 11px;
  line-height: 14px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul li .img-box .icon p {
    font-size: 8px;
    line-height: 12px;
  }
}
main #main-content #feature .feature_box02 ul li .text01 {
  font-size: 18px;
  text-align: center;
  line-height: 32px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box02 ul li .text01 {
    font-size: 13px;
    line-height: 24px;
    text-align: left;
  }
}
main #main-content #feature .feature_box03 {
  display: flex;
  justify-content: center;
  align-items: center;
}
main #main-content #feature .feature_box03 p {
  font-size: 30px;
  margin-right: 85px;
  color: #fff;
  position: relative;
  line-height: 1.8;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box03 p {
    font-size: 13px;
    margin-right: 50px;
  }
}
main #main-content #feature .feature_box03 .thumbnail {
  max-width: 325px;
  width: 20%;
  box-shadow: 6px 6px 2px 0px #d15e0c;
  border-radius: 10px;
  cursor: pointer;
}
main #main-content #feature .feature_box03 .thumbnail:hover {
  margin: 4px -4px -4px 4px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  main #main-content #feature .feature_box03 .thumbnail {
    width: 45%;
  }
}
main #main-content #Voice {
  background: url("../img/voice_bg.png") no-repeat;
  width: 100%;
  padding: 100px 0 100px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice {
    padding: 50px 20px 100px;
  }
}
main #main-content #Voice .Asterisk {
  text-align: center;
  font-size: 15px;
  line-height: 19px;
  margin: 0 0 50px;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .Asterisk {
    text-align: left;
    font-size: 11px;
    line-height: 16px;
  }
}
main #main-content #Voice .voice_box {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box {
    flex-flow: column;
  }
}
main #main-content #Voice .voice_box .v_box {
  width: 49%;
  background: #fff;
  border-radius: 25px;
  padding: 50px;
  position: relative;
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box {
    padding: 30px 15px 45px;
    width: 100%;
    margin-bottom: 50px;
  }
  main #main-content #Voice .voice_box .v_box:last-child {
    margin-bottom: 0;
  }
}
main #main-content #Voice .voice_box .v_box h4 {
  position: relative;
  text-align: center;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box h4 {
    margin: 0 0 20px;
  }
}
main #main-content #Voice .voice_box .v_box h4 span {
  font-size: 30px;
  text-align: center;
  font-weight: 900;
  background: #fff;
  z-index: 1;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box h4 span {
    font-size: 20px;
  }
}
main #main-content #Voice .voice_box .v_box h4:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box h4:before {
    height: 1px;
  }
}
main #main-content #Voice .voice_box .v_box ul {
  position: relative;
  z-index: 1;
}
main #main-content #Voice .voice_box .v_box ul li {
  padding-left: 50px;
  position: relative;
  font-weight: bold;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box ul li {
    padding-left: 20px;
  }
}
main #main-content #Voice .voice_box .v_box ul li:last-child {
  margin-bottom: 0;
}
main #main-content #Voice .voice_box .v_box ul li:before {
  content: "";
  width: 19px;
  height: 19px;
  background: #EE7520;
  position: absolute;
  left: 15px;
  top: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box ul li:before {
    width: 8px;
    height: 8px;
    left: 5px;
  }
}
main #main-content #Voice .voice_box .v_box ul li .text01 {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box ul li .text01 {
    font-size: 13px;
    line-height: 22px;
  }
}
main #main-content #Voice .voice_box .v_box ul li .text02 {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box ul li .text02 {
    font-size: 11px;
  }
}
main #main-content #Voice .voice_box .v_box .voice_illust01 {
  position: absolute;
  max-width: 223px;
  width: 33%;
  z-index: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box .voice_illust01 {
    width: 20%;
  }
}
main #main-content #Voice .voice_box .v_box .voice_illust02 {
  position: absolute;
  max-width: 138px;
  width: 21%;
  z-index: 0;
  right: 20px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box .voice_illust02 {
    width: 14%;
  }
}
main #main-content #Voice .voice_box .v_box .Asterisk {
  font-size: 12px;
  position: absolute;
  left: 0;
  right: 30px;
  margin: auto;
  bottom: -35px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main #main-content #Voice .voice_box .v_box .Asterisk {
    font-size: 11px;
    bottom: -50px;
  }
}
main #main-content #Spec {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  main #main-content #Spec {
    padding: 50px 20px;
  }
}
main #main-content #Spec .spec_box01 {
  max-width: 1400px;
  margin: 50px auto;
}
main #main-content #Spec .spec_box01 h4 {
  font-size: 30px;
  text-align: center;
  font-weight: 900;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  main #main-content #Spec .spec_box01 h4 {
    font-size: 20px;
    margin: 0 0 15px;
  }
}
main #main-content #Spec .spec_box01 .table_box {
  margin: 0 0 35px;
}
@media screen and (max-width: 767px) {
  main #main-content #Spec .spec_box01 .table_box {
    overflow-x: scroll;
    padding: 10px 0;
  }
}
main #main-content #Spec .spec_box01 .table_box table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  main #main-content #Spec .spec_box01 .table_box table {
    width: 1400px;
  }
}
main #main-content #Spec .spec_box01 .table_box table th, main #main-content #Spec .spec_box01 .table_box table td {
  border: 1px solid #ccc;
  padding: 12px 8px;
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
}
main #main-content #Spec .spec_box01 .table_box table thead th {
  font-weight: bold;
}
main #main-content #Spec .spec_box01 .table_box table tbody th {
  font-weight: bold;
}
main #main-content #Spec .spec_box01 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main #main-content #Spec .spec_box01 ul {
    flex-flow: column;
  }
}
main #main-content #Spec .spec_box01 ul li {
  width: 40%;
}
@media screen and (max-width: 767px) {
  main #main-content #Spec .spec_box01 ul li {
    width: 100%;
  }
}
main #main-content #Spec .spec_box01 ul li:first-child {
  max-width: 325px;
}
main #main-content #Spec .spec_box01 ul li:last-child {
  max-width: 325px;
}
main #main-content #Spec .spec_box01 ul li .text-button01 {
  width: 100%;
}
main #main-content #Spec .spec_box01 ul li .text-button02 {
  width: 100%;
}
main #main-content #faq {
  background: #F7F7F7;
  padding: 50px 0 100px;
}
@media screen and (max-width: 767px) {
  main #main-content #faq {
    padding: 25px 20px 50px;
  }
}
main #main-content #faq .faq-container {
  max-width: 1060px;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  main #main-content #faq .faq-container {
    margin: 35px auto 0;
  }
}

/*footer*/
footer {
  position: relative;
}
footer ul.footerbg {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer ul.footerbg {
    flex-flow: column;
  }
}
footer ul.footerbg li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  footer ul.footerbg li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer ul.footerbg img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 200px;
  }
}
footer .text-contents {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  max-width: 610px;
  width: 50%;
  background: rgba(7, 7, 7, 0.6);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .text-contents {
    width: 95%;
    padding: 0 15px;
  }
}
footer .text-contents h2 {
  color: #fff;
  line-height: 45px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 50px;
}
@media screen and (max-width: 767px) {
  footer .text-contents h2 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 25px;
  }
}
footer .text-contents .tell {
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  footer .text-contents .tell {
    font-size: 26px;
    margin: 0 0 15px;
  }
}
footer .text-contents .tell span {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  footer .text-contents .tell span {
    font-size: 38px;
  }
}
footer .text-contents .tell span a {
  color: #fff;
}
footer .text-contents .time {
  font-size: 20px;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  footer .text-contents .time {
    font-size: 14px;
    margin: 0 0 25px;
  }
}
footer .text-contents .text-button02 {
  max-width: 385px;
  width: 100%;
  background: #EB6120;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  footer .text-contents .text-button02 {
    margin: 0 0 30px;
  }
}
footer .text-contents .text-button02 a {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  footer .text-contents .text-button02 a {
    font-size: 14px;
  }
}
footer .text-contents p.copyright {
  font-size: 12px;
}

/*footer end*/
/*モーダル*/
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  padding: 10px;
}
.modal .modal-content .video-wrapper {
  position: relative;
  width: 100%;
}
.modal .modal-content .video-wrapper #videoPlayer {
  width: 100%;
  height: auto;
  display: block;
}
.modal .modal-content .modal-close {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/*----------------------------
faq
----------------------------*/
.faq-container {
  width: 100%;
}
.faq-list {
  border-bottom: 1px solid #CCCCCC;
}

.faq-list:not(:first-child) {
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .faq-list:not(:first-child) {
    margin-top: 0px;
  }
}

.faq-title {
  cursor: pointer;
  padding: 25px 40px 25px 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq-title {
    padding: 15px 20px 15px 30px;
  }
}
.faq-title p {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .faq-title p {
    font-size: 14px;
    line-height: 20px;
  }
}
.faq-title p:before {
  content: "Q.";
  font-weight: bold;
  color: #EE7520;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  position: absolute;
  left: -37px;
  top: -2px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .faq-title p:before {
    font-size: 20px;
    left: -28px;
  }
}

.faq-title:after {
  position: absolute;
  display: block;
  content: "";
  top: 35%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #36240d;
  border-right: 2px solid #36240d;
  transform: rotate(135deg);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .faq-title:after {
    right: 10px;
  }
}

.faq-title.open:after {
  transform: rotate(-45deg);
  top: 45%;
}

.faq-text {
  display: none;
  padding: 0px 40px 20px 50px;
}
@media screen and (max-width: 767px) {
  .faq-text {
    padding: 0px 20px 15px 30px;
  }
}
.faq-text p {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .faq-text p {
    font-size: 14px;
    line-height: 20px;
  }
}
.faq-text p span {
  font-size: 14px;
}
.faq-text p a {
  text-decoration: underline;
}
.faq-text p:before {
  content: "A.";
  font-weight: bold;
  color: #EE7520;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  position: absolute;
  left: -37px;
  top: 1px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .faq-text p:before {
    font-size: 20px;
    left: -28px;
  }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll_up.on {
  opacity: 1;
  transform: translateY(0);
}