@charset "UTF-8";
/* CSS Document */
@media only screen and (max-width: 767px) {
  #contents #main .ttl p span {
    font-size: 32px;
    display: block;
  }
}
/* section
-----------------------------------------------*/
section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, .05);
  margin-top: 80px;
  padding: 40px 40px 50px;
}
section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 55px;
}
@media only screen and (max-width: 767px) {
  section {
    border-radius: 10px;
    padding: 20px 20px 40px;
    margin-top: 40px;
  }
  section h2 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
/* box
-----------------------------------------------*/
section .col {
  display: flex;
  margin-bottom: 70px;
}
section .col:last-child {
  margin-bottom: 0px;
}
section .col .txt {
  width: 50%;
  padding: 0 30px 0 45px;
}
section .col .txt h2 {
  font-size: 28px;
  line-height: 1.3em;
}
section .col .txt h3 {
  font-size: 18px;
  margin-top: 13px;
}
section .col .txt p {
  margin-top: 40px;
}
section .col .img {
  display: flex;
  width: 50%;
  height: auto;
  align-items: center;
}
section .col .img img {
  width: 100%;
  border-radius: 22px;
}
section .box {
  position: relative;
  margin-top: 20px;
}
section .box:first-child {
  margin-top: 0;
}
section .box .img {
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}
section .box .movie {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}
section .box .movie video {
  display: block;
  width: 100%;
  height: auto;
}
section .box p {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}
section .box .arrow {
  margin: 15px auto 0;
  width: 30px;
  height: 30px;
  background-image: url("/img/ar/icon_ar_arrow.svg");
}
section .box .qr {
  max-width: 560px;
  margin: 50px auto 0;
  border-radius: 20px;
  border: 3px solid #000;
  padding: 90px 0;
}
section .box .qr img {
  display: block;
  width: 210px;
  margin: 0 auto;
}
section .box h3 {
  font-size: 38px;
  text-align: center;
  margin-top: 60px;
}
section .box .btn {
  position: relative;
  z-index: 1;
  font-size: 0;
  text-align: center;
  margin-top: 30px;
}
section .box .btn li {
  display: inline-block;
  max-width: 350px;
  width: 100%;
  margin: 10px 25px 0;
}
section .box .btn li a {
  width: 100%;
  border-radius: 35px;
  line-height: 70px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  background: linear-gradient(to right, #2e3192, #29abe2);
  position: relative;
  transition: transform .3s cubic-bezier(.210, .60, .350, 1);
  opacity: 1;
}
section .box .btn li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #2e3192, #29abe2);
  border-radius: 40px;
  transition: .3s cubic-bezier(.210, .60, .350, 1) all;
  transform: translateY(0) scaleX(1);
  opacity: 0.6;
}
section .box .btn li a:hover::before {
  filter: blur(6px);
  transform: translateY(0) scale(1.05, 1.1);
}
/* fade */
/*section .box{
  transform: translateY(70px);
  opacity: 0;
  transition: transform .7s, opacity .7s;
}
section .box.fade{
  transform: translateY(0);
  opacity: 1;
}*/
section .btn {
  max-width: 355px;
  margin: 0 auto;
}
section .btn a {
  display: block;
  color: #fff;
  font-size: 16px;
  margin: 0 auto;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: bold;
  border-radius: 48px;
  background: linear-gradient(to right, #2e3192, #29abe2);
  position: relative;
  transition: transform .3s cubic-bezier(.210, .60, .350, 1);
}
section .btn a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #2e3192, #29abe2);
  border-radius: 40px;
  transition: .3s cubic-bezier(.210, .60, .350, 1) all;
  transform: translateY(0) scaleX(1);
  opacity: 0.6;
}
section .btn a:hover::before {
  filter: blur(6px);
  transform: translateY(0) scale(1.05, 1.1);
}
@media only screen and (max-width: 940px) {
  section .col .txt {
    padding: 0 30px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  section .box .img {
    border-radius: 10px;
  }
  section .box p {
    font-size: 16px;
  }
  section .box .arrow {
    margin: 10px auto 0;
  }
  section .box .qr {
    margin: 40px auto 0;
    border-radius: 10px;
    padding: 25px 0;
  }
  section .box .qr img {
    width: 120px;
  }
  section .box h3 {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 50px;
  }
  section .box .btn {
    margin-top: 20px;
  }
  section .box .btn li {
    display: block;
    max-width: 280px;
    margin: 10px auto 0;
  }
  section .box .btn li a {
    line-height: 48px;
    font-size: 14px;
  }
  section .box .movie {
    border-radius: 10px;
  }
  section .btn a {
    font-size: 14px;
    width: 100%;
    text-align: center;
    height: 65px;
    line-height: 65px;
  }
  section .btn {
    margin: 0 auto;
    padding: 0;
  }
  section .col {
    margin-bottom: 0;
    border-radius: 10px;
    flex-direction: column;
    padding: 0;
  }
  section .col:last-child .txt {
    padding-bottom: 0;
  }
  section .col .txt {
    width: 100%;
    padding: 20px 0 30px 0;
    order: 2;
  }
  section .txt h2 {
    font-size: 20px;
  }
  section .txt h3 {
    font-size: 16px;
    margin-top: 5px;
  }
  section .txt p {
    margin-top: 15px;
  }
  section .col .img img {
    border-radius: 10px;
  }
  section .col .img {
    width: 100%;
    order: 1;
  }
  section .col .txt p {
    margin-top: 20px;
  }
  section .col .txt h2 {
    font-size: 22px;
  }
}
/* columnBox
-----------------------------------------------*/
#columnBox h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 0;
}
#columnBox .box .btn{
  max-width: 244px;
}
#columnBox .box {
  padding: 0 40px 20px;
  margin-top: 0;
}
#columnBox .box .col3 ul, #columnBox .box .col3 {
  font-size: 0;
}
#columnBox .box .col3 .col {
  display: inline-block;
  vertical-align: top;
  width: 32.728%;
  margin: 40px 0.908% 0 0;
}
#columnBox .box .col3 .col:nth-child(3n) {
  margin-right: 0;
}
#columnBox .box .col3 .col > a img {
  border-radius: 6px;
}
#columnBox .box .col3 .col > a {
  display: block;
  position: relative;
  padding-bottom: 44px;
}
#columnBox .box .col3 .col > a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "読む";
  display: block;
  width: 90px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  line-height: 1;
  background: linear-gradient(to right, #2e3192, #29abe2);
  transition: transform .3s cubic-bezier(.210, .60, .350, 1);
  border-radius: 17px;
}
#columnBox .box .col3 .col h3 {
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.5;
  text-align: left;
}
#columnBox .box .col3 .col p {
  font-size: 14px;
  margin-top: 5px;
  line-height: 1.5;
  text-align: left;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  #columnBox {
    padding: 20px 0 40px;
  }
  #columnBox h2 {
    font-size: 24px;
  }
  #columnBox .box {
    padding: 0;
  }
  #columnBox .box .col3 .col, #columnBox .box .col3 .col:nth-child(3n) {
    display: inline-block;
    width: 48%;
    margin: 0 4% 0 0;
    padding: 20px 20px 0;
  }
  #columnBox .box .col3 .col:nth-child(2n) {
    margin-right: 0;
  }
  #columnBox .box .col3 .col > a::after {
    width: 100%;
    font-size: 14px;
    padding: 10px 0;
  }
  #columnBox .box .col3 .col h3 {
    font-size: 14px;
    margin-top: 15px;
  }
  #columnBox .box .col3 .col p {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 5px;
  }
  #columnBox .box .col3 .col p br {
    display: none;
  }
}
/* lead
-----------------------------------------------*/
#lead .col {
  align-items: center;
  margin-bottom: 60px;
}
#lead .col p {
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
}
#lead li {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  padding-left: 30px;
  padding-bottom: 15px;
  position: relative;
}
#lead li:last-child {
  padding-bottom: 0;
}
#lead li::before {
  position: absolute;
  display: block;
  content: "";
  background: url("/img/demo-request/icon-01.svg")no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  left: 0;
  top: 5px;
}
#lead .col3 {
  max-width: 1040px;
  display: flex;
  gap: 40px;
  margin: 0 auto 50px;
}
#lead .col3 .col {
  margin-bottom: 0;
  background: #F2F2F2;
  padding: 20px;
  border-radius: 12px;
  width: 33.33%;
}
#lead .col3 .col p {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 20px;
}
#lead .col3 .col .icon {
  max-width: 50px;
  width: 100%;
}
@media only screen and (max-width: 940px) {
  #lead .col3 {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #lead li::before {
    width: 16px;
    height: 15px;
    top: 6px;
  }
  #lead li {
    font-size: 16px;
    padding-left: 14px;
    padding-bottom: 10px;
  }
  #lead .col p {
    font-size: 14px;
  }
  #lead .col {
    margin-bottom: 0;
  }
  #lead .col3 {
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  #lead .col3 .col {
    width: 100%;
  }
  #lead .col3 .col {
    width: 100%;
    flex-direction: row;
  }
  #lead .col3 .col .icon {
    max-width: 40px;
  }
  #lead .col3 .col p {
    font-size: 14px;
    padding-left: 15px;
  }
}
/* recommendation
-----------------------------------------------*/
#recommendation {
  text-align: center;
}
#recommendation ul {
  max-width: 535px;
  margin: 50px auto 20px;
  position: relative;
  left: 40px;
}
#recommendation li {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  padding-left: 40px;
  text-align: left;
  padding-bottom: 20px;
}
#recommendation li:last-child {
  padding-bottom: 0;
}
#recommendation li::before {
  position: absolute;
  display: block;
  content: "";
  background: url("/img/demo-request/icon-01.svg")no-repeat;
  background-size: cover;
  width: 25px;
  height: 24px;
  left: 0;
  top: 4px;
}
@media only screen and (max-width: 767px) {
  #recommendation ul {
    margin: 30px auto 0;
    left: 0;
  }
  #recommendation li::before {
    width: 16px;
    height: 15px;
    top: 5px;
  }
  #recommendation li {
    font-size: 16px;
    padding-left: 25px;
    padding-bottom: 10px;
  }
}
/* application
-----------------------------------------------*/
#application h2{
  margin-bottom: 25px;
}
#application p{
  font-weight: normal;
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
#application h2{
  margin-bottom: 25px;
}
#application p{
  font-size: 14px;
}
}
/* detail
-----------------------------------------------*/
#detail {
  text-align: center;
}
#detail .box h3, #detail .box p, #detail .txt {
  text-align: left;
}
#detail .txt {
  padding-left: 0;
}
#detail h3 {
  margin: 0;
  font-size: 26px;
}
#detail h4 {
  font-size: 18px;
  text-align: center;
  margin-top: 5px;
}
#detail p {
  font-size: 15px;
  line-height: 2;
  font-weight: normal;
}
#detail .box {
  margin-bottom: 80px;
}
#detail .box .img {
  border-radius: 6px;
}
#detail .txt li {
  font-size: 16px;
  line-height: 2;
}
#detail .dot {
  margin-left: 25px;
}
#detail .dot li {
  list-style: disc;
}
#detail .txt h3 + p {
  margin-top: 10px;
}
#detail .col4 {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
#detail .col4 li {
  width: 25%;
}
#detail .col4 li p {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 0;
  text-align: center;
}
#detail .col5 {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
#detail .col4 li {
  width: 33.33%;
}
#detail .dot .noDot {
  list-style: none;
  margin-left: -25px;
}
@media only screen and (max-width: 767px) {
  #detail h3 {
    font-size: 20px;
  }
  #detail .txt h3 + p {
    margin-top: 0px;
  }
  #detail .txt li {
    font-size: 14px;
  }
  #detail .col4 {
    flex-wrap: wrap;
  }
  #detail .col4 li {
    width: 100%;
    max-width: 416px;
  }
  #detail h4 {
    font-size: 16px;
    line-height: 1.2;
    margin-top: 10px;
  }
  #detail .col4 li p {
    margin-top: 5px;
  }
  #detail .col4 li p br {
    display: none;
  }
  #detail p {
    font-size: 14px;
  }
  #detail .col5 {
    flex-wrap: wrap;
    margin-top: 10px;
  }
}
/* hope
-----------------------------------------------*/
#hope h2 {
  text-align: left;
  margin-bottom: 25px;
}
#hope p {
  font-size: 16px;
  line-height: 2;
  margin-top: 0;
}
#hope .col .txt {
  text-align: left;
  padding: 0 30px 0 0;
}
@media only screen and (max-width: 767px) {
  #hope h2 {
    margin: 20px 0 10px;
  }
  #hope p {
    font-size: 14px;
  }
  #hope .col .txt {
    padding: 0;
  }
}
/* faq
-----------------------------------------------*/
.faq .inner {
  padding: 0 47px;
  max-width: 1194px;
  background-color: #fff;
  border-radius: 22px;
}
.faq h2 {
  font-size: 32px;
  line-height: 1.5;
  z-index: 1;
      margin-bottom: 25px;
}
.faq h2 span {
  font-weight: normal;
}
.faq ul {
  margin-top: 30px;
}
.faq ul li {
  padding: 35px 40px 40px;
  border-bottom: 1px solid #b3b3b3;
}
.faq ul li a {
  text-decoration: underline;
}
.faq ul li:first-child {
  border-top: 1px solid #b3b3b3;
}
.faq ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq ul li .txt {
  width: 100%;
  margin: 0 auto;
  padding-left: 40px;
}
.faq ul li h3, .faq ul li p {
  margin: 0 auto;
  position: relative;
}
.faq ul li h3 {
  font-size: 20px;
}
.faq ul li h3::before {
  content: "Q.";
  position: absolute;
  left: -23px;
  top: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #b1b1b1;
}
.faq ul li p::before {
  content: "A.";
  position: absolute;
  left: -23px;
  top: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #b1b1b1;
}
.faq ul li p {
  font-size: 20px;
  margin-top: 11px;
}
@media only screen and (max-width:768px) {
  .faq .inner {
    padding: 0;
    border-radius: 0;
  }
  .faq ul {
    margin-top: 30px;
  }
  .faq ul li {
    padding: 20px 20px 20px 40px;
  }
  .faq ul li .txt {
    padding-left: 0;
  }
  .faq h2 {
    font-size: 20px;
    text-align: center;
  }
  .faq h2 span {
    display: block;
  }
  .faq h2 br, .faq h2 br:first-child {
    display: block;
  }
  .faq ul li h3, .faq ul li p {
    font-size: 16px;
  }
  .faq ul li p {
    margin-top: 15px;
  }
  .faq ul li p img {
    padding: 0;
  }
}
/* fade
-----------------------------------------------*/
/*.faq ul li{
	transform: translateY(70px);
	opacity: 0;
	transition: transform .7s, opacity .7s;
}
.faq ul li.fade{
  transform: translateY(0);
  opacity: 1;
}*/